]> git.karo-electronics.de Git - karo-tx-linux.git/blob - arch/arm/mach-vexpress/tc2_pm.c
rt2x00: rt2800pci: use module_pci_driver macro
[karo-tx-linux.git] / arch / arm / mach-vexpress / tc2_pm.c
1 /*
2  * arch/arm/mach-vexpress/tc2_pm.c - TC2 power management support
3  *
4  * Created by:  Nicolas Pitre, October 2012
5  * Copyright:   (C) 2012-2013  Linaro Limited
6  *
7  * Some portions of this file were originally written by Achin Gupta
8  * Copyright:   (C) 2012  ARM Limited
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License version 2 as
12  * published by the Free Software Foundation.
13  */
14
15 #include <linux/init.h>
16 #include <linux/io.h>
17 #include <linux/kernel.h>
18 #include <linux/of_address.h>
19 #include <linux/spinlock.h>
20 #include <linux/errno.h>
21 #include <linux/irqchip/arm-gic.h>
22
23 #include <asm/mcpm.h>
24 #include <asm/proc-fns.h>
25 #include <asm/cacheflush.h>
26 #include <asm/cputype.h>
27 #include <asm/cp15.h>
28
29 #include <linux/arm-cci.h>
30
31 #include "spc.h"
32
33 /* SCC conf registers */
34 #define A15_CONF                0x400
35 #define A7_CONF                 0x500
36 #define SYS_INFO                0x700
37 #define SPC_BASE                0xb00
38
39 /*
40  * We can't use regular spinlocks. In the switcher case, it is possible
41  * for an outbound CPU to call power_down() after its inbound counterpart
42  * is already live using the same logical CPU number which trips lockdep
43  * debugging.
44  */
45 static arch_spinlock_t tc2_pm_lock = __ARCH_SPIN_LOCK_UNLOCKED;
46
47 #define TC2_CLUSTERS                    2
48 #define TC2_MAX_CPUS_PER_CLUSTER        3
49
50 static unsigned int tc2_nr_cpus[TC2_CLUSTERS];
51
52 /* Keep per-cpu usage count to cope with unordered up/down requests */
53 static int tc2_pm_use_count[TC2_MAX_CPUS_PER_CLUSTER][TC2_CLUSTERS];
54
55 #define tc2_cluster_unused(cluster) \
56         (!tc2_pm_use_count[0][cluster] && \
57          !tc2_pm_use_count[1][cluster] && \
58          !tc2_pm_use_count[2][cluster])
59
60 static int tc2_pm_power_up(unsigned int cpu, unsigned int cluster)
61 {
62         pr_debug("%s: cpu %u cluster %u\n", __func__, cpu, cluster);
63         if (cluster >= TC2_CLUSTERS || cpu >= tc2_nr_cpus[cluster])
64                 return -EINVAL;
65
66         /*
67          * Since this is called with IRQs enabled, and no arch_spin_lock_irq
68          * variant exists, we need to disable IRQs manually here.
69          */
70         local_irq_disable();
71         arch_spin_lock(&tc2_pm_lock);
72
73         if (tc2_cluster_unused(cluster))
74                 ve_spc_powerdown(cluster, false);
75
76         tc2_pm_use_count[cpu][cluster]++;
77         if (tc2_pm_use_count[cpu][cluster] == 1) {
78                 ve_spc_set_resume_addr(cluster, cpu,
79                                        virt_to_phys(mcpm_entry_point));
80                 ve_spc_cpu_wakeup_irq(cluster, cpu, true);
81         } else if (tc2_pm_use_count[cpu][cluster] != 2) {
82                 /*
83                  * The only possible values are:
84                  * 0 = CPU down
85                  * 1 = CPU (still) up
86                  * 2 = CPU requested to be up before it had a chance
87                  *     to actually make itself down.
88                  * Any other value is a bug.
89                  */
90                 BUG();
91         }
92
93         arch_spin_unlock(&tc2_pm_lock);
94         local_irq_enable();
95
96         return 0;
97 }
98
99 static void tc2_pm_down(u64 residency)
100 {
101         unsigned int mpidr, cpu, cluster;
102         bool last_man = false, skip_wfi = false;
103
104         mpidr = read_cpuid_mpidr();
105         cpu = MPIDR_AFFINITY_LEVEL(mpidr, 0);
106         cluster = MPIDR_AFFINITY_LEVEL(mpidr, 1);
107
108         pr_debug("%s: cpu %u cluster %u\n", __func__, cpu, cluster);
109         BUG_ON(cluster >= TC2_CLUSTERS || cpu >= TC2_MAX_CPUS_PER_CLUSTER);
110
111         __mcpm_cpu_going_down(cpu, cluster);
112
113         arch_spin_lock(&tc2_pm_lock);
114         BUG_ON(__mcpm_cluster_state(cluster) != CLUSTER_UP);
115         tc2_pm_use_count[cpu][cluster]--;
116         if (tc2_pm_use_count[cpu][cluster] == 0) {
117                 ve_spc_cpu_wakeup_irq(cluster, cpu, true);
118                 if (tc2_cluster_unused(cluster)) {
119                         ve_spc_powerdown(cluster, true);
120                         ve_spc_global_wakeup_irq(true);
121                         last_man = true;
122                 }
123         } else if (tc2_pm_use_count[cpu][cluster] == 1) {
124                 /*
125                  * A power_up request went ahead of us.
126                  * Even if we do not want to shut this CPU down,
127                  * the caller expects a certain state as if the WFI
128                  * was aborted.  So let's continue with cache cleaning.
129                  */
130                 skip_wfi = true;
131         } else
132                 BUG();
133
134         if (last_man && __mcpm_outbound_enter_critical(cpu, cluster)) {
135                 arch_spin_unlock(&tc2_pm_lock);
136
137                 if (read_cpuid_part_number() == ARM_CPU_PART_CORTEX_A15) {
138                         /*
139                          * On the Cortex-A15 we need to disable
140                          * L2 prefetching before flushing the cache.
141                          */
142                         asm volatile(
143                         "mcr    p15, 1, %0, c15, c0, 3 \n\t"
144                         "isb    \n\t"
145                         "dsb    "
146                         : : "r" (0x400) );
147                 }
148
149                 /*
150                  * We need to disable and flush the whole (L1 and L2) cache.
151                  * Let's do it in the safest possible way i.e. with
152                  * no memory access within the following sequence
153                  * including the stack.
154                  *
155                  * Note: fp is preserved to the stack explicitly prior doing
156                  * this since adding it to the clobber list is incompatible
157                  * with having CONFIG_FRAME_POINTER=y.
158                  */
159                 asm volatile(
160                 "str    fp, [sp, #-4]! \n\t"
161                 "mrc    p15, 0, r0, c1, c0, 0   @ get CR \n\t"
162                 "bic    r0, r0, #"__stringify(CR_C)" \n\t"
163                 "mcr    p15, 0, r0, c1, c0, 0   @ set CR \n\t"
164                 "isb    \n\t"
165                 "bl     v7_flush_dcache_all \n\t"
166                 "clrex  \n\t"
167                 "mrc    p15, 0, r0, c1, c0, 1   @ get AUXCR \n\t"
168                 "bic    r0, r0, #(1 << 6)       @ disable local coherency \n\t"
169                 "mcr    p15, 0, r0, c1, c0, 1   @ set AUXCR \n\t"
170                 "isb    \n\t"
171                 "dsb    \n\t"
172                 "ldr    fp, [sp], #4"
173                 : : : "r0","r1","r2","r3","r4","r5","r6","r7",
174                       "r9","r10","lr","memory");
175
176                 cci_disable_port_by_cpu(mpidr);
177
178                 __mcpm_outbound_leave_critical(cluster, CLUSTER_DOWN);
179         } else {
180                 /*
181                  * If last man then undo any setup done previously.
182                  */
183                 if (last_man) {
184                         ve_spc_powerdown(cluster, false);
185                         ve_spc_global_wakeup_irq(false);
186                 }
187
188                 arch_spin_unlock(&tc2_pm_lock);
189
190                 /*
191                  * We need to disable and flush only the L1 cache.
192                  * Let's do it in the safest possible way as above.
193                  */
194                 asm volatile(
195                 "str    fp, [sp, #-4]! \n\t"
196                 "mrc    p15, 0, r0, c1, c0, 0   @ get CR \n\t"
197                 "bic    r0, r0, #"__stringify(CR_C)" \n\t"
198                 "mcr    p15, 0, r0, c1, c0, 0   @ set CR \n\t"
199                 "isb    \n\t"
200                 "bl     v7_flush_dcache_louis \n\t"
201                 "clrex  \n\t"
202                 "mrc    p15, 0, r0, c1, c0, 1   @ get AUXCR \n\t"
203                 "bic    r0, r0, #(1 << 6)       @ disable local coherency \n\t"
204                 "mcr    p15, 0, r0, c1, c0, 1   @ set AUXCR \n\t"
205                 "isb    \n\t"
206                 "dsb    \n\t"
207                 "ldr    fp, [sp], #4"
208                 : : : "r0","r1","r2","r3","r4","r5","r6","r7",
209                       "r9","r10","lr","memory");
210         }
211
212         __mcpm_cpu_down(cpu, cluster);
213
214         /* Now we are prepared for power-down, do it: */
215         if (!skip_wfi)
216                 wfi();
217
218         /* Not dead at this point?  Let our caller cope. */
219 }
220
221 static void tc2_pm_power_down(void)
222 {
223         tc2_pm_down(0);
224 }
225
226 static void tc2_pm_suspend(u64 residency)
227 {
228         unsigned int mpidr, cpu, cluster;
229
230         mpidr = read_cpuid_mpidr();
231         cpu = MPIDR_AFFINITY_LEVEL(mpidr, 0);
232         cluster = MPIDR_AFFINITY_LEVEL(mpidr, 1);
233         ve_spc_set_resume_addr(cluster, cpu, virt_to_phys(mcpm_entry_point));
234         gic_cpu_if_down();
235         tc2_pm_down(residency);
236 }
237
238 static void tc2_pm_powered_up(void)
239 {
240         unsigned int mpidr, cpu, cluster;
241         unsigned long flags;
242
243         mpidr = read_cpuid_mpidr();
244         cpu = MPIDR_AFFINITY_LEVEL(mpidr, 0);
245         cluster = MPIDR_AFFINITY_LEVEL(mpidr, 1);
246
247         pr_debug("%s: cpu %u cluster %u\n", __func__, cpu, cluster);
248         BUG_ON(cluster >= TC2_CLUSTERS || cpu >= TC2_MAX_CPUS_PER_CLUSTER);
249
250         local_irq_save(flags);
251         arch_spin_lock(&tc2_pm_lock);
252
253         if (tc2_cluster_unused(cluster)) {
254                 ve_spc_powerdown(cluster, false);
255                 ve_spc_global_wakeup_irq(false);
256         }
257
258         if (!tc2_pm_use_count[cpu][cluster])
259                 tc2_pm_use_count[cpu][cluster] = 1;
260
261         ve_spc_cpu_wakeup_irq(cluster, cpu, false);
262         ve_spc_set_resume_addr(cluster, cpu, 0);
263
264         arch_spin_unlock(&tc2_pm_lock);
265         local_irq_restore(flags);
266 }
267
268 static const struct mcpm_platform_ops tc2_pm_power_ops = {
269         .power_up       = tc2_pm_power_up,
270         .power_down     = tc2_pm_power_down,
271         .suspend        = tc2_pm_suspend,
272         .powered_up     = tc2_pm_powered_up,
273 };
274
275 static bool __init tc2_pm_usage_count_init(void)
276 {
277         unsigned int mpidr, cpu, cluster;
278
279         mpidr = read_cpuid_mpidr();
280         cpu = MPIDR_AFFINITY_LEVEL(mpidr, 0);
281         cluster = MPIDR_AFFINITY_LEVEL(mpidr, 1);
282
283         pr_debug("%s: cpu %u cluster %u\n", __func__, cpu, cluster);
284         if (cluster >= TC2_CLUSTERS || cpu >= tc2_nr_cpus[cluster]) {
285                 pr_err("%s: boot CPU is out of bound!\n", __func__);
286                 return false;
287         }
288         tc2_pm_use_count[cpu][cluster] = 1;
289         return true;
290 }
291
292 /*
293  * Enable cluster-level coherency, in preparation for turning on the MMU.
294  */
295 static void __naked tc2_pm_power_up_setup(unsigned int affinity_level)
296 {
297         asm volatile (" \n"
298 "       cmp     r0, #1 \n"
299 "       bxne    lr \n"
300 "       b       cci_enable_port_for_self ");
301 }
302
303 static int __init tc2_pm_init(void)
304 {
305         int ret;
306         void __iomem *scc;
307         u32 a15_cluster_id, a7_cluster_id, sys_info;
308         struct device_node *np;
309
310         /*
311          * The power management-related features are hidden behind
312          * SCC registers. We need to extract runtime information like
313          * cluster ids and number of CPUs really available in clusters.
314          */
315         np = of_find_compatible_node(NULL, NULL,
316                         "arm,vexpress-scc,v2p-ca15_a7");
317         scc = of_iomap(np, 0);
318         if (!scc)
319                 return -ENODEV;
320
321         a15_cluster_id = readl_relaxed(scc + A15_CONF) & 0xf;
322         a7_cluster_id = readl_relaxed(scc + A7_CONF) & 0xf;
323         if (a15_cluster_id >= TC2_CLUSTERS || a7_cluster_id >= TC2_CLUSTERS)
324                 return -EINVAL;
325
326         sys_info = readl_relaxed(scc + SYS_INFO);
327         tc2_nr_cpus[a15_cluster_id] = (sys_info >> 16) & 0xf;
328         tc2_nr_cpus[a7_cluster_id] = (sys_info >> 20) & 0xf;
329
330         /*
331          * A subset of the SCC registers is also used to communicate
332          * with the SPC (power controller). We need to be able to
333          * drive it very early in the boot process to power up
334          * processors, so we initialize the SPC driver here.
335          */
336         ret = ve_spc_init(scc + SPC_BASE, a15_cluster_id);
337         if (ret)
338                 return ret;
339
340         if (!cci_probed())
341                 return -ENODEV;
342
343         if (!tc2_pm_usage_count_init())
344                 return -EINVAL;
345
346         ret = mcpm_platform_register(&tc2_pm_power_ops);
347         if (!ret) {
348                 mcpm_sync_init(tc2_pm_power_up_setup);
349                 pr_info("TC2 power management initialized\n");
350         }
351         return ret;
352 }
353
354 early_initcall(tc2_pm_init);