summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/powerpc/ss555
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2007-12-04 22:22:03 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2007-12-04 22:22:03 +0000
commitcafa2c5d0586ad7933e3fe543c7602a549ce692e (patch)
tree2ad15de8657874421853a56031814deb3b7b3076 /c/src/lib/libbsp/powerpc/ss555
parent2007-12-04 Joel Sherrill <joel.sherrill@OARcorp.com> (diff)
downloadrtems-cafa2c5d0586ad7933e3fe543c7602a549ce692e.tar.bz2
2007-12-04 Joel Sherrill <joel.sherrill@OARcorp.com>
* startup/bspstart.c: Move interrupt_stack_size field from CPU Table to Configuration Table. Eliminate CPU Table from all ports. Delete references to CPU Table in all forms.
Diffstat (limited to 'c/src/lib/libbsp/powerpc/ss555')
-rw-r--r--c/src/lib/libbsp/powerpc/ss555/ChangeLog6
-rw-r--r--c/src/lib/libbsp/powerpc/ss555/startup/bspstart.c13
2 files changed, 7 insertions, 12 deletions
diff --git a/c/src/lib/libbsp/powerpc/ss555/ChangeLog b/c/src/lib/libbsp/powerpc/ss555/ChangeLog
index a81edc7741..b863b6bf00 100644
--- a/c/src/lib/libbsp/powerpc/ss555/ChangeLog
+++ b/c/src/lib/libbsp/powerpc/ss555/ChangeLog
@@ -1,3 +1,9 @@
+2007-12-04 Joel Sherrill <joel.sherrill@OARcorp.com>
+
+ * startup/bspstart.c: Move interrupt_stack_size field from CPU Table to
+ Configuration Table. Eliminate CPU Table from all ports. Delete
+ references to CPU Table in all forms.
+
2007-12-03 Joel Sherrill <joel.sherrill@OARcorp.com>
* Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
diff --git a/c/src/lib/libbsp/powerpc/ss555/startup/bspstart.c b/c/src/lib/libbsp/powerpc/ss555/startup/bspstart.c
index 6a26500bea..4fea0cf850 100644
--- a/c/src/lib/libbsp/powerpc/ss555/startup/bspstart.c
+++ b/c/src/lib/libbsp/powerpc/ss555/startup/bspstart.c
@@ -48,9 +48,6 @@ SPR_RW(SPRG1)
extern rtems_configuration_table Configuration;
extern unsigned long intrStackPtr;
rtems_configuration_table BSP_Configuration;
-
-rtems_cpu_table Cpu_table;
-
char *rtems_progname;
/*
@@ -88,11 +85,6 @@ void _BSP_Fatal_error(unsigned int v)
* Must not use libc (to do io) from here, since drivers are not yet
* initialized.
*
- * Installed in the rtems_cpu_table defined in
- * rtems/c/src/exec/score/cpu/powerpc/rtems/new-exceptions/cpu.h by main()
- * below. Called from rtems_initialize_executive() defined in
- * rtems/c/src/exec/sapi/src/init.c
- *
* Input parameters: NONE
*
* Output parameters: NONE
@@ -185,11 +177,8 @@ void bsp_start(void)
BSP_Configuration.work_space_start = _WorkspaceBase;
/*
- * initialize the CPU table for this BSP
+ * initialize the device driver parameters
*/
- if( Cpu_table.interrupt_stack_size < 4 * 1024 )
- Cpu_table.interrupt_stack_size = 4 * 1024;
-
bsp_clicks_per_usec = BSP_CRYSTAL_HZ / 4 / 1000000;
bsp_clock_speed = BSP_CLOCK_HZ; /* for SCI baud rate generator */