summaryrefslogtreecommitdiff
path: root/arch/arm/soc/arm/beetle/soc_irq.h
blob: e5efc9c6e97b6b0f515f66d7b01c3c12a550334b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/*
 * Copyright (c) 2016 Linaro Limited.
 *
 * SPDX-License-Identifier: Apache-2.0
 */

/**
 * @file Interrupt numbers for the ARM LTD Beetle SoC.
 */
#ifndef _ARM_BEETLE_SOC_IRQ_H_
#define _ARM_BEETLE_SOC_IRQ_H_

/* IRQ Numbers */
#define IRQ_UART0               0  /* UART 0 RX and TX Combined Interrupt   */
#define IRQ_SPARE               1  /* Undefined                             */
#define IRQ_UART1               2  /* UART 1 RX and TX Combined Interrupt   */
#define IRQ_I2C0                3  /* I2C 0 Interrupt                       */
#define IRQ_I2C1                4  /* I2C 1 Interrupt                       */
#define IRQ_RTC                 5  /* RTC Interrupt                         */
#define IRQ_PORT0_ALL           6  /* GPIO Port 0 combined Interrupt        */
#define IRQ_PORT1_ALL           7  /* GPIO Port 1 combined Interrupt        */
#define IRQ_TIMER0              8  /* TIMER 0 Interrupt                     */
#define IRQ_TIMER1              9  /* TIMER 1 Interrupt                     */
#define IRQ_DUALTIMER           10 /* Dual Timer Interrupt                  */
#define IRQ_SPI0                11 /* SPI 0 Interrupt                       */
#define IRQ_UARTOVF             12 /* Common UART Overflow Interrupt        */
#define IRQ_SPI1                13 /* SPI 1 Interrupt                       */
#define IRQ_QSPI                14 /* QUAD SPI Interrupt                    */
#define IRQ_DMA                 15 /* Reserved for DMA Interrupt            */
#define IRQ_PORT0_0             16 /* All P0 I/O pins used as irq source    */
#define IRQ_PORT0_1             17 /* There are 16 pins in total            */
#define IRQ_PORT0_2             18
#define IRQ_PORT0_3             19
#define IRQ_PORT0_4             20
#define IRQ_PORT0_5             21
#define IRQ_PORT0_6             22
#define IRQ_PORT0_7             23
#define IRQ_PORT0_8             24
#define IRQ_PORT0_9             25
#define IRQ_PORT0_10            26
#define IRQ_PORT0_11            27
#define IRQ_PORT0_12            28
#define IRQ_PORT0_13            29
#define IRQ_PORT0_14            30
#define IRQ_PORT0_15            31
#define IRQ_SYSERROR            32 /* System Error Interrupt                */
#define IRQ_EFLASH              33 /* Embedded Flash Interrupt              */
#define IRQ_LLCC_TXCMD_EMPTY    34 /* Cordio                                 */
#define IRQ_LLCC_TXEVT_EMPTY    35 /* Cordio                                 */
#define IRQ_LLCC_TXDMAH_DONE    36 /* Cordio                                 */
#define IRQ_LLCC_TXDMAL_DONE    37 /* Cordio                                 */
#define IRQ_LLCC_RXCMD_VALID    38 /* Cordio                                 */
#define IRQ_LLCC_RXEVT_VALID    39 /* Cordio                                 */
#define IRQ_LLCC_RXDMAH_DONE    40 /* Cordio                                 */
#define IRQ_LLCC_RXDMAL_DONE    41 /* Cordio                                 */
#define IRQ_PORT2_ALL           42 /* GPIO Port 2 combined Interrupt        */
#define IRQ_PORT3_ALL           43 /* GPIO Port 3 combined Interrupt        */
#define IRQ_TRNG                44 /* Random number generator Interrupt     */

/* CMSDK APB Universal Asynchronous Receiver-Transmitter (UART) */
#define CMSDK_APB_UART_0_IRQ IRQ_UART0
#define CMSDK_APB_UART_1_IRQ IRQ_UART1

#endif /* _ARM_BEETLE_SOC_IRQ_H_ */