diff options
author | Paul Burton <paul.burton@imgtec.com> | 2017-04-30 21:22:42 +0200 |
---|---|---|
committer | Daniel Schwierzeck <daniel.schwierzeck@gmail.com> | 2017-05-12 13:29:50 +0200 |
commit | d2b12a5767ec762f92a7c308a562472e23b5347e (patch) | |
tree | 2a6d5b9c6fbe8df0310c35df01458f6e45d2bc90 /board/imgtec/boston | |
parent | ed048e7c763ac9b7043c989ba3081d7a52e4f68e (diff) | |
download | u-boot-d2b12a5767ec762f92a7c308a562472e23b5347e.tar.gz u-boot-d2b12a5767ec762f92a7c308a562472e23b5347e.tar.xz u-boot-d2b12a5767ec762f92a7c308a562472e23b5347e.zip |
boston: Setup memory ranges in FDT provided to Linux
The boston memory map isn't suited to the simple "all memory starting
from 0" approach that the MIPS arch_fixup_fdt() implementation takes.
Instead we need to indicate the first 256MiB of DDR from 0 and the rest
from 0x90000000. Implement ft_board_setup to do that.
Signed-off-by: Paul Burton <paul.burton@imgtec.com>
Signed-off-by: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'board/imgtec/boston')
-rw-r--r-- | board/imgtec/boston/Makefile | 1 | ||||
-rw-r--r-- | board/imgtec/boston/dt.c | 27 |
2 files changed, 28 insertions, 0 deletions
diff --git a/board/imgtec/boston/Makefile b/board/imgtec/boston/Makefile index deda457f3c..d3fd49d285 100644 --- a/board/imgtec/boston/Makefile +++ b/board/imgtec/boston/Makefile @@ -6,4 +6,5 @@ obj-y += checkboard.o obj-y += ddr.o +obj-y += dt.o obj-y += lowlevel_init.o diff --git a/board/imgtec/boston/dt.c b/board/imgtec/boston/dt.c new file mode 100644 index 0000000000..b34f9bc205 --- /dev/null +++ b/board/imgtec/boston/dt.c @@ -0,0 +1,27 @@ +/* + * Copyright (C) 2016 Imagination Technologies + * + * SPDX-License-Identifier: GPL-2.0 + */ + +#include <common.h> +#include <fdt_support.h> + +int ft_board_setup(void *blob, bd_t *bd) +{ + DECLARE_GLOBAL_DATA_PTR; + u64 mem_start[2], mem_size[2]; + int mem_regions; + + mem_start[0] = 0; + mem_size[0] = min_t(u64, 256llu << 20, gd->ram_size); + mem_regions = 1; + + if (gd->ram_size > mem_size[0]) { + mem_start[1] = 0x80000000 + mem_size[0]; + mem_size[1] = gd->ram_size - mem_size[0]; + mem_regions++; + } + + return fdt_fixup_memory_banks(blob, mem_start, mem_size, mem_regions); +} |