xref: /freebsd/sys/powerpc/powermac/cpcht.c (revision df21a004be237a1dccd03c7b47254625eea62fa9)
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause
3  *
4  * Copyright (C) 2008-2010 Nathan Whitehorn
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19  * IN NO EVENT SHALL TOOLS GMBH BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
20  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
21  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
22  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
23  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
24  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
25  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26  */
27 
28 #include <sys/param.h>
29 #include <sys/systm.h>
30 #include <sys/module.h>
31 #include <sys/bus.h>
32 #include <sys/conf.h>
33 #include <sys/kernel.h>
34 #include <sys/lock.h>
35 #include <sys/mutex.h>
36 #include <sys/pciio.h>
37 #include <sys/rman.h>
38 
39 #include <dev/ofw/openfirm.h>
40 #include <dev/ofw/ofw_pci.h>
41 
42 #include <dev/pci/pcivar.h>
43 #include <dev/pci/pcireg.h>
44 
45 #include <machine/bus.h>
46 #include <machine/intr_machdep.h>
47 #include <machine/md_var.h>
48 #include <machine/openpicreg.h>
49 #include <machine/openpicvar.h>
50 #include <machine/pio.h>
51 #include <machine/resource.h>
52 
53 #include <dev/ofw/ofw_bus.h>
54 #include <dev/ofw/ofw_bus_subr.h>
55 #include <dev/ofw/ofwpci.h>
56 
57 #include <vm/vm.h>
58 #include <vm/pmap.h>
59 
60 #include "pcib_if.h"
61 #include <dev/pci/pcib_private.h>
62 #include "pic_if.h"
63 
64 /*
65  * IBM CPC9X5 Hypertransport Device interface.
66  */
67 static int		cpcht_probe(device_t);
68 static int		cpcht_attach(device_t);
69 
70 static void		cpcht_configure_htbridge(device_t, phandle_t);
71 
72 /*
73  * pcib interface.
74  */
75 static u_int32_t	cpcht_read_config(device_t, u_int, u_int, u_int,
76 			    u_int, int);
77 static void		cpcht_write_config(device_t, u_int, u_int, u_int,
78 			    u_int, u_int32_t, int);
79 static int		cpcht_route_interrupt(device_t, device_t, int);
80 static int		cpcht_alloc_msi(device_t dev, device_t child,
81 			    int count, int maxcount, int *irqs);
82 static int		cpcht_release_msi(device_t dev, device_t child,
83 			    int count, int *irqs);
84 static int		cpcht_alloc_msix(device_t dev, device_t child,
85 			    int *irq);
86 static int		cpcht_release_msix(device_t dev, device_t child,
87 			    int irq);
88 static int		cpcht_map_msi(device_t dev, device_t child,
89 			    int irq, uint64_t *addr, uint32_t *data);
90 
91 /*
92  * Driver methods.
93  */
94 static device_method_t	cpcht_methods[] = {
95 	/* Device interface */
96 	DEVMETHOD(device_probe,		cpcht_probe),
97 	DEVMETHOD(device_attach,	cpcht_attach),
98 
99 	/* pcib interface */
100 	DEVMETHOD(pcib_read_config,	cpcht_read_config),
101 	DEVMETHOD(pcib_write_config,	cpcht_write_config),
102 	DEVMETHOD(pcib_route_interrupt,	cpcht_route_interrupt),
103 	DEVMETHOD(pcib_alloc_msi,	cpcht_alloc_msi),
104 	DEVMETHOD(pcib_release_msi,	cpcht_release_msi),
105 	DEVMETHOD(pcib_alloc_msix,	cpcht_alloc_msix),
106 	DEVMETHOD(pcib_release_msix,	cpcht_release_msix),
107 	DEVMETHOD(pcib_map_msi,		cpcht_map_msi),
108 	DEVMETHOD(pcib_request_feature,	pcib_request_feature_allow),
109 
110 	DEVMETHOD_END
111 };
112 
113 struct cpcht_irq {
114 	enum {
115 	    IRQ_NONE, IRQ_HT, IRQ_MSI, IRQ_INTERNAL
116 	}		irq_type;
117 
118 	int		ht_source;
119 
120 	vm_offset_t	ht_base;
121 	vm_offset_t	apple_eoi;
122 	uint32_t	eoi_data;
123 	int		edge;
124 };
125 
126 static struct cpcht_irq *cpcht_irqmap = NULL;
127 uint32_t cpcht_msipic = 0;
128 
129 struct cpcht_softc {
130 	struct ofw_pci_softc	pci_sc;
131 	vm_offset_t		sc_data;
132 	uint64_t		sc_populated_slots;
133 
134 	struct cpcht_irq	htirq_map[128];
135 	struct mtx		htirq_mtx;
136 };
137 
138 DEFINE_CLASS_1(pcib, cpcht_driver, cpcht_methods, sizeof(struct cpcht_softc),
139     ofw_pcib_driver);
140 EARLY_DRIVER_MODULE(cpcht, ofwbus, cpcht_driver, 0, 0, BUS_PASS_BUS);
141 
142 #define CPCHT_IOPORT_BASE	0xf4000000UL /* Hardwired */
143 #define CPCHT_IOPORT_SIZE	0x00400000UL
144 
145 #define HTAPIC_REQUEST_EOI	0x20
146 #define HTAPIC_TRIGGER_LEVEL	0x02
147 #define HTAPIC_MASK		0x01
148 
149 static int
150 cpcht_probe(device_t dev)
151 {
152 	const char	*type, *compatible;
153 
154 	type = ofw_bus_get_type(dev);
155 	compatible = ofw_bus_get_compat(dev);
156 
157 	if (type == NULL || compatible == NULL)
158 		return (ENXIO);
159 
160 	if (strcmp(type, "ht") != 0)
161 		return (ENXIO);
162 
163 	if (strcmp(compatible, "u3-ht") != 0)
164 		return (ENXIO);
165 
166 	device_set_desc(dev, "IBM CPC9X5 HyperTransport Tunnel");
167 	return (0);
168 }
169 
170 static int
171 cpcht_attach(device_t dev)
172 {
173 	struct		cpcht_softc *sc;
174 	phandle_t	node, child;
175 	u_int32_t	reg[3];
176 	int		i;
177 
178 	node = ofw_bus_get_node(dev);
179 	sc = device_get_softc(dev);
180 
181 	if (OF_getencprop(node, "reg", reg, sizeof(reg)) < 12)
182 		return (ENXIO);
183 
184 	if (OF_getproplen(node, "ranges") <= 0)
185 		sc->pci_sc.sc_quirks = OFW_PCI_QUIRK_RANGES_ON_CHILDREN;
186 	sc->sc_populated_slots = 0;
187 	sc->sc_data = (vm_offset_t)pmap_mapdev(reg[1], reg[2]);
188 
189 	/*
190 	 * Set up the resource manager and the HT->MPIC mapping. For cpcht,
191 	 * the ranges are properties of the child bridges, and this is also
192 	 * where we get the HT interrupts properties.
193 	 */
194 
195 #if 0
196 	/* I/O port mappings are usually not in the device tree */
197 	rman_manage_region(&sc->pci_sc.sc_io_rman, 0, CPCHT_IOPORT_SIZE - 1);
198 #endif
199 
200 	bzero(sc->htirq_map, sizeof(sc->htirq_map));
201 	mtx_init(&sc->htirq_mtx, "cpcht irq", NULL, MTX_DEF);
202 	for (i = 0; i < 8; i++)
203 		sc->htirq_map[i].irq_type = IRQ_INTERNAL;
204 	for (child = OF_child(node); child != 0; child = OF_peer(child))
205 		cpcht_configure_htbridge(dev, child);
206 
207 	/* Now make the mapping table available to the MPIC */
208 	cpcht_irqmap = sc->htirq_map;
209 
210 	return (ofw_pcib_attach(dev));
211 }
212 
213 static void
214 cpcht_configure_htbridge(device_t dev, phandle_t child)
215 {
216 	struct cpcht_softc *sc;
217 	struct ofw_pci_register pcir;
218 	int ptr, nextptr;
219 	uint32_t vend, val;
220 	int i, nirq, irq;
221 	u_int b, f, s;
222 
223 	sc = device_get_softc(dev);
224 	if (OF_getencprop(child, "reg", (pcell_t *)&pcir, sizeof(pcir)) == -1)
225 		return;
226 
227 	b = OFW_PCI_PHYS_HI_BUS(pcir.phys_hi);
228 	s = OFW_PCI_PHYS_HI_DEVICE(pcir.phys_hi);
229 	f = OFW_PCI_PHYS_HI_FUNCTION(pcir.phys_hi);
230 
231 	/*
232 	 * Mark this slot is populated. The remote south bridge does
233 	 * not like us talking to unpopulated slots on the root bus.
234 	 */
235 	sc->sc_populated_slots |= (1 << s);
236 
237 	/*
238 	 * Next build up any HT->MPIC mappings for this sub-bus. One would
239 	 * naively hope that enabling, disabling, and EOIing interrupts would
240 	 * cause the appropriate HT bus transactions to that effect. This is
241 	 * not the case.
242 	 *
243 	 * Instead, we have to muck about on the HT peer's root PCI bridges,
244 	 * figure out what interrupts they send, enable them, and cache
245 	 * the location of their WaitForEOI registers so that we can
246 	 * send EOIs later.
247 	 */
248 
249 	/* All the devices we are interested in have caps */
250 	if (!(PCIB_READ_CONFIG(dev, b, s, f, PCIR_STATUS, 2)
251 	    & PCIM_STATUS_CAPPRESENT))
252 		return;
253 
254 	nextptr = PCIB_READ_CONFIG(dev, b, s, f, PCIR_CAP_PTR, 1);
255 	while (nextptr != 0) {
256 		ptr = nextptr;
257 		nextptr = PCIB_READ_CONFIG(dev, b, s, f,
258 		    ptr + PCICAP_NEXTPTR, 1);
259 
260 		/* Find the HT IRQ capabilities */
261 		if (PCIB_READ_CONFIG(dev, b, s, f,
262 		    ptr + PCICAP_ID, 1) != PCIY_HT)
263 			continue;
264 
265 		val = PCIB_READ_CONFIG(dev, b, s, f, ptr + PCIR_HT_COMMAND, 2);
266 		if ((val & PCIM_HTCMD_CAP_MASK) != PCIM_HTCAP_INTERRUPT)
267 			continue;
268 
269 		/* Ask for the IRQ count */
270 		PCIB_WRITE_CONFIG(dev, b, s, f, ptr + PCIR_HT_COMMAND, 0x1, 1);
271 		nirq = PCIB_READ_CONFIG(dev, b, s, f, ptr + 4, 4);
272 		nirq = ((nirq >> 16) & 0xff) + 1;
273 
274 		device_printf(dev, "%d HT IRQs on device %d.%d\n", nirq, s, f);
275 
276 		for (i = 0; i < nirq; i++) {
277 			PCIB_WRITE_CONFIG(dev, b, s, f,
278 			     ptr + PCIR_HT_COMMAND, 0x10 + (i << 1), 1);
279 			irq = PCIB_READ_CONFIG(dev, b, s, f, ptr + 4, 4);
280 
281 			/*
282 			 * Mask this interrupt for now.
283 			 */
284 			PCIB_WRITE_CONFIG(dev, b, s, f, ptr + 4,
285 			    irq | HTAPIC_MASK, 4);
286 			irq = (irq >> 16) & 0xff;
287 
288 			sc->htirq_map[irq].irq_type = IRQ_HT;
289 			sc->htirq_map[irq].ht_source = i;
290 			sc->htirq_map[irq].ht_base = sc->sc_data +
291 			    (((((s & 0x1f) << 3) | (f & 0x07)) << 8) | (ptr));
292 
293 			PCIB_WRITE_CONFIG(dev, b, s, f,
294 			     ptr + PCIR_HT_COMMAND, 0x11 + (i << 1), 1);
295 			sc->htirq_map[irq].eoi_data =
296 			    PCIB_READ_CONFIG(dev, b, s, f, ptr + 4, 4) |
297 			    0x80000000;
298 
299 			/*
300 			 * Apple uses a non-compliant IO/APIC that differs
301 			 * in how we signal EOIs. Check if this device was
302 			 * made by Apple, and act accordingly.
303 			 */
304 			vend = PCIB_READ_CONFIG(dev, b, s, f,
305 			    PCIR_DEVVENDOR, 4);
306 			if ((vend & 0xffff) == 0x106b)
307 				sc->htirq_map[irq].apple_eoi =
308 				 (sc->htirq_map[irq].ht_base - ptr) + 0x60;
309 		}
310 	}
311 }
312 
313 static u_int32_t
314 cpcht_read_config(device_t dev, u_int bus, u_int slot, u_int func, u_int reg,
315     int width)
316 {
317 	struct		cpcht_softc *sc;
318 	vm_offset_t	caoff;
319 
320 	sc = device_get_softc(dev);
321 	caoff = sc->sc_data +
322 		(((((slot & 0x1f) << 3) | (func & 0x07)) << 8) | reg);
323 
324 	if (bus == 0 && (!(sc->sc_populated_slots & (1 << slot)) || func > 0))
325 		return (0xffffffff);
326 
327 	if (bus > 0)
328 		caoff += 0x01000000UL + (bus << 16);
329 
330 	switch (width) {
331 	case 1:
332 		return (in8rb(caoff));
333 		break;
334 	case 2:
335 		return (in16rb(caoff));
336 		break;
337 	case 4:
338 		return (in32rb(caoff));
339 		break;
340 	}
341 
342 	return (0xffffffff);
343 }
344 
345 static void
346 cpcht_write_config(device_t dev, u_int bus, u_int slot, u_int func,
347     u_int reg, u_int32_t val, int width)
348 {
349 	struct		cpcht_softc *sc;
350 	vm_offset_t	caoff;
351 
352 	sc = device_get_softc(dev);
353 	caoff = sc->sc_data +
354 		(((((slot & 0x1f) << 3) | (func & 0x07)) << 8) | reg);
355 
356 	if (bus == 0 && (!(sc->sc_populated_slots & (1 << slot)) || func > 0))
357 		return;
358 
359 	if (bus > 0)
360 		caoff += 0x01000000UL + (bus << 16);
361 
362 	switch (width) {
363 	case 1:
364 		out8rb(caoff, val);
365 		break;
366 	case 2:
367 		out16rb(caoff, val);
368 		break;
369 	case 4:
370 		out32rb(caoff, val);
371 		break;
372 	}
373 }
374 
375 static int
376 cpcht_route_interrupt(device_t bus, device_t dev, int pin)
377 {
378 	return (pin);
379 }
380 
381 static int
382 cpcht_alloc_msi(device_t dev, device_t child, int count, int maxcount,
383     int *irqs)
384 {
385 	struct cpcht_softc *sc;
386 	int i, j;
387 
388 	sc = device_get_softc(dev);
389 	j = 0;
390 
391 	/* Bail if no MSI PIC yet */
392 	if (cpcht_msipic == 0)
393 		return (ENXIO);
394 
395 	mtx_lock(&sc->htirq_mtx);
396 	for (i = 8; i < 124 - count; i++) {
397 		for (j = 0; j < count; j++) {
398 			if (sc->htirq_map[i+j].irq_type != IRQ_NONE)
399 				break;
400 		}
401 		if (j == count)
402 			break;
403 
404 		i += j; /* We know there isn't a large enough run */
405 	}
406 
407 	if (j != count) {
408 		mtx_unlock(&sc->htirq_mtx);
409 		return (ENXIO);
410 	}
411 
412 	for (j = 0; j < count; j++) {
413 		irqs[j] = MAP_IRQ(cpcht_msipic, i+j);
414 		sc->htirq_map[i+j].irq_type = IRQ_MSI;
415 	}
416 	mtx_unlock(&sc->htirq_mtx);
417 
418 	return (0);
419 }
420 
421 static int
422 cpcht_release_msi(device_t dev, device_t child, int count, int *irqs)
423 {
424 	struct cpcht_softc *sc;
425 	int i;
426 
427 	sc = device_get_softc(dev);
428 
429 	mtx_lock(&sc->htirq_mtx);
430 	for (i = 0; i < count; i++)
431 		sc->htirq_map[irqs[i] & 0xff].irq_type = IRQ_NONE;
432 	mtx_unlock(&sc->htirq_mtx);
433 
434 	return (0);
435 }
436 
437 static int
438 cpcht_alloc_msix(device_t dev, device_t child, int *irq)
439 {
440 	struct cpcht_softc *sc;
441 	int i;
442 
443 	sc = device_get_softc(dev);
444 
445 	/* Bail if no MSI PIC yet */
446 	if (cpcht_msipic == 0)
447 		return (ENXIO);
448 
449 	mtx_lock(&sc->htirq_mtx);
450 	for (i = 8; i < 124; i++) {
451 		if (sc->htirq_map[i].irq_type == IRQ_NONE) {
452 			sc->htirq_map[i].irq_type = IRQ_MSI;
453 			*irq = MAP_IRQ(cpcht_msipic, i);
454 
455 			mtx_unlock(&sc->htirq_mtx);
456 			return (0);
457 		}
458 	}
459 	mtx_unlock(&sc->htirq_mtx);
460 
461 	return (ENXIO);
462 }
463 
464 static int
465 cpcht_release_msix(device_t dev, device_t child, int irq)
466 {
467 	struct cpcht_softc *sc;
468 
469 	sc = device_get_softc(dev);
470 
471 	mtx_lock(&sc->htirq_mtx);
472 	sc->htirq_map[irq & 0xff].irq_type = IRQ_NONE;
473 	mtx_unlock(&sc->htirq_mtx);
474 
475 	return (0);
476 }
477 
478 static int
479 cpcht_map_msi(device_t dev, device_t child, int irq, uint64_t *addr,
480     uint32_t *data)
481 {
482 	device_t pcib;
483 	struct pci_devinfo *dinfo;
484 	struct pcicfg_ht *ht = NULL;
485 
486 	for (pcib = child; pcib != dev; pcib =
487 	    device_get_parent(device_get_parent(pcib))) {
488 		dinfo = device_get_ivars(pcib);
489 		ht = &dinfo->cfg.ht;
490 
491 		if (ht == NULL)
492 			continue;
493 	}
494 
495 	if (ht == NULL)
496 		return (ENXIO);
497 
498 	*addr = ht->ht_msiaddr;
499 	*data = irq & 0xff;
500 
501 	return (0);
502 }
503 
504 /*
505  * Driver for the integrated MPIC on U3/U4 (CPC925/CPC945)
506  */
507 
508 static int	openpic_cpcht_probe(device_t);
509 static int	openpic_cpcht_attach(device_t);
510 static void	openpic_cpcht_config(device_t, u_int irq,
511 		    enum intr_trigger trig, enum intr_polarity pol);
512 static void	openpic_cpcht_enable(device_t, u_int irq, u_int vector,
513 		    void **priv);
514 static void	openpic_cpcht_unmask(device_t, u_int irq, void *priv);
515 static void	openpic_cpcht_eoi(device_t, u_int irq, void *priv);
516 
517 static device_method_t  openpic_cpcht_methods[] = {
518 	/* Device interface */
519 	DEVMETHOD(device_probe,		openpic_cpcht_probe),
520 	DEVMETHOD(device_attach,	openpic_cpcht_attach),
521 
522 	/* PIC interface */
523 	DEVMETHOD(pic_config,		openpic_cpcht_config),
524 	DEVMETHOD(pic_enable,		openpic_cpcht_enable),
525 	DEVMETHOD(pic_eoi,		openpic_cpcht_eoi),
526 	DEVMETHOD(pic_unmask,		openpic_cpcht_unmask),
527 
528 	DEVMETHOD_END
529 };
530 
531 struct openpic_cpcht_softc {
532 	struct openpic_softc sc_openpic;
533 
534 	struct mtx sc_ht_mtx;
535 };
536 
537 DEFINE_CLASS_1(htpic, openpic_cpcht_driver, openpic_cpcht_methods,
538     sizeof(struct openpic_cpcht_softc), openpic_class);
539 
540 EARLY_DRIVER_MODULE(openpic, unin, openpic_cpcht_driver, 0, 0,
541     BUS_PASS_INTERRUPT);
542 
543 static int
544 openpic_cpcht_probe(device_t dev)
545 {
546 	const char *type = ofw_bus_get_type(dev);
547 
548 	if (strcmp(type, "open-pic") != 0)
549 		return (ENXIO);
550 
551 	device_set_desc(dev, OPENPIC_DEVSTR);
552 	return (0);
553 }
554 
555 static int
556 openpic_cpcht_attach(device_t dev)
557 {
558 	struct openpic_cpcht_softc *sc;
559 	phandle_t node;
560 	int err, irq;
561 
562 	node = ofw_bus_get_node(dev);
563 	err = openpic_common_attach(dev, node);
564 	if (err != 0)
565 		return (err);
566 
567 	/*
568 	 * The HT APIC stuff is not thread-safe, so we need a mutex to
569 	 * protect it.
570 	 */
571 	sc = device_get_softc(dev);
572 	mtx_init(&sc->sc_ht_mtx, "htpic", NULL, MTX_SPIN);
573 
574 	/*
575 	 * Interrupts 0-3 are internally sourced and are level triggered
576 	 * active low. Interrupts 4-123 are connected to a pulse generator
577 	 * and should be programmed as edge triggered low-to-high.
578 	 *
579 	 * IBM CPC945 Manual, Section 9.3.
580 	 */
581 
582 	for (irq = 0; irq < 4; irq++)
583 		openpic_config(dev, irq, INTR_TRIGGER_LEVEL, INTR_POLARITY_LOW);
584 	for (irq = 4; irq < 124; irq++)
585 		openpic_config(dev, irq, INTR_TRIGGER_EDGE, INTR_POLARITY_LOW);
586 
587 	/*
588 	 * Use this PIC for MSI only if it is the root PIC. This may not
589 	 * be necessary, but Linux does it, and I cannot find any U3 machines
590 	 * with MSI devices to test.
591 	 */
592 	if (dev == root_pic)
593 		cpcht_msipic = node;
594 
595 	return (0);
596 }
597 
598 static void
599 openpic_cpcht_config(device_t dev, u_int irq, enum intr_trigger trig,
600     enum intr_polarity pol)
601 {
602 	struct openpic_cpcht_softc *sc;
603 	uint32_t ht_irq;
604 
605 	/*
606 	 * The interrupt settings for the MPIC are completely determined
607 	 * by the internal wiring in the northbridge. Real changes to these
608 	 * settings need to be negotiated with the remote IO-APIC on the HT
609 	 * link.
610 	 */
611 
612 	sc = device_get_softc(dev);
613 
614 	if (cpcht_irqmap != NULL && irq < 128 &&
615 	    cpcht_irqmap[irq].ht_base > 0 && !cpcht_irqmap[irq].edge) {
616 		mtx_lock_spin(&sc->sc_ht_mtx);
617 
618 		/* Program the data port */
619 		out8rb(cpcht_irqmap[irq].ht_base + PCIR_HT_COMMAND,
620 		    0x10 + (cpcht_irqmap[irq].ht_source << 1));
621 
622 		/* Grab the IRQ config register */
623 		ht_irq = in32rb(cpcht_irqmap[irq].ht_base + 4);
624 
625 		/* Mask the IRQ while we fiddle settings */
626 		out32rb(cpcht_irqmap[irq].ht_base + 4, ht_irq | HTAPIC_MASK);
627 
628 		/* Program the interrupt sense */
629 		ht_irq &= ~(HTAPIC_TRIGGER_LEVEL | HTAPIC_REQUEST_EOI);
630 		if (trig == INTR_TRIGGER_EDGE) {
631 			cpcht_irqmap[irq].edge = 1;
632 		} else {
633 			cpcht_irqmap[irq].edge = 0;
634 			ht_irq |= HTAPIC_TRIGGER_LEVEL | HTAPIC_REQUEST_EOI;
635 		}
636 		out32rb(cpcht_irqmap[irq].ht_base + 4, ht_irq);
637 
638 		mtx_unlock_spin(&sc->sc_ht_mtx);
639 	}
640 }
641 
642 static void
643 openpic_cpcht_enable(device_t dev, u_int irq, u_int vec, void **priv)
644 {
645 	struct openpic_cpcht_softc *sc;
646 	uint32_t ht_irq;
647 
648 	openpic_enable(dev, irq, vec, priv);
649 
650 	sc = device_get_softc(dev);
651 
652 	if (cpcht_irqmap != NULL && irq < 128 &&
653 	    cpcht_irqmap[irq].ht_base > 0) {
654 		mtx_lock_spin(&sc->sc_ht_mtx);
655 
656 		/* Program the data port */
657 		out8rb(cpcht_irqmap[irq].ht_base + PCIR_HT_COMMAND,
658 		    0x10 + (cpcht_irqmap[irq].ht_source << 1));
659 
660 		/* Unmask the interrupt */
661 		ht_irq = in32rb(cpcht_irqmap[irq].ht_base + 4);
662 		ht_irq &= ~HTAPIC_MASK;
663 		out32rb(cpcht_irqmap[irq].ht_base + 4, ht_irq);
664 
665 		mtx_unlock_spin(&sc->sc_ht_mtx);
666 	}
667 
668 	openpic_cpcht_eoi(dev, irq, *priv);
669 }
670 
671 static void
672 openpic_cpcht_unmask(device_t dev, u_int irq, void *priv)
673 {
674 	struct openpic_cpcht_softc *sc;
675 	uint32_t ht_irq;
676 
677 	openpic_unmask(dev, irq, priv);
678 
679 	sc = device_get_softc(dev);
680 
681 	if (cpcht_irqmap != NULL && irq < 128 &&
682 	    cpcht_irqmap[irq].ht_base > 0) {
683 		mtx_lock_spin(&sc->sc_ht_mtx);
684 
685 		/* Program the data port */
686 		out8rb(cpcht_irqmap[irq].ht_base + PCIR_HT_COMMAND,
687 		    0x10 + (cpcht_irqmap[irq].ht_source << 1));
688 
689 		/* Unmask the interrupt */
690 		ht_irq = in32rb(cpcht_irqmap[irq].ht_base + 4);
691 		ht_irq &= ~HTAPIC_MASK;
692 		out32rb(cpcht_irqmap[irq].ht_base + 4, ht_irq);
693 
694 		mtx_unlock_spin(&sc->sc_ht_mtx);
695 	}
696 
697 	openpic_cpcht_eoi(dev, irq, priv);
698 }
699 
700 static void
701 openpic_cpcht_eoi(device_t dev, u_int irq, void *priv)
702 {
703 	struct openpic_cpcht_softc *sc;
704 	uint32_t off, mask;
705 
706 	if (irq == 255)
707 		return;
708 
709 	sc = device_get_softc(dev);
710 
711 	if (cpcht_irqmap != NULL && irq < 128 &&
712 	    cpcht_irqmap[irq].ht_base > 0 && !cpcht_irqmap[irq].edge) {
713 		/* If this is an HT IRQ, acknowledge it at the remote APIC */
714 
715 		if (cpcht_irqmap[irq].apple_eoi) {
716 			off = (cpcht_irqmap[irq].ht_source >> 3) & ~3;
717 			mask = 1 << (cpcht_irqmap[irq].ht_source & 0x1f);
718 			out32rb(cpcht_irqmap[irq].apple_eoi + off, mask);
719 		} else {
720 			mtx_lock_spin(&sc->sc_ht_mtx);
721 
722 			out8rb(cpcht_irqmap[irq].ht_base + PCIR_HT_COMMAND,
723 			    0x11 + (cpcht_irqmap[irq].ht_source << 1));
724 			out32rb(cpcht_irqmap[irq].ht_base + 4,
725 			    cpcht_irqmap[irq].eoi_data);
726 
727 			mtx_unlock_spin(&sc->sc_ht_mtx);
728 		}
729 	}
730 
731 	openpic_eoi(dev, irq, priv);
732 }
733