diff options
author | 2023-10-10 14:33:42 +0000 | |
---|---|---|
committer | 2023-10-10 14:33:42 +0000 | |
commit | af1a266670d040d2f4083ff309d732d648afba2a (patch) | |
tree | 2fc46203448ddcc6f81546d379abfaeb323575e9 /roms/u-boot/board/sifive/unleashed/Kconfig | |
parent | e02cda008591317b1625707ff8e115a4841aa889 (diff) |
Change-Id: Iaf8d18082d3991dec7c0ebbea540f092188eb4ec
Diffstat (limited to 'roms/u-boot/board/sifive/unleashed/Kconfig')
-rw-r--r-- | roms/u-boot/board/sifive/unleashed/Kconfig | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/roms/u-boot/board/sifive/unleashed/Kconfig b/roms/u-boot/board/sifive/unleashed/Kconfig new file mode 100644 index 000000000..b3b4342a1 --- /dev/null +++ b/roms/u-boot/board/sifive/unleashed/Kconfig @@ -0,0 +1,54 @@ +if TARGET_SIFIVE_UNLEASHED + +config SYS_BOARD + default "unleashed" + +config SYS_VENDOR + default "sifive" + +config SYS_CPU + default "fu540" + +config SYS_CONFIG_NAME + default "sifive-unleashed" + +config SYS_TEXT_BASE + default 0x80200000 if SPL + default 0x80000000 if !RISCV_SMODE + default 0x80200000 if RISCV_SMODE + +config SPL_TEXT_BASE + default 0x08000000 + +config SPL_OPENSBI_LOAD_ADDR + default 0x80000000 + +config BOARD_SPECIFIC_OPTIONS # dummy + def_bool y + select SIFIVE_FU540 + select ENV_IS_IN_SPI_FLASH + select BINMAN + select RESET_SIFIVE + imply CMD_DHCP + imply CMD_EXT2 + imply CMD_EXT4 + imply CMD_FAT + imply CMD_FS_GENERIC + imply CMD_GPT + imply PARTITION_TYPE_GUID + imply CMD_NET + imply CMD_PING + imply CMD_SF + imply DOS_PARTITION + imply EFI_PARTITION + imply IP_DYN + imply ISO_PARTITION + imply PHY_LIB + imply PHY_MSCC + imply SPI_FLASH + imply SPI_FLASH_ISSI + imply SYSRESET + imply SYSRESET_GPIO + imply CMD_I2C + +endif |