From: Julien Grall Date: Tue, 29 Sep 2015 16:21:37 +0000 (+0100) Subject: xen/arm: Warn when a device tree path will be re-used by Xen X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~2460 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=380467c375deaf79aaca802cf8759d68a81c4009;p=xen.git xen/arm: Warn when a device tree path will be re-used by Xen Xen is unconditionally using certain device tree paths to create DOM0 specific node (for instance /psci, /memory and /hypervisor). Print a warning message on the console to let the user know if we re-use one of these nodes. Note that the content of most of those is very common and they should have already been skipped via the compatible string or type string. This warning is here to catch unusual device-tree and compatible string that we may not yet support in Xen. Signed-off-by: Julien Grall Acked-by: Ian Campbell --- diff --git a/xen/arch/arm/domain_build.c b/xen/arch/arm/domain_build.c index e8f024f783..eb93a3a4a7 100644 --- a/xen/arch/arm/domain_build.c +++ b/xen/arch/arm/domain_build.c @@ -1205,6 +1205,13 @@ static int handle_node(struct domain *d, struct kernel_info *kinfo, DT_MATCH_TIMER, { /* sentinel */ }, }; + static const struct dt_device_match reserved_matches[] __initconst = + { + DT_MATCH_PATH("/psci"), + DT_MATCH_PATH("/memory"), + DT_MATCH_PATH("/hypervisor"), + { /* sentinel */ }, + }; struct dt_device_node *child; int res; const char *name; @@ -1252,6 +1259,15 @@ static int handle_node(struct domain *d, struct kernel_info *kinfo, return 0; } + /* + * Xen is using some path for its own purpose. Warn if a node + * already exists with the same path. + */ + if ( dt_match_node(reserved_matches, node) ) + printk(XENLOG_WARNING + "WARNING: Path %s is reserved, skip the node as we may re-use the path.\n", + path); + res = handle_device(d, node); if ( res) return res;