summaryrefslogtreecommitdiff
path: root/board/AndesTech/ae350/Kconfig
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2023-02-28 01:28:21 +0300
committerTom Rini <trini@konsulko.com>2023-02-28 01:28:21 +0300
commit5b197eee334bdf75cc9e9148161299679a5251ea (patch)
treeedec3c21a01fb54d764d04caa2bd774823e76c2d /board/AndesTech/ae350/Kconfig
parent7a826ded4a0e409d73ff4a910685821d34f1b664 (diff)
parente8c80ac0f7a13bf0fc016ce324b870c0cff7a2b8 (diff)
downloadu-boot-5b197eee334bdf75cc9e9148161299679a5251ea.tar.xz
Merge tag 'v2023.04-rc3' into next
Prepare v2023.04-rc3
Diffstat (limited to 'board/AndesTech/ae350/Kconfig')
-rw-r--r--board/AndesTech/ae350/Kconfig44
1 files changed, 44 insertions, 0 deletions
diff --git a/board/AndesTech/ae350/Kconfig b/board/AndesTech/ae350/Kconfig
new file mode 100644
index 0000000000..75815bf99a
--- /dev/null
+++ b/board/AndesTech/ae350/Kconfig
@@ -0,0 +1,44 @@
+if TARGET_AE350
+
+config SYS_CPU
+ default "andesv5"
+
+config SYS_BOARD
+ default "ae350"
+
+config SYS_VENDOR
+ default "AndesTech"
+
+config SYS_SOC
+ default "ae350"
+
+config SYS_CONFIG_NAME
+ default "ae350"
+
+config ENV_SIZE
+ default 0x2000 if ENV_IS_IN_SPI_FLASH
+
+config ENV_OFFSET
+ default 0x140000 if ENV_IS_IN_SPI_FLASH
+
+config SPL_TEXT_BASE
+ default 0x800000
+
+config SPL_OPENSBI_LOAD_ADDR
+ default 0x00000000
+
+config SYS_FDT_BASE
+ hex
+ default 0x800f0000 if OF_SEPARATE
+
+config BOARD_SPECIFIC_OPTIONS # dummy
+ def_bool y
+ select RISCV_NDS
+ select SUPPORT_SPL
+ select BINMAN if SPL
+ imply SMP
+ imply SPL_RAM_SUPPORT
+ imply SPL_RAM_DEVICE
+ imply OF_HAS_PRIOR_STAGE
+
+endif