mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
usb: dfu: fix boards wo USB cable detection
Former usb_cable_connected() patch broke compilation of boards which do not support this feature. I've renamed usb_cable_connected() to g_dnl_usb_cable_connected() and added its default implementation to gadget downloader driver code. There's only one driver of this kind and it's unlikely there'll be another, so there's no point in keeping it in /common. Previously this function was declared in usb.h. I've moved it, since it's more appropriate to keep it in g_dnl.h - usb.h seems to be intended for USB host implementation. Existing code, confronted with default -EOPNOTSUPP return value, continues as if the cable was connected. CONFIG_USB_CABLE_CHECK was removed. Change-Id: Ib9198621adee2811b391c64512f14646cefd0369 Signed-off-by: Mateusz Zalega <m.zalega@samsung.com> Acked-by: Marek Vasut <marex@denx.de> Acked-by: Lukasz Majewski <l.majewski@samsung.com>
This commit is contained in:
parent
6b423b752b
commit
75504e9592
11 changed files with 18 additions and 44 deletions
7
README
7
README
|
@ -1484,13 +1484,6 @@ The following options need to be configured:
|
|||
for your device
|
||||
- CONFIG_USBD_PRODUCTID 0xFFFF
|
||||
|
||||
Some USB device drivers may need to check USB cable attachment.
|
||||
In this case you can enable following config in BoardName.h:
|
||||
CONFIG_USB_CABLE_CHECK
|
||||
This enables function definition:
|
||||
- usb_cable_connected() in include/usb.h
|
||||
Implementation of this function is board-specific.
|
||||
|
||||
- ULPI Layer Support:
|
||||
The ULPI (UTMI Low Pin (count) Interface) PHYs are supported via
|
||||
the generic ULPI layer. The generic layer accesses the ULPI PHY
|
||||
|
|
|
@ -30,13 +30,6 @@ int board_usb_init(int index, enum usb_init_type init)
|
|||
return 0;
|
||||
}
|
||||
|
||||
#ifdef CONFIG_USB_CABLE_CHECK
|
||||
int usb_cable_connected(void)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_BOARD_EARLY_INIT_F
|
||||
int exynos_early_init_f(void)
|
||||
{
|
||||
|
|
|
@ -430,8 +430,7 @@ int board_usb_init(int index, enum usb_init_type init)
|
|||
return s3c_udc_probe(&s5pc210_otg_data);
|
||||
}
|
||||
|
||||
#ifdef CONFIG_USB_CABLE_CHECK
|
||||
int usb_cable_connected(void)
|
||||
int g_dnl_board_usb_cable_connected(void)
|
||||
{
|
||||
struct pmic *muic = pmic_get("MAX8997_MUIC");
|
||||
if (!muic)
|
||||
|
@ -440,7 +439,6 @@ int usb_cable_connected(void)
|
|||
return !!muic->chrg->chrg_type(muic);
|
||||
}
|
||||
#endif
|
||||
#endif
|
||||
|
||||
static void pmic_reset(void)
|
||||
{
|
||||
|
|
|
@ -312,8 +312,7 @@ int board_usb_init(int index, enum usb_init_type init)
|
|||
return s3c_udc_probe(&s5pc210_otg_data);
|
||||
}
|
||||
|
||||
#ifdef CONFIG_USB_CABLE_CHECK
|
||||
int usb_cable_connected(void)
|
||||
int g_dnl_board_usb_cable_connected(void)
|
||||
{
|
||||
struct pmic *muic = pmic_get("MAX77693_MUIC");
|
||||
if (!muic)
|
||||
|
@ -322,7 +321,6 @@ int usb_cable_connected(void)
|
|||
return !!muic->chrg->chrg_type(muic);
|
||||
}
|
||||
#endif
|
||||
#endif
|
||||
|
||||
static int pmic_init_max77686(void)
|
||||
{
|
||||
|
|
|
@ -197,13 +197,6 @@ int board_usb_init(int index, enum usb_init_type init)
|
|||
return s3c_udc_probe(&s5pc210_otg_data);
|
||||
}
|
||||
|
||||
#ifdef CONFIG_USB_CABLE_CHECK
|
||||
int usb_cable_connected(void)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
#endif
|
||||
|
||||
int exynos_early_init_f(void)
|
||||
{
|
||||
wdt_stop();
|
||||
|
|
|
@ -45,10 +45,14 @@ int do_usb_mass_storage(cmd_tbl_t *cmdtp, int flag,
|
|||
/* Timeout unit: seconds */
|
||||
int cable_ready_timeout = UMS_CABLE_READY_TIMEOUT;
|
||||
|
||||
if (!usb_cable_connected()) {
|
||||
if (!g_dnl_board_usb_cable_connected()) {
|
||||
/*
|
||||
* Won't execute if we don't know whether the cable is
|
||||
* connected.
|
||||
*/
|
||||
puts("Please connect USB cable.\n");
|
||||
|
||||
while (!usb_cable_connected()) {
|
||||
while (!g_dnl_board_usb_cable_connected()) {
|
||||
if (ctrlc()) {
|
||||
puts("\rCTRL+C - Operation aborted.\n");
|
||||
goto exit;
|
||||
|
|
|
@ -243,7 +243,7 @@
|
|||
#include <config.h>
|
||||
#include <malloc.h>
|
||||
#include <common.h>
|
||||
#include <usb.h>
|
||||
#include <g_dnl.h>
|
||||
|
||||
#include <linux/err.h>
|
||||
#include <linux/usb/ch9.h>
|
||||
|
@ -680,11 +680,11 @@ static int sleep_thread(struct fsg_common *common)
|
|||
/* Handle CTRL+C */
|
||||
if (ctrlc())
|
||||
return -EPIPE;
|
||||
#ifdef CONFIG_USB_CABLE_CHECK
|
||||
|
||||
/* Check cable connection */
|
||||
if (!usb_cable_connected())
|
||||
if (!g_dnl_board_usb_cable_connected())
|
||||
return -EIO;
|
||||
#endif
|
||||
|
||||
k = 0;
|
||||
}
|
||||
|
||||
|
|
|
@ -152,6 +152,11 @@ __weak int g_dnl_get_board_bcd_device_number(int gcnum)
|
|||
return gcnum;
|
||||
}
|
||||
|
||||
__weak int g_dnl_board_usb_cable_connected(void)
|
||||
{
|
||||
return -EOPNOTSUPP;
|
||||
}
|
||||
|
||||
static int g_dnl_get_bcd_device_number(struct usb_composite_dev *cdev)
|
||||
{
|
||||
struct usb_gadget *gadget = cdev->gadget;
|
||||
|
|
|
@ -127,7 +127,6 @@
|
|||
#define CONFIG_USB_GADGET_S3C_UDC_OTG
|
||||
#define CONFIG_USB_GADGET_DUALSPEED
|
||||
#define CONFIG_USB_GADGET_VBUS_DRAW 2
|
||||
#define CONFIG_USB_CABLE_CHECK
|
||||
|
||||
#define CONFIG_CMD_USB_MASS_STORAGE
|
||||
#define CONFIG_USB_GADGET_MASS_STORAGE
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
#include <linux/usb/ch9.h>
|
||||
#include <linux/usb/gadget.h>
|
||||
int g_dnl_bind_fixup(struct usb_device_descriptor *, const char *);
|
||||
int g_dnl_board_usb_cable_connected(void);
|
||||
int g_dnl_register(const char *s);
|
||||
void g_dnl_unregister(void);
|
||||
void g_dnl_set_serialnumber(char *);
|
||||
|
|
|
@ -197,16 +197,6 @@ int board_usb_init(int index, enum usb_init_type init);
|
|||
*/
|
||||
int board_usb_cleanup(int index, enum usb_init_type init);
|
||||
|
||||
/*
|
||||
* If CONFIG_USB_CABLE_CHECK is set then this function
|
||||
* should be defined in board file.
|
||||
*
|
||||
* @return 1 if cable is connected and 0 otherwise.
|
||||
*/
|
||||
#ifdef CONFIG_USB_CABLE_CHECK
|
||||
int usb_cable_connected(void);
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_USB_STORAGE
|
||||
|
||||
#define USB_MAX_STOR_DEV 5
|
||||
|
|
Loading…
Reference in a new issue