GNU Linux-libre 5.4.274-gnu1
[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 #ifdef CONFIG_XEN_PV
24         __INIT
25 ENTRY(startup_xen)
26         UNWIND_HINT_EMPTY
27         cld
28
29         /* Clear .bss */
30         xor %eax,%eax
31         mov $__bss_start, %_ASM_DI
32         mov $__bss_stop, %_ASM_CX
33         sub %_ASM_DI, %_ASM_CX
34         shr $__ASM_SEL(2, 3), %_ASM_CX
35         rep __ASM_SIZE(stos)
36
37         mov %_ASM_SI, xen_start_info
38 #ifdef CONFIG_X86_64
39         mov initial_stack(%rip), %rsp
40 #else
41         mov initial_stack, %esp
42 #endif
43
44 #ifdef CONFIG_X86_64
45         /* Set up %gs.
46          *
47          * The base of %gs always points to fixed_percpu_data.  If the
48          * stack protector canary is enabled, it is located at %gs:40.
49          * Note that, on SMP, the boot cpu uses init data section until
50          * the per cpu areas are set up.
51          */
52         movl    $MSR_GS_BASE,%ecx
53         movq    $INIT_PER_CPU_VAR(fixed_percpu_data),%rax
54         cdq
55         wrmsr
56 #endif
57
58         call xen_start_kernel
59 END(startup_xen)
60         __FINIT
61
62 #ifdef CONFIG_XEN_PV_SMP
63 .pushsection .text
64 SYM_CODE_START(asm_cpu_bringup_and_idle)
65         UNWIND_HINT_EMPTY
66
67         call cpu_bringup_and_idle
68 SYM_CODE_END(asm_cpu_bringup_and_idle)
69 .popsection
70 #endif
71 #endif
72
73 .pushsection .text
74         .balign PAGE_SIZE
75 ENTRY(hypercall_page)
76         .rept (PAGE_SIZE / 32)
77                 UNWIND_HINT_EMPTY
78                 .skip 32
79         .endr
80
81 #define HYPERCALL(n) \
82         .equ xen_hypercall_##n, hypercall_page + __HYPERVISOR_##n * 32; \
83         .type xen_hypercall_##n, @function; .size xen_hypercall_##n, 32
84 #include <asm/xen-hypercalls.h>
85 #undef HYPERCALL
86 END(hypercall_page)
87 .popsection
88
89         ELFNOTE(Xen, XEN_ELFNOTE_GUEST_OS,       .asciz "linux")
90         ELFNOTE(Xen, XEN_ELFNOTE_GUEST_VERSION,  .asciz "2.6")
91         ELFNOTE(Xen, XEN_ELFNOTE_XEN_VERSION,    .asciz "xen-3.0")
92 #ifdef CONFIG_X86_32
93         ELFNOTE(Xen, XEN_ELFNOTE_VIRT_BASE,      _ASM_PTR __PAGE_OFFSET)
94 #else
95         ELFNOTE(Xen, XEN_ELFNOTE_VIRT_BASE,      _ASM_PTR __START_KERNEL_map)
96         /* Map the p2m table to a 512GB-aligned user address. */
97         ELFNOTE(Xen, XEN_ELFNOTE_INIT_P2M,       .quad (PUD_SIZE * PTRS_PER_PUD))
98 #endif
99 #ifdef CONFIG_XEN_PV
100         ELFNOTE(Xen, XEN_ELFNOTE_ENTRY,          _ASM_PTR startup_xen)
101 #endif
102         ELFNOTE(Xen, XEN_ELFNOTE_HYPERCALL_PAGE, _ASM_PTR hypercall_page)
103         ELFNOTE(Xen, XEN_ELFNOTE_FEATURES,
104                 .ascii "!writable_page_tables|pae_pgdir_above_4gb")
105         ELFNOTE(Xen, XEN_ELFNOTE_SUPPORTED_FEATURES,
106                 .long (1 << XENFEAT_writable_page_tables) |       \
107                       (1 << XENFEAT_dom0) |                       \
108                       (1 << XENFEAT_linux_rsdp_unrestricted))
109         ELFNOTE(Xen, XEN_ELFNOTE_PAE_MODE,       .asciz "yes")
110         ELFNOTE(Xen, XEN_ELFNOTE_LOADER,         .asciz "generic")
111         ELFNOTE(Xen, XEN_ELFNOTE_L1_MFN_VALID,
112                 .quad _PAGE_PRESENT; .quad _PAGE_PRESENT)
113         ELFNOTE(Xen, XEN_ELFNOTE_SUSPEND_CANCEL, .long 1)
114         ELFNOTE(Xen, XEN_ELFNOTE_MOD_START_PFN,  .long 1)
115         ELFNOTE(Xen, XEN_ELFNOTE_HV_START_LOW,   _ASM_PTR __HYPERVISOR_VIRT_START)
116         ELFNOTE(Xen, XEN_ELFNOTE_PADDR_OFFSET,   _ASM_PTR 0)
117
118 #endif /*CONFIG_XEN */