[U-Boot] [PATCH] rockchip: board: lion-rk3368: increase phy autonegotiation timeout

2018-06-06 Thread Jakob Unterwurzacher
first dhcp command work reliably. Signed-off-by: Jakob Unterwurzacher --- include/configs/lion_rk3368.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/configs/lion_rk3368.h b/include/configs/lion_rk3368.h index b9c6bf8954..cae0f1ed29 100644 --- a/include/configs/lion_rk3368.h

[U-Boot] [PATCH] rockchip: rk3399-puma: reduce env size to 8kiB

2017-12-21 Thread Jakob Unterwurzacher
...even when the environment is saved to SD card. With the default of 32kiB, the environment overwrites the SPL stage which lives at 16kiB. Signed-off-by: Jakob Unterwurzacher --- board/theobroma-systems/puma_rk3399/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a

[U-Boot] [PATCH] rockchip: rk3399-puma: set gpio4cd iodomain to 1.8V

2017-12-15 Thread Jakob Unterwurzacher
. Make PCIe work in Linux by setting the gpio4cd iodomain to 1.8V. Signed-off-by: Jakob Unterwurzacher --- board/theobroma-systems/puma_rk3399/puma-rk3399.c | 20 1 file changed, 20 insertions(+) diff --git a/board/theobroma-systems/puma_rk3399/puma-rk3399.c b/board/theobroma

[U-Boot] [PATCH] rockchip: rk3399-puma: preserve leading zeros in serial#

2017-12-07 Thread Jakob Unterwurzacher
Linux preserves leading zeros in /proc/cpuinfo, so we should as well. Otherwise we have the situation that /sys/firmware/devicetree/base/serial-number and /proc/cpuinfo disagree in Linux. Signed-off-by: Jakob Unterwurzacher --- board/theobroma-systems/puma_rk3399/puma-rk3399.c | 2 +- 1 file

[U-Boot] [PATCH] cmd_sf: Mention in the help text that mode, addr, offset and len must be given in hex.

2013-10-24 Thread Jakob Unterwurzacher
These parameters are always interpreted as hex, even without 0x prefix. Signed-off-by: Jakob Unterwurzacher --- common/cmd_sf.c |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/common/cmd_sf.c b/common/cmd_sf.c index 0a17782..0f7c0a3 100644 --- a/common/cmd_sf.c +++ b