9
0
Fork 0

Fix AT91 UDC driver on boards without vbus.

From 4ea2bd2e1ca18136d7cfd61643bc8d8187b1495f Mon Sep 17 00:00:00 2001
From: Owen Kirby <osk@exegin.com>
Date: Wed, 16 Apr 2014 17:45:18 -0700
Subject: [PATCH] Fix AT91 UDC driver on boards without vbus.

While porting Barebox to one of our boards, we found that the AT91 UDC driver
will fail to connect to USB hosts, and will spam the console with errors if
the VBUS pin isn't connected.

Signed-off-by: Owen Kirby <osk@exegin.com>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Owen Kirby 2014-04-16 17:51:11 -07:00 committed by Sascha Hauer
parent b7f627bb34
commit 7311cc9bd2
1 changed files with 10 additions and 8 deletions

View File

@ -1329,13 +1329,15 @@ int usb_gadget_poll(void)
if (!udc->udp_baseaddr)
return -ENODEV;
value = gpio_get_value(udc->board.vbus_pin);
value ^= udc->board.vbus_active_low;
if (gpio_is_valid(udc->board.vbus_pin)) {
value = gpio_get_value(udc->board.vbus_pin);
value ^= udc->board.vbus_active_low;
udc->gpio_vbus_val = value;
udc->gpio_vbus_val = value;
if (!value)
return 0;
if (!value)
return 0;
}
value = at91_udp_read(udc, AT91_UDP_ISR) & (~(AT91_UDP_SOFINT));
if (value)
@ -1501,14 +1503,14 @@ static int __init at91udc_probe(struct device_d *dev)
udc->vbus = gpio_get_value(udc->board.vbus_pin);
DBG(udc, "VBUS detection: host:%s \n",
udc->vbus ? "present":"absent");
dev_add_param_bool(dev, "vbus",
at91_udc_vbus_set, NULL, &udc->gpio_vbus_val, udc);
} else {
DBG(udc, "no VBUS detection, assuming always-on\n");
udc->vbus = 1;
}
dev_add_param_bool(dev, "vbus",
at91_udc_vbus_set, NULL, &udc->gpio_vbus_val, udc);
poller_register(&poller);
INFO(udc, "%s version %s\n", driver_name, DRIVER_VERSION);