ARM: arch-meson: build memory banks using reported memory from registers
authorNeil Armstrong <narmstrong@baylibre.com>
Mon, 27 Nov 2017 09:35:46 +0000 (10:35 +0100)
committerTom Rini <trini@konsulko.com>
Mon, 4 Dec 2017 15:17:29 +0000 (10:17 -0500)
commitc7be3e5a796a7b5c92035013d89e8182c7aab6bb
treeea650521f96872947f9a4b0d4a64f2e5ed9aef8d
parent5ff2ee44ee7d09c99bdf1be7349c1212149c573c
ARM: arch-meson: build memory banks using reported memory from registers

As discussed at [1], the Amlogic Meson GX SoCs can embed a BL31 firmware
and a secondary BL32 firmware.
Since mid-2017, the reserved memory address of the BL31 firmware was moved
and grown for security reasons.

But mainline U-Boot and Linux has the old address and size fixed.

These SoCs have a register interface to get the two firmware reserved
memory start and sizes.

This patch adds a dynamic reservation of the memory zones in the device tree bootmem
reserved memory zone used by the kernel in early boot.
To be complete, the memory zones are also added to the EFI reserved zones.

Depends on patchset "Add support for Amlogic GXL Based SBCs" at [2].

[1] http://lists.infradead.org/pipermail/linux-amlogic/2017-October/004860.html
[2] http://lists.infradead.org/pipermail/linux-amlogic/2017-November/005410.html

Changes since v1:
- switched the #if to if(IS_ENABLED()) to compile all code paths
- renamed function to meson_board_add_reserved_memory()
- added a mem.h header with comment
- updated all boards ft_board_setup()

Changes since RFC v2:
- reduced preprocessor load
- kept Odroid-C2 static memory mapping as exception

Changes since RFC v1:
- switch to fdt rsv mem table and efi reserve memory
- replaced in_le32 by readl()

Reviewed-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
[trini: Fix warning on khadas-vim over missing <asm/arch/mem.h>
Signed-off-by: Tom Rini <trini@konsulko.com>
12 files changed:
arch/arm/include/asm/arch-meson/gxbb.h
arch/arm/include/asm/arch-meson/mem.h [new file with mode: 0644]
arch/arm/mach-meson/board.c
board/amlogic/khadas-vim/khadas-vim.c
board/amlogic/libretech-cc/libretech-cc.c
board/amlogic/odroid-c2/odroid-c2.c
board/amlogic/p212/p212.c
configs/khadas-vim_defconfig
configs/libretech-cc_defconfig
configs/odroid-c2_defconfig
configs/p212_defconfig
include/configs/meson-gxbb-common.h