Page MenuHomeFreeBSD

xen/xenpv: introduce xen_arch_alloc_addr()/xen_arch_release_addr()
AbandonedPublic

Authored by ehem_freebsd_m5p.com on Apr 18 2021, 1:54 AM.
Tags
None
Referenced Files
Unknown Object (File)
Mar 2 2024, 2:00 PM
Unknown Object (File)
Dec 27 2023, 8:34 AM
Unknown Object (File)
Dec 10 2023, 7:42 PM
Unknown Object (File)
Dec 6 2023, 2:28 AM
Unknown Object (File)
Sep 25 2023, 3:13 AM
Unknown Object (File)
Sep 6 2023, 7:13 AM
Unknown Object (File)
Aug 15 2023, 9:17 PM
Unknown Object (File)
Aug 14 2023, 6:44 AM

Details

Summary

Non-x86 architectures place different constraints on the address of the
Xen address allocations. As such introduce xen_arch_alloc_addr() to
allow architecture-specific code to allocate the address space.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 38662
Build 35551: arc lint + arc unit

Event Timeline

This would replace D29304.

The idea is a function like this would allow aarch64 to use the device-tree to specify where to place the grant-table (and other Xen MMIO). Such could also place appropriate limits on addresses used.

I should state, I'm unsure whether to declare these in sys/xen/xen-os.h versus sys/x86/include/xen/xen-os.h. For x86 these could be static inline functions, for ARM I suspect they will end up as actual functions (unless one variable ends up global). One trick is they do need a number of headers to be #include'd to work. I got to a fairly minimal set of headers, but it may be possible to cut further.

I should also provide an update on this. I tried and successfully used this to place the grant table in Xen/ARM's recommended address range. The implementation was to add a struct rman to xen-dt.c which was then initialized from the resource. rman_reserve_resource()/rman_release_resource() were then used for the actual allocation.

For the purposes of ARM, the API might be better to have a xenpv_set_addr_mgr(struct rman *) function. This allows for the allocated range to come from either device-tree or ACPI table. There are two outstanding issues.

x86 needs to be able to setup a resource manager to provide to the XenPV code.

How does the Xen project view the range provided? Meant for grant-tables only? Meant for any foreign mapping? Will a larger range be suggested for larger VMs?

There are questions of approach for this. While this has demonstrated viability, there are sufficient concerns for this not to be ready yet. The alternative is D29304 which has a distinct issue.

This approach did yield working builds, but with the other approach's major issues worked out that looks better. Well past time to abandon this. This one isn't going to return from the scrapheap.