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

Remy Bohmer linux at bohmer.net
Sun Dec 11 15:06:32 CET 2011


The following changes since commit c90a4dd79cb17abb46689f27ff9f1c971362d6e2:

  post/post.c: Use lldiv for 64-bit divisions (2011-12-10 23:15:14 +0100)

are available in the git repository at:
  git://git.denx.de/u-boot-usb.git master

Jana Rapava (1):
      USB: Add generic ULPI layer and a viewport

Lei Wen (1):
      USB: gadaget: add Marvell controller support

Lukasz Majewski (2):
      usb:gadget:s5p USB Device Controller (UDC) implementation
      usb:gadget:s5p Enable the USB Gadget framework at GONI

Marek Vasut (9):
      USB: Add functionality to poll the USB keyboard via control EP
      USB: Rework usb_kbd.c
      USB: Drop dead code from usb_kbd.c
      USB: Fix complaints about strict aliasing in OHCI-HCD
      USB: Add usb_event_poll() to get keyboards working with EHCI
      USB: MX5: Abstract out mx51 USB pixmux configuration
      USB: MX5: Add MX5 usb post-init callback
      USB: EHCI: Allow EHCI post-powerup configuration in board files
      USB: efikamx: Enable USB on EfikaMX and EfikaSB

Stefan Herbrechtsmeier (4):
      pxa: fix usb host register mismatch
      pxa: activate the first usb host port on pxa27x by default
      pxa: convert pxa27x_udc to use read and write functions
      usbtty: init endpoints prior to startup events

Stefan Kristiansson (1):
      usb: align usb_endpoint_descriptor to 16-bit boundary

Veli-Pekka Peltola (2):
      cosmetic: remove excess whitespace from usb command help
      usb: add help for missing start subcommand

Vincent Palatin (1):
      ehci: speed up initialization

Wolfgang Grandegger (5):
      ehci-fsl: correct size of ehci caplength
      USB: MX5: add helper functions to enable USB clocks
      USB: MX5: add generic USB EHCI support for mx51 and mx53
      USB: mx53loco: add end enable USB host support on port 1
      USB: mx51evk: add end enable USB host support on port 1

 Makefile                                  |    1 +
 arch/arm/cpu/armv7/mx5/clock.c            |   72 ++
 arch/arm/cpu/pxa/usb.c                    |    6 +-
 arch/arm/include/asm/arch-mx5/clock.h     |    5 +
 arch/arm/include/asm/arch-mx5/crm_regs.h  |    3 +
 arch/arm/include/asm/arch-pxa/pxa-regs.h  |   10 +-
 arch/arm/include/asm/arch-s5pc1xx/cpu.h   |    4 +
 board/efikamx/Makefile                    |    4 +
 board/efikamx/efikamx-usb.c               |  210 +++++
 board/efikamx/efikamx.c                   |   15 +
 board/freescale/mx51evk/mx51evk.c         |   62 ++
 board/freescale/mx53loco/mx53loco.c       |   10 +
 board/samsung/goni/goni.c                 |   48 +-
 common/cmd_usb.c                          |   16 +-
 common/usb_kbd.c                          |  928 +++++++------------
 drivers/serial/usbtty.c                   |    4 +-
 drivers/usb/gadget/Makefile               |    5 +
 drivers/usb/gadget/gadget_chips.h         |    7 +
 drivers/usb/gadget/mv_udc.c               |  499 ++++++++++
 drivers/usb/gadget/pxa27x_udc.c           |  183 ++--
 drivers/usb/gadget/regs-otg.h             |  271 ++++++
 drivers/usb/gadget/s3c_udc_otg.c          |  892 ++++++++++++++++++
 drivers/usb/gadget/s3c_udc_otg_xfer_dma.c | 1444 +++++++++++++++++++++++++++++
 drivers/usb/host/Makefile                 |    1 +
 drivers/usb/host/ehci-hcd.c               |   47 +-
 drivers/usb/host/ehci-mx5.c               |  255 +++++
 drivers/usb/host/ohci-hcd.c               |   75 +-
 drivers/usb/ulpi/Makefile                 |   44 +
 drivers/usb/ulpi/ulpi-viewport.c          |  118 +++
 drivers/usb/ulpi/ulpi.c                   |  227 +++++
 include/configs/efikamx.h                 |   47 +-
 include/configs/mx51evk.h                 |   13 +
 include/configs/mx53loco.h                |   13 +
 include/configs/s5p_goni.h                |    3 +
 include/usb/ehci-fsl.h                    |   41 +-
 include/usb/lin_gadget_compat.h           |   62 ++
 include/usb/mv_udc.h                      |  151 +++
 include/usb/s3c_udc.h                     |  175 ++++
 include/usb/ulpi.h                        |  298 ++++++
 include/usbdescriptors.h                  |    2 +-
 40 files changed, 5512 insertions(+), 759 deletions(-)
 create mode 100644 board/efikamx/efikamx-usb.c
 create mode 100644 drivers/usb/gadget/mv_udc.c
 create mode 100644 drivers/usb/gadget/regs-otg.h
 create mode 100644 drivers/usb/gadget/s3c_udc_otg.c
 create mode 100644 drivers/usb/gadget/s3c_udc_otg_xfer_dma.c
 create mode 100644 drivers/usb/host/ehci-mx5.c
 create mode 100644 drivers/usb/ulpi/Makefile
 create mode 100644 drivers/usb/ulpi/ulpi-viewport.c
 create mode 100644 drivers/usb/ulpi/ulpi.c
 create mode 100644 include/usb/lin_gadget_compat.h
 create mode 100644 include/usb/mv_udc.h
 create mode 100644 include/usb/s3c_udc.h
 create mode 100644 include/usb/ulpi.h


More information about the U-Boot mailing list