blob: 0c85f65c81c7da2554f65e7702b1d053df3f6b06 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Stephen Warren4be505d2013-02-13 12:50:48 -07002/*
3 * This header provides constants for the ARM GIC.
4 */
5
6#ifndef _DT_BINDINGS_INTERRUPT_CONTROLLER_ARM_GIC_H
7#define _DT_BINDINGS_INTERRUPT_CONTROLLER_ARM_GIC_H
8
9#include <dt-bindings/interrupt-controller/irq.h>
10
Geert Uytterhoevend6613aa2014-12-10 14:54:28 +010011/* interrupt specifier cell 0 */
Stephen Warren4be505d2013-02-13 12:50:48 -070012
13#define GIC_SPI 0
14#define GIC_PPI 1
15
16/*
17 * Interrupt specifier cell 2.
Geert Uytterhoevend6613aa2014-12-10 14:54:28 +010018 * The flags in irq.h are valid, plus those below.
Stephen Warren4be505d2013-02-13 12:50:48 -070019 */
20#define GIC_CPU_MASK_RAW(x) ((x) << 8)
21#define GIC_CPU_MASK_SIMPLE(num) GIC_CPU_MASK_RAW((1 << (num)) - 1)
22
23#endif