diff mbox series

[v2] board: freescale: lx216x : increase fdt blob size

Message ID 20210920134533.3297312-1-wasim.khan@oss.nxp.com
State Accepted
Commit 0ecf45f5bd038a2610e81491d4f9fb47c2b5c71d
Delegated to: Priyanka Jain
Headers show
Series [v2] board: freescale: lx216x : increase fdt blob size | expand

Commit Message

Wasim Khan Sept. 20, 2021, 1:45 p.m. UTC
From: Wasim Khan <wasim.khan@nxp.com>

Increase fdt blob size for lx2160 and lx2162 series
to fix below errors/warnings during device tree fixup.

Unable to update property /soc/spi@2100000:status, err=FDT_ERR_NOSPACE
Unable to update property /soc/spi@2110000:status, err=FDT_ERR_NOSPACE
Unable to update property /soc/spi@2120000:status, err=FDT_ERR_NOSPACE
WARNING: could not set reg FDT_ERR_NOSPACE.
WARNING unable to set iommus: FDT_ERR_NOSPACE

Signed-off-by: Wasim Khan <wasim.khan@nxp.com>
---
Change in v2:
- Return error code if fdt_increase_size() fails

 board/freescale/lx2160a/lx2160a.c | 8 ++++++++
 1 file changed, 8 insertions(+)

Comments

Tom Rini Sept. 20, 2021, 1:52 p.m. UTC | #1
On Mon, Sep 20, 2021 at 03:45:33PM +0200, Wasim Khan wrote:

> From: Wasim Khan <wasim.khan@nxp.com>
> 
> Increase fdt blob size for lx2160 and lx2162 series
> to fix below errors/warnings during device tree fixup.
> 
> Unable to update property /soc/spi@2100000:status, err=FDT_ERR_NOSPACE
> Unable to update property /soc/spi@2110000:status, err=FDT_ERR_NOSPACE
> Unable to update property /soc/spi@2120000:status, err=FDT_ERR_NOSPACE
> WARNING: could not set reg FDT_ERR_NOSPACE.
> WARNING unable to set iommus: FDT_ERR_NOSPACE
> 
> Signed-off-by: Wasim Khan <wasim.khan@nxp.com>

Reviewed-by: Tom Rini <trini@konsulko.com>
diff mbox series

Patch

diff --git a/board/freescale/lx2160a/lx2160a.c b/board/freescale/lx2160a/lx2160a.c
index f505e82fb9..ba3d62a002 100644
--- a/board/freescale/lx2160a/lx2160a.c
+++ b/board/freescale/lx2160a/lx2160a.c
@@ -828,10 +828,18 @@  int ft_board_setup(void *blob, struct bd_info *bd)
 	u64 mc_memory_base = 0;
 	u64 mc_memory_size = 0;
 	u16 total_memory_banks;
+	int err;
 #if CONFIG_IS_ENABLED(TARGET_LX2160ARDB)
 	u8 board_rev;
 #endif
 
+	err = fdt_increase_size(blob, 512);
+	if (err) {
+		printf("%s fdt_increase_size: err=%s\n", __func__,
+		       fdt_strerror(err));
+		return err;
+	}
+
 	ft_cpu_setup(blob, bd);
 
 	fdt_fixup_mc_ddr(&mc_memory_base, &mc_memory_size);