[U-Boot] Pull request: u-boot-usb (next)
Remy Bohmer
linux at bohmer.net
Mon Jun 8 21:15:27 CEST 2009
The following changes since commit
48716e55b684927f5b33b2f9ac890e35309a1de4:
Stefan Roese (1):
mpc512x: Use serial_setbrg() in serial_init() to not duplicate
the code
are available in the git repository at:
git://git.denx.de/u-boot-usb.git next
Remy Bohmer (2):
Integrate USB gadget layer and USB CDC driver layer
Connect the AT91 UDC to USB CDC-ethernet support
Vivek Mahajan (6):
mpc8xxx: USB: Removed reenablement of its interface
mpc8xxx: USB: Relocates ehci-fsl.h to include/usb
mpc83xx: USB: Reorganized its support
mpc85xx: USB: Add support
mpc83xx: 8315erdb: Add USB related CONFIGs
mpc85xx: 8536ds: Add USB related CONFIGs
cpu/mpc83xx/cpu_init.c | 19 +-
drivers/usb/gadget/Makefile | 4 +
drivers/usb/gadget/at91_udc.c | 1531 ++++++++++++++++++++++++++
drivers/usb/gadget/config.c | 119 ++
drivers/usb/gadget/epautoconf.c | 306 ++++++
drivers/usb/gadget/ether.c | 1897 +++++++++++++++++++++++++++++++++
drivers/usb/gadget/gadget_chips.h | 219 ++++
drivers/usb/gadget/usbstring.c | 165 +++
drivers/usb/host/ehci-fsl.c | 57 +-
drivers/usb/host/ehci-fsl.h | 86 --
include/asm-arm/arch-at91/at91_dbgu.h | 69 ++
include/asm-arm/arch-at91/cpu.h | 99 ++
include/asm-arm/assembler.h | 97 ++
include/asm-arm/linkage.h | 11 +
include/asm-arm/unaligned.h | 183 ++++
include/asm-ppc/immap_83xx.h | 5 +-
include/asm-ppc/immap_85xx.h | 5 +-
include/configs/MPC8315ERDB.h | 11 +-
include/configs/MPC8536DS.h | 14 +-
include/linux/usb/cdc.h | 224 ++++
include/linux/usb/ch9.h | 587 ++++++++++
include/linux/usb/gadget.h | 871 +++++++++++++++
include/net.h | 17 +-
include/usb/at91_udc.h | 224 ++++
include/usb/ehci-fsl.h | 149 +++
lib_arm/Makefile | 2 +
lib_arm/_io-readsb.S | 128 +++
lib_arm/_io-writesb.S | 99 ++
28 files changed, 7065 insertions(+), 133 deletions(-)
create mode 100644 drivers/usb/gadget/at91_udc.c
create mode 100644 drivers/usb/gadget/config.c
create mode 100644 drivers/usb/gadget/epautoconf.c
create mode 100644 drivers/usb/gadget/ether.c
create mode 100644 drivers/usb/gadget/gadget_chips.h
create mode 100644 drivers/usb/gadget/usbstring.c
delete mode 100644 drivers/usb/host/ehci-fsl.h
create mode 100644 include/asm-arm/arch-at91/at91_dbgu.h
create mode 100644 include/asm-arm/arch-at91/cpu.h
create mode 100644 include/asm-arm/assembler.h
create mode 100644 include/asm-arm/linkage.h
create mode 100644 include/asm-arm/unaligned.h
create mode 100644 include/linux/usb/cdc.h
create mode 100644 include/linux/usb/ch9.h
create mode 100644 include/linux/usb/gadget.h
create mode 100644 include/usb/at91_udc.h
create mode 100644 include/usb/ehci-fsl.h
create mode 100644 lib_arm/_io-readsb.S
create mode 100644 lib_arm/_io-writesb.S
More information about the U-Boot
mailing list