blob: b4c439b4cd6d673ab7489ceebdfecc9cb974bc75 [file] [log] [blame]
Masahiro Yamada8204bd12015-03-16 16:43:24 +09001if ARCH_ZYNQ
Masahiro Yamadaa3cd8982014-08-31 07:10:55 +09002
Tien Fong Chee6fd0a712019-01-23 14:20:03 +08003config SPL_FS_FAT
Simon Glass6172e2e2016-09-12 23:18:38 -06004 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 Glassb58bfe02021-08-08 12:20:09 -060015config SPL_MMC
Masahiro Yamada168c57d2017-01-30 19:46:51 +090016 default y if MMC_SDHCI_ZYNQ
Simon Glassbd58f1d2016-09-12 23:18:44 -060017
Simon Glassf4d60392021-08-08 12:20:12 -060018config SPL_SERIAL
Simon Glasse076d6f2016-09-12 23:18:56 -060019 default y
20
Simon Glass219d6122016-09-12 23:18:57 -060021config SPL_SPI_FLASH_SUPPORT
22 default y if ZYNQ_QSPI
23
Simon Glassa5820472021-08-08 12:20:14 -060024config SPL_SPI
Simon Glassb24fdca2016-09-12 23:18:58 -060025 default y if ZYNQ_QSPI
26
Siva Durga Prasad Paladugud8e4e1c2017-05-12 15:04:11 +053027config ZYNQ_DDRC_INIT
28 bool "Zynq DDRC initialization"
29 default y
30 help
31 This option used to perform DDR specific initialization
32 if required. There might be cases like ddr less where we
33 want to skip ddr init and this option is useful for it.
34
Masahiro Yamadaa3cd8982014-08-31 07:10:55 +090035config SYS_BOARD
Michal Simek1f5642a2018-03-04 16:15:15 +010036 string "Board name"
Masahiro Yamadaa3cd8982014-08-31 07:10:55 +090037 default "zynq"
38
39config SYS_VENDOR
Mike Looijmans7d666062016-09-28 07:46:30 +020040 string "Vendor name"
Masahiro Yamadaa3cd8982014-08-31 07:10:55 +090041 default "xilinx"
42
43config SYS_SOC
Masahiro Yamadaa3cd8982014-08-31 07:10:55 +090044 default "zynq"
45
46config SYS_CONFIG_NAME
Michal Simek3917c4f2016-05-20 14:59:33 +020047 string "Board configuration name"
48 default "zynq-common"
49 help
50 This option contains information about board configuration name.
51 Based on this option include/configs/<CONFIG_SYS_CONFIG_NAME>.h header
52 will be used for board configuration.
Masahiro Yamadaa3cd8982014-08-31 07:10:55 +090053
Simon Glasscb3e4892016-07-05 17:10:13 -060054config SYS_MALLOC_F_LEN
Anton Gerasimovd6f88e32018-12-24 02:29:04 +010055 default 0x800
Simon Glasscb3e4892016-07-05 17:10:13 -060056
Siva Durga Prasad Paladugu9adb5262018-07-20 15:11:38 +053057config SYS_MALLOC_LEN
58 default 0x1400000
59
Mike Looijmans96e706f2016-09-20 11:37:24 +020060config BOOT_INIT_FILE
61 string "boot.bin init register filename"
62 default ""
63 help
64 Add register writes to boot.bin format (max 256 pairs).
65 Expect a table of register-value pairs, e.g. "0x12345678 0x4321"
66
Vipul Kumar62548002018-02-28 15:53:28 +053067config ZYNQ_SDHCI_MAX_FREQ
68 default 52000000
69
Michal Simek5f884852020-08-27 15:34:11 +020070source "board/xilinx/Kconfig"
71source "board/xilinx/zynq/Kconfig"
72
Masahiro Yamadaa3cd8982014-08-31 07:10:55 +090073endif