Skip to content

Commit

Permalink
x86: provide an init_mem_mapping hypervisor hook
Browse files Browse the repository at this point in the history
Provide a hook in hypervisor_x86 called after setting up initial
memory mapping.

This is needed e.g. by Xen HVM guests to map the hypervisor shared
info page.

Signed-off-by: Juergen Gross <[email protected]>
Reviewed-by: Boris Ostrovsky <[email protected]>
Acked-by: Ingo Molnar <[email protected]>
Signed-off-by: Juergen Gross <[email protected]>
  • Loading branch information
jgross1 committed Aug 11, 2017
1 parent e91b2b1 commit c138d81
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
10 changes: 10 additions & 0 deletions arch/x86/include/asm/hypervisor.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ struct hypervisor_x86 {

/* pin current vcpu to specified physical cpu (run rarely) */
void (*pin_vcpu)(int);

/* called during init_mem_mapping() to setup early mappings. */
void (*init_mem_mapping)(void);
};

extern const struct hypervisor_x86 *x86_hyper;
Expand All @@ -57,8 +60,15 @@ extern const struct hypervisor_x86 x86_hyper_kvm;
extern void init_hypervisor_platform(void);
extern bool hypervisor_x2apic_available(void);
extern void hypervisor_pin_vcpu(int cpu);

static inline void hypervisor_init_mem_mapping(void)
{
if (x86_hyper && x86_hyper->init_mem_mapping)
x86_hyper->init_mem_mapping();
}
#else
static inline void init_hypervisor_platform(void) { }
static inline bool hypervisor_x2apic_available(void) { return false; }
static inline void hypervisor_init_mem_mapping(void) { }
#endif /* CONFIG_HYPERVISOR_GUEST */
#endif /* _ASM_X86_HYPERVISOR_H */
3 changes: 3 additions & 0 deletions arch/x86/mm/init.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
#include <asm/dma.h> /* for MAX_DMA_PFN */
#include <asm/microcode.h>
#include <asm/kaslr.h>
#include <asm/hypervisor.h>

/*
* We need to define the tracepoints somewhere, and tlb.c
Expand Down Expand Up @@ -636,6 +637,8 @@ void __init init_mem_mapping(void)
load_cr3(swapper_pg_dir);
__flush_tlb_all();

hypervisor_init_mem_mapping();

early_memtest(0, max_pfn_mapped << PAGE_SHIFT);
}

Expand Down

0 comments on commit c138d81

Please sign in to comment.