forked from Imagelibrary/rtems
bsp/gen83xx: Support cache BSP options
This commit is contained in:
@@ -96,11 +96,11 @@ void bsp_start( void)
|
||||
* Enable instruction and data caches. Do not force writethrough mode.
|
||||
*/
|
||||
|
||||
#if BSP_INSTRUCTION_CACHE_ENABLED
|
||||
#ifdef BSP_INSTRUCTION_CACHE_ENABLED
|
||||
rtems_cache_enable_instruction();
|
||||
#endif
|
||||
|
||||
#if BSP_DATA_CACHE_ENABLED
|
||||
#ifdef BSP_DATA_CACHE_ENABLED
|
||||
rtems_cache_enable_data();
|
||||
#endif
|
||||
|
||||
@@ -130,6 +130,9 @@ void bsp_start( void)
|
||||
}
|
||||
|
||||
/* Initialize exception handler */
|
||||
#ifndef BSP_DATA_CACHE_ENABLED
|
||||
ppc_exc_cache_wb_check = 0;
|
||||
#endif
|
||||
sc = ppc_exc_initialize(
|
||||
PPC_INTERRUPT_DISABLE_MASK_DEFAULT,
|
||||
interrupt_stack_start,
|
||||
|
||||
@@ -149,7 +149,7 @@ void cpu_init( void)
|
||||
clear_mmu_regs();
|
||||
|
||||
/* Clear caches */
|
||||
PPC_CLEAR_SPECIAL_PURPOSE_REGISTER_BITS( HID0, HID0_ILOCK | HID0_DLOCK);
|
||||
PPC_CLEAR_SPECIAL_PURPOSE_REGISTER_BITS( HID0, HID0_ILOCK | HID0_DLOCK | HID0_ICE | HID0_DCE);
|
||||
PPC_SET_SPECIAL_PURPOSE_REGISTER_BITS( HID0, HID0_ICFI | HID0_DCI);
|
||||
PPC_CLEAR_SPECIAL_PURPOSE_REGISTER_BITS( HID0, HID0_ICFI | HID0_DCI);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user