1if TARGET_AE350 2 3config SYS_CPU 4 default "andesv5" 5 6config SYS_BOARD 7 default "ae350" 8 9config SYS_VENDOR 10 default "AndesTech" 11 12config SYS_SOC 13 default "ae350" 14 15config SYS_CONFIG_NAME 16 default "ae350" 17 18config ENV_SIZE 19 default 0x2000 if ENV_IS_IN_SPI_FLASH 20 21config ENV_OFFSET 22 default 0x140000 if ENV_IS_IN_SPI_FLASH 23 24config SPL_TEXT_BASE 25 default 0x800000 26 27config SPL_OPENSBI_LOAD_ADDR 28 default 0x00000000 29 30config SYS_FDT_BASE 31 hex 32 default 0x800f0000 if OF_SEPARATE 33 34config BOARD_SPECIFIC_OPTIONS # dummy 35 def_bool y 36 select RISCV_NDS 37 select SUPPORT_SPL 38 select BINMAN if SPL 39 imply SMP 40 imply SPL_RAM_SUPPORT 41 imply SPL_RAM_DEVICE 42 imply OF_HAS_PRIOR_STAGE 43 44endif 45