Michal Simek | 2e53eb2 | 2022-09-19 14:21:02 +0200 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0 |
| 2 | |
| 3 | if ARCH_VERSAL_NET |
| 4 | |
| 5 | config SYS_BOARD |
| 6 | string "Board name" |
| 7 | default "versal-net" |
| 8 | |
| 9 | config SYS_VENDOR |
| 10 | string "Vendor name" |
| 11 | default "xilinx" |
| 12 | |
| 13 | config SYS_SOC |
| 14 | default "versal-net" |
| 15 | |
| 16 | config SYS_CONFIG_NAME |
| 17 | string "Board configuration name" |
| 18 | default "xilinx_versal_net" |
| 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 | |
| 24 | config SYS_MEM_RSVD_FOR_MMU |
| 25 | bool "Reserve memory for MMU Table" |
| 26 | help |
| 27 | If defined this option is used to setup different space for |
| 28 | MMU table than the one which will be allocated during |
| 29 | relocation. |
| 30 | |
| 31 | config GICV3 |
| 32 | def_bool y |
| 33 | |
| 34 | config SYS_MALLOC_LEN |
| 35 | default 0x2000000 |
| 36 | |
| 37 | config ZYNQ_SDHCI_MAX_FREQ |
| 38 | default 200000000 |
| 39 | |
| 40 | source "board/xilinx/Kconfig" |
| 41 | source "board/xilinx/versal-net/Kconfig" |
| 42 | |
| 43 | endif |