Home | History | Annotate | Line # | Download | only in cortex
gicv3.c revision 1.13.4.4
      1  1.13.4.3    martin /* $NetBSD: gicv3.c,v 1.13.4.4 2020/04/13 08:03:33 martin Exp $ */
      2  1.13.4.2  christos 
      3  1.13.4.2  christos /*-
      4  1.13.4.2  christos  * Copyright (c) 2018 Jared McNeill <jmcneill (at) invisible.ca>
      5  1.13.4.2  christos  * All rights reserved.
      6  1.13.4.2  christos  *
      7  1.13.4.2  christos  * Redistribution and use in source and binary forms, with or without
      8  1.13.4.2  christos  * modification, are permitted provided that the following conditions
      9  1.13.4.2  christos  * are met:
     10  1.13.4.2  christos  * 1. Redistributions of source code must retain the above copyright
     11  1.13.4.2  christos  *    notice, this list of conditions and the following disclaimer.
     12  1.13.4.2  christos  * 2. Redistributions in binary form must reproduce the above copyright
     13  1.13.4.2  christos  *    notice, this list of conditions and the following disclaimer in the
     14  1.13.4.2  christos  *    documentation and/or other materials provided with the distribution.
     15  1.13.4.2  christos  *
     16  1.13.4.2  christos  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     17  1.13.4.2  christos  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     18  1.13.4.2  christos  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     19  1.13.4.2  christos  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     20  1.13.4.2  christos  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
     21  1.13.4.2  christos  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
     22  1.13.4.2  christos  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
     23  1.13.4.2  christos  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
     24  1.13.4.2  christos  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     25  1.13.4.2  christos  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     26  1.13.4.2  christos  * SUCH DAMAGE.
     27  1.13.4.2  christos  */
     28  1.13.4.2  christos 
     29  1.13.4.2  christos #include "opt_multiprocessor.h"
     30  1.13.4.2  christos 
     31  1.13.4.2  christos #define	_INTR_PRIVATE
     32  1.13.4.2  christos 
     33  1.13.4.2  christos #include <sys/cdefs.h>
     34  1.13.4.3    martin __KERNEL_RCSID(0, "$NetBSD: gicv3.c,v 1.13.4.4 2020/04/13 08:03:33 martin Exp $");
     35  1.13.4.2  christos 
     36  1.13.4.2  christos #include <sys/param.h>
     37  1.13.4.2  christos #include <sys/kernel.h>
     38  1.13.4.2  christos #include <sys/bus.h>
     39  1.13.4.2  christos #include <sys/device.h>
     40  1.13.4.2  christos #include <sys/intr.h>
     41  1.13.4.2  christos #include <sys/systm.h>
     42  1.13.4.2  christos #include <sys/cpu.h>
     43  1.13.4.3    martin #include <sys/vmem.h>
     44  1.13.4.2  christos 
     45  1.13.4.4    martin #include <machine/cpufunc.h>
     46  1.13.4.4    martin 
     47  1.13.4.2  christos #include <arm/locore.h>
     48  1.13.4.2  christos #include <arm/armreg.h>
     49  1.13.4.2  christos 
     50  1.13.4.2  christos #include <arm/cortex/gicv3.h>
     51  1.13.4.2  christos #include <arm/cortex/gic_reg.h>
     52  1.13.4.2  christos 
     53  1.13.4.2  christos #define	PICTOSOFTC(pic)	\
     54  1.13.4.2  christos 	((void *)((uintptr_t)(pic) - offsetof(struct gicv3_softc, sc_pic)))
     55  1.13.4.2  christos #define	LPITOSOFTC(lpi) \
     56  1.13.4.2  christos 	((void *)((uintptr_t)(lpi) - offsetof(struct gicv3_softc, sc_lpi)))
     57  1.13.4.2  christos 
     58  1.13.4.4    martin #define	IPL_TO_PRIORITY(sc, ipl)	(((0xff - (ipl)) << (sc)->sc_priority_shift) & 0xff)
     59  1.13.4.4    martin #define	IPL_TO_PMR(sc, ipl)		(((0xff - (ipl)) << (sc)->sc_pmr_shift) & 0xff)
     60  1.13.4.4    martin #define	IPL_TO_LPIPRIO(sc, ipl)		(((0xff - (ipl)) << 4) & 0xff)
     61  1.13.4.2  christos 
     62  1.13.4.2  christos static struct gicv3_softc *gicv3_softc;
     63  1.13.4.2  christos 
     64  1.13.4.2  christos static inline uint32_t
     65  1.13.4.2  christos gicd_read_4(struct gicv3_softc *sc, bus_size_t reg)
     66  1.13.4.2  christos {
     67  1.13.4.2  christos 	return bus_space_read_4(sc->sc_bst, sc->sc_bsh_d, reg);
     68  1.13.4.2  christos }
     69  1.13.4.2  christos 
     70  1.13.4.2  christos static inline void
     71  1.13.4.2  christos gicd_write_4(struct gicv3_softc *sc, bus_size_t reg, uint32_t val)
     72  1.13.4.2  christos {
     73  1.13.4.2  christos 	bus_space_write_4(sc->sc_bst, sc->sc_bsh_d, reg, val);
     74  1.13.4.2  christos }
     75  1.13.4.2  christos 
     76  1.13.4.2  christos static inline uint64_t
     77  1.13.4.2  christos gicd_read_8(struct gicv3_softc *sc, bus_size_t reg)
     78  1.13.4.2  christos {
     79  1.13.4.2  christos 	return bus_space_read_8(sc->sc_bst, sc->sc_bsh_d, reg);
     80  1.13.4.2  christos }
     81  1.13.4.2  christos 
     82  1.13.4.2  christos static inline void
     83  1.13.4.2  christos gicd_write_8(struct gicv3_softc *sc, bus_size_t reg, uint64_t val)
     84  1.13.4.2  christos {
     85  1.13.4.2  christos 	bus_space_write_8(sc->sc_bst, sc->sc_bsh_d, reg, val);
     86  1.13.4.2  christos }
     87  1.13.4.2  christos 
     88  1.13.4.2  christos static inline uint32_t
     89  1.13.4.2  christos gicr_read_4(struct gicv3_softc *sc, u_int index, bus_size_t reg)
     90  1.13.4.2  christos {
     91  1.13.4.2  christos 	KASSERT(index < sc->sc_bsh_r_count);
     92  1.13.4.2  christos 	return bus_space_read_4(sc->sc_bst, sc->sc_bsh_r[index], reg);
     93  1.13.4.2  christos }
     94  1.13.4.2  christos 
     95  1.13.4.2  christos static inline void
     96  1.13.4.2  christos gicr_write_4(struct gicv3_softc *sc, u_int index, bus_size_t reg, uint32_t val)
     97  1.13.4.2  christos {
     98  1.13.4.2  christos 	KASSERT(index < sc->sc_bsh_r_count);
     99  1.13.4.2  christos 	bus_space_write_4(sc->sc_bst, sc->sc_bsh_r[index], reg, val);
    100  1.13.4.2  christos }
    101  1.13.4.2  christos 
    102  1.13.4.2  christos static inline uint64_t
    103  1.13.4.2  christos gicr_read_8(struct gicv3_softc *sc, u_int index, bus_size_t reg)
    104  1.13.4.2  christos {
    105  1.13.4.2  christos 	KASSERT(index < sc->sc_bsh_r_count);
    106  1.13.4.2  christos 	return bus_space_read_8(sc->sc_bst, sc->sc_bsh_r[index], reg);
    107  1.13.4.2  christos }
    108  1.13.4.2  christos 
    109  1.13.4.2  christos static inline void
    110  1.13.4.2  christos gicr_write_8(struct gicv3_softc *sc, u_int index, bus_size_t reg, uint64_t val)
    111  1.13.4.2  christos {
    112  1.13.4.2  christos 	KASSERT(index < sc->sc_bsh_r_count);
    113  1.13.4.2  christos 	bus_space_write_8(sc->sc_bst, sc->sc_bsh_r[index], reg, val);
    114  1.13.4.2  christos }
    115  1.13.4.2  christos 
    116  1.13.4.2  christos static void
    117  1.13.4.2  christos gicv3_unblock_irqs(struct pic_softc *pic, size_t irqbase, uint32_t mask)
    118  1.13.4.2  christos {
    119  1.13.4.2  christos 	struct gicv3_softc * const sc = PICTOSOFTC(pic);
    120  1.13.4.2  christos 	struct cpu_info * const ci = curcpu();
    121  1.13.4.2  christos 	const u_int group = irqbase / 32;
    122  1.13.4.2  christos 
    123  1.13.4.2  christos 	if (group == 0) {
    124  1.13.4.2  christos 		sc->sc_enabled_sgippi |= mask;
    125  1.13.4.2  christos 		gicr_write_4(sc, ci->ci_gic_redist, GICR_ISENABLER0, mask);
    126  1.13.4.2  christos 		while (gicr_read_4(sc, ci->ci_gic_redist, GICR_CTLR) & GICR_CTLR_RWP)
    127  1.13.4.2  christos 			;
    128  1.13.4.2  christos 	} else {
    129  1.13.4.2  christos 		gicd_write_4(sc, GICD_ISENABLERn(group), mask);
    130  1.13.4.2  christos 		while (gicd_read_4(sc, GICD_CTRL) & GICD_CTRL_RWP)
    131  1.13.4.2  christos 			;
    132  1.13.4.2  christos 	}
    133  1.13.4.2  christos }
    134  1.13.4.2  christos 
    135  1.13.4.2  christos static void
    136  1.13.4.2  christos gicv3_block_irqs(struct pic_softc *pic, size_t irqbase, uint32_t mask)
    137  1.13.4.2  christos {
    138  1.13.4.2  christos 	struct gicv3_softc * const sc = PICTOSOFTC(pic);
    139  1.13.4.2  christos 	struct cpu_info * const ci = curcpu();
    140  1.13.4.2  christos 	const u_int group = irqbase / 32;
    141  1.13.4.2  christos 
    142  1.13.4.2  christos 	if (group == 0) {
    143  1.13.4.2  christos 		sc->sc_enabled_sgippi &= ~mask;
    144  1.13.4.2  christos 		gicr_write_4(sc, ci->ci_gic_redist, GICR_ICENABLER0, mask);
    145  1.13.4.2  christos 		while (gicr_read_4(sc, ci->ci_gic_redist, GICR_CTLR) & GICR_CTLR_RWP)
    146  1.13.4.2  christos 			;
    147  1.13.4.2  christos 	} else {
    148  1.13.4.2  christos 		gicd_write_4(sc, GICD_ICENABLERn(group), mask);
    149  1.13.4.2  christos 		while (gicd_read_4(sc, GICD_CTRL) & GICD_CTRL_RWP)
    150  1.13.4.2  christos 			;
    151  1.13.4.2  christos 	}
    152  1.13.4.2  christos }
    153  1.13.4.2  christos 
    154  1.13.4.2  christos static void
    155  1.13.4.2  christos gicv3_establish_irq(struct pic_softc *pic, struct intrsource *is)
    156  1.13.4.2  christos {
    157  1.13.4.2  christos 	struct gicv3_softc * const sc = PICTOSOFTC(pic);
    158  1.13.4.2  christos 	const u_int group = is->is_irq / 32;
    159  1.13.4.2  christos 	uint32_t ipriority, icfg;
    160  1.13.4.2  christos 	uint64_t irouter;
    161  1.13.4.2  christos 	u_int n;
    162  1.13.4.2  christos 
    163  1.13.4.4    martin 	const u_int ipriority_val = IPL_TO_PRIORITY(sc, is->is_ipl);
    164  1.13.4.2  christos 	const u_int ipriority_shift = (is->is_irq & 0x3) * 8;
    165  1.13.4.2  christos 	const u_int icfg_shift = (is->is_irq & 0xf) * 2;
    166  1.13.4.2  christos 
    167  1.13.4.2  christos 	if (group == 0) {
    168  1.13.4.2  christos 		/* SGIs and PPIs are always MP-safe */
    169  1.13.4.2  christos 		is->is_mpsafe = true;
    170  1.13.4.2  christos 
    171  1.13.4.2  christos 		/* Update interrupt configuration and priority on all redistributors */
    172  1.13.4.2  christos 		for (n = 0; n < sc->sc_bsh_r_count; n++) {
    173  1.13.4.2  christos 			icfg = gicr_read_4(sc, n, GICR_ICFGRn(is->is_irq / 16));
    174  1.13.4.2  christos 			if (is->is_type == IST_LEVEL)
    175  1.13.4.2  christos 				icfg &= ~(0x2 << icfg_shift);
    176  1.13.4.2  christos 			if (is->is_type == IST_EDGE)
    177  1.13.4.2  christos 				icfg |= (0x2 << icfg_shift);
    178  1.13.4.2  christos 			gicr_write_4(sc, n, GICR_ICFGRn(is->is_irq / 16), icfg);
    179  1.13.4.2  christos 
    180  1.13.4.2  christos 			ipriority = gicr_read_4(sc, n, GICR_IPRIORITYRn(is->is_irq / 4));
    181  1.13.4.2  christos 			ipriority &= ~(0xff << ipriority_shift);
    182  1.13.4.2  christos 			ipriority |= (ipriority_val << ipriority_shift);
    183  1.13.4.2  christos 			gicr_write_4(sc, n, GICR_IPRIORITYRn(is->is_irq / 4), ipriority);
    184  1.13.4.2  christos 		}
    185  1.13.4.2  christos 	} else {
    186  1.13.4.2  christos 		if (is->is_mpsafe) {
    187  1.13.4.2  christos 			/* Route MP-safe interrupts to all participating PEs */
    188  1.13.4.2  christos 			irouter = GICD_IROUTER_Interrupt_Routing_mode;
    189  1.13.4.2  christos 		} else {
    190  1.13.4.2  christos 			/* Route non-MP-safe interrupts to the primary PE only */
    191  1.13.4.2  christos 			irouter = sc->sc_irouter[0];
    192  1.13.4.2  christos 		}
    193  1.13.4.2  christos 		gicd_write_8(sc, GICD_IROUTER(is->is_irq), irouter);
    194  1.13.4.2  christos 
    195  1.13.4.2  christos 		/* Update interrupt configuration */
    196  1.13.4.2  christos 		icfg = gicd_read_4(sc, GICD_ICFGRn(is->is_irq / 16));
    197  1.13.4.2  christos 		if (is->is_type == IST_LEVEL)
    198  1.13.4.2  christos 			icfg &= ~(0x2 << icfg_shift);
    199  1.13.4.2  christos 		if (is->is_type == IST_EDGE)
    200  1.13.4.2  christos 			icfg |= (0x2 << icfg_shift);
    201  1.13.4.2  christos 		gicd_write_4(sc, GICD_ICFGRn(is->is_irq / 16), icfg);
    202  1.13.4.2  christos 
    203  1.13.4.2  christos 		/* Update interrupt priority */
    204  1.13.4.2  christos 		ipriority = gicd_read_4(sc, GICD_IPRIORITYRn(is->is_irq / 4));
    205  1.13.4.2  christos 		ipriority &= ~(0xff << ipriority_shift);
    206  1.13.4.2  christos 		ipriority |= (ipriority_val << ipriority_shift);
    207  1.13.4.2  christos 		gicd_write_4(sc, GICD_IPRIORITYRn(is->is_irq / 4), ipriority);
    208  1.13.4.2  christos 	}
    209  1.13.4.2  christos }
    210  1.13.4.2  christos 
    211  1.13.4.2  christos static void
    212  1.13.4.2  christos gicv3_set_priority(struct pic_softc *pic, int ipl)
    213  1.13.4.2  christos {
    214  1.13.4.4    martin 	struct gicv3_softc * const sc = PICTOSOFTC(pic);
    215  1.13.4.4    martin 
    216  1.13.4.4    martin 	icc_pmr_write(IPL_TO_PMR(sc, ipl));
    217  1.13.4.4    martin 	arm_isb();
    218  1.13.4.2  christos }
    219  1.13.4.2  christos 
    220  1.13.4.2  christos static void
    221  1.13.4.2  christos gicv3_dist_enable(struct gicv3_softc *sc)
    222  1.13.4.2  christos {
    223  1.13.4.2  christos 	uint32_t gicd_ctrl;
    224  1.13.4.2  christos 	u_int n;
    225  1.13.4.2  christos 
    226  1.13.4.2  christos 	/* Disable the distributor */
    227  1.13.4.2  christos 	gicd_write_4(sc, GICD_CTRL, 0);
    228  1.13.4.2  christos 
    229  1.13.4.2  christos 	/* Wait for register write to complete */
    230  1.13.4.2  christos 	while (gicd_read_4(sc, GICD_CTRL) & GICD_CTRL_RWP)
    231  1.13.4.2  christos 		;
    232  1.13.4.2  christos 
    233  1.13.4.2  christos 	/* Clear all INTID enable bits */
    234  1.13.4.2  christos 	for (n = 32; n < sc->sc_pic.pic_maxsources; n += 32)
    235  1.13.4.2  christos 		gicd_write_4(sc, GICD_ICENABLERn(n / 32), ~0);
    236  1.13.4.2  christos 
    237  1.13.4.2  christos 	/* Set default priorities to lowest */
    238  1.13.4.2  christos 	for (n = 32; n < sc->sc_pic.pic_maxsources; n += 4)
    239  1.13.4.2  christos 		gicd_write_4(sc, GICD_IPRIORITYRn(n / 4), ~0);
    240  1.13.4.2  christos 
    241  1.13.4.2  christos 	/* Set all interrupts to G1NS */
    242  1.13.4.2  christos 	for (n = 32; n < sc->sc_pic.pic_maxsources; n += 32) {
    243  1.13.4.2  christos 		gicd_write_4(sc, GICD_IGROUPRn(n / 32), ~0);
    244  1.13.4.2  christos 		gicd_write_4(sc, GICD_IGRPMODRn(n / 32), 0);
    245  1.13.4.2  christos 	}
    246  1.13.4.2  christos 
    247  1.13.4.2  christos 	/* Set all interrupts level-sensitive by default */
    248  1.13.4.2  christos 	for (n = 32; n < sc->sc_pic.pic_maxsources; n += 16)
    249  1.13.4.2  christos 		gicd_write_4(sc, GICD_ICFGRn(n / 16), 0);
    250  1.13.4.2  christos 
    251  1.13.4.2  christos 	/* Wait for register writes to complete */
    252  1.13.4.2  christos 	while (gicd_read_4(sc, GICD_CTRL) & GICD_CTRL_RWP)
    253  1.13.4.2  christos 		;
    254  1.13.4.2  christos 
    255  1.13.4.2  christos 	/* Enable Affinity routing and G1NS interrupts */
    256  1.13.4.4    martin 	gicd_ctrl = GICD_CTRL_EnableGrp1A | GICD_CTRL_ARE_NS;
    257  1.13.4.2  christos 	gicd_write_4(sc, GICD_CTRL, gicd_ctrl);
    258  1.13.4.2  christos }
    259  1.13.4.2  christos 
    260  1.13.4.2  christos static void
    261  1.13.4.2  christos gicv3_redist_enable(struct gicv3_softc *sc, struct cpu_info *ci)
    262  1.13.4.2  christos {
    263  1.13.4.2  christos 	uint32_t icfg;
    264  1.13.4.2  christos 	u_int n, o;
    265  1.13.4.2  christos 
    266  1.13.4.2  christos 	/* Clear INTID enable bits */
    267  1.13.4.2  christos 	gicr_write_4(sc, ci->ci_gic_redist, GICR_ICENABLER0, ~0);
    268  1.13.4.2  christos 
    269  1.13.4.2  christos 	/* Wait for register write to complete */
    270  1.13.4.2  christos 	while (gicr_read_4(sc, ci->ci_gic_redist, GICR_CTLR) & GICR_CTLR_RWP)
    271  1.13.4.2  christos 		;
    272  1.13.4.2  christos 
    273  1.13.4.2  christos 	/* Set default priorities */
    274  1.13.4.2  christos 	for (n = 0; n < 32; n += 4) {
    275  1.13.4.2  christos 		uint32_t priority = 0;
    276  1.13.4.2  christos 		size_t byte_shift = 0;
    277  1.13.4.2  christos 		for (o = 0; o < 4; o++, byte_shift += 8) {
    278  1.13.4.2  christos 			struct intrsource * const is = sc->sc_pic.pic_sources[n + o];
    279  1.13.4.2  christos 			if (is == NULL)
    280  1.13.4.2  christos 				priority |= 0xff << byte_shift;
    281  1.13.4.2  christos 			else {
    282  1.13.4.4    martin 				const u_int ipriority_val = IPL_TO_PRIORITY(sc, is->is_ipl);
    283  1.13.4.2  christos 				priority |= ipriority_val << byte_shift;
    284  1.13.4.2  christos 			}
    285  1.13.4.2  christos 		}
    286  1.13.4.2  christos 		gicr_write_4(sc, ci->ci_gic_redist, GICR_IPRIORITYRn(n / 4), priority);
    287  1.13.4.2  christos 	}
    288  1.13.4.2  christos 
    289  1.13.4.2  christos 	/* Set all interrupts to G1NS */
    290  1.13.4.2  christos 	gicr_write_4(sc, ci->ci_gic_redist, GICR_IGROUPR0, ~0);
    291  1.13.4.2  christos 	gicr_write_4(sc, ci->ci_gic_redist, GICR_IGRPMODR0, 0);
    292  1.13.4.2  christos 
    293  1.13.4.2  christos 	/* Restore PPI configs */
    294  1.13.4.2  christos 	for (n = 0, icfg = 0; n < 16; n++) {
    295  1.13.4.2  christos 		struct intrsource * const is = sc->sc_pic.pic_sources[16 + n];
    296  1.13.4.2  christos 		if (is != NULL && is->is_type == IST_EDGE)
    297  1.13.4.2  christos 			icfg |= (0x2 << (n * 2));
    298  1.13.4.2  christos 	}
    299  1.13.4.2  christos 	gicr_write_4(sc, ci->ci_gic_redist, GICR_ICFGRn(1), icfg);
    300  1.13.4.2  christos 
    301  1.13.4.2  christos 	/* Restore current enable bits */
    302  1.13.4.2  christos 	gicr_write_4(sc, ci->ci_gic_redist, GICR_ISENABLER0, sc->sc_enabled_sgippi);
    303  1.13.4.2  christos 
    304  1.13.4.2  christos 	/* Wait for register write to complete */
    305  1.13.4.2  christos 	while (gicr_read_4(sc, ci->ci_gic_redist, GICR_CTLR) & GICR_CTLR_RWP)
    306  1.13.4.2  christos 		;
    307  1.13.4.2  christos }
    308  1.13.4.2  christos 
    309  1.13.4.2  christos static uint64_t
    310  1.13.4.2  christos gicv3_cpu_identity(void)
    311  1.13.4.2  christos {
    312  1.13.4.2  christos 	u_int aff3, aff2, aff1, aff0;
    313  1.13.4.2  christos 
    314  1.13.4.4    martin 	const register_t mpidr = cpu_mpidr_aff_read();
    315  1.13.4.2  christos 	aff0 = __SHIFTOUT(mpidr, MPIDR_AFF0);
    316  1.13.4.2  christos 	aff1 = __SHIFTOUT(mpidr, MPIDR_AFF1);
    317  1.13.4.2  christos 	aff2 = __SHIFTOUT(mpidr, MPIDR_AFF2);
    318  1.13.4.2  christos 	aff3 = __SHIFTOUT(mpidr, MPIDR_AFF3);
    319  1.13.4.2  christos 
    320  1.13.4.2  christos 	return __SHIFTIN(aff0, GICR_TYPER_Affinity_Value_Aff0) |
    321  1.13.4.2  christos 	       __SHIFTIN(aff1, GICR_TYPER_Affinity_Value_Aff1) |
    322  1.13.4.2  christos 	       __SHIFTIN(aff2, GICR_TYPER_Affinity_Value_Aff2) |
    323  1.13.4.2  christos 	       __SHIFTIN(aff3, GICR_TYPER_Affinity_Value_Aff3);
    324  1.13.4.2  christos }
    325  1.13.4.2  christos 
    326  1.13.4.2  christos static u_int
    327  1.13.4.2  christos gicv3_find_redist(struct gicv3_softc *sc)
    328  1.13.4.2  christos {
    329  1.13.4.2  christos 	uint64_t gicr_typer;
    330  1.13.4.2  christos 	u_int n;
    331  1.13.4.2  christos 
    332  1.13.4.2  christos 	const uint64_t cpu_identity = gicv3_cpu_identity();
    333  1.13.4.2  christos 
    334  1.13.4.2  christos 	for (n = 0; n < sc->sc_bsh_r_count; n++) {
    335  1.13.4.2  christos 		gicr_typer = gicr_read_8(sc, n, GICR_TYPER);
    336  1.13.4.2  christos 		if ((gicr_typer & GICR_TYPER_Affinity_Value) == cpu_identity)
    337  1.13.4.2  christos 			return n;
    338  1.13.4.2  christos 	}
    339  1.13.4.2  christos 
    340  1.13.4.2  christos 	const u_int aff0 = __SHIFTOUT(cpu_identity, GICR_TYPER_Affinity_Value_Aff0);
    341  1.13.4.2  christos 	const u_int aff1 = __SHIFTOUT(cpu_identity, GICR_TYPER_Affinity_Value_Aff1);
    342  1.13.4.2  christos 	const u_int aff2 = __SHIFTOUT(cpu_identity, GICR_TYPER_Affinity_Value_Aff2);
    343  1.13.4.2  christos 	const u_int aff3 = __SHIFTOUT(cpu_identity, GICR_TYPER_Affinity_Value_Aff3);
    344  1.13.4.2  christos 
    345  1.13.4.2  christos 	panic("%s: could not find GICv3 redistributor for cpu %d.%d.%d.%d",
    346  1.13.4.2  christos 	    cpu_name(curcpu()), aff3, aff2, aff1, aff0);
    347  1.13.4.2  christos }
    348  1.13.4.2  christos 
    349  1.13.4.2  christos static uint64_t
    350  1.13.4.2  christos gicv3_sgir(struct gicv3_softc *sc)
    351  1.13.4.2  christos {
    352  1.13.4.3    martin 	const uint64_t cpu_identity = gicv3_cpu_identity();
    353  1.13.4.2  christos 
    354  1.13.4.2  christos 	const u_int aff0 = __SHIFTOUT(cpu_identity, GICR_TYPER_Affinity_Value_Aff0);
    355  1.13.4.2  christos 	const u_int aff1 = __SHIFTOUT(cpu_identity, GICR_TYPER_Affinity_Value_Aff1);
    356  1.13.4.2  christos 	const u_int aff2 = __SHIFTOUT(cpu_identity, GICR_TYPER_Affinity_Value_Aff2);
    357  1.13.4.2  christos 	const u_int aff3 = __SHIFTOUT(cpu_identity, GICR_TYPER_Affinity_Value_Aff3);
    358  1.13.4.2  christos 
    359  1.13.4.2  christos 	return __SHIFTIN(__BIT(aff0), ICC_SGIR_EL1_TargetList) |
    360  1.13.4.2  christos 	       __SHIFTIN(aff1, ICC_SGIR_EL1_Aff1) |
    361  1.13.4.2  christos 	       __SHIFTIN(aff2, ICC_SGIR_EL1_Aff2) |
    362  1.13.4.3    martin 	       __SHIFTIN(aff3, ICC_SGIR_EL1_Aff3);
    363  1.13.4.2  christos }
    364  1.13.4.2  christos 
    365  1.13.4.2  christos static void
    366  1.13.4.2  christos gicv3_cpu_init(struct pic_softc *pic, struct cpu_info *ci)
    367  1.13.4.2  christos {
    368  1.13.4.2  christos 	struct gicv3_softc * const sc = PICTOSOFTC(pic);
    369  1.13.4.2  christos 	uint32_t icc_sre, icc_ctlr, gicr_waker;
    370  1.13.4.2  christos 
    371  1.13.4.2  christos 	ci->ci_gic_redist = gicv3_find_redist(sc);
    372  1.13.4.2  christos 	ci->ci_gic_sgir = gicv3_sgir(sc);
    373  1.13.4.2  christos 
    374  1.13.4.2  christos 	/* Store route to CPU for SPIs */
    375  1.13.4.2  christos 	const uint64_t cpu_identity = gicv3_cpu_identity();
    376  1.13.4.2  christos 	const u_int aff0 = __SHIFTOUT(cpu_identity, GICR_TYPER_Affinity_Value_Aff0);
    377  1.13.4.2  christos 	const u_int aff1 = __SHIFTOUT(cpu_identity, GICR_TYPER_Affinity_Value_Aff1);
    378  1.13.4.2  christos 	const u_int aff2 = __SHIFTOUT(cpu_identity, GICR_TYPER_Affinity_Value_Aff2);
    379  1.13.4.2  christos 	const u_int aff3 = __SHIFTOUT(cpu_identity, GICR_TYPER_Affinity_Value_Aff3);
    380  1.13.4.2  christos 	sc->sc_irouter[cpu_index(ci)] =
    381  1.13.4.2  christos 	    __SHIFTIN(aff0, GICD_IROUTER_Aff0) |
    382  1.13.4.2  christos 	    __SHIFTIN(aff1, GICD_IROUTER_Aff1) |
    383  1.13.4.2  christos 	    __SHIFTIN(aff2, GICD_IROUTER_Aff2) |
    384  1.13.4.2  christos 	    __SHIFTIN(aff3, GICD_IROUTER_Aff3);
    385  1.13.4.2  christos 
    386  1.13.4.2  christos 	/* Enable System register access and disable IRQ/FIQ bypass */
    387  1.13.4.2  christos 	icc_sre = ICC_SRE_EL1_SRE | ICC_SRE_EL1_DFB | ICC_SRE_EL1_DIB;
    388  1.13.4.2  christos 	icc_sre_write(icc_sre);
    389  1.13.4.2  christos 
    390  1.13.4.2  christos 	/* Mark the connected PE as being awake */
    391  1.13.4.2  christos 	gicr_waker = gicr_read_4(sc, ci->ci_gic_redist, GICR_WAKER);
    392  1.13.4.2  christos 	gicr_waker &= ~GICR_WAKER_ProcessorSleep;
    393  1.13.4.2  christos 	gicr_write_4(sc, ci->ci_gic_redist, GICR_WAKER, gicr_waker);
    394  1.13.4.2  christos 	while (gicr_read_4(sc, ci->ci_gic_redist, GICR_WAKER) & GICR_WAKER_ChildrenAsleep)
    395  1.13.4.2  christos 		;
    396  1.13.4.2  christos 
    397  1.13.4.2  christos 	/* Set initial priority mask */
    398  1.13.4.2  christos 	gicv3_set_priority(pic, IPL_HIGH);
    399  1.13.4.2  christos 
    400  1.13.4.2  christos 	/* Set the binary point field to the minimum value */
    401  1.13.4.2  christos 	icc_bpr1_write(0);
    402  1.13.4.2  christos 
    403  1.13.4.2  christos 	/* Enable group 1 interrupt signaling */
    404  1.13.4.2  christos 	icc_igrpen1_write(ICC_IGRPEN_EL1_Enable);
    405  1.13.4.2  christos 
    406  1.13.4.2  christos 	/* Set EOI mode */
    407  1.13.4.2  christos 	icc_ctlr = icc_ctlr_read();
    408  1.13.4.2  christos 	icc_ctlr &= ~ICC_CTLR_EL1_EOImode;
    409  1.13.4.2  christos 	icc_ctlr_write(icc_ctlr);
    410  1.13.4.2  christos 
    411  1.13.4.2  christos 	/* Enable redistributor */
    412  1.13.4.2  christos 	gicv3_redist_enable(sc, ci);
    413  1.13.4.2  christos 
    414  1.13.4.2  christos 	/* Allow IRQ exceptions */
    415  1.13.4.2  christos 	cpsie(I32_bit);
    416  1.13.4.2  christos }
    417  1.13.4.2  christos 
    418  1.13.4.2  christos #ifdef MULTIPROCESSOR
    419  1.13.4.2  christos static void
    420  1.13.4.2  christos gicv3_ipi_send(struct pic_softc *pic, const kcpuset_t *kcp, u_long ipi)
    421  1.13.4.2  christos {
    422  1.13.4.2  christos 	CPU_INFO_ITERATOR cii;
    423  1.13.4.2  christos 	struct cpu_info *ci;
    424  1.13.4.2  christos 	uint64_t intid, aff, targets;
    425  1.13.4.2  christos 
    426  1.13.4.2  christos 	intid = __SHIFTIN(ipi, ICC_SGIR_EL1_INTID);
    427  1.13.4.2  christos 	if (kcp == NULL) {
    428  1.13.4.2  christos 		/* Interrupts routed to all PEs, excluding "self" */
    429  1.13.4.2  christos 		if (ncpu == 1)
    430  1.13.4.2  christos 			return;
    431  1.13.4.2  christos 		icc_sgi1r_write(intid | ICC_SGIR_EL1_IRM);
    432  1.13.4.2  christos 	} else {
    433  1.13.4.2  christos 		/* Interrupts routed to specific PEs */
    434  1.13.4.2  christos 		aff = 0;
    435  1.13.4.2  christos 		targets = 0;
    436  1.13.4.2  christos 		for (CPU_INFO_FOREACH(cii, ci)) {
    437  1.13.4.2  christos 			if (!kcpuset_isset(kcp, cpu_index(ci)))
    438  1.13.4.2  christos 				continue;
    439  1.13.4.2  christos 			if ((ci->ci_gic_sgir & ICC_SGIR_EL1_Aff) != aff) {
    440  1.13.4.2  christos 				if (targets != 0) {
    441  1.13.4.2  christos 					icc_sgi1r_write(intid | aff | targets);
    442  1.13.4.4    martin 					arm_isb();
    443  1.13.4.2  christos 					targets = 0;
    444  1.13.4.2  christos 				}
    445  1.13.4.2  christos 				aff = (ci->ci_gic_sgir & ICC_SGIR_EL1_Aff);
    446  1.13.4.2  christos 			}
    447  1.13.4.2  christos 			targets |= (ci->ci_gic_sgir & ICC_SGIR_EL1_TargetList);
    448  1.13.4.2  christos 		}
    449  1.13.4.4    martin 		if (targets != 0) {
    450  1.13.4.2  christos 			icc_sgi1r_write(intid | aff | targets);
    451  1.13.4.4    martin 			arm_isb();
    452  1.13.4.4    martin 		}
    453  1.13.4.2  christos 	}
    454  1.13.4.2  christos }
    455  1.13.4.2  christos 
    456  1.13.4.2  christos static void
    457  1.13.4.2  christos gicv3_get_affinity(struct pic_softc *pic, size_t irq, kcpuset_t *affinity)
    458  1.13.4.2  christos {
    459  1.13.4.2  christos 	struct gicv3_softc * const sc = PICTOSOFTC(pic);
    460  1.13.4.2  christos 	const size_t group = irq / 32;
    461  1.13.4.2  christos 	int n;
    462  1.13.4.2  christos 
    463  1.13.4.2  christos 	kcpuset_zero(affinity);
    464  1.13.4.2  christos 	if (group == 0) {
    465  1.13.4.2  christos 		/* All CPUs are targets for group 0 (SGI/PPI) */
    466  1.13.4.2  christos 		for (n = 0; n < ncpu; n++) {
    467  1.13.4.2  christos 			if (sc->sc_irouter[n] != UINT64_MAX)
    468  1.13.4.2  christos 				kcpuset_set(affinity, n);
    469  1.13.4.2  christos 		}
    470  1.13.4.2  christos 	} else {
    471  1.13.4.2  christos 		/* Find distributor targets (SPI) */
    472  1.13.4.2  christos 		const uint64_t irouter = gicd_read_8(sc, GICD_IROUTER(irq));
    473  1.13.4.2  christos 		for (n = 0; n < ncpu; n++) {
    474  1.13.4.2  christos 			if (irouter == GICD_IROUTER_Interrupt_Routing_mode ||
    475  1.13.4.2  christos 			    irouter == sc->sc_irouter[n])
    476  1.13.4.2  christos 				kcpuset_set(affinity, n);
    477  1.13.4.2  christos 		}
    478  1.13.4.2  christos 	}
    479  1.13.4.2  christos }
    480  1.13.4.2  christos 
    481  1.13.4.2  christos static int
    482  1.13.4.2  christos gicv3_set_affinity(struct pic_softc *pic, size_t irq, const kcpuset_t *affinity)
    483  1.13.4.2  christos {
    484  1.13.4.2  christos 	struct gicv3_softc * const sc = PICTOSOFTC(pic);
    485  1.13.4.2  christos 	const size_t group = irq / 32;
    486  1.13.4.2  christos 	uint64_t irouter;
    487  1.13.4.2  christos 
    488  1.13.4.2  christos 	if (group == 0)
    489  1.13.4.2  christos 		return EINVAL;
    490  1.13.4.2  christos 
    491  1.13.4.2  christos 	const int set = kcpuset_countset(affinity);
    492  1.13.4.2  christos 	if (set == ncpu)
    493  1.13.4.2  christos 		irouter = GICD_IROUTER_Interrupt_Routing_mode;
    494  1.13.4.2  christos 	else if (set == 1)
    495  1.13.4.2  christos 		irouter = sc->sc_irouter[kcpuset_ffs(affinity) - 1];
    496  1.13.4.2  christos 	else
    497  1.13.4.2  christos 		return EINVAL;
    498  1.13.4.2  christos 
    499  1.13.4.2  christos 	gicd_write_8(sc, GICD_IROUTER(irq), irouter);
    500  1.13.4.2  christos 
    501  1.13.4.2  christos 	return 0;
    502  1.13.4.2  christos }
    503  1.13.4.2  christos #endif
    504  1.13.4.2  christos 
    505  1.13.4.2  christos static const struct pic_ops gicv3_picops = {
    506  1.13.4.2  christos 	.pic_unblock_irqs = gicv3_unblock_irqs,
    507  1.13.4.2  christos 	.pic_block_irqs = gicv3_block_irqs,
    508  1.13.4.2  christos 	.pic_establish_irq = gicv3_establish_irq,
    509  1.13.4.2  christos 	.pic_set_priority = gicv3_set_priority,
    510  1.13.4.2  christos #ifdef MULTIPROCESSOR
    511  1.13.4.2  christos 	.pic_cpu_init = gicv3_cpu_init,
    512  1.13.4.2  christos 	.pic_ipi_send = gicv3_ipi_send,
    513  1.13.4.2  christos 	.pic_get_affinity = gicv3_get_affinity,
    514  1.13.4.2  christos 	.pic_set_affinity = gicv3_set_affinity,
    515  1.13.4.2  christos #endif
    516  1.13.4.2  christos };
    517  1.13.4.2  christos 
    518  1.13.4.2  christos static void
    519  1.13.4.2  christos gicv3_lpi_unblock_irqs(struct pic_softc *pic, size_t irqbase, uint32_t mask)
    520  1.13.4.2  christos {
    521  1.13.4.2  christos 	struct gicv3_softc * const sc = LPITOSOFTC(pic);
    522  1.13.4.2  christos 	int bit;
    523  1.13.4.2  christos 
    524  1.13.4.2  christos 	while ((bit = ffs(mask)) != 0) {
    525  1.13.4.2  christos 		sc->sc_lpiconf.base[irqbase + bit - 1] |= GIC_LPICONF_Enable;
    526  1.13.4.4    martin 		if (sc->sc_lpiconf_flush)
    527  1.13.4.4    martin 			cpu_dcache_wb_range((vaddr_t)&sc->sc_lpiconf.base[irqbase + bit - 1], 1);
    528  1.13.4.2  christos 		mask &= ~__BIT(bit - 1);
    529  1.13.4.2  christos 	}
    530  1.13.4.2  christos 
    531  1.13.4.4    martin 	if (!sc->sc_lpiconf_flush)
    532  1.13.4.4    martin 		__asm __volatile ("dsb ishst");
    533  1.13.4.2  christos }
    534  1.13.4.2  christos 
    535  1.13.4.2  christos static void
    536  1.13.4.2  christos gicv3_lpi_block_irqs(struct pic_softc *pic, size_t irqbase, uint32_t mask)
    537  1.13.4.2  christos {
    538  1.13.4.2  christos 	struct gicv3_softc * const sc = LPITOSOFTC(pic);
    539  1.13.4.2  christos 	int bit;
    540  1.13.4.2  christos 
    541  1.13.4.2  christos 	while ((bit = ffs(mask)) != 0) {
    542  1.13.4.2  christos 		sc->sc_lpiconf.base[irqbase + bit - 1] &= ~GIC_LPICONF_Enable;
    543  1.13.4.4    martin 		if (sc->sc_lpiconf_flush)
    544  1.13.4.4    martin 			cpu_dcache_wb_range((vaddr_t)&sc->sc_lpiconf.base[irqbase + bit - 1], 1);
    545  1.13.4.2  christos 		mask &= ~__BIT(bit - 1);
    546  1.13.4.2  christos 	}
    547  1.13.4.2  christos 
    548  1.13.4.4    martin 	if (!sc->sc_lpiconf_flush)
    549  1.13.4.4    martin 		__asm __volatile ("dsb ishst");
    550  1.13.4.2  christos }
    551  1.13.4.2  christos 
    552  1.13.4.2  christos static void
    553  1.13.4.2  christos gicv3_lpi_establish_irq(struct pic_softc *pic, struct intrsource *is)
    554  1.13.4.2  christos {
    555  1.13.4.2  christos 	struct gicv3_softc * const sc = LPITOSOFTC(pic);
    556  1.13.4.2  christos 
    557  1.13.4.4    martin 	sc->sc_lpiconf.base[is->is_irq] = IPL_TO_LPIPRIO(sc, is->is_ipl) | GIC_LPICONF_Res1;
    558  1.13.4.2  christos 
    559  1.13.4.4    martin 	if (sc->sc_lpiconf_flush)
    560  1.13.4.4    martin 		cpu_dcache_wb_range((vaddr_t)&sc->sc_lpiconf.base[is->is_irq], 1);
    561  1.13.4.4    martin 	else
    562  1.13.4.4    martin 		__asm __volatile ("dsb ishst");
    563  1.13.4.2  christos }
    564  1.13.4.2  christos 
    565  1.13.4.2  christos static void
    566  1.13.4.2  christos gicv3_lpi_cpu_init(struct pic_softc *pic, struct cpu_info *ci)
    567  1.13.4.2  christos {
    568  1.13.4.2  christos 	struct gicv3_softc * const sc = LPITOSOFTC(pic);
    569  1.13.4.2  christos 	struct gicv3_lpi_callback *cb;
    570  1.13.4.4    martin 	uint64_t propbase, pendbase;
    571  1.13.4.2  christos 	uint32_t ctlr;
    572  1.13.4.2  christos 
    573  1.13.4.2  christos 	/* If physical LPIs are not supported on this redistributor, just return. */
    574  1.13.4.2  christos 	const uint64_t typer = gicr_read_8(sc, ci->ci_gic_redist, GICR_TYPER);
    575  1.13.4.2  christos 	if ((typer & GICR_TYPER_PLPIS) == 0)
    576  1.13.4.2  christos 		return;
    577  1.13.4.2  christos 
    578  1.13.4.2  christos 	/* Interrupt target address for this CPU, used by ITS when GITS_TYPER.PTA == 0 */
    579  1.13.4.2  christos 	sc->sc_processor_id[cpu_index(ci)] = __SHIFTOUT(typer, GICR_TYPER_Processor_Number);
    580  1.13.4.2  christos 
    581  1.13.4.2  christos 	/* Disable LPIs before making changes */
    582  1.13.4.2  christos 	ctlr = gicr_read_4(sc, ci->ci_gic_redist, GICR_CTLR);
    583  1.13.4.2  christos 	ctlr &= ~GICR_CTLR_Enable_LPIs;
    584  1.13.4.2  christos 	gicr_write_4(sc, ci->ci_gic_redist, GICR_CTLR, ctlr);
    585  1.13.4.2  christos 	arm_dsb();
    586  1.13.4.2  christos 
    587  1.13.4.2  christos 	/* Setup the LPI configuration table */
    588  1.13.4.4    martin 	propbase = sc->sc_lpiconf.segs[0].ds_addr |
    589  1.13.4.2  christos 	    __SHIFTIN(ffs(pic->pic_maxsources) - 1, GICR_PROPBASER_IDbits) |
    590  1.13.4.4    martin 	    __SHIFTIN(GICR_Shareability_IS, GICR_PROPBASER_Shareability) |
    591  1.13.4.4    martin 	    __SHIFTIN(GICR_Cache_NORMAL_RA_WA_WB, GICR_PROPBASER_InnerCache);
    592  1.13.4.2  christos 	gicr_write_8(sc, ci->ci_gic_redist, GICR_PROPBASER, propbase);
    593  1.13.4.4    martin 	propbase = gicr_read_8(sc, ci->ci_gic_redist, GICR_PROPBASER);
    594  1.13.4.4    martin 	if (__SHIFTOUT(propbase, GICR_PROPBASER_Shareability) != GICR_Shareability_IS) {
    595  1.13.4.4    martin 		if (__SHIFTOUT(propbase, GICR_PROPBASER_Shareability) == GICR_Shareability_NS) {
    596  1.13.4.4    martin 			propbase &= ~GICR_PROPBASER_Shareability;
    597  1.13.4.4    martin 			propbase |= __SHIFTIN(GICR_Shareability_NS, GICR_PROPBASER_Shareability);
    598  1.13.4.4    martin 			propbase &= ~GICR_PROPBASER_InnerCache;
    599  1.13.4.4    martin 			propbase |= __SHIFTIN(GICR_Cache_NORMAL_NC, GICR_PROPBASER_InnerCache);
    600  1.13.4.4    martin 			gicr_write_8(sc, ci->ci_gic_redist, GICR_PROPBASER, propbase);
    601  1.13.4.4    martin 		}
    602  1.13.4.4    martin 		sc->sc_lpiconf_flush = true;
    603  1.13.4.4    martin 	}
    604  1.13.4.2  christos 
    605  1.13.4.2  christos 	/* Setup the LPI pending table */
    606  1.13.4.4    martin 	pendbase = sc->sc_lpipend[cpu_index(ci)].segs[0].ds_addr |
    607  1.13.4.4    martin 	    __SHIFTIN(GICR_Shareability_IS, GICR_PENDBASER_Shareability) |
    608  1.13.4.4    martin 	    __SHIFTIN(GICR_Cache_NORMAL_RA_WA_WB, GICR_PENDBASER_InnerCache);
    609  1.13.4.2  christos 	gicr_write_8(sc, ci->ci_gic_redist, GICR_PENDBASER, pendbase);
    610  1.13.4.4    martin 	pendbase = gicr_read_8(sc, ci->ci_gic_redist, GICR_PENDBASER);
    611  1.13.4.4    martin 	if (__SHIFTOUT(pendbase, GICR_PENDBASER_Shareability) == GICR_Shareability_NS) {
    612  1.13.4.4    martin 		pendbase &= ~GICR_PENDBASER_Shareability;
    613  1.13.4.4    martin 		pendbase |= __SHIFTIN(GICR_Shareability_NS, GICR_PENDBASER_Shareability);
    614  1.13.4.4    martin 		pendbase &= ~GICR_PENDBASER_InnerCache;
    615  1.13.4.4    martin 		pendbase |= __SHIFTIN(GICR_Cache_NORMAL_NC, GICR_PENDBASER_InnerCache);
    616  1.13.4.4    martin 		gicr_write_8(sc, ci->ci_gic_redist, GICR_PENDBASER, pendbase);
    617  1.13.4.4    martin 	}
    618  1.13.4.2  christos 
    619  1.13.4.2  christos 	/* Enable LPIs */
    620  1.13.4.2  christos 	ctlr = gicr_read_4(sc, ci->ci_gic_redist, GICR_CTLR);
    621  1.13.4.2  christos 	ctlr |= GICR_CTLR_Enable_LPIs;
    622  1.13.4.2  christos 	gicr_write_4(sc, ci->ci_gic_redist, GICR_CTLR, ctlr);
    623  1.13.4.2  christos 	arm_dsb();
    624  1.13.4.2  christos 
    625  1.13.4.2  christos 	/* Setup ITS if present */
    626  1.13.4.2  christos 	LIST_FOREACH(cb, &sc->sc_lpi_callbacks, list)
    627  1.13.4.2  christos 		cb->cpu_init(cb->priv, ci);
    628  1.13.4.2  christos }
    629  1.13.4.2  christos 
    630  1.13.4.2  christos #ifdef MULTIPROCESSOR
    631  1.13.4.2  christos static void
    632  1.13.4.2  christos gicv3_lpi_get_affinity(struct pic_softc *pic, size_t irq, kcpuset_t *affinity)
    633  1.13.4.2  christos {
    634  1.13.4.2  christos 	struct gicv3_softc * const sc = LPITOSOFTC(pic);
    635  1.13.4.2  christos 	struct gicv3_lpi_callback *cb;
    636  1.13.4.2  christos 
    637  1.13.4.3    martin 	kcpuset_zero(affinity);
    638  1.13.4.2  christos 	LIST_FOREACH(cb, &sc->sc_lpi_callbacks, list)
    639  1.13.4.2  christos 		cb->get_affinity(cb->priv, irq, affinity);
    640  1.13.4.2  christos }
    641  1.13.4.2  christos 
    642  1.13.4.2  christos static int
    643  1.13.4.2  christos gicv3_lpi_set_affinity(struct pic_softc *pic, size_t irq, const kcpuset_t *affinity)
    644  1.13.4.2  christos {
    645  1.13.4.2  christos 	struct gicv3_softc * const sc = LPITOSOFTC(pic);
    646  1.13.4.2  christos 	struct gicv3_lpi_callback *cb;
    647  1.13.4.2  christos 	int error = EINVAL;
    648  1.13.4.2  christos 
    649  1.13.4.2  christos 	LIST_FOREACH(cb, &sc->sc_lpi_callbacks, list) {
    650  1.13.4.2  christos 		error = cb->set_affinity(cb->priv, irq, affinity);
    651  1.13.4.3    martin 		if (error != EPASSTHROUGH)
    652  1.13.4.2  christos 			return error;
    653  1.13.4.2  christos 	}
    654  1.13.4.2  christos 
    655  1.13.4.3    martin 	return EINVAL;
    656  1.13.4.2  christos }
    657  1.13.4.2  christos #endif
    658  1.13.4.2  christos 
    659  1.13.4.2  christos static const struct pic_ops gicv3_lpiops = {
    660  1.13.4.2  christos 	.pic_unblock_irqs = gicv3_lpi_unblock_irqs,
    661  1.13.4.2  christos 	.pic_block_irqs = gicv3_lpi_block_irqs,
    662  1.13.4.2  christos 	.pic_establish_irq = gicv3_lpi_establish_irq,
    663  1.13.4.2  christos #ifdef MULTIPROCESSOR
    664  1.13.4.2  christos 	.pic_cpu_init = gicv3_lpi_cpu_init,
    665  1.13.4.2  christos 	.pic_get_affinity = gicv3_lpi_get_affinity,
    666  1.13.4.2  christos 	.pic_set_affinity = gicv3_lpi_set_affinity,
    667  1.13.4.2  christos #endif
    668  1.13.4.2  christos };
    669  1.13.4.2  christos 
    670  1.13.4.2  christos void
    671  1.13.4.2  christos gicv3_dma_alloc(struct gicv3_softc *sc, struct gicv3_dma *dma, bus_size_t len, bus_size_t align)
    672  1.13.4.2  christos {
    673  1.13.4.2  christos 	int nsegs, error;
    674  1.13.4.2  christos 
    675  1.13.4.2  christos 	dma->len = len;
    676  1.13.4.2  christos 	error = bus_dmamem_alloc(sc->sc_dmat, dma->len, align, 0, dma->segs, 1, &nsegs, BUS_DMA_WAITOK);
    677  1.13.4.2  christos 	if (error)
    678  1.13.4.2  christos 		panic("bus_dmamem_alloc failed: %d", error);
    679  1.13.4.2  christos 	error = bus_dmamem_map(sc->sc_dmat, dma->segs, nsegs, len, (void **)&dma->base, BUS_DMA_WAITOK);
    680  1.13.4.2  christos 	if (error)
    681  1.13.4.2  christos 		panic("bus_dmamem_map failed: %d", error);
    682  1.13.4.2  christos 	error = bus_dmamap_create(sc->sc_dmat, len, 1, len, 0, BUS_DMA_WAITOK, &dma->map);
    683  1.13.4.2  christos 	if (error)
    684  1.13.4.2  christos 		panic("bus_dmamap_create failed: %d", error);
    685  1.13.4.2  christos 	error = bus_dmamap_load(sc->sc_dmat, dma->map, dma->base, dma->len, NULL, BUS_DMA_WAITOK);
    686  1.13.4.2  christos 	if (error)
    687  1.13.4.2  christos 		panic("bus_dmamap_load failed: %d", error);
    688  1.13.4.2  christos 
    689  1.13.4.2  christos 	memset(dma->base, 0, dma->len);
    690  1.13.4.2  christos 	bus_dmamap_sync(sc->sc_dmat, dma->map, 0, dma->len, BUS_DMASYNC_PREWRITE);
    691  1.13.4.2  christos }
    692  1.13.4.2  christos 
    693  1.13.4.2  christos static void
    694  1.13.4.2  christos gicv3_lpi_init(struct gicv3_softc *sc)
    695  1.13.4.2  christos {
    696  1.13.4.2  christos 	/*
    697  1.13.4.2  christos 	 * Allocate LPI configuration table
    698  1.13.4.2  christos 	 */
    699  1.13.4.2  christos 	gicv3_dma_alloc(sc, &sc->sc_lpiconf, sc->sc_lpi.pic_maxsources, 0x1000);
    700  1.13.4.2  christos 	KASSERT((sc->sc_lpiconf.segs[0].ds_addr & ~GICR_PROPBASER_Physical_Address) == 0);
    701  1.13.4.2  christos 
    702  1.13.4.2  christos 	/*
    703  1.13.4.2  christos 	 * Allocate LPI pending tables
    704  1.13.4.2  christos 	 */
    705  1.13.4.4    martin 	const bus_size_t lpipend_sz = (8192 + sc->sc_lpi.pic_maxsources) / NBBY;
    706  1.13.4.2  christos 	for (int cpuindex = 0; cpuindex < ncpu; cpuindex++) {
    707  1.13.4.2  christos 		gicv3_dma_alloc(sc, &sc->sc_lpipend[cpuindex], lpipend_sz, 0x10000);
    708  1.13.4.2  christos 		KASSERT((sc->sc_lpipend[cpuindex].segs[0].ds_addr & ~GICR_PENDBASER_Physical_Address) == 0);
    709  1.13.4.2  christos 	}
    710  1.13.4.2  christos }
    711  1.13.4.2  christos 
    712  1.13.4.2  christos void
    713  1.13.4.2  christos gicv3_irq_handler(void *frame)
    714  1.13.4.2  christos {
    715  1.13.4.2  christos 	struct cpu_info * const ci = curcpu();
    716  1.13.4.2  christos 	struct gicv3_softc * const sc = gicv3_softc;
    717  1.13.4.2  christos 	struct pic_softc *pic;
    718  1.13.4.2  christos 	const int oldipl = ci->ci_cpl;
    719  1.13.4.2  christos 
    720  1.13.4.2  christos 	ci->ci_data.cpu_nintr++;
    721  1.13.4.2  christos 
    722  1.13.4.2  christos 	for (;;) {
    723  1.13.4.2  christos 		const uint32_t iar = icc_iar1_read();
    724  1.13.4.4    martin 		arm_dsb();
    725  1.13.4.2  christos 		const uint32_t irq = __SHIFTOUT(iar, ICC_IAR_INTID);
    726  1.13.4.2  christos 		if (irq == ICC_IAR_INTID_SPURIOUS)
    727  1.13.4.2  christos 			break;
    728  1.13.4.2  christos 
    729  1.13.4.2  christos 		pic = irq >= GIC_LPI_BASE ? &sc->sc_lpi : &sc->sc_pic;
    730  1.13.4.2  christos 		if (irq - pic->pic_irqbase >= pic->pic_maxsources)
    731  1.13.4.2  christos 			continue;
    732  1.13.4.2  christos 
    733  1.13.4.2  christos 		struct intrsource * const is = pic->pic_sources[irq - pic->pic_irqbase];
    734  1.13.4.2  christos 		KASSERT(is != NULL);
    735  1.13.4.2  christos 
    736  1.13.4.4    martin 		const bool early_eoi = irq < GIC_LPI_BASE && is->is_type == IST_EDGE;
    737  1.13.4.4    martin 
    738  1.13.4.2  christos 		const int ipl = is->is_ipl;
    739  1.13.4.4    martin 		if (__predict_false(ipl < ci->ci_cpl)) {
    740  1.13.4.4    martin 			pic_do_pending_ints(I32_bit, ipl, frame);
    741  1.13.4.4    martin 		} else {
    742  1.13.4.4    martin 			gicv3_set_priority(pic, ipl);
    743  1.13.4.4    martin 			ci->ci_cpl = ipl;
    744  1.13.4.4    martin 		}
    745  1.13.4.4    martin 
    746  1.13.4.4    martin 		if (early_eoi) {
    747  1.13.4.4    martin 			icc_eoi1r_write(iar);
    748  1.13.4.4    martin 			arm_isb();
    749  1.13.4.4    martin 		}
    750  1.13.4.2  christos 
    751  1.13.4.2  christos 		cpsie(I32_bit);
    752  1.13.4.2  christos 		pic_dispatch(is, frame);
    753  1.13.4.2  christos 		cpsid(I32_bit);
    754  1.13.4.2  christos 
    755  1.13.4.4    martin 		if (!early_eoi) {
    756  1.13.4.4    martin 			icc_eoi1r_write(iar);
    757  1.13.4.4    martin 			arm_isb();
    758  1.13.4.4    martin 		}
    759  1.13.4.2  christos 	}
    760  1.13.4.2  christos 
    761  1.13.4.4    martin 	pic_do_pending_ints(I32_bit, oldipl, frame);
    762  1.13.4.4    martin }
    763  1.13.4.4    martin 
    764  1.13.4.4    martin static int
    765  1.13.4.4    martin gicv3_detect_pmr_bits(struct gicv3_softc *sc)
    766  1.13.4.4    martin {
    767  1.13.4.4    martin 	const uint32_t opmr = icc_pmr_read();
    768  1.13.4.4    martin 	icc_pmr_write(0xbf);
    769  1.13.4.4    martin 	const uint32_t npmr = icc_pmr_read();
    770  1.13.4.4    martin 	icc_pmr_write(opmr);
    771  1.13.4.4    martin 
    772  1.13.4.4    martin 	return NBBY - (ffs(npmr) - 1);
    773  1.13.4.4    martin }
    774  1.13.4.4    martin 
    775  1.13.4.4    martin static int
    776  1.13.4.4    martin gicv3_detect_ipriority_bits(struct gicv3_softc *sc)
    777  1.13.4.4    martin {
    778  1.13.4.4    martin 	const uint32_t oipriorityr = gicd_read_4(sc, GICD_IPRIORITYRn(8));
    779  1.13.4.4    martin 	gicd_write_4(sc, GICD_IPRIORITYRn(8), oipriorityr | 0xff);
    780  1.13.4.4    martin 	const uint32_t nipriorityr = gicd_read_4(sc, GICD_IPRIORITYRn(8));
    781  1.13.4.4    martin 	gicd_write_4(sc, GICD_IPRIORITYRn(8), oipriorityr);
    782  1.13.4.4    martin 
    783  1.13.4.4    martin 	return NBBY - (ffs(nipriorityr & 0xff) - 1);
    784  1.13.4.2  christos }
    785  1.13.4.2  christos 
    786  1.13.4.2  christos int
    787  1.13.4.2  christos gicv3_init(struct gicv3_softc *sc)
    788  1.13.4.2  christos {
    789  1.13.4.2  christos 	const uint32_t gicd_typer = gicd_read_4(sc, GICD_TYPER);
    790  1.13.4.4    martin 	const uint32_t gicd_ctrl = gicd_read_4(sc, GICD_CTRL);
    791  1.13.4.2  christos 	int n;
    792  1.13.4.2  christos 
    793  1.13.4.2  christos 	KASSERT(CPU_IS_PRIMARY(curcpu()));
    794  1.13.4.2  christos 
    795  1.13.4.2  christos 	LIST_INIT(&sc->sc_lpi_callbacks);
    796  1.13.4.2  christos 
    797  1.13.4.2  christos 	for (n = 0; n < MAXCPUS; n++)
    798  1.13.4.2  christos 		sc->sc_irouter[n] = UINT64_MAX;
    799  1.13.4.2  christos 
    800  1.13.4.4    martin 	sc->sc_priority_shift = 4;
    801  1.13.4.4    martin 	sc->sc_pmr_shift = 4;
    802  1.13.4.4    martin 
    803  1.13.4.4    martin 	if ((gicd_ctrl & GICD_CTRL_DS) == 0) {
    804  1.13.4.4    martin 		const int pmr_bits = gicv3_detect_pmr_bits(sc);
    805  1.13.4.4    martin 		const int ipriority_bits = gicv3_detect_ipriority_bits(sc);
    806  1.13.4.4    martin 
    807  1.13.4.4    martin 		if (ipriority_bits != pmr_bits)
    808  1.13.4.4    martin 			--sc->sc_priority_shift;
    809  1.13.4.4    martin 
    810  1.13.4.4    martin 		aprint_verbose_dev(sc->sc_dev, "%d pmr bits, %d ipriority bits\n",
    811  1.13.4.4    martin 		    pmr_bits, ipriority_bits);
    812  1.13.4.4    martin 	} else {
    813  1.13.4.4    martin 		aprint_verbose_dev(sc->sc_dev, "security disabled\n");
    814  1.13.4.4    martin 	}
    815  1.13.4.4    martin 
    816  1.13.4.4    martin 	aprint_verbose_dev(sc->sc_dev, "priority shift %d, pmr shift %d\n",
    817  1.13.4.4    martin 	    sc->sc_priority_shift, sc->sc_pmr_shift);
    818  1.13.4.4    martin 
    819  1.13.4.2  christos 	sc->sc_pic.pic_ops = &gicv3_picops;
    820  1.13.4.2  christos 	sc->sc_pic.pic_maxsources = GICD_TYPER_LINES(gicd_typer);
    821  1.13.4.2  christos 	snprintf(sc->sc_pic.pic_name, sizeof(sc->sc_pic.pic_name), "gicv3");
    822  1.13.4.2  christos #ifdef MULTIPROCESSOR
    823  1.13.4.2  christos 	sc->sc_pic.pic_cpus = kcpuset_running;
    824  1.13.4.2  christos #endif
    825  1.13.4.2  christos 	pic_add(&sc->sc_pic, 0);
    826  1.13.4.2  christos 
    827  1.13.4.2  christos 	if ((gicd_typer & GICD_TYPER_LPIS) != 0) {
    828  1.13.4.2  christos 		sc->sc_lpi.pic_ops = &gicv3_lpiops;
    829  1.13.4.2  christos 		sc->sc_lpi.pic_maxsources = 8192;	/* Min. required by GICv3 spec */
    830  1.13.4.2  christos 		snprintf(sc->sc_lpi.pic_name, sizeof(sc->sc_lpi.pic_name), "gicv3-lpi");
    831  1.13.4.2  christos 		pic_add(&sc->sc_lpi, GIC_LPI_BASE);
    832  1.13.4.2  christos 
    833  1.13.4.3    martin 		sc->sc_lpi_pool = vmem_create("gicv3-lpi", 0, sc->sc_lpi.pic_maxsources,
    834  1.13.4.3    martin 		    1, NULL, NULL, NULL, 0, VM_SLEEP, IPL_HIGH);
    835  1.13.4.3    martin 		if (sc->sc_lpi_pool == NULL)
    836  1.13.4.3    martin 			panic("failed to create gicv3 lpi pool\n");
    837  1.13.4.3    martin 
    838  1.13.4.2  christos 		gicv3_lpi_init(sc);
    839  1.13.4.2  christos 	}
    840  1.13.4.2  christos 
    841  1.13.4.2  christos 	KASSERT(gicv3_softc == NULL);
    842  1.13.4.2  christos 	gicv3_softc = sc;
    843  1.13.4.2  christos 
    844  1.13.4.2  christos 	for (int i = 0; i < sc->sc_bsh_r_count; i++) {
    845  1.13.4.2  christos 		const uint64_t gicr_typer = gicr_read_8(sc, i, GICR_TYPER);
    846  1.13.4.2  christos 		const u_int aff0 = __SHIFTOUT(gicr_typer, GICR_TYPER_Affinity_Value_Aff0);
    847  1.13.4.2  christos 		const u_int aff1 = __SHIFTOUT(gicr_typer, GICR_TYPER_Affinity_Value_Aff1);
    848  1.13.4.2  christos 		const u_int aff2 = __SHIFTOUT(gicr_typer, GICR_TYPER_Affinity_Value_Aff2);
    849  1.13.4.2  christos 		const u_int aff3 = __SHIFTOUT(gicr_typer, GICR_TYPER_Affinity_Value_Aff3);
    850  1.13.4.2  christos 
    851  1.13.4.2  christos 		aprint_debug_dev(sc->sc_dev, "redist %d: cpu %d.%d.%d.%d\n",
    852  1.13.4.2  christos 		    i, aff3, aff2, aff1, aff0);
    853  1.13.4.2  christos 	}
    854  1.13.4.2  christos 
    855  1.13.4.2  christos 	gicv3_dist_enable(sc);
    856  1.13.4.2  christos 
    857  1.13.4.2  christos 	gicv3_cpu_init(&sc->sc_pic, curcpu());
    858  1.13.4.2  christos 	if ((gicd_typer & GICD_TYPER_LPIS) != 0)
    859  1.13.4.2  christos 		gicv3_lpi_cpu_init(&sc->sc_lpi, curcpu());
    860  1.13.4.2  christos 
    861  1.13.4.2  christos #ifdef __HAVE_PIC_FAST_SOFTINTS
    862  1.13.4.2  christos 	intr_establish_xname(SOFTINT_BIO, IPL_SOFTBIO, IST_MPSAFE | IST_EDGE, pic_handle_softint, (void *)SOFTINT_BIO, "softint bio");
    863  1.13.4.2  christos 	intr_establish_xname(SOFTINT_CLOCK, IPL_SOFTCLOCK, IST_MPSAFE | IST_EDGE, pic_handle_softint, (void *)SOFTINT_CLOCK, "softint clock");
    864  1.13.4.2  christos 	intr_establish_xname(SOFTINT_NET, IPL_SOFTNET, IST_MPSAFE | IST_EDGE, pic_handle_softint, (void *)SOFTINT_NET, "softint net");
    865  1.13.4.2  christos 	intr_establish_xname(SOFTINT_SERIAL, IPL_SOFTSERIAL, IST_MPSAFE | IST_EDGE, pic_handle_softint, (void *)SOFTINT_SERIAL, "softint serial");
    866  1.13.4.2  christos #endif
    867  1.13.4.2  christos 
    868  1.13.4.2  christos #ifdef MULTIPROCESSOR
    869  1.13.4.2  christos 	intr_establish_xname(IPI_AST, IPL_VM, IST_MPSAFE | IST_EDGE, pic_ipi_ast, (void *)-1, "IPI ast");
    870  1.13.4.2  christos 	intr_establish_xname(IPI_XCALL, IPL_HIGH, IST_MPSAFE | IST_EDGE, pic_ipi_xcall, (void *)-1, "IPI xcall");
    871  1.13.4.2  christos 	intr_establish_xname(IPI_GENERIC, IPL_HIGH, IST_MPSAFE | IST_EDGE, pic_ipi_generic, (void *)-1, "IPI generic");
    872  1.13.4.2  christos 	intr_establish_xname(IPI_NOP, IPL_VM, IST_MPSAFE | IST_EDGE, pic_ipi_nop, (void *)-1, "IPI nop");
    873  1.13.4.2  christos 	intr_establish_xname(IPI_SHOOTDOWN, IPL_SCHED, IST_MPSAFE | IST_EDGE, pic_ipi_shootdown, (void *)-1, "IPI shootdown");
    874  1.13.4.2  christos #ifdef DDB
    875  1.13.4.2  christos 	intr_establish_xname(IPI_DDB, IPL_HIGH, IST_MPSAFE | IST_EDGE, pic_ipi_ddb, NULL, "IPI ddb");
    876  1.13.4.2  christos #endif
    877  1.13.4.2  christos #ifdef __HAVE_PREEMPTION
    878  1.13.4.2  christos 	intr_establish_xname(IPI_KPREEMPT, IPL_VM, IST_MPSAFE | IST_EDGE, pic_ipi_kpreempt, (void *)-1, "IPI kpreempt");
    879  1.13.4.2  christos #endif
    880  1.13.4.2  christos #endif
    881  1.13.4.2  christos 
    882  1.13.4.2  christos 	return 0;
    883  1.13.4.2  christos }
    884