blob: b10977c684a5d70bb6e606d610c911a1901d7b1c [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
22# no need for real SSH keys. Disable rng-tools (which takes too long to
23# initialise) and install the pre-generated keys.
24PACKAGECONFIG:remove:pn-openssh = "rng-tools"
25MACHINE_EXTRA_RRECOMMENDS += "ssh-pregen-hostkeys"
26
27TEST_TARGET = "OEFVPTarget"
Patrick Williams2390b1b2022-11-03 13:47:49 -050028TEST_TARGET_IP = "127.0.0.1:8022"
Brad Bishopbec4ebc2022-08-03 09:55:16 -040029
30FVP_PROVIDER ?= "fvp-base-a-aem-native"
31FVP_EXE ?= "FVP_Base_RevC-2xAEMvA"
32FVP_CONFIG[bp.ve_sysregs.exit_on_shutdown] ?= "1"
33FVP_CONFIG[bp.virtio_net.enabled] ?= "1"
34FVP_CONFIG[bp.virtio_net.hostbridge.userNetworking] ?= "1"
Patrick Williams2390b1b2022-11-03 13:47:49 -050035# Tell testimage to connect to localhost:8022, and forward that to SSH in the FVP.
36FVP_CONFIG[bp.virtio_net.hostbridge.userNetPorts] = "8022=22"
Brad Bishopbec4ebc2022-08-03 09:55:16 -040037FVP_CONFIG[cache_state_modelled] ?= "0"
38FVP_CONFIG[bp.secureflashloader.fname] ?= "${DEPLOY_DIR_IMAGE}/bl1-fvp.bin"
39FVP_CONFIG[bp.flashloader0.fname] ?= "${DEPLOY_DIR_IMAGE}/fip-fvp.bin"
40FVP_CONFIG[bp.virtioblockdevice.image_path] ?= "${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.rootfs.wic"
41# Set the baseline to ARMv8.4, as the default is 8.0.
42FVP_CONFIG[cluster0.has_arm_v8-4] = "1"
43FVP_CONFIG[cluster1.has_arm_v8-4] = "1"
44FVP_CONSOLE ?= "terminal_0"
45FVP_DATA ?= "cluster0.cpu0=${DEPLOY_DIR_IMAGE}/${KERNEL_IMAGETYPE}@0x80080000 \
46 cluster0.cpu0=${DEPLOY_DIR_IMAGE}/fvp-base-revc.dtb@0x8fc00000"
47FVP_TERMINALS[bp.terminal_0] ?= "Console"
48FVP_TERMINALS[bp.terminal_1] ?= ""
49FVP_TERMINALS[bp.terminal_2] ?= ""
50FVP_TERMINALS[bp.terminal_3] ?= ""