Message ID | 1447753261-7552-60-git-send-email-shannon.zhao@linaro.org (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
>>> On 17.11.15 at 10:40, <shannon.zhao@linaro.org> wrote: > --- a/xen/arch/arm/mm.c > +++ b/xen/arch/arm/mm.c > @@ -1138,6 +1138,10 @@ int xenmem_add_to_physmap_one( > rcu_unlock_domain(od); > break; > } > + case XENMAPSPACE_dev_mmio: > + rc = map_dev_mmio_region(d, gpfn, 1, idx); > + return rc; > + break; Blindly for any kind of domain? The XSM check in the XENMEM_add_to_physmap_batch handler (in common code) doesn't even know which map space is to be used... Jan
Hi Jan, On 2015/11/17 19:04, Jan Beulich wrote: >>>> On 17.11.15 at 10:40, <shannon.zhao@linaro.org> wrote: >> > --- a/xen/arch/arm/mm.c >> > +++ b/xen/arch/arm/mm.c >> > @@ -1138,6 +1138,10 @@ int xenmem_add_to_physmap_one( >> > rcu_unlock_domain(od); >> > break; >> > } >> > + case XENMAPSPACE_dev_mmio: >> > + rc = map_dev_mmio_region(d, gpfn, 1, idx); >> > + return rc; >> > + break; > Blindly for any kind of domain? The XSM check in the > XENMEM_add_to_physmap_batch handler (in common code) doesn't > even know which map space is to be used... Sorry, I know little about XSM. Could you suggest me how to add the check for this new type here? Thanks,
>>> On 07.01.16 at 07:58, <zhaoshenglong@huawei.com> wrote: > On 2015/11/17 19:04, Jan Beulich wrote: >>>>> On 17.11.15 at 10:40, <shannon.zhao@linaro.org> wrote: >>> > --- a/xen/arch/arm/mm.c >>> > +++ b/xen/arch/arm/mm.c >>> > @@ -1138,6 +1138,10 @@ int xenmem_add_to_physmap_one( >>> > rcu_unlock_domain(od); >>> > break; >>> > } >>> > + case XENMAPSPACE_dev_mmio: >>> > + rc = map_dev_mmio_region(d, gpfn, 1, idx); >>> > + return rc; >>> > + break; >> Blindly for any kind of domain? The XSM check in the >> XENMEM_add_to_physmap_batch handler (in common code) doesn't >> even know which map space is to be used... > > Sorry, I know little about XSM. Could you suggest me how to add the > check for this new type here? I'm sorry to push back here, but did you at least try to derive what is wanted from the multitude of other XSM checks present throughout the tree? Jan
diff --git a/xen/arch/arm/mm.c b/xen/arch/arm/mm.c index 8b6d915..fbe0406 100644 --- a/xen/arch/arm/mm.c +++ b/xen/arch/arm/mm.c @@ -1138,6 +1138,10 @@ int xenmem_add_to_physmap_one( rcu_unlock_domain(od); break; } + case XENMAPSPACE_dev_mmio: + rc = map_dev_mmio_region(d, gpfn, 1, idx); + return rc; + break; default: return -ENOSYS; diff --git a/xen/arch/arm/p2m.c b/xen/arch/arm/p2m.c index 7a108d8..b44ad76 100644 --- a/xen/arch/arm/p2m.c +++ b/xen/arch/arm/p2m.c @@ -7,6 +7,7 @@ #include <xen/bitops.h> #include <xen/vm_event.h> #include <xen/mem_access.h> +#include <xen/iocap.h> #include <public/vm_event.h> #include <asm/flushtlb.h> #include <asm/gic.h> @@ -1192,6 +1193,39 @@ int unmap_mmio_regions(struct domain *d, d->arch.p2m.default_access); } +int map_dev_mmio_region(struct domain *d, + unsigned long start_gfn, + unsigned long nr, + unsigned long mfn) +{ + int res; + + if(!iomem_access_permitted(d, start_gfn, start_gfn + nr)) + return 0; + + res = iomem_permit_access(d, start_gfn, (start_gfn + nr)); + if ( res ) + { + printk(XENLOG_ERR "Unable to permit to dom%d access to" + " 0x%"PRIx64" - 0x%"PRIx64"\n", + d->domain_id, + start_gfn << PAGE_SHIFT, (start_gfn + nr) << PAGE_SHIFT); + return res; + } + + res = map_mmio_regions(d, start_gfn, nr, mfn); + if ( res < 0 ) + { + printk(XENLOG_ERR "Unable to map 0x%"PRIx64 + " - 0x%"PRIx64" in domain %d\n", + start_gfn << PAGE_SHIFT, (start_gfn + nr) << PAGE_SHIFT, + d->domain_id); + return res; + } + + return 0; +} + int guest_physmap_add_entry(struct domain *d, unsigned long gpfn, unsigned long mfn, diff --git a/xen/include/asm-arm/p2m.h b/xen/include/asm-arm/p2m.h index b6215f9..5e9d0a1 100644 --- a/xen/include/asm-arm/p2m.h +++ b/xen/include/asm-arm/p2m.h @@ -168,6 +168,11 @@ int unmap_regions(struct domain *d, unsigned long nr_mfns, unsigned long mfn); +int map_dev_mmio_region(struct domain *d, + unsigned long start_gfn, + unsigned long nr, + unsigned long mfn); + int guest_physmap_add_entry(struct domain *d, unsigned long gfn, unsigned long mfn, diff --git a/xen/include/public/memory.h b/xen/include/public/memory.h index 4df38d6..c19da1a 100644 --- a/xen/include/public/memory.h +++ b/xen/include/public/memory.h @@ -220,6 +220,7 @@ DEFINE_XEN_GUEST_HANDLE(xen_machphys_mapping_t); #define XENMAPSPACE_gmfn_range 3 /* GMFN range, XENMEM_add_to_physmap only. */ #define XENMAPSPACE_gmfn_foreign 4 /* GMFN from another dom, * XENMEM_add_to_physmap_batch only. */ +#define XENMAPSPACE_dev_mmio 5 /* device mmio region */ /* ` } */ /*