@@ -188,6 +188,24 @@ with the following properties:
An empty property to request the memory of the domain to be
direct-map (guest physical address == physical address).
+- xen,enhanced
+
+ A string property. Possible property values are:
+
+ - "enabled" (or missing property value)
+ Xen PV interfaces, including grant-table and xenstore, will be
+ enabled for the VM.
+
+ - "disabled"
+ Xen PV interfaces are disabled.
+
+ If the xen,enhanced property is present with no value, it defaults
+ to "enabled". If the xen,enhanced property is not present, PV
+ interfaces are disabled.
+
+ In the future other possible property values might be added to
+ enable only selected interfaces.
+
Under the "xen,domain" compatible node, one or more sub-nodes are present
for the DomU kernel and ramdisk.
@@ -3154,6 +3154,7 @@ static int __init construct_domU(struct domain *d,
const struct dt_device_node *node)
{
struct kernel_info kinfo = {};
+ const char *dom0less_enhanced;
int rc;
u64 mem;
@@ -3169,6 +3170,12 @@ static int __init construct_domU(struct domain *d,
kinfo.vpl011 = dt_property_read_bool(node, "vpl011");
+ rc = dt_property_read_string(node, "xen,enhanced", &dom0less_enhanced);
+ if ( rc == -EILSEQ ||
+ rc == -ENODATA ||
+ (rc == 0 && !strcmp(dom0less_enhanced, "enabled")) )
+ kinfo.dom0less_enhanced = true;
+
if ( vcpu_create(d, 0) == NULL )
return -ENOMEM;
@@ -36,6 +36,9 @@ struct kernel_info {
/* Enable pl011 emulation */
bool vpl011;
+ /* Enable PV drivers */
+ bool dom0less_enhanced;
+
/* GIC phandle */
uint32_t phandle_gic;