summaryrefslogtreecommitdiff
path: root/firmware/system.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/system.c')
-rw-r--r--firmware/system.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/firmware/system.c b/firmware/system.c
index 921a7d2314..e4b11e8b79 100644
--- a/firmware/system.c
+++ b/firmware/system.c
@@ -395,13 +395,13 @@ void system_init(void)
395 ipod_hw_rev = (*((volatile unsigned long*)(0x01fffffc))); 395 ipod_hw_rev = (*((volatile unsigned long*)(0x01fffffc)));
396 396
397 /* disable all irqs */ 397 /* disable all irqs */
398 outl(-1, 0x60001138); 398 COP_HI_INT_CLR = -1;
399 outl(-1, 0x60001128); 399 CPU_HI_INT_CLR = -1;
400 outl(-1, 0x6000111c); 400 HI_INT_FORCED_CLR = -1;
401 401
402 outl(-1, 0x60001038); 402 COP_INT_CLR = -1;
403 outl(-1, 0x60001028); 403 CPU_INT_CLR = -1;
404 outl(-1, 0x6000101c); 404 INT_FORCED_CLR = -1;
405 405
406# if NUM_CORES > 1 && defined(HAVE_ADJUSTABLE_CPU_FREQ) 406# if NUM_CORES > 1 && defined(HAVE_ADJUSTABLE_CPU_FREQ)
407 spinlock_init(&boostctrl_mtx); 407 spinlock_init(&boostctrl_mtx);