[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

[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

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

[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

[U-Boot] [PATCH v1 1/6] board: imx53: Always disable display before starting kernel

2018-05-20 Thread Lukasz Majewski
This patch prevents from the situation where we may end up with garbage displayed on the LCD panel. Such situation occurs when one performs "reboot -f" in Linux and then stop in U-boot (or observe the garbage on the screen during boot up). To prevent from such situation - the PWM pin is

[U-Boot] [PATCH v1 2/6] board: Adjust K+P script to run misc (per board) adjustments

2018-05-20 Thread Lukasz Majewski
This change gives the opportunity to adjust Linux command line for the imx53 device with some legacy data. Signed-off-by: Lukasz Majewski --- board/k+p/bootscripts/tpcboot.cmd | 6 ++ 1 file changed, 6 insertions(+) diff --git a/board/k+p/bootscripts/tpcboot.cmd

[U-Boot] [PATCH v1 6/6] config: Update defconfig for imx53 K+P boards

2018-05-20 Thread Lukasz Majewski
This commit updates the defconfig for the HSC and DDC boards. Signed-off-by: Lukasz Majewski --- configs/kp_imx53_defconfig | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/configs/kp_imx53_defconfig b/configs/kp_imx53_defconfig index

[U-Boot] [PATCH v1 0/6] board: k+p: Minor adjustments for K+P imx53 boards

2018-05-20 Thread Lukasz Majewski
This patch series include minor adjustments for imx53 boards. Travis-CI: https://travis-ci.org/lmajewski/u-boot-dfu/builds/381036307 Lukasz Majewski (6): board: imx53: Always disable display before starting kernel board: Adjust K+P script to run misc (per board) adjustments board: Add

[U-Boot] [PATCH v1 3/6] board: Add support for KEY1 status detection on K+P's HSC|DDC boards

2018-05-20 Thread Lukasz Majewski
This code provides information if the K+P's imx53 boards had KEY1 pressed. Signed-off-by: Lukasz Majewski --- arch/arm/dts/imx53-kp.dts | 2 ++ board/k+p/kp_imx53/kp_imx53.c | 14 ++ 2 files changed, 16 insertions(+) diff --git a/arch/arm/dts/imx53-kp.dts

[U-Boot] [PATCH v1 4/6] board: Silent out the console on the K+P's imx53 boards

2018-05-20 Thread Lukasz Majewski
Disable console output by default on imx53 based boards from K+P. Signed-off-by: Lukasz Majewski --- include/configs/kp_imx53.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/configs/kp_imx53.h b/include/configs/kp_imx53.h index 530c3557d0..0dc708e480 100644 ---

[U-Boot] [PATCH v1 5/6] board: Remove not needed function for the K+P's imx53 board

2018-05-20 Thread Lukasz Majewski
The get_board_rev() is not needed anymore as a generic function for the imx53 SoC has been used instead. Signed-off-by: Lukasz Majewski --- board/k+p/kp_imx53/kp_imx53.c | 12 1 file changed, 12 deletions(-) diff --git a/board/k+p/kp_imx53/kp_imx53.c

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

[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 ++---

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 ++-- >

[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

[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

[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] [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.

[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

[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 +-

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:

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

[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

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: > >

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: > >

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: > >

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:

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

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

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