blob: 3d8536fc98c2a21fb094b025345db1f31d1eb451 [file] [log] [blame]
Brad Bishopbec4ebc2022-08-03 09:55:16 -04001# Image class to write .fvpconf files for use with runfvp. If this is desired
2# then add fvpboot to IMAGE_CLASSES, and set the variables below in your machine
3# configuration as appropriate.
4
5# Name of recipe providing FVP executable. If unset then the executable must be installed on the host.
6FVP_PROVIDER ?= ""
7# Name of FVP executable to run
8FVP_EXE ?= ""
9# Flags for --parameter/-C
10FVP_CONFIG ?= ""
11# Flags for --data
12FVP_DATA ?= ""
13# Flags for --application
14FVP_APPLICATIONS ?= ""
15# Flags to name serial terminals. Flag name is the terminal id (such as
16# terminal_0), value is a human-readable name. If the name is not set
17# then runfvp will hide the terminal.
18FVP_TERMINALS ?= ""
19# What terminal should be considered the primary console
20FVP_CONSOLE ?= ""
21# Flags for console names, as they appear in the FVP output. Flag name is an
22# application-specific id for the console for use in test cases
23FVP_CONSOLES[default] ?= "${FVP_CONSOLE}"
24# Arbitrary extra arguments
25FVP_EXTRA_ARGS ?= ""
Patrick Williams8dd68482022-10-04 07:57:18 -050026# Bitbake variables to pass to the FVP environment
Patrick Williams84603582024-12-14 08:00:57 -050027FVP_ENV_PASSTHROUGH ?= "ARMLMD_LICENSE_FILE"
Andrew Geisslerea144b032023-01-27 16:03:57 -060028FVP_ENV_PASSTHROUGH[vardeps] = "${FVP_ENV_PASSTHROUGH}"
Brad Bishopbec4ebc2022-08-03 09:55:16 -040029
30EXTRA_IMAGEDEPENDS += "${FVP_PROVIDER}"
31
Patrick Williams92b42cb2022-09-03 06:53:57 -050032IMAGE_CLASSES += "image-artifact-names"
Brad Bishopbec4ebc2022-08-03 09:55:16 -040033
34IMAGE_POSTPROCESS_COMMAND += "do_write_fvpboot_conf;"
35python do_write_fvpboot_conf() {
36 # Note that currently this JSON file is in development and the format may
37 # change at any point, so it should always be used with a matching runfvp.
38
39 import json, shlex
40
41 if not d.getVar("FVP_EXE"):
42 return
43
44 conffile = os.path.join(d.getVar("IMGDEPLOYDIR"), d.getVar("IMAGE_NAME") + ".fvpconf")
45 conffile_link = os.path.join(d.getVar("IMGDEPLOYDIR"), d.getVar("IMAGE_LINK_NAME") + ".fvpconf")
46
47 data = {}
48 provider = d.getVar("FVP_PROVIDER")
49 if provider:
50 data["provider"] = provider
51 data["fvp-bindir"] = os.path.join(d.getVar("COMPONENTS_DIR"),
52 d.getVar("BUILD_ARCH"),
53 provider,
54 "usr", "bin")
55
56 def getFlags(varname):
57 flags = d.getVarFlags(varname)
58 # For unexplained reasons, getVarFlags() returns None if there are no flags
59 if flags is None:
60 return {}
61 # For other reasons, you can't pass expand=True
62 return {key: d.expand(value) for key, value in flags.items()}
63
64 data["exe"] = d.getVar("FVP_EXE")
65 data["parameters"] = getFlags("FVP_CONFIG")
66 data["data"] = shlex.split(d.getVar("FVP_DATA") or "")
67 data["applications"] = getFlags("FVP_APPLICATIONS")
68 data["consoles"] = getFlags("FVP_CONSOLES")
69 data["terminals"] = getFlags("FVP_TERMINALS")
70 data["args"] = shlex.split(d.getVar("FVP_EXTRA_ARGS") or "")
71
Patrick Williams8dd68482022-10-04 07:57:18 -050072 data["env"] = {}
73 for var in d.getVar("FVP_ENV_PASSTHROUGH").split():
Andrew Geisslerea144b032023-01-27 16:03:57 -060074 if d.getVar(var) is not None:
75 data["env"][var] = d.getVar(var)
Patrick Williams8dd68482022-10-04 07:57:18 -050076
Brad Bishopbec4ebc2022-08-03 09:55:16 -040077 os.makedirs(os.path.dirname(conffile), exist_ok=True)
78 with open(conffile, "wt") as f:
79 json.dump(data, f)
80
81 if conffile_link != conffile:
82 if os.path.lexists(conffile_link):
83 os.remove(conffile_link)
84 os.symlink(os.path.basename(conffile), conffile_link)
85}
86
87def fvpboot_vars(d):
88 vars = ['DEPLOY_DIR_IMAGE', 'IMAGE_NAME', 'IMAGE_LINK_NAME', 'COMPONENTS_DIR', 'BUILD_ARCH']
89 vars.extend((k for k in d.keys() if k.startswith('FVP_')))
90 return " ".join(vars)
91
92do_write_fvpboot_conf[vardeps] += "${@fvpboot_vars(d)}"