diff options
author | Joseph Lo <josephl@nvidia.com> | 2013-01-03 01:42:59 -0500 |
---|---|---|
committer | Stephen Warren <swarren@nvidia.com> | 2013-01-28 12:21:44 -0500 |
commit | 57886616ca7bff844a6427436d0c8faf74653f73 (patch) | |
tree | 4c353be72a7f266727320189e8e91965b93fa0b0 /arch/arm | |
parent | 130bfed72c75a36c76ecc82d73818c6fccd2a468 (diff) |
ARM: tegra: update the cache maintenance order for CPU shutdown
Updating the cache maintenance order before CPU shutdown when doing CPU
hotplug.
The old order:
* clean L1 by flush_cache_all
* exit SMP
* CPU shutdown
Adapt to:
* disable L1 data cache by clear C bit
* clean L1 by v7_flush_dcache_louis
* exit SMP
* CPU shutdown
For CPU hotplug case, it's no need to do "flush_cache_all". And we should
disable L1 data cache before clean L1 data cache. Then leaving the SMP
coherency.
Signed-off-by: Joseph Lo <josephl@nvidia.com>
Acked-by: Peter De Schrijver <pdeschrijver@nvidia.com>
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/mach-tegra/hotplug.c | 4 | ||||
-rw-r--r-- | arch/arm/mach-tegra/sleep-tegra20.S | 3 | ||||
-rw-r--r-- | arch/arm/mach-tegra/sleep-tegra30.S | 3 | ||||
-rw-r--r-- | arch/arm/mach-tegra/sleep.S | 4 | ||||
-rw-r--r-- | arch/arm/mach-tegra/sleep.h | 1 |
5 files changed, 6 insertions, 9 deletions
diff --git a/arch/arm/mach-tegra/hotplug.c b/arch/arm/mach-tegra/hotplug.c index dca5141a2c31..d8c683b875d1 100644 --- a/arch/arm/mach-tegra/hotplug.c +++ b/arch/arm/mach-tegra/hotplug.c | |||
@@ -28,8 +28,8 @@ void __ref tegra_cpu_die(unsigned int cpu) | |||
28 | { | 28 | { |
29 | cpu = cpu_logical_map(cpu); | 29 | cpu = cpu_logical_map(cpu); |
30 | 30 | ||
31 | /* Flush the L1 data cache. */ | 31 | /* Clean L1 data cache */ |
32 | flush_cache_all(); | 32 | tegra_disable_clean_inv_dcache(); |
33 | 33 | ||
34 | /* Shut down the current CPU. */ | 34 | /* Shut down the current CPU. */ |
35 | tegra_hotplug_shutdown(); | 35 | tegra_hotplug_shutdown(); |
diff --git a/arch/arm/mach-tegra/sleep-tegra20.S b/arch/arm/mach-tegra/sleep-tegra20.S index 72ce709799da..ad2ca07d0578 100644 --- a/arch/arm/mach-tegra/sleep-tegra20.S +++ b/arch/arm/mach-tegra/sleep-tegra20.S | |||
@@ -33,9 +33,6 @@ | |||
33 | * should never return | 33 | * should never return |
34 | */ | 34 | */ |
35 | ENTRY(tegra20_hotplug_shutdown) | 35 | ENTRY(tegra20_hotplug_shutdown) |
36 | /* Turn off SMP coherency */ | ||
37 | exit_smp r4, r5 | ||
38 | |||
39 | /* Put this CPU down */ | 36 | /* Put this CPU down */ |
40 | cpu_id r0 | 37 | cpu_id r0 |
41 | bl tegra20_cpu_shutdown | 38 | bl tegra20_cpu_shutdown |
diff --git a/arch/arm/mach-tegra/sleep-tegra30.S b/arch/arm/mach-tegra/sleep-tegra30.S index 562a8e7e413d..63a15bd9b653 100644 --- a/arch/arm/mach-tegra/sleep-tegra30.S +++ b/arch/arm/mach-tegra/sleep-tegra30.S | |||
@@ -32,9 +32,6 @@ | |||
32 | * Should never return. | 32 | * Should never return. |
33 | */ | 33 | */ |
34 | ENTRY(tegra30_hotplug_shutdown) | 34 | ENTRY(tegra30_hotplug_shutdown) |
35 | /* Turn off SMP coherency */ | ||
36 | exit_smp r4, r5 | ||
37 | |||
38 | /* Powergate this CPU */ | 35 | /* Powergate this CPU */ |
39 | mov r0, #TEGRA30_POWER_HOTPLUG_SHUTDOWN | 36 | mov r0, #TEGRA30_POWER_HOTPLUG_SHUTDOWN |
40 | bl tegra30_cpu_shutdown | 37 | bl tegra30_cpu_shutdown |
diff --git a/arch/arm/mach-tegra/sleep.S b/arch/arm/mach-tegra/sleep.S index 26afa7cbed11..addae357da3f 100644 --- a/arch/arm/mach-tegra/sleep.S +++ b/arch/arm/mach-tegra/sleep.S | |||
@@ -34,7 +34,7 @@ | |||
34 | #include "flowctrl.h" | 34 | #include "flowctrl.h" |
35 | #include "sleep.h" | 35 | #include "sleep.h" |
36 | 36 | ||
37 | #ifdef CONFIG_PM_SLEEP | 37 | #if defined(CONFIG_HOTPLUG_CPU) || defined(CONFIG_PM_SLEEP) |
38 | /* | 38 | /* |
39 | * tegra_disable_clean_inv_dcache | 39 | * tegra_disable_clean_inv_dcache |
40 | * | 40 | * |
@@ -60,7 +60,9 @@ ENTRY(tegra_disable_clean_inv_dcache) | |||
60 | 60 | ||
61 | ldmfd sp!, {r0, r4-r5, r7, r9-r11, pc} | 61 | ldmfd sp!, {r0, r4-r5, r7, r9-r11, pc} |
62 | ENDPROC(tegra_disable_clean_inv_dcache) | 62 | ENDPROC(tegra_disable_clean_inv_dcache) |
63 | #endif | ||
63 | 64 | ||
65 | #ifdef CONFIG_PM_SLEEP | ||
64 | /* | 66 | /* |
65 | * tegra_sleep_cpu_finish(unsigned long v2p) | 67 | * tegra_sleep_cpu_finish(unsigned long v2p) |
66 | * | 68 | * |
diff --git a/arch/arm/mach-tegra/sleep.h b/arch/arm/mach-tegra/sleep.h index 9821ee725420..56505c381ea8 100644 --- a/arch/arm/mach-tegra/sleep.h +++ b/arch/arm/mach-tegra/sleep.h | |||
@@ -106,6 +106,7 @@ exit_l2_resume: | |||
106 | #else | 106 | #else |
107 | void tegra_resume(void); | 107 | void tegra_resume(void); |
108 | int tegra_sleep_cpu_finish(unsigned long); | 108 | int tegra_sleep_cpu_finish(unsigned long); |
109 | void tegra_disable_clean_inv_dcache(void); | ||
109 | 110 | ||
110 | #ifdef CONFIG_HOTPLUG_CPU | 111 | #ifdef CONFIG_HOTPLUG_CPU |
111 | void tegra20_hotplug_init(void); | 112 | void tegra20_hotplug_init(void); |