[U-Boot] [PULL] u-boot-usb/master :: FOR u-boot/-next

The following changes since commit 7cb30b13f12077c7eec8ce2419cd96cd65ace8e2:
Merge branch 'master' of git://git.denx.de/u-boot-cfi-flash (2012-03-23 21:59:16 +0100)
are available in the git repository at:
git://git.denx.de/u-boot-usb.git master
for you to fetch changes up to 3cfdca334e86e5491c0091182a83cb35523a9da7:
usb: use noinline define (2012-04-06 02:19:35 +0200)
---------------------------------------------------------------- Mike Frysinger (1): usb: use noinline define
Vipin KUMAR (1): Enable high speed support for USB device framework and usbtty
README | 8 +++++++ common/usb.c | 3 +- drivers/serial/usbtty.c | 50 ++++++++++++++++++++++++++++++++++++++++++++- drivers/serial/usbtty.h | 4 +++ drivers/usb/gadget/core.c | 1 - drivers/usb/gadget/ep0.c | 23 +++++++++++++++++--- include/usbdescriptors.h | 15 +++++++++++++ include/usbdevice.h | 22 ++++++++++++++++++- 8 files changed, 118 insertions(+), 8 deletions(-)

Dear Wolfgang Denk,
Scrap this pull RQ, I rebase u-boot/master on top of u-boot/master. Updated pull RQ follows below:
This is for u-boot/-next!
The following changes since commit c008b6f6dd6b8965e9a7654ffbce75bb9ff7a3b5:
Prepare v2012.04-rc1 (2012-03-31 00:13:05 +0200)
are available in the git repository at:
git://git.denx.de/u-boot-usb.git master
for you to fetch changes up to c48a0e2fc50611479b08c67aa2b0be6c23141a9d:
usb: use noinline define (2012-04-09 05:16:50 +0200)
---------------------------------------------------------------- Mike Frysinger (1): usb: use noinline define
common/usb.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-)
Best regards, Marek Vasut

The following changes since commit f50bf50d7f6f99c5ad4666d63a7eef43d3940500:
Improve MAKEALL parallel builds (2012-05-18 13:49:04 +0200)
are available in the git repository at:
git://git.denx.de/u-boot-usb.git master
for you to fetch changes up to 5f0ffea4559abe3fc83a6023717658a50b22e66c:
USB: S5P: Add ehci support (2012-05-20 08:32:33 +0200)
---------------------------------------------------------------- Lukasz Majewski (5): usb:udc: Remove duplicated USB definitions from include/linux/usb/ch9.h file usb:udc:samsung:cleanup Replace DEBUG_* macros with debug_cond() calls usb:gadget:composite USB composite gadget support usb:gadget:composite: Support for composite at gadget.h usb:udc:samsung Add functions for storing private gadget data in UDC driver
Marek Vasut (3): USB: Drop ehci_alloc/ehci_free in ehci-hcd USB: Drop cache flush bloat in EHCI-HCD USB: Document the QH and qTD antics in EHCI-HCD
Mike Frysinger (1): usb: use noinline define
Puneet Saxena (1): USB: Align buffers at cacheline
Rajeshwari Shinde (1): USB: S5P: Add ehci support
arch/arm/include/asm/arch-exynos/ehci-s5p.h | 66 ++++++++ common/cmd_usb.c | 3 +- common/usb.c | 25 +-- common/usb_hub.c | 27 ++-- common/usb_storage.c | 59 ++++--- drivers/usb/gadget/composite.c | 1082 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ drivers/usb/gadget/config.c | 1 + drivers/usb/gadget/epautoconf.c | 1 + drivers/usb/gadget/ether.c | 1 + drivers/usb/gadget/s3c_udc_otg.c | 53 ++++--- drivers/usb/gadget/s3c_udc_otg_xfer_dma.c | 287 ++++++++++++++++++++-------------- drivers/usb/gadget/usbstring.c | 1 + drivers/usb/host/Makefile | 1 + drivers/usb/host/ehci-hcd.c | 288 ++++++++++++---------------------- drivers/usb/host/ehci-s5p.c | 110 +++++++++++++ include/linux/usb/ch9.h | 67 -------- include/linux/usb/composite.h | 350 +++++++++++++++++++++++++++++++++++++++++ include/linux/usb/gadget.h | 6 + include/scsi.h | 4 +- include/usb.h | 4 +- include/usb/lin_gadget_compat.h | 19 +++ include/usb/s3c_udc.h | 49 +----- 22 files changed, 2002 insertions(+), 502 deletions(-) create mode 100644 arch/arm/include/asm/arch-exynos/ehci-s5p.h create mode 100644 drivers/usb/gadget/composite.c create mode 100644 drivers/usb/host/ehci-s5p.c create mode 100644 include/linux/usb/composite.h

Dear Marek Vasut,
In message 201205200838.10106.marex@denx.de you wrote:
The following changes since commit f50bf50d7f6f99c5ad4666d63a7eef43d3940500:
Improve MAKEALL parallel builds (2012-05-18 13:49:04 +0200)
are available in the git repository at:
What exactly does the "FOR u-boot/-next" in the Subject: mean?
git://git.denx.de/u-boot-usb.git master
for you to fetch changes up to 5f0ffea4559abe3fc83a6023717658a50b22e66c:
USB: S5P: Add ehci support (2012-05-20 08:32:33 +0200)
Lukasz Majewski (5): usb:udc: Remove duplicated USB definitions from include/linux/usb/ch9.h file usb:udc:samsung:cleanup Replace DEBUG_* macros with debug_cond() calls usb:gadget:composite USB composite gadget support usb:gadget:composite: Support for composite at gadget.h usb:udc:samsung Add functions for storing private gadget data in UDC driver
Marek Vasut (3): USB: Drop ehci_alloc/ehci_free in ehci-hcd USB: Drop cache flush bloat in EHCI-HCD USB: Document the QH and qTD antics in EHCI-HCD
Mike Frysinger (1): usb: use noinline define
Puneet Saxena (1): USB: Align buffers at cacheline
Rajeshwari Shinde (1): USB: S5P: Add ehci support
arch/arm/include/asm/arch-exynos/ehci-s5p.h | 66 ++++++++ common/cmd_usb.c | 3 +- common/usb.c | 25 +-- common/usb_hub.c | 27 ++-- common/usb_storage.c | 59 ++++--- drivers/usb/gadget/composite.c | 1082 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ drivers/usb/gadget/config.c | 1 + drivers/usb/gadget/epautoconf.c | 1 + drivers/usb/gadget/ether.c | 1 + drivers/usb/gadget/s3c_udc_otg.c | 53 ++++--- drivers/usb/gadget/s3c_udc_otg_xfer_dma.c | 287 ++++++++++++++++++++-------------- drivers/usb/gadget/usbstring.c | 1 + drivers/usb/host/Makefile | 1 + drivers/usb/host/ehci-hcd.c | 288 ++++++++++++---------------------- drivers/usb/host/ehci-s5p.c | 110 +++++++++++++ include/linux/usb/ch9.h | 67 -------- include/linux/usb/composite.h | 350 +++++++++++++++++++++++++++++++++++++++++ include/linux/usb/gadget.h | 6 + include/scsi.h | 4 +- include/usb.h | 4 +- include/usb/lin_gadget_compat.h | 19 +++ include/usb/s3c_udc.h | 49 +----- 22 files changed, 2002 insertions(+), 502 deletions(-) create mode 100644 arch/arm/include/asm/arch-exynos/ehci-s5p.h create mode 100644 drivers/usb/gadget/composite.c create mode 100644 drivers/usb/host/ehci-s5p.c create mode 100644 include/linux/usb/composite.h
Applied, thanks.
Best regards,
Wolfgang Denk

Dear Wolfgang Denk,
Dear Marek Vasut,
In message 201205200838.10106.marex@denx.de you wrote:
The following changes since commit f50bf50d7f6f99c5ad4666d63a7eef43d3940500: Improve MAKEALL parallel builds (2012-05-18 13:49:04 +0200)
are available in the git repository at:
What exactly does the "FOR u-boot/-next" in the Subject: mean?
My mistake ... all right, I won't send pullRQs just before going to bed again.
git://git.denx.de/u-boot-usb.git master
for you to fetch changes up to 5f0ffea4559abe3fc83a6023717658a50b22e66c: USB: S5P: Add ehci support (2012-05-20 08:32:33 +0200)
Lukasz Majewski (5): usb:udc: Remove duplicated USB definitions from include/linux/usb/ch9.h
file
usb:udc:samsung:cleanup Replace DEBUG_* macros with debug_cond() calls usb:gadget:composite USB composite gadget support usb:gadget:composite: Support for composite at gadget.h usb:udc:samsung Add functions for storing private gadget data in UDC
driver
Marek Vasut (3): USB: Drop ehci_alloc/ehci_free in ehci-hcd USB: Drop cache flush bloat in EHCI-HCD USB: Document the QH and qTD antics in EHCI-HCD
Mike Frysinger (1): usb: use noinline define
Puneet Saxena (1): USB: Align buffers at cacheline
Rajeshwari Shinde (1): USB: S5P: Add ehci support
arch/arm/include/asm/arch-exynos/ehci-s5p.h | 66 ++++++++ common/cmd_usb.c | 3 +- common/usb.c | 25 +-- common/usb_hub.c | 27 ++-- common/usb_storage.c | 59 ++++--- drivers/usb/gadget/composite.c | 1082
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ ++++++++++++++++++++++++++++++++++++++++++++++++++++++
drivers/usb/gadget/config.c | 1 + drivers/usb/gadget/epautoconf.c | 1 + drivers/usb/gadget/ether.c | 1 + drivers/usb/gadget/s3c_udc_otg.c | 53 ++++--- drivers/usb/gadget/s3c_udc_otg_xfer_dma.c | 287
++++++++++++++++++++--------------
drivers/usb/gadget/usbstring.c | 1 + drivers/usb/host/Makefile | 1 + drivers/usb/host/ehci-hcd.c | 288
++++++++++++----------------------
drivers/usb/host/ehci-s5p.c | 110 +++++++++++++ include/linux/usb/ch9.h | 67 -------- include/linux/usb/composite.h | 350
+++++++++++++++++++++++++++++++++++++++++
include/linux/usb/gadget.h | 6 + include/scsi.h | 4 +- include/usb.h | 4 +- include/usb/lin_gadget_compat.h | 19 +++ include/usb/s3c_udc.h | 49 +----- 22 files changed, 2002 insertions(+), 502 deletions(-) create mode 100644 arch/arm/include/asm/arch-exynos/ehci-s5p.h create mode 100644 drivers/usb/gadget/composite.c create mode 100644 drivers/usb/host/ehci-s5p.c create mode 100644 include/linux/usb/composite.h
Applied, thanks.
Best regards,
Wolfgang Denk
Best regards, Marek Vasut
participants (2)
-
Marek Vasut
-
Wolfgang Denk