blob: 44e16af863d700559638b1d1765376dd20e4d075 [file] [log] [blame]
Masahiro Yamada8204bd12015-03-16 16:43:24 +09001if ARCH_ZYNQ
Masahiro Yamadaa3cd8982014-08-31 07:10:55 +09002
Simon Glass6172e2e2016-09-12 23:18:38 -06003config SPL_FAT_SUPPORT
4 default y
5
Simon Glassf2a89462016-09-12 23:18:41 -06006config SPL_LIBCOMMON_SUPPORT
7 default y
8
Simon Glassf6de2572016-09-12 23:18:42 -06009config SPL_LIBDISK_SUPPORT
10 default y
11
Simon Glassb16c92c2016-09-12 23:18:43 -060012config SPL_LIBGENERIC_SUPPORT
13 default y
14
Simon Glassbd58f1d2016-09-12 23:18:44 -060015config SPL_MMC_SUPPORT
16 default y if ZYNQ_SDHCI
17
Simon Glasse076d6f2016-09-12 23:18:56 -060018config SPL_SERIAL_SUPPORT
19 default y
20
Simon Glass219d6122016-09-12 23:18:57 -060021config SPL_SPI_FLASH_SUPPORT
22 default y if ZYNQ_QSPI
23
Simon Glassb24fdca2016-09-12 23:18:58 -060024config SPL_SPI_SUPPORT
25 default y if ZYNQ_QSPI
26
Masahiro Yamadaa3cd8982014-08-31 07:10:55 +090027config SYS_BOARD
Masahiro Yamadaa3cd8982014-08-31 07:10:55 +090028 default "zynq"
29
30config SYS_VENDOR
Masahiro Yamadaa3cd8982014-08-31 07:10:55 +090031 default "xilinx"
32
33config SYS_SOC
Masahiro Yamadaa3cd8982014-08-31 07:10:55 +090034 default "zynq"
35
36config SYS_CONFIG_NAME
Michal Simek3917c4f2016-05-20 14:59:33 +020037 string "Board configuration name"
38 default "zynq-common"
39 help
40 This option contains information about board configuration name.
41 Based on this option include/configs/<CONFIG_SYS_CONFIG_NAME>.h header
42 will be used for board configuration.
Masahiro Yamadaa3cd8982014-08-31 07:10:55 +090043
Simon Glasscb3e4892016-07-05 17:10:13 -060044config SYS_MALLOC_F_LEN
45 default 0x600
46
Mike Looijmans96e706f2016-09-20 11:37:24 +020047config BOOT_INIT_FILE
48 string "boot.bin init register filename"
49 default ""
50 help
51 Add register writes to boot.bin format (max 256 pairs).
52 Expect a table of register-value pairs, e.g. "0x12345678 0x4321"
53
Masahiro Yamadaa3cd8982014-08-31 07:10:55 +090054endif