From mboxrd@z Thu Jan 1 00:00:00 1970 From: Kever Yang Date: Thu, 23 Feb 2017 15:44:27 +0800 Subject: [U-Boot] [PATCH v2 8/9] arm64: rk3399: add SPL support In-Reply-To: References: <1486978742-21874-1-git-send-email-kever.yang@rock-chips.com> <1486978742-21874-9-git-send-email-kever.yang@rock-chips.com> Message-ID: <58AE92DB.50206@rock-chips.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Hi Simon, On 02/23/2017 12:16 PM, Simon Glass wrote: > Hi Kever, > > On 13 February 2017 at 02:39, Kever Yang wrote: >> Add SPL support for rk3399, default with of-platdata enabled. >> >> Signed-off-by: Kever Yang >> --- >> >> Changes in v2: >> - split SPL patch into 4 patches >> >> Changes in v1: None >> >> arch/arm/Kconfig | 1 + >> arch/arm/mach-rockchip/Kconfig | 2 + >> arch/arm/mach-rockchip/Makefile | 1 + >> arch/arm/mach-rockchip/rk3399-board-spl.c | 158 ++++++++++++++++++++++++++++++ >> include/configs/rk3399_common.h | 6 ++ >> 5 files changed, 168 insertions(+) >> create mode 100644 arch/arm/mach-rockchip/rk3399-board-spl.c >> >> diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig >> index d871a45..9a0efe4 100644 >> --- a/arch/arm/Kconfig >> +++ b/arch/arm/Kconfig >> @@ -882,6 +882,7 @@ config ARCH_ROCKCHIP >> select DM >> select SPL_DM if SPL >> select SYS_MALLOC_F >> + select SPL_SEPARATE_BSS if SPL > Unfortunately this line seems to break firefly-rk3288, for example. > > Can you perhaps move it to RK3399 only? Yes, I can move it to RK3399, can I send v4 patch only for this one, because the patch is too big. Thanks, - Kever > > Regards, > Simon > > >