From 5aa79f26762d197324866a0d0c2b31601a7fc8ee Mon Sep 17 00:00:00 2001 From: Mike Looijmans Date: Tue, 26 Jul 2016 07:34:07 +0200 Subject: spl_nor.c: Support devicetree sizes different from 16k The devicetrees for various platforms already exceed 16k. Add a define CONFIG_SYS_FDT_SIZE to specify the FDT size, and set to 16k for the two boards that define this CONFIG_SYS_FDT_BASE parameter. This allows platforms with larger devicetree blobs to boot from NOR. Signed-off-by: Mike Looijmans --- common/spl/spl_nor.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'common/spl/spl_nor.c') diff --git a/common/spl/spl_nor.c b/common/spl/spl_nor.c index da2422f305..8ea874c888 100644 --- a/common/spl/spl_nor.c +++ b/common/spl/spl_nor.c @@ -40,11 +40,11 @@ int spl_nor_load_image(void) /* * Copy DT blob (fdt) to SDRAM. Passing pointer to - * flash doesn't work (16 KiB should be enough for DT) + * flash doesn't work */ memcpy((void *)CONFIG_SYS_SPL_ARGS_ADDR, (void *)(CONFIG_SYS_FDT_BASE), - (16 << 10)); + CONFIG_SYS_FDT_SIZE); return 0; } else { -- cgit