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

Ramon Fried ramon.fried at gmail.com
Thu Aug 16 06:31:05 UTC 2018


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 <ramon.fried at gmail.com> wrote:
>
> 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 <ramon.fried at gmail.com>
> ---
>  common/fdt_support.c | 4 ++++
>  1 file changed, 4 insertions(+)
>
> diff --git a/common/fdt_support.c b/common/fdt_support.c
> index 34d2bd59c4..d84f5dbade 100644
> --- a/common/fdt_support.c
> +++ b/common/fdt_support.c
> @@ -409,7 +409,11 @@ static int fdt_pack_reg(const void *fdt, void *buf, u64 *address, u64 *size,
>         return p - (char *)buf;
>  }
>
> +#if CONFIG_NR_DRAM_BANKS > 4
> +#define MEMORY_BANKS_MAX CONFIG_NR_DRAM_BANKS
> +#else
>  #define MEMORY_BANKS_MAX 4
> +#endif
>  int fdt_fixup_memory_banks(void *blob, u64 start[], u64 size[], int banks)
>  {
>         int err, nodeoffset;
> --
> 2.18.0
>


More information about the U-Boot mailing list