blob: 4cefc5cd6bedcc50ddc345c857270fda1ad17d49 [file] [log] [blame]
Colin Crossce1e3262010-05-24 17:07:46 -07001/*
2 * drivers/powergate/tegra-powergate.c
3 *
4 * Copyright (c) 2010 Google, Inc
5 *
6 * Author:
7 * Colin Cross <ccross@google.com>
8 *
9 * This software is licensed under the terms of the GNU General Public
10 * License version 2, as published by the Free Software Foundation, and
11 * may be copied, distributed, and modified under those terms.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 */
19
20#include <linux/kernel.h>
21#include <linux/clk.h>
22#include <linux/debugfs.h>
23#include <linux/delay.h>
24#include <linux/err.h>
Thierry Reding99f69fe2013-03-28 21:35:03 +010025#include <linux/export.h>
Colin Crossce1e3262010-05-24 17:07:46 -070026#include <linux/init.h>
27#include <linux/io.h>
Stephen Warren80b28792013-11-06 15:45:46 -070028#include <linux/reset.h>
Colin Crossce1e3262010-05-24 17:07:46 -070029#include <linux/seq_file.h>
30#include <linux/spinlock.h>
Prashant Gaikwad61fd2902013-01-11 13:16:26 +053031#include <linux/clk/tegra.h>
Stephen Warrene4bcda22013-03-29 17:38:18 -060032#include <linux/tegra-powergate.h>
Colin Crossce1e3262010-05-24 17:07:46 -070033
Peter De Schrijver8f5d6f1b2012-02-10 01:47:46 +020034#include "fuse.h"
Stephen Warren2be39c02012-10-04 14:24:09 -060035#include "iomap.h"
Peter De Schrijver8f5d6f1b2012-02-10 01:47:46 +020036
Thierry Reding9d4450a2013-12-16 21:42:28 +010037#define DPD_SAMPLE 0x020
38#define DPD_SAMPLE_ENABLE (1 << 0)
39#define DPD_SAMPLE_DISABLE (0 << 0)
40
Colin Crossce1e3262010-05-24 17:07:46 -070041#define PWRGATE_TOGGLE 0x30
42#define PWRGATE_TOGGLE_START (1 << 8)
43
44#define REMOVE_CLAMPING 0x34
45
46#define PWRGATE_STATUS 0x38
47
Thierry Reding9d4450a2013-12-16 21:42:28 +010048#define IO_DPD_REQ 0x1b8
49#define IO_DPD_REQ_CODE_IDLE (0 << 30)
50#define IO_DPD_REQ_CODE_OFF (1 << 30)
51#define IO_DPD_REQ_CODE_ON (2 << 30)
52#define IO_DPD_REQ_CODE_MASK (3 << 30)
53
54#define IO_DPD_STATUS 0x1bc
55#define IO_DPD2_REQ 0x1c0
56#define IO_DPD2_STATUS 0x1c4
57#define SEL_DPD_TIM 0x1c8
58
Thierry Redingc5373762013-12-13 17:31:04 +010059#define GPU_RG_CNTRL 0x2d4
60
Peter De Schrijver8f5d6f1b2012-02-10 01:47:46 +020061static int tegra_num_powerdomains;
Peter De Schrijver65fe31d2012-02-10 01:47:49 +020062static int tegra_num_cpu_domains;
Thierry Redingf0ea2e02013-10-16 19:19:01 +020063static const u8 *tegra_cpu_domains;
64
65static const u8 tegra30_cpu_domains[] = {
Thierry Redingbd6a9dd2013-10-16 19:19:02 +020066 TEGRA_POWERGATE_CPU,
67 TEGRA_POWERGATE_CPU1,
68 TEGRA_POWERGATE_CPU2,
69 TEGRA_POWERGATE_CPU3,
70};
71
72static const u8 tegra114_cpu_domains[] = {
Peter De Schrijver65fe31d2012-02-10 01:47:49 +020073 TEGRA_POWERGATE_CPU0,
74 TEGRA_POWERGATE_CPU1,
75 TEGRA_POWERGATE_CPU2,
76 TEGRA_POWERGATE_CPU3,
77};
Peter De Schrijver8f5d6f1b2012-02-10 01:47:46 +020078
Thierry Reding9a7165792013-12-13 17:31:03 +010079static const u8 tegra124_cpu_domains[] = {
80 TEGRA_POWERGATE_CPU0,
81 TEGRA_POWERGATE_CPU1,
82 TEGRA_POWERGATE_CPU2,
83 TEGRA_POWERGATE_CPU3,
84};
85
Colin Crossce1e3262010-05-24 17:07:46 -070086static DEFINE_SPINLOCK(tegra_powergate_lock);
87
88static void __iomem *pmc = IO_ADDRESS(TEGRA_PMC_BASE);
89
90static u32 pmc_read(unsigned long reg)
91{
92 return readl(pmc + reg);
93}
94
95static void pmc_write(u32 val, unsigned long reg)
96{
97 writel(val, pmc + reg);
98}
99
100static int tegra_powergate_set(int id, bool new_state)
101{
102 bool status;
103 unsigned long flags;
104
105 spin_lock_irqsave(&tegra_powergate_lock, flags);
106
107 status = pmc_read(PWRGATE_STATUS) & (1 << id);
108
109 if (status == new_state) {
110 spin_unlock_irqrestore(&tegra_powergate_lock, flags);
Thierry Redingeebd1fd2013-03-28 21:35:04 +0100111 return 0;
Colin Crossce1e3262010-05-24 17:07:46 -0700112 }
113
114 pmc_write(PWRGATE_TOGGLE_START | id, PWRGATE_TOGGLE);
115
116 spin_unlock_irqrestore(&tegra_powergate_lock, flags);
117
118 return 0;
119}
120
121int tegra_powergate_power_on(int id)
122{
Peter De Schrijver8f5d6f1b2012-02-10 01:47:46 +0200123 if (id < 0 || id >= tegra_num_powerdomains)
Colin Crossce1e3262010-05-24 17:07:46 -0700124 return -EINVAL;
125
126 return tegra_powergate_set(id, true);
127}
128
129int tegra_powergate_power_off(int id)
130{
Peter De Schrijver8f5d6f1b2012-02-10 01:47:46 +0200131 if (id < 0 || id >= tegra_num_powerdomains)
Colin Crossce1e3262010-05-24 17:07:46 -0700132 return -EINVAL;
133
134 return tegra_powergate_set(id, false);
135}
Thierry Reding44374af2013-12-06 16:49:55 +0100136EXPORT_SYMBOL(tegra_powergate_power_off);
Colin Crossce1e3262010-05-24 17:07:46 -0700137
Peter De Schrijver6ac8cb52012-02-10 01:47:47 +0200138int tegra_powergate_is_powered(int id)
Colin Crossce1e3262010-05-24 17:07:46 -0700139{
140 u32 status;
141
Peter De Schrijver8f5d6f1b2012-02-10 01:47:46 +0200142 if (id < 0 || id >= tegra_num_powerdomains)
143 return -EINVAL;
Colin Crossce1e3262010-05-24 17:07:46 -0700144
145 status = pmc_read(PWRGATE_STATUS) & (1 << id);
146 return !!status;
147}
148
149int tegra_powergate_remove_clamping(int id)
150{
151 u32 mask;
152
Peter De Schrijver8f5d6f1b2012-02-10 01:47:46 +0200153 if (id < 0 || id >= tegra_num_powerdomains)
Colin Crossce1e3262010-05-24 17:07:46 -0700154 return -EINVAL;
155
156 /*
Thierry Redingc5373762013-12-13 17:31:04 +0100157 * The Tegra124 GPU has a separate register (with different semantics)
158 * to remove clamps.
159 */
160 if (tegra_chip_id == TEGRA124) {
161 if (id == TEGRA_POWERGATE_3D) {
162 pmc_write(0, GPU_RG_CNTRL);
163 return 0;
164 }
165 }
166
167 /*
Colin Crossce1e3262010-05-24 17:07:46 -0700168 * Tegra 2 has a bug where PCIE and VDE clamping masks are
169 * swapped relatively to the partition ids
170 */
Thierry Reding7e25eb02013-12-06 16:27:12 +0100171 if (id == TEGRA_POWERGATE_VDEC)
Colin Crossce1e3262010-05-24 17:07:46 -0700172 mask = (1 << TEGRA_POWERGATE_PCIE);
Thierry Reding7e25eb02013-12-06 16:27:12 +0100173 else if (id == TEGRA_POWERGATE_PCIE)
Colin Crossce1e3262010-05-24 17:07:46 -0700174 mask = (1 << TEGRA_POWERGATE_VDEC);
175 else
176 mask = (1 << id);
177
178 pmc_write(mask, REMOVE_CLAMPING);
179
180 return 0;
181}
Thierry Reding201fc0f2013-12-06 16:49:56 +0100182EXPORT_SYMBOL(tegra_powergate_remove_clamping);
Colin Crossce1e3262010-05-24 17:07:46 -0700183
184/* Must be called with clk disabled, and returns with clk enabled */
Stephen Warren80b28792013-11-06 15:45:46 -0700185int tegra_powergate_sequence_power_up(int id, struct clk *clk,
186 struct reset_control *rst)
Colin Crossce1e3262010-05-24 17:07:46 -0700187{
188 int ret;
189
Stephen Warren80b28792013-11-06 15:45:46 -0700190 reset_control_assert(rst);
Colin Crossce1e3262010-05-24 17:07:46 -0700191
192 ret = tegra_powergate_power_on(id);
193 if (ret)
194 goto err_power;
195
Prashant Gaikwad6a5278d2012-06-05 09:59:35 +0530196 ret = clk_prepare_enable(clk);
Colin Crossce1e3262010-05-24 17:07:46 -0700197 if (ret)
198 goto err_clk;
199
200 udelay(10);
201
202 ret = tegra_powergate_remove_clamping(id);
203 if (ret)
204 goto err_clamp;
205
206 udelay(10);
Stephen Warren80b28792013-11-06 15:45:46 -0700207 reset_control_deassert(rst);
Colin Crossce1e3262010-05-24 17:07:46 -0700208
209 return 0;
210
211err_clamp:
Prashant Gaikwad6a5278d2012-06-05 09:59:35 +0530212 clk_disable_unprepare(clk);
Colin Crossce1e3262010-05-24 17:07:46 -0700213err_clk:
214 tegra_powergate_power_off(id);
215err_power:
216 return ret;
217}
Thierry Reding99f69fe2013-03-28 21:35:03 +0100218EXPORT_SYMBOL(tegra_powergate_sequence_power_up);
Colin Crossce1e3262010-05-24 17:07:46 -0700219
Peter De Schrijver65fe31d2012-02-10 01:47:49 +0200220int tegra_cpu_powergate_id(int cpuid)
221{
222 if (cpuid > 0 && cpuid < tegra_num_cpu_domains)
223 return tegra_cpu_domains[cpuid];
224
225 return -EINVAL;
226}
227
Peter De Schrijver8f5d6f1b2012-02-10 01:47:46 +0200228int __init tegra_powergate_init(void)
229{
230 switch (tegra_chip_id) {
231 case TEGRA20:
232 tegra_num_powerdomains = 7;
233 break;
Peter De Schrijver6cafa972012-02-10 01:47:48 +0200234 case TEGRA30:
235 tegra_num_powerdomains = 14;
Peter De Schrijver65fe31d2012-02-10 01:47:49 +0200236 tegra_num_cpu_domains = 4;
237 tegra_cpu_domains = tegra30_cpu_domains;
Peter De Schrijver6cafa972012-02-10 01:47:48 +0200238 break;
Thierry Redingbd6a9dd2013-10-16 19:19:02 +0200239 case TEGRA114:
240 tegra_num_powerdomains = 23;
241 tegra_num_cpu_domains = 4;
242 tegra_cpu_domains = tegra114_cpu_domains;
243 break;
Thierry Reding9a7165792013-12-13 17:31:03 +0100244 case TEGRA124:
245 tegra_num_powerdomains = 25;
246 tegra_num_cpu_domains = 4;
247 tegra_cpu_domains = tegra124_cpu_domains;
248 break;
Peter De Schrijver8f5d6f1b2012-02-10 01:47:46 +0200249 default:
250 /* Unknown Tegra variant. Disable powergating */
251 tegra_num_powerdomains = 0;
252 break;
253 }
254
255 return 0;
256}
Peter De Schrijver8f5d6f1b2012-02-10 01:47:46 +0200257
Colin Crossce1e3262010-05-24 17:07:46 -0700258#ifdef CONFIG_DEBUG_FS
259
Peter De Schrijverb48d6aa2012-09-06 17:55:29 +0300260static const char * const *powergate_name;
261
262static const char * const powergate_name_t20[] = {
Colin Crossce1e3262010-05-24 17:07:46 -0700263 [TEGRA_POWERGATE_CPU] = "cpu",
264 [TEGRA_POWERGATE_3D] = "3d",
265 [TEGRA_POWERGATE_VENC] = "venc",
266 [TEGRA_POWERGATE_VDEC] = "vdec",
267 [TEGRA_POWERGATE_PCIE] = "pcie",
268 [TEGRA_POWERGATE_L2] = "l2",
269 [TEGRA_POWERGATE_MPE] = "mpe",
270};
271
Peter De Schrijverb48d6aa2012-09-06 17:55:29 +0300272static const char * const powergate_name_t30[] = {
273 [TEGRA_POWERGATE_CPU] = "cpu0",
274 [TEGRA_POWERGATE_3D] = "3d0",
275 [TEGRA_POWERGATE_VENC] = "venc",
276 [TEGRA_POWERGATE_VDEC] = "vdec",
277 [TEGRA_POWERGATE_PCIE] = "pcie",
278 [TEGRA_POWERGATE_L2] = "l2",
279 [TEGRA_POWERGATE_MPE] = "mpe",
280 [TEGRA_POWERGATE_HEG] = "heg",
281 [TEGRA_POWERGATE_SATA] = "sata",
282 [TEGRA_POWERGATE_CPU1] = "cpu1",
283 [TEGRA_POWERGATE_CPU2] = "cpu2",
284 [TEGRA_POWERGATE_CPU3] = "cpu3",
285 [TEGRA_POWERGATE_CELP] = "celp",
286 [TEGRA_POWERGATE_3D1] = "3d1",
287};
288
Thierry Redingbd6a9dd2013-10-16 19:19:02 +0200289static const char * const powergate_name_t114[] = {
Thierry Redingccab7982013-12-06 16:27:13 +0100290 [TEGRA_POWERGATE_CPU] = "crail",
Thierry Redingbd6a9dd2013-10-16 19:19:02 +0200291 [TEGRA_POWERGATE_3D] = "3d",
292 [TEGRA_POWERGATE_VENC] = "venc",
293 [TEGRA_POWERGATE_VDEC] = "vdec",
294 [TEGRA_POWERGATE_MPE] = "mpe",
295 [TEGRA_POWERGATE_HEG] = "heg",
296 [TEGRA_POWERGATE_CPU1] = "cpu1",
297 [TEGRA_POWERGATE_CPU2] = "cpu2",
298 [TEGRA_POWERGATE_CPU3] = "cpu3",
299 [TEGRA_POWERGATE_CELP] = "celp",
300 [TEGRA_POWERGATE_CPU0] = "cpu0",
301 [TEGRA_POWERGATE_C0NC] = "c0nc",
302 [TEGRA_POWERGATE_C1NC] = "c1nc",
303 [TEGRA_POWERGATE_DIS] = "dis",
304 [TEGRA_POWERGATE_DISB] = "disb",
305 [TEGRA_POWERGATE_XUSBA] = "xusba",
306 [TEGRA_POWERGATE_XUSBB] = "xusbb",
307 [TEGRA_POWERGATE_XUSBC] = "xusbc",
308};
309
Thierry Reding9a7165792013-12-13 17:31:03 +0100310static const char * const powergate_name_t124[] = {
311 [TEGRA_POWERGATE_CPU] = "crail",
312 [TEGRA_POWERGATE_3D] = "3d",
313 [TEGRA_POWERGATE_VENC] = "venc",
314 [TEGRA_POWERGATE_PCIE] = "pcie",
315 [TEGRA_POWERGATE_VDEC] = "vdec",
316 [TEGRA_POWERGATE_L2] = "l2",
317 [TEGRA_POWERGATE_MPE] = "mpe",
318 [TEGRA_POWERGATE_HEG] = "heg",
319 [TEGRA_POWERGATE_SATA] = "sata",
320 [TEGRA_POWERGATE_CPU1] = "cpu1",
321 [TEGRA_POWERGATE_CPU2] = "cpu2",
322 [TEGRA_POWERGATE_CPU3] = "cpu3",
323 [TEGRA_POWERGATE_CELP] = "celp",
324 [TEGRA_POWERGATE_CPU0] = "cpu0",
325 [TEGRA_POWERGATE_C0NC] = "c0nc",
326 [TEGRA_POWERGATE_C1NC] = "c1nc",
327 [TEGRA_POWERGATE_SOR] = "sor",
328 [TEGRA_POWERGATE_DIS] = "dis",
329 [TEGRA_POWERGATE_DISB] = "disb",
330 [TEGRA_POWERGATE_XUSBA] = "xusba",
331 [TEGRA_POWERGATE_XUSBB] = "xusbb",
332 [TEGRA_POWERGATE_XUSBC] = "xusbc",
333 [TEGRA_POWERGATE_VIC] = "vic",
334 [TEGRA_POWERGATE_IRAM] = "iram",
335};
336
Colin Crossce1e3262010-05-24 17:07:46 -0700337static int powergate_show(struct seq_file *s, void *data)
338{
339 int i;
340
341 seq_printf(s, " powergate powered\n");
342 seq_printf(s, "------------------\n");
343
Thierry Redingbd6a9dd2013-10-16 19:19:02 +0200344 for (i = 0; i < tegra_num_powerdomains; i++) {
345 if (!powergate_name[i])
346 continue;
347
Colin Crossce1e3262010-05-24 17:07:46 -0700348 seq_printf(s, " %9s %7s\n", powergate_name[i],
349 tegra_powergate_is_powered(i) ? "yes" : "no");
Thierry Redingbd6a9dd2013-10-16 19:19:02 +0200350 }
351
Colin Crossce1e3262010-05-24 17:07:46 -0700352 return 0;
353}
354
355static int powergate_open(struct inode *inode, struct file *file)
356{
357 return single_open(file, powergate_show, inode->i_private);
358}
359
360static const struct file_operations powergate_fops = {
361 .open = powergate_open,
362 .read = seq_read,
363 .llseek = seq_lseek,
364 .release = single_release,
365};
366
Shawn Guo390e0cf2012-05-02 17:08:06 +0800367int __init tegra_powergate_debugfs_init(void)
Colin Crossce1e3262010-05-24 17:07:46 -0700368{
369 struct dentry *d;
Colin Crossce1e3262010-05-24 17:07:46 -0700370
Peter De Schrijverb48d6aa2012-09-06 17:55:29 +0300371 switch (tegra_chip_id) {
372 case TEGRA20:
373 powergate_name = powergate_name_t20;
374 break;
375 case TEGRA30:
376 powergate_name = powergate_name_t30;
377 break;
Thierry Redingbd6a9dd2013-10-16 19:19:02 +0200378 case TEGRA114:
379 powergate_name = powergate_name_t114;
380 break;
Thierry Reding9a7165792013-12-13 17:31:03 +0100381 case TEGRA124:
382 powergate_name = powergate_name_t124;
383 break;
Peter De Schrijverb48d6aa2012-09-06 17:55:29 +0300384 }
385
386 if (powergate_name) {
387 d = debugfs_create_file("powergate", S_IRUGO, NULL, NULL,
388 &powergate_fops);
389 if (!d)
390 return -ENOMEM;
391 }
Colin Crossce1e3262010-05-24 17:07:46 -0700392
Peter De Schrijverf858b6f2012-09-06 17:55:28 +0300393 return 0;
Colin Crossce1e3262010-05-24 17:07:46 -0700394}
395
Colin Crossce1e3262010-05-24 17:07:46 -0700396#endif
Thierry Reding9d4450a2013-12-16 21:42:28 +0100397
398static int tegra_io_rail_prepare(int id, unsigned long *request,
399 unsigned long *status, unsigned int *bit)
400{
401 unsigned long rate, value;
402 struct clk *clk;
403
404 *bit = id % 32;
405
406 /*
407 * There are two sets of 30 bits to select IO rails, but bits 30 and
408 * 31 are control bits rather than IO rail selection bits.
409 */
410 if (id > 63 || *bit == 30 || *bit == 31)
411 return -EINVAL;
412
413 if (id < 32) {
414 *status = IO_DPD_STATUS;
415 *request = IO_DPD_REQ;
416 } else {
417 *status = IO_DPD2_STATUS;
418 *request = IO_DPD2_REQ;
419 }
420
421 clk = clk_get_sys(NULL, "pclk");
422 if (IS_ERR(clk))
423 return PTR_ERR(clk);
424
425 rate = clk_get_rate(clk);
426 clk_put(clk);
427
428 pmc_write(DPD_SAMPLE_ENABLE, DPD_SAMPLE);
429
430 /* must be at least 200 ns, in APB (PCLK) clock cycles */
431 value = DIV_ROUND_UP(1000000000, rate);
432 value = DIV_ROUND_UP(200, value);
433 pmc_write(value, SEL_DPD_TIM);
434
435 return 0;
436}
437
438static int tegra_io_rail_poll(unsigned long offset, unsigned long mask,
439 unsigned long val, unsigned long timeout)
440{
441 unsigned long value;
442
443 timeout = jiffies + msecs_to_jiffies(timeout);
444
445 while (time_after(timeout, jiffies)) {
446 value = pmc_read(offset);
447 if ((value & mask) == val)
448 return 0;
449
450 usleep_range(250, 1000);
451 }
452
453 return -ETIMEDOUT;
454}
455
456static void tegra_io_rail_unprepare(void)
457{
458 pmc_write(DPD_SAMPLE_DISABLE, DPD_SAMPLE);
459}
460
461int tegra_io_rail_power_on(int id)
462{
463 unsigned long request, status, value;
464 unsigned int bit, mask;
465 int err;
466
467 err = tegra_io_rail_prepare(id, &request, &status, &bit);
468 if (err < 0)
469 return err;
470
471 mask = 1 << bit;
472
473 value = pmc_read(request);
474 value |= mask;
475 value &= ~IO_DPD_REQ_CODE_MASK;
476 value |= IO_DPD_REQ_CODE_OFF;
477 pmc_write(value, request);
478
479 err = tegra_io_rail_poll(status, mask, 0, 250);
480 if (err < 0)
481 return err;
482
483 tegra_io_rail_unprepare();
484
485 return 0;
486}
Thierry Reding357281e2014-02-25 17:08:36 +0100487EXPORT_SYMBOL(tegra_io_rail_power_on);
Thierry Reding9d4450a2013-12-16 21:42:28 +0100488
489int tegra_io_rail_power_off(int id)
490{
491 unsigned long request, status, value;
492 unsigned int bit, mask;
493 int err;
494
495 err = tegra_io_rail_prepare(id, &request, &status, &bit);
496 if (err < 0)
497 return err;
498
499 mask = 1 << bit;
500
501 value = pmc_read(request);
502 value |= mask;
503 value &= ~IO_DPD_REQ_CODE_MASK;
504 value |= IO_DPD_REQ_CODE_ON;
505 pmc_write(value, request);
506
507 err = tegra_io_rail_poll(status, mask, mask, 250);
508 if (err < 0)
509 return err;
510
511 tegra_io_rail_unprepare();
512
513 return 0;
514}
Thierry Reding357281e2014-02-25 17:08:36 +0100515EXPORT_SYMBOL(tegra_io_rail_power_off);