drm/rockchip: vop2: Fix the windows switch between different layers
[drm/drm-misc.git] / arch / x86 / xen / mmu_hvm.c
blob337955652202d4ee564fee771979f8a8525bf2ce
1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/types.h>
3 #include <linux/crash_dump.h>
5 #include <xen/interface/xen.h>
6 #include <xen/hvm.h>
8 #include "xen-ops.h"
10 #ifdef CONFIG_PROC_VMCORE
12 * The kdump kernel has to check whether a pfn of the crashed kernel
13 * was a ballooned page. vmcore is using this function to decide
14 * whether to access a pfn of the crashed kernel.
15 * Returns "false" if the pfn is not backed by a RAM page, the caller may
16 * handle the pfn special in this case.
18 static bool xen_vmcore_pfn_is_ram(struct vmcore_cb *cb, unsigned long pfn)
20 struct xen_hvm_get_mem_type a = {
21 .domid = DOMID_SELF,
22 .pfn = pfn,
25 if (HYPERVISOR_hvm_op(HVMOP_get_mem_type, &a)) {
26 pr_warn_once("Unexpected HVMOP_get_mem_type failure\n");
27 return true;
29 return a.mem_type != HVMMEM_mmio_dm;
31 static struct vmcore_cb xen_vmcore_cb = {
32 .pfn_is_ram = xen_vmcore_pfn_is_ram,
34 #endif
36 static void xen_hvm_exit_mmap(struct mm_struct *mm)
38 struct xen_hvm_pagetable_dying a;
39 int rc;
41 a.domid = DOMID_SELF;
42 a.gpa = __pa(mm->pgd);
43 rc = HYPERVISOR_hvm_op(HVMOP_pagetable_dying, &a);
44 WARN_ON_ONCE(rc < 0);
47 static int is_pagetable_dying_supported(void)
49 struct xen_hvm_pagetable_dying a;
50 int rc = 0;
52 a.domid = DOMID_SELF;
53 a.gpa = 0x00;
54 rc = HYPERVISOR_hvm_op(HVMOP_pagetable_dying, &a);
55 if (rc < 0) {
56 printk(KERN_DEBUG "HVMOP_pagetable_dying not supported\n");
57 return 0;
59 return 1;
62 void __init xen_hvm_init_mmu_ops(void)
64 if (is_pagetable_dying_supported())
65 pv_ops.mmu.exit_mmap = xen_hvm_exit_mmap;
66 #ifdef CONFIG_PROC_VMCORE
67 register_vmcore_cb(&xen_vmcore_cb);
68 #endif