From 83ac05d6a8ccaf5fc8f8e14cc2d6bd5304664854 Mon Sep 17 00:00:00 2001 From: Christian Glombek Date: Wed, 10 Mar 2021 23:11:53 +0100 Subject: arm: Add support for Kobol Helios64 board The hardware is described in detail on Kobol's wiki at https://wiki.kobol.io/helios64/intro/. This commit is based on downstream work in Armbian by Aditya Prayoga [1]. The devicetree is taken from Linux v5.12-rc1 and was originally submitted there by Uwe Kleine-Koenig [2]. [1] https://github.com/ukleinek/armbian-build/blob/35c85295d351830aa59b624db524ba04b238faae/patch/kernel/rockchip64-current/add-board-helios64.patch [2] https://github.com/torvalds/linux/blob/7a7fd0de4a9804299793e564a555a49c1fc924cb/arch/arm64/boot/dts/rockchip/rk3399-kobol-helios64.dts Signed-off-by: Dennis Gilmore --- board/kobol/helios64-rk3399/Kconfig | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 board/kobol/helios64-rk3399/Kconfig (limited to 'board/kobol/helios64-rk3399/Kconfig') diff --git a/board/kobol/helios64-rk3399/Kconfig b/board/kobol/helios64-rk3399/Kconfig new file mode 100644 index 0000000000..0f19bceaeb --- /dev/null +++ b/board/kobol/helios64-rk3399/Kconfig @@ -0,0 +1,24 @@ +if TARGET_HELIOS64_RK3399 + +config SYS_BOARD + default "helios64-rk3399" + +config SYS_VENDOR + default "kobol" + +config SYS_CONFIG_NAME + default "helios64-rk3399" + +config BOARD_SPECIFIC_OPTIONS # dummy + def_bool y + +config ENV_SECT_SIZE + default 0x1000 if ENV_IS_IN_SPI_FLASH + +config ENV_SIZE + default 0x8000 + +config ENV_OFFSET + default 0x460000 if ENV_IS_IN_SPI_FLASH + +endif -- cgit