diff options
author | Peng Fan <peng.fan@nxp.com> | 2019-03-07 12:43:37 +0000 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2019-04-25 17:03:25 +0200 |
commit | e5b8f7e665aa175f0c48e045a0e143f3e22c148d (patch) | |
tree | 2ba01b7dc984ff9c3b66bfb247f27ecd3321c78b /board/freescale/imx8qxp_mek | |
parent | c7d00f63d1d1c5e21ea4bf045370018638d0693e (diff) | |
download | u-boot-e5b8f7e665aa175f0c48e045a0e143f3e22c148d.tar.gz |
imx8qxp: mek: enable dm-spl for pm
with u-boot,dm-spl added for imx8qx-pm node, and SPL_SIMPLE_BUS enabled,
the bind and probe code in board file could be removed.
Also we need to enlarge SYS_MALLOC_F_LEN to avoid calloc fail.
Signed-off-by: Peng Fan <peng.fan@nxp.com>
Diffstat (limited to 'board/freescale/imx8qxp_mek')
-rw-r--r-- | board/freescale/imx8qxp_mek/spl.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/board/freescale/imx8qxp_mek/spl.c b/board/freescale/imx8qxp_mek/spl.c index 95ce9f37e8..51f323811a 100644 --- a/board/freescale/imx8qxp_mek/spl.c +++ b/board/freescale/imx8qxp_mek/spl.c @@ -27,21 +27,6 @@ void spl_board_init(void) continue; } - offset = fdt_node_offset_by_compatible(gd->fdt_blob, -1, "nxp,imx8-pd"); - while (offset != -FDT_ERR_NOTFOUND) { - lists_bind_fdt(gd->dm_root, offset_to_ofnode(offset), - NULL, true); - offset = fdt_node_offset_by_compatible(gd->fdt_blob, offset, - "nxp,imx8-pd"); - } - - uclass_find_first_device(UCLASS_POWER_DOMAIN, &dev); - - for (; dev; uclass_find_next_device(&dev)) { - if (device_probe(dev)) - continue; - } - arch_cpu_init(); board_early_init_f(); |