int fdtdec_setup_memory_banksize(void) { int bank, ret, mem, reg = 0; struct fdt_resource res; int bank, reg = 0; struct resource res; ofnode mem;mem = get_next_memory_node(gd->fdt_blob, -1); if (mem < 0) { debug("%s: Missing /memory node\n", __func__);...
fix: fdtdec_setup #5 Closed Enterprise0 wants to merge 1 commit into nxp-imx:lf_v2024.04 from Enterprise0:lf_v2024.04+1 −1 Conversation 1 Commits 1 Checks 0 Files changed 1 Conversation Enterprise0 commented Nov 23, 2024 the CONFIG_OF_SEPARATE will only take effect in the ...
intfdtdec_setup_mem_size_base(void); /** * fdtdec_setup_memory_banksize_fdt() - decode and populate gd->bd->bi_dram * * Decode the /memory 'reg' property to determine the address and size of the * memory banks. Use this data to populate the global data board info with the ...
By company size Enterprises Small and medium teams Startups Nonprofits By use case DevSecOps DevOps CI/CD View all use cases By industry Healthcare Financial services Manufacturing Government View all industries View all solutions Resources Topics AI DevOps Security Software Development...
int fdtdec_setup_mem_size_base(void) { int ret, mem; struct fdt_resource res;mem = fdt_path_offset(blob, "/memory"); mem = fdt_path_offset(gd->fdt_blob, "/memory"); if (mem < 0) { debug("%s: Missing /memory node\n", __func__); ...
int fdtdec_setup_memory_banksize(void) { int bank, ret, mem, reg = 0; struct fdt_resource res;mem = get_next_memory_node(blob, -1); mem = get_next_memory_node(gd->fdt_blob, -1); if (mem < 0) { debug("%s: Missing /memory node\n", __func__); ...