summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/powerpc/haleakala/irq
diff options
context:
space:
mode:
authorThomas Doerfler <Thomas.Doerfler@embedded-brains.de>2008-07-14 08:46:06 +0000
committerThomas Doerfler <Thomas.Doerfler@embedded-brains.de>2008-07-14 08:46:06 +0000
commit3c6fe2e7f95f6bff53123df9377b114cadeac874 (patch)
treefef9ad7a4cd45497a1a84c1b7f9cd103eb258c43 /c/src/lib/libbsp/powerpc/haleakala/irq
parentcorrections in display driver (diff)
downloadrtems-3c6fe2e7f95f6bff53123df9377b114cadeac874.tar.bz2
added haleakala BSP contributed by Michael Hamel
Diffstat (limited to 'c/src/lib/libbsp/powerpc/haleakala/irq')
-rw-r--r--c/src/lib/libbsp/powerpc/haleakala/irq/irq.c212
-rw-r--r--c/src/lib/libbsp/powerpc/haleakala/irq/irq.h166
-rw-r--r--c/src/lib/libbsp/powerpc/haleakala/irq/irq_init.c89
3 files changed, 467 insertions, 0 deletions
diff --git a/c/src/lib/libbsp/powerpc/haleakala/irq/irq.c b/c/src/lib/libbsp/powerpc/haleakala/irq/irq.c
new file mode 100644
index 0000000000..dd20e93b90
--- /dev/null
+++ b/c/src/lib/libbsp/powerpc/haleakala/irq/irq.c
@@ -0,0 +1,212 @@
+/*
+ *
+ *
+ * The license and distribution terms for this file may be
+ * found in found in the file LICENSE in this distribution or at
+ * http://www.rtems.com/license/LICENSE.
+ *
+ * Middleware support for PPC405 by M.Hamel ADInstruments Ltd 2008
+ *
+ * $Id$
+ */
+
+#include <rtems.h>
+#include <bsp.h>
+#include <bsp/irq.h>
+#include <bsp/irq_supp.h>
+#include <libcpu/raw_exception.h>
+#include <libcpu/powerpc-utility.h>
+
+
+/* PPC405EX UIC numbers */
+#define UIC_DCR_BASE 0xc0
+#define UIC0_SR (UIC_DCR_BASE+0x0) /* UIC status */
+#define UIC0_SRS (UIC_DCR_BASE+0x1) /* UIC status set */
+#define UIC0_ER (UIC_DCR_BASE+0x2) /* UIC enable */
+#define UIC0_CR (UIC_DCR_BASE+0x3) /* UIC critical */
+#define UIC0_PR (UIC_DCR_BASE+0x4) /* UIC polarity */
+#define UIC0_TR (UIC_DCR_BASE+0x5) /* UIC triggering */
+#define UIC0_MSR (UIC_DCR_BASE+0x6) /* UIC masked status */
+#define UIC0_VR (UIC_DCR_BASE+0x7) /* UIC vector */
+#define UIC0_VCR (UIC_DCR_BASE+0x8) /* UIC vector configuration */
+
+#define UIC1_SR (UIC_DCR_BASE+0x10) /* UIC status */
+#define UIC1_SRS (UIC_DCR_BASE+0x11) /* UIC status set */
+#define UIC1_ER (UIC_DCR_BASE+0x12) /* UIC enable */
+#define UIC1_CR (UIC_DCR_BASE+0x13) /* UIC critical */
+#define UIC1_PR (UIC_DCR_BASE+0x14) /* UIC polarity */
+#define UIC1_TR (UIC_DCR_BASE+0x15) /* UIC triggering */
+#define UIC1_MSR (UIC_DCR_BASE+0x16) /* UIC masked status */
+#define UIC1_VR (UIC_DCR_BASE+0x17) /* UIC vector */
+#define UIC1_VCR (UIC_DCR_BASE+0x18) /* UIC vector configuration */
+
+#define UIC2_SR (UIC_DCR_BASE+0x20) /* UIC status */
+#define UIC2_SRS (UIC_DCR_BASE+0x21) /* UIC status set */
+#define UIC2_ER (UIC_DCR_BASE+0x22) /* UIC enable */
+#define UIC2_CR (UIC_DCR_BASE+0x23) /* UIC critical */
+#define UIC2_PR (UIC_DCR_BASE+0x24) /* UIC polarity */
+#define UIC2_TR (UIC_DCR_BASE+0x25) /* UIC triggering */
+#define UIC2_MSR (UIC_DCR_BASE+0x26) /* UIC masked status */
+#define UIC2_VR (UIC_DCR_BASE+0x27) /* UIC vector */
+#define UIC2_VCR (UIC_DCR_BASE+0x28) /* UIC vector configuration */
+
+enum { kUICWords = 3 };
+
+static rtems_irq_connect_data* rtems_hdl_tblP;
+static rtems_irq_connect_data dflt_entry;
+
+static uint32_t gEnabledInts[kUICWords]; /* 1-bits mean enabled */
+static uint32_t gIntInhibited[kUICWords]; /* 1-bits disable, overriding gEnabledInts because the interrupt
+ is being processed in C_dispatch_irq_handler */
+
+static inline int IsUICIRQ(const rtems_irq_number irqLine)
+{
+ return (((int) irqLine <= BSP_UIC_IRQ_MAX_OFFSET) &&
+ ((int) irqLine >= BSP_UIC_IRQ_LOWEST_OFFSET)
+ );
+}
+
+static void WriteIState()
+/* Write the gEnabledInts state masked by gIntInhibited to the hardware */
+{
+ mtdcr(UIC0_ER, gEnabledInts[0] & ~gIntInhibited[0]);
+ mtdcr(UIC1_ER, gEnabledInts[1] & ~gIntInhibited[1]);
+ mtdcr(UIC2_ER, gEnabledInts[2] & ~gIntInhibited[2]);
+}
+
+void
+BSP_enable_irq_at_pic(const rtems_irq_number irq)
+/* Enable an interrupt; this can be called from inside C_dispatch_irq_handler */
+{
+ if (IsUICIRQ(irq)) {
+ /* Set relevant bit in the state, write state to the UIC */
+ gEnabledInts[irq>>5] |= (0x80000000 >> (irq & 0x1F));
+ WriteIState();
+ }
+}
+
+int
+BSP_disable_irq_at_pic(const rtems_irq_number irq)
+/* Enable an interrupt; this can be called from inside C_dispatch_irq_handler */
+{
+ if (IsUICIRQ(irq)) {
+ uint32_t oldState;
+ int iword = irq>>5;
+ uint32_t mask = (0x80000000 >> (irq & 0x1F));
+
+ oldState = gEnabledInts[iword] & mask;
+ gEnabledInts[iword] &= ~mask;
+ WriteIState();
+ return oldState ? 1 : 0;
+ } else
+ return -1;
+}
+
+int
+BSP_setup_the_pic(rtems_irq_global_settings* config)
+{
+ int i;
+
+ dflt_entry = config->defaultEntry;
+ rtems_hdl_tblP = config->irqHdlTbl;
+ for (i=0; i<kUICWords; i++)
+ gIntInhibited[i] = 0;
+
+ mtdcr (UIC2_ER, 0x00000000); /* disable all interrupts */
+ mtdcr (UIC2_CR, 0x00000000); /* Set Critical / Non Critical interrupts */
+ mtdcr (UIC2_PR, 0xf7ffffff); /* Set Interrupt Polarities */
+ mtdcr (UIC2_TR, 0x01e1fff8); /* Set Interrupt Trigger Levels */
+ mtdcr (UIC2_VR, 0x00000001); /* Set Vect base=0,INT31 Highest priority */
+ mtdcr (UIC2_SR, 0xffffffff); /* clear all interrupts */
+
+ mtdcr (UIC1_ER, 0x00000000); /* disable all interrupts */
+ mtdcr (UIC1_CR, 0x00000000); /* Set Critical / Non Critical interrupts */
+ mtdcr (UIC1_PR, 0xfffac785); /* Set Interrupt Polarities */
+ mtdcr (UIC1_TR, 0x001d0040); /* Set Interrupt Trigger Levels */
+ mtdcr (UIC1_VR, 0x00000001); /* Set Vect base=0,INT31 Highest priority */
+ mtdcr (UIC1_SR, 0xffffffff); /* clear all interrupts */
+
+ mtdcr (UIC0_ER, 0x0000000a); /* Disable all interrupts except cascade UIC0 and UIC1 */
+ mtdcr (UIC0_CR, 0x00000000); /* Set Critical / Non Critical interrupts */
+ mtdcr (UIC0_PR, 0xffbfefef); /* Set Interrupt Polarities */
+ mtdcr (UIC0_TR, 0x00007000); /* Set Interrupt Trigger Levels */
+ mtdcr (UIC0_VR, 0x00000001); /* Set Vect base=0,INT31 Highest priority */
+ mtdcr (UIC0_SR, 0xffffffff); /* clear all interrupts */
+
+ return 1;
+}
+
+
+/*
+ * High level IRQ handler called from shared_raw_irq_code_entry; decode and
+ * dispatch. Note that this routine needs to be re-entrant
+ *
+ * No support for critical interrupts here yet
+ */
+
+int
+C_dispatch_irq_handler( struct _BSP_Exception_frame* frame, unsigned int excNum )
+{
+ if (excNum == ASM_EXT_VECTOR) {
+ uint32_t active[kUICWords];
+
+ /* Fetch the masked flags that tell us what external ints are active.
+ Likely to be only one, but we need to handle more than one,
+ OR the flags into gIntInhibited */
+ active[0] = mfdcr(UIC0_MSR);
+ active[1] = mfdcr(UIC1_MSR);
+ active[2] = mfdcr(UIC2_MSR);
+ gIntInhibited[0] |= active[0];
+ gIntInhibited[1] |= active[1];
+ gIntInhibited[2] |= active[2];
+
+ /* ...and update the hardware so the active interrupts are disabled */
+ WriteIState();
+
+ /* Loop, calling bsp_irq_dispatch_list for each active interrupt */
+ while ((active[0] | active[1] | active[2]) != 0) {
+ uint32_t index = -1;
+ uint32_t bit, bmask;
+
+ /* Find an active interrupt, searching 0..2, bit 0..bit 31 (IBM order) */
+ do {
+ index++;
+ asm volatile (" cntlzw %0, %1":"=r" (bit):"r" (active[index]));
+ } while (bit==32);
+
+ /* Call the matching handler */
+ bsp_irq_dispatch_list(rtems_hdl_tblP, (index*32)+bit, dflt_entry.hdl);
+
+ /* Write a 1-bit to the appropriate status register to clear it */
+ bmask = 0x80000000 >> bit;
+ switch (index) {
+ case 0: mtdcr(UIC0_SR, bmask); break;
+ case 1: mtdcr(UIC1_SR, bmask); break;
+ case 2: mtdcr(UIC2_SR, bmask); break;
+ }
+
+ /* Clear in the active record and gIntInhibited */
+ active[index] &= ~bmask;
+ gIntInhibited[index] &= ~bmask;
+ };
+
+ /* Update the hardware again so the interrupts we have handled are unmasked */
+ WriteIState();
+ return 0;
+
+ } else if (excNum == ASM_DEC_VECTOR) { /* 0x1000 remapped by C_dispatch_dec_handler_bookE */
+ bsp_irq_dispatch_list(rtems_hdl_tblP, BSP_PIT, dflt_entry.hdl);
+ return 0;
+
+ } else if (excNum == ASM_BOOKE_FIT_VECTOR) { /* 0x1010 mapped to 0x13 by ppc_get_vector_addr */
+ bsp_irq_dispatch_list(rtems_hdl_tblP, BSP_FIT, dflt_entry.hdl);
+ return 0;
+
+ } else if (excNum == ASM_BOOKE_WDOG_VECTOR) { /* 0x1020 mapped to 0x14 by ppc_get_vector_addr */
+ bsp_irq_dispatch_list(rtems_hdl_tblP, BSP_WDOG, dflt_entry.hdl);
+ return 0;
+
+ } else
+ return -1; /* unhandled interrupt, panic time */
+}
+
diff --git a/c/src/lib/libbsp/powerpc/haleakala/irq/irq.h b/c/src/lib/libbsp/powerpc/haleakala/irq/irq.h
new file mode 100644
index 0000000000..fcb33e0b3e
--- /dev/null
+++ b/c/src/lib/libbsp/powerpc/haleakala/irq/irq.h
@@ -0,0 +1,166 @@
+/*===============================================================*\
+| Project: RTEMS Haleakala BSP |
+| by Michael Hamel ADInstruments Ltd 2008 |
++-----------------------------------------------------------------+
+| The license and distribution terms for this file may be |
+| found in the file LICENSE in this distribution or at |
+| |
+| http://www.rtems.com/license/LICENSE. |
+| |
+\*===============================================================*/
+
+
+#ifndef Haleakala_IRQ_IRQ_H
+#define Haleakala_IRQ_IRQ_H
+
+/* Implemented for us in bsp_irq_dispatch_list */
+#define BSP_SHARED_HANDLER_SUPPORT 1
+
+#include <rtems/irq.h>
+
+#ifndef ASM
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+ /* Define UIC interrupt numbers; IRQs that cause an external interrupt that needs further decode.
+ These are arbitrary but it makes things easier if they match the CPU interrupt numbers */
+
+ /*
+
+ #define BSP_UIC_UART0_GP (BSP_UIC_IRQ_LOWEST_OFFSET + 0)
+ #define BSP_UIC_UART1 (BSP_UIC_IRQ_LOWEST_OFFSET + 1)
+ #define BSP_UIC_IIC0 (BSP_UIC_IRQ_LOWEST_OFFSET + 2)
+ #define BSP_UIC_ExtMaster (BSP_UIC_IRQ_LOWEST_OFFSET + 3)
+ #define BSP_UIC_PCI (BSP_UIC_IRQ_LOWEST_OFFSET + 4)
+ #define BSP_UIC_DMA0 (BSP_UIC_IRQ_LOWEST_OFFSET + 5)
+ #define BSP_UIC_DMA1 (BSP_UIC_IRQ_LOWEST_OFFSET + 6)
+ #define BSP_UIC_DMA2 (BSP_UIC_IRQ_LOWEST_OFFSET + 7)
+ #define BSP_UIC_DMA3 (BSP_UIC_IRQ_LOWEST_OFFSET + 8)
+ #define BSP_UIC_ENetWU (BSP_UIC_IRQ_LOWEST_OFFSET + 9)
+ #define BSP_UIC_MALSERR (BSP_UIC_IRQ_LOWEST_OFFSET + 10)
+ #define BSP_UIC_MALTXEOB (BSP_UIC_IRQ_LOWEST_OFFSET + 11)
+ #define BSP_UIC_MALRXEOB (BSP_UIC_IRQ_LOWEST_OFFSET + 12)
+ #define BSP_UIC_MALTXDE (BSP_UIC_IRQ_LOWEST_OFFSET + 13)
+ #define BSP_UIC_MALRXDE (BSP_UIC_IRQ_LOWEST_OFFSET + 14)
+ #define BSP_UIC_ENet (BSP_UIC_IRQ_LOWEST_OFFSET + 15)
+ #define BSP_UIC_PCISERR (BSP_UIC_IRQ_LOWEST_OFFSET + 16)
+ #define BSP_UIC_ECCERR (BSP_UIC_IRQ_LOWEST_OFFSET + 17)
+ #define BSP_UIC_PCIPower (BSP_UIC_IRQ_LOWEST_OFFSET + 18)
+ #define BSP_UIC_IRQ0 (BSP_UIC_IRQ_LOWEST_OFFSET + 25)
+ #define BSP_UIC_IRQ1 (BSP_UIC_IRQ_LOWEST_OFFSET + 26)
+ #define BSP_UIC_IRQ2 (BSP_UIC_IRQ_LOWEST_OFFSET + 27)
+ #define BSP_UIC_IRQ3 (BSP_UIC_IRQ_LOWEST_OFFSET + 28)
+ #define BSP_UIC_IRQ4 (BSP_UIC_IRQ_LOWEST_OFFSET + 29)
+ #define BSP_UIC_IRQ5 (BSP_UIC_IRQ_LOWEST_OFFSET + 30)
+ #define BSP_UIC_IRQ6 (BSP_UIC_IRQ_LOWEST_OFFSET + 31)
+
+ #define BSP_UIC_IRQ_NUMBER (32)
+
+ */
+ /* PPC405EX interrupt vectors */
+ #define BSP_UIC_UART1 (BSP_UIC_IRQ_LOWEST_OFFSET + 1)
+ #define BSP_UIC_IIC0 (BSP_UIC_IRQ_LOWEST_OFFSET + 2)
+ #define BSP_UIC_EIPPKP_READY (BSP_UIC_IRQ_LOWEST_OFFSET + 3)
+ #define BSP_UIC_EIPPKP_TRNG (BSP_UIC_IRQ_LOWEST_OFFSET + 4)
+ #define BSP_UIC_EBM (BSP_UIC_IRQ_LOWEST_OFFSET + 5)
+ #define BSP_UIC_OPBtoPLB (BSP_UIC_IRQ_LOWEST_OFFSET + 6)
+ #define BSP_UIC_IIC1 (BSP_UIC_IRQ_LOWEST_OFFSET + 7)
+ #define BSP_UIC_SPI (BSP_UIC_IRQ_LOWEST_OFFSET + 8)
+ #define BSP_UIC_IRQ0 (BSP_UIC_IRQ_LOWEST_OFFSET + 9)
+ #define BSP_UIC_MALTXEOB (BSP_UIC_IRQ_LOWEST_OFFSET + 10)
+ #define BSP_UIC_MALRXEOB (BSP_UIC_IRQ_LOWEST_OFFSET + 11)
+ #define BSP_UIC_DMA0 (BSP_UIC_IRQ_LOWEST_OFFSET + 12)
+ #define BSP_UIC_DMA1 (BSP_UIC_IRQ_LOWEST_OFFSET + 13)
+ #define BSP_UIC_DMA2 (BSP_UIC_IRQ_LOWEST_OFFSET + 14)
+ #define BSP_UIC_DMA3 (BSP_UIC_IRQ_LOWEST_OFFSET + 15)
+ #define BSP_UIC_PCIe0AL (BSP_UIC_IRQ_LOWEST_OFFSET + 16)
+ #define BSP_UIC_PCIe0VPD (BSP_UIC_IRQ_LOWEST_OFFSET + 17)
+ #define BSP_UIC_PCIe0HRst (BSP_UIC_IRQ_LOWEST_OFFSET + 18)
+ #define BSP_UIC_EIPPKP_PKA (BSP_UIC_IRQ_LOWEST_OFFSET + 19)
+ #define BSP_UIC_PCIe0TCR (BSP_UIC_IRQ_LOWEST_OFFSET + 20)
+ #define BSP_UIC_PCIe0VCO (BSP_UIC_IRQ_LOWEST_OFFSET + 21)
+ #define BSP_UIC_EIPPKP_TRNG_AL (BSP_UIC_IRQ_LOWEST_OFFSET + 22)
+ #define BSP_UIC_EIP94 (BSP_UIC_IRQ_LOWEST_OFFSET + 23)
+ #define BSP_UIC_EMAC0 (BSP_UIC_IRQ_LOWEST_OFFSET + 24)
+ #define BSP_UIC_EMAC1 (BSP_UIC_IRQ_LOWEST_OFFSET + 25)
+ #define BSP_UIC_UART0 (BSP_UIC_IRQ_LOWEST_OFFSET + 26)
+ #define BSP_UIC_IRQ4 (BSP_UIC_IRQ_LOWEST_OFFSET + 27)
+ #define BSP_UIC_UIC2_STD (BSP_UIC_IRQ_LOWEST_OFFSET + 28)
+ #define BSP_UIC_UIC2_CRIT (BSP_UIC_IRQ_LOWEST_OFFSET + 29)
+ #define BSP_UIC_UIC1_STD (BSP_UIC_IRQ_LOWEST_OFFSET + 30)
+ #define BSP_UIC_UIC1_CRIT (BSP_UIC_IRQ_LOWEST_OFFSET + 31)
+
+ #define BSP_UIC1_IRQ_LOWEST_OFFSET (BSP_UIC_IRQ_LOWEST_OFFSET + 32)
+ #define BSP_UIC_MALSERR (BSP_UIC1_IRQ_LOWEST_OFFSET + 0)
+ #define BSP_UIC_MALTXDE (BSP_UIC1_IRQ_LOWEST_OFFSET + 1)
+ #define BSP_UIC_MALRXDE (BSP_UIC1_IRQ_LOWEST_OFFSET + 2)
+ #define BSP_UIC_PCIe0DCRErr (BSP_UIC1_IRQ_LOWEST_OFFSET + 3)
+ #define BSP_UIC_PCIe1DCRErr (BSP_UIC1_IRQ_LOWEST_OFFSET + 4)
+ #define BSP_UIC_ExtBus (BSP_UIC1_IRQ_LOWEST_OFFSET + 5)
+ #define BSP_UIC_NDFC (BSP_UIC1_IRQ_LOWEST_OFFSET + 6)
+ #define BSP_UIC_EIPKP_SLAVE (BSP_UIC1_IRQ_LOWEST_OFFSET + 7)
+ #define BSP_UIC_GPT_TIMER5 (BSP_UIC1_IRQ_LOWEST_OFFSET + 8)
+ #define BSP_UIC_GPT_TIMER6 (BSP_UIC1_IRQ_LOWEST_OFFSET + 9)
+
+ #define BSP_UIC_GPT_TIMER0 (BSP_UIC1_IRQ_LOWEST_OFFSET + 16)
+ #define BSP_UIC_GPT_TIMER1 (BSP_UIC1_IRQ_LOWEST_OFFSET + 17)
+ #define BSP_UIC_IRQ7 (BSP_UIC1_IRQ_LOWEST_OFFSET + 18)
+ #define BSP_UIC_IRQ8 (BSP_UIC1_IRQ_LOWEST_OFFSET + 19)
+ #define BSP_UIC_IRQ9 (BSP_UIC1_IRQ_LOWEST_OFFSET + 20)
+ #define BSP_UIC_GPT_TIMER2 (BSP_UIC1_IRQ_LOWEST_OFFSET + 21)
+ #define BSP_UIC_GPT_TIMER3 (BSP_UIC1_IRQ_LOWEST_OFFSET + 22)
+ #define BSP_UIC_GPT_TIMER4 (BSP_UIC1_IRQ_LOWEST_OFFSET + 23)
+ #define BSP_UIC_SERIAL_ROM (BSP_UIC1_IRQ_LOWEST_OFFSET + 24)
+ #define BSP_UIC_GPT_DEC (BSP_UIC1_IRQ_LOWEST_OFFSET + 25)
+ #define BSP_UIC_IRQ2 (BSP_UIC1_IRQ_LOWEST_OFFSET + 26)
+ #define BSP_UIC_IRQ5 (BSP_UIC1_IRQ_LOWEST_OFFSET + 27)
+ #define BSP_UIC_IRQ6 (BSP_UIC1_IRQ_LOWEST_OFFSET + 28)
+ #define BSP_UIC_EMAC0WU (BSP_UIC1_IRQ_LOWEST_OFFSET + 29)
+ #define BSP_UIC_IRQ1 (BSP_UIC1_IRQ_LOWEST_OFFSET + 30)
+ #define BSP_UIC_EMAC1WU (BSP_UIC1_IRQ_LOWEST_OFFSET + 31)
+
+ #define BSP_UIC2_IRQ_LOWEST_OFFSET (BSP_UIC_IRQ_LOWEST_OFFSET + 64)
+ #define BSP_UIC_PCIe0INTA (BSP_UIC2_IRQ_LOWEST_OFFSET + 0)
+ #define BSP_UIC_PCIe0INTB (BSP_UIC2_IRQ_LOWEST_OFFSET + 1)
+ #define BSP_UIC_PCIe0INTC (BSP_UIC2_IRQ_LOWEST_OFFSET + 2)
+ #define BSP_UIC_PCIe0INTD (BSP_UIC2_IRQ_LOWEST_OFFSET + 3)
+ #define BSP_UIC_IRQ3 (BSP_UIC2_IRQ_LOWEST_OFFSET + 4)
+
+ #define BSP_UIC_USBOTG (BSP_UIC2_IRQ_LOWEST_OFFSET + 30)
+
+ #define BSP_UIC_IRQ_NUMBER (95)
+
+
+ #define BSP_UIC_IRQ_LOWEST_OFFSET 0
+ #define BSP_UIC_IRQ_MAX_OFFSET (BSP_UIC_IRQ_LOWEST_OFFSET + BSP_UIC_IRQ_NUMBER - 1)
+
+ #define BSP_UART_COM1_IRQ BSP_UIC_UART0 /* Required by shared/console/uart.c */
+ #define BSP_UART_COM2_IRQ BSP_UIC_UART1
+
+ /* Define processor IRQ numbers; IRQs that are handled by the raw_exception vectors */
+
+ #define BSP_PIT BSP_PROCESSOR_IRQ_LOWEST_OFFSET /* Required by ppc403/clock.c */
+ #define BSP_FIT BSP_PROCESSOR_IRQ_LOWEST_OFFSET + 1
+ #define BSP_WDOG BSP_PROCESSOR_IRQ_LOWEST_OFFSET + 2
+
+ #define BSP_PROCESSOR_IRQ_NUMBER (3)
+ #define BSP_PROCESSOR_IRQ_LOWEST_OFFSET (BSP_UIC_IRQ_MAX_OFFSET + 1)
+ #define BSP_PROCESSOR_IRQ_MAX_OFFSET (BSP_PROCESSOR_IRQ_LOWEST_OFFSET + BSP_PROCESSOR_IRQ_NUMBER - 1)
+
+ /* Summary and totals */
+
+ #define BSP_IRQ_NUMBER (BSP_PROCESSOR_IRQ_MAX_OFFSET + 1)
+ #define BSP_LOWEST_OFFSET (BSP_UIC_IRQ_LOWEST_OFFSET)
+ #define BSP_MAX_OFFSET (BSP_IRQ_NUMBER - 1)
+
+ extern void BSP_rtems_irq_mng_init(unsigned cpuId); // Implemented in irq_init.c
+ #include <bsp/irq_supp.h>
+
+ #ifdef __cplusplus
+ }
+ #endif
+#endif /* ASM */
+
+#endif /* Haleakala_IRQ_IRQ_H */
diff --git a/c/src/lib/libbsp/powerpc/haleakala/irq/irq_init.c b/c/src/lib/libbsp/powerpc/haleakala/irq/irq_init.c
new file mode 100644
index 0000000000..088b15ecaa
--- /dev/null
+++ b/c/src/lib/libbsp/powerpc/haleakala/irq/irq_init.c
@@ -0,0 +1,89 @@
+/*===============================================================*\
+| Project: RTEMS Haleakala BSP |
+| * by Michael Hamel ADInstruments Ltd 2008 |
++-----------------------------------------------------------------+
+| The license and distribution terms for this file may be |
+| found in the file LICENSE in this distribution or at |
+| |
+| http://www.rtems.com/license/LICENSE. |
+| |
++-----------------------------------------------------------------+
+| this file contains the irq controller handler |
+\*===============================================================*/
+#include <libcpu/spr.h>
+#include <bsp/irq.h>
+#include <bsp.h>
+#include <libcpu/raw_exception.h>
+#include <rtems/bspIo.h>
+#include <rtems/powerpc/powerpc.h>
+
+
+/*
+ * default on/off function
+ */
+static void nop_func()
+{
+}
+
+/*
+ * default isOn function
+ */
+static int not_connected()
+{
+ return 0;
+}
+
+static rtems_irq_connect_data rtemsIrq[BSP_IRQ_NUMBER];
+static rtems_irq_global_settings initial_config;
+static rtems_irq_connect_data defaultIrq = {
+ /* name, hdl , handle , on , off , isOn */
+ 0, nop_func , NULL , nop_func , nop_func , not_connected
+};
+
+static rtems_irq_prio irqPrioTable[BSP_IRQ_NUMBER]={
+ /*
+ * Processor exceptions handled as interrupts
+ */
+ 0
+};
+
+ /*
+ * This code assumes the exceptions management setup has already
+ * been done. We just need to replace the exceptions that will
+ * be handled like interrupt. On mcp750/mpc750 and many PPC processors
+ * this means the decrementer exception and the external exception.
+ */
+
+void BSP_rtems_irq_mng_init(unsigned cpuId)
+{
+ int i;
+
+ /*
+ * re-init the rtemsIrq table
+ */
+ for (i = 0; i < BSP_IRQ_NUMBER; i++) {
+ rtemsIrq[i] = defaultIrq;
+ rtemsIrq[i].name = i;
+ }
+ /*
+ * Init initial Interrupt management config
+ */
+ initial_config.irqNb = BSP_IRQ_NUMBER;
+ initial_config.defaultEntry = defaultIrq;
+ initial_config.irqHdlTbl = rtemsIrq;
+ initial_config.irqBase = BSP_LOWEST_OFFSET;
+ initial_config.irqPrioTbl = irqPrioTable;
+
+ if (!BSP_rtems_irq_mngt_set(&initial_config)) {
+ /*
+ * put something here that will show the failure...
+ */
+ BSP_panic(
+ "Unable to initialize RTEMS interrupt management!!! System locked\n"
+ );
+ }
+
+ #ifdef TRACE_IRQ_INIT
+ printk("RTEMS IRQ management is now operational\n");
+ #endif
+}