1/* Startup code and pre-defined data structures */ 2 3#include "apic-defs.h" 4#include "asm-generic/page.h" 5#include "crt0-efi-x86_64.S" 6 7.data 8 9.align PAGE_SIZE 10.globl ptl2 11ptl2: 12 . = . + 4 * PAGE_SIZE 13.align PAGE_SIZE 14 15.globl ptl3 16ptl3: 17 . = . + PAGE_SIZE 18.align PAGE_SIZE 19 20.globl ptl4 21ptl4: 22 . = . + PAGE_SIZE 23.align PAGE_SIZE 24 25.section .init 26.code64 27.text 28 29.code16 30 31.globl rm_trampoline 32rm_trampoline: 33 34.globl sipi_entry 35sipi_entry: 36 jmp sipi_entry 37 38.globl sipi_end 39sipi_end: 40 41.globl rm_trampoline_end 42rm_trampoline_end: 43