Changeset 1899fe4 in rtems
- Timestamp:
- 02/17/05 04:29:15 (18 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 8a9eaef
- Parents:
- 2195ccf3
- Location:
- c/src/lib/libbsp/powerpc
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/powerpc/mbx8xx/ChangeLog
r2195ccf3 r1899fe4 1 2005-02-17 Ralf Corsepius <ralf.corsepius@rtems.org> 2 3 * startup/bspstart.c: include <rtems/powerpc/powerpc.h>. 4 Use PPC_MINIMUM_STACK_FRAME_SIZE instead of 5 CPU_MINIMUM_STACK_FRAME_SIZE. 6 1 7 2005-02-16 Ralf Corsepius <ralf.corsepius@rtems.org> 2 8 -
c/src/lib/libbsp/powerpc/mbx8xx/startup/bspstart.c
r2195ccf3 r1899fe4 28 28 #include <libcpu/cpuIdent.h> 29 29 #include <libcpu/spr.h> 30 #include <rtems/powerpc/powerpc.h> 30 31 31 32 SPR_RW(SPRG0) … … 168 169 */ 169 170 170 intrStack = (((unsigned char*)&intrStackPtr) - CPU_MINIMUM_STACK_FRAME_SIZE);171 intrStack = (((unsigned char*)&intrStackPtr) - PPC_MINIMUM_STACK_FRAME_SIZE); 171 172 _write_SPRG1((unsigned int)intrStack); 172 173 /* signal them that we have fixed PR288 - eventually, this should go away */ -
c/src/lib/libbsp/powerpc/mpc8260ads/ChangeLog
r2195ccf3 r1899fe4 1 2005-02-17 Ralf Corsepius <ralf.corsepius@rtems.org> 2 3 * startup/bspstart.c: include <rtems/powerpc/powerpc.h>. 4 Use PPC_MINIMUM_STACK_FRAME_SIZE instead of 5 CPU_MINIMUM_STACK_FRAME_SIZE. 6 1 7 2005-02-16 Ralf Corsepius <ralf.corsepius@rtems.org> 2 8 -
c/src/lib/libbsp/powerpc/mpc8260ads/startup/bspstart.c
r2195ccf3 r1899fe4 46 46 #include <rtems/libcsupport.h> 47 47 #include <rtems/score/thread.h> 48 #include <rtems/powerpc/powerpc.h> 49 48 50 #include <rtems/bspIo.h> 49 51 #include <libcpu/cpuIdent.h> … … 235 237 */ 236 238 237 intrStack = (((unsigned char*)&intrStackPtr) - CPU_MINIMUM_STACK_FRAME_SIZE);239 intrStack = (((unsigned char*)&intrStackPtr) - PPC_MINIMUM_STACK_FRAME_SIZE); 238 240 _write_SPRG1((unsigned int)intrStack); 239 241 /* signal that we have fixed PR288 - eventually, this should go away */ -
c/src/lib/libbsp/powerpc/mvme5500/ChangeLog
r2195ccf3 r1899fe4 1 2005-02-17 Ralf Corsepius <ralf.corsepius@rtems.org> 2 3 * startup/bspstart.c: include <rtems/powerpc/powerpc.h>. 4 Use PPC_MINIMUM_STACK_FRAME_SIZE instead of 5 CPU_MINIMUM_STACK_FRAME_SIZE. 6 1 7 2005-02-17 Ralf Corsepius <ralf.corsepius@rtems.org> 2 8 -
c/src/lib/libbsp/powerpc/mvme5500/startup/bspstart.c
r2195ccf3 r1899fe4 33 33 #include <rtems/libio.h> 34 34 #include <rtems/libcsupport.h> 35 /*#include <bsp/consoleIo.h>*/ 35 #include <rtems/powerpc/powerpc.h> 36 36 37 #include <libcpu/spr.h> /* registers.h is included here */ 37 38 #include <bsp.h> … … 44 45 #include <bsp/bspException.h> 45 46 46 /* for RTEMS_VERSION :-( I dont like the preassembled string */47 47 #include <rtems/sptables.h> 48 48 … … 372 372 * so that it can be printed without accessing R1. 373 373 */ 374 stack = ((unsigned char*) __rtems_end) + INIT_STACK_SIZE - CPU_MINIMUM_STACK_FRAME_SIZE;374 stack = ((unsigned char*) __rtems_end) + INIT_STACK_SIZE - PPC_MINIMUM_STACK_FRAME_SIZE; 375 375 376 376 /* tag the bottom (T. Straumann 6/36/2001 <strauman@slac.stanford.edu>) */ … … 391 391 */ 392 392 intrStack = ((uint32_t) __rtems_end) + 393 INIT_STACK_SIZE + INTR_STACK_SIZE - CPU_MINIMUM_STACK_FRAME_SIZE;393 INIT_STACK_SIZE + INTR_STACK_SIZE - PPC_MINIMUM_STACK_FRAME_SIZE; 394 394 395 395 /* make sure it's properly aligned */ -
c/src/lib/libbsp/powerpc/psim/ChangeLog
r2195ccf3 r1899fe4 1 2005-02-17 Ralf Corsepius <ralf.corsepius@rtems.org> 2 3 * startup/bspstart.c: include <rtems/powerpc/powerpc.h>. 4 Use PPC_MINIMUM_STACK_FRAME_SIZE instead of 5 CPU_MINIMUM_STACK_FRAME_SIZE. 6 1 7 2005-02-16 Ralf Corsepius <ralf.corsepius@rtems.org> 2 8 -
c/src/lib/libbsp/powerpc/psim/startup/bspstart.c
r2195ccf3 r1899fe4 22 22 #include <rtems/libcsupport.h> 23 23 #include <rtems/bspIo.h> 24 #include <rtems/powerpc/powerpc.h> 25 24 26 #include <libcpu/cpuIdent.h> 25 27 #include <libcpu/spr.h> … … 194 196 */ 195 197 intrStack = ((uint32_t) __rtems_end) + 196 INIT_STACK_SIZE + INTR_STACK_SIZE - CPU_MINIMUM_STACK_FRAME_SIZE;198 INIT_STACK_SIZE + INTR_STACK_SIZE - PPC_MINIMUM_STACK_FRAME_SIZE; 197 199 198 200 /* make sure it's properly aligned */ -
c/src/lib/libbsp/powerpc/shared/ChangeLog
r2195ccf3 r1899fe4 1 2005-02-17 Ralf Corsepius <ralf.corsepius@rtems.org> 2 3 * startup/bspstart.c: include <rtems/powerpc/powerpc.h>. 4 Use PPC_MINIMUM_STACK_FRAME_SIZE instead of 5 CPU_MINIMUM_STACK_FRAME_SIZE. 6 1 7 2005-02-17 Ralf Corsepius <ralf.corsepius@rtems.org> 2 8 -
c/src/lib/libbsp/powerpc/shared/startup/bspstart.c
r2195ccf3 r1899fe4 35 35 #include <bsp/vectors.h> 36 36 #include <bsp/motorola.h> 37 #include <rtems/powerpc/powerpc.h> 37 38 38 39 extern void _return_to_ppcbug(); … … 297 298 */ 298 299 stack = ((unsigned char*) __rtems_end) + 299 INIT_STACK_SIZE - CPU_MINIMUM_STACK_FRAME_SIZE;300 INIT_STACK_SIZE - PPC_MINIMUM_STACK_FRAME_SIZE; 300 301 301 302 /* tag the bottom (T. Straumann 6/36/2001 <strauman@slac.stanford.edu>) */ … … 310 311 */ 311 312 intrStack = ((uint32_t) __rtems_end) + 312 INIT_STACK_SIZE + INTR_STACK_SIZE - CPU_MINIMUM_STACK_FRAME_SIZE;313 INIT_STACK_SIZE + INTR_STACK_SIZE - PPC_MINIMUM_STACK_FRAME_SIZE; 313 314 314 315 /* make sure it's properly aligned */ -
c/src/lib/libbsp/powerpc/ss555/ChangeLog
r2195ccf3 r1899fe4 1 2005-02-17 Ralf Corsepius <ralf.corsepius@rtems.org> 2 3 * startup/bspstart.c: include <rtems/powerpc/powerpc.h>. 4 Use PPC_MINIMUM_STACK_FRAME_SIZE instead of 5 CPU_MINIMUM_STACK_FRAME_SIZE. 6 1 7 2005-02-16 Ralf Corsepius <ralf.corsepius@rtems.org> 2 8 -
c/src/lib/libbsp/powerpc/ss555/startup/bspstart.c
r2195ccf3 r1899fe4 29 29 #include <rtems/libcsupport.h> 30 30 #include <rtems/bspIo.h> 31 #include <rtems/powerpc/powerpc.h> 31 32 32 33 #include <libcpu/cpuIdent.h> … … 156 157 * Initialize some SPRG registers related to irq handling 157 158 */ 158 intrStack = (((unsigned char*)&intrStackPtr) - CPU_MINIMUM_STACK_FRAME_SIZE);159 intrStack = (((unsigned char*)&intrStackPtr) - PPC_MINIMUM_STACK_FRAME_SIZE); 159 160 _write_SPRG1((unsigned int)intrStack); 160 161 /* signal them that we have fixed PR288 - eventually, this should go away */
Note: See TracChangeset
for help on using the changeset viewer.