[U-Boot] [PATCH 4/6] kc1: Include explicit serial baudrate on bootargs

2016-03-26 Thread Paul Kocialkowski
This makes the baudrate for the kernel command line explicit. Signed-off-by: Paul Kocialkowski --- include/configs/kc1.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/configs/kc1.h b/include/configs/kc1.h index 4eb6f85..1e6b037 100644 --- a/include/configs/kc1.h +++

[U-Boot] [PATCH 5/6] kc1: Select libfdt to allow running devicetree-based kernels

2016-03-26 Thread Paul Kocialkowski
Selecting CONFIG_OF_LIBFDT allows running recent mainline kernels. Signed-off-by: Paul Kocialkowski --- configs/kc1_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/configs/kc1_defconfig b/configs/kc1_defconfig index 1e5c918..4de0b34 100644 --- a/configs/kc1_defconfig +++ b/configs/

[U-Boot] [PATCH 2/6] kc1: Move PXE file address to a viable location

2016-03-26 Thread Paul Kocialkowski
This moves the PXE file address out of the bounds of the U-Boot image (which is loaded at 0x8010). This also moves the ramdisk address to a better-looking aligned location. Signed-off-by: Paul Kocialkowski --- include/configs/kc1.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)

[U-Boot] [PATCH 3/6] sniper: Include explicit serial baudrate on bootargs

2016-03-26 Thread Paul Kocialkowski
This makes the baudrate for the kernel command line explicit. Signed-off-by: Paul Kocialkowski --- include/configs/sniper.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/configs/sniper.h b/include/configs/sniper.h index 2598af1..b818696 100644 --- a/include/configs/

[U-Boot] [PATCH 1/6] sniper: Move PXE file address to a viable location

2016-03-26 Thread Paul Kocialkowski
This moves the PXE file address out of the bounds of the U-Boot image (which is loaded at 0x8010). This also moves the ramdisk address to a better-looking aligned location. Signed-off-by: Paul Kocialkowski --- include/configs/sniper.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-

[U-Boot] [PATCH 6/6] kc1: Add some sysboot and devicetree-related environment variables

2016-03-26 Thread Paul Kocialkowski
This adds some environment variables for sysboot and devicetree. Signed-off-by: Paul Kocialkowski --- include/configs/kc1.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/configs/kc1.h b/include/configs/kc1.h index 1e6b037..e19fa12 100644 --- a/include/configs/kc1.h +++ b/include/

Re: [U-Boot] [RFC PATCH v1] armv8: LS2080A: Consolidate LS2080A and LS2085A

2016-03-26 Thread Prabhakar Kushwaha
> -Original Message- > From: York Sun [mailto:york@nxp.com] > Sent: Thursday, March 24, 2016 1:43 AM > To: U-Boot Mailing List > Cc: Stuart Yoder ; Scott Wood ; > Huan Wang ; york sun ; > Prabhakar Kushwaha ; Ramneek Mehresh > ; Pratiyush Mohan Srivastava > ; Li Yang ; Hou > Zhiqiang

Re: [U-Boot] [PATCH v3] arm: socfpga: migration of CONFIG_SPI_FLASH_BAR

2016-03-26 Thread Marek Vasut
On 03/24/2016 10:39 PM, Denis Bakhvalov wrote: > CONFIG_SPI_FLASH_BAR was deleted from socfpga_common.h > and placed in socfpga_*_defconfig because it is Kconfig symbol. > > Signed-off-by: Denis Bakhvalov > Reported-by: Denis Bakhvalov > Cc: Marek Vasut > Acked-by: Marek Vasut > --- > Changes

[U-Boot] [PATCH 1/2] warp7: Pass the UART base definition

2016-03-26 Thread Fabio Estevam
From: Fabio Estevam Since commit 5d69269deed0 ("mx7dsabresd: Define serial port locally") we need to specify the UART base address in each board config file, so do this to avoid a build error. Signed-off-by: Fabio Estevam --- include/configs/warp7.h | 2 ++ 1 file changed, 2 insertions(+) dif

[U-Boot] [PATCH 2/2] mx7_common: Define CONFIG_SYS_MALLOC_LEN in the board file

2016-03-26 Thread Fabio Estevam
From: Fabio Estevam Having CONFIG_SYS_MALLOC_LEN in mx7_common.h is not a good idea, because the malloc() pool size is board dependent. For example: if a certain board has support for splashscreen or DFU, it may be necessary to adjust CONFIG_SYS_MALLOC_LEN to a larger value. So define CONFIG_S

Re: [U-Boot] [PATCH 1/6] sniper: Move PXE file address to a viable location

2016-03-26 Thread Tom Rini
On Sat, Mar 26, 2016 at 12:19:59PM +0100, Paul Kocialkowski wrote: > This moves the PXE file address out of the bounds of the U-Boot image (which > is > loaded at 0x8010). > > This also moves the ramdisk address to a better-looking aligned location. > > Signed-off-by: Paul Kocialkowski > --

Re: [U-Boot] [PATCH 5/6] kc1: Select libfdt to allow running devicetree-based kernels

2016-03-26 Thread Tom Rini
On Sat, Mar 26, 2016 at 12:20:03PM +0100, Paul Kocialkowski wrote: > Selecting CONFIG_OF_LIBFDT allows running recent mainline kernels. > > Signed-off-by: Paul Kocialkowski Reviewed-by: Tom Rini -- Tom signature.asc Description: Digital signature ___

Re: [U-Boot] [PATCH 3/6] sniper: Include explicit serial baudrate on bootargs

2016-03-26 Thread Tom Rini
On Sat, Mar 26, 2016 at 12:20:01PM +0100, Paul Kocialkowski wrote: > This makes the baudrate for the kernel command line explicit. > > Signed-off-by: Paul Kocialkowski Reviewed-by: Tom Rini -- Tom signature.asc Description: Digital signature ___

Re: [U-Boot] [PATCH 6/6] kc1: Add some sysboot and devicetree-related environment variables

2016-03-26 Thread Tom Rini
On Sat, Mar 26, 2016 at 12:20:04PM +0100, Paul Kocialkowski wrote: > This adds some environment variables for sysboot and devicetree. > > Signed-off-by: Paul Kocialkowski > --- > include/configs/kc1.h | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/include/configs/kc1.h b/include/co

Re: [U-Boot] [PATCH 4/6] kc1: Include explicit serial baudrate on bootargs

2016-03-26 Thread Tom Rini
On Sat, Mar 26, 2016 at 12:20:02PM +0100, Paul Kocialkowski wrote: > This makes the baudrate for the kernel command line explicit. > > Signed-off-by: Paul Kocialkowski Reviewed-by: Tom Rini -- Tom signature.asc Description: Digital signature ___

Re: [U-Boot] Newbie SPL question for socfpga_sockit

2016-03-26 Thread Marek Vasut
On 03/22/2016 06:06 PM, Dinh Nguyen wrote: > > > On 03/20/2016 11:42 AM, Marek Vasut wrote: >>> >>> Sorry, I know that doesn't help. So let's walk through my workflow. I am >>> not using any Altera tools when I build. >>> >>> $make socfpga_de0_nano_soc_defconfig >>> $make u-boot-with-spl.sfp >>>