brintos

brintos / linux-shallow public Read only

0
0
Text · 574 B · 887f533 Raw
26 lines · c
1/* SPDX-License-Identifier: GPL-2.0 OR MIT */2/*3 * This header provides constants for the ARM GIC.4 */5 6#ifndef _DT_BINDINGS_INTERRUPT_CONTROLLER_ARM_GIC_H7#define _DT_BINDINGS_INTERRUPT_CONTROLLER_ARM_GIC_H8 9#include <dt-bindings/interrupt-controller/irq.h>10 11/* interrupt specifier cell 0 */12 13#define GIC_SPI 014#define GIC_PPI 115#define GIC_ESPI 216#define GIC_EPPI 317 18/*19 * Interrupt specifier cell 2.20 * The flags in irq.h are valid, plus those below.21 */22#define GIC_CPU_MASK_RAW(x) ((x) << 8)23#define GIC_CPU_MASK_SIMPLE(num) GIC_CPU_MASK_RAW((1 << (num)) - 1)24 25#endif26