2 * Copyright (c) 2012, NVIDIA Corporation. All rights reserved.
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms and conditions of the GNU General Public License,
6 * version 2, as published by the Free Software Foundation.
8 * This program is distributed in the hope it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 #include <linux/linkage.h>
19 #include <asm/assembler.h>
20 #include <asm/asm-offsets.h>
21 #include <asm/cache.h>
28 #define EMC_ADR_CFG 0x10
29 #define EMC_TIMING_CONTROL 0x28
30 #define EMC_REFRESH 0x70
32 #define EMC_SELF_REF 0xe0
34 #define EMC_FBIO_CFG5 0x104
35 #define EMC_AUTO_CAL_CONFIG 0x2a4
36 #define EMC_AUTO_CAL_INTERVAL 0x2a8
37 #define EMC_AUTO_CAL_STATUS 0x2ac
38 #define EMC_REQ_CTRL 0x2b0
39 #define EMC_CFG_DIG_DLL 0x2bc
40 #define EMC_EMC_STATUS 0x2b4
41 #define EMC_ZCAL_INTERVAL 0x2e0
42 #define EMC_ZQ_CAL 0x2ec
43 #define EMC_XM2VTTGENPADCTRL 0x310
44 #define EMC_XM2VTTGENPADCTRL2 0x314
47 #define PMC_CTRL_SIDE_EFFECT_LP0 (1 << 14) /* enter LP0 when CPU pwr gated */
49 #define PMC_PLLP_WB0_OVERRIDE 0xf8
50 #define PMC_IO_DPD_REQ 0x1b8
51 #define PMC_IO_DPD_STATUS 0x1bc
53 #define CLK_RESET_CCLK_BURST 0x20
54 #define CLK_RESET_CCLK_DIVIDER 0x24
55 #define CLK_RESET_SCLK_BURST 0x28
56 #define CLK_RESET_SCLK_DIVIDER 0x2c
58 #define CLK_RESET_PLLC_BASE 0x80
59 #define CLK_RESET_PLLC_MISC 0x8c
60 #define CLK_RESET_PLLM_BASE 0x90
61 #define CLK_RESET_PLLM_MISC 0x9c
62 #define CLK_RESET_PLLP_BASE 0xa0
63 #define CLK_RESET_PLLP_MISC 0xac
64 #define CLK_RESET_PLLA_BASE 0xb0
65 #define CLK_RESET_PLLA_MISC 0xbc
66 #define CLK_RESET_PLLX_BASE 0xe0
67 #define CLK_RESET_PLLX_MISC 0xe4
68 #define CLK_RESET_PLLX_MISC3 0x518
69 #define CLK_RESET_PLLX_MISC3_IDDQ 3
70 #define CLK_RESET_PLLM_MISC_IDDQ 5
71 #define CLK_RESET_PLLC_MISC_IDDQ 26
73 #define CLK_RESET_CLK_SOURCE_MSELECT 0x3b4
75 #define MSELECT_CLKM (0x3 << 30)
77 #define LOCK_DELAY 50 /* safety delay after lock is detected */
79 #define TEGRA30_POWER_HOTPLUG_SHUTDOWN (1 << 27) /* Hotplug shutdown */
81 .macro emc_device_mask, rd, base
82 ldr \rd, [\base, #EMC_ADR_CFG]
84 moveq \rd, #(0x1 << 8) @ just 1 device
85 movne \rd, #(0x3 << 8) @ 2 devices
88 .macro emc_timing_update, rd, base
90 str \rd, [\base, #EMC_TIMING_CONTROL]
92 ldr \rd, [\base, #EMC_EMC_STATUS]
93 tst \rd, #(0x1<<23) @ wait EMC_STATUS_TIMING_UPDATE_STALLED is clear
97 .macro pll_enable, rd, r_car_base, pll_base, pll_misc
98 ldr \rd, [\r_car_base, #\pll_base]
100 orreq \rd, \rd, #(1 << 30)
101 streq \rd, [\r_car_base, #\pll_base]
102 /* Enable lock detector */
104 ldr \rd, [\r_car_base, #\pll_misc]
105 bic \rd, \rd, #(1 << 18)
106 str \rd, [\r_car_base, #\pll_misc]
107 ldr \rd, [\r_car_base, #\pll_misc]
108 ldr \rd, [\r_car_base, #\pll_misc]
109 orr \rd, \rd, #(1 << 18)
110 str \rd, [\r_car_base, #\pll_misc]
114 .macro pll_locked, rd, r_car_base, pll_base
116 ldr \rd, [\r_car_base, #\pll_base]
121 .macro pll_iddq_exit, rd, car, iddq, iddq_bit
122 ldr \rd, [\car, #\iddq]
123 bic \rd, \rd, #(1<<\iddq_bit)
124 str \rd, [\car, #\iddq]
127 .macro pll_iddq_entry, rd, car, iddq, iddq_bit
128 ldr \rd, [\car, #\iddq]
129 orr \rd, \rd, #(1<<\iddq_bit)
130 str \rd, [\car, #\iddq]
133 #if defined(CONFIG_HOTPLUG_CPU) || defined(CONFIG_PM_SLEEP)
135 * tegra30_hotplug_shutdown(void)
137 * Powergates the current CPU.
138 * Should never return.
140 ENTRY(tegra30_hotplug_shutdown)
141 /* Powergate this CPU */
142 mov r0, #TEGRA30_POWER_HOTPLUG_SHUTDOWN
143 bl tegra30_cpu_shutdown
144 mov pc, lr @ should never get here
145 ENDPROC(tegra30_hotplug_shutdown)
148 * tegra30_cpu_shutdown(unsigned long flags)
150 * Puts the current CPU in wait-for-event mode on the flow controller
151 * and powergates it -- flags (in R0) indicate the request type.
154 * corrupts r0-r4, r10-r12
156 ENTRY(tegra30_cpu_shutdown)
158 tegra_get_soc_id TEGRA_APB_MISC_VIRT, r10
160 bne _no_cpu0_chk @ It's not Tegra30
163 moveq pc, lr @ Must never be called for CPU 0
166 ldr r12, =TEGRA_FLOW_CTRL_VIRT
167 cpu_to_csr_reg r1, r3
168 add r1, r1, r12 @ virtual CSR address for this CPU
169 cpu_to_halt_reg r2, r3
170 add r2, r2, r12 @ virtual HALT_EVENTS address for this CPU
173 * Clear this CPU's "event" and "interrupt" flags and power gate
174 * it when halting but not before it is in the "WFE" state.
177 FLOW_CTRL_CSR_INTR_FLAG | FLOW_CTRL_CSR_EVENT_FLAG | \
180 moveq r4, #(1 << 4) @ wfe bitmap
181 movne r4, #(1 << 8) @ wfi bitmap
182 ARM( orr r12, r12, r4, lsl r3 )
183 THUMB( lsl r4, r4, r3 )
184 THUMB( orr r12, r12, r4 )
190 subs r3, r3, #1 @ delay as a part of wfe war.
192 cpsid a @ disable imprecise aborts.
193 ldr r3, [r1] @ read CSR
194 str r3, [r1] @ clear CSR
196 tst r0, #TEGRA30_POWER_HOTPLUG_SHUTDOWN
197 beq flow_ctrl_setting_for_lp2
199 /* flow controller set up for hotplug */
200 mov r3, #FLOW_CTRL_WAITEVENT @ For hotplug
202 flow_ctrl_setting_for_lp2:
203 /* flow controller set up for LP2 */
205 moveq r3, #FLOW_CTRL_WAIT_FOR_INTERRUPT @ For LP2
206 movne r3, #FLOW_CTRL_WAITEVENT
207 orrne r3, r3, #FLOW_CTRL_HALT_GIC_IRQ
208 orrne r3, r3, #FLOW_CTRL_HALT_GIC_FIQ
218 wfeeq @ CPU should be power gated here
224 * 38 nop's, which fills reset of wfe cache line and
225 * 4 more cachelines with nop
230 b . @ should never get here
232 ENDPROC(tegra30_cpu_shutdown)
235 #ifdef CONFIG_PM_SLEEP
237 * tegra30_sleep_core_finish(unsigned long v2p)
239 * Enters suspend in LP0 or LP1 by turning off the MMU and jumping to
240 * tegra30_tear_down_core in IRAM
242 ENTRY(tegra30_sleep_core_finish)
243 /* Flush, disable the L1 data cache and exit SMP */
244 bl tegra_disable_clean_inv_dcache
247 * Preload all the address literals that are needed for the
248 * CPU power-gating process, to avoid loading from SDRAM which
249 * are not supported once SDRAM is put into self-refresh.
250 * LP0 / LP1 use physical address, since the MMU needs to be
251 * disabled before putting SDRAM into self-refresh to avoid
252 * memory access due to page table walks.
254 mov32 r4, TEGRA_PMC_BASE
255 mov32 r5, TEGRA_CLK_RESET_BASE
256 mov32 r6, TEGRA_FLOW_CTRL_BASE
257 mov32 r7, TEGRA_TMRUS_BASE
259 mov32 r3, tegra_shut_off_mmu
262 mov32 r0, tegra30_tear_down_core
263 mov32 r1, tegra30_iram_start
265 mov32 r1, TEGRA_IRAM_CODE_AREA
269 ENDPROC(tegra30_sleep_core_finish)
272 * tegra30_sleep_cpu_secondary_finish(unsigned long v2p)
274 * Enters LP2 on secondary CPU by exiting coherency and powergating the CPU.
276 ENTRY(tegra30_sleep_cpu_secondary_finish)
279 /* Flush and disable the L1 data cache */
280 mov r0, #TEGRA_FLUSH_CACHE_LOUIS
281 bl tegra_disable_clean_inv_dcache
283 /* Powergate this CPU. */
284 mov r0, #0 @ power mode flags (!hotplug)
285 bl tegra30_cpu_shutdown
286 mov r0, #1 @ never return here
288 ENDPROC(tegra30_sleep_cpu_secondary_finish)
291 * tegra30_tear_down_cpu
293 * Switches the CPU to enter sleep.
295 ENTRY(tegra30_tear_down_cpu)
296 mov32 r6, TEGRA_FLOW_CTRL_BASE
298 b tegra30_enter_sleep
299 ENDPROC(tegra30_tear_down_cpu)
301 /* START OF ROUTINES COPIED TO IRAM */
302 .align L1_CACHE_SHIFT
303 .globl tegra30_iram_start
309 * reset vector for LP1 restore; copied into IRAM during suspend.
310 * Brings the system back up to a safe staring point (SDRAM out of
311 * self-refresh, PLLC, PLLM and PLLP reenabled, CPU running on PLLX,
312 * system clock running on the same PLL that it suspended at), and
313 * jumps to tegra_resume to restore virtual addressing.
314 * The physical address of tegra_resume expected to be stored in
317 * NOTE: THIS *MUST* BE RELOCATED TO TEGRA_IRAM_CODE_AREA.
319 ENTRY(tegra30_lp1_reset)
321 * The CPU and system bus are running at 32KHz and executing from
322 * IRAM when this code is executed; immediately switch to CLKM and
323 * enable PLLP, PLLM, PLLC, PLLA and PLLX.
325 mov32 r0, TEGRA_CLK_RESET_BASE
328 str r1, [r0, #CLK_RESET_SCLK_BURST]
329 str r1, [r0, #CLK_RESET_CCLK_BURST]
331 str r1, [r0, #CLK_RESET_CCLK_DIVIDER]
332 str r1, [r0, #CLK_RESET_SCLK_DIVIDER]
334 tegra_get_soc_id TEGRA_APB_MISC_BASE, r10
336 beq _no_pll_iddq_exit
338 pll_iddq_exit r1, r0, CLK_RESET_PLLM_MISC, CLK_RESET_PLLM_MISC_IDDQ
339 pll_iddq_exit r1, r0, CLK_RESET_PLLC_MISC, CLK_RESET_PLLC_MISC_IDDQ
340 pll_iddq_exit r1, r0, CLK_RESET_PLLX_MISC3, CLK_RESET_PLLX_MISC3_IDDQ
342 mov32 r7, TEGRA_TMRUS_BASE
345 wait_until r1, r7, r3
347 /* enable PLLM via PMC */
348 mov32 r2, TEGRA_PMC_BASE
349 ldr r1, [r2, #PMC_PLLP_WB0_OVERRIDE]
350 orr r1, r1, #(1 << 12)
351 str r1, [r2, #PMC_PLLP_WB0_OVERRIDE]
353 pll_enable r1, r0, CLK_RESET_PLLM_BASE, 0
354 pll_enable r1, r0, CLK_RESET_PLLC_BASE, 0
355 pll_enable r1, r0, CLK_RESET_PLLX_BASE, 0
360 /* enable PLLM via PMC */
361 mov32 r2, TEGRA_PMC_BASE
362 ldr r1, [r2, #PMC_PLLP_WB0_OVERRIDE]
363 orr r1, r1, #(1 << 12)
364 str r1, [r2, #PMC_PLLP_WB0_OVERRIDE]
366 pll_enable r1, r0, CLK_RESET_PLLM_BASE, CLK_RESET_PLLM_MISC
367 pll_enable r1, r0, CLK_RESET_PLLC_BASE, CLK_RESET_PLLC_MISC
368 pll_enable r1, r0, CLK_RESET_PLLX_BASE, CLK_RESET_PLLX_MISC
371 pll_enable r1, r0, CLK_RESET_PLLP_BASE, CLK_RESET_PLLP_MISC
372 pll_enable r1, r0, CLK_RESET_PLLA_BASE, CLK_RESET_PLLA_MISC
374 pll_locked r1, r0, CLK_RESET_PLLM_BASE
375 pll_locked r1, r0, CLK_RESET_PLLP_BASE
376 pll_locked r1, r0, CLK_RESET_PLLA_BASE
377 pll_locked r1, r0, CLK_RESET_PLLC_BASE
378 pll_locked r1, r0, CLK_RESET_PLLX_BASE
380 mov32 r7, TEGRA_TMRUS_BASE
382 add r1, r1, #LOCK_DELAY
383 wait_until r1, r7, r3
385 adr r5, tegra30_sdram_pad_save
387 ldr r4, [r5, #0x18] @ restore CLK_SOURCE_MSELECT
388 str r4, [r0, #CLK_RESET_CLK_SOURCE_MSELECT]
390 ldr r4, [r5, #0x1C] @ restore SCLK_BURST
391 str r4, [r0, #CLK_RESET_SCLK_BURST]
394 movweq r4, #:lower16:((1 << 28) | (0x8)) @ burst policy is PLLX
395 movteq r4, #:upper16:((1 << 28) | (0x8))
396 movwne r4, #:lower16:((1 << 28) | (0xe))
397 movtne r4, #:upper16:((1 << 28) | (0xe))
398 str r4, [r0, #CLK_RESET_CCLK_BURST]
400 /* Restore pad power state to normal */
401 ldr r1, [r5, #0x14] @ PMC_IO_DPD_STATUS
403 bic r1, r1, #(1 << 31)
404 orr r1, r1, #(1 << 30)
405 str r1, [r2, #PMC_IO_DPD_REQ] @ DPD_OFF
408 movweq r0, #:lower16:TEGRA_EMC_BASE @ r0 reserved for emc base
409 movteq r0, #:upper16:TEGRA_EMC_BASE
410 movwne r0, #:lower16:TEGRA_EMC0_BASE
411 movtne r0, #:upper16:TEGRA_EMC0_BASE
414 ldr r1, [r5, #0xC] @ restore EMC_XM2VTTGENPADCTRL
415 str r1, [r0, #EMC_XM2VTTGENPADCTRL]
416 ldr r1, [r5, #0x10] @ restore EMC_XM2VTTGENPADCTRL2
417 str r1, [r0, #EMC_XM2VTTGENPADCTRL2]
418 ldr r1, [r5, #0x8] @ restore EMC_AUTO_CAL_INTERVAL
419 str r1, [r0, #EMC_AUTO_CAL_INTERVAL]
422 ldr r1, [r0, #EMC_CFG_DIG_DLL]
423 orr r1, r1, #(1 << 30) @ set DLL_RESET
424 str r1, [r0, #EMC_CFG_DIG_DLL]
426 emc_timing_update r1, r0
429 movweq r1, #:lower16:TEGRA_EMC1_BASE
430 movteq r1, #:upper16:TEGRA_EMC1_BASE
433 ldr r1, [r0, #EMC_AUTO_CAL_CONFIG]
434 orr r1, r1, #(1 << 31) @ set AUTO_CAL_ACTIVE
435 orreq r1, r1, #(1 << 27) @ set slave mode for channel 1
436 str r1, [r0, #EMC_AUTO_CAL_CONFIG]
438 emc_wait_auto_cal_onetime:
439 ldr r1, [r0, #EMC_AUTO_CAL_STATUS]
440 tst r1, #(1 << 31) @ wait until AUTO_CAL_ACTIVE is cleared
441 bne emc_wait_auto_cal_onetime
443 ldr r1, [r0, #EMC_CFG]
444 bic r1, r1, #(1 << 31) @ disable DRAM_CLK_STOP_PD
445 str r1, [r0, #EMC_CFG]
448 str r1, [r0, #EMC_SELF_REF] @ take DRAM out of self refresh
451 streq r1, [r0, #EMC_NOP]
452 streq r1, [r0, #EMC_NOP]
453 streq r1, [r0, #EMC_REFRESH]
455 emc_device_mask r1, r0
457 exit_selfrefresh_loop:
458 ldr r2, [r0, #EMC_EMC_STATUS]
460 bne exit_selfrefresh_loop
462 lsr r1, r1, #8 @ devSel, bit0:dev0, bit1:dev1
464 mov32 r7, TEGRA_TMRUS_BASE
465 ldr r2, [r0, #EMC_FBIO_CFG5]
467 and r2, r2, #3 @ check DRAM_TYPE
471 /* Issue a ZQ_CAL for dev0 - DDR3 */
472 mov32 r2, 0x80000011 @ DEV_SELECTION=2, LENGTH=LONG, CMD=1
473 str r2, [r0, #EMC_ZQ_CAL]
476 wait_until r2, r7, r3
481 /* Issue a ZQ_CAL for dev1 - DDR3 */
482 mov32 r2, 0x40000011 @ DEV_SELECTION=1, LENGTH=LONG, CMD=1
483 str r2, [r0, #EMC_ZQ_CAL]
486 wait_until r2, r7, r3
490 /* Issue a ZQ_CAL for dev0 - LPDDR2 */
491 mov32 r2, 0x800A00AB @ DEV_SELECTION=2, MA=10, OP=0xAB
492 str r2, [r0, #EMC_MRW]
495 wait_until r2, r7, r3
500 /* Issue a ZQ_CAL for dev0 - LPDDR2 */
501 mov32 r2, 0x400A00AB @ DEV_SELECTION=1, MA=10, OP=0xAB
502 str r2, [r0, #EMC_MRW]
505 wait_until r2, r7, r3
508 mov r1, #0 @ unstall all transactions
509 str r1, [r0, #EMC_REQ_CTRL]
510 ldr r1, [r5, #0x4] @ restore EMC_ZCAL_INTERVAL
511 str r1, [r0, #EMC_ZCAL_INTERVAL]
512 ldr r1, [r5, #0x0] @ restore EMC_CFG
513 str r1, [r0, #EMC_CFG]
515 /* Tegra114 had dual EMC channel, now config the other one */
517 bne __no_dual_emc_chanl
518 mov32 r1, TEGRA_EMC1_BASE
522 bne exit_self_refresh
525 mov32 r0, TEGRA_PMC_BASE
526 ldr r0, [r0, #PMC_SCRATCH41]
527 mov pc, r0 @ jump to tegra_resume
528 ENDPROC(tegra30_lp1_reset)
530 .align L1_CACHE_SHIFT
531 tegra30_sdram_pad_address:
532 .word TEGRA_EMC_BASE + EMC_CFG @0x0
533 .word TEGRA_EMC_BASE + EMC_ZCAL_INTERVAL @0x4
534 .word TEGRA_EMC_BASE + EMC_AUTO_CAL_INTERVAL @0x8
535 .word TEGRA_EMC_BASE + EMC_XM2VTTGENPADCTRL @0xc
536 .word TEGRA_EMC_BASE + EMC_XM2VTTGENPADCTRL2 @0x10
537 .word TEGRA_PMC_BASE + PMC_IO_DPD_STATUS @0x14
538 .word TEGRA_CLK_RESET_BASE + CLK_RESET_CLK_SOURCE_MSELECT @0x18
539 .word TEGRA_CLK_RESET_BASE + CLK_RESET_SCLK_BURST @0x1c
541 tegra114_sdram_pad_address:
542 .word TEGRA_EMC0_BASE + EMC_CFG @0x0
543 .word TEGRA_EMC0_BASE + EMC_ZCAL_INTERVAL @0x4
544 .word TEGRA_EMC0_BASE + EMC_AUTO_CAL_INTERVAL @0x8
545 .word TEGRA_EMC0_BASE + EMC_XM2VTTGENPADCTRL @0xc
546 .word TEGRA_EMC0_BASE + EMC_XM2VTTGENPADCTRL2 @0x10
547 .word TEGRA_PMC_BASE + PMC_IO_DPD_STATUS @0x14
548 .word TEGRA_CLK_RESET_BASE + CLK_RESET_CLK_SOURCE_MSELECT @0x18
549 .word TEGRA_CLK_RESET_BASE + CLK_RESET_SCLK_BURST @0x1c
550 .word TEGRA_EMC1_BASE + EMC_CFG @0x20
551 .word TEGRA_EMC1_BASE + EMC_ZCAL_INTERVAL @0x24
552 .word TEGRA_EMC1_BASE + EMC_AUTO_CAL_INTERVAL @0x28
553 .word TEGRA_EMC1_BASE + EMC_XM2VTTGENPADCTRL @0x2c
554 .word TEGRA_EMC1_BASE + EMC_XM2VTTGENPADCTRL2 @0x30
556 tegra30_sdram_pad_size:
557 .word tegra114_sdram_pad_address - tegra30_sdram_pad_address
559 tegra114_sdram_pad_size:
560 .word tegra30_sdram_pad_size - tegra114_sdram_pad_address
562 .type tegra30_sdram_pad_save, %object
563 tegra30_sdram_pad_save:
564 .rept (tegra30_sdram_pad_size - tegra114_sdram_pad_address) / 4
569 * tegra30_tear_down_core
571 * copied into and executed from IRAM
572 * puts memory in self-refresh for LP0 and LP1
574 tegra30_tear_down_core:
575 bl tegra30_sdram_self_refresh
576 bl tegra30_switch_cpu_to_clk32k
577 b tegra30_enter_sleep
580 * tegra30_switch_cpu_to_clk32k
582 * In LP0 and LP1 all PLLs will be turned off. Switching the CPU and System CLK
583 * to the 32KHz clock.
584 * r4 = TEGRA_PMC_BASE
585 * r5 = TEGRA_CLK_RESET_BASE
586 * r6 = TEGRA_FLOW_CTRL_BASE
587 * r7 = TEGRA_TMRUS_BASE
590 tegra30_switch_cpu_to_clk32k:
592 * start by jumping to CLKM to safely disable PLLs, then jump to
596 str r0, [r5, #CLK_RESET_SCLK_BURST]
597 /* 2uS delay delay between changing SCLK and CCLK */
600 wait_until r1, r7, r9
601 str r0, [r5, #CLK_RESET_CCLK_BURST]
603 str r0, [r5, #CLK_RESET_CCLK_DIVIDER]
604 str r0, [r5, #CLK_RESET_SCLK_DIVIDER]
606 /* switch the clock source of mselect to be CLK_M */
607 ldr r0, [r5, #CLK_RESET_CLK_SOURCE_MSELECT]
608 orr r0, r0, #MSELECT_CLKM
609 str r0, [r5, #CLK_RESET_CLK_SOURCE_MSELECT]
611 /* 2uS delay delay between changing SCLK and disabling PLLs */
614 wait_until r1, r7, r9
616 /* disable PLLM via PMC in LP1 */
617 ldr r0, [r4, #PMC_PLLP_WB0_OVERRIDE]
618 bic r0, r0, #(1 << 12)
619 str r0, [r4, #PMC_PLLP_WB0_OVERRIDE]
621 /* disable PLLP, PLLA, PLLC and PLLX */
622 ldr r0, [r5, #CLK_RESET_PLLP_BASE]
623 bic r0, r0, #(1 << 30)
624 str r0, [r5, #CLK_RESET_PLLP_BASE]
625 ldr r0, [r5, #CLK_RESET_PLLA_BASE]
626 bic r0, r0, #(1 << 30)
627 str r0, [r5, #CLK_RESET_PLLA_BASE]
628 ldr r0, [r5, #CLK_RESET_PLLC_BASE]
629 bic r0, r0, #(1 << 30)
630 str r0, [r5, #CLK_RESET_PLLC_BASE]
631 ldr r0, [r5, #CLK_RESET_PLLX_BASE]
632 bic r0, r0, #(1 << 30)
633 str r0, [r5, #CLK_RESET_PLLX_BASE]
637 pll_iddq_entry r1, r5, CLK_RESET_PLLX_MISC3, CLK_RESET_PLLX_MISC3_IDDQ
641 mov r0, #0 /* brust policy = 32KHz */
642 str r0, [r5, #CLK_RESET_SCLK_BURST]
647 * tegra30_enter_sleep
649 * uses flow controller to enter sleep state
650 * executes from IRAM with SDRAM in selfrefresh when target state is LP0 or LP1
651 * executes from SDRAM with target state is LP2
652 * r6 = TEGRA_FLOW_CTRL_BASE
657 cpu_to_csr_reg r2, r1
659 orr r0, r0, #FLOW_CTRL_CSR_INTR_FLAG | FLOW_CTRL_CSR_EVENT_FLAG
660 orr r0, r0, #FLOW_CTRL_CSR_ENABLE
663 tegra_get_soc_id TEGRA_APB_MISC_BASE, r10
665 mov r0, #FLOW_CTRL_WAIT_FOR_INTERRUPT
666 orreq r0, r0, #FLOW_CTRL_HALT_CPU_IRQ | FLOW_CTRL_HALT_CPU_FIQ
667 orrne r0, r0, #FLOW_CTRL_HALT_LIC_IRQ | FLOW_CTRL_HALT_LIC_FIQ
669 cpu_to_halt_reg r2, r1
672 ldr r0, [r6, r2] /* memory barrier */
677 wfi /* CPU should be power gated here */
679 /* !!!FIXME!!! Implement halt failure handler */
683 * tegra30_sdram_self_refresh
685 * called with MMU off and caches disabled
686 * must be executed from IRAM
687 * r4 = TEGRA_PMC_BASE
688 * r5 = TEGRA_CLK_RESET_BASE
689 * r6 = TEGRA_FLOW_CTRL_BASE
690 * r7 = TEGRA_TMRUS_BASE
693 tegra30_sdram_self_refresh:
695 adr r8, tegra30_sdram_pad_save
696 tegra_get_soc_id TEGRA_APB_MISC_BASE, r10
698 adreq r2, tegra30_sdram_pad_address
699 ldreq r3, tegra30_sdram_pad_size
700 adrne r2, tegra114_sdram_pad_address
701 ldrne r3, tegra114_sdram_pad_size
705 ldr r0, [r2, r9] @ r0 is the addr in the pad_address
708 str r1, [r8, r9] @ save the content of the addr
718 ldreq r0, =TEGRA_EMC_BASE @ r0 reserved for emc base addr
719 ldrne r0, =TEGRA_EMC0_BASE
724 str r1, [r0, #EMC_ZCAL_INTERVAL]
725 str r1, [r0, #EMC_AUTO_CAL_INTERVAL]
726 ldr r1, [r0, #EMC_CFG]
727 bic r1, r1, #(1 << 28)
728 bicne r1, r1, #(1 << 29)
729 str r1, [r0, #EMC_CFG] @ disable DYN_SELF_REF
731 emc_timing_update r1, r0
735 wait_until r1, r7, r2
738 ldr r1, [r0, #EMC_AUTO_CAL_STATUS]
739 tst r1, #(1 << 31) @ wait until AUTO_CAL_ACTIVE is cleared
740 bne emc_wait_auto_cal
743 str r1, [r0, #EMC_REQ_CTRL] @ stall incoming DRAM requests
746 ldr r1, [r0, #EMC_EMC_STATUS]
751 str r1, [r0, #EMC_SELF_REF]
753 emc_device_mask r1, r0
756 ldr r2, [r0, #EMC_EMC_STATUS]
759 bne emcself @ loop until DDR in self-refresh
761 /* Put VTTGEN in the lowest power mode */
762 ldr r1, [r0, #EMC_XM2VTTGENPADCTRL]
763 mov32 r2, 0xF8F8FFFF @ clear XM2VTTGEN_DRVUP and XM2VTTGEN_DRVDN
765 str r1, [r0, #EMC_XM2VTTGENPADCTRL]
766 ldr r1, [r0, #EMC_XM2VTTGENPADCTRL2]
768 orreq r1, r1, #7 @ set E_NO_VTTGEN
770 str r1, [r0, #EMC_XM2VTTGENPADCTRL2]
772 emc_timing_update r1, r0
774 /* Tegra114 had dual EMC channel, now config the other one */
776 bne no_dual_emc_chanl
777 mov32 r1, TEGRA_EMC1_BASE
780 bne enter_self_refresh
783 ldr r1, [r4, #PMC_CTRL]
784 tst r1, #PMC_CTRL_SIDE_EFFECT_LP0
787 * Put DDR_DATA, DISC_ADDR_CMD, DDR_ADDR_CMD, POP_ADDR_CMD, POP_CLK
788 * and COMP in the lowest power mode when LP1.
791 str r1, [r4, #PMC_IO_DPD_REQ]
799 /* dummy symbol for end of IRAM */
800 .align L1_CACHE_SHIFT
801 .global tegra30_iram_end