1 /* SPDX-License-Identifier: GPL-2.0-only */ 2 /* 3 * eseries-irq.h 4 * 5 * Copyright (C) Ian Molton <spyro@f2s.com> 6 */ 7 8 #define ANGELX_IRQ_BASE (IRQ_BOARD_START+8) 9 #define IRQ_ANGELX(n) (ANGELX_IRQ_BASE + (n)) 10 11 #define ANGELX_RDY0_IRQ IRQ_ANGELX(0) 12 #define ANGELX_ST0_IRQ IRQ_ANGELX(1) 13 #define ANGELX_CD0_IRQ IRQ_ANGELX(2) 14 #define ANGELX_RDY1_IRQ IRQ_ANGELX(3) 15 #define ANGELX_ST1_IRQ IRQ_ANGELX(4) 16 #define ANGELX_CD1_IRQ IRQ_ANGELX(5) 17 18 #define TMIO_IRQ_BASE (IRQ_BOARD_START+0) 19 #define IRQ_TMIO(n) (TMIO_IRQ_BASE + (n)) 20 21 #define TMIO_SD_IRQ IRQ_TMIO(1) 22 #define TMIO_USB_IRQ IRQ_TMIO(2) 23 24 #define ESERIES_NR_IRQS (IRQ_BOARD_START + 16) 25