Changeset 0bedb7ec in rtems
- Timestamp:
- Nov 23, 2004, 3:44:50 PM (16 years ago)
- Children:
- 410c6f8
- Parents:
- 21b54fc
- Location:
- c/src/lib/libbsp/powerpc/shared
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/powerpc/shared/ChangeLog
r21b54fc r0bedb7ec 1 2004-11-23 Richard Campbell <richard.campbell@oarcorp.com> 2 3 * startup/bspstart.c: Removed mpc824x conditionals around call to 4 L1_caches_enables, conditionals are now in mmuAsm.S. 5 * vme/VMEConfig.h: Set up VME A16, A24 and A32 windows at different 6 locations for mvme2100. 7 * vme/vmeconfig.c: Fixed spelling. 8 1 9 2004-11-10 Richard Campbell <richard.campbell@oarcorp.com> 2 10 -
c/src/lib/libbsp/powerpc/shared/startup/bspstart.c
r21b54fc r0bedb7ec 245 245 { 246 246 unsigned char *stack; 247 #if !defined(mpc8240) && !defined(mpc8245)248 247 unsigned l2cr; 249 #endif250 248 register unsigned char* intrStack; 251 249 unsigned char *work_space_start; … … 272 270 #endif 273 271 274 #if !defined(mpc8240) && !defined(mpc8245)275 272 /* 276 273 * enables L1 Cache. Note that the L1_caches_enables() codes checks for … … 289 286 if ( (! (l2cr & 0x80000000)) && ((int) l2cr == -1)) 290 287 set_L2CR(0xb9A14000); 291 #endif292 288 293 289 /* -
c/src/lib/libbsp/powerpc/shared/vme/VMEConfig.h
r21b54fc r0bedb7ec 12 12 * layout: 13 13 */ 14 #define _VME_A32_WIN0_ON_PCI 0x10000000 15 #define _VME_A24_ON_PCI 0x1f000000 16 #define _VME_A16_ON_PCI 0x1fff0000 17 14 #if defined(mvme2100) 15 #define _VME_A32_WIN0_ON_PCI 0x80000000 16 #define _VME_A24_ON_PCI 0x8f000000 17 #define _VME_A16_ON_PCI 0x8fff0000 18 #else 19 #define _VME_A32_WIN0_ON_PCI 0x10000000 20 #define _VME_A24_ON_PCI 0x1f000000 21 #define _VME_A16_ON_PCI 0x1fff0000 22 #endif 18 23 /* start of the A32 window on the VME bus 19 24 * TODO: this should perhaps be a configuration option -
c/src/lib/libbsp/powerpc/shared/vme/vmeconfig.c
r21b54fc r0bedb7ec 94 94 vmeUniverseSlavePortsShow(0); 95 95 96 /* install the VME in sterrupt manager */96 /* install the VME interrupt manager */ 97 97 vmeUniverseInstallIrqMgr(0,5,1,6); 98 98 if (vmeUniverse0PciIrqLine<0)
Note: See TracChangeset
for help on using the changeset viewer.