[U-Boot] [PATCH 04/36] rockchip: defconfig: remove CONFIG_SYS_NS16550

2018-03-27 Thread Kever Yang
We have enable NS16550 in Kconfig, do not need enable at defconfig Signed-off-by: Kever Yang --- configs/evb-rk3128_defconfig | 1 - configs/evb-rk3229_defconfig | 1 - configs/evb-rk3288_defconfig | 1 - configs/evb-rk3328_defconfig | 1 -

[U-Boot] [PATCH 07/36] rockchip: rk3328: add BOOT_MODE_REG for rk3328

2018-03-27 Thread Kever Yang
Signed-off-by: Kever Yang --- arch/arm/mach-rockchip/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/mach-rockchip/Kconfig b/arch/arm/mach-rockchip/Kconfig index 98bf935..892d51e 100644 --- a/arch/arm/mach-rockchip/Kconfig +++

[U-Boot] [PATCH 03/36] rockchip: enable SYS_NS16550 for all SoCs by default

2018-03-27 Thread Kever Yang
All rockchip SoCs can use ns16550 driver, enable it for all and set SYS_NS16550_MEM32 for all SoCs. Signed-off-by: Kever Yang --- arch/arm/Kconfig | 1 + arch/arm/mach-rockchip/Kconfig| 1 - include/configs/rk3036_common.h | 3 ---

[U-Boot] [PATCH 08/36] rockchip: rk322x: remove use rockchip timer as sys timer

2018-03-27 Thread Kever Yang
We can use arch timer instead of rockchip timer. Signed-off-by: Kever Yang --- include/configs/rk322x_common.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/include/configs/rk322x_common.h b/include/configs/rk322x_common.h index 832f037..29e222a 100644 ---

[U-Boot] [PATCH 02/36] rockchip: add common MACRO to enable sys arch timer

2018-03-27 Thread Kever Yang
All rockchip SoCs can use ARM arch timer, let's enable it in common header file Signed-off-by: Kever Yang --- include/configs/rk3368_common.h | 2 -- include/configs/rk3399_common.h | 2 -- include/configs/rockchip-common.h | 4 3 files changed, 4

[U-Boot] [PATCH 01/36] rockchip: rk3288: move configure_l2ctlr back to rk3288

2018-03-27 Thread Kever Yang
The configure_l2ctlr() is used only by rk3288, do not need to locate in sys_proto.h Signed-off-by: Kever Yang --- arch/arm/include/asm/arch-rockchip/sys_proto.h | 22 -- arch/arm/mach-rockchip/rk3288/rk3288.c | 26

[U-Boot] [PATCH] cmd: nvedit: Add filtering during env import

2018-03-27 Thread Alex Kiernan
When importing variables allow size to be elided using '-' and then support a list of variables which restricts what will be picked during the import. Signed-off-by: Alex Kiernan --- cmd/nvedit.c | 26 +++--- 1 file changed, 19 insertions(+), 7

[U-Boot] [PATCH 2/2] dm: pci: Avoid setting a PCI region that has 0 size

2018-03-27 Thread Bin Meng
It makes no sense to set a PCI region that has 0 size. Signed-off-by: Bin Meng --- drivers/pci/pci-uclass.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/drivers/pci/pci-uclass.c b/drivers/pci/pci-uclass.c index 9d51236..a2e8296 100644 ---

[U-Boot] [PATCH 1/2] dm: pci: Check board information pointer in decode_regions()

2018-03-27 Thread Bin Meng
PCI enumeration may happen very early on an x86 board. The board information pointer should have been checked in decode_regions() as its space may not be allocated yet. With this commit, Intel Galileo board boots again. Fixes: 664758c ("pci: Fix decode regions for memory banks") Signed-off-by:

Re: [U-Boot] [PATCH] pci: Fix decode regions for memory banks

2018-03-27 Thread Bin Meng
Hi Bernhard, On Fri, Mar 23, 2018 at 12:27 AM, Bernhard Messerklinger wrote: > Hi, > > Thanks for the report. > I am answering from my private email. At the moment I can't find any issue > regarding my patch. It should make no difference since dram_init_banksize in >

Re: [U-Boot] [PATCH v3 2/5] ARM: dts: i.MX6QDL: U-Boot specific dts for u-boot, dm-spl

2018-03-27 Thread Lothar Waßmann
Hi, On Mon, 26 Mar 2018 17:46:52 +0530 Jagan Teki wrote: > u-boot,dm-spl property is specific to U-Boot, so move it into > *u-boot.dtsi files for relevant i.MX6QDL files. > > This make syncing Linux dts files straight forward. > > Also update the MAINTAINERS file for dts files. > >

<    1   2