master
1/* $NetBSD: intrdefs.h,v 1.26 2022/09/07 00:40:18 knakahara Exp $ */
2
3#ifndef _X86_INTRDEFS_H_
4#define _X86_INTRDEFS_H_
5
6/* Interrupt priority levels. */
7#define IPL_NONE 0x0 /* nothing */
8#define IPL_PREEMPT 0x1 /* fake, to prevent recursive preemptions */
9#define IPL_SOFTCLOCK 0x2 /* timeouts */
10#define IPL_SOFTBIO 0x3 /* block I/O passdown */
11#define IPL_SOFTNET 0x4 /* protocol stacks */
12#define IPL_SOFTSERIAL 0x5 /* serial passdown */
13#define IPL_VM 0x6 /* low I/O, memory allocation */
14#define IPL_SCHED 0x7 /* medium I/O, scheduler, clock */
15#define IPL_HIGH 0x8 /* high I/O, statclock, IPIs */
16#define NIPL 9
17
18/* Interrupt sharing types. */
19#define IST_NONE 0 /* none */
20#define IST_PULSE 1 /* pulsed */
21#define IST_EDGE 2 /* edge-triggered */
22#define IST_LEVEL 3 /* level-triggered */
23
24/*
25 * Local APIC masks and software interrupt masks, in order
26 * of priority. Must not conflict with SIR_* below.
27 */
28#define LIR_IPI 55
29#define LIR_TIMER 54
30
31/*
32 * XXX These should be lowest numbered, but right now would
33 * conflict with the legacy IRQs. Their current position
34 * means that soft interrupt take priority over hardware
35 * interrupts when lowering the priority level!
36 */
37#define SIR_SERIAL 29
38#define SIR_NET 28
39#define SIR_BIO 27
40#define SIR_CLOCK 26
41#define SIR_PREEMPT 25
42#define LIR_HV 24
43#define SIR_XENIPL_HIGH 23
44#define SIR_XENIPL_SCHED 22
45#define SIR_XENIPL_VM 21
46
47#define XEN_IPL2SIR(ipl) ((ipl) + (SIR_XENIPL_VM - IPL_VM))
48
49/*
50 * Maximum # of interrupt sources per CPU. Bitmask must still fit in one quad.
51 * ioapics can theoretically produce more, but it's not likely to
52 * happen. For multiple ioapics, things can be routed to different
53 * CPUs.
54 */
55#define MAX_INTR_SOURCES 56
56#define NUM_LEGACY_IRQS 16
57
58/*
59 * Low and high boundaries between which interrupt gates will
60 * be allocated in the IDT.
61 */
62#define IDT_INTR_LOW (0x20 + NUM_LEGACY_IRQS)
63#define IDT_INTR_HIGH 0xef
64
65#ifndef XENPV
66
67#define X86_IPI_HALT 0x00000001
68#define X86_IPI_AST 0x00000002
69#define X86_IPI_GENERIC 0x00000004
70#define X86_IPI_SYNCH_FPU 0x00000008
71#define X86_IPI_MTRR 0x00000010
72#define X86_IPI_GDT 0x00000020
73#define X86_IPI_XCALL 0x00000040
74#define X86_IPI_ACPI_CPU_SLEEP 0x00000080
75#define X86_IPI_KPREEMPT 0x00000100
76
77#define X86_NIPI 9
78
79#define X86_IPI_NAMES { "halt IPI", "AST IPI", "generic IPI", \
80 "FPU synch IPI", "MTRR update IPI", \
81 "GDT update IPI", "xcall IPI", \
82 "ACPI CPU sleep IPI", "kpreempt IPI" }
83#endif /* XENPV */
84
85#define IREENT_MAGIC 0x18041969
86
87#endif /* _X86_INTRDEFS_H_ */