blob: 26d1756371013185a42e546274e21bd5eed81b7c [file] [log] [blame]
Michal Simekec48b6c2018-08-22 14:55:27 +02001# SPDX-License-Identifier: GPL-2.0+
2
3if ARCH_VERSAL
4
5config SYS_BOARD
6 string "Board name"
7 default "versal"
8
9config SYS_VENDOR
10 string "Vendor name"
11 default "xilinx"
12
13config SYS_SOC
14 default "versal"
15
16config SYS_CONFIG_NAME
17 string "Board configuration name"
18 default "xilinx_versal"
19 help
20 This option contains information about board configuration name.
21 Based on this option include/configs/<CONFIG_SYS_CONFIG_NAME>.h header
22 will be used for board configuration.
23
24config GICV3
25 def_bool y
26
27config SYS_MALLOC_LEN
28 default 0x2000000
29
30config COUNTER_FREQUENCY
31 int "Timer clock frequency"
32 default 0
33 help
34 Setup time clock frequency for certain platform
35
36config ZYNQ_SDHCI_MAX_FREQ
37 default 200000000
38
Michal Simekddccf5e2018-09-18 14:58:16 +020039config VERSAL_OF_BOARD_DTB_ADDR
40 hex
41 default 0x1000
42 depends on OF_BOARD
43
Michal Simek47a766f2019-01-28 11:12:41 +010044config IOU_SWITCH_DIVISOR0
45 hex "IOU switch divisor0"
46 default 0x20
47 help
48 Setup time clock divisor for input clock.
49
Siva Durga Prasad Paladugu4244f2b2019-01-08 21:47:26 +053050config SYS_MEM_RSVD_FOR_MMU
51 bool "Reserve memory for MMU Table"
52 help
53 If defined this option is used to setup different space for
54 MMU table than the one which will be allocated during
55 relocation.
56
Michal Simekec48b6c2018-08-22 14:55:27 +020057endif