summaryrefslogtreecommitdiffstats
path: root/c
diff options
context:
space:
mode:
authorJennifer Averett <Jennifer.Averett@OARcorp.com>2009-05-05 16:27:59 +0000
committerJennifer Averett <Jennifer.Averett@OARcorp.com>2009-05-05 16:27:59 +0000
commit3776348f5220769f388661bfeef56d7be9e8b1ef (patch)
tree86b2126b7bfed7b245969fd2d7c12050650771c3 /c
parent2009-05-05 Jennifer Averett <jennifer.averett@OARcorp.com> (diff)
downloadrtems-3776348f5220769f388661bfeef56d7be9e8b1ef.tar.bz2
2009-05-05 Jennifer Averett <jennifer.averett@OARcorp.com>
* mpc6xx/mmu/bat.c, new-exceptions/e500_raw_exc_init.c, new-exceptions/raw_exception.h, new-exceptions/bspsupport/irq_supp.h, shared/include/cpuIdent.c: Removed warnings. Split bsp_irq_dispatch_list to allow non-standard/non-existant pics to call with interrupts off.
Diffstat (limited to 'c')
-rw-r--r--c/src/lib/libcpu/powerpc/ChangeLog8
-rw-r--r--c/src/lib/libcpu/powerpc/mpc6xx/mmu/bat.c6
-rw-r--r--c/src/lib/libcpu/powerpc/new-exceptions/bspsupport/irq_supp.h32
-rw-r--r--c/src/lib/libcpu/powerpc/new-exceptions/e500_raw_exc_init.c2
-rw-r--r--c/src/lib/libcpu/powerpc/new-exceptions/raw_exception.h3
-rw-r--r--c/src/lib/libcpu/powerpc/shared/include/cpuIdent.c4
6 files changed, 41 insertions, 14 deletions
diff --git a/c/src/lib/libcpu/powerpc/ChangeLog b/c/src/lib/libcpu/powerpc/ChangeLog
index 5adc33723c..9c233309f7 100644
--- a/c/src/lib/libcpu/powerpc/ChangeLog
+++ b/c/src/lib/libcpu/powerpc/ChangeLog
@@ -1,3 +1,11 @@
+2009-05-05 Jennifer Averett <jennifer.averett@OARcorp.com>
+
+ * mpc6xx/mmu/bat.c, new-exceptions/e500_raw_exc_init.c,
+ new-exceptions/raw_exception.h, new-exceptions/bspsupport/irq_supp.h,
+ shared/include/cpuIdent.c: Removed warnings. Split
+ bsp_irq_dispatch_list to allow non-standard/non-existant pics to call
+ with interrupts off.
+
2009-03-12 Joel Sherrill <joel.sherrill@OARcorp.com>
PR 1385/cpukit
diff --git a/c/src/lib/libcpu/powerpc/mpc6xx/mmu/bat.c b/c/src/lib/libcpu/powerpc/mpc6xx/mmu/bat.c
index 1eb479da8e..a767e8bb5c 100644
--- a/c/src/lib/libcpu/powerpc/mpc6xx/mmu/bat.c
+++ b/c/src/lib/libcpu/powerpc/mpc6xx/mmu/bat.c
@@ -160,7 +160,7 @@ bat_addrs_put (ubat * bat, int typ, int idx)
* cache.
*/
static void
-bat_addrs_init ()
+bat_addrs_init (void)
{
ubat bat;
@@ -204,7 +204,7 @@ bat_addrs_init ()
}
static void
-do_dssall ()
+do_dssall (void)
{
/* Before changing BATs, 'dssall' must be issued.
* We check MSR for MSR_VE and issue a 'dssall' if
@@ -227,7 +227,7 @@ do_dssall ()
/* Clear I/D bats 4..7 ONLY ON 7455 etc. */
static void
-clear_hi_bats ()
+clear_hi_bats (void)
{
do_dssall ();
CLRBAT (DBAT4);
diff --git a/c/src/lib/libcpu/powerpc/new-exceptions/bspsupport/irq_supp.h b/c/src/lib/libcpu/powerpc/new-exceptions/bspsupport/irq_supp.h
index 5af864806b..110f00c845 100644
--- a/c/src/lib/libcpu/powerpc/new-exceptions/bspsupport/irq_supp.h
+++ b/c/src/lib/libcpu/powerpc/new-exceptions/bspsupport/irq_supp.h
@@ -67,6 +67,29 @@ struct _BSP_Exception_frame;
int C_dispatch_irq_handler (struct _BSP_Exception_frame *frame, unsigned int excNum);
/*
+ * Snippet to be used by PIC drivers and by bsp_irq_dispatch_list
+ * traverses list of shared handlers for a given interrupt
+ *
+ */
+
+static inline void
+bsp_irq_dispatch_list_base(
+ rtems_irq_connect_data *tbl,
+ unsigned irq,
+ rtems_irq_hdl sentinel
+)
+{
+ rtems_irq_connect_data* vchain;
+ for( vchain = &tbl[irq];
+ ((int)vchain != -1 && vchain->hdl != sentinel);
+ vchain = (rtems_irq_connect_data*)vchain->next_handler )
+ {
+ vchain->hdl(vchain->handle);
+ }
+}
+
+
+/*
* Snippet to be used by PIC drivers;
* enables interrupts, traverses list of
* shared handlers for a given interrupt
@@ -90,13 +113,8 @@ bsp_irq_dispatch_list(
/* Enable all interrupts */
_ISR_Set_level(0);
- rtems_irq_connect_data* vchain;
- for( vchain = &tbl[irq];
- ((int)vchain != -1 && vchain->hdl != sentinel);
- vchain = (rtems_irq_connect_data*)vchain->next_handler )
- {
- vchain->hdl(vchain->handle);
- }
+
+ bsp_irq_dispatch_list_base( tbl, irq, sentinel );
/* Restore original level */
_ISR_Set_level(l_orig);
diff --git a/c/src/lib/libcpu/powerpc/new-exceptions/e500_raw_exc_init.c b/c/src/lib/libcpu/powerpc/new-exceptions/e500_raw_exc_init.c
index f09a9ab757..05149b59ab 100644
--- a/c/src/lib/libcpu/powerpc/new-exceptions/e500_raw_exc_init.c
+++ b/c/src/lib/libcpu/powerpc/new-exceptions/e500_raw_exc_init.c
@@ -38,7 +38,7 @@ e500_setup_raw_exceptions(void)
MTIVOR(35, ppc_get_vector_addr(ASM_60X_PERFMON_VECTOR));
}
-void e200_setup_raw_exceptions()
+void e200_setup_raw_exceptions(void)
{
if (current_ppc_cpu != PPC_e200z6) {
return;
diff --git a/c/src/lib/libcpu/powerpc/new-exceptions/raw_exception.h b/c/src/lib/libcpu/powerpc/new-exceptions/raw_exception.h
index c4e55a7612..02b65bfc2a 100644
--- a/c/src/lib/libcpu/powerpc/new-exceptions/raw_exception.h
+++ b/c/src/lib/libcpu/powerpc/new-exceptions/raw_exception.h
@@ -231,7 +231,8 @@ extern int ppc_get_exception_config (rtems_raw_except_global_settings** config);
void* ppc_get_vector_addr(rtems_vector vector);
int ppc_is_e500();
-void e500_setup_raw_exceptions();
+void e200_setup_raw_exceptions(void);
+void e500_setup_raw_exceptions(void);
/* This variable is initialized to 'TRUE' by default;
* BSPs which have their vectors in ROM should set it
diff --git a/c/src/lib/libcpu/powerpc/shared/include/cpuIdent.c b/c/src/lib/libcpu/powerpc/shared/include/cpuIdent.c
index 7245b6b3b0..e8e6a0f7ff 100644
--- a/c/src/lib/libcpu/powerpc/shared/include/cpuIdent.c
+++ b/c/src/lib/libcpu/powerpc/shared/include/cpuIdent.c
@@ -70,7 +70,7 @@ char *get_ppc_cpu_type_name(ppc_cpu_id_t cpu)
return "UNKNOWN";
}
-ppc_cpu_id_t get_ppc_cpu_type()
+ppc_cpu_id_t get_ppc_cpu_type(void)
{
unsigned int pvr;
@@ -185,7 +185,7 @@ ppc_cpu_id_t get_ppc_cpu_type()
return current_ppc_cpu;
}
-ppc_cpu_revision_t get_ppc_cpu_revision()
+ppc_cpu_revision_t get_ppc_cpu_revision(void)
{
ppc_cpu_revision_t rev = (ppc_cpu_revision_t) (_read_PVR() & 0xffff);
current_ppc_revision = rev;