rk30: replace RK30_GICD_BASE with GIC_DIST_BASE, RK30_GICC_BASE with GIC_CPU_BASE
author黄涛 <huangtao@rock-chips.com>
Tue, 9 Jul 2013 03:35:28 +0000 (11:35 +0800)
committer黄涛 <huangtao@rock-chips.com>
Tue, 9 Jul 2013 03:35:59 +0000 (11:35 +0800)
arch/arm/mach-rk30/cpuidle.c
arch/arm/mach-rk30/platsmp.c

index 11f8b3e23bd08daa271a51075adca7b4e389e698..44e611496073ce67d3b337a1d847cf594a020402 100644 (file)
@@ -18,7 +18,7 @@
 
 static bool rk30_gic_interrupt_pending(void)
 {
-       return (readl_relaxed(RK30_GICC_BASE + GIC_CPU_HIGHPRI) != 0x3FF);
+       return (readl_relaxed(GIC_CPU_BASE + GIC_CPU_HIGHPRI) != 0x3FF);
 }
 
 static void rk30_wfi_until_interrupt(void)
index 5f0a2db30a59fa816bd410a0145752622cd13f99..f1edf874eace66f9112b4962de22385911630ecf 100755 (executable)
@@ -42,14 +42,14 @@ static void gic_raise_softirq_non_secure(const struct cpumask *mask, unsigned in
        dsb();
 
        /* this always happens on GIC0 */
-       writel_relaxed(map << 16 | irq | 0x8000, RK30_GICD_BASE + GIC_DIST_SOFTINT);
+       writel_relaxed(map << 16 | irq | 0x8000, GIC_DIST_BASE + GIC_DIST_SOFTINT);
 }
 
 static void gic_secondary_init_non_secure(void)
 {
 #define GIC_DIST_SECURITY      0x080
-       writel_relaxed(0xffffffff, RK30_GICD_BASE + GIC_DIST_SECURITY);
-       writel_relaxed(0xf, RK30_GICC_BASE + GIC_CPU_CTRL);
+       writel_relaxed(0xffffffff, GIC_DIST_BASE + GIC_DIST_SECURITY);
+       writel_relaxed(0xf, GIC_CPU_BASE + GIC_CPU_CTRL);
        dsb();
 }
 #endif