On Tuesday, April 8th, 2025 at 9:07 AM, Alejandro Vallejo <agarc...@amd.com> wrote:
> > > From: "Daniel P. Smith" dpsm...@apertussolutions.com > > > Introduce the ability to assign capabilities to a domain via its definition in > device tree. The first capability enabled to select is the control domain > capability. The capability property is a bitfield in both the device tree and > `struct boot_domain`. > > Signed-off-by: Daniel P. Smith dpsm...@apertussolutions.com > > Reviewed-by: Jason Andryuk jason.andr...@amd.com > > Signed-off-by: Jason Andryuk jason.andr...@amd.com > > --- > xen/arch/x86/domain-builder/core.c | 1 + > xen/arch/x86/domain-builder/fdt.c | 12 ++++++++++++ > xen/arch/x86/include/asm/boot-domain.h | 4 ++++ > xen/arch/x86/setup.c | 6 +++++- > 4 files changed, 22 insertions(+), 1 deletion(-) > > diff --git a/xen/arch/x86/domain-builder/core.c > b/xen/arch/x86/domain-builder/core.c > index 510a74a675..6ab4e6fe53 100644 > --- a/xen/arch/x86/domain-builder/core.c > +++ b/xen/arch/x86/domain-builder/core.c > @@ -96,6 +96,7 @@ void __init builder_init(struct boot_info *bi) > i = first_boot_module_index(bi, BOOTMOD_UNKNOWN); > bi->mods[i].type = BOOTMOD_KERNEL; > > bi->domains[0].kernel = &bi->mods[i]; > > + bi->domains[0].capabilities |= BUILD_CAPS_CONTROL; > > bi->nr_domains = 1; > > } > } > diff --git a/xen/arch/x86/domain-builder/fdt.c > b/xen/arch/x86/domain-builder/fdt.c > index 5fcb767bdd..dbfbcffb0a 100644 > --- a/xen/arch/x86/domain-builder/fdt.c > +++ b/xen/arch/x86/domain-builder/fdt.c > @@ -257,6 +257,18 @@ static int __init process_domain_node( > bd->max_vcpus = val; > > printk(" max vcpus: %d\n", bd->max_vcpus); > > } > + else if ( strncmp(prop_name, "capabilities", name_len) == 0 ) > + { > + if ( fdt_prop_as_u32(prop, &bd->capabilities) != 0 ) > > + { > + printk(" failed processing domain id for domain %s\n", name); Suggest adding XENLOG_ERR to the error message. > + return -EINVAL; > + } > + printk(" caps: "); > + if ( bd->capabilities & BUILD_CAPS_CONTROL ) > > + printk("c"); Perhaps wrap string generation into a separate function? That will help if the number of capabilities will grow over time and if there will be a need to use string representation somewhere else in the code. Thoughts? > + printk("\n"); > + } > } > > fdt_for_each_subnode(node, fdt, dom_node) > diff --git a/xen/arch/x86/include/asm/boot-domain.h > b/xen/arch/x86/include/asm/boot-domain.h > index 969c02a6ea..29a7d806de 100644 > --- a/xen/arch/x86/include/asm/boot-domain.h > +++ b/xen/arch/x86/include/asm/boot-domain.h > @@ -13,6 +13,10 @@ > struct boot_domain { > domid_t domid; > > +#define BUILD_CAPS_NONE (0) > +#define BUILD_CAPS_CONTROL (1 << 0) > + uint32_t capabilities; > + > /* On | Off / > #define BUILD_MODE_PARAVIRT (1 << 0) / PV | PVH/HVM / > #define BUILD_MODE_ENABLE_DM (1 << 1) / HVM | PVH */ > diff --git a/xen/arch/x86/setup.c b/xen/arch/x86/setup.c > index 4127a0105d..7e1a26b4d2 100644 > --- a/xen/arch/x86/setup.c > +++ b/xen/arch/x86/setup.c > @@ -1006,6 +1006,7 @@ static struct domain *__init create_dom0(struct > boot_info *bi) > { > char *cmdline = NULL; > size_t cmdline_size; > + unsigned int create_flags = 0; > struct xen_domctl_createdomain dom0_cfg = { > .flags = IS_ENABLED(CONFIG_TBOOT) ? XEN_DOMCTL_CDF_s3_integrity : 0, > .max_evtchn_port = -1, > @@ -1037,7 +1038,10 @@ static struct domain *__init create_dom0(struct > boot_info *bi) > if ( bd->domid == DOMID_INVALID ) > > /* Create initial domain. Not d0 for pvshim. */ > bd->domid = get_initial_domain_id(); > > - d = domain_create(bd->domid, &dom0_cfg, pv_shim ? 0 : CDF_privileged); > > + if ( bd->capabilities & BUILD_CAPS_CONTROL ) > > + create_flags |= CDF_privileged; > + d = domain_create(bd->domid, &dom0_cfg, > > + pv_shim ? 0 : create_flags); > if ( IS_ERR(d) ) > panic("Error creating d%u: %ld\n", bd->domid, PTR_ERR(d)); > > > -- > 2.43.0