blob: 0d59360d891da8e244c81241f1cf39c96235919c [file] [log] [blame]
Joseph Loc2be5bf2012-08-16 17:31:50 +08001/*
Hiroshi Doyu74696882013-02-13 19:15:48 +02002 * Copyright (c) 2010-2013, NVIDIA Corporation. All rights reserved.
Joseph Loc2be5bf2012-08-16 17:31:50 +08003 *
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.
7 *
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
11 * more details.
12 *
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/>.
15 */
16
17#ifndef __MACH_TEGRA_SLEEP_H
18#define __MACH_TEGRA_SLEEP_H
19
Stephen Warren2be39c02012-10-04 14:24:09 -060020#include "iomap.h"
Dmitry Osipenko4d48edb2015-01-15 13:58:57 +030021#include "irammap.h"
Joseph Loc2be5bf2012-08-16 17:31:50 +080022
Joseph Lo59b0f682012-08-16 17:31:51 +080023#define TEGRA_ARM_PERIF_VIRT (TEGRA_ARM_PERIF_BASE - IO_CPU_PHYS \
24 + IO_CPU_VIRT)
Joseph Loc2be5bf2012-08-16 17:31:50 +080025#define TEGRA_FLOW_CTRL_VIRT (TEGRA_FLOW_CTRL_BASE - IO_PPSB_PHYS \
26 + IO_PPSB_VIRT)
Joseph Lo453689e2012-08-16 17:31:52 +080027#define TEGRA_CLK_RESET_VIRT (TEGRA_CLK_RESET_BASE - IO_PPSB_PHYS \
28 + IO_PPSB_VIRT)
Joseph Lo33d5c012013-05-20 18:39:29 +080029#define TEGRA_APB_MISC_VIRT (TEGRA_APB_MISC_BASE - IO_APB_PHYS \
30 + IO_APB_VIRT)
Joseph Lo5c1350b2013-01-15 22:10:38 +000031#define TEGRA_PMC_VIRT (TEGRA_PMC_BASE - IO_APB_PHYS + IO_APB_VIRT)
32
Dmitry Osipenko4d48edb2015-01-15 13:58:57 +030033#define TEGRA_IRAM_RESET_BASE_VIRT (IO_IRAM_VIRT + \
34 TEGRA_IRAM_RESET_HANDLER_OFFSET)
35
Joseph Lo5c1350b2013-01-15 22:10:38 +000036/* PMC_SCRATCH37-39 and 41 are used for tegra_pen_lock and idle */
37#define PMC_SCRATCH37 0x130
38#define PMC_SCRATCH38 0x134
39#define PMC_SCRATCH39 0x138
40#define PMC_SCRATCH41 0x140
41
42#ifdef CONFIG_ARCH_TEGRA_2x_SOC
43#define CPU_RESETTABLE 2
44#define CPU_RESETTABLE_SOON 1
45#define CPU_NOT_RESETTABLE 0
46#endif
Joseph Loc2be5bf2012-08-16 17:31:50 +080047
Joseph Loac2527b2013-07-03 17:50:38 +080048/* flag of tegra_disable_clean_inv_dcache to do LoUIS or all */
49#define TEGRA_FLUSH_CACHE_LOUIS 0
50#define TEGRA_FLUSH_CACHE_ALL 1
51
Joseph Loc2be5bf2012-08-16 17:31:50 +080052#ifdef __ASSEMBLY__
Joseph Loe7a932b2013-08-12 17:40:04 +080053/* waits until the microsecond counter (base) is > rn */
54.macro wait_until, rn, base, tmp
55 add \rn, \rn, #1
561001: ldr \tmp, [\base]
57 cmp \tmp, \rn
58 bmi 1001b
59.endm
60
Joseph Loc2be5bf2012-08-16 17:31:50 +080061/* returns the offset of the flow controller halt register for a cpu */
62.macro cpu_to_halt_reg rd, rcpu
63 cmp \rcpu, #0
64 subne \rd, \rcpu, #1
65 movne \rd, \rd, lsl #3
66 addne \rd, \rd, #0x14
67 moveq \rd, #0
68.endm
69
70/* returns the offset of the flow controller csr register for a cpu */
71.macro cpu_to_csr_reg rd, rcpu
72 cmp \rcpu, #0
73 subne \rd, \rcpu, #1
74 movne \rd, \rd, lsl #3
75 addne \rd, \rd, #0x18
76 moveq \rd, #8
77.endm
78
79/* returns the ID of the current processor */
80.macro cpu_id, rd
81 mrc p15, 0, \rd, c0, c0, 5
82 and \rd, \rd, #0xF
83.endm
84
85/* loads a 32-bit value into a register without a data access */
86.macro mov32, reg, val
87 movw \reg, #:lower16:\val
88 movt \reg, #:upper16:\val
89.endm
Joseph Lo59b0f682012-08-16 17:31:51 +080090
Joseph Lof6d06f32013-05-20 18:39:25 +080091/* Marco to check CPU part num */
92.macro check_cpu_part_num part_num, tmp1, tmp2
93 mrc p15, 0, \tmp1, c0, c0, 0
94 ubfx \tmp1, \tmp1, #4, #12
95 mov32 \tmp2, \part_num
96 cmp \tmp1, \tmp2
97.endm
98
Joseph Lo59b0f682012-08-16 17:31:51 +080099/* Macro to exit SMP coherency. */
100.macro exit_smp, tmp1, tmp2
101 mrc p15, 0, \tmp1, c1, c0, 1 @ ACTLR
102 bic \tmp1, \tmp1, #(1<<6) | (1<<0) @ clear ACTLR.SMP | ACTLR.FW
103 mcr p15, 0, \tmp1, c1, c0, 1 @ ACTLR
104 isb
Joseph Lof6d06f32013-05-20 18:39:25 +0800105#ifdef CONFIG_HAVE_ARM_SCU
106 check_cpu_part_num 0xc09, \tmp1, \tmp2
107 mrceq p15, 0, \tmp1, c0, c0, 5
108 andeq \tmp1, \tmp1, #0xF
109 moveq \tmp1, \tmp1, lsl #2
110 moveq \tmp2, #0xf
111 moveq \tmp2, \tmp2, lsl \tmp1
112 ldreq \tmp1, =(TEGRA_ARM_PERIF_VIRT + 0xC)
113 streq \tmp2, [\tmp1] @ invalidate SCU tags for CPU
Joseph Lo59b0f682012-08-16 17:31:51 +0800114 dsb
Joseph Lof6d06f32013-05-20 18:39:25 +0800115#endif
Joseph Lo59b0f682012-08-16 17:31:51 +0800116.endm
Joseph Lo29a0e7b2012-11-13 10:04:48 +0800117
Joseph Lo4b3e2ed2013-05-20 18:39:24 +0800118/* Macro to check Tegra revision */
119#define APB_MISC_GP_HIDREV 0x804
120.macro tegra_get_soc_id base, tmp1
121 mov32 \tmp1, \base
122 ldr \tmp1, [\tmp1, #APB_MISC_GP_HIDREV]
123 and \tmp1, \tmp1, #0xff00
124 mov \tmp1, \tmp1, lsr #8
125.endm
126
Joseph Lo59b0f682012-08-16 17:31:51 +0800127#else
Joseph Lo5c1350b2013-01-15 22:10:38 +0000128void tegra_pen_lock(void);
129void tegra_pen_unlock(void);
Joseph Lod3f29362012-10-31 17:41:16 +0800130void tegra_resume(void);
Joseph Lod5529202012-10-31 17:41:21 +0800131int tegra_sleep_cpu_finish(unsigned long);
Joseph Loac2527b2013-07-03 17:50:38 +0800132void tegra_disable_clean_inv_dcache(u32 flag);
Joseph Lo59b0f682012-08-16 17:31:51 +0800133
134#ifdef CONFIG_HOTPLUG_CPU
Hiroshi Doyu74696882013-02-13 19:15:48 +0200135void tegra20_hotplug_shutdown(void);
136void tegra30_hotplug_shutdown(void);
Joseph Lo59b0f682012-08-16 17:31:51 +0800137#endif
138
Joseph Lo1d328602013-01-16 17:33:55 +0000139void tegra20_cpu_shutdown(int cpu);
140int tegra20_cpu_is_resettable_soon(void);
Joseph Lo5c1350b2013-01-15 22:10:38 +0000141void tegra20_cpu_clear_resettable(void);
142#ifdef CONFIG_ARCH_TEGRA_2x_SOC
143void tegra20_cpu_set_resettable_soon(void);
144#else
145static inline void tegra20_cpu_set_resettable_soon(void) {}
146#endif
147
148int tegra20_sleep_cpu_secondary_finish(unsigned long);
Joseph Lo1d328602013-01-16 17:33:55 +0000149void tegra20_tear_down_cpu(void);
Joseph Lod457ef352012-10-31 17:41:17 +0800150int tegra30_sleep_cpu_secondary_finish(unsigned long);
Joseph Lod5529202012-10-31 17:41:21 +0800151void tegra30_tear_down_cpu(void);
Joseph Lod457ef352012-10-31 17:41:17 +0800152
Joseph Loc2be5bf2012-08-16 17:31:50 +0800153#endif
154#endif