mbox

[U-Boot,PULL] u-boot-usb/master

Message ID 56CDF2DB.70402@denx.de
State Accepted
Delegated to: Tom Rini
Headers show

Pull-request

git://git.denx.de/u-boot-usb.git master

Message

Marek Vasut Feb. 24, 2016, 6:13 p.m. UTC
The following changes since commit 52dd704bf8eda7ca039cdb398ec0b6895c3ef939:

  Merge branch 'master' of http://git.denx.de/u-boot-sunxi (2016-02-23
15:35:47 -0500)

are available in the git repository at:

  git://git.denx.de/u-boot-usb.git master

for you to fetch changes up to d7d8c00575c8ae766d387c763395470410427b69:

  implement Fastboot via USB OTG on bcm28155_ap boards (2016-02-24
19:12:33 +0100)

----------------------------------------------------------------
Marek Vasut (4):
      usb: ehci: Use map_physmem in ehci-generic
      usb: ehci: Implement V2P mapping
      usb: ehci: Clear USBMODE_BE on LE MMIO
      usb: ehci: Be explicit about the BE IO accessors

Stephen Warren (1):
      usb: eth: fix memalign() parameter order

Steve Rae (2):
      fastboot: update error and warning messages
      implement Fastboot via USB OTG on bcm28155_ap boards

Łukasz Majewski (2):
      dfu: usb: f_dfu: Set deferred call for dfu_flush() function
      dfu: odroid xu3: Define DFU_MANIFEST_POLL_TIMEOUT to handle large
files transmission and storage

 cmd/dfu.c                       | 20 ++++++++++++++++++++
 drivers/usb/eth/usb_ether.c     |  2 +-
 drivers/usb/gadget/f_dfu.c      | 11 +++--------
 drivers/usb/gadget/f_fastboot.c | 10 +++++-----
 drivers/usb/host/ehci-generic.c |  4 +++-
 drivers/usb/host/ehci-hcd.c     | 21 +++++++++++----------
 drivers/usb/host/ehci.h         |  5 +++--
 include/configs/bcm28155_ap.h   | 20 --------------------
 include/configs/odroid_xu3.h    |  1 +

 include/dfu.h                   | 25 +++++++++++++++++++++++++

 10 files changed, 72 insertions(+), 47 deletions(-)

Comments

Tom Rini Feb. 25, 2016, 3:23 p.m. UTC | #1
On Wed, Feb 24, 2016 at 07:13:47PM +0100, Marek Vasut wrote:

> The following changes since commit 52dd704bf8eda7ca039cdb398ec0b6895c3ef939:
> 
>   Merge branch 'master' of http://git.denx.de/u-boot-sunxi (2016-02-23
> 15:35:47 -0500)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-usb.git master
> 
> for you to fetch changes up to d7d8c00575c8ae766d387c763395470410427b69:
> 
>   implement Fastboot via USB OTG on bcm28155_ap boards (2016-02-24
> 19:12:33 +0100)
> 

Applied to u-boot/master, thanks!

But note and please fix ASAP:
Building current source for 1 boards (1 thread, 6 jobs per thread)
   aarch64:  +   p2571
+(p2571) In file included from arch/arm/include/asm/byteorder.h:29:0,
+(p2571)                  from include/compiler.h:125,
+(p2571)                  from include/image.h:19,
+(p2571)                  from include/common.h:88,
+(p2571)                  from drivers/usb/host/ehci-hcd.c:10:
+(p2571)    td->qt_buffer[idx] = cpu_to_hc32(virt_to_phys((void *)addr));
+(p2571)                                                  ^
+(p2571) include/linux/byteorder/little_endian.h:34:51: note: in definition of macro ‘__cpu_to_le32’
+(p2571)  #define __cpu_to_le32(x) ((__force __le32)(__u32)(x))
+(p2571)                                                    ^
+(p2571) drivers/usb/host/ehci-hcd.c:250:24: note: in expansion of macro ‘cpu_to_hc32’
+(p2571)                         ^
w+(p2571) drivers/usb/host/ehci-hcd.c: In function ‘ehci_td_buffer’:
w+(p2571) drivers/usb/host/ehci-hcd.c:250:49: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]

Also seen on p2371-2180 and p2371-0000
Marek Vasut Feb. 26, 2016, 10:44 p.m. UTC | #2
On 02/25/2016 04:23 PM, Tom Rini wrote:
> On Wed, Feb 24, 2016 at 07:13:47PM +0100, Marek Vasut wrote:
> 
>> The following changes since commit 52dd704bf8eda7ca039cdb398ec0b6895c3ef939:
>>
>>   Merge branch 'master' of http://git.denx.de/u-boot-sunxi (2016-02-23
>> 15:35:47 -0500)
>>
>> are available in the git repository at:
>>
>>   git://git.denx.de/u-boot-usb.git master
>>
>> for you to fetch changes up to d7d8c00575c8ae766d387c763395470410427b69:
>>
>>   implement Fastboot via USB OTG on bcm28155_ap boards (2016-02-24
>> 19:12:33 +0100)
>>
> 
> Applied to u-boot/master, thanks!
> 
> But note and please fix ASAP:
> Building current source for 1 boards (1 thread, 6 jobs per thread)
>    aarch64:  +   p2571
> +(p2571) In file included from arch/arm/include/asm/byteorder.h:29:0,
> +(p2571)                  from include/compiler.h:125,
> +(p2571)                  from include/image.h:19,
> +(p2571)                  from include/common.h:88,
> +(p2571)                  from drivers/usb/host/ehci-hcd.c:10:
> +(p2571)    td->qt_buffer[idx] = cpu_to_hc32(virt_to_phys((void *)addr));
> +(p2571)                                                  ^
> +(p2571) include/linux/byteorder/little_endian.h:34:51: note: in definition of macro ‘__cpu_to_le32’
> +(p2571)  #define __cpu_to_le32(x) ((__force __le32)(__u32)(x))
> +(p2571)                                                    ^
> +(p2571) drivers/usb/host/ehci-hcd.c:250:24: note: in expansion of macro ‘cpu_to_hc32’
> +(p2571)                         ^
> w+(p2571) drivers/usb/host/ehci-hcd.c: In function ‘ehci_td_buffer’:
> w+(p2571) drivers/usb/host/ehci-hcd.c:250:49: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
> 
> Also seen on p2371-2180 and p2371-0000

Should be fixed nowish. Sorry for the mess.
Tom Rini Feb. 28, 2016, 1:19 a.m. UTC | #3
On Fri, Feb 26, 2016 at 11:44:19PM +0100, Marek Vasut wrote:

> On 02/25/2016 04:23 PM, Tom Rini wrote:
> > On Wed, Feb 24, 2016 at 07:13:47PM +0100, Marek Vasut wrote:
> > 
> >> The following changes since commit 52dd704bf8eda7ca039cdb398ec0b6895c3ef939:
> >>
> >>   Merge branch 'master' of http://git.denx.de/u-boot-sunxi (2016-02-23
> >> 15:35:47 -0500)
> >>
> >> are available in the git repository at:
> >>
> >>   git://git.denx.de/u-boot-usb.git master
> >>
> >> for you to fetch changes up to d7d8c00575c8ae766d387c763395470410427b69:
> >>
> >>   implement Fastboot via USB OTG on bcm28155_ap boards (2016-02-24
> >> 19:12:33 +0100)
> >>
> > 
> > Applied to u-boot/master, thanks!
> > 
> > But note and please fix ASAP:
> > Building current source for 1 boards (1 thread, 6 jobs per thread)
> >    aarch64:  +   p2571
> > +(p2571) In file included from arch/arm/include/asm/byteorder.h:29:0,
> > +(p2571)                  from include/compiler.h:125,
> > +(p2571)                  from include/image.h:19,
> > +(p2571)                  from include/common.h:88,
> > +(p2571)                  from drivers/usb/host/ehci-hcd.c:10:
> > +(p2571)    td->qt_buffer[idx] = cpu_to_hc32(virt_to_phys((void *)addr));
> > +(p2571)                                                  ^
> > +(p2571) include/linux/byteorder/little_endian.h:34:51: note: in definition of macro ‘__cpu_to_le32’
> > +(p2571)  #define __cpu_to_le32(x) ((__force __le32)(__u32)(x))
> > +(p2571)                                                    ^
> > +(p2571) drivers/usb/host/ehci-hcd.c:250:24: note: in expansion of macro ‘cpu_to_hc32’
> > +(p2571)                         ^
> > w+(p2571) drivers/usb/host/ehci-hcd.c: In function ‘ehci_td_buffer’:
> > w+(p2571) drivers/usb/host/ehci-hcd.c:250:49: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
> > 
> > Also seen on p2371-2180 and p2371-0000
> 
> Should be fixed nowish. Sorry for the mess.

Applied to u-boot/master, thanks!