diff options
author | Green Wan <green.wan@sifive.com> | 2021-05-27 06:52:13 -0700 |
---|---|---|
committer | Leo Yu-Chi Liang <ycliang@andestech.com> | 2021-05-31 16:35:55 +0800 |
commit | 70415e1e528db0856fedd4fa79b9f4a303a28c62 (patch) | |
tree | 5a03934be4bc3c6f15178e4fe4b3746d9d2c6ae9 /common | |
parent | 1c07b0c562348f9254c7efa0af69995a5aaa60bb (diff) | |
download | u-boot-70415e1e528db0856fedd4fa79b9f4a303a28c62.zip u-boot-70415e1e528db0856fedd4fa79b9f4a303a28c62.tar.gz u-boot-70415e1e528db0856fedd4fa79b9f4a303a28c62.tar.bz2 |
board: sifive: add HiFive Unmatched board support
Add defconfig and board support for HiFive Unmatched.
Signed-off-by: Green Wan <green.wan@sifive.com>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Rick Chen <rick@andestech.com>
Diffstat (limited to 'common')
-rw-r--r-- | common/spl/Kconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/spl/Kconfig b/common/spl/Kconfig index b709a05..fa80524 100644 --- a/common/spl/Kconfig +++ b/common/spl/Kconfig @@ -322,7 +322,7 @@ config SYS_MMCSD_RAW_MODE_U_BOOT_USE_SECTOR ARCH_ROCKCHIP || ARCH_MVEBU || ARCH_SOCFPGA || \ ARCH_AT91 || ARCH_ZYNQ || ARCH_KEYSTONE || OMAP34XX || \ OMAP44XX || OMAP54XX || AM33XX || AM43XX || \ - TARGET_SIFIVE_UNLEASHED + TARGET_SIFIVE_UNLEASHED || TARGET_SIFIVE_UNMATCHED help Use sector number for specifying U-Boot location on MMC/SD in raw mode. @@ -339,7 +339,7 @@ config SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR default 0x300 if ARCH_ZYNQ || ARCH_KEYSTONE || OMAP34XX || OMAP44XX || \ OMAP54XX || AM33XX || AM43XX || ARCH_K3 default 0x4000 if ARCH_ROCKCHIP - default 0x822 if TARGET_SIFIVE_UNLEASHED + default 0x822 if TARGET_SIFIVE_UNLEASHED || TARGET_SIFIVE_UNMATCHED help Address on the MMC to load U-Boot from, when the MMC is being used in raw mode. Units: MMC sectors (1 sector = 512 bytes). |