1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 * arch/arm/mach-tegra/sleep.S
5 * Copyright (c) 2010-2011, NVIDIA Corporation.
6 * Copyright (c) 2011, Google, Inc.
8 * Author: Colin Cross <ccross@android.com>
9 * Gary King <gking@nvidia.com>
12 #include <linux/linkage.h>
14 #include <asm/assembler.h>
15 #include <asm/cache.h>
17 #include <asm/hardware/cache-l2x0.h>
22 #define CLK_RESET_CCLK_BURST 0x20
23 #define CLK_RESET_CCLK_DIVIDER 0x24
27 #if defined(CONFIG_HOTPLUG_CPU) || defined(CONFIG_PM_SLEEP)
29 * tegra_disable_clean_inv_dcache
31 * disable, clean & invalidate the D-cache
33 * Corrupted registers: r1-r3, r6, r8, r9-r11
35 ENTRY(tegra_disable_clean_inv_dcache)
36 stmfd sp!, {r0, r4-r5, r7, r9-r11, lr}
39 /* Disable the D-cache */
40 mrc p15, 0, r2, c1, c0, 0
41 tst r2, #CR_C @ see tegra_sleep_cpu()
43 mcrne p15, 0, r2, c1, c0, 0
46 /* Flush the D-cache */
47 cmp r0, #TEGRA_FLUSH_CACHE_ALL
48 blne v7_flush_dcache_louis
49 bleq v7_flush_dcache_all
51 /* Trun off coherency */
54 ldmfd sp!, {r0, r4-r5, r7, r9-r11, pc}
55 ENDPROC(tegra_disable_clean_inv_dcache)
58 #ifdef CONFIG_PM_SLEEP
60 * tegra_init_l2_for_a15
62 * set up the correct L2 cache data RAM latency
64 ENTRY(tegra_init_l2_for_a15)
65 mrc p15, 0, r0, c0, c0, 5
67 tst r0, #1 @ only need for cluster 0
70 mrc p15, 0x1, r0, c9, c0, 2
75 mcrne p15, 0x1, r0, c9, c0, 2
79 ENDPROC(tegra_init_l2_for_a15)
82 * tegra_sleep_cpu_finish(unsigned long v2p)
84 * enters suspend in LP2 by turning off the mmu and jumping to
85 * tegra?_tear_down_cpu
87 ENTRY(tegra_sleep_cpu_finish)
89 /* Flush and disable the L1 data cache */
90 mov r0, #TEGRA_FLUSH_CACHE_ALL
91 bl tegra_disable_clean_inv_dcache
94 mov32 r6, tegra_tear_down_cpu
98 mov32 r3, tegra_shut_off_mmu
103 ENDPROC(tegra_sleep_cpu_finish)
108 * r0 = physical address to jump to with mmu off
110 * called with VA=PA mapping
111 * turns off MMU, icache, dcache and branch prediction
113 .align L1_CACHE_SHIFT
114 .pushsection .idmap.text, "ax"
115 ENTRY(tegra_shut_off_mmu)
116 mrc p15, 0, r3, c1, c0, 0
117 movw r2, #CR_I | CR_Z | CR_C | CR_M
120 mcr p15, 0, r3, c1, c0, 0
122 #ifdef CONFIG_CACHE_L2X0
123 /* Disable L2 cache */
124 check_cpu_part_num 0xc09, r9, r10
127 mov32 r2, TEGRA_ARM_PERIF_BASE + 0x3000
128 ldr r3, [r2, #L2X0_CTRL]
129 tst r3, #L2X0_CTRL_EN @ see tegra_sleep_cpu()
131 strne r3, [r2, #L2X0_CTRL]
134 ENDPROC(tegra_shut_off_mmu)
138 * tegra_switch_cpu_to_pllp
140 * In LP2 the normal cpu clock pllx will be turned off. Switch the CPU to pllp
142 ENTRY(tegra_switch_cpu_to_pllp)
143 /* in LP2 idle (SDRAM active), set the CPU burst policy to PLLP */
144 mov32 r5, TEGRA_CLK_RESET_BASE
145 mov r0, #(2 << 28) @ burst policy = run mode
146 orr r0, r0, #(4 << 4) @ use PLLP in run mode burst
147 str r0, [r5, #CLK_RESET_CCLK_BURST]
149 str r0, [r5, #CLK_RESET_CCLK_DIVIDER]
151 ENDPROC(tegra_switch_cpu_to_pllp)