blob: b6fc74da68fd50bb275a462e47c363fa59c77d12 [file] [log] [blame]
Brad Bishopbec4ebc2022-08-03 09:55:16 -04001# FVP common parameters
2
3#
4# Capturing FVP common configurations (Armv8-A Base Platform FVP,
5# Armv8-A Foundation Platform and Armv7-A Base Platform FVP).
6#
7
8MACHINE_FEATURES = "optee"
9
10IMAGE_FSTYPES += "wic"
11WKS_FILE ?= "fvp-base.wks"
12
13SERIAL_CONSOLES = "115200;ttyAMA0"
14
15PREFERRED_PROVIDER_virtual/kernel ?= "linux-yocto"
16
17KERNEL_DEVICETREE = "arm/fvp-base-revc.dtb"
18
19EXTRA_IMAGEDEPENDS += "trusted-firmware-a u-boot"
20
21# As this is a virtual target that will not be used in the real world there is
Andrew Geisslerea144b032023-01-27 16:03:57 -060022# no need for real SSH keys.
Brad Bishopbec4ebc2022-08-03 09:55:16 -040023MACHINE_EXTRA_RRECOMMENDS += "ssh-pregen-hostkeys"
24
25TEST_TARGET = "OEFVPTarget"
Patrick Williams2390b1b2022-11-03 13:47:49 -050026TEST_TARGET_IP = "127.0.0.1:8022"
Brad Bishopbec4ebc2022-08-03 09:55:16 -040027
28FVP_PROVIDER ?= "fvp-base-a-aem-native"
29FVP_EXE ?= "FVP_Base_RevC-2xAEMvA"
30FVP_CONFIG[bp.ve_sysregs.exit_on_shutdown] ?= "1"
31FVP_CONFIG[bp.virtio_net.enabled] ?= "1"
32FVP_CONFIG[bp.virtio_net.hostbridge.userNetworking] ?= "1"
Patrick Williams2390b1b2022-11-03 13:47:49 -050033# Tell testimage to connect to localhost:8022, and forward that to SSH in the FVP.
34FVP_CONFIG[bp.virtio_net.hostbridge.userNetPorts] = "8022=22"
Brad Bishopbec4ebc2022-08-03 09:55:16 -040035FVP_CONFIG[cache_state_modelled] ?= "0"
36FVP_CONFIG[bp.secureflashloader.fname] ?= "${DEPLOY_DIR_IMAGE}/bl1-fvp.bin"
37FVP_CONFIG[bp.flashloader0.fname] ?= "${DEPLOY_DIR_IMAGE}/fip-fvp.bin"
38FVP_CONFIG[bp.virtioblockdevice.image_path] ?= "${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.rootfs.wic"
39# Set the baseline to ARMv8.4, as the default is 8.0.
40FVP_CONFIG[cluster0.has_arm_v8-4] = "1"
41FVP_CONFIG[cluster1.has_arm_v8-4] = "1"
42FVP_CONSOLE ?= "terminal_0"
43FVP_DATA ?= "cluster0.cpu0=${DEPLOY_DIR_IMAGE}/${KERNEL_IMAGETYPE}@0x80080000 \
44 cluster0.cpu0=${DEPLOY_DIR_IMAGE}/fvp-base-revc.dtb@0x8fc00000"
45FVP_TERMINALS[bp.terminal_0] ?= "Console"
46FVP_TERMINALS[bp.terminal_1] ?= ""
47FVP_TERMINALS[bp.terminal_2] ?= ""
48FVP_TERMINALS[bp.terminal_3] ?= ""