GNU Linux-libre 5.19-rc6-gnu
[releases.git] / arch / x86 / xen / xen-head.S
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /* Xen-specific pieces of head.S, intended to be included in the right
3         place in head.S */
4
5 #ifdef CONFIG_XEN
6
7 #include <linux/elfnote.h>
8 #include <linux/init.h>
9
10 #include <asm/boot.h>
11 #include <asm/asm.h>
12 #include <asm/msr.h>
13 #include <asm/page_types.h>
14 #include <asm/percpu.h>
15 #include <asm/unwind_hints.h>
16
17 #include <xen/interface/elfnote.h>
18 #include <xen/interface/features.h>
19 #include <xen/interface/xen.h>
20 #include <xen/interface/xen-mca.h>
21 #include <asm/xen/interface.h>
22
23 .pushsection .noinstr.text, "ax"
24         .balign PAGE_SIZE
25 SYM_CODE_START(hypercall_page)
26         .rept (PAGE_SIZE / 32)
27                 UNWIND_HINT_FUNC
28                 ANNOTATE_NOENDBR
29                 ret
30                 /*
31                  * Xen will write the hypercall page, and sort out ENDBR.
32                  */
33                 .skip 31, 0xcc
34         .endr
35
36 #define HYPERCALL(n) \
37         .equ xen_hypercall_##n, hypercall_page + __HYPERVISOR_##n * 32; \
38         .type xen_hypercall_##n, @function; .size xen_hypercall_##n, 32
39 #include <asm/xen-hypercalls.h>
40 #undef HYPERCALL
41 SYM_CODE_END(hypercall_page)
42 .popsection
43
44 #ifdef CONFIG_XEN_PV
45         __INIT
46 SYM_CODE_START(startup_xen)
47         UNWIND_HINT_EMPTY
48         ANNOTATE_NOENDBR
49         cld
50
51         mov initial_stack(%rip), %rsp
52
53         /* Set up %gs.
54          *
55          * The base of %gs always points to fixed_percpu_data.  If the
56          * stack protector canary is enabled, it is located at %gs:40.
57          * Note that, on SMP, the boot cpu uses init data section until
58          * the per cpu areas are set up.
59          */
60         movl    $MSR_GS_BASE,%ecx
61         movq    $INIT_PER_CPU_VAR(fixed_percpu_data),%rax
62         cdq
63         wrmsr
64
65         mov     %rsi, %rdi
66         call xen_start_kernel
67 SYM_CODE_END(startup_xen)
68         __FINIT
69
70 #ifdef CONFIG_XEN_PV_SMP
71 .pushsection .text
72 SYM_CODE_START(asm_cpu_bringup_and_idle)
73         UNWIND_HINT_EMPTY
74         ENDBR
75
76         call cpu_bringup_and_idle
77 SYM_CODE_END(asm_cpu_bringup_and_idle)
78 .popsection
79 #endif
80 #endif
81
82         ELFNOTE(Xen, XEN_ELFNOTE_GUEST_OS,       .asciz "linux")
83         ELFNOTE(Xen, XEN_ELFNOTE_GUEST_VERSION,  .asciz "2.6")
84         ELFNOTE(Xen, XEN_ELFNOTE_XEN_VERSION,    .asciz "xen-3.0")
85 #ifdef CONFIG_X86_32
86         ELFNOTE(Xen, XEN_ELFNOTE_VIRT_BASE,      _ASM_PTR __PAGE_OFFSET)
87 #else
88         ELFNOTE(Xen, XEN_ELFNOTE_VIRT_BASE,      _ASM_PTR __START_KERNEL_map)
89         /* Map the p2m table to a 512GB-aligned user address. */
90         ELFNOTE(Xen, XEN_ELFNOTE_INIT_P2M,       .quad (PUD_SIZE * PTRS_PER_PUD))
91 #endif
92 #ifdef CONFIG_XEN_PV
93         ELFNOTE(Xen, XEN_ELFNOTE_ENTRY,          _ASM_PTR startup_xen)
94 #endif
95         ELFNOTE(Xen, XEN_ELFNOTE_HYPERCALL_PAGE, _ASM_PTR hypercall_page)
96         ELFNOTE(Xen, XEN_ELFNOTE_FEATURES,
97                 .ascii "!writable_page_tables|pae_pgdir_above_4gb")
98         ELFNOTE(Xen, XEN_ELFNOTE_SUPPORTED_FEATURES,
99                 .long (1 << XENFEAT_writable_page_tables) |       \
100                       (1 << XENFEAT_dom0) |                       \
101                       (1 << XENFEAT_linux_rsdp_unrestricted))
102         ELFNOTE(Xen, XEN_ELFNOTE_PAE_MODE,       .asciz "yes")
103         ELFNOTE(Xen, XEN_ELFNOTE_LOADER,         .asciz "generic")
104         ELFNOTE(Xen, XEN_ELFNOTE_L1_MFN_VALID,
105                 .quad _PAGE_PRESENT; .quad _PAGE_PRESENT)
106         ELFNOTE(Xen, XEN_ELFNOTE_SUSPEND_CANCEL, .long 1)
107         ELFNOTE(Xen, XEN_ELFNOTE_MOD_START_PFN,  .long 1)
108         ELFNOTE(Xen, XEN_ELFNOTE_HV_START_LOW,   _ASM_PTR __HYPERVISOR_VIRT_START)
109         ELFNOTE(Xen, XEN_ELFNOTE_PADDR_OFFSET,   _ASM_PTR 0)
110
111 #endif /*CONFIG_XEN */