diff options
author | Joseph Lo <josephl@nvidia.com> | 2013-07-03 05:50:38 -0400 |
---|---|---|
committer | Stephen Warren <swarren@nvidia.com> | 2013-07-19 12:08:05 -0400 |
commit | ac2527bfc21739b77d687df1bfc4e973103fef7b (patch) | |
tree | e217d872db97681d551caf07f38129a8f3fa473f | |
parent | c04c77540a4f996ee94d0240bbae3a7512febd37 (diff) |
ARM: tegra: add a flag for tegra_disable_clean_inv_dcache to do LoUIS or ALL
Adding a flag for tegra_disable_clean_inv_dcache to flush cache as LoUIS
or ALL. After this patch, the v7_flush_dcache_louis is used for CPU hotplug
and CPU suspend in CPU power down (e.g. CPU idle power-down mode) case. And
the v7_flush_dcache_all is used for CPU cluster power down (e.g. suspend to
LP2 mode).
Signed-off-by: Joseph Lo <josephl@nvidia.com>
Signed-off-by: Stephen Warren <swarren@nvidia.com>
-rw-r--r-- | arch/arm/mach-tegra/hotplug.c | 2 | ||||
-rw-r--r-- | arch/arm/mach-tegra/sleep-tegra20.S | 1 | ||||
-rw-r--r-- | arch/arm/mach-tegra/sleep-tegra30.S | 1 | ||||
-rw-r--r-- | arch/arm/mach-tegra/sleep.S | 7 | ||||
-rw-r--r-- | arch/arm/mach-tegra/sleep.h | 6 |
5 files changed, 14 insertions, 3 deletions
diff --git a/arch/arm/mach-tegra/hotplug.c b/arch/arm/mach-tegra/hotplug.c index d07f152b275f..04de2e860923 100644 --- a/arch/arm/mach-tegra/hotplug.c +++ b/arch/arm/mach-tegra/hotplug.c | |||
@@ -37,7 +37,7 @@ int tegra_cpu_kill(unsigned cpu) | |||
37 | void __ref tegra_cpu_die(unsigned int cpu) | 37 | void __ref tegra_cpu_die(unsigned int cpu) |
38 | { | 38 | { |
39 | /* Clean L1 data cache */ | 39 | /* Clean L1 data cache */ |
40 | tegra_disable_clean_inv_dcache(); | 40 | tegra_disable_clean_inv_dcache(TEGRA_FLUSH_CACHE_LOUIS); |
41 | 41 | ||
42 | /* Shut down the current CPU. */ | 42 | /* Shut down the current CPU. */ |
43 | tegra_hotplug_shutdown(); | 43 | tegra_hotplug_shutdown(); |
diff --git a/arch/arm/mach-tegra/sleep-tegra20.S b/arch/arm/mach-tegra/sleep-tegra20.S index e3f2417c420e..f87721d6e50d 100644 --- a/arch/arm/mach-tegra/sleep-tegra20.S +++ b/arch/arm/mach-tegra/sleep-tegra20.S | |||
@@ -191,6 +191,7 @@ ENTRY(tegra20_sleep_cpu_secondary_finish) | |||
191 | mrc p15, 0, r11, c1, c0, 1 @ save actlr before exiting coherency | 191 | mrc p15, 0, r11, c1, c0, 1 @ save actlr before exiting coherency |
192 | 192 | ||
193 | /* Flush and disable the L1 data cache */ | 193 | /* Flush and disable the L1 data cache */ |
194 | mov r0, #TEGRA_FLUSH_CACHE_LOUIS | ||
194 | bl tegra_disable_clean_inv_dcache | 195 | bl tegra_disable_clean_inv_dcache |
195 | 196 | ||
196 | mov32 r0, TEGRA_PMC_VIRT + PMC_SCRATCH41 | 197 | mov32 r0, TEGRA_PMC_VIRT + PMC_SCRATCH41 |
diff --git a/arch/arm/mach-tegra/sleep-tegra30.S b/arch/arm/mach-tegra/sleep-tegra30.S index 5877f268fa97..6744161475b2 100644 --- a/arch/arm/mach-tegra/sleep-tegra30.S +++ b/arch/arm/mach-tegra/sleep-tegra30.S | |||
@@ -137,6 +137,7 @@ ENTRY(tegra30_sleep_cpu_secondary_finish) | |||
137 | mov r7, lr | 137 | mov r7, lr |
138 | 138 | ||
139 | /* Flush and disable the L1 data cache */ | 139 | /* Flush and disable the L1 data cache */ |
140 | mov r0, #TEGRA_FLUSH_CACHE_LOUIS | ||
140 | bl tegra_disable_clean_inv_dcache | 141 | bl tegra_disable_clean_inv_dcache |
141 | 142 | ||
142 | /* Powergate this CPU. */ | 143 | /* Powergate this CPU. */ |
diff --git a/arch/arm/mach-tegra/sleep.S b/arch/arm/mach-tegra/sleep.S index 9daaef26b0f6..6d6600dcbfe2 100644 --- a/arch/arm/mach-tegra/sleep.S +++ b/arch/arm/mach-tegra/sleep.S | |||
@@ -56,7 +56,9 @@ ENTRY(tegra_disable_clean_inv_dcache) | |||
56 | isb | 56 | isb |
57 | 57 | ||
58 | /* Flush the D-cache */ | 58 | /* Flush the D-cache */ |
59 | bl v7_flush_dcache_louis | 59 | cmp r0, #TEGRA_FLUSH_CACHE_ALL |
60 | blne v7_flush_dcache_louis | ||
61 | bleq v7_flush_dcache_all | ||
60 | 62 | ||
61 | /* Trun off coherency */ | 63 | /* Trun off coherency */ |
62 | exit_smp r4, r5 | 64 | exit_smp r4, r5 |
@@ -73,9 +75,12 @@ ENDPROC(tegra_disable_clean_inv_dcache) | |||
73 | * tegra?_tear_down_cpu | 75 | * tegra?_tear_down_cpu |
74 | */ | 76 | */ |
75 | ENTRY(tegra_sleep_cpu_finish) | 77 | ENTRY(tegra_sleep_cpu_finish) |
78 | mov r4, r0 | ||
76 | /* Flush and disable the L1 data cache */ | 79 | /* Flush and disable the L1 data cache */ |
80 | mov r0, #TEGRA_FLUSH_CACHE_ALL | ||
77 | bl tegra_disable_clean_inv_dcache | 81 | bl tegra_disable_clean_inv_dcache |
78 | 82 | ||
83 | mov r0, r4 | ||
79 | mov32 r6, tegra_tear_down_cpu | 84 | mov32 r6, tegra_tear_down_cpu |
80 | ldr r1, [r6] | 85 | ldr r1, [r6] |
81 | add r1, r1, r0 | 86 | add r1, r1, r0 |
diff --git a/arch/arm/mach-tegra/sleep.h b/arch/arm/mach-tegra/sleep.h index 98b7da698f2b..e907e406d129 100644 --- a/arch/arm/mach-tegra/sleep.h +++ b/arch/arm/mach-tegra/sleep.h | |||
@@ -41,6 +41,10 @@ | |||
41 | #define CPU_NOT_RESETTABLE 0 | 41 | #define CPU_NOT_RESETTABLE 0 |
42 | #endif | 42 | #endif |
43 | 43 | ||
44 | /* flag of tegra_disable_clean_inv_dcache to do LoUIS or all */ | ||
45 | #define TEGRA_FLUSH_CACHE_LOUIS 0 | ||
46 | #define TEGRA_FLUSH_CACHE_ALL 1 | ||
47 | |||
44 | #ifdef __ASSEMBLY__ | 48 | #ifdef __ASSEMBLY__ |
45 | /* returns the offset of the flow controller halt register for a cpu */ | 49 | /* returns the offset of the flow controller halt register for a cpu */ |
46 | .macro cpu_to_halt_reg rd, rcpu | 50 | .macro cpu_to_halt_reg rd, rcpu |
@@ -144,7 +148,7 @@ void tegra_pen_lock(void); | |||
144 | void tegra_pen_unlock(void); | 148 | void tegra_pen_unlock(void); |
145 | void tegra_resume(void); | 149 | void tegra_resume(void); |
146 | int tegra_sleep_cpu_finish(unsigned long); | 150 | int tegra_sleep_cpu_finish(unsigned long); |
147 | void tegra_disable_clean_inv_dcache(void); | 151 | void tegra_disable_clean_inv_dcache(u32 flag); |
148 | 152 | ||
149 | #ifdef CONFIG_HOTPLUG_CPU | 153 | #ifdef CONFIG_HOTPLUG_CPU |
150 | void tegra20_hotplug_shutdown(void); | 154 | void tegra20_hotplug_shutdown(void); |