blob: 4dc8b1caf79eabb5669b3a427ba2130272c2a050 [file] [log] [blame]
Siva Durga Prasad Paladugu0b54a9d2015-06-10 15:50:57 +05301if ARCH_ZYNQMP
2
Simon Glassae56db52016-09-12 23:18:38 -06003config SPL_FAT_SUPPORT
4 default y
5
Simon Glass77d2f7f2016-09-12 23:18:41 -06006config SPL_LIBCOMMON_SUPPORT
7 default y
8
Simon Glass1646eba2016-09-12 23:18:42 -06009config SPL_LIBDISK_SUPPORT
10 default y
11
Simon Glasscc4288e2016-09-12 23:18:43 -060012config SPL_LIBGENERIC_SUPPORT
13 default y
14
Simon Glass1fdf7c62016-09-12 23:18:44 -060015config SPL_MMC_SUPPORT
Alexandru Gagniuc0dcf18c2017-04-04 10:02:58 -070016 default y if MMC_SDHCI_ZYNQ
Simon Glass1fdf7c62016-09-12 23:18:44 -060017
Simon Glasse00f76c2016-09-12 23:18:56 -060018config SPL_SERIAL_SUPPORT
19 default y
20
Simon Glasse404ade2016-09-12 23:18:57 -060021config SPL_SPI_FLASH_SUPPORT
22 default y if ZYNQ_QSPI
23
Simon Glassf35ed9e2016-09-12 23:18:58 -060024config SPL_SPI_SUPPORT
25 default y if ZYNQ_QSPI
26
Michal Simek84c72042015-01-15 10:01:51 +010027config SYS_BOARD
28 default "zynqmp"
29
30config SYS_VENDOR
Mike Looijmansef4cab92017-01-03 09:47:52 +010031 string "Vendor name"
Michal Simek84c72042015-01-15 10:01:51 +010032 default "xilinx"
33
34config SYS_SOC
35 default "zynqmp"
36
37config SYS_CONFIG_NAME
Michal Simeka1108da2016-03-18 18:21:36 +010038 string "Board configuration name"
39 default "xilinx_zynqmp"
40 help
41 This option contains information about board configuration name.
42 Based on this option include/configs/<CONFIG_SYS_CONFIG_NAME>.h header
43 will be used for board configuration.
Michal Simek84c72042015-01-15 10:01:51 +010044
Siva Durga Prasad Paladugue042d362017-07-13 19:01:11 +053045config SYS_MEM_RSVD_FOR_MMU
46 bool "Reserve memory for MMU Table"
47 help
48 If defined this option is used to setup different space for
49 MMU table than the one which will be allocated during
50 relocation.
51
Mike Looijmans3b646082016-09-20 11:37:24 +020052config BOOT_INIT_FILE
53 string "boot.bin init register filename"
Michal Simek9cf9da72016-12-16 13:00:26 +010054 depends on SPL
Mike Looijmans3b646082016-09-20 11:37:24 +020055 default ""
56 help
57 Add register writes to boot.bin format (max 256 pairs).
58 Expect a table of register-value pairs, e.g. "0x12345678 0x4321"
59
Siva Durga Prasad Paladugu16fa00a2015-08-04 13:03:26 +053060config ZYNQMP_USB
61 bool "Configure ZynqMP USB"
62
Simon Glass04e38902016-07-05 17:10:13 -060063config SYS_MALLOC_F_LEN
64 default 0x600
65
Siva Durga Prasad Paladugu189bec42017-07-13 19:01:10 +053066config DEFINE_TCM_OCM_MMAP
67 bool "Define TCM and OCM memory in MMU Table"
68 help
69 This option if enabled defines the TCM and OCM memory and its
70 memory attributes in MMU table entry.
71
Michal Simekfd1b6352017-07-12 13:21:27 +020072config ZYNQMP_PSU_INIT_ENABLED
73 bool "Include psu_init"
74 help
75 Include psu_init to full u-boot. SPL include psu_init by default.
76
Michal Simek7f491d72016-08-30 16:17:27 +020077config SPL_ZYNQMP_ALT_BOOTMODE_ENABLED
78 bool "Overwrite SPL bootmode"
79 depends on SPL
80 help
81 Overwrite bootmode selected via boot mode pins to tell SPL what should
82 be the next boot device.
83
84config SPL_ZYNQMP_ALT_BOOTMODE
85 hex
86 default 0x0 if JTAG_MODE
87 default 0x1 if QSPI_MODE_24BIT
88 default 0x2 if QSPI_MODE_32BIT
89 default 0x3 if SD_MODE
90 default 0x4 if NAND_MODE
91 default 0x5 if SD_MODE1
92 default 0x6 if EMMC_MODE
93 default 0x7 if USB_MODE
Michal Simek26610812016-10-26 09:24:32 +020094 default 0xa if SW_USBHOST_MODE
95 default 0xb if SW_SATA_MODE
Michal Simek7f491d72016-08-30 16:17:27 +020096
97choice
98 prompt "Boot mode"
Michal Simeke3672402016-08-30 16:17:27 +020099 depends on SPL_ZYNQMP_ALT_BOOTMODE_ENABLED
Michal Simek7f491d72016-08-30 16:17:27 +0200100 default JTAG
101
102config JTAG_MODE
103 bool "JTAG_MODE"
104
105config QSPI_MODE_24BIT
106 bool "QSPI_MODE_24BIT"
107
108config QSPI_MODE_32BIT
109 bool "QSPI_MODE_32BIT"
110
111config SD_MODE
112 bool "SD_MODE"
113
114config SD_MODE1
115 bool "SD_MODE1"
116
117config NAND_MODE
118 bool "NAND_MODE"
119
120config EMMC_MODE
121 bool "EMMC_MODE"
122
123config USB_MODE
124 bool "USB"
125
Michal Simek26610812016-10-26 09:24:32 +0200126config SW_USBHOST_MODE
127 bool "SW USBHOST_MODE"
128
129config SW_SATA_MODE
130 bool "SW SATA_MODE"
131
Michal Simek7f491d72016-08-30 16:17:27 +0200132endchoice
Simon Glass04e38902016-07-05 17:10:13 -0600133
Michal Simek84c72042015-01-15 10:01:51 +0100134endif