···11+/*22+ * This header provides constants for most IRQ bindings.33+ *44+ * Most IRQ bindings include a flags cell as part of the IRQ specifier.55+ * In most cases, the format of the flags cell uses the standard values66+ * defined in this header.77+ */88+99+#ifndef _DT_BINDINGS_INTERRUPT_CONTROLLER_IRQ_H1010+#define _DT_BINDINGS_INTERRUPT_CONTROLLER_IRQ_H1111+1212+#define IRQ_TYPE_NONE 01313+#define IRQ_TYPE_EDGE_RISING 11414+#define IRQ_TYPE_EDGE_FALLING 21515+#define IRQ_TYPE_EDGE_BOTH (IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING)1616+#define IRQ_TYPE_LEVEL_HIGH 41717+#define IRQ_TYPE_LEVEL_LOW 81818+1919+#endif