| 160 | } |
| 161 | |
| 162 | void L2GlobalInvalidate(void) |
| 163 | { |
| 164 | L2Disable(); |
| 165 | PPCMtl2cr(PPCMfl2cr() | 0x00200000); |
| 166 | while (PPCMfl2cr() & 0x00000001u) |
| 167 | ; |
| 168 | PPCMtl2cr(PPCMfl2cr() & ~0x00200000); |
| 169 | while (PPCMfl2cr() & 0x00000001u) |
| 170 | { |
| 171 | DBPrintf(">>> L2 INVALIDATE : SHOULD NEVER HAPPEN\n"); |
| 172 | } |
| 173 | } |
| 174 | |
| 175 | inline void L2Init(void) |
| 176 | { |