Re: [U-Boot] [RFC] usb: ehci-mx6: Create MISC USB device wrapper

2019-08-13 Thread Simon Glass
Hi Adam, On Wed, 3 Apr 2019 at 09:28, Adam Ford wrote: > > On Wed, Apr 3, 2019 at 10:17 AM Adam Ford wrote: > > > > In preparation to support DM_USB_GADGET, this creates a misc > > device which binds the host. This is necessary because > > U_BOOT_DRIVER(usb_mx6) is currently hard coded to UCLAS

Re: [U-Boot] [RFC] usb: ehci-mx6: Create MISC USB device wrapper

2019-04-03 Thread Adam Ford
On Wed, Apr 3, 2019 at 10:17 AM Adam Ford wrote: > > In preparation to support DM_USB_GADGET, this creates a misc > device which binds the host. This is necessary because > U_BOOT_DRIVER(usb_mx6) is currently hard coded to UCLASS_USB > and if we want to support UCLASS_USB_GADGET_GENERIC we'll nee

[U-Boot] [RFC] usb: ehci-mx6: Create MISC USB device wrapper

2019-04-03 Thread Adam Ford
In preparation to support DM_USB_GADGET, this creates a misc device which binds the host. This is necessary because U_BOOT_DRIVER(usb_mx6) is currently hard coded to UCLASS_USB and if we want to support UCLASS_USB_GADGET_GENERIC we'll need to bind a separate device in the future. Signed-off-by: A