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 | |
Ashok Reddy Soma | 8162732 | 2023-01-10 08:44:07 +0100 | [diff] [blame] | 16 | config COUNTER_FREQUENCY |
| 17 | int "Timer clock frequency" |
| 18 | default 0 |
| 19 | help |
| 20 | Setup time clock frequency for certain platform |
| 21 | |
| 22 | config IOU_SWITCH_DIVISOR0 |
| 23 | hex "IOU switch divisor0" |
| 24 | default 0x20 |
| 25 | help |
| 26 | Setup time clock divisor for input clock. |
| 27 | |
Michal Simek | 2e53eb2 | 2022-09-19 14:21:02 +0200 | [diff] [blame] | 28 | config SYS_MEM_RSVD_FOR_MMU |
| 29 | bool "Reserve memory for MMU Table" |
| 30 | help |
| 31 | If defined this option is used to setup different space for |
| 32 | MMU table than the one which will be allocated during |
| 33 | relocation. |
| 34 | |
| 35 | config GICV3 |
| 36 | def_bool y |
| 37 | |
Venkatesh Yadav Abbarapu | da023da | 2024-03-06 16:54:41 +0530 | [diff] [blame] | 38 | config GICV3_SUPPORT_GIC600 |
| 39 | def_bool y |
| 40 | |
Michal Simek | 2e53eb2 | 2022-09-19 14:21:02 +0200 | [diff] [blame] | 41 | config SYS_MALLOC_LEN |
| 42 | default 0x2000000 |
| 43 | |
| 44 | config ZYNQ_SDHCI_MAX_FREQ |
| 45 | default 200000000 |
| 46 | |
| 47 | source "board/xilinx/Kconfig" |
| 48 | source "board/xilinx/versal-net/Kconfig" |
| 49 | |
| 50 | endif |