Re: [U-Boot] [PATCH] fdt_support: Use CONFIG_NR_DRAM_BANKS if necessary

2018-08-16 Thread Ramon Fried
Tom, there are more boards that fail and need some resolution. Can you merge this patch ? Thanks, Ramon. On Mon, Aug 13, 2018 at 9:35 PM Ramon Fried wrote: > > If CONFIG_NR_DRAM_BANKS is bigger than the default > value (4) define MEMORY_BANKS_MAX as CONFIG_NR_DRAM_BANKS. > > Fixes: 2a1f4f1758b5

Re: [U-Boot] [PATCH] fdt_support: Use CONFIG_NR_DRAM_BANKS if necessary

2018-08-13 Thread Lukasz Majewski
Hi Ramon, > If CONFIG_NR_DRAM_BANKS is bigger than the default > value (4) define MEMORY_BANKS_MAX as CONFIG_NR_DRAM_BANKS. Also the Odroid XU3 uses 8 banks (but this is the fault of the board as it has 4x512MiB probably). I would also prefer to have the CONFIG_NR_DRAM_BANKS set to 4 (as it

[U-Boot] [PATCH] fdt_support: Use CONFIG_NR_DRAM_BANKS if necessary

2018-08-13 Thread Ramon Fried
If CONFIG_NR_DRAM_BANKS is bigger than the default value (4) define MEMORY_BANKS_MAX as CONFIG_NR_DRAM_BANKS. Fixes: 2a1f4f1758b5 ("Revert "fdt_support: Use CONFIG_NR_DRAM_BANKS if defined"") Signed-off-by: Ramon Fried --- common/fdt_support.c | 4 1 file changed, 4 insertions(+) diff