[U-Boot] Pull request: u-boot-usb

The following changes since commit bb3bcfa2426cc6a0aecec7270e3ee67ca843a125: Wolfgang Denk (1): Merge branch 'next' of ../next
are available in the git repository at:
git://git.denx.de/u-boot-usb.git master
Ajay Kumar Gupta (1): omap3evm: musb: add USB config
Mahavir Jain (1): usb: write command for RAW partition.
Tom Rix (9): USB Consolidate descriptor definitions USB add macros for debugging usb device setup. TWL4030 Add usb PHY support OMAP3 Add usb device support OMAP3 zoom1 Add usbtty configuration OMAP3 beagle Add usbtty configuration USBTTY make some function declarations easier to use. OMAP3 zoom2 Use usbtty if the debug board is not connected. OMAP3 USB Initialize twl4030 only if required
Makefile | 1 + board/logicpd/zoom2/zoom2_serial.c | 12 +- common/cmd_usb.c | 44 ++- common/usb.c | 35 +- common/usb_kbd.c | 22 +- common/usb_storage.c | 115 ++++- cpu/ppc4xx/usbdev.c | 4 +- drivers/serial/usbtty.h | 2 + drivers/usb/host/ehci-hcd.c | 2 +- drivers/usb/musb/Makefile | 2 + drivers/usb/musb/musb_core.c | 8 +- drivers/usb/musb/musb_core.h | 40 ++ drivers/usb/musb/musb_debug.h | 205 ++++++++ drivers/usb/musb/musb_hcd.c | 2 +- drivers/usb/musb/musb_udc.c | 963 ++++++++++++++++++++++++++++++++++++ drivers/usb/musb/omap3.c | 134 +++++ drivers/usb/musb/omap3.h | 48 ++ drivers/usb/phy/Makefile | 44 ++ drivers/usb/phy/twl4030.c | 189 +++++++ include/configs/omap3_beagle.h | 16 + include/configs/omap3_evm.h | 39 ++ include/configs/omap3_zoom1.h | 16 + include/configs/omap3_zoom2.h | 17 + include/serial.h | 18 + include/twl4030.h | 143 +++++- include/usb.h | 73 +--- include/usb/musb_udc.h | 54 ++ include/usbdescriptors.h | 26 + include/usbdevice.h | 103 ++++ 29 files changed, 2245 insertions(+), 132 deletions(-) create mode 100644 drivers/usb/musb/musb_debug.h create mode 100644 drivers/usb/musb/musb_udc.c create mode 100644 drivers/usb/musb/omap3.c create mode 100644 drivers/usb/musb/omap3.h create mode 100644 drivers/usb/phy/Makefile create mode 100644 drivers/usb/phy/twl4030.c create mode 100644 include/usb/musb_udc.h

Remy,
How about USB patches from me supporting MUSB on DA8xx platform?
Regards, Ajay
-----Original Message----- From: u-boot-bounces@lists.denx.de [mailto:u-boot-bounces@lists.denx.de] On Behalf Of Remy Bohmer Sent: Sunday, December 20, 2009 6:21 PM To: wd@denx.de; u-boot@lists.denx.de Subject: [U-Boot] Pull request: u-boot-usb
The following changes since commit bb3bcfa2426cc6a0aecec7270e3ee67ca843a125: Wolfgang Denk (1): Merge branch 'next' of ../next
are available in the git repository at:
git://git.denx.de/u-boot-usb.git master
Ajay Kumar Gupta (1): omap3evm: musb: add USB config
Mahavir Jain (1): usb: write command for RAW partition.
Tom Rix (9): USB Consolidate descriptor definitions USB add macros for debugging usb device setup. TWL4030 Add usb PHY support OMAP3 Add usb device support OMAP3 zoom1 Add usbtty configuration OMAP3 beagle Add usbtty configuration USBTTY make some function declarations easier to use. OMAP3 zoom2 Use usbtty if the debug board is not connected. OMAP3 USB Initialize twl4030 only if required
Makefile | 1 + board/logicpd/zoom2/zoom2_serial.c | 12 +- common/cmd_usb.c | 44 ++- common/usb.c | 35 +- common/usb_kbd.c | 22 +- common/usb_storage.c | 115 ++++- cpu/ppc4xx/usbdev.c | 4 +- drivers/serial/usbtty.h | 2 + drivers/usb/host/ehci-hcd.c | 2 +- drivers/usb/musb/Makefile | 2 + drivers/usb/musb/musb_core.c | 8 +- drivers/usb/musb/musb_core.h | 40 ++ drivers/usb/musb/musb_debug.h | 205 ++++++++ drivers/usb/musb/musb_hcd.c | 2 +- drivers/usb/musb/musb_udc.c | 963 ++++++++++++++++++++++++++++++++++++ drivers/usb/musb/omap3.c | 134 +++++ drivers/usb/musb/omap3.h | 48 ++ drivers/usb/phy/Makefile | 44 ++ drivers/usb/phy/twl4030.c | 189 +++++++ include/configs/omap3_beagle.h | 16 + include/configs/omap3_evm.h | 39 ++ include/configs/omap3_zoom1.h | 16 + include/configs/omap3_zoom2.h | 17 + include/serial.h | 18 + include/twl4030.h | 143 +++++- include/usb.h | 73 +--- include/usb/musb_udc.h | 54 ++ include/usbdescriptors.h | 26 + include/usbdevice.h | 103 ++++ 29 files changed, 2245 insertions(+), 132 deletions(-) create mode 100644 drivers/usb/musb/musb_debug.h create mode 100644 drivers/usb/musb/musb_udc.c create mode 100644 drivers/usb/musb/omap3.c create mode 100644 drivers/usb/musb/omap3.h create mode 100644 drivers/usb/phy/Makefile create mode 100644 drivers/usb/phy/twl4030.c create mode 100644 include/usb/musb_udc.h _______________________________________________ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Dear Remy Bohmer,
In message 3efb10970912200451g3ffe2436nc9a21a2daf45b641@mail.gmail.com you wrote:
The following changes since commit bb3bcfa2426cc6a0aecec7270e3ee67ca843a125: Wolfgang Denk (1): Merge branch 'next' of ../next
are available in the git repository at:
git://git.denx.de/u-boot-usb.git master
Ajay Kumar Gupta (1): omap3evm: musb: add USB config
Mahavir Jain (1): usb: write command for RAW partition.
Tom Rix (9): USB Consolidate descriptor definitions USB add macros for debugging usb device setup. TWL4030 Add usb PHY support OMAP3 Add usb device support OMAP3 zoom1 Add usbtty configuration OMAP3 beagle Add usbtty configuration USBTTY make some function declarations easier to use. OMAP3 zoom2 Use usbtty if the debug board is not connected. OMAP3 USB Initialize twl4030 only if required
Makefile | 1 + board/logicpd/zoom2/zoom2_serial.c | 12 +- common/cmd_usb.c | 44 ++- common/usb.c | 35 +- common/usb_kbd.c | 22 +- common/usb_storage.c | 115 ++++- cpu/ppc4xx/usbdev.c | 4 +- drivers/serial/usbtty.h | 2 + drivers/usb/host/ehci-hcd.c | 2 +- drivers/usb/musb/Makefile | 2 + drivers/usb/musb/musb_core.c | 8 +- drivers/usb/musb/musb_core.h | 40 ++ drivers/usb/musb/musb_debug.h | 205 ++++++++ drivers/usb/musb/musb_hcd.c | 2 +- drivers/usb/musb/musb_udc.c | 963 ++++++++++++++++++++++++++++++++++++ drivers/usb/musb/omap3.c | 134 +++++ drivers/usb/musb/omap3.h | 48 ++ drivers/usb/phy/Makefile | 44 ++ drivers/usb/phy/twl4030.c | 189 +++++++ include/configs/omap3_beagle.h | 16 + include/configs/omap3_evm.h | 39 ++ include/configs/omap3_zoom1.h | 16 + include/configs/omap3_zoom2.h | 17 + include/serial.h | 18 + include/twl4030.h | 143 +++++- include/usb.h | 73 +--- include/usb/musb_udc.h | 54 ++ include/usbdescriptors.h | 26 + include/usbdevice.h | 103 ++++ 29 files changed, 2245 insertions(+), 132 deletions(-) create mode 100644 drivers/usb/musb/musb_debug.h create mode 100644 drivers/usb/musb/musb_udc.c create mode 100644 drivers/usb/musb/omap3.c create mode 100644 drivers/usb/musb/omap3.h create mode 100644 drivers/usb/phy/Makefile create mode 100644 drivers/usb/phy/twl4030.c create mode 100644 include/usb/musb_udc.h
Applied, thanks.
Best regards,
Wolfgang Denk
participants (3)
-
Gupta, Ajay Kumar
-
Remy Bohmer
-
Wolfgang Denk