Andre Przywara | fac7fc4 | 2022-03-04 16:30:09 +0000 | [diff] [blame] | 1 | if ARCH_VEXPRESS64 |
Linus Walleij | ffc1037 | 2015-01-23 14:41:10 +0100 | [diff] [blame] | 2 | |
| 3 | config SYS_BOARD |
| 4 | default "vexpress64" |
| 5 | |
| 6 | config SYS_VENDOR |
| 7 | default "armltd" |
| 8 | |
| 9 | config SYS_CONFIG_NAME |
Peter Hoyes | 17fe55f | 2021-11-11 09:26:00 +0000 | [diff] [blame] | 10 | default "vexpress_aemv8" |
Linus Walleij | ffc1037 | 2015-01-23 14:41:10 +0100 | [diff] [blame] | 11 | |
Andre Przywara | fac7fc4 | 2022-03-04 16:30:09 +0000 | [diff] [blame] | 12 | choice |
| 13 | prompt "VExpress64 board variant" |
| 14 | |
| 15 | config TARGET_VEXPRESS64_BASE_FVP |
| 16 | bool "Support Versatile Express ARMv8a FVP BASE model" |
| 17 | select SEMIHOSTING |
Andre Przywara | c0fce92 | 2022-03-04 16:30:11 +0000 | [diff] [blame^] | 18 | select LINUX_KERNEL_IMAGE_HEADER |
| 19 | select POSITION_INDEPENDENT |
| 20 | select OF_BOARD |
Andre Przywara | fac7fc4 | 2022-03-04 16:30:09 +0000 | [diff] [blame] | 21 | |
| 22 | config TARGET_VEXPRESS64_JUNO |
| 23 | bool "Support Versatile Express Juno Development Platform" |
| 24 | select DM_ETH |
| 25 | select USB |
Andre Przywara | fac7fc4 | 2022-03-04 16:30:09 +0000 | [diff] [blame] | 26 | select BLK |
| 27 | imply OF_HAS_PRIOR_STAGE |
| 28 | |
| 29 | endchoice |
| 30 | |
Andre Przywara | b3270e9 | 2020-04-27 19:18:01 +0100 | [diff] [blame] | 31 | config JUNO_DTB_PART |
| 32 | string "NOR flash partition holding DTB" |
| 33 | default "board.dtb" |
| 34 | help |
| 35 | The ARM partition name in the NOR flash memory holding the |
| 36 | device tree blob to configure U-Boot. |
| 37 | |
Andre Przywara | c0fce92 | 2022-03-04 16:30:11 +0000 | [diff] [blame^] | 38 | config LNX_KRNL_IMG_TEXT_OFFSET_BASE |
| 39 | default SYS_TEXT_BASE |
| 40 | |
Linus Walleij | ffc1037 | 2015-01-23 14:41:10 +0100 | [diff] [blame] | 41 | endif |