Home | History | Annotate | Line # | Download | only in cortex
gicv3.c revision 1.13.4.2
      1  1.13.4.2  christos /* $NetBSD: gicv3.c,v 1.13.4.2 2019/06/10 22:05:52 christos 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.2  christos __KERNEL_RCSID(0, "$NetBSD: gicv3.c,v 1.13.4.2 2019/06/10 22:05:52 christos 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.2  christos 
     44  1.13.4.2  christos #include <arm/locore.h>
     45  1.13.4.2  christos #include <arm/armreg.h>
     46  1.13.4.2  christos 
     47  1.13.4.2  christos #include <arm/cortex/gicv3.h>
     48  1.13.4.2  christos #include <arm/cortex/gic_reg.h>
     49  1.13.4.2  christos 
     50  1.13.4.2  christos #define	PICTOSOFTC(pic)	\
     51  1.13.4.2  christos 	((void *)((uintptr_t)(pic) - offsetof(struct gicv3_softc, sc_pic)))
     52  1.13.4.2  christos #define	LPITOSOFTC(lpi) \
     53  1.13.4.2  christos 	((void *)((uintptr_t)(lpi) - offsetof(struct gicv3_softc, sc_lpi)))
     54  1.13.4.2  christos 
     55  1.13.4.2  christos #define	IPL_TO_PRIORITY(ipl)	((IPL_HIGH - (ipl)) << 4)
     56  1.13.4.2  christos 
     57  1.13.4.2  christos static struct gicv3_softc *gicv3_softc;
     58  1.13.4.2  christos 
     59  1.13.4.2  christos static inline uint32_t
     60  1.13.4.2  christos gicd_read_4(struct gicv3_softc *sc, bus_size_t reg)
     61  1.13.4.2  christos {
     62  1.13.4.2  christos 	return bus_space_read_4(sc->sc_bst, sc->sc_bsh_d, reg);
     63  1.13.4.2  christos }
     64  1.13.4.2  christos 
     65  1.13.4.2  christos static inline void
     66  1.13.4.2  christos gicd_write_4(struct gicv3_softc *sc, bus_size_t reg, uint32_t val)
     67  1.13.4.2  christos {
     68  1.13.4.2  christos 	bus_space_write_4(sc->sc_bst, sc->sc_bsh_d, reg, val);
     69  1.13.4.2  christos }
     70  1.13.4.2  christos 
     71  1.13.4.2  christos static inline uint64_t
     72  1.13.4.2  christos gicd_read_8(struct gicv3_softc *sc, bus_size_t reg)
     73  1.13.4.2  christos {
     74  1.13.4.2  christos 	return bus_space_read_8(sc->sc_bst, sc->sc_bsh_d, reg);
     75  1.13.4.2  christos }
     76  1.13.4.2  christos 
     77  1.13.4.2  christos static inline void
     78  1.13.4.2  christos gicd_write_8(struct gicv3_softc *sc, bus_size_t reg, uint64_t val)
     79  1.13.4.2  christos {
     80  1.13.4.2  christos 	bus_space_write_8(sc->sc_bst, sc->sc_bsh_d, reg, val);
     81  1.13.4.2  christos }
     82  1.13.4.2  christos 
     83  1.13.4.2  christos static inline uint32_t
     84  1.13.4.2  christos gicr_read_4(struct gicv3_softc *sc, u_int index, bus_size_t reg)
     85  1.13.4.2  christos {
     86  1.13.4.2  christos 	KASSERT(index < sc->sc_bsh_r_count);
     87  1.13.4.2  christos 	return bus_space_read_4(sc->sc_bst, sc->sc_bsh_r[index], reg);
     88  1.13.4.2  christos }
     89  1.13.4.2  christos 
     90  1.13.4.2  christos static inline void
     91  1.13.4.2  christos gicr_write_4(struct gicv3_softc *sc, u_int index, bus_size_t reg, uint32_t val)
     92  1.13.4.2  christos {
     93  1.13.4.2  christos 	KASSERT(index < sc->sc_bsh_r_count);
     94  1.13.4.2  christos 	bus_space_write_4(sc->sc_bst, sc->sc_bsh_r[index], reg, val);
     95  1.13.4.2  christos }
     96  1.13.4.2  christos 
     97  1.13.4.2  christos static inline uint64_t
     98  1.13.4.2  christos gicr_read_8(struct gicv3_softc *sc, u_int index, bus_size_t reg)
     99  1.13.4.2  christos {
    100  1.13.4.2  christos 	KASSERT(index < sc->sc_bsh_r_count);
    101  1.13.4.2  christos 	return bus_space_read_8(sc->sc_bst, sc->sc_bsh_r[index], reg);
    102  1.13.4.2  christos }
    103  1.13.4.2  christos 
    104  1.13.4.2  christos static inline void
    105  1.13.4.2  christos gicr_write_8(struct gicv3_softc *sc, u_int index, bus_size_t reg, uint64_t val)
    106  1.13.4.2  christos {
    107  1.13.4.2  christos 	KASSERT(index < sc->sc_bsh_r_count);
    108  1.13.4.2  christos 	bus_space_write_8(sc->sc_bst, sc->sc_bsh_r[index], reg, val);
    109  1.13.4.2  christos }
    110  1.13.4.2  christos 
    111  1.13.4.2  christos static void
    112  1.13.4.2  christos gicv3_unblock_irqs(struct pic_softc *pic, size_t irqbase, uint32_t mask)
    113  1.13.4.2  christos {
    114  1.13.4.2  christos 	struct gicv3_softc * const sc = PICTOSOFTC(pic);
    115  1.13.4.2  christos 	struct cpu_info * const ci = curcpu();
    116  1.13.4.2  christos 	const u_int group = irqbase / 32;
    117  1.13.4.2  christos 
    118  1.13.4.2  christos 	if (group == 0) {
    119  1.13.4.2  christos 		sc->sc_enabled_sgippi |= mask;
    120  1.13.4.2  christos 		gicr_write_4(sc, ci->ci_gic_redist, GICR_ISENABLER0, mask);
    121  1.13.4.2  christos 		while (gicr_read_4(sc, ci->ci_gic_redist, GICR_CTLR) & GICR_CTLR_RWP)
    122  1.13.4.2  christos 			;
    123  1.13.4.2  christos 	} else {
    124  1.13.4.2  christos 		gicd_write_4(sc, GICD_ISENABLERn(group), mask);
    125  1.13.4.2  christos 		while (gicd_read_4(sc, GICD_CTRL) & GICD_CTRL_RWP)
    126  1.13.4.2  christos 			;
    127  1.13.4.2  christos 	}
    128  1.13.4.2  christos }
    129  1.13.4.2  christos 
    130  1.13.4.2  christos static void
    131  1.13.4.2  christos gicv3_block_irqs(struct pic_softc *pic, size_t irqbase, uint32_t mask)
    132  1.13.4.2  christos {
    133  1.13.4.2  christos 	struct gicv3_softc * const sc = PICTOSOFTC(pic);
    134  1.13.4.2  christos 	struct cpu_info * const ci = curcpu();
    135  1.13.4.2  christos 	const u_int group = irqbase / 32;
    136  1.13.4.2  christos 
    137  1.13.4.2  christos 	if (group == 0) {
    138  1.13.4.2  christos 		sc->sc_enabled_sgippi &= ~mask;
    139  1.13.4.2  christos 		gicr_write_4(sc, ci->ci_gic_redist, GICR_ICENABLER0, mask);
    140  1.13.4.2  christos 		while (gicr_read_4(sc, ci->ci_gic_redist, GICR_CTLR) & GICR_CTLR_RWP)
    141  1.13.4.2  christos 			;
    142  1.13.4.2  christos 	} else {
    143  1.13.4.2  christos 		gicd_write_4(sc, GICD_ICENABLERn(group), mask);
    144  1.13.4.2  christos 		while (gicd_read_4(sc, GICD_CTRL) & GICD_CTRL_RWP)
    145  1.13.4.2  christos 			;
    146  1.13.4.2  christos 	}
    147  1.13.4.2  christos }
    148  1.13.4.2  christos 
    149  1.13.4.2  christos static void
    150  1.13.4.2  christos gicv3_establish_irq(struct pic_softc *pic, struct intrsource *is)
    151  1.13.4.2  christos {
    152  1.13.4.2  christos 	struct gicv3_softc * const sc = PICTOSOFTC(pic);
    153  1.13.4.2  christos 	const u_int group = is->is_irq / 32;
    154  1.13.4.2  christos 	uint32_t ipriority, icfg;
    155  1.13.4.2  christos 	uint64_t irouter;
    156  1.13.4.2  christos 	u_int n;
    157  1.13.4.2  christos 
    158  1.13.4.2  christos 	const u_int ipriority_val = 0x80 | IPL_TO_PRIORITY(is->is_ipl);
    159  1.13.4.2  christos 	const u_int ipriority_shift = (is->is_irq & 0x3) * 8;
    160  1.13.4.2  christos 	const u_int icfg_shift = (is->is_irq & 0xf) * 2;
    161  1.13.4.2  christos 
    162  1.13.4.2  christos 	if (group == 0) {
    163  1.13.4.2  christos 		/* SGIs and PPIs are always MP-safe */
    164  1.13.4.2  christos 		is->is_mpsafe = true;
    165  1.13.4.2  christos 
    166  1.13.4.2  christos 		/* Update interrupt configuration and priority on all redistributors */
    167  1.13.4.2  christos 		for (n = 0; n < sc->sc_bsh_r_count; n++) {
    168  1.13.4.2  christos 			icfg = gicr_read_4(sc, n, GICR_ICFGRn(is->is_irq / 16));
    169  1.13.4.2  christos 			if (is->is_type == IST_LEVEL)
    170  1.13.4.2  christos 				icfg &= ~(0x2 << icfg_shift);
    171  1.13.4.2  christos 			if (is->is_type == IST_EDGE)
    172  1.13.4.2  christos 				icfg |= (0x2 << icfg_shift);
    173  1.13.4.2  christos 			gicr_write_4(sc, n, GICR_ICFGRn(is->is_irq / 16), icfg);
    174  1.13.4.2  christos 
    175  1.13.4.2  christos 			ipriority = gicr_read_4(sc, n, GICR_IPRIORITYRn(is->is_irq / 4));
    176  1.13.4.2  christos 			ipriority &= ~(0xff << ipriority_shift);
    177  1.13.4.2  christos 			ipriority |= (ipriority_val << ipriority_shift);
    178  1.13.4.2  christos 			gicr_write_4(sc, n, GICR_IPRIORITYRn(is->is_irq / 4), ipriority);
    179  1.13.4.2  christos 		}
    180  1.13.4.2  christos 	} else {
    181  1.13.4.2  christos 		if (is->is_mpsafe) {
    182  1.13.4.2  christos 			/* Route MP-safe interrupts to all participating PEs */
    183  1.13.4.2  christos 			irouter = GICD_IROUTER_Interrupt_Routing_mode;
    184  1.13.4.2  christos 		} else {
    185  1.13.4.2  christos 			/* Route non-MP-safe interrupts to the primary PE only */
    186  1.13.4.2  christos 			irouter = sc->sc_irouter[0];
    187  1.13.4.2  christos 		}
    188  1.13.4.2  christos 		gicd_write_8(sc, GICD_IROUTER(is->is_irq), irouter);
    189  1.13.4.2  christos 
    190  1.13.4.2  christos 		/* Update interrupt configuration */
    191  1.13.4.2  christos 		icfg = gicd_read_4(sc, GICD_ICFGRn(is->is_irq / 16));
    192  1.13.4.2  christos 		if (is->is_type == IST_LEVEL)
    193  1.13.4.2  christos 			icfg &= ~(0x2 << icfg_shift);
    194  1.13.4.2  christos 		if (is->is_type == IST_EDGE)
    195  1.13.4.2  christos 			icfg |= (0x2 << icfg_shift);
    196  1.13.4.2  christos 		gicd_write_4(sc, GICD_ICFGRn(is->is_irq / 16), icfg);
    197  1.13.4.2  christos 
    198  1.13.4.2  christos 		/* Update interrupt priority */
    199  1.13.4.2  christos 		ipriority = gicd_read_4(sc, GICD_IPRIORITYRn(is->is_irq / 4));
    200  1.13.4.2  christos 		ipriority &= ~(0xff << ipriority_shift);
    201  1.13.4.2  christos 		ipriority |= (ipriority_val << ipriority_shift);
    202  1.13.4.2  christos 		gicd_write_4(sc, GICD_IPRIORITYRn(is->is_irq / 4), ipriority);
    203  1.13.4.2  christos 	}
    204  1.13.4.2  christos }
    205  1.13.4.2  christos 
    206  1.13.4.2  christos static void
    207  1.13.4.2  christos gicv3_set_priority(struct pic_softc *pic, int ipl)
    208  1.13.4.2  christos {
    209  1.13.4.2  christos 	icc_pmr_write(IPL_TO_PRIORITY(ipl) << 1);
    210  1.13.4.2  christos }
    211  1.13.4.2  christos 
    212  1.13.4.2  christos static void
    213  1.13.4.2  christos gicv3_dist_enable(struct gicv3_softc *sc)
    214  1.13.4.2  christos {
    215  1.13.4.2  christos 	uint32_t gicd_ctrl;
    216  1.13.4.2  christos 	u_int n;
    217  1.13.4.2  christos 
    218  1.13.4.2  christos 	/* Disable the distributor */
    219  1.13.4.2  christos 	gicd_write_4(sc, GICD_CTRL, 0);
    220  1.13.4.2  christos 
    221  1.13.4.2  christos 	/* Wait for register write to complete */
    222  1.13.4.2  christos 	while (gicd_read_4(sc, GICD_CTRL) & GICD_CTRL_RWP)
    223  1.13.4.2  christos 		;
    224  1.13.4.2  christos 
    225  1.13.4.2  christos 	/* Clear all INTID enable bits */
    226  1.13.4.2  christos 	for (n = 32; n < sc->sc_pic.pic_maxsources; n += 32)
    227  1.13.4.2  christos 		gicd_write_4(sc, GICD_ICENABLERn(n / 32), ~0);
    228  1.13.4.2  christos 
    229  1.13.4.2  christos 	/* Set default priorities to lowest */
    230  1.13.4.2  christos 	for (n = 32; n < sc->sc_pic.pic_maxsources; n += 4)
    231  1.13.4.2  christos 		gicd_write_4(sc, GICD_IPRIORITYRn(n / 4), ~0);
    232  1.13.4.2  christos 
    233  1.13.4.2  christos 	/* Set all interrupts to G1NS */
    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_IGROUPRn(n / 32), ~0);
    236  1.13.4.2  christos 		gicd_write_4(sc, GICD_IGRPMODRn(n / 32), 0);
    237  1.13.4.2  christos 	}
    238  1.13.4.2  christos 
    239  1.13.4.2  christos 	/* Set all interrupts level-sensitive by default */
    240  1.13.4.2  christos 	for (n = 32; n < sc->sc_pic.pic_maxsources; n += 16)
    241  1.13.4.2  christos 		gicd_write_4(sc, GICD_ICFGRn(n / 16), 0);
    242  1.13.4.2  christos 
    243  1.13.4.2  christos 	/* Wait for register writes to complete */
    244  1.13.4.2  christos 	while (gicd_read_4(sc, GICD_CTRL) & GICD_CTRL_RWP)
    245  1.13.4.2  christos 		;
    246  1.13.4.2  christos 
    247  1.13.4.2  christos 	/* Enable Affinity routing and G1NS interrupts */
    248  1.13.4.2  christos 	gicd_ctrl = GICD_CTRL_EnableGrp1A | GICD_CTRL_Enable | GICD_CTRL_ARE_NS;
    249  1.13.4.2  christos 	gicd_write_4(sc, GICD_CTRL, gicd_ctrl);
    250  1.13.4.2  christos }
    251  1.13.4.2  christos 
    252  1.13.4.2  christos static void
    253  1.13.4.2  christos gicv3_redist_enable(struct gicv3_softc *sc, struct cpu_info *ci)
    254  1.13.4.2  christos {
    255  1.13.4.2  christos 	uint32_t icfg;
    256  1.13.4.2  christos 	u_int n, o;
    257  1.13.4.2  christos 
    258  1.13.4.2  christos 	/* Clear INTID enable bits */
    259  1.13.4.2  christos 	gicr_write_4(sc, ci->ci_gic_redist, GICR_ICENABLER0, ~0);
    260  1.13.4.2  christos 
    261  1.13.4.2  christos 	/* Wait for register write to complete */
    262  1.13.4.2  christos 	while (gicr_read_4(sc, ci->ci_gic_redist, GICR_CTLR) & GICR_CTLR_RWP)
    263  1.13.4.2  christos 		;
    264  1.13.4.2  christos 
    265  1.13.4.2  christos 	/* Set default priorities */
    266  1.13.4.2  christos 	for (n = 0; n < 32; n += 4) {
    267  1.13.4.2  christos 		uint32_t priority = 0;
    268  1.13.4.2  christos 		size_t byte_shift = 0;
    269  1.13.4.2  christos 		for (o = 0; o < 4; o++, byte_shift += 8) {
    270  1.13.4.2  christos 			struct intrsource * const is = sc->sc_pic.pic_sources[n + o];
    271  1.13.4.2  christos 			if (is == NULL)
    272  1.13.4.2  christos 				priority |= 0xff << byte_shift;
    273  1.13.4.2  christos 			else {
    274  1.13.4.2  christos 				const u_int ipriority_val = 0x80 | IPL_TO_PRIORITY(is->is_ipl);
    275  1.13.4.2  christos 				priority |= ipriority_val << byte_shift;
    276  1.13.4.2  christos 			}
    277  1.13.4.2  christos 		}
    278  1.13.4.2  christos 		gicr_write_4(sc, ci->ci_gic_redist, GICR_IPRIORITYRn(n / 4), priority);
    279  1.13.4.2  christos 	}
    280  1.13.4.2  christos 
    281  1.13.4.2  christos 	/* Set all interrupts to G1NS */
    282  1.13.4.2  christos 	gicr_write_4(sc, ci->ci_gic_redist, GICR_IGROUPR0, ~0);
    283  1.13.4.2  christos 	gicr_write_4(sc, ci->ci_gic_redist, GICR_IGRPMODR0, 0);
    284  1.13.4.2  christos 
    285  1.13.4.2  christos 	/* Restore PPI configs */
    286  1.13.4.2  christos 	for (n = 0, icfg = 0; n < 16; n++) {
    287  1.13.4.2  christos 		struct intrsource * const is = sc->sc_pic.pic_sources[16 + n];
    288  1.13.4.2  christos 		if (is != NULL && is->is_type == IST_EDGE)
    289  1.13.4.2  christos 			icfg |= (0x2 << (n * 2));
    290  1.13.4.2  christos 	}
    291  1.13.4.2  christos 	gicr_write_4(sc, ci->ci_gic_redist, GICR_ICFGRn(1), icfg);
    292  1.13.4.2  christos 
    293  1.13.4.2  christos 	/* Restore current enable bits */
    294  1.13.4.2  christos 	gicr_write_4(sc, ci->ci_gic_redist, GICR_ISENABLER0, sc->sc_enabled_sgippi);
    295  1.13.4.2  christos 
    296  1.13.4.2  christos 	/* Wait for register write to complete */
    297  1.13.4.2  christos 	while (gicr_read_4(sc, ci->ci_gic_redist, GICR_CTLR) & GICR_CTLR_RWP)
    298  1.13.4.2  christos 		;
    299  1.13.4.2  christos }
    300  1.13.4.2  christos 
    301  1.13.4.2  christos static uint64_t
    302  1.13.4.2  christos gicv3_cpu_identity(void)
    303  1.13.4.2  christos {
    304  1.13.4.2  christos 	u_int aff3, aff2, aff1, aff0;
    305  1.13.4.2  christos 
    306  1.13.4.2  christos #ifdef __aarch64__
    307  1.13.4.2  christos 	const register_t mpidr = reg_mpidr_el1_read();
    308  1.13.4.2  christos 	aff0 = __SHIFTOUT(mpidr, MPIDR_AFF0);
    309  1.13.4.2  christos 	aff1 = __SHIFTOUT(mpidr, MPIDR_AFF1);
    310  1.13.4.2  christos 	aff2 = __SHIFTOUT(mpidr, MPIDR_AFF2);
    311  1.13.4.2  christos 	aff3 = __SHIFTOUT(mpidr, MPIDR_AFF3);
    312  1.13.4.2  christos #else
    313  1.13.4.2  christos 	const register_t mpidr = armreg_mpidr_read();
    314  1.13.4.2  christos 	aff0 = __SHIFTOUT(mpidr, MPIDR_AFF0);
    315  1.13.4.2  christos 	aff1 = __SHIFTOUT(mpidr, MPIDR_AFF1);
    316  1.13.4.2  christos 	aff2 = __SHIFTOUT(mpidr, MPIDR_AFF2);
    317  1.13.4.2  christos 	aff3 = 0;
    318  1.13.4.2  christos #endif
    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.2  christos 	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.2  christos 	       __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.2  christos 					targets = 0;
    443  1.13.4.2  christos 				}
    444  1.13.4.2  christos 				aff = (ci->ci_gic_sgir & ICC_SGIR_EL1_Aff);
    445  1.13.4.2  christos 			}
    446  1.13.4.2  christos 			targets |= (ci->ci_gic_sgir & ICC_SGIR_EL1_TargetList);
    447  1.13.4.2  christos 		}
    448  1.13.4.2  christos 		if (targets != 0)
    449  1.13.4.2  christos 			icc_sgi1r_write(intid | aff | targets);
    450  1.13.4.2  christos 	}
    451  1.13.4.2  christos }
    452  1.13.4.2  christos 
    453  1.13.4.2  christos static void
    454  1.13.4.2  christos gicv3_get_affinity(struct pic_softc *pic, size_t irq, kcpuset_t *affinity)
    455  1.13.4.2  christos {
    456  1.13.4.2  christos 	struct gicv3_softc * const sc = PICTOSOFTC(pic);
    457  1.13.4.2  christos 	const size_t group = irq / 32;
    458  1.13.4.2  christos 	int n;
    459  1.13.4.2  christos 
    460  1.13.4.2  christos 	kcpuset_zero(affinity);
    461  1.13.4.2  christos 	if (group == 0) {
    462  1.13.4.2  christos 		/* All CPUs are targets for group 0 (SGI/PPI) */
    463  1.13.4.2  christos 		for (n = 0; n < ncpu; n++) {
    464  1.13.4.2  christos 			if (sc->sc_irouter[n] != UINT64_MAX)
    465  1.13.4.2  christos 				kcpuset_set(affinity, n);
    466  1.13.4.2  christos 		}
    467  1.13.4.2  christos 	} else {
    468  1.13.4.2  christos 		/* Find distributor targets (SPI) */
    469  1.13.4.2  christos 		const uint64_t irouter = gicd_read_8(sc, GICD_IROUTER(irq));
    470  1.13.4.2  christos 		for (n = 0; n < ncpu; n++) {
    471  1.13.4.2  christos 			if (irouter == GICD_IROUTER_Interrupt_Routing_mode ||
    472  1.13.4.2  christos 			    irouter == sc->sc_irouter[n])
    473  1.13.4.2  christos 				kcpuset_set(affinity, n);
    474  1.13.4.2  christos 		}
    475  1.13.4.2  christos 	}
    476  1.13.4.2  christos }
    477  1.13.4.2  christos 
    478  1.13.4.2  christos static int
    479  1.13.4.2  christos gicv3_set_affinity(struct pic_softc *pic, size_t irq, const kcpuset_t *affinity)
    480  1.13.4.2  christos {
    481  1.13.4.2  christos 	struct gicv3_softc * const sc = PICTOSOFTC(pic);
    482  1.13.4.2  christos 	const size_t group = irq / 32;
    483  1.13.4.2  christos 	uint64_t irouter;
    484  1.13.4.2  christos 
    485  1.13.4.2  christos 	if (group == 0)
    486  1.13.4.2  christos 		return EINVAL;
    487  1.13.4.2  christos 
    488  1.13.4.2  christos 	const int set = kcpuset_countset(affinity);
    489  1.13.4.2  christos 	if (set == ncpu)
    490  1.13.4.2  christos 		irouter = GICD_IROUTER_Interrupt_Routing_mode;
    491  1.13.4.2  christos 	else if (set == 1)
    492  1.13.4.2  christos 		irouter = sc->sc_irouter[kcpuset_ffs(affinity) - 1];
    493  1.13.4.2  christos 	else
    494  1.13.4.2  christos 		return EINVAL;
    495  1.13.4.2  christos 
    496  1.13.4.2  christos 	gicd_write_8(sc, GICD_IROUTER(irq), irouter);
    497  1.13.4.2  christos 
    498  1.13.4.2  christos 	return 0;
    499  1.13.4.2  christos }
    500  1.13.4.2  christos #endif
    501  1.13.4.2  christos 
    502  1.13.4.2  christos static const struct pic_ops gicv3_picops = {
    503  1.13.4.2  christos 	.pic_unblock_irqs = gicv3_unblock_irqs,
    504  1.13.4.2  christos 	.pic_block_irqs = gicv3_block_irqs,
    505  1.13.4.2  christos 	.pic_establish_irq = gicv3_establish_irq,
    506  1.13.4.2  christos 	.pic_set_priority = gicv3_set_priority,
    507  1.13.4.2  christos #ifdef MULTIPROCESSOR
    508  1.13.4.2  christos 	.pic_cpu_init = gicv3_cpu_init,
    509  1.13.4.2  christos 	.pic_ipi_send = gicv3_ipi_send,
    510  1.13.4.2  christos 	.pic_get_affinity = gicv3_get_affinity,
    511  1.13.4.2  christos 	.pic_set_affinity = gicv3_set_affinity,
    512  1.13.4.2  christos #endif
    513  1.13.4.2  christos };
    514  1.13.4.2  christos 
    515  1.13.4.2  christos static void
    516  1.13.4.2  christos gicv3_lpi_unblock_irqs(struct pic_softc *pic, size_t irqbase, uint32_t mask)
    517  1.13.4.2  christos {
    518  1.13.4.2  christos 	struct gicv3_softc * const sc = LPITOSOFTC(pic);
    519  1.13.4.2  christos 	int bit;
    520  1.13.4.2  christos 
    521  1.13.4.2  christos 	while ((bit = ffs(mask)) != 0) {
    522  1.13.4.2  christos 		sc->sc_lpiconf.base[irqbase + bit - 1] |= GIC_LPICONF_Enable;
    523  1.13.4.2  christos 		mask &= ~__BIT(bit - 1);
    524  1.13.4.2  christos 	}
    525  1.13.4.2  christos 
    526  1.13.4.2  christos 	bus_dmamap_sync(sc->sc_dmat, sc->sc_lpiconf.map, irqbase, 32, BUS_DMASYNC_PREWRITE);
    527  1.13.4.2  christos }
    528  1.13.4.2  christos 
    529  1.13.4.2  christos static void
    530  1.13.4.2  christos gicv3_lpi_block_irqs(struct pic_softc *pic, size_t irqbase, uint32_t mask)
    531  1.13.4.2  christos {
    532  1.13.4.2  christos 	struct gicv3_softc * const sc = LPITOSOFTC(pic);
    533  1.13.4.2  christos 	int bit;
    534  1.13.4.2  christos 
    535  1.13.4.2  christos 	while ((bit = ffs(mask)) != 0) {
    536  1.13.4.2  christos 		sc->sc_lpiconf.base[irqbase + bit - 1] &= ~GIC_LPICONF_Enable;
    537  1.13.4.2  christos 		mask &= ~__BIT(bit - 1);
    538  1.13.4.2  christos 	}
    539  1.13.4.2  christos 
    540  1.13.4.2  christos 	bus_dmamap_sync(sc->sc_dmat, sc->sc_lpiconf.map, irqbase, 32, BUS_DMASYNC_PREWRITE);
    541  1.13.4.2  christos }
    542  1.13.4.2  christos 
    543  1.13.4.2  christos static void
    544  1.13.4.2  christos gicv3_lpi_establish_irq(struct pic_softc *pic, struct intrsource *is)
    545  1.13.4.2  christos {
    546  1.13.4.2  christos 	struct gicv3_softc * const sc = LPITOSOFTC(pic);
    547  1.13.4.2  christos 
    548  1.13.4.2  christos 	sc->sc_lpiconf.base[is->is_irq] = 0x80 | IPL_TO_PRIORITY(is->is_ipl) | GIC_LPICONF_Res1;
    549  1.13.4.2  christos 
    550  1.13.4.2  christos 	bus_dmamap_sync(sc->sc_dmat, sc->sc_lpiconf.map, is->is_irq, 1, BUS_DMASYNC_PREWRITE);
    551  1.13.4.2  christos }
    552  1.13.4.2  christos 
    553  1.13.4.2  christos static void
    554  1.13.4.2  christos gicv3_lpi_cpu_init(struct pic_softc *pic, struct cpu_info *ci)
    555  1.13.4.2  christos {
    556  1.13.4.2  christos 	struct gicv3_softc * const sc = LPITOSOFTC(pic);
    557  1.13.4.2  christos 	struct gicv3_lpi_callback *cb;
    558  1.13.4.2  christos 	uint32_t ctlr;
    559  1.13.4.2  christos 
    560  1.13.4.2  christos 	/* If physical LPIs are not supported on this redistributor, just return. */
    561  1.13.4.2  christos 	const uint64_t typer = gicr_read_8(sc, ci->ci_gic_redist, GICR_TYPER);
    562  1.13.4.2  christos 	if ((typer & GICR_TYPER_PLPIS) == 0)
    563  1.13.4.2  christos 		return;
    564  1.13.4.2  christos 
    565  1.13.4.2  christos 	/* Interrupt target address for this CPU, used by ITS when GITS_TYPER.PTA == 0 */
    566  1.13.4.2  christos 	sc->sc_processor_id[cpu_index(ci)] = __SHIFTOUT(typer, GICR_TYPER_Processor_Number);
    567  1.13.4.2  christos 
    568  1.13.4.2  christos 	/* Disable LPIs before making changes */
    569  1.13.4.2  christos 	ctlr = gicr_read_4(sc, ci->ci_gic_redist, GICR_CTLR);
    570  1.13.4.2  christos 	ctlr &= ~GICR_CTLR_Enable_LPIs;
    571  1.13.4.2  christos 	gicr_write_4(sc, ci->ci_gic_redist, GICR_CTLR, ctlr);
    572  1.13.4.2  christos 	arm_dsb();
    573  1.13.4.2  christos 
    574  1.13.4.2  christos 	/* Setup the LPI configuration table */
    575  1.13.4.2  christos 	const uint64_t propbase = sc->sc_lpiconf.segs[0].ds_addr |
    576  1.13.4.2  christos 	    __SHIFTIN(ffs(pic->pic_maxsources) - 1, GICR_PROPBASER_IDbits) |
    577  1.13.4.2  christos 	    __SHIFTIN(GICR_Shareability_NS, GICR_PROPBASER_Shareability) |
    578  1.13.4.2  christos 	    __SHIFTIN(GICR_Cache_NORMAL_NC, GICR_PROPBASER_InnerCache);
    579  1.13.4.2  christos 	gicr_write_8(sc, ci->ci_gic_redist, GICR_PROPBASER, propbase);
    580  1.13.4.2  christos 
    581  1.13.4.2  christos 	/* Setup the LPI pending table */
    582  1.13.4.2  christos 	const uint64_t pendbase = sc->sc_lpipend[cpu_index(ci)].segs[0].ds_addr |
    583  1.13.4.2  christos 	    __SHIFTIN(GICR_Shareability_NS, GICR_PENDBASER_Shareability) |
    584  1.13.4.2  christos 	    __SHIFTIN(GICR_Cache_NORMAL_NC, GICR_PENDBASER_InnerCache) |
    585  1.13.4.2  christos 	    GICR_PENDBASER_PTZ;
    586  1.13.4.2  christos 	gicr_write_8(sc, ci->ci_gic_redist, GICR_PENDBASER, pendbase);
    587  1.13.4.2  christos 
    588  1.13.4.2  christos 	/* Enable LPIs */
    589  1.13.4.2  christos 	ctlr = gicr_read_4(sc, ci->ci_gic_redist, GICR_CTLR);
    590  1.13.4.2  christos 	ctlr |= GICR_CTLR_Enable_LPIs;
    591  1.13.4.2  christos 	gicr_write_4(sc, ci->ci_gic_redist, GICR_CTLR, ctlr);
    592  1.13.4.2  christos 	arm_dsb();
    593  1.13.4.2  christos 
    594  1.13.4.2  christos 	/* Setup ITS if present */
    595  1.13.4.2  christos 	LIST_FOREACH(cb, &sc->sc_lpi_callbacks, list)
    596  1.13.4.2  christos 		cb->cpu_init(cb->priv, ci);
    597  1.13.4.2  christos }
    598  1.13.4.2  christos 
    599  1.13.4.2  christos #ifdef MULTIPROCESSOR
    600  1.13.4.2  christos static void
    601  1.13.4.2  christos gicv3_lpi_get_affinity(struct pic_softc *pic, size_t irq, kcpuset_t *affinity)
    602  1.13.4.2  christos {
    603  1.13.4.2  christos 	struct gicv3_softc * const sc = LPITOSOFTC(pic);
    604  1.13.4.2  christos 	struct gicv3_lpi_callback *cb;
    605  1.13.4.2  christos 
    606  1.13.4.2  christos 	LIST_FOREACH(cb, &sc->sc_lpi_callbacks, list)
    607  1.13.4.2  christos 		cb->get_affinity(cb->priv, irq, affinity);
    608  1.13.4.2  christos }
    609  1.13.4.2  christos 
    610  1.13.4.2  christos static int
    611  1.13.4.2  christos gicv3_lpi_set_affinity(struct pic_softc *pic, size_t irq, const kcpuset_t *affinity)
    612  1.13.4.2  christos {
    613  1.13.4.2  christos 	struct gicv3_softc * const sc = LPITOSOFTC(pic);
    614  1.13.4.2  christos 	struct gicv3_lpi_callback *cb;
    615  1.13.4.2  christos 	int error = EINVAL;
    616  1.13.4.2  christos 
    617  1.13.4.2  christos 	LIST_FOREACH(cb, &sc->sc_lpi_callbacks, list) {
    618  1.13.4.2  christos 		error = cb->set_affinity(cb->priv, irq, affinity);
    619  1.13.4.2  christos 		if (error)
    620  1.13.4.2  christos 			return error;
    621  1.13.4.2  christos 	}
    622  1.13.4.2  christos 
    623  1.13.4.2  christos 	return error;
    624  1.13.4.2  christos }
    625  1.13.4.2  christos #endif
    626  1.13.4.2  christos 
    627  1.13.4.2  christos static const struct pic_ops gicv3_lpiops = {
    628  1.13.4.2  christos 	.pic_unblock_irqs = gicv3_lpi_unblock_irqs,
    629  1.13.4.2  christos 	.pic_block_irqs = gicv3_lpi_block_irqs,
    630  1.13.4.2  christos 	.pic_establish_irq = gicv3_lpi_establish_irq,
    631  1.13.4.2  christos #ifdef MULTIPROCESSOR
    632  1.13.4.2  christos 	.pic_cpu_init = gicv3_lpi_cpu_init,
    633  1.13.4.2  christos 	.pic_get_affinity = gicv3_lpi_get_affinity,
    634  1.13.4.2  christos 	.pic_set_affinity = gicv3_lpi_set_affinity,
    635  1.13.4.2  christos #endif
    636  1.13.4.2  christos };
    637  1.13.4.2  christos 
    638  1.13.4.2  christos void
    639  1.13.4.2  christos gicv3_dma_alloc(struct gicv3_softc *sc, struct gicv3_dma *dma, bus_size_t len, bus_size_t align)
    640  1.13.4.2  christos {
    641  1.13.4.2  christos 	int nsegs, error;
    642  1.13.4.2  christos 
    643  1.13.4.2  christos 	dma->len = len;
    644  1.13.4.2  christos 	error = bus_dmamem_alloc(sc->sc_dmat, dma->len, align, 0, dma->segs, 1, &nsegs, BUS_DMA_WAITOK);
    645  1.13.4.2  christos 	if (error)
    646  1.13.4.2  christos 		panic("bus_dmamem_alloc failed: %d", error);
    647  1.13.4.2  christos 	error = bus_dmamem_map(sc->sc_dmat, dma->segs, nsegs, len, (void **)&dma->base, BUS_DMA_WAITOK);
    648  1.13.4.2  christos 	if (error)
    649  1.13.4.2  christos 		panic("bus_dmamem_map failed: %d", error);
    650  1.13.4.2  christos 	error = bus_dmamap_create(sc->sc_dmat, len, 1, len, 0, BUS_DMA_WAITOK, &dma->map);
    651  1.13.4.2  christos 	if (error)
    652  1.13.4.2  christos 		panic("bus_dmamap_create failed: %d", error);
    653  1.13.4.2  christos 	error = bus_dmamap_load(sc->sc_dmat, dma->map, dma->base, dma->len, NULL, BUS_DMA_WAITOK);
    654  1.13.4.2  christos 	if (error)
    655  1.13.4.2  christos 		panic("bus_dmamap_load failed: %d", error);
    656  1.13.4.2  christos 
    657  1.13.4.2  christos 	memset(dma->base, 0, dma->len);
    658  1.13.4.2  christos 	bus_dmamap_sync(sc->sc_dmat, dma->map, 0, dma->len, BUS_DMASYNC_PREWRITE);
    659  1.13.4.2  christos }
    660  1.13.4.2  christos 
    661  1.13.4.2  christos static void
    662  1.13.4.2  christos gicv3_lpi_init(struct gicv3_softc *sc)
    663  1.13.4.2  christos {
    664  1.13.4.2  christos 	/*
    665  1.13.4.2  christos 	 * Allocate LPI configuration table
    666  1.13.4.2  christos 	 */
    667  1.13.4.2  christos 	gicv3_dma_alloc(sc, &sc->sc_lpiconf, sc->sc_lpi.pic_maxsources, 0x1000);
    668  1.13.4.2  christos 	KASSERT((sc->sc_lpiconf.segs[0].ds_addr & ~GICR_PROPBASER_Physical_Address) == 0);
    669  1.13.4.2  christos 
    670  1.13.4.2  christos 	/*
    671  1.13.4.2  christos 	 * Allocate LPI pending tables
    672  1.13.4.2  christos 	 */
    673  1.13.4.2  christos 	const bus_size_t lpipend_sz = sc->sc_lpi.pic_maxsources / NBBY;
    674  1.13.4.2  christos 	for (int cpuindex = 0; cpuindex < ncpu; cpuindex++) {
    675  1.13.4.2  christos 		gicv3_dma_alloc(sc, &sc->sc_lpipend[cpuindex], lpipend_sz, 0x10000);
    676  1.13.4.2  christos 		KASSERT((sc->sc_lpipend[cpuindex].segs[0].ds_addr & ~GICR_PENDBASER_Physical_Address) == 0);
    677  1.13.4.2  christos 	}
    678  1.13.4.2  christos }
    679  1.13.4.2  christos 
    680  1.13.4.2  christos void
    681  1.13.4.2  christos gicv3_irq_handler(void *frame)
    682  1.13.4.2  christos {
    683  1.13.4.2  christos 	struct cpu_info * const ci = curcpu();
    684  1.13.4.2  christos 	struct gicv3_softc * const sc = gicv3_softc;
    685  1.13.4.2  christos 	struct pic_softc *pic;
    686  1.13.4.2  christos 	const int oldipl = ci->ci_cpl;
    687  1.13.4.2  christos 
    688  1.13.4.2  christos 	ci->ci_data.cpu_nintr++;
    689  1.13.4.2  christos 
    690  1.13.4.2  christos 	for (;;) {
    691  1.13.4.2  christos 		const uint32_t iar = icc_iar1_read();
    692  1.13.4.2  christos 		const uint32_t irq = __SHIFTOUT(iar, ICC_IAR_INTID);
    693  1.13.4.2  christos 		if (irq == ICC_IAR_INTID_SPURIOUS)
    694  1.13.4.2  christos 			break;
    695  1.13.4.2  christos 
    696  1.13.4.2  christos 		pic = irq >= GIC_LPI_BASE ? &sc->sc_lpi : &sc->sc_pic;
    697  1.13.4.2  christos 		if (irq - pic->pic_irqbase >= pic->pic_maxsources)
    698  1.13.4.2  christos 			continue;
    699  1.13.4.2  christos 
    700  1.13.4.2  christos 		struct intrsource * const is = pic->pic_sources[irq - pic->pic_irqbase];
    701  1.13.4.2  christos 		KASSERT(is != NULL);
    702  1.13.4.2  christos 
    703  1.13.4.2  christos 		const int ipl = is->is_ipl;
    704  1.13.4.2  christos 		if (ci->ci_cpl < ipl)
    705  1.13.4.2  christos 			pic_set_priority(ci, ipl);
    706  1.13.4.2  christos 
    707  1.13.4.2  christos 		cpsie(I32_bit);
    708  1.13.4.2  christos 		pic_dispatch(is, frame);
    709  1.13.4.2  christos 		cpsid(I32_bit);
    710  1.13.4.2  christos 
    711  1.13.4.2  christos 		icc_eoi1r_write(iar);
    712  1.13.4.2  christos 	}
    713  1.13.4.2  christos 
    714  1.13.4.2  christos 	if (ci->ci_cpl != oldipl)
    715  1.13.4.2  christos 		pic_set_priority(ci, oldipl);
    716  1.13.4.2  christos }
    717  1.13.4.2  christos 
    718  1.13.4.2  christos int
    719  1.13.4.2  christos gicv3_init(struct gicv3_softc *sc)
    720  1.13.4.2  christos {
    721  1.13.4.2  christos 	const uint32_t gicd_typer = gicd_read_4(sc, GICD_TYPER);
    722  1.13.4.2  christos 	int n;
    723  1.13.4.2  christos 
    724  1.13.4.2  christos 	KASSERT(CPU_IS_PRIMARY(curcpu()));
    725  1.13.4.2  christos 
    726  1.13.4.2  christos 	LIST_INIT(&sc->sc_lpi_callbacks);
    727  1.13.4.2  christos 
    728  1.13.4.2  christos 	for (n = 0; n < MAXCPUS; n++)
    729  1.13.4.2  christos 		sc->sc_irouter[n] = UINT64_MAX;
    730  1.13.4.2  christos 
    731  1.13.4.2  christos 	sc->sc_pic.pic_ops = &gicv3_picops;
    732  1.13.4.2  christos 	sc->sc_pic.pic_maxsources = GICD_TYPER_LINES(gicd_typer);
    733  1.13.4.2  christos 	snprintf(sc->sc_pic.pic_name, sizeof(sc->sc_pic.pic_name), "gicv3");
    734  1.13.4.2  christos #ifdef MULTIPROCESSOR
    735  1.13.4.2  christos 	sc->sc_pic.pic_cpus = kcpuset_running;
    736  1.13.4.2  christos #endif
    737  1.13.4.2  christos 	pic_add(&sc->sc_pic, 0);
    738  1.13.4.2  christos 
    739  1.13.4.2  christos 	if ((gicd_typer & GICD_TYPER_LPIS) != 0) {
    740  1.13.4.2  christos 		sc->sc_lpi.pic_ops = &gicv3_lpiops;
    741  1.13.4.2  christos 		sc->sc_lpi.pic_maxsources = 8192;	/* Min. required by GICv3 spec */
    742  1.13.4.2  christos 		snprintf(sc->sc_lpi.pic_name, sizeof(sc->sc_lpi.pic_name), "gicv3-lpi");
    743  1.13.4.2  christos 		pic_add(&sc->sc_lpi, GIC_LPI_BASE);
    744  1.13.4.2  christos 
    745  1.13.4.2  christos 		gicv3_lpi_init(sc);
    746  1.13.4.2  christos 	}
    747  1.13.4.2  christos 
    748  1.13.4.2  christos 	KASSERT(gicv3_softc == NULL);
    749  1.13.4.2  christos 	gicv3_softc = sc;
    750  1.13.4.2  christos 
    751  1.13.4.2  christos 	for (int i = 0; i < sc->sc_bsh_r_count; i++) {
    752  1.13.4.2  christos 		const uint64_t gicr_typer = gicr_read_8(sc, i, GICR_TYPER);
    753  1.13.4.2  christos 		const u_int aff0 = __SHIFTOUT(gicr_typer, GICR_TYPER_Affinity_Value_Aff0);
    754  1.13.4.2  christos 		const u_int aff1 = __SHIFTOUT(gicr_typer, GICR_TYPER_Affinity_Value_Aff1);
    755  1.13.4.2  christos 		const u_int aff2 = __SHIFTOUT(gicr_typer, GICR_TYPER_Affinity_Value_Aff2);
    756  1.13.4.2  christos 		const u_int aff3 = __SHIFTOUT(gicr_typer, GICR_TYPER_Affinity_Value_Aff3);
    757  1.13.4.2  christos 
    758  1.13.4.2  christos 		aprint_debug_dev(sc->sc_dev, "redist %d: cpu %d.%d.%d.%d\n",
    759  1.13.4.2  christos 		    i, aff3, aff2, aff1, aff0);
    760  1.13.4.2  christos 	}
    761  1.13.4.2  christos 
    762  1.13.4.2  christos 	gicv3_dist_enable(sc);
    763  1.13.4.2  christos 
    764  1.13.4.2  christos 	gicv3_cpu_init(&sc->sc_pic, curcpu());
    765  1.13.4.2  christos 	if ((gicd_typer & GICD_TYPER_LPIS) != 0)
    766  1.13.4.2  christos 		gicv3_lpi_cpu_init(&sc->sc_lpi, curcpu());
    767  1.13.4.2  christos 
    768  1.13.4.2  christos #ifdef __HAVE_PIC_FAST_SOFTINTS
    769  1.13.4.2  christos 	intr_establish_xname(SOFTINT_BIO, IPL_SOFTBIO, IST_MPSAFE | IST_EDGE, pic_handle_softint, (void *)SOFTINT_BIO, "softint bio");
    770  1.13.4.2  christos 	intr_establish_xname(SOFTINT_CLOCK, IPL_SOFTCLOCK, IST_MPSAFE | IST_EDGE, pic_handle_softint, (void *)SOFTINT_CLOCK, "softint clock");
    771  1.13.4.2  christos 	intr_establish_xname(SOFTINT_NET, IPL_SOFTNET, IST_MPSAFE | IST_EDGE, pic_handle_softint, (void *)SOFTINT_NET, "softint net");
    772  1.13.4.2  christos 	intr_establish_xname(SOFTINT_SERIAL, IPL_SOFTSERIAL, IST_MPSAFE | IST_EDGE, pic_handle_softint, (void *)SOFTINT_SERIAL, "softint serial");
    773  1.13.4.2  christos #endif
    774  1.13.4.2  christos 
    775  1.13.4.2  christos #ifdef MULTIPROCESSOR
    776  1.13.4.2  christos 	intr_establish_xname(IPI_AST, IPL_VM, IST_MPSAFE | IST_EDGE, pic_ipi_ast, (void *)-1, "IPI ast");
    777  1.13.4.2  christos 	intr_establish_xname(IPI_XCALL, IPL_HIGH, IST_MPSAFE | IST_EDGE, pic_ipi_xcall, (void *)-1, "IPI xcall");
    778  1.13.4.2  christos 	intr_establish_xname(IPI_GENERIC, IPL_HIGH, IST_MPSAFE | IST_EDGE, pic_ipi_generic, (void *)-1, "IPI generic");
    779  1.13.4.2  christos 	intr_establish_xname(IPI_NOP, IPL_VM, IST_MPSAFE | IST_EDGE, pic_ipi_nop, (void *)-1, "IPI nop");
    780  1.13.4.2  christos 	intr_establish_xname(IPI_SHOOTDOWN, IPL_SCHED, IST_MPSAFE | IST_EDGE, pic_ipi_shootdown, (void *)-1, "IPI shootdown");
    781  1.13.4.2  christos #ifdef DDB
    782  1.13.4.2  christos 	intr_establish_xname(IPI_DDB, IPL_HIGH, IST_MPSAFE | IST_EDGE, pic_ipi_ddb, NULL, "IPI ddb");
    783  1.13.4.2  christos #endif
    784  1.13.4.2  christos #ifdef __HAVE_PREEMPTION
    785  1.13.4.2  christos 	intr_establish_xname(IPI_KPREEMPT, IPL_VM, IST_MPSAFE | IST_EDGE, pic_ipi_kpreempt, (void *)-1, "IPI kpreempt");
    786  1.13.4.2  christos #endif
    787  1.13.4.2  christos #endif
    788  1.13.4.2  christos 
    789  1.13.4.2  christos 	return 0;
    790  1.13.4.2  christos }
    791