1if TARGET_SIFIVE_UNMATCHED
2
3config SYS_BOARD
4	default "unmatched"
5
6config SYS_VENDOR
7	default "sifive"
8
9config SYS_CPU
10	default "fu740"
11
12config SYS_CONFIG_NAME
13	default "sifive-unmatched"
14
15config TEXT_BASE
16	default 0x80200000 if SPL
17	default 0x80000000 if !RISCV_SMODE
18	default 0x80200000 if RISCV_SMODE
19
20config SPL_TEXT_BASE
21	default 0x08000000
22
23config SPL_OPENSBI_LOAD_ADDR
24	default 0x80000000
25
26config BOARD_SPECIFIC_OPTIONS # dummy
27	def_bool y
28	select SIFIVE_FU740
29	select ENV_IS_IN_SPI_FLASH
30	select SUPPORT_SPL
31	select RESET_SIFIVE
32	select BINMAN
33	imply CMD_DHCP
34	imply CMD_EXT2
35	imply CMD_EXT4
36	imply CMD_FAT
37	imply CMD_FS_GENERIC
38	imply CMD_GPT
39	imply PARTITION_TYPE_GUID
40	imply CMD_NET
41	imply CMD_PING
42	imply CMD_SF
43	imply DOS_PARTITION
44	imply EFI_PARTITION
45	imply IP_DYN
46	imply ISO_PARTITION
47	imply PHY_LIB
48	imply PHY_MSCC
49	imply SYSRESET
50	imply SYSRESET_GPIO
51	imply CMD_I2C
52
53endif
54