[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH 2/5] xen/domain: Introduce a new arch_check_domain_config() helper
On the ARM side, lift the code to select the appropriate GIC version when NATIVE is requested. Signed-off-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> --- CC: Jan Beulich <JBeulich@xxxxxxxx> CC: Wei Liu <wei.liu2@xxxxxxxxxx> CC: Stefano Stabellini <sstabellini@xxxxxxxxxx> CC: Julien Grall <julien.grall@xxxxxxx> --- xen/arch/arm/domain.c | 44 ++++++++++++++++++++++++-------------------- xen/arch/x86/domain.c | 5 +++++ xen/common/domain.c | 2 +- xen/include/xen/sched.h | 6 ++++++ 4 files changed, 36 insertions(+), 21 deletions(-) diff --git a/xen/arch/arm/domain.c b/xen/arch/arm/domain.c index feebbf5..43593a4 100644 --- a/xen/arch/arm/domain.c +++ b/xen/arch/arm/domain.c @@ -599,6 +599,29 @@ void vcpu_switch_to_aarch64_mode(struct vcpu *v) v->arch.hcr_el2 |= HCR_RW; } +int arch_check_domain_config(struct xen_domctl_createdomain *config) +{ + /* Fill in the native GIC version, passed back to the toolstack. */ + if ( config->arch.gic_version == XEN_DOMCTL_CONFIG_GIC_NATIVE ) + { + switch ( gic_hw_version() ) + { + case GIC_V2: + config->arch.gic_version = XEN_DOMCTL_CONFIG_GIC_V2; + break; + + case GIC_V3: + config->arch.gic_version = XEN_DOMCTL_CONFIG_GIC_V3; + break; + + default: + BUG(); + } + } + + return 0; +} + int arch_domain_create(struct domain *d, struct xen_domctl_createdomain *config) { @@ -629,24 +652,6 @@ int arch_domain_create(struct domain *d, switch ( config->arch.gic_version ) { - case XEN_DOMCTL_CONFIG_GIC_NATIVE: - switch ( gic_hw_version () ) - { - case GIC_V2: - config->arch.gic_version = XEN_DOMCTL_CONFIG_GIC_V2; - d->arch.vgic.version = GIC_V2; - break; - - case GIC_V3: - config->arch.gic_version = XEN_DOMCTL_CONFIG_GIC_V3; - d->arch.vgic.version = GIC_V3; - break; - - default: - BUG(); - } - break; - case XEN_DOMCTL_CONFIG_GIC_V2: d->arch.vgic.version = GIC_V2; break; @@ -656,8 +661,7 @@ int arch_domain_create(struct domain *d, break; default: - rc = -EOPNOTSUPP; - goto fail; + BUG(); } if ( (rc = domain_vgic_register(d, &count)) != 0 ) diff --git a/xen/arch/x86/domain.c b/xen/arch/x86/domain.c index d67a047..26cab7c 100644 --- a/xen/arch/x86/domain.c +++ b/xen/arch/x86/domain.c @@ -401,6 +401,11 @@ void arch_vcpu_destroy(struct vcpu *v) pv_vcpu_destroy(v); } +int arch_check_domain_config(struct xen_domctl_createdomain *config) +{ + return 0; +} + static bool emulation_flags_ok(const struct domain *d, uint32_t emflags) { #ifdef CONFIG_HVM diff --git a/xen/common/domain.c b/xen/common/domain.c index 3f09a57..236c2ad 100644 --- a/xen/common/domain.c +++ b/xen/common/domain.c @@ -297,7 +297,7 @@ static int check_domain_config(struct xen_domctl_createdomain *config) XEN_DOMCTL_CDF_xs_domain) ) return -EINVAL; - return 0; + return arch_check_domain_config(config); } struct domain *domain_create(domid_t domid, diff --git a/xen/include/xen/sched.h b/xen/include/xen/sched.h index 0ba80cb..7a35e53 100644 --- a/xen/include/xen/sched.h +++ b/xen/include/xen/sched.h @@ -542,6 +542,12 @@ int domain_set_node_affinity(struct domain *d, const nodemask_t *affinity); void domain_update_node_affinity(struct domain *d); /* + * To be implemented by each architecture, sanity checking the configuration + * and filling in any appropriate defaults. + */ +int arch_check_domain_config(struct xen_domctl_createdomain *config); + +/* * Create a domain: the configuration is only necessary for real domain * (domid < DOMID_FIRST_RESERVED). */ -- 2.1.4 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/mailman/listinfo/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |