summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRanjani Vaidyanathan <Ranjani.Vaidyanathan@freescale.com>2014-10-15 13:34:00 -0500
committerRanjani Vaidyanathan <Ranjani.Vaidyanathan@freescale.com>2014-10-15 13:34:00 -0500
commitc248ed788e4120dab0848fc3f68626374c5e64b7 (patch)
tree2e74c3256478fce9b9953cfdef252e4d9f9fd525
parent798017f249bd9d8087c1d92038f529ea5ae511e6 (diff)
MLK-9698 ARM:imx6x: Fix build break when CONFIG_SMP is not definedrel_imx_3.0.101_4.1.1
Ensure that all the code in busfreq driver that is SMP dependent is enclosed with CONFIG_SMP define, else the build breaks when CONFIG_SMP=n. Signed-off-by: Ranjani Vaidyanathan <Ranjani.Vaidyanathan@freescale.com>
-rw-r--r--arch/arm/mach-mx6/mx6_ddr_freq.S6
-rw-r--r--arch/arm/mach-mx6/mx6_mmdc.c46
2 files changed, 37 insertions, 15 deletions
diff --git a/arch/arm/mach-mx6/mx6_ddr_freq.S b/arch/arm/mach-mx6/mx6_ddr_freq.S
index 101e270ea370..3afc01ff41f0 100644
--- a/arch/arm/mach-mx6/mx6_ddr_freq.S
+++ b/arch/arm/mach-mx6/mx6_ddr_freq.S
@@ -23,12 +23,14 @@
#define L2_CACHE_SYNC 0x730
.extern iram_tlb_phys_addr
-.extern imx_scu_base
.globl mx6_ddr3_iram_start
.globl mx6_ddr3_iram_end
+#ifdef CONFIG_SMP
.globl wfe_ddr3_freq_change_start
.globl wfe_ddr3_freq_change_end
+.extern imx_scu_base
+#endif
.macro switch_to_528MHz
@@ -1158,6 +1160,7 @@ done:
.ltorg
mx6_ddr3_iram_end:
+#ifdef CONFIG_SMP
.align 3
ENTRY(wfe_ddr3_freq_change)
@@ -1229,3 +1232,4 @@ go_back_wfe:
mov pc, lr
.ltorg
wfe_ddr3_freq_change_end:
+#endif
diff --git a/arch/arm/mach-mx6/mx6_mmdc.c b/arch/arm/mach-mx6/mx6_mmdc.c
index 71d6ede4b49a..c970defca5d0 100644
--- a/arch/arm/mach-mx6/mx6_mmdc.c
+++ b/arch/arm/mach-mx6/mx6_mmdc.c
@@ -58,7 +58,6 @@ void (*mx6sl_lpddr2_change_freq)(u32 freq, int low_bus_freq_mode,
void *ddr_settings) = NULL;
void (*mx6sl_ddr3_change_freq)(u32 freq, void *ddr_settings, bool dll_mode, void* iomux_offsets, int low_bus_freq_mode) = NULL;
-void (*wfe_change_ddr_freq)(u32 cpuid, u32 *ddr_freq_change_done);
extern unsigned int ddr_low_rate;
extern unsigned int ddr_med_rate;
@@ -71,7 +70,6 @@ extern void __iomem *ccm_base;
extern void mx6_ddr_freq_change(u32 freq, void *ddr_settings, bool dll_mode, void *iomux_offsets);
extern void mx6sl_ddr_iram(int ddr_freq, int low_bus_freq_mode, void *ddr_settings);
extern void mx6sl_ddr3_freq_change(u32 freq, void *ddr_settings, bool dll_mode, void *iomux_offsets, int low_bus_freq_mode);
-extern void wfe_ddr3_freq_change(u32 cpuid, u32 *ddr_freq_change_done);
extern unsigned long save_ttbr1(void);
extern void restore_ttbr1(u32 ttbr1);
@@ -81,20 +79,23 @@ extern unsigned long mx6sl_lpddr2_iram_end asm("mx6sl_lpddr2_iram_end");
extern unsigned long mx6sl_lpddr2_iram_start asm("mx6sl_lpddr2_iram_start");
extern unsigned long mx6sl_ddr3_iram_end asm("mx6sl_ddr3_iram_end");
extern unsigned long mx6sl_ddr3_iram_start asm("mx6sl_ddr3_iram_start");
+#ifdef CONFIG_SMP
extern unsigned long wfe_ddr3_freq_change_start asm("wfe_ddr3_freq_change_start");
extern unsigned long wfe_ddr3_freq_change_end asm("wfe_ddr3_freq_change_end");
-
+void (*wfe_change_ddr_freq)(u32 cpuid, u32 *ddr_freq_change_done);
+extern void wfe_ddr3_freq_change(u32 cpuid, u32 *ddr_freq_change_done);
+u32 *wait_for_ddr_freq_update;
+static unsigned long wfe_freq_change_iram_base;
+static volatile unsigned int cpus_in_wfe;
+#endif
unsigned long ddr_freq_change_iram_phys_addr;
-u32 *wait_for_ddr_freq_update;
static void *ddr_freq_change_iram_base;
static int ddr_settings_size;
static int iomux_settings_size;
-static volatile unsigned int cpus_in_wfe;
static int curr_ddr_rate;
static unsigned int ddr_type;
-static unsigned long wfe_freq_change_iram_base;
#define MIN_DLL_ON_FREQ 333000000
#define MAX_DLL_OFF_FREQ 125000000
@@ -236,6 +237,7 @@ int can_change_ddr_freq(void)
}
+#ifdef CONFIG_SMP
/* Each active core apart from the one changing the DDR frequency will execute
* this function. The rest of the cores have to remain in WFE state until the frequency
* is changed.
@@ -258,18 +260,20 @@ irqreturn_t wait_in_wfe_irq(int irq, void *dev_id)
return IRQ_HANDLED;
}
+#endif
/* Change the DDR frequency. */
int update_ddr_freq(int ddr_rate)
{
int i, j;
- unsigned int reg;
bool dll_off = false;
+ int me = 0;
+ u32 ttbr1;
+#ifdef CONFIG_SMP
unsigned int online_cpus = 0;
+ unsigned int reg;
int cpu = 0;
- int me;
- u32 ttbr1;
-
+#endif
if (!can_change_ddr_freq())
return -1;
@@ -347,6 +351,7 @@ int update_ddr_freq(int ddr_rate)
/* Ensure that all Cores are in WFE. */
local_irq_disable();
+#ifdef CONFIG_SMP
me = smp_processor_id();
/* Make sure all the online cores are active */
@@ -382,6 +387,7 @@ int update_ddr_freq(int ddr_rate)
if (reg == online_cpus)
break;
}
+#endif
/* Ensure iram_tlb_phys_addr is flushed to DDR. */
__cpuc_flush_dcache_area(&iram_tlb_phys_addr, sizeof(iram_tlb_phys_addr));
@@ -402,12 +408,13 @@ int update_ddr_freq(int ddr_rate)
curr_ddr_rate = ddr_rate;
+#ifdef CONFIG_SMP
/* DDR frequency change is done . */
*wait_for_ddr_freq_update = false;
/* Wake up all the cores. */
sev();
-
+#endif
local_irq_enable();
printk(KERN_DEBUG "Bus freq set to %d done! cpu=%d\n", ddr_rate, me);
@@ -417,9 +424,12 @@ int update_ddr_freq(int ddr_rate)
int init_mmdc_settings(void)
{
- int i, err, cpu;
+ int i;
unsigned long ddr_code_size = 0;
unsigned long wfe_code_size = 0;
+#ifdef CONFIG_SMP
+ int err, cpu;
+#endif
imx_scu_base = IO_ADDRESS(SCU_BASE_ADDR);
@@ -438,7 +448,9 @@ int init_mmdc_settings(void)
ddr_code_size = (&mx6sl_ddr3_iram_end -&mx6sl_ddr3_iram_start) *4;
} else {
ddr_code_size = (&mx6_ddr3_iram_end -&mx6_ddr3_iram_start) *4;
+#ifdef CONFIG_SMP
wfe_code_size = (&wfe_ddr3_freq_change_end -&wfe_ddr3_freq_change_start) *4;
+#endif
if (cpu_is_mx6q()) {
ddr_settings_size = ARRAY_SIZE(ddr3_dll_mx6q) + ARRAY_SIZE(ddr3_calibration);
iomux_settings_size = ARRAY_SIZE(iomux_offsets_mx6q);
@@ -524,7 +536,9 @@ int init_mmdc_settings(void)
iram_iomux_settings[i+1][0] = iomux_offsets_mx6q[i][0];
iram_iomux_settings[i+1][1] = iomux_offsets_mx6q[i][1];
}
+#ifdef CONFIG_SMP
irq_used = irqs_used_mx6q;
+#endif
}
if (cpu_is_mx6dl()) {
@@ -535,7 +549,9 @@ int init_mmdc_settings(void)
iram_iomux_settings[i+1][0] = iomux_offsets_mx6dl[i][0];
iram_iomux_settings[i+1][1] = iomux_offsets_mx6dl[i][1];
}
+#ifdef CONFIG_SMP
irq_used = irqs_used_mx6dl;
+#endif
}
if (cpu_is_mx6sl()) {
for (i = 0; i < iomux_settings_size; i++) {
@@ -547,6 +563,7 @@ int init_mmdc_settings(void)
}
}
+#ifdef CONFIG_SMP
wfe_freq_change_iram_base = (unsigned long)((u32 *)iram_ddr_settings + (ddr_settings_size * 8) + 8);
if (wfe_freq_change_iram_base & (FNCPY_ALIGN - 1))
@@ -558,8 +575,6 @@ int init_mmdc_settings(void)
/* Store the variable used to communicate between cores in a non-cacheable IRAM area */
wait_for_ddr_freq_update = (u32 *)&iram_iomux_settings[0][1];
- curr_ddr_rate = ddr_normal_rate;
-
if (!cpu_is_mx6sl()) {
for_each_online_cpu(cpu) {
/* Set up a reserved interrupt to get all the active cores into a WFE state
@@ -578,5 +593,8 @@ int init_mmdc_settings(void)
}
}
}
+#endif
+ curr_ddr_rate = ddr_normal_rate;
+
return 0;
}