1 /*- 2 * Copyright (c) 2011,2016 The FreeBSD Foundation 3 * All rights reserved. 4 * 5 * This software was developed by Andrew Turner under 6 * sponsorship from the FreeBSD Foundation. 7 * 8 * Developed by Damjan Marion <damjan.marion@gmail.com> 9 * 10 * Based on OMAP4 GIC code by Ben Gray 11 * 12 * Redistribution and use in source and binary forms, with or without 13 * modification, are permitted provided that the following conditions 14 * are met: 15 * 1. Redistributions of source code must retain the above copyright 16 * notice, this list of conditions and the following disclaimer. 17 * 2. Redistributions in binary form must reproduce the above copyright 18 * notice, this list of conditions and the following disclaimer in the 19 * documentation and/or other materials provided with the distribution. 20 * 3. The name of the company nor the name of the author may be used to 21 * endorse or promote products derived from this software without specific 22 * prior written permission. 23 * 24 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 25 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 27 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 34 * SUCH DAMAGE. 35 */ 36 37 #ifndef _ARM_GIC_H_ 38 #define _ARM_GIC_H_ 39 40 /* The GICv1/2 only supports 8 CPUs */ 41 #if MAXCPU > 8 42 #define GIC_MAXCPU 8 43 #else 44 #define GIC_MAXCPU MAXCPU 45 #endif 46 47 struct arm_gic_softc { 48 device_t gic_dev; 49 void * gic_intrhand; 50 struct gic_irqsrc * gic_irqs; 51 #define GIC_RES_DIST 0 52 #define GIC_RES_CPU 1 53 struct resource * gic_res[3]; 54 uint8_t ver; 55 struct mtx mutex; 56 uint32_t nirqs; 57 uint32_t typer; 58 uint32_t last_irq[GIC_MAXCPU]; 59 60 uint32_t gic_iidr; 61 u_int gic_bus; 62 63 int nranges; 64 struct arm_gic_range * ranges; 65 }; 66 67 DECLARE_CLASS(arm_gic_driver); 68 69 struct arm_gicv2m_softc { 70 struct resource *sc_mem; 71 uintptr_t sc_xref; 72 u_int sc_spi_start; 73 u_int sc_spi_count; 74 }; 75 76 DECLARE_CLASS(arm_gicv2m_driver); 77 78 int arm_gic_attach(device_t); 79 int arm_gic_detach(device_t); 80 int arm_gicv2m_attach(device_t); 81 int arm_gic_intr(void *); 82 83 #endif /* _ARM_GIC_H_ */ 84