Lines Matching +full:entry +full:- +full:name

1 /* SPDX-License-Identifier: GPL-2.0 */
11 #include <linux/entry-common.h>
17 * DECLARE_IDTENTRY - Declare functions for simple IDT entry points
20 * @func: Function name of the entry point
23 * - The ASM entry point: asm_##func
24 * - The XEN PV trap entry point: xen_##func (maybe unused)
25 * - The C handler called from the ASM entry point
27 * Note: This is the C variant of DECLARE_IDTENTRY(). As the name says it
28 * declares the entry points for usage in C code. There is an ASM variant
29 * as well which is used to emit the entry stubs in entry_32/64.S.
37 * DEFINE_IDTENTRY - Emit code for simple IDT entry points
38 * @func: Function name of the entry point
40 * @func is called from ASM entry code with interrupts disabled.
69 * DECLARE_IDTENTRY_ERRORCODE - Declare functions for simple IDT entry points
72 * @func: Function name of the entry point
75 * - The ASM entry point: asm_##func
76 * - The XEN PV trap entry point: xen_##func (maybe unused)
77 * - The C handler called from the ASM entry point
80 * C-handler.
88 * DEFINE_IDTENTRY_ERRORCODE - Emit code for simple IDT entry points
90 * @func: Function name of the entry point
113 * DECLARE_IDTENTRY_RAW - Declare functions for raw IDT entry points
116 * @func: Function name of the entry point
124 * DEFINE_IDTENTRY_RAW - Emit code for raw IDT entry points
125 * @func: Function name of the entry point
127 * @func is called from ASM entry code with interrupts disabled.
141 * DECLARE_IDTENTRY_RAW_ERRORCODE - Declare functions for raw IDT entry points
144 * @func: Function name of the entry point
152 * DEFINE_IDTENTRY_RAW_ERRORCODE - Emit code for raw IDT entry points
153 * @func: Function name of the entry point
155 * @func is called from ASM entry code with interrupts disabled.
169 * DECLARE_IDTENTRY_IRQ - Declare functions for device interrupt IDT entry
172 * @func: Function name of the entry point
180 * DEFINE_IDTENTRY_IRQ - Emit code for device interrupt IDT entry points
181 * @func: Function name of the entry point
183 * The vector number is pushed by the low level entry stub and handed
210 * DECLARE_IDTENTRY_SYSVEC - Declare functions for system vector entry points
212 * @func: Function name of the entry point
215 * - The ASM entry point: asm_##func
216 * - The XEN PV trap entry point: xen_##func (maybe unused)
217 * - The C handler called from the ASM entry point
225 * DEFINE_IDTENTRY_SYSVEC - Emit code for system vector IDT entry points
226 * @func: Function name of the entry point
231 * Runs the function on the interrupt stack if the entry hit kernel mode
250 * DEFINE_IDTENTRY_SYSVEC_SIMPLE - Emit code for simple system vector IDT
251 * entry points
252 * @func: Function name of the entry point
279 * DECLARE_IDTENTRY_XENCB - Declare functions for XEN HV callback entry point
281 * @func: Function name of the entry point
284 * - The ASM entry point: asm_##func
285 * - The XEN PV trap entry point: xen_##func (maybe unused)
286 * - The C handler called from the ASM entry point
288 * Maps to DECLARE_IDTENTRY(). Distinct entry point to handle the 32/64-bit
296 * DECLARE_IDTENTRY_IST - Declare functions for IST handling IDT entry points
298 * @func: Function name of the entry point
301 * which is called from the ASM entry point on user mode entry
308 * DECLARE_IDTENTRY_VC - Declare functions for the VC entry point
310 * @func: Function name of the entry point
321 * DEFINE_IDTENTRY_IST - Emit code for IST entry points
322 * @func: Function name of the entry point
330 * DEFINE_IDTENTRY_NOIST - Emit code for NOIST entry points which
331 * belong to a IST entry point (MCE, DB)
332 * @func: Function name of the entry point. Must be the same as
333 * the function name of the corresponding IST variant
341 * DECLARE_IDTENTRY_DF - Declare functions for double fault
343 * @func: Function name of the entry point
351 * DEFINE_IDTENTRY_DF - Emit code for double fault
352 * @func: Function name of the entry point
360 * DEFINE_IDTENTRY_VC_KERNEL - Emit code for VMM communication handler
362 * @func: Function name of the entry point
370 * DEFINE_IDTENTRY_VC_USER - Emit code for VMM communication handler
372 * @func: Function name of the entry point
382 * DECLARE_IDTENTRY_DF - Declare functions for double fault 32bit variant
384 * @func: Function name of the entry point
387 * - The ASM entry point: asm_##func
388 * - The C handler called from the C shim
397 * DEFINE_IDTENTRY_DF - Emit code for double fault on 32bit
398 * @func: Function name of the entry point
410 /* C-Code mapping */
427 * The ASM variants for DECLARE_IDTENTRY*() which emit the ASM entry stubs.
484 * ASM code to emit the common vector entry stubs where each stub is
492 * odd conversion back to a real vector number in the C entry points. Using
493 * .byte achieves the same thing and the only fixup needed in the C entry
507 .fill 0b + IDT_ALIGN - ., 1, 0xcc
523 .fill 0b + IDT_ALIGN - ., 1, 0xcc
532 * The actual entry points. Note that DECLARE_IDTENTRY*() serves two
534 * - provide the function declarations when included from C-Code
535 * - emit the ASM stubs when included from entry_32/64.S
547 /* Simple exception entry points. No hardware error code */
591 * Special entry point for VMX which invokes this on the kernel stack, even for
592 * 64-bit, i.e. without using an IST. asm_exc_nmi() requires an IST to work
593 * correctly vs. the NMI 'executing' marker. Used for 32-bit kernels as well
645 /* System vector entry points */