1b2441318SGreg Kroah-Hartman/* SPDX-License-Identifier: GPL-2.0 */ 2f37240f1SJarkko Sakkinen .section ".rodata","a" 3cda846f1SJarkko Sakkinen .balign 16 4*ff2e6468SSean Christopherson 5*ff2e6468SSean Christopherson/* 6*ff2e6468SSean Christopherson * When a bootloader hands off to the kernel in 32-bit mode an 7*ff2e6468SSean Christopherson * IDT with a 2-byte limit and 4-byte base is needed. When a boot 8*ff2e6468SSean Christopherson * loader hands off to a kernel 64-bit mode the base address 9*ff2e6468SSean Christopherson * extends to 8-bytes. Reserve enough space for either scenario. 10*ff2e6468SSean Christopherson */ 11*ff2e6468SSean ChristophersonSYM_DATA_START_LOCAL(tr_idt) 12*ff2e6468SSean Christopherson .short 0 13*ff2e6468SSean Christopherson .quad 0 14*ff2e6468SSean ChristophersonSYM_DATA_END(tr_idt) 15