blob: 55fe0118e1b9daa8757bda9e556238be147c1f72 [file] [log] [blame]
Andre Przywarab33739f2022-03-04 16:30:09 +00001if ARCH_VEXPRESS64
Linus Walleijc5822502015-01-23 14:41:10 +01002
3config SYS_BOARD
4 default "vexpress64"
5
6config SYS_VENDOR
7 default "armltd"
8
9config SYS_CONFIG_NAME
Peter Hoyes32860372021-11-11 09:26:00 +000010 default "vexpress_aemv8"
Linus Walleijc5822502015-01-23 14:41:10 +010011
Andre Przywarab33739f2022-03-04 16:30:09 +000012choice
13 prompt "VExpress64 board variant"
14
15config TARGET_VEXPRESS64_BASE_FVP
16 bool "Support Versatile Express ARMv8a FVP BASE model"
17 select SEMIHOSTING
18
19config TARGET_VEXPRESS64_JUNO
20 bool "Support Versatile Express Juno Development Platform"
21 select DM_ETH
22 select USB
23 select OF_CONTROL
24 select CLK
25 select BLK
26 imply OF_HAS_PRIOR_STAGE
27
28endchoice
29
Andre Przywara94504f42020-04-27 19:18:01 +010030config JUNO_DTB_PART
31 string "NOR flash partition holding DTB"
32 default "board.dtb"
33 help
34 The ARM partition name in the NOR flash memory holding the
35 device tree blob to configure U-Boot.
36
Linus Walleijc5822502015-01-23 14:41:10 +010037endif