Commit 85eb0e4b authored by Cliff Cai's avatar Cliff Cai Committed by Mike Frysinger

Blackfin: mark MUSB VRSEL as active high for appropriate boards

These boards all have the GPIO VRSEL hooked up as an active high.
Signed-off-by: default avatarCliff Cai <cliff.cai@analog.com>
Signed-off-by: default avatarMike Frysinger <vapier@gentoo.org>
parent def282d6
...@@ -98,6 +98,10 @@ static struct musb_hdrc_config musb_config = { ...@@ -98,6 +98,10 @@ static struct musb_hdrc_config musb_config = {
.num_eps = 8, .num_eps = 8,
.dma_channels = 8, .dma_channels = 8,
.gpio_vrsel = GPIO_PF11, .gpio_vrsel = GPIO_PF11,
/* Some custom boards need to be active low, just set it to "0"
* if it is the case.
*/
.gpio_vrsel_active = 1,
}; };
static struct musb_hdrc_platform_data musb_plat = { static struct musb_hdrc_platform_data musb_plat = {
......
...@@ -62,6 +62,10 @@ static struct musb_hdrc_config musb_config = { ...@@ -62,6 +62,10 @@ static struct musb_hdrc_config musb_config = {
.num_eps = 8, .num_eps = 8,
.dma_channels = 8, .dma_channels = 8,
.gpio_vrsel = GPIO_PG13, .gpio_vrsel = GPIO_PG13,
/* Some custom boards need to be active low, just set it to "0"
* if it is the case.
*/
.gpio_vrsel_active = 1,
}; };
static struct musb_hdrc_platform_data musb_plat = { static struct musb_hdrc_platform_data musb_plat = {
......
...@@ -102,6 +102,10 @@ static struct musb_hdrc_config musb_config = { ...@@ -102,6 +102,10 @@ static struct musb_hdrc_config musb_config = {
.num_eps = 8, .num_eps = 8,
.dma_channels = 8, .dma_channels = 8,
.gpio_vrsel = GPIO_PG13, .gpio_vrsel = GPIO_PG13,
/* Some custom boards need to be active low, just set it to "0"
* if it is the case.
*/
.gpio_vrsel_active = 1,
}; };
static struct musb_hdrc_platform_data musb_plat = { static struct musb_hdrc_platform_data musb_plat = {
......
...@@ -498,6 +498,10 @@ static struct musb_hdrc_config musb_config = { ...@@ -498,6 +498,10 @@ static struct musb_hdrc_config musb_config = {
.num_eps = 8, .num_eps = 8,
.dma_channels = 8, .dma_channels = 8,
.gpio_vrsel = GPIO_PH6, .gpio_vrsel = GPIO_PH6,
/* Some custom boards need to be active low, just set it to "0"
* if it is the case.
*/
.gpio_vrsel_active = 1,
}; };
static struct musb_hdrc_platform_data musb_plat = { static struct musb_hdrc_platform_data musb_plat = {
......
...@@ -603,6 +603,10 @@ static struct musb_hdrc_config musb_config = { ...@@ -603,6 +603,10 @@ static struct musb_hdrc_config musb_config = {
.num_eps = 8, .num_eps = 8,
.dma_channels = 8, .dma_channels = 8,
.gpio_vrsel = GPIO_PE7, .gpio_vrsel = GPIO_PE7,
/* Some custom boards need to be active low, just set it to "0"
* if it is the case.
*/
.gpio_vrsel_active = 1,
}; };
static struct musb_hdrc_platform_data musb_plat = { static struct musb_hdrc_platform_data musb_plat = {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment