summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/i386/shared/irq/irq_init.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-08-24 15:56:46 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-08-24 15:56:46 +0000
commitcb02ead9369feb219dbc4a3e4b6a890f6e4c279d (patch)
treed341b0be35625c20b5860f639e2161691de30e15 /c/src/lib/libbsp/i386/shared/irq/irq_init.c
parent2008-08-22 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-cb02ead9369feb219dbc4a3e4b6a890f6e4c279d.tar.bz2
2008-08-24 Joel Sherrill <joel.sherrill@oarcorp.com>
* shared/irq/irq_init.c: Reverse previous incorrect changes. Correct warnings and ensure BSP still works.
Diffstat (limited to '')
-rw-r--r--c/src/lib/libbsp/i386/shared/irq/irq_init.c57
1 files changed, 52 insertions, 5 deletions
diff --git a/c/src/lib/libbsp/i386/shared/irq/irq_init.c b/c/src/lib/libbsp/i386/shared/irq/irq_init.c
index 7b5853a61d..5cb63cd425 100644
--- a/c/src/lib/libbsp/i386/shared/irq/irq_init.c
+++ b/c/src/lib/libbsp/i386/shared/irq/irq_init.c
@@ -37,13 +37,53 @@ extern void rtems_irq_prologue_13(void);
extern void rtems_irq_prologue_14(void);
extern void rtems_irq_prologue_15(void);
/*
- * default idt vector
+ * default vectors
*/
extern void default_raw_idt_handler(void);
+/*
+ * default raw on/off function
+ */
+static void raw_nop_func(const struct __rtems_raw_irq_connect_data__ *unused)
+{
+}
+
+/*
+ * default raw isOn function
+ */
+static int raw_not_connected(
+ const struct __rtems_raw_irq_connect_data__ *unused
+)
+{
+ return 0;
+}
+
static rtems_raw_irq_connect_data idtHdl[IDT_SIZE];
/*
+ * default IRQ handler
+ */
+static void irq_default_handler(rtems_irq_hdl_param unused)
+{
+}
+
+/*
+ * default IRQ on/off function
+ */
+static void irq_nop_func(const struct __rtems_irq_connect_data__ *unused)
+{
+}
+
+/*
+ * default irq isOn function
+ */
+static int irq_not_connected( const struct __rtems_irq_connect_data__ *unused)
+{
+ return 0;
+}
+
+
+/*
* Table used to store rtems managed interrupt handlers.
* Borrow the table to store raw handler entries at the beginning.
* The table will be reinitialized before the call to BSP_rtems_irq_mngt_set().
@@ -68,13 +108,20 @@ static rtems_irq_connect_data rtemsIrq[BSP_IRQ_LINES_NUMBER] = {
};
static rtems_raw_irq_connect_data defaultRawIrq = {
- /* vectorIdex, hdl , on , off , isOn */
- 0, default_raw_idt_handler ,NULL , NULL, NULL
+ 0, /* vectorIdex */
+ default_raw_idt_handler, /* hdl */
+ raw_nop_func, /* on */
+ raw_nop_func, /* off */
+ raw_not_connected /* isOn */
};
static rtems_irq_connect_data defaultIrq = {
- /* vectorIdex, hdl , handle, on, off, isOn */
- 0, NULL , 0 , NULL, NULL, NULL
+ 0, /* vectorIdex */
+ irq_default_handler, /* hdl */
+ 0, /* handle */
+ irq_nop_func, /* on */
+ irq_nop_func, /* off */
+ irq_not_connected /* isOn */
};
static rtems_irq_prio irqPrioTable[BSP_IRQ_LINES_NUMBER]={