From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marek Vasut Date: Thu, 15 May 2014 00:20:31 +0200 Subject: [U-Boot] [PULL] u-boot-usb/master Message-ID: <201405150020.31874.marex@denx.de> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de I will have one more PR lined up later on after this is in. The following changes since commit 173d294b94cfec10063a5be40934d6d8fb7981ce: Merge branch 'serial' of git://www.denx.de/git/u-boot-microblaze (2014-05-06 14:55:45 -0400) are available in the git repository at: git://git.denx.de/u-boot-usb.git master for you to fetch changes up to fc25fa27e5f439705e9ca42182014e2d75d9f0ae: dfu, nand: add medium specific polltimeout function (2014-05-08 10:38:30 +0200) ---------------------------------------------------------------- Heiko Schocher (2): musb-new, dfu: first send request answer then call completions dfu, nand: add medium specific polltimeout function Rob Herring (1): arm: beagle: enable Android fastboot support Sebastian Siewior (2): image: add support for Android's boot image format usb/gadget: add the fastboot gadget Stephen Warren (11): usb: ci_udc: allow multiple buffer allocs per ep usb: ums: remove ci_udc special case usb: ums: add error handling for failed registration ums: support block devices not MMC devices ums: remove UMS_{NUM,START}_SECTORS + UMS_START_SECTOR ums: remove error-checking of MMC device size ums: remove ums_disk_init() ums: move IO support code to common location ums: use get_device() not find_mmc_device(); ums: move all variable declarations to the start of the block ums: allow the user to specify the device type README | 22 +++++ board/samsung/common/Makefile | 1 - board/samsung/common/ums.c | 74 --------------- common/Makefile | 3 + common/cmd_bootm.c | 23 ++++- common/cmd_fastboot.c | 36 +++++++ common/cmd_usb_mass_storage.c | 91 +++++++++++++++--- common/image-android.c | 84 +++++++++++++++++ common/image.c | 20 +++- doc/README.android-fastboot | 91 ++++++++++++++++++ doc/README.android-fastboot-protocol | 170 +++++++++++++++++++++++++++++++++ drivers/dfu/dfu_nand.c | 13 +++ drivers/usb/gadget/Makefile | 1 + drivers/usb/gadget/ci_udc.c | 180 +++++++++++++++++++++++------------ drivers/usb/gadget/ci_udc.h | 17 +++- drivers/usb/gadget/f_dfu.c | 10 +- drivers/usb/gadget/f_fastboot.c | 513 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ drivers/usb/gadget/storage_common.c | 4 - drivers/usb/musb-new/musb_gadget_ep0.c | 8 +- include/android_image.h | 69 ++++++++++++++ include/configs/omap3_beagle.h | 10 ++ include/dfu.h | 1 + include/image.h | 13 +++ include/usb_mass_storage.h | 13 +-- 24 files changed, 1289 insertions(+), 178 deletions(-) delete mode 100644 board/samsung/common/ums.c create mode 100644 common/cmd_fastboot.c create mode 100644 common/image-android.c create mode 100644 doc/README.android-fastboot create mode 100644 doc/README.android-fastboot-protocol create mode 100644 drivers/usb/gadget/f_fastboot.c create mode 100644 include/android_image.h