From mboxrd@z Thu Jan 1 00:00:00 1970 From: Maxime Ripard Date: Fri, 20 Jan 2017 22:35:07 +0100 Subject: [U-Boot] [RFC PATCH 08/11] sunxi: SPL: add FIT config selector for Pine64 boards In-Reply-To: <1484877211-19332-9-git-send-email-andre.przywara@arm.com> References: <1484877211-19332-1-git-send-email-andre.przywara@arm.com> <1484877211-19332-9-git-send-email-andre.przywara@arm.com> Message-ID: <20170120213507.fe6ul4ygvuwrrm56@lukather> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Hi, On Fri, Jan 20, 2017 at 01:53:28AM +0000, Andre Przywara wrote: > For a board or platform to support FIT loading in the SPL, it has to > provide a board_fit_config_name_match() routine, which helps to select > one of possibly multiple DTBs contained in a FIT image. > Provide a simple function to cover the two different Pine64 models, > which can be easily told apart by looking at the amount of installed > RAM. > > Signed-off-by: Andre Przywara > --- > board/sunxi/board.c | 13 +++++++++++++ > 1 file changed, 13 insertions(+) > > diff --git a/board/sunxi/board.c b/board/sunxi/board.c > index 5365638..bbbb826 100644 > --- a/board/sunxi/board.c > +++ b/board/sunxi/board.c > @@ -726,3 +726,16 @@ int ft_board_setup(void *blob, bd_t *bd) > #endif > return 0; > } > + > +#ifdef CONFIG_SPL_LOAD_FIT > +int board_fit_config_name_match(const char *name) > +{ > +#ifdef CONFIG_MACH_SUN50I > + if ((gd->ram_size > 512 * 1024 * 1024)) > + return !strcmp(name, "sun50i-a64-pine64-plus"); > + else > + return !strcmp(name, "sun50i-a64-pine64"); > +#endif > + return -1; > +} That looks fishy. It means that any A64 board with CONFIG_SPL_LOAD_FIT enabled will be considered a pine64 board? Maxime -- Maxime Ripard, Free Electrons Embedded Linux and Kernel engineering http://free-electrons.com -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 801 bytes Desc: not available URL: