xref: /freebsd/sys/powerpc/powerpc/openpic.c (revision 1669d8afc64812c8d2d1d147ae1fd42ff441e1b1)
1 /*-
2  * Copyright (C) 2002 Benno Rice.
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 Benno Rice ``AS IS'' AND ANY EXPRESS OR
15  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17  * IN NO EVENT SHALL TOOLS GMBH BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
18  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
20  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
21  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
22  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
23  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24  *
25  * $FreeBSD$
26  */
27 
28 #include <sys/param.h>
29 #include <sys/systm.h>
30 #include <sys/bus.h>
31 #include <sys/conf.h>
32 #include <sys/kernel.h>
33 #include <sys/rman.h>
34 
35 #include <machine/bus.h>
36 #include <machine/intr.h>
37 #include <machine/intr_machdep.h>
38 #include <machine/md_var.h>
39 #include <machine/pio.h>
40 #include <machine/resource.h>
41 
42 #include <vm/vm.h>
43 #include <vm/pmap.h>
44 
45 #include <machine/openpicreg.h>
46 #include <machine/openpicvar.h>
47 
48 #include "pic_if.h"
49 
50 devclass_t openpic_devclass;
51 
52 /*
53  * Local routines
54  */
55 
56 static __inline uint32_t
57 openpic_read(struct openpic_softc *sc, u_int reg)
58 {
59 	return (bus_space_read_4(sc->sc_bt, sc->sc_bh, reg));
60 }
61 
62 static __inline void
63 openpic_write(struct openpic_softc *sc, u_int reg, uint32_t val)
64 {
65 	bus_space_write_4(sc->sc_bt, sc->sc_bh, reg, val);
66 }
67 
68 static __inline void
69 openpic_set_priority(struct openpic_softc *sc, int pri)
70 {
71 	u_int tpr;
72 	uint32_t x;
73 
74 	tpr = OPENPIC_PCPU_TPR(PCPU_GET(cpuid));
75 	x = openpic_read(sc, tpr);
76 	x &= ~OPENPIC_TPR_MASK;
77 	x |= pri;
78 	openpic_write(sc, tpr, x);
79 }
80 
81 int
82 openpic_attach(device_t dev)
83 {
84 	struct openpic_softc *sc;
85 	u_int     ipi, irq;
86 	u_int32_t x;
87 
88 	sc = device_get_softc(dev);
89 	sc->sc_dev = dev;
90 
91 	sc->sc_rid = 0;
92 	sc->sc_memr = bus_alloc_resource_any(dev, SYS_RES_MEMORY, &sc->sc_rid,
93 	    RF_ACTIVE);
94 
95 	if (sc->sc_memr == NULL) {
96 		device_printf(dev, "Could not alloc mem resource!\n");
97 		return (ENXIO);
98 	}
99 
100 	sc->sc_bt = rman_get_bustag(sc->sc_memr);
101 	sc->sc_bh = rman_get_bushandle(sc->sc_memr);
102 
103 	x = openpic_read(sc, OPENPIC_FEATURE);
104 	switch (x & OPENPIC_FEATURE_VERSION_MASK) {
105 	case 1:
106 		sc->sc_version = "1.0";
107 		break;
108 	case 2:
109 		sc->sc_version = "1.2";
110 		break;
111 	case 3:
112 		sc->sc_version = "1.3";
113 		break;
114 	default:
115 		sc->sc_version = "unknown";
116 		break;
117 	}
118 
119 	sc->sc_ncpu = ((x & OPENPIC_FEATURE_LAST_CPU_MASK) >>
120 	    OPENPIC_FEATURE_LAST_CPU_SHIFT) + 1;
121 	sc->sc_nirq = ((x & OPENPIC_FEATURE_LAST_IRQ_MASK) >>
122 	    OPENPIC_FEATURE_LAST_IRQ_SHIFT) + 1;
123 
124 	/*
125 	 * PSIM seems to report 1 too many IRQs
126 	 */
127 	if (sc->sc_psim)
128 		sc->sc_nirq--;
129 
130 	if (bootverbose)
131 		device_printf(dev,
132 		    "Version %s, supports %d CPUs and %d irqs\n",
133 		    sc->sc_version, sc->sc_ncpu, sc->sc_nirq);
134 
135 	/* Reset and disable all interrupts. */
136 	for (irq = 0; irq < sc->sc_nirq; irq++) {
137 		x = irq;                /* irq == vector. */
138 		x |= OPENPIC_IMASK;
139 		x |= OPENPIC_POLARITY_POSITIVE;
140 		x |= OPENPIC_SENSE_LEVEL;
141 		x |= 8 << OPENPIC_PRIORITY_SHIFT;
142 		openpic_write(sc, OPENPIC_SRC_VECTOR(irq), x);
143 	}
144 
145 	/* Reset and disable all IPIs. */
146 	for (ipi = 0; ipi < 4; ipi++) {
147 		x = sc->sc_nirq + ipi;
148 		x |= OPENPIC_IMASK;
149 		x |= 15 << OPENPIC_PRIORITY_SHIFT;
150 		openpic_write(sc, OPENPIC_IPI_VECTOR(ipi), x);
151 	}
152 
153 	openpic_set_priority(sc, 15);
154 
155 	/* we don't need 8259 passthrough mode */
156 	x = openpic_read(sc, OPENPIC_CONFIG);
157 	x |= OPENPIC_CONFIG_8259_PASSTHRU_DISABLE;
158 	openpic_write(sc, OPENPIC_CONFIG, x);
159 
160 	/* send all interrupts to cpu 0 */
161 	for (irq = 0; irq < sc->sc_nirq; irq++)
162 		openpic_write(sc, OPENPIC_IDEST(irq), 1 << 0);
163 
164 	/* XXX set spurious intr vector */
165 
166 	openpic_set_priority(sc, 0);
167 
168 	/* clear all pending interrupts */
169 	for (irq = 0; irq < sc->sc_nirq; irq++) {
170 		(void)openpic_read(sc, OPENPIC_PCPU_IACK(PCPU_GET(cpuid)));
171 		openpic_write(sc, OPENPIC_PCPU_EOI(PCPU_GET(cpuid)), 0);
172 	}
173 
174 	powerpc_register_pic(dev, sc->sc_nirq);
175 
176 	return (0);
177 }
178 
179 /*
180  * PIC I/F methods
181  */
182 
183 void
184 openpic_dispatch(device_t dev, struct trapframe *tf)
185 {
186 	struct openpic_softc *sc;
187 	u_int vector;
188 
189 	sc = device_get_softc(dev);
190 	while (1) {
191 		vector = openpic_read(sc, OPENPIC_PCPU_IACK(PCPU_GET(cpuid)));
192 		vector &= OPENPIC_VECTOR_MASK;
193 		if (vector == 255)
194 			break;
195 		powerpc_dispatch_intr(vector, tf);
196 	}
197 }
198 
199 void
200 openpic_enable(device_t dev, u_int irq, u_int vector)
201 {
202 	struct openpic_softc *sc;
203 	uint32_t x;
204 
205 	sc = device_get_softc(dev);
206 	if (irq < sc->sc_nirq) {
207 		x = openpic_read(sc, OPENPIC_SRC_VECTOR(irq));
208 		x &= ~(OPENPIC_IMASK | OPENPIC_VECTOR_MASK);
209 		x |= vector;
210 		openpic_write(sc, OPENPIC_SRC_VECTOR(irq), x);
211 	} else {
212 		x = openpic_read(sc, OPENPIC_IPI_VECTOR(0));
213 		x &= ~(OPENPIC_IMASK | OPENPIC_VECTOR_MASK);
214 		x |= vector;
215 		openpic_write(sc, OPENPIC_IPI_VECTOR(0), x);
216 	}
217 }
218 
219 void
220 openpic_eoi(device_t dev, u_int irq __unused)
221 {
222 	struct openpic_softc *sc;
223 
224 	sc = device_get_softc(dev);
225 	openpic_write(sc, OPENPIC_PCPU_EOI(PCPU_GET(cpuid)), 0);
226 }
227 
228 void
229 openpic_ipi(device_t dev, u_int cpu)
230 {
231 	struct openpic_softc *sc;
232 
233 	sc = device_get_softc(dev);
234 	openpic_write(sc, OPENPIC_PCPU_IPI_DISPATCH(PCPU_GET(cpuid), 0),
235 	    1u << cpu);
236 }
237 
238 void
239 openpic_mask(device_t dev, u_int irq)
240 {
241 	struct openpic_softc *sc;
242 	uint32_t x;
243 
244 	sc = device_get_softc(dev);
245 	if (irq < sc->sc_nirq) {
246 		x = openpic_read(sc, OPENPIC_SRC_VECTOR(irq));
247 		x |= OPENPIC_IMASK;
248 		openpic_write(sc, OPENPIC_SRC_VECTOR(irq), x);
249 	} else {
250 		x = openpic_read(sc, OPENPIC_IPI_VECTOR(0));
251 		x |= OPENPIC_IMASK;
252 		openpic_write(sc, OPENPIC_IPI_VECTOR(0), x);
253 	}
254 	openpic_write(sc, OPENPIC_PCPU_EOI(PCPU_GET(cpuid)), 0);
255 }
256 
257 void
258 openpic_unmask(device_t dev, u_int irq)
259 {
260 	struct openpic_softc *sc;
261 	uint32_t x;
262 
263 	sc = device_get_softc(dev);
264 	if (irq < sc->sc_nirq) {
265 		x = openpic_read(sc, OPENPIC_SRC_VECTOR(irq));
266 		x &= ~OPENPIC_IMASK;
267 		openpic_write(sc, OPENPIC_SRC_VECTOR(irq), x);
268 	} else {
269 		x = openpic_read(sc, OPENPIC_IPI_VECTOR(0));
270 		x &= ~OPENPIC_IMASK;
271 		openpic_write(sc, OPENPIC_IPI_VECTOR(0), x);
272 	}
273 }
274