Deleted Added
full compact
intr_machdep.h (280260) intr_machdep.h (282274)
1/*-
2 * Copyright (c) 2003 John Baldwin <jhb@FreeBSD.org>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 *
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
1/*-
2 * Copyright (c) 2003 John Baldwin <jhb@FreeBSD.org>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 *
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 * $FreeBSD: head/sys/i386/include/intr_machdep.h 280260 2015-03-19 13:57:47Z kib $
26 * $FreeBSD: head/sys/i386/include/intr_machdep.h 282274 2015-04-30 15:48:48Z jhb $
27 */
28
29#ifndef __MACHINE_INTR_MACHDEP_H__
30#define __MACHINE_INTR_MACHDEP_H__
31
32#ifdef _KERNEL
33
34/*
35 * The maximum number of I/O interrupts we allow. This number is rather
36 * arbitrary as it is just the maximum IRQ resource value. The interrupt
37 * source for a given IRQ maps that I/O interrupt to device interrupt
38 * source whether it be a pin on an interrupt controller or an MSI interrupt.
39 * The 16 ISA IRQs are assigned fixed IDT vectors, but all other device
40 * interrupts allocate IDT vectors on demand. Currently we have 191 IDT
41 * vectors available for device interrupts. On many systems with I/O APICs,
42 * a lot of the IRQs are not used, so this number can be much larger than
43 * 191 and still be safe since only interrupt sources in actual use will
44 * allocate IDT vectors.
45 *
46 * The first 255 IRQs (0 - 254) are reserved for ISA IRQs and PCI intline IRQs.
47 * IRQ values from 256 to 767 are used by MSI. When running under the Xen
48 * Hypervisor, IRQ values from 768 to 4863 are available for binding to
49 * event channel events. We leave 255 unused to avoid confusion since 255 is
50 * used in PCI to indicate an invalid IRQ.
51 */
52#define NUM_MSI_INTS 512
53#define FIRST_MSI_INT 256
54#ifdef XENHVM
55#include <xen/xen-os.h>
56#define NUM_EVTCHN_INTS NR_EVENT_CHANNELS
57#define FIRST_EVTCHN_INT \
58 (FIRST_MSI_INT + NUM_MSI_INTS)
59#define LAST_EVTCHN_INT \
60 (FIRST_EVTCHN_INT + NUM_EVTCHN_INTS - 1)
27 */
28
29#ifndef __MACHINE_INTR_MACHDEP_H__
30#define __MACHINE_INTR_MACHDEP_H__
31
32#ifdef _KERNEL
33
34/*
35 * The maximum number of I/O interrupts we allow. This number is rather
36 * arbitrary as it is just the maximum IRQ resource value. The interrupt
37 * source for a given IRQ maps that I/O interrupt to device interrupt
38 * source whether it be a pin on an interrupt controller or an MSI interrupt.
39 * The 16 ISA IRQs are assigned fixed IDT vectors, but all other device
40 * interrupts allocate IDT vectors on demand. Currently we have 191 IDT
41 * vectors available for device interrupts. On many systems with I/O APICs,
42 * a lot of the IRQs are not used, so this number can be much larger than
43 * 191 and still be safe since only interrupt sources in actual use will
44 * allocate IDT vectors.
45 *
46 * The first 255 IRQs (0 - 254) are reserved for ISA IRQs and PCI intline IRQs.
47 * IRQ values from 256 to 767 are used by MSI. When running under the Xen
48 * Hypervisor, IRQ values from 768 to 4863 are available for binding to
49 * event channel events. We leave 255 unused to avoid confusion since 255 is
50 * used in PCI to indicate an invalid IRQ.
51 */
52#define NUM_MSI_INTS 512
53#define FIRST_MSI_INT 256
54#ifdef XENHVM
55#include <xen/xen-os.h>
56#define NUM_EVTCHN_INTS NR_EVENT_CHANNELS
57#define FIRST_EVTCHN_INT \
58 (FIRST_MSI_INT + NUM_MSI_INTS)
59#define LAST_EVTCHN_INT \
60 (FIRST_EVTCHN_INT + NUM_EVTCHN_INTS - 1)
61#elif defined(XEN)
62#include <xen/xen-os.h>
63#define NUM_EVTCHN_INTS NR_EVENT_CHANNELS
64#define FIRST_EVTCHN_INT 0
65#define LAST_EVTCHN_INT \
66 (FIRST_EVTCHN_INT + NUM_EVTCHN_INTS - 1)
67#else /* !XEN && !XENHVM */
61#else /* !XENHVM */
68#define NUM_EVTCHN_INTS 0
69#endif
70#define NUM_IO_INTS (FIRST_MSI_INT + NUM_MSI_INTS + NUM_EVTCHN_INTS)
71
72/*
73 * Default base address for MSI messages on x86 platforms.
74 */
75#define MSI_INTEL_ADDR_BASE 0xfee00000
76
77/*
78 * - 1 ??? dummy counter.
79 * - 2 counters for each I/O interrupt.
80 * - 1 counter for each CPU for lapic timer.
81 * - 9 counters for each CPU for IPI counters for SMP.
82 */
83#ifdef SMP
84#define INTRCNT_COUNT (1 + NUM_IO_INTS * 2 + (1 + 9) * MAXCPU)
85#else
86#define INTRCNT_COUNT (1 + NUM_IO_INTS * 2 + 1)
87#endif
88
89#ifndef LOCORE
90
91typedef void inthand_t(u_int cs, u_int ef, u_int esp, u_int ss);
92
93#define IDTVEC(name) __CONCAT(X,name)
94
95struct intsrc;
96
97/*
98 * Methods that a PIC provides to mask/unmask a given interrupt source,
99 * "turn on" the interrupt on the CPU side by setting up an IDT entry, and
100 * return the vector associated with this source.
101 */
102struct pic {
103 void (*pic_enable_source)(struct intsrc *);
104 void (*pic_disable_source)(struct intsrc *, int);
105 void (*pic_eoi_source)(struct intsrc *);
106 void (*pic_enable_intr)(struct intsrc *);
107 void (*pic_disable_intr)(struct intsrc *);
108 int (*pic_vector)(struct intsrc *);
109 int (*pic_source_pending)(struct intsrc *);
110 void (*pic_suspend)(struct pic *);
111 void (*pic_resume)(struct pic *, bool suspend_cancelled);
112 int (*pic_config_intr)(struct intsrc *, enum intr_trigger,
113 enum intr_polarity);
114 int (*pic_assign_cpu)(struct intsrc *, u_int apic_id);
115 void (*pic_reprogram_pin)(struct intsrc *);
116 TAILQ_ENTRY(pic) pics;
117};
118
119/* Flags for pic_disable_source() */
120enum {
121 PIC_EOI,
122 PIC_NO_EOI,
123};
124
125/*
126 * An interrupt source. The upper-layer code uses the PIC methods to
127 * control a given source. The lower-layer PIC drivers can store additional
128 * private data in a given interrupt source such as an interrupt pin number
129 * or an I/O APIC pointer.
130 */
131struct intsrc {
132 struct pic *is_pic;
133 struct intr_event *is_event;
134 u_long *is_count;
135 u_long *is_straycount;
136 u_int is_index;
137 u_int is_handlers;
138};
139
140struct trapframe;
141
142extern struct mtx icu_lock;
143extern int elcr_found;
144
145#ifndef DEV_ATPIC
146void atpic_reset(void);
147#endif
148/* XXX: The elcr_* prototypes probably belong somewhere else. */
149int elcr_probe(void);
150enum intr_trigger elcr_read_trigger(u_int irq);
151void elcr_resume(void);
152void elcr_write_trigger(u_int irq, enum intr_trigger trigger);
153#ifdef SMP
154void intr_add_cpu(u_int cpu);
155#endif
156int intr_add_handler(const char *name, int vector, driver_filter_t filter,
157 driver_intr_t handler, void *arg, enum intr_type flags, void **cookiep);
158#ifdef SMP
159int intr_bind(u_int vector, u_char cpu);
160#endif
161int intr_config_intr(int vector, enum intr_trigger trig,
162 enum intr_polarity pol);
163int intr_describe(u_int vector, void *ih, const char *descr);
164void intr_execute_handlers(struct intsrc *isrc, struct trapframe *frame);
165u_int intr_next_cpu(void);
166struct intsrc *intr_lookup_source(int vector);
167int intr_register_pic(struct pic *pic);
168int intr_register_source(struct intsrc *isrc);
169int intr_remove_handler(void *cookie);
170void intr_resume(bool suspend_cancelled);
171void intr_suspend(void);
172void intr_reprogram(void);
173void intrcnt_add(const char *name, u_long **countp);
174void nexus_add_irq(u_long irq);
175int msi_alloc(device_t dev, int count, int maxcount, int *irqs);
176void msi_init(void);
177int msi_map(int irq, uint64_t *addr, uint32_t *data);
178int msi_release(int* irqs, int count);
179int msix_alloc(device_t dev, int *irq);
180int msix_release(int irq);
181
182#endif /* !LOCORE */
183#endif /* _KERNEL */
184#endif /* !__MACHINE_INTR_MACHDEP_H__ */
62#define NUM_EVTCHN_INTS 0
63#endif
64#define NUM_IO_INTS (FIRST_MSI_INT + NUM_MSI_INTS + NUM_EVTCHN_INTS)
65
66/*
67 * Default base address for MSI messages on x86 platforms.
68 */
69#define MSI_INTEL_ADDR_BASE 0xfee00000
70
71/*
72 * - 1 ??? dummy counter.
73 * - 2 counters for each I/O interrupt.
74 * - 1 counter for each CPU for lapic timer.
75 * - 9 counters for each CPU for IPI counters for SMP.
76 */
77#ifdef SMP
78#define INTRCNT_COUNT (1 + NUM_IO_INTS * 2 + (1 + 9) * MAXCPU)
79#else
80#define INTRCNT_COUNT (1 + NUM_IO_INTS * 2 + 1)
81#endif
82
83#ifndef LOCORE
84
85typedef void inthand_t(u_int cs, u_int ef, u_int esp, u_int ss);
86
87#define IDTVEC(name) __CONCAT(X,name)
88
89struct intsrc;
90
91/*
92 * Methods that a PIC provides to mask/unmask a given interrupt source,
93 * "turn on" the interrupt on the CPU side by setting up an IDT entry, and
94 * return the vector associated with this source.
95 */
96struct pic {
97 void (*pic_enable_source)(struct intsrc *);
98 void (*pic_disable_source)(struct intsrc *, int);
99 void (*pic_eoi_source)(struct intsrc *);
100 void (*pic_enable_intr)(struct intsrc *);
101 void (*pic_disable_intr)(struct intsrc *);
102 int (*pic_vector)(struct intsrc *);
103 int (*pic_source_pending)(struct intsrc *);
104 void (*pic_suspend)(struct pic *);
105 void (*pic_resume)(struct pic *, bool suspend_cancelled);
106 int (*pic_config_intr)(struct intsrc *, enum intr_trigger,
107 enum intr_polarity);
108 int (*pic_assign_cpu)(struct intsrc *, u_int apic_id);
109 void (*pic_reprogram_pin)(struct intsrc *);
110 TAILQ_ENTRY(pic) pics;
111};
112
113/* Flags for pic_disable_source() */
114enum {
115 PIC_EOI,
116 PIC_NO_EOI,
117};
118
119/*
120 * An interrupt source. The upper-layer code uses the PIC methods to
121 * control a given source. The lower-layer PIC drivers can store additional
122 * private data in a given interrupt source such as an interrupt pin number
123 * or an I/O APIC pointer.
124 */
125struct intsrc {
126 struct pic *is_pic;
127 struct intr_event *is_event;
128 u_long *is_count;
129 u_long *is_straycount;
130 u_int is_index;
131 u_int is_handlers;
132};
133
134struct trapframe;
135
136extern struct mtx icu_lock;
137extern int elcr_found;
138
139#ifndef DEV_ATPIC
140void atpic_reset(void);
141#endif
142/* XXX: The elcr_* prototypes probably belong somewhere else. */
143int elcr_probe(void);
144enum intr_trigger elcr_read_trigger(u_int irq);
145void elcr_resume(void);
146void elcr_write_trigger(u_int irq, enum intr_trigger trigger);
147#ifdef SMP
148void intr_add_cpu(u_int cpu);
149#endif
150int intr_add_handler(const char *name, int vector, driver_filter_t filter,
151 driver_intr_t handler, void *arg, enum intr_type flags, void **cookiep);
152#ifdef SMP
153int intr_bind(u_int vector, u_char cpu);
154#endif
155int intr_config_intr(int vector, enum intr_trigger trig,
156 enum intr_polarity pol);
157int intr_describe(u_int vector, void *ih, const char *descr);
158void intr_execute_handlers(struct intsrc *isrc, struct trapframe *frame);
159u_int intr_next_cpu(void);
160struct intsrc *intr_lookup_source(int vector);
161int intr_register_pic(struct pic *pic);
162int intr_register_source(struct intsrc *isrc);
163int intr_remove_handler(void *cookie);
164void intr_resume(bool suspend_cancelled);
165void intr_suspend(void);
166void intr_reprogram(void);
167void intrcnt_add(const char *name, u_long **countp);
168void nexus_add_irq(u_long irq);
169int msi_alloc(device_t dev, int count, int maxcount, int *irqs);
170void msi_init(void);
171int msi_map(int irq, uint64_t *addr, uint32_t *data);
172int msi_release(int* irqs, int count);
173int msix_alloc(device_t dev, int *irq);
174int msix_release(int irq);
175
176#endif /* !LOCORE */
177#endif /* _KERNEL */
178#endif /* !__MACHINE_INTR_MACHDEP_H__ */