1 /* 2 * ARM GIC support - internal interfaces 3 * 4 * Copyright (c) 2012 Linaro Limited 5 * Written by Peter Maydell 6 * 7 * This program is free software; you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation, either version 2 of the License, or 10 * (at your option) any later version. 11 * 12 * This program is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License along 18 * with this program; if not, see <http://www.gnu.org/licenses/>. 19 */ 20 21 #ifndef QEMU_ARM_GIC_INTERNAL_H 22 #define QEMU_ARM_GIC_INTERNAL_H 23 24 #include "hw/intc/arm_gic.h" 25 26 #define ALL_CPU_MASK ((unsigned)(((1 << GIC_NCPU) - 1))) 27 28 /* The NVIC has 16 internal vectors. However these are not exposed 29 through the normal GIC interface. */ 30 #define GIC_BASE_IRQ ((s->revision == REV_NVIC) ? 32 : 0) 31 32 #define GIC_SET_ENABLED(irq, cm) s->irq_state[irq].enabled |= (cm) 33 #define GIC_CLEAR_ENABLED(irq, cm) s->irq_state[irq].enabled &= ~(cm) 34 #define GIC_TEST_ENABLED(irq, cm) ((s->irq_state[irq].enabled & (cm)) != 0) 35 #define GIC_SET_PENDING(irq, cm) s->irq_state[irq].pending |= (cm) 36 #define GIC_CLEAR_PENDING(irq, cm) s->irq_state[irq].pending &= ~(cm) 37 #define GIC_TEST_PENDING(irq, cm) ((s->irq_state[irq].pending & (cm)) != 0) 38 #define GIC_SET_ACTIVE(irq, cm) s->irq_state[irq].active |= (cm) 39 #define GIC_CLEAR_ACTIVE(irq, cm) s->irq_state[irq].active &= ~(cm) 40 #define GIC_TEST_ACTIVE(irq, cm) ((s->irq_state[irq].active & (cm)) != 0) 41 #define GIC_SET_MODEL(irq) s->irq_state[irq].model = true 42 #define GIC_CLEAR_MODEL(irq) s->irq_state[irq].model = false 43 #define GIC_TEST_MODEL(irq) s->irq_state[irq].model 44 #define GIC_SET_LEVEL(irq, cm) s->irq_state[irq].level = (cm) 45 #define GIC_CLEAR_LEVEL(irq, cm) s->irq_state[irq].level &= ~(cm) 46 #define GIC_TEST_LEVEL(irq, cm) ((s->irq_state[irq].level & (cm)) != 0) 47 #define GIC_SET_TRIGGER(irq) s->irq_state[irq].trigger = true 48 #define GIC_CLEAR_TRIGGER(irq) s->irq_state[irq].trigger = false 49 #define GIC_TEST_TRIGGER(irq) s->irq_state[irq].trigger 50 #define GIC_GET_PRIORITY(irq, cpu) (((irq) < GIC_INTERNAL) ? \ 51 s->priority1[irq][cpu] : \ 52 s->priority2[(irq) - GIC_INTERNAL]) 53 #define GIC_TARGET(irq) s->irq_target[irq] 54 55 /* The special cases for the revision property: */ 56 #define REV_11MPCORE 0 57 #define REV_NVIC 0xffffffff 58 59 void gic_set_pending_private(GICState *s, int cpu, int irq); 60 uint32_t gic_acknowledge_irq(GICState *s, int cpu); 61 void gic_complete_irq(GICState *s, int cpu, int irq); 62 void gic_update(GICState *s); 63 void gic_init_irqs_and_distributor(GICState *s, int num_irq); 64 65 #endif /* !QEMU_ARM_GIC_INTERNAL_H */ 66