2009-12-23 02:25:49 +01:00
|
|
|
/****************************************************************************
|
2011-05-27 17:26:52 +02:00
|
|
|
* arch/arm/include/lpc31xx/irq.h
|
2009-12-23 02:25:49 +01:00
|
|
|
*
|
2021-03-20 21:46:19 +01:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright ownership. The
|
|
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance with the
|
|
|
|
* License. You may obtain a copy of the License at
|
2009-12-23 02:25:49 +01:00
|
|
|
*
|
2021-03-20 21:46:19 +01:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2009-12-23 02:25:49 +01:00
|
|
|
*
|
2021-03-20 21:46:19 +01:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations
|
|
|
|
* under the License.
|
2009-12-23 02:25:49 +01:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2020-04-05 23:00:04 +02:00
|
|
|
/* This file should never be included directly but, rather,
|
2009-12-23 02:25:49 +01:00
|
|
|
* only indirectly through nuttx/irq.h
|
|
|
|
*/
|
|
|
|
|
2011-05-27 17:26:52 +02:00
|
|
|
#ifndef __ARCH_ARM_INCLUDE_LPC31XX_IRQ_H
|
|
|
|
#define __ARCH_ARM_INCLUDE_LPC31XX_IRQ_H
|
2009-12-23 02:25:49 +01:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
2021-03-21 11:37:01 +01:00
|
|
|
* Pre-processor Prototypes
|
2009-12-23 02:25:49 +01:00
|
|
|
****************************************************************************/
|
|
|
|
|
2011-05-27 17:26:52 +02:00
|
|
|
/* LPC31XX Interrupts */
|
2009-12-23 02:25:49 +01:00
|
|
|
|
2011-05-27 17:26:52 +02:00
|
|
|
/* IRQ0: Reserved */
|
|
|
|
#define LPC31_IRQ_IRQ0 0 /* IRQ1: Event router cascaded IRQ0 */
|
|
|
|
#define LPC31_IRQ_IRQ1 1 /* IRQ2: Event router cascaded IRQ1 */
|
|
|
|
#define LPC31_IRQ_IRQ2 2 /* IRQ3: Event router cascaded IRQ2 */
|
|
|
|
#define LPC31_IRQ_IRQ3 3 /* IRQ4: Event router cascaded IRQ3 */
|
|
|
|
#define LPC31_IRQ_TMR0 4 /* IRQ5: Timer 0 Interrupt */
|
|
|
|
#define LPC31_IRQ_TMR1 5 /* IRQ6: Timer 1 Interrupt */
|
|
|
|
#define LPC31_IRQ_TMR2 6 /* IRQ7: Timer 2 Interrupt */
|
|
|
|
#define LPC31_IRQ_TMR3 7 /* IRQ8: Timer 3 Interrupt */
|
|
|
|
#define LPC31_IRQ_ADC 8 /* IRQ9: ADC 10-bit */
|
|
|
|
#define LPC31_IRQ_UART 9 /* IRQ10: UART */
|
|
|
|
#define LPC31_IRQ_I2C0 10 /* IRQ11: I2C0 */
|
|
|
|
#define LPC31_IRQ_I2C1 11 /* IRQ12: I2C1 */
|
|
|
|
#define LPC31_IRQ_I2STX0 12 /* IRQ13: I2S0 Transmit */
|
|
|
|
#define LPC31_IRQ_I2STX1 13 /* IRQ14: I2S1 Transmit */
|
|
|
|
#define LPC31_IRQ_I2SRX0 14 /* IRQ15: I2S0 Receive */
|
|
|
|
#define LPC31_IRQ_I2SRX1 15 /* IRQ16: I2S1 Receive */
|
2011-05-27 19:57:34 +02:00
|
|
|
/* IRQ17: Reserved */
|
2011-05-27 17:26:52 +02:00
|
|
|
#define LPC31_IRQ_LCD 17 /* IRQ18: LCD Interface */
|
|
|
|
#define LPC31_IRQ_SPISMS 18 /* IRQ19: SPI SMS */
|
|
|
|
#define LPC31_IRQ_SPITX 19 /* IRQ20: SPI Transmit */
|
|
|
|
#define LPC31_IRQ_SPIRX 20 /* IRQ21: SPI Receive */
|
|
|
|
#define LPC31_IRQ_SPIOVF 21 /* IRQ22: SPI Overflow */
|
|
|
|
#define LPC31_IRQ_SPI 22 /* IRQ23: SPI */
|
|
|
|
#define LPC31_IRQ_DMA 23 /* IRQ24: DMA */
|
|
|
|
#define LPC31_IRQ_NAND 24 /* IRQ25: NAND FLASH Controller */
|
|
|
|
#define LPC31_IRQ_MCI 25 /* IRQ26: MCI */
|
|
|
|
#define LPC31_IRQ_USBOTG 26 /* IRQ27: USB OTG */
|
|
|
|
#define LPC31_IRQ_ISRAM0 27 /* IRQ28: ISRAM0 MRC Finished */
|
|
|
|
#define LPC31_IRQ_ISRAM1 28 /* IRQ29: ISRAM1 MRC Finished */
|
2009-12-23 02:25:49 +01:00
|
|
|
|
2011-05-27 17:26:52 +02:00
|
|
|
#define LPC31_IRQ_SYSTIMER LPC31_IRQ_TMR0
|
|
|
|
#define NR_IRQS (LPC31_IRQ_ISRAM1+1)
|
2009-12-23 02:25:49 +01:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Types
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Inline functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
2015-10-03 01:42:29 +02:00
|
|
|
* Public Data
|
2009-12-23 02:25:49 +01:00
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Function Prototypes
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|
#ifdef __cplusplus
|
|
|
|
#define EXTERN extern "C"
|
2015-06-13 03:26:01 +02:00
|
|
|
extern "C"
|
|
|
|
{
|
2009-12-23 02:25:49 +01:00
|
|
|
#else
|
|
|
|
#define EXTERN extern
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#undef EXTERN
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2011-05-27 17:26:52 +02:00
|
|
|
#endif /* __ARCH_ARM_INCLUDE_LPC31XX_IRQ_H */
|