Re: [U-Boot] [PATCH v2 3/6] usb: dwc3: Add generic DWC3 glue logic driver

2018-05-20 Thread Michal Simek
On 18.5.2018 15:26, Jean-Jacques Hiblot wrote: > > > On 18/05/2018 15:24, Jean-Jacques Hiblot wrote: >> >> >> On 18/05/2018 13:15, Michal Simek wrote: >>> By enabling BLK by default this is the next driver which needs to get >>> support for DM_USB. Adding generic DWC3 glue logic which only >>> pa

Re: [U-Boot] [PATCH v1] EHCI: Fix endian access issue on EHCI intinalization

2018-05-20 Thread Yinbo Zhu
+York Sun -Original Message- From: yinbo@nxp.com [mailto:yinbo@nxp.com] Sent: 2018年1月22日 15:22 To: u-boot@lists.denx.de Cc: Xiaobo Xie ; Jerry Huang ; Ran Wang ; Yinbo Zhu Subject: [PATCH v1] EHCI: Fix endian access issue on EHCI intinalization From: yinbo.zhu This issue is e

Re: [U-Boot] [PULL] Please pull u-boot-imx

2018-05-20 Thread Tom Rini
On Fri, May 18, 2018 at 10:23:18PM -0400, Tom Rini wrote: > On Fri, May 18, 2018 at 08:51:42AM +0200, Stefano Babic wrote: > > > Hi Tom, > > > > please pull from u-boot-imx, thanks ! > > > > The following changes since commit f2d0f5e7ab3b8a7b4bf6e2ac499b4867c701d52d: > > > > ARM: re-enable MV

Re: [U-Boot] [RFC][PATCH] block: Enable block cache by default

2018-05-20 Thread Marek Vasut
On 05/21/2018 03:48 AM, Tom Rini wrote: > On Sun, May 20, 2018 at 01:39:07AM +0200, Marek Vasut wrote: >> On 05/20/2018 12:29 AM, Tom Rini wrote: >>> On Sat, May 19, 2018 at 11:39:38PM +0200, Marek Vasut wrote: On 05/19/2018 10:50 PM, Tom Rini wrote: > On Sat, May 19, 2018 at 08:20:30PM +0

Re: [U-Boot] [PATCH v2] ehci: Replace board_prepare_usb with board_usb_init

2018-05-20 Thread Marek Vasut
On 05/20/2018 10:12 PM, Ramon Fried wrote: > On Sun, May 20, 2018 at 10:34 PM, Marek Vasut wrote: >> On 05/20/2018 09:15 PM, Ramon Fried wrote: >>> Use standard board_usb_init() instead of the specific board_prepare_usb. >>> >>> Signed-off-by: Ramon Fried >>> --- >>> v2: remove a line that sneake

Re: [U-Boot] [PULL] u-boot-sh/master

2018-05-20 Thread Tom Rini
On Sun, May 20, 2018 at 12:08:12PM +0200, Marek Vasut wrote: > The following changes since commit 855ff8e6dd58b01930d8b8b726e65310d546a0c9: > > Fixup various SPDX tags from the latest merge (2018-05-18 17:56:50 -0400) > > are available in the Git repository at: > > git://git.denx.de/u-boot-

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

2018-05-20 Thread Tom Rini
On Sun, May 20, 2018 at 12:06:00PM +0200, Marek Vasut wrote: > The following changes since commit 233719cc40b5a00f37949d4173c190edcb4491a1: > > Merge git://www.denx.de/git/u-boot-marvell (2018-05-17 12:38:30 -0400) > > are available in the Git repository at: > > git://git.denx.de/u-boot-usb

Re: [U-Boot] [PULL] u-boot-socfpga/master

2018-05-20 Thread Tom Rini
On Sun, May 20, 2018 at 12:05:32PM +0200, Marek Vasut wrote: > The following changes since commit 233719cc40b5a00f37949d4173c190edcb4491a1: > > Merge git://www.denx.de/git/u-boot-marvell (2018-05-17 12:38:30 -0400) > > are available in the Git repository at: > > git://git.denx.de/u-boot-soc

Re: [U-Boot] [RFC][PATCH] block: Enable block cache by default

2018-05-20 Thread Tom Rini
On Sun, May 20, 2018 at 01:39:07AM +0200, Marek Vasut wrote: > On 05/20/2018 12:29 AM, Tom Rini wrote: > > On Sat, May 19, 2018 at 11:39:38PM +0200, Marek Vasut wrote: > >> On 05/19/2018 10:50 PM, Tom Rini wrote: > >>> On Sat, May 19, 2018 at 08:20:30PM +0200, Marek Vasut wrote: > On 05/19/201

Re: [U-Boot] SPDX header on .h files

2018-05-20 Thread Fabio Estevam
On Sun, May 20, 2018 at 8:15 PM, Duncan Hare wrote: > What's the correct format for this header? > Patman is complaining about the SPDX header. Please check: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/Documentation/process/license-rules.rst?h=v4.17-rc6 For header fil

[U-Boot] [PATCH v11 3/3] Add wget, for fast file transfer.

2018-05-20 Thread DH
From: Duncan Hare > Signed-off-by: Duncan Hare --- All the code is new, and not copied from any source. Changes in v11: Adding wget cmd/Kconfig| 7 + cmd/net.c | 13 ++ include/net.h | 8 +- include/net/wget.h | 19 +++ net/Makefile | 1 + net/ne

[U-Boot] [PATCH v11 1/3] Adding TCP and wget into u-boot

2018-05-20 Thread DH
From: Duncan Hare > Initial changes for adding TCP Meet change control standards after review Signed-off-by: Duncan Hare --- Consolidatind UDP header functions to make it easier to add TCP versions of the same, while reusing IP portions. This patch should not change any behaviors. A

[U-Boot] [PATCH v11 2/3] Adding TCP

2018-05-20 Thread DH
From: Duncan Hare All the code is new, and not copied from any source. > For Multi-hop fast netwoks, (aka Long Fat networks) SACK provides continued stream teansfer without delaying the transfer for a misssing packet. Signed-off-by: Duncan Hare Signed-off-by: Duncan Hare --- Clean c

[U-Boot] [PATCH v11 0/3] Why netboot:

2018-05-20 Thread DH
From: Duncan Hare Central management, including logs and change control, coupled with with enhanced security and unauthorized change detection and remediation by exposing a small attack surface. Why TCP with Selective Acknowledgement: Currently file transfer are done using tftp or NFS both over

[U-Boot] SPDX header on .h files

2018-05-20 Thread Duncan Hare
What's the correct format for this header? Patman is complaining about the SPDX header.  Duncan Hare 714 931 7952 ___ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/u-boot

[U-Boot] Patman - How to send patched with errors

2018-05-20 Thread Duncan Hare
Hi Simon I have forgotten how to override the on errors do not sent patchesoption. tools/patman/patman -c3  -? What's the "?" Thanks  Duncan Hare 714 931 7952 ___ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/u-boot

Re: [U-Boot] [PATCH v2] ehci: Replace board_prepare_usb with board_usb_init

2018-05-20 Thread Ramon Fried
On Sun, May 20, 2018 at 10:34 PM, Marek Vasut wrote: > On 05/20/2018 09:15 PM, Ramon Fried wrote: >> Use standard board_usb_init() instead of the specific board_prepare_usb. >> >> Signed-off-by: Ramon Fried >> --- >> v2: remove a line that sneaked in by mistake >> board/qualcomm/dragonboard410c/

Re: [U-Boot] [PATCH v2] ehci: Replace board_prepare_usb with board_usb_init

2018-05-20 Thread Marek Vasut
On 05/20/2018 09:15 PM, Ramon Fried wrote: > Use standard board_usb_init() instead of the specific board_prepare_usb. > > Signed-off-by: Ramon Fried > --- > v2: remove a line that sneaked in by mistake > board/qualcomm/dragonboard410c/dragonboard410c.c | 4 ++-- > drivers/usb/host/ehci-msm.c

[U-Boot] [PATCH v2] ehci: Replace board_prepare_usb with board_usb_init

2018-05-20 Thread Ramon Fried
Use standard board_usb_init() instead of the specific board_prepare_usb. Signed-off-by: Ramon Fried --- v2: remove a line that sneaked in by mistake board/qualcomm/dragonboard410c/dragonboard410c.c | 4 ++-- drivers/usb/host/ehci-msm.c | 9 ++--- 2 files changed, 4 inser

[U-Boot] [PATCH] ehci: msm: Replace board_prepare_usb with board_usb_init

2018-05-20 Thread Ramon Fried
Use standard board_usb_init() instead of the specific board_prepare_usb. Signed-off-by: Ramon Fried --- board/qualcomm/dragonboard410c/dragonboard410c.c | 4 ++-- drivers/usb/host/ehci-msm.c | 11 --- 2 files changed, 6 insertions(+), 9 deletions(-) diff --git a/bo

Re: [U-Boot] [PATCH v2 1/2] cmd: nvedit: add whitelist option for env import

2018-05-20 Thread Lothar Waßmann
Hi, On Fri, 18 May 2018 16:44:59 +0200 Quentin Schulz wrote: > While the `env export` can take as parameters variables to be exported, > `env import` does not have such a mechanism of variable selection. > > Let's add a `-w` option that asks `env import` to look for the > `whitelisted_vars` env v

[U-Boot] [PULL] u-boot-sh/master

2018-05-20 Thread Marek Vasut
The following changes since commit 855ff8e6dd58b01930d8b8b726e65310d546a0c9: Fixup various SPDX tags from the latest merge (2018-05-18 17:56:50 -0400) are available in the Git repository at: git://git.denx.de/u-boot-sh.git master for you to fetch changes up to 232a1a5f8f7318c56be4a193622b3b

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

2018-05-20 Thread Marek Vasut
The following changes since commit 233719cc40b5a00f37949d4173c190edcb4491a1: Merge git://www.denx.de/git/u-boot-marvell (2018-05-17 12:38:30 -0400) are available in the Git repository at: git://git.denx.de/u-boot-usb.git master for you to fetch changes up to 0ad3f771b69c0db837f40f6ffd5d4191

[U-Boot] [PULL] u-boot-socfpga/master

2018-05-20 Thread Marek Vasut
The following changes since commit 233719cc40b5a00f37949d4173c190edcb4491a1: Merge git://www.denx.de/git/u-boot-marvell (2018-05-17 12:38:30 -0400) are available in the Git repository at: git://git.denx.de/u-boot-socfpga.git master for you to fetch changes up to 00f7ae6138ad8b9d859a70d02216