@@ -25,6 +25,7 @@
#include <xen/libfdt/libfdt.h>
#include <xen/mm.h>
#include <xen/pfn.h>
+#include <xen/pmap.h>
#include <xen/sched.h>
#include <xen/sizes.h>
#include <xen/types.h>
@@ -980,27 +981,11 @@ void *ioremap(paddr_t pa, size_t len)
static lpae_t *xen_map_table(mfn_t mfn)
{
/*
- * We may require to map the page table before map_domain_page() is
- * useable. The requirements here is it must be useable as soon as
- * page-tables are allocated dynamically via alloc_boot_pages().
- *
- * We need to do the check on physical address rather than virtual
- * address to avoid truncation on Arm32. Therefore is_kernel() cannot
- * be used.
+ * During early boot, map_domain_page() may be unusable. Use the
+ * PMAP to map temporarily a page-table.
*/
if ( system_state == SYS_STATE_early_boot )
- {
- if ( is_xen_fixed_mfn(mfn) )
- {
- /*
- * It is fine to demote the type because the size of Xen
- * will always fit in vaddr_t.
- */
- vaddr_t offset = mfn_to_maddr(mfn) - virt_to_maddr(&_start);
-
- return (lpae_t *)(XEN_VIRT_START + offset);
- }
- }
+ return pmap_map(mfn);
return map_domain_page(mfn);
}
@@ -1009,12 +994,12 @@ static void xen_unmap_table(const lpae_t *table)
{
/*
* During early boot, xen_map_table() will not use map_domain_page()
- * for page-tables residing in Xen binary. So skip the unmap part.
+ * but the PMAP.
*/
- if ( system_state == SYS_STATE_early_boot && is_kernel(table) )
- return;
-
- unmap_domain_page(table);
+ if ( system_state == SYS_STATE_early_boot )
+ pmap_unmap(table);
+ else
+ unmap_domain_page(table);
}
static int create_xen_table(lpae_t *entry)