ih_lpc17xx.c 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. /*
  2. * Copyright (C) 2013 Ole Reinhardt <ole.reinhardt@embedded-it.de>
  3. *
  4. * Redistribution and use in source and binary forms, with or without
  5. * modification, are permitted provided that the following conditions
  6. * are met:
  7. *
  8. * 1. Redistributions of source code must retain the above copyright
  9. * notice, this list of conditions and the following disclaimer.
  10. * 2. Redistributions in binary form must reproduce the above copyright
  11. * notice, this list of conditions and the following disclaimer in the
  12. * documentation and/or other materials provided with the distribution.
  13. * 3. Neither the name of the copyright holders nor the names of
  14. * contributors may be used to endorse or promote products derived
  15. * from this software without specific prior written permission.
  16. *
  17. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  18. * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  19. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  20. * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  21. * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
  22. * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
  23. * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
  24. * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
  25. * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  26. * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
  27. * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  28. * SUCH DAMAGE.
  29. *
  30. * For additional information see http://www.ethernut.de/
  31. *
  32. */
  33. /*!
  34. * \verbatim
  35. * $Id: $
  36. * \endverbatim
  37. */
  38. #include <cfg/devices.h>
  39. #include <cfg/arch.h>
  40. #include <arch/cm3.h>
  41. #include <dev/irqreg.h>
  42. #ifndef NUT_IRQPRI_DEF
  43. #define NUT_IRQPRI_DEF 4
  44. #endif
  45. CREATE_HANDLER(WDT, WDT, NUT_IRQPRI_DEF); /* Watchdog Timer */
  46. CREATE_HANDLER(USART0, UART0, NUT_IRQPRI_DEF); /* USART 0 */
  47. CREATE_HANDLER(USART1, UART1, NUT_IRQPRI_DEF); /* USART 1 */
  48. CREATE_HANDLER(USART2, UART2, NUT_IRQPRI_DEF); /* USART 2 */
  49. CREATE_HANDLER(USART3, UART3, NUT_IRQPRI_DEF); /* USART 3 */
  50. #if defined (HW_UART4_LPC17xx)
  51. CREATE_HANDLER(USART4, UART4, NUT_IRQPRI_DEF); /* USART 4 */
  52. #endif
  53. CREATE_HANDLER(I2C0, I2C0, NUT_IRQPRI_DEF); /* I2C Channel 0 */
  54. CREATE_HANDLER(I2C1, I2C1, NUT_IRQPRI_DEF); /* I2C Channel 1 */
  55. CREATE_HANDLER(I2C2, I2C2, NUT_IRQPRI_DEF); /* I2C Channel 2 */
  56. CREATE_HANDLER(RTC, RTC, NUT_IRQPRI_DEF); /* Real Time Clock */
  57. #if defined (HW_MCI_LPC177x_8x)
  58. CREATE_HANDLER(MCI, MCI, NUT_IRQPRI_DEF); /* Multimedia Card Interface / SDIO Interface */
  59. #endif
  60. #if defined (HW_EMAC_LPC17xx)
  61. CREATE_HANDLER(EMAC, ENET, NUT_IRQPRI_DEF); /* Ethernet MAC */
  62. #endif
  63. CREATE_HANDLER(GPIO, GPIO, NUT_IRQPRI_DEF); /* GPIO */
  64. CREATE_HANDLER(DMA, DMA, NUT_IRQPRI_DEF); /* General Purpose DMA Controller */
  65. CREATE_HANDLER(EINT0, EINT0, NUT_IRQPRI_DEF); /* General Purpose DMA Controller */
  66. CREATE_HANDLER(EINT1, EINT1, NUT_IRQPRI_DEF); /* General Purpose DMA Controller */
  67. CREATE_HANDLER(EINT2, EINT2, NUT_IRQPRI_DEF); /* General Purpose DMA Controller */
  68. CREATE_HANDLER(EINT3, EINT3, NUT_IRQPRI_DEF); /* General Purpose DMA Controller */