blob: 0453ff6839a7eb68c8cede521d5004daaed0e6b2 [file] [log] [blame]
Thierry Reding72323982014-07-11 13:19:06 +02001/*
2 * drivers/soc/tegra/pmc.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
Thierry Reding7d71e9032015-04-29 12:42:28 +020020#define pr_fmt(fmt) "tegra-pmc: " fmt
21
Thierry Reding72323982014-07-11 13:19:06 +020022#include <linux/kernel.h>
23#include <linux/clk.h>
24#include <linux/clk/tegra.h>
25#include <linux/debugfs.h>
26#include <linux/delay.h>
27#include <linux/err.h>
28#include <linux/export.h>
29#include <linux/init.h>
30#include <linux/io.h>
Jon Hunter0a2d87e2016-02-26 15:48:40 +000031#include <linux/iopoll.h>
Thierry Reding72323982014-07-11 13:19:06 +020032#include <linux/of.h>
33#include <linux/of_address.h>
Jon Huntera3804512016-03-30 10:15:15 +010034#include <linux/of_platform.h>
Thierry Reding72323982014-07-11 13:19:06 +020035#include <linux/platform_device.h>
Jon Huntera3804512016-03-30 10:15:15 +010036#include <linux/pm_domain.h>
Thierry Reding72323982014-07-11 13:19:06 +020037#include <linux/reboot.h>
38#include <linux/reset.h>
39#include <linux/seq_file.h>
Jon Huntera3804512016-03-30 10:15:15 +010040#include <linux/slab.h>
Thierry Reding72323982014-07-11 13:19:06 +020041#include <linux/spinlock.h>
42
43#include <soc/tegra/common.h>
44#include <soc/tegra/fuse.h>
45#include <soc/tegra/pmc.h>
46
47#define PMC_CNTRL 0x0
Laxman Dewangan6c0bd212016-06-17 18:36:12 +053048#define PMC_CNTRL_INTR_POLARITY BIT(17) /* inverts INTR polarity */
Thierry Reding95b780b2016-10-10 13:13:36 +020049#define PMC_CNTRL_CPU_PWRREQ_OE BIT(16) /* CPU pwr req enable */
50#define PMC_CNTRL_CPU_PWRREQ_POLARITY BIT(15) /* CPU pwr req polarity */
51#define PMC_CNTRL_SIDE_EFFECT_LP0 BIT(14) /* LP0 when CPU pwr gated */
52#define PMC_CNTRL_SYSCLK_OE BIT(11) /* system clock enable */
53#define PMC_CNTRL_SYSCLK_POLARITY BIT(10) /* sys clk polarity */
54#define PMC_CNTRL_MAIN_RST BIT(4)
Thierry Reding72323982014-07-11 13:19:06 +020055
56#define DPD_SAMPLE 0x020
Laxman Dewangan6c0bd212016-06-17 18:36:12 +053057#define DPD_SAMPLE_ENABLE BIT(0)
Thierry Reding72323982014-07-11 13:19:06 +020058#define DPD_SAMPLE_DISABLE (0 << 0)
59
60#define PWRGATE_TOGGLE 0x30
Laxman Dewangan6c0bd212016-06-17 18:36:12 +053061#define PWRGATE_TOGGLE_START BIT(8)
Thierry Reding72323982014-07-11 13:19:06 +020062
63#define REMOVE_CLAMPING 0x34
64
65#define PWRGATE_STATUS 0x38
66
Laxman Dewangan21b49912016-10-10 15:14:34 +020067#define PMC_PWR_DET 0x48
68
Thierry Reding72323982014-07-11 13:19:06 +020069#define PMC_SCRATCH0 0x50
Laxman Dewangan6c0bd212016-06-17 18:36:12 +053070#define PMC_SCRATCH0_MODE_RECOVERY BIT(31)
71#define PMC_SCRATCH0_MODE_BOOTLOADER BIT(30)
72#define PMC_SCRATCH0_MODE_RCM BIT(1)
Thierry Reding72323982014-07-11 13:19:06 +020073#define PMC_SCRATCH0_MODE_MASK (PMC_SCRATCH0_MODE_RECOVERY | \
74 PMC_SCRATCH0_MODE_BOOTLOADER | \
75 PMC_SCRATCH0_MODE_RCM)
76
77#define PMC_CPUPWRGOOD_TIMER 0xc8
78#define PMC_CPUPWROFF_TIMER 0xcc
79
Laxman Dewangan21b49912016-10-10 15:14:34 +020080#define PMC_PWR_DET_VALUE 0xe4
81
Thierry Reding72323982014-07-11 13:19:06 +020082#define PMC_SCRATCH41 0x140
83
Mikko Perttunen3568df32015-01-06 12:52:58 +020084#define PMC_SENSOR_CTRL 0x1b0
Laxman Dewangan6c0bd212016-06-17 18:36:12 +053085#define PMC_SENSOR_CTRL_SCRATCH_WRITE BIT(2)
86#define PMC_SENSOR_CTRL_ENABLE_RST BIT(1)
Mikko Perttunen3568df32015-01-06 12:52:58 +020087
Thierry Redingf5353c62015-12-30 17:13:29 +010088#define PMC_RST_STATUS 0x1b4
89#define PMC_RST_STATUS_POR 0
90#define PMC_RST_STATUS_WATCHDOG 1
91#define PMC_RST_STATUS_SENSOR 2
92#define PMC_RST_STATUS_SW_MAIN 3
93#define PMC_RST_STATUS_LP0 4
94#define PMC_RST_STATUS_AOTAG 5
95
Thierry Reding72323982014-07-11 13:19:06 +020096#define IO_DPD_REQ 0x1b8
Laxman Dewangan6c0bd212016-06-17 18:36:12 +053097#define IO_DPD_REQ_CODE_IDLE (0U << 30)
98#define IO_DPD_REQ_CODE_OFF (1U << 30)
99#define IO_DPD_REQ_CODE_ON (2U << 30)
100#define IO_DPD_REQ_CODE_MASK (3U << 30)
Thierry Reding72323982014-07-11 13:19:06 +0200101
102#define IO_DPD_STATUS 0x1bc
103#define IO_DPD2_REQ 0x1c0
104#define IO_DPD2_STATUS 0x1c4
105#define SEL_DPD_TIM 0x1c8
106
Mikko Perttunen3568df32015-01-06 12:52:58 +0200107#define PMC_SCRATCH54 0x258
Laxman Dewangan6c0bd212016-06-17 18:36:12 +0530108#define PMC_SCRATCH54_DATA_SHIFT 8
109#define PMC_SCRATCH54_ADDR_SHIFT 0
Mikko Perttunen3568df32015-01-06 12:52:58 +0200110
111#define PMC_SCRATCH55 0x25c
Laxman Dewangan6c0bd212016-06-17 18:36:12 +0530112#define PMC_SCRATCH55_RESET_TEGRA BIT(31)
113#define PMC_SCRATCH55_CNTRL_ID_SHIFT 27
114#define PMC_SCRATCH55_PINMUX_SHIFT 24
115#define PMC_SCRATCH55_16BITOP BIT(15)
116#define PMC_SCRATCH55_CHECKSUM_SHIFT 16
117#define PMC_SCRATCH55_I2CSLV1_SHIFT 0
Mikko Perttunen3568df32015-01-06 12:52:58 +0200118
Thierry Reding72323982014-07-11 13:19:06 +0200119#define GPU_RG_CNTRL 0x2d4
120
Jon Huntera3804512016-03-30 10:15:15 +0100121struct tegra_powergate {
122 struct generic_pm_domain genpd;
123 struct tegra_pmc *pmc;
124 unsigned int id;
125 struct clk **clks;
126 unsigned int num_clks;
127 struct reset_control **resets;
128 unsigned int num_resets;
129};
130
Laxman Dewangan21b49912016-10-10 15:14:34 +0200131struct tegra_io_pad_soc {
132 enum tegra_io_pad id;
133 unsigned int dpd;
134 unsigned int voltage;
135};
136
Thierry Reding72323982014-07-11 13:19:06 +0200137struct tegra_pmc_soc {
138 unsigned int num_powergates;
139 const char *const *powergates;
140 unsigned int num_cpu_powergates;
141 const u8 *cpu_powergates;
Thierry Redinga9a40a42015-01-09 11:15:33 +0100142
Mikko Perttunen3568df32015-01-06 12:52:58 +0200143 bool has_tsense_reset;
Thierry Redinga9a40a42015-01-09 11:15:33 +0100144 bool has_gpu_clamps;
Laxman Dewangan21b49912016-10-10 15:14:34 +0200145
146 const struct tegra_io_pad_soc *io_pads;
147 unsigned int num_io_pads;
Thierry Reding72323982014-07-11 13:19:06 +0200148};
149
150/**
151 * struct tegra_pmc - NVIDIA Tegra PMC
Jon Hunter35b67292015-12-04 14:57:03 +0000152 * @dev: pointer to PMC device structure
Thierry Reding72323982014-07-11 13:19:06 +0200153 * @base: pointer to I/O remapped register region
154 * @clk: pointer to pclk clock
Jon Hunter35b67292015-12-04 14:57:03 +0000155 * @soc: pointer to SoC data structure
Jon Hunter3195ac62015-12-04 14:57:05 +0000156 * @debugfs: pointer to debugfs entry
Thierry Reding72323982014-07-11 13:19:06 +0200157 * @rate: currently configured rate of pclk
158 * @suspend_mode: lowest suspend mode available
159 * @cpu_good_time: CPU power good time (in microseconds)
160 * @cpu_off_time: CPU power off time (in microsecends)
161 * @core_osc_time: core power good OSC time (in microseconds)
162 * @core_pmu_time: core power good PMU time (in microseconds)
163 * @core_off_time: core power off time (in microseconds)
164 * @corereq_high: core power request is active-high
165 * @sysclkreq_high: system clock request is active-high
166 * @combined_req: combined power request for CPU & core
167 * @cpu_pwr_good_en: CPU power good signal is enabled
168 * @lp0_vec_phys: physical base address of the LP0 warm boot code
169 * @lp0_vec_size: size of the LP0 warm boot code
Jon Huntera3804512016-03-30 10:15:15 +0100170 * @powergates_available: Bitmap of available power gates
Thierry Reding72323982014-07-11 13:19:06 +0200171 * @powergates_lock: mutex for power gate register access
172 */
173struct tegra_pmc {
Mikko Perttunen3568df32015-01-06 12:52:58 +0200174 struct device *dev;
Thierry Reding72323982014-07-11 13:19:06 +0200175 void __iomem *base;
176 struct clk *clk;
Jon Hunter3195ac62015-12-04 14:57:05 +0000177 struct dentry *debugfs;
Thierry Reding72323982014-07-11 13:19:06 +0200178
179 const struct tegra_pmc_soc *soc;
180
181 unsigned long rate;
182
183 enum tegra_suspend_mode suspend_mode;
184 u32 cpu_good_time;
185 u32 cpu_off_time;
186 u32 core_osc_time;
187 u32 core_pmu_time;
188 u32 core_off_time;
189 bool corereq_high;
190 bool sysclkreq_high;
191 bool combined_req;
192 bool cpu_pwr_good_en;
193 u32 lp0_vec_phys;
194 u32 lp0_vec_size;
Jon Huntera3804512016-03-30 10:15:15 +0100195 DECLARE_BITMAP(powergates_available, TEGRA_POWERGATE_MAX);
Thierry Reding72323982014-07-11 13:19:06 +0200196
197 struct mutex powergates_lock;
198};
199
200static struct tegra_pmc *pmc = &(struct tegra_pmc) {
201 .base = NULL,
202 .suspend_mode = TEGRA_SUSPEND_NONE,
203};
204
Jon Huntera3804512016-03-30 10:15:15 +0100205static inline struct tegra_powergate *
206to_powergate(struct generic_pm_domain *domain)
207{
208 return container_of(domain, struct tegra_powergate, genpd);
209}
210
Thierry Reding72323982014-07-11 13:19:06 +0200211static u32 tegra_pmc_readl(unsigned long offset)
212{
213 return readl(pmc->base + offset);
214}
215
216static void tegra_pmc_writel(u32 value, unsigned long offset)
217{
218 writel(value, pmc->base + offset);
219}
220
Jon Hunter0ecf2d32016-02-11 18:03:23 +0000221static inline bool tegra_powergate_state(int id)
222{
Jon Hunterbc9af232016-02-15 12:38:11 +0000223 if (id == TEGRA_POWERGATE_3D && pmc->soc->has_gpu_clamps)
224 return (tegra_pmc_readl(GPU_RG_CNTRL) & 0x1) == 0;
225 else
226 return (tegra_pmc_readl(PWRGATE_STATUS) & BIT(id)) != 0;
Jon Hunter0ecf2d32016-02-11 18:03:23 +0000227}
228
Jon Hunter0a243bd2016-02-11 18:03:24 +0000229static inline bool tegra_powergate_is_valid(int id)
230{
231 return (pmc->soc && pmc->soc->powergates[id]);
232}
233
Jon Huntera3804512016-03-30 10:15:15 +0100234static inline bool tegra_powergate_is_available(int id)
235{
236 return test_bit(id, pmc->powergates_available);
237}
238
239static int tegra_powergate_lookup(struct tegra_pmc *pmc, const char *name)
240{
241 unsigned int i;
242
243 if (!pmc || !pmc->soc || !name)
244 return -EINVAL;
245
246 for (i = 0; i < pmc->soc->num_powergates; i++) {
247 if (!tegra_powergate_is_valid(i))
248 continue;
249
250 if (!strcmp(name, pmc->soc->powergates[i]))
251 return i;
252 }
253
Jon Huntera3804512016-03-30 10:15:15 +0100254 return -ENODEV;
255}
256
Thierry Reding72323982014-07-11 13:19:06 +0200257/**
258 * tegra_powergate_set() - set the state of a partition
259 * @id: partition ID
260 * @new_state: new state of the partition
261 */
Jon Hunter70293ed2016-02-11 18:03:22 +0000262static int tegra_powergate_set(unsigned int id, bool new_state)
Thierry Reding72323982014-07-11 13:19:06 +0200263{
Jon Hunter0a2d87e2016-02-26 15:48:40 +0000264 bool status;
265 int err;
266
Jon Hunterbc9af232016-02-15 12:38:11 +0000267 if (id == TEGRA_POWERGATE_3D && pmc->soc->has_gpu_clamps)
268 return -EINVAL;
269
Thierry Reding72323982014-07-11 13:19:06 +0200270 mutex_lock(&pmc->powergates_lock);
271
Jon Hunter0ecf2d32016-02-11 18:03:23 +0000272 if (tegra_powergate_state(id) == new_state) {
Thierry Reding72323982014-07-11 13:19:06 +0200273 mutex_unlock(&pmc->powergates_lock);
274 return 0;
275 }
276
277 tegra_pmc_writel(PWRGATE_TOGGLE_START | id, PWRGATE_TOGGLE);
278
Jon Hunter0a2d87e2016-02-26 15:48:40 +0000279 err = readx_poll_timeout(tegra_powergate_state, id, status,
280 status == new_state, 10, 100000);
281
Thierry Reding72323982014-07-11 13:19:06 +0200282 mutex_unlock(&pmc->powergates_lock);
283
Jon Hunter0a2d87e2016-02-26 15:48:40 +0000284 return err;
Thierry Reding72323982014-07-11 13:19:06 +0200285}
286
Jon Huntera3804512016-03-30 10:15:15 +0100287static int __tegra_powergate_remove_clamping(unsigned int id)
Thierry Reding72323982014-07-11 13:19:06 +0200288{
289 u32 mask;
290
Jon Huntere8cf6612016-02-11 18:03:21 +0000291 mutex_lock(&pmc->powergates_lock);
292
Thierry Reding72323982014-07-11 13:19:06 +0200293 /*
Thierry Redinga9a40a42015-01-09 11:15:33 +0100294 * On Tegra124 and later, the clamps for the GPU are controlled by a
295 * separate register (with different semantics).
Thierry Reding72323982014-07-11 13:19:06 +0200296 */
Thierry Redinga9a40a42015-01-09 11:15:33 +0100297 if (id == TEGRA_POWERGATE_3D) {
298 if (pmc->soc->has_gpu_clamps) {
Thierry Reding72323982014-07-11 13:19:06 +0200299 tegra_pmc_writel(0, GPU_RG_CNTRL);
Jon Huntere8cf6612016-02-11 18:03:21 +0000300 goto out;
Thierry Reding72323982014-07-11 13:19:06 +0200301 }
302 }
303
304 /*
305 * Tegra 2 has a bug where PCIE and VDE clamping masks are
306 * swapped relatively to the partition ids
307 */
308 if (id == TEGRA_POWERGATE_VDEC)
309 mask = (1 << TEGRA_POWERGATE_PCIE);
310 else if (id == TEGRA_POWERGATE_PCIE)
311 mask = (1 << TEGRA_POWERGATE_VDEC);
312 else
313 mask = (1 << id);
314
315 tegra_pmc_writel(mask, REMOVE_CLAMPING);
316
Jon Huntere8cf6612016-02-11 18:03:21 +0000317out:
318 mutex_unlock(&pmc->powergates_lock);
319
Thierry Reding72323982014-07-11 13:19:06 +0200320 return 0;
321}
Jon Huntera3804512016-03-30 10:15:15 +0100322
323static void tegra_powergate_disable_clocks(struct tegra_powergate *pg)
324{
325 unsigned int i;
326
327 for (i = 0; i < pg->num_clks; i++)
328 clk_disable_unprepare(pg->clks[i]);
329}
330
331static int tegra_powergate_enable_clocks(struct tegra_powergate *pg)
332{
333 unsigned int i;
334 int err;
335
336 for (i = 0; i < pg->num_clks; i++) {
337 err = clk_prepare_enable(pg->clks[i]);
338 if (err)
339 goto out;
340 }
341
342 return 0;
343
344out:
345 while (i--)
346 clk_disable_unprepare(pg->clks[i]);
347
348 return err;
349}
350
351static int tegra_powergate_reset_assert(struct tegra_powergate *pg)
352{
353 unsigned int i;
354 int err;
355
356 for (i = 0; i < pg->num_resets; i++) {
357 err = reset_control_assert(pg->resets[i]);
358 if (err)
359 return err;
360 }
361
362 return 0;
363}
364
365static int tegra_powergate_reset_deassert(struct tegra_powergate *pg)
366{
367 unsigned int i;
368 int err;
369
370 for (i = 0; i < pg->num_resets; i++) {
371 err = reset_control_deassert(pg->resets[i]);
372 if (err)
373 return err;
374 }
375
376 return 0;
377}
378
379static int tegra_powergate_power_up(struct tegra_powergate *pg,
380 bool disable_clocks)
381{
382 int err;
383
384 err = tegra_powergate_reset_assert(pg);
385 if (err)
386 return err;
387
388 usleep_range(10, 20);
389
390 err = tegra_powergate_set(pg->id, true);
391 if (err < 0)
392 return err;
393
394 usleep_range(10, 20);
395
396 err = tegra_powergate_enable_clocks(pg);
397 if (err)
398 goto disable_clks;
399
400 usleep_range(10, 20);
401
402 err = __tegra_powergate_remove_clamping(pg->id);
403 if (err)
404 goto disable_clks;
405
406 usleep_range(10, 20);
407
408 err = tegra_powergate_reset_deassert(pg);
409 if (err)
410 goto powergate_off;
411
412 usleep_range(10, 20);
413
414 if (disable_clocks)
415 tegra_powergate_disable_clocks(pg);
416
417 return 0;
418
419disable_clks:
420 tegra_powergate_disable_clocks(pg);
421 usleep_range(10, 20);
Thierry Redingda8f4b42016-06-30 12:12:55 +0200422
Jon Huntera3804512016-03-30 10:15:15 +0100423powergate_off:
424 tegra_powergate_set(pg->id, false);
425
426 return err;
427}
428
429static int tegra_powergate_power_down(struct tegra_powergate *pg)
430{
431 int err;
432
433 err = tegra_powergate_enable_clocks(pg);
434 if (err)
435 return err;
436
437 usleep_range(10, 20);
438
439 err = tegra_powergate_reset_assert(pg);
440 if (err)
441 goto disable_clks;
442
443 usleep_range(10, 20);
444
445 tegra_powergate_disable_clocks(pg);
446
447 usleep_range(10, 20);
448
449 err = tegra_powergate_set(pg->id, false);
450 if (err)
451 goto assert_resets;
452
453 return 0;
454
455assert_resets:
456 tegra_powergate_enable_clocks(pg);
457 usleep_range(10, 20);
458 tegra_powergate_reset_deassert(pg);
459 usleep_range(10, 20);
Thierry Redingda8f4b42016-06-30 12:12:55 +0200460
Jon Huntera3804512016-03-30 10:15:15 +0100461disable_clks:
462 tegra_powergate_disable_clocks(pg);
463
464 return err;
465}
466
467static int tegra_genpd_power_on(struct generic_pm_domain *domain)
468{
469 struct tegra_powergate *pg = to_powergate(domain);
Jon Huntera3804512016-03-30 10:15:15 +0100470 int err;
471
472 err = tegra_powergate_power_up(pg, true);
473 if (err)
Thierry Reding54e24722016-11-08 10:58:32 +0100474 pr_err("failed to turn on PM domain %s: %d\n", pg->genpd.name,
475 err);
Jon Huntera3804512016-03-30 10:15:15 +0100476
477 return err;
478}
479
480static int tegra_genpd_power_off(struct generic_pm_domain *domain)
481{
482 struct tegra_powergate *pg = to_powergate(domain);
Jon Huntera3804512016-03-30 10:15:15 +0100483 int err;
484
485 err = tegra_powergate_power_down(pg);
486 if (err)
Thierry Reding54e24722016-11-08 10:58:32 +0100487 pr_err("failed to turn off PM domain %s: %d\n",
488 pg->genpd.name, err);
Jon Huntera3804512016-03-30 10:15:15 +0100489
490 return err;
491}
492
493/**
494 * tegra_powergate_power_on() - power on partition
495 * @id: partition ID
496 */
497int tegra_powergate_power_on(unsigned int id)
498{
499 if (!tegra_powergate_is_available(id))
500 return -EINVAL;
501
502 return tegra_powergate_set(id, true);
503}
504
505/**
506 * tegra_powergate_power_off() - power off partition
507 * @id: partition ID
508 */
509int tegra_powergate_power_off(unsigned int id)
510{
511 if (!tegra_powergate_is_available(id))
512 return -EINVAL;
513
514 return tegra_powergate_set(id, false);
515}
516EXPORT_SYMBOL(tegra_powergate_power_off);
517
518/**
519 * tegra_powergate_is_powered() - check if partition is powered
520 * @id: partition ID
521 */
522int tegra_powergate_is_powered(unsigned int id)
523{
524 int status;
525
526 if (!tegra_powergate_is_valid(id))
527 return -EINVAL;
528
529 mutex_lock(&pmc->powergates_lock);
530 status = tegra_powergate_state(id);
531 mutex_unlock(&pmc->powergates_lock);
532
533 return status;
534}
535
536/**
537 * tegra_powergate_remove_clamping() - remove power clamps for partition
538 * @id: partition ID
539 */
540int tegra_powergate_remove_clamping(unsigned int id)
541{
542 if (!tegra_powergate_is_available(id))
543 return -EINVAL;
544
545 return __tegra_powergate_remove_clamping(id);
546}
Thierry Reding72323982014-07-11 13:19:06 +0200547EXPORT_SYMBOL(tegra_powergate_remove_clamping);
548
549/**
550 * tegra_powergate_sequence_power_up() - power up partition
551 * @id: partition ID
552 * @clk: clock for partition
553 * @rst: reset for partition
554 *
555 * Must be called with clk disabled, and returns with clk enabled.
556 */
Jon Hunter70293ed2016-02-11 18:03:22 +0000557int tegra_powergate_sequence_power_up(unsigned int id, struct clk *clk,
Thierry Reding72323982014-07-11 13:19:06 +0200558 struct reset_control *rst)
559{
Jon Huntera3804512016-03-30 10:15:15 +0100560 struct tegra_powergate pg;
561 int err;
Thierry Reding72323982014-07-11 13:19:06 +0200562
Jon Hunter403db2d2016-06-28 11:38:23 +0100563 if (!tegra_powergate_is_available(id))
564 return -EINVAL;
565
Jon Huntera3804512016-03-30 10:15:15 +0100566 pg.id = id;
567 pg.clks = &clk;
568 pg.num_clks = 1;
569 pg.resets = &rst;
570 pg.num_resets = 1;
Thierry Reding72323982014-07-11 13:19:06 +0200571
Jon Huntera3804512016-03-30 10:15:15 +0100572 err = tegra_powergate_power_up(&pg, false);
573 if (err)
574 pr_err("failed to turn on partition %d: %d\n", id, err);
Thierry Reding72323982014-07-11 13:19:06 +0200575
Jon Huntera3804512016-03-30 10:15:15 +0100576 return err;
Thierry Reding72323982014-07-11 13:19:06 +0200577}
578EXPORT_SYMBOL(tegra_powergate_sequence_power_up);
579
580#ifdef CONFIG_SMP
581/**
582 * tegra_get_cpu_powergate_id() - convert from CPU ID to partition ID
583 * @cpuid: CPU partition ID
584 *
585 * Returns the partition ID corresponding to the CPU partition ID or a
586 * negative error code on failure.
587 */
Jon Hunter70293ed2016-02-11 18:03:22 +0000588static int tegra_get_cpu_powergate_id(unsigned int cpuid)
Thierry Reding72323982014-07-11 13:19:06 +0200589{
Jon Hunter70293ed2016-02-11 18:03:22 +0000590 if (pmc->soc && cpuid < pmc->soc->num_cpu_powergates)
Thierry Reding72323982014-07-11 13:19:06 +0200591 return pmc->soc->cpu_powergates[cpuid];
592
593 return -EINVAL;
594}
595
596/**
597 * tegra_pmc_cpu_is_powered() - check if CPU partition is powered
598 * @cpuid: CPU partition ID
599 */
Jon Hunter70293ed2016-02-11 18:03:22 +0000600bool tegra_pmc_cpu_is_powered(unsigned int cpuid)
Thierry Reding72323982014-07-11 13:19:06 +0200601{
602 int id;
603
604 id = tegra_get_cpu_powergate_id(cpuid);
605 if (id < 0)
606 return false;
607
608 return tegra_powergate_is_powered(id);
609}
610
611/**
612 * tegra_pmc_cpu_power_on() - power on CPU partition
613 * @cpuid: CPU partition ID
614 */
Jon Hunter70293ed2016-02-11 18:03:22 +0000615int tegra_pmc_cpu_power_on(unsigned int cpuid)
Thierry Reding72323982014-07-11 13:19:06 +0200616{
617 int id;
618
619 id = tegra_get_cpu_powergate_id(cpuid);
620 if (id < 0)
621 return id;
622
623 return tegra_powergate_set(id, true);
624}
625
626/**
627 * tegra_pmc_cpu_remove_clamping() - remove power clamps for CPU partition
628 * @cpuid: CPU partition ID
629 */
Jon Hunter70293ed2016-02-11 18:03:22 +0000630int tegra_pmc_cpu_remove_clamping(unsigned int cpuid)
Thierry Reding72323982014-07-11 13:19:06 +0200631{
632 int id;
633
634 id = tegra_get_cpu_powergate_id(cpuid);
635 if (id < 0)
636 return id;
637
638 return tegra_powergate_remove_clamping(id);
639}
640#endif /* CONFIG_SMP */
641
David Riley78921582015-03-18 10:52:25 +0100642static int tegra_pmc_restart_notify(struct notifier_block *this,
643 unsigned long action, void *data)
Thierry Reding72323982014-07-11 13:19:06 +0200644{
David Riley78921582015-03-18 10:52:25 +0100645 const char *cmd = data;
Thierry Reding72323982014-07-11 13:19:06 +0200646 u32 value;
647
648 value = tegra_pmc_readl(PMC_SCRATCH0);
649 value &= ~PMC_SCRATCH0_MODE_MASK;
650
651 if (cmd) {
652 if (strcmp(cmd, "recovery") == 0)
653 value |= PMC_SCRATCH0_MODE_RECOVERY;
654
655 if (strcmp(cmd, "bootloader") == 0)
656 value |= PMC_SCRATCH0_MODE_BOOTLOADER;
657
658 if (strcmp(cmd, "forced-recovery") == 0)
659 value |= PMC_SCRATCH0_MODE_RCM;
660 }
661
662 tegra_pmc_writel(value, PMC_SCRATCH0);
663
Thierry Redingf5353c62015-12-30 17:13:29 +0100664 /* reset everything but PMC_SCRATCH0 and PMC_RST_STATUS */
665 value = tegra_pmc_readl(PMC_CNTRL);
666 value |= PMC_CNTRL_MAIN_RST;
667 tegra_pmc_writel(value, PMC_CNTRL);
David Riley78921582015-03-18 10:52:25 +0100668
669 return NOTIFY_DONE;
Thierry Reding72323982014-07-11 13:19:06 +0200670}
671
David Riley78921582015-03-18 10:52:25 +0100672static struct notifier_block tegra_pmc_restart_handler = {
673 .notifier_call = tegra_pmc_restart_notify,
674 .priority = 128,
675};
676
Thierry Reding72323982014-07-11 13:19:06 +0200677static int powergate_show(struct seq_file *s, void *data)
678{
679 unsigned int i;
Jon Hunterc3ea2972016-02-11 18:03:25 +0000680 int status;
Thierry Reding72323982014-07-11 13:19:06 +0200681
682 seq_printf(s, " powergate powered\n");
683 seq_printf(s, "------------------\n");
684
685 for (i = 0; i < pmc->soc->num_powergates; i++) {
Jon Hunterc3ea2972016-02-11 18:03:25 +0000686 status = tegra_powergate_is_powered(i);
687 if (status < 0)
Thierry Reding72323982014-07-11 13:19:06 +0200688 continue;
689
690 seq_printf(s, " %9s %7s\n", pmc->soc->powergates[i],
Jon Hunterc3ea2972016-02-11 18:03:25 +0000691 status ? "yes" : "no");
Thierry Reding72323982014-07-11 13:19:06 +0200692 }
693
694 return 0;
695}
696
697static int powergate_open(struct inode *inode, struct file *file)
698{
699 return single_open(file, powergate_show, inode->i_private);
700}
701
702static const struct file_operations powergate_fops = {
703 .open = powergate_open,
704 .read = seq_read,
705 .llseek = seq_lseek,
706 .release = single_release,
707};
708
709static int tegra_powergate_debugfs_init(void)
710{
Jon Hunter3195ac62015-12-04 14:57:05 +0000711 pmc->debugfs = debugfs_create_file("powergate", S_IRUGO, NULL, NULL,
712 &powergate_fops);
713 if (!pmc->debugfs)
Thierry Reding72323982014-07-11 13:19:06 +0200714 return -ENOMEM;
715
716 return 0;
717}
718
Jon Huntera3804512016-03-30 10:15:15 +0100719static int tegra_powergate_of_get_clks(struct tegra_powergate *pg,
720 struct device_node *np)
721{
722 struct clk *clk;
723 unsigned int i, count;
724 int err;
725
726 count = of_count_phandle_with_args(np, "clocks", "#clock-cells");
727 if (count == 0)
728 return -ENODEV;
729
730 pg->clks = kcalloc(count, sizeof(clk), GFP_KERNEL);
731 if (!pg->clks)
732 return -ENOMEM;
733
734 for (i = 0; i < count; i++) {
735 pg->clks[i] = of_clk_get(np, i);
736 if (IS_ERR(pg->clks[i])) {
737 err = PTR_ERR(pg->clks[i]);
738 goto err;
739 }
740 }
741
742 pg->num_clks = count;
743
744 return 0;
745
746err:
747 while (i--)
748 clk_put(pg->clks[i]);
Thierry Redingda8f4b42016-06-30 12:12:55 +0200749
Jon Huntera3804512016-03-30 10:15:15 +0100750 kfree(pg->clks);
751
752 return err;
753}
754
755static int tegra_powergate_of_get_resets(struct tegra_powergate *pg,
Jon Hunter05cfb982016-06-29 10:17:47 +0100756 struct device_node *np, bool off)
Jon Huntera3804512016-03-30 10:15:15 +0100757{
758 struct reset_control *rst;
759 unsigned int i, count;
760 int err;
761
762 count = of_count_phandle_with_args(np, "resets", "#reset-cells");
763 if (count == 0)
764 return -ENODEV;
765
766 pg->resets = kcalloc(count, sizeof(rst), GFP_KERNEL);
767 if (!pg->resets)
768 return -ENOMEM;
769
770 for (i = 0; i < count; i++) {
771 pg->resets[i] = of_reset_control_get_by_index(np, i);
772 if (IS_ERR(pg->resets[i])) {
773 err = PTR_ERR(pg->resets[i]);
774 goto error;
775 }
Jon Hunter05cfb982016-06-29 10:17:47 +0100776
777 if (off)
778 err = reset_control_assert(pg->resets[i]);
779 else
780 err = reset_control_deassert(pg->resets[i]);
781
782 if (err) {
783 reset_control_put(pg->resets[i]);
784 goto error;
785 }
Jon Huntera3804512016-03-30 10:15:15 +0100786 }
787
788 pg->num_resets = count;
789
790 return 0;
791
792error:
793 while (i--)
794 reset_control_put(pg->resets[i]);
Thierry Redingda8f4b42016-06-30 12:12:55 +0200795
Jon Huntera3804512016-03-30 10:15:15 +0100796 kfree(pg->resets);
797
798 return err;
799}
800
801static void tegra_powergate_add(struct tegra_pmc *pmc, struct device_node *np)
802{
803 struct tegra_powergate *pg;
Jon Hunterc2710ac2016-06-30 11:56:24 +0100804 int id, err;
Jon Huntera3804512016-03-30 10:15:15 +0100805 bool off;
Jon Huntera3804512016-03-30 10:15:15 +0100806
807 pg = kzalloc(sizeof(*pg), GFP_KERNEL);
808 if (!pg)
Jon Hunterc2710ac2016-06-30 11:56:24 +0100809 return;
Jon Huntera3804512016-03-30 10:15:15 +0100810
811 id = tegra_powergate_lookup(pmc, np->name);
Jon Hunterc2710ac2016-06-30 11:56:24 +0100812 if (id < 0) {
Thierry Reding54e24722016-11-08 10:58:32 +0100813 pr_err("powergate lookup failed for %s: %d\n", np->name, id);
Jon Huntera3804512016-03-30 10:15:15 +0100814 goto free_mem;
Jon Hunterc2710ac2016-06-30 11:56:24 +0100815 }
Jon Huntera3804512016-03-30 10:15:15 +0100816
817 /*
818 * Clear the bit for this powergate so it cannot be managed
819 * directly via the legacy APIs for controlling powergates.
820 */
821 clear_bit(id, pmc->powergates_available);
822
823 pg->id = id;
824 pg->genpd.name = np->name;
825 pg->genpd.power_off = tegra_genpd_power_off;
826 pg->genpd.power_on = tegra_genpd_power_on;
827 pg->pmc = pmc;
828
Jon Hunter05cfb982016-06-29 10:17:47 +0100829 off = !tegra_powergate_is_powered(pg->id);
830
Jon Hunterc2710ac2016-06-30 11:56:24 +0100831 err = tegra_powergate_of_get_clks(pg, np);
832 if (err < 0) {
Thierry Reding54e24722016-11-08 10:58:32 +0100833 pr_err("failed to get clocks for %s: %d\n", np->name, err);
Jon Huntera3804512016-03-30 10:15:15 +0100834 goto set_available;
Jon Hunterc2710ac2016-06-30 11:56:24 +0100835 }
Jon Huntera3804512016-03-30 10:15:15 +0100836
Jon Hunterc2710ac2016-06-30 11:56:24 +0100837 err = tegra_powergate_of_get_resets(pg, np, off);
838 if (err < 0) {
Thierry Reding54e24722016-11-08 10:58:32 +0100839 pr_err("failed to get resets for %s: %d\n", np->name, err);
Jon Huntera3804512016-03-30 10:15:15 +0100840 goto remove_clks;
Jon Hunterc2710ac2016-06-30 11:56:24 +0100841 }
Jon Huntera3804512016-03-30 10:15:15 +0100842
Jon Hunter0b137342016-10-22 20:23:56 +0100843 if (!IS_ENABLED(CONFIG_PM_GENERIC_DOMAINS)) {
844 if (off)
845 WARN_ON(tegra_powergate_power_up(pg, true));
846
847 goto remove_resets;
848 }
Jon Huntere2d17962016-06-30 11:56:25 +0100849
Jon Hunter8df12742016-06-30 11:56:26 +0100850 /*
851 * FIXME: If XHCI is enabled for Tegra, then power-up the XUSB
852 * host and super-speed partitions. Once the XHCI driver
853 * manages the partitions itself this code can be removed. Note
854 * that we don't register these partitions with the genpd core
855 * to avoid it from powering down the partitions as they appear
856 * to be unused.
857 */
858 if (IS_ENABLED(CONFIG_USB_XHCI_TEGRA) &&
Jon Hunter0b137342016-10-22 20:23:56 +0100859 (id == TEGRA_POWERGATE_XUSBA || id == TEGRA_POWERGATE_XUSBC)) {
860 if (off)
861 WARN_ON(tegra_powergate_power_up(pg, true));
862
863 goto remove_resets;
864 }
Jon Hunter8df12742016-06-30 11:56:26 +0100865
Jon Huntercd5ceda2016-10-22 20:23:55 +0100866 err = pm_genpd_init(&pg->genpd, NULL, off);
867 if (err < 0) {
Thierry Reding45221122016-11-08 11:05:03 +0100868 pr_err("failed to initialise PM domain %s: %d\n", np->name,
Jon Huntercd5ceda2016-10-22 20:23:55 +0100869 err);
870 goto remove_resets;
871 }
Jon Huntera3804512016-03-30 10:15:15 +0100872
Jon Hunterc2710ac2016-06-30 11:56:24 +0100873 err = of_genpd_add_provider_simple(np, &pg->genpd);
874 if (err < 0) {
Thierry Reding45221122016-11-08 11:05:03 +0100875 pr_err("failed to add PM domain provider for %s: %d\n",
876 np->name, err);
Jon Hunter0b137342016-10-22 20:23:56 +0100877 goto remove_genpd;
Jon Hunterc2710ac2016-06-30 11:56:24 +0100878 }
Jon Huntera3804512016-03-30 10:15:15 +0100879
Thierry Reding45221122016-11-08 11:05:03 +0100880 pr_debug("added PM domain %s\n", pg->genpd.name);
Jon Huntera3804512016-03-30 10:15:15 +0100881
882 return;
883
Jon Hunter0b137342016-10-22 20:23:56 +0100884remove_genpd:
885 pm_genpd_remove(&pg->genpd);
Jon Huntere2d17962016-06-30 11:56:25 +0100886
Jon Huntera3804512016-03-30 10:15:15 +0100887remove_resets:
888 while (pg->num_resets--)
889 reset_control_put(pg->resets[pg->num_resets]);
Thierry Redingda8f4b42016-06-30 12:12:55 +0200890
Jon Huntera3804512016-03-30 10:15:15 +0100891 kfree(pg->resets);
892
893remove_clks:
894 while (pg->num_clks--)
895 clk_put(pg->clks[pg->num_clks]);
Thierry Redingda8f4b42016-06-30 12:12:55 +0200896
Jon Huntera3804512016-03-30 10:15:15 +0100897 kfree(pg->clks);
898
899set_available:
900 set_bit(id, pmc->powergates_available);
901
902free_mem:
903 kfree(pg);
Jon Huntera3804512016-03-30 10:15:15 +0100904}
905
Jon Huntere2d17962016-06-30 11:56:25 +0100906static void tegra_powergate_init(struct tegra_pmc *pmc,
907 struct device_node *parent)
Jon Huntera3804512016-03-30 10:15:15 +0100908{
909 struct device_node *np, *child;
Jon Huntere2d17962016-06-30 11:56:25 +0100910 unsigned int i;
Jon Huntera3804512016-03-30 10:15:15 +0100911
Jon Huntere2d17962016-06-30 11:56:25 +0100912 /* Create a bitmap of the available and valid partitions */
913 for (i = 0; i < pmc->soc->num_powergates; i++)
914 if (pmc->soc->powergates[i])
915 set_bit(i, pmc->powergates_available);
916
917 np = of_get_child_by_name(parent, "powergates");
Jon Huntera3804512016-03-30 10:15:15 +0100918 if (!np)
919 return;
920
Tuomas Tynkkynen0c106e52017-07-29 02:58:43 +0300921 for_each_child_of_node(np, child)
Jon Huntera3804512016-03-30 10:15:15 +0100922 tegra_powergate_add(pmc, child);
Jon Huntera3804512016-03-30 10:15:15 +0100923
924 of_node_put(np);
925}
926
Laxman Dewangan21b49912016-10-10 15:14:34 +0200927static const struct tegra_io_pad_soc *
928tegra_io_pad_find(struct tegra_pmc *pmc, enum tegra_io_pad id)
Thierry Reding72323982014-07-11 13:19:06 +0200929{
Laxman Dewangan21b49912016-10-10 15:14:34 +0200930 unsigned int i;
931
932 for (i = 0; i < pmc->soc->num_io_pads; i++)
933 if (pmc->soc->io_pads[i].id == id)
934 return &pmc->soc->io_pads[i];
935
936 return NULL;
937}
938
939static int tegra_io_pad_prepare(enum tegra_io_pad id, unsigned long *request,
Jon Hunter27b12b4e2016-10-22 20:23:53 +0100940 unsigned long *status, u32 *mask)
Laxman Dewangan21b49912016-10-10 15:14:34 +0200941{
942 const struct tegra_io_pad_soc *pad;
Thierry Reding72323982014-07-11 13:19:06 +0200943 unsigned long rate, value;
Thierry Reding72323982014-07-11 13:19:06 +0200944
Laxman Dewangan21b49912016-10-10 15:14:34 +0200945 pad = tegra_io_pad_find(pmc, id);
Thierry Reding54e24722016-11-08 10:58:32 +0100946 if (!pad) {
947 pr_err("invalid I/O pad ID %u\n", id);
Laxman Dewangan21b49912016-10-10 15:14:34 +0200948 return -ENOENT;
Thierry Reding54e24722016-11-08 10:58:32 +0100949 }
Thierry Reding72323982014-07-11 13:19:06 +0200950
Laxman Dewangan21b49912016-10-10 15:14:34 +0200951 if (pad->dpd == UINT_MAX)
952 return -ENOTSUPP;
Thierry Reding72323982014-07-11 13:19:06 +0200953
Jon Hunter27b12b4e2016-10-22 20:23:53 +0100954 *mask = BIT(pad->dpd % 32);
Laxman Dewangan21b49912016-10-10 15:14:34 +0200955
956 if (pad->dpd < 32) {
Thierry Reding72323982014-07-11 13:19:06 +0200957 *status = IO_DPD_STATUS;
958 *request = IO_DPD_REQ;
959 } else {
960 *status = IO_DPD2_STATUS;
961 *request = IO_DPD2_REQ;
962 }
963
Thierry Reding592431b2015-08-04 15:25:03 +0200964 rate = clk_get_rate(pmc->clk);
Thierry Reding54e24722016-11-08 10:58:32 +0100965 if (!rate) {
966 pr_err("failed to get clock rate\n");
Jon Hunterf4392d62016-10-22 20:23:52 +0100967 return -ENODEV;
Thierry Reding54e24722016-11-08 10:58:32 +0100968 }
Thierry Reding72323982014-07-11 13:19:06 +0200969
970 tegra_pmc_writel(DPD_SAMPLE_ENABLE, DPD_SAMPLE);
971
972 /* must be at least 200 ns, in APB (PCLK) clock cycles */
973 value = DIV_ROUND_UP(1000000000, rate);
974 value = DIV_ROUND_UP(200, value);
975 tegra_pmc_writel(value, SEL_DPD_TIM);
976
977 return 0;
978}
979
Laxman Dewangan21b49912016-10-10 15:14:34 +0200980static int tegra_io_pad_poll(unsigned long offset, u32 mask,
981 u32 val, unsigned long timeout)
Thierry Reding72323982014-07-11 13:19:06 +0200982{
Laxman Dewangan84cf85e2016-06-17 18:36:13 +0530983 u32 value;
Thierry Reding72323982014-07-11 13:19:06 +0200984
985 timeout = jiffies + msecs_to_jiffies(timeout);
986
987 while (time_after(timeout, jiffies)) {
988 value = tegra_pmc_readl(offset);
989 if ((value & mask) == val)
990 return 0;
991
992 usleep_range(250, 1000);
993 }
994
995 return -ETIMEDOUT;
996}
997
Laxman Dewangan21b49912016-10-10 15:14:34 +0200998static void tegra_io_pad_unprepare(void)
Thierry Reding72323982014-07-11 13:19:06 +0200999{
1000 tegra_pmc_writel(DPD_SAMPLE_DISABLE, DPD_SAMPLE);
1001}
1002
Laxman Dewangan21b49912016-10-10 15:14:34 +02001003/**
1004 * tegra_io_pad_power_enable() - enable power to I/O pad
1005 * @id: Tegra I/O pad ID for which to enable power
1006 *
1007 * Returns: 0 on success or a negative error code on failure.
1008 */
1009int tegra_io_pad_power_enable(enum tegra_io_pad id)
Thierry Reding72323982014-07-11 13:19:06 +02001010{
Vince Hsua9ccc1232016-08-11 09:13:36 +08001011 unsigned long request, status;
Jon Hunter27b12b4e2016-10-22 20:23:53 +01001012 u32 mask;
Thierry Reding72323982014-07-11 13:19:06 +02001013 int err;
1014
Jon Huntere8cf6612016-02-11 18:03:21 +00001015 mutex_lock(&pmc->powergates_lock);
1016
Jon Hunter27b12b4e2016-10-22 20:23:53 +01001017 err = tegra_io_pad_prepare(id, &request, &status, &mask);
Laxman Dewangan21b49912016-10-10 15:14:34 +02001018 if (err < 0) {
Thierry Reding54e24722016-11-08 10:58:32 +01001019 pr_err("failed to prepare I/O pad: %d\n", err);
Laxman Dewangan21b49912016-10-10 15:14:34 +02001020 goto unlock;
1021 }
Thierry Reding72323982014-07-11 13:19:06 +02001022
Jon Hunter27b12b4e2016-10-22 20:23:53 +01001023 tegra_pmc_writel(IO_DPD_REQ_CODE_OFF | mask, request);
Thierry Reding72323982014-07-11 13:19:06 +02001024
Jon Hunter27b12b4e2016-10-22 20:23:53 +01001025 err = tegra_io_pad_poll(status, mask, 0, 250);
Laxman Dewangan21b49912016-10-10 15:14:34 +02001026 if (err < 0) {
Thierry Reding54e24722016-11-08 10:58:32 +01001027 pr_err("failed to enable I/O pad: %d\n", err);
Laxman Dewangan21b49912016-10-10 15:14:34 +02001028 goto unlock;
Thierry Reding592431b2015-08-04 15:25:03 +02001029 }
Thierry Reding72323982014-07-11 13:19:06 +02001030
Laxman Dewangan21b49912016-10-10 15:14:34 +02001031 tegra_io_pad_unprepare();
Thierry Reding72323982014-07-11 13:19:06 +02001032
Laxman Dewangan21b49912016-10-10 15:14:34 +02001033unlock:
Jon Huntere8cf6612016-02-11 18:03:21 +00001034 mutex_unlock(&pmc->powergates_lock);
Jon Huntere8cf6612016-02-11 18:03:21 +00001035 return err;
Thierry Reding72323982014-07-11 13:19:06 +02001036}
Laxman Dewangan21b49912016-10-10 15:14:34 +02001037EXPORT_SYMBOL(tegra_io_pad_power_enable);
Thierry Reding72323982014-07-11 13:19:06 +02001038
Laxman Dewangan21b49912016-10-10 15:14:34 +02001039/**
1040 * tegra_io_pad_power_disable() - disable power to I/O pad
1041 * @id: Tegra I/O pad ID for which to disable power
1042 *
1043 * Returns: 0 on success or a negative error code on failure.
1044 */
1045int tegra_io_pad_power_disable(enum tegra_io_pad id)
Thierry Reding72323982014-07-11 13:19:06 +02001046{
Vince Hsua9ccc1232016-08-11 09:13:36 +08001047 unsigned long request, status;
Jon Hunter27b12b4e2016-10-22 20:23:53 +01001048 u32 mask;
Thierry Reding72323982014-07-11 13:19:06 +02001049 int err;
1050
Jon Huntere8cf6612016-02-11 18:03:21 +00001051 mutex_lock(&pmc->powergates_lock);
1052
Jon Hunter27b12b4e2016-10-22 20:23:53 +01001053 err = tegra_io_pad_prepare(id, &request, &status, &mask);
Laxman Dewangan21b49912016-10-10 15:14:34 +02001054 if (err < 0) {
Thierry Reding54e24722016-11-08 10:58:32 +01001055 pr_err("failed to prepare I/O pad: %d\n", err);
Laxman Dewangan21b49912016-10-10 15:14:34 +02001056 goto unlock;
Thierry Reding592431b2015-08-04 15:25:03 +02001057 }
Thierry Reding72323982014-07-11 13:19:06 +02001058
Jon Hunter27b12b4e2016-10-22 20:23:53 +01001059 tegra_pmc_writel(IO_DPD_REQ_CODE_ON | mask, request);
Thierry Reding72323982014-07-11 13:19:06 +02001060
Jon Hunter27b12b4e2016-10-22 20:23:53 +01001061 err = tegra_io_pad_poll(status, mask, mask, 250);
Laxman Dewangan21b49912016-10-10 15:14:34 +02001062 if (err < 0) {
Thierry Reding54e24722016-11-08 10:58:32 +01001063 pr_err("failed to disable I/O pad: %d\n", err);
Laxman Dewangan21b49912016-10-10 15:14:34 +02001064 goto unlock;
1065 }
Thierry Reding72323982014-07-11 13:19:06 +02001066
Laxman Dewangan21b49912016-10-10 15:14:34 +02001067 tegra_io_pad_unprepare();
Thierry Reding72323982014-07-11 13:19:06 +02001068
Laxman Dewangan21b49912016-10-10 15:14:34 +02001069unlock:
1070 mutex_unlock(&pmc->powergates_lock);
1071 return err;
1072}
1073EXPORT_SYMBOL(tegra_io_pad_power_disable);
1074
1075int tegra_io_pad_set_voltage(enum tegra_io_pad id,
1076 enum tegra_io_pad_voltage voltage)
1077{
1078 const struct tegra_io_pad_soc *pad;
1079 u32 value;
1080
1081 pad = tegra_io_pad_find(pmc, id);
1082 if (!pad)
1083 return -ENOENT;
1084
1085 if (pad->voltage == UINT_MAX)
1086 return -ENOTSUPP;
1087
1088 mutex_lock(&pmc->powergates_lock);
1089
1090 /* write-enable PMC_PWR_DET_VALUE[pad->voltage] */
1091 value = tegra_pmc_readl(PMC_PWR_DET);
1092 value |= BIT(pad->voltage);
1093 tegra_pmc_writel(value, PMC_PWR_DET);
1094
1095 /* update I/O voltage */
1096 value = tegra_pmc_readl(PMC_PWR_DET_VALUE);
1097
1098 if (voltage == TEGRA_IO_PAD_1800000UV)
1099 value &= ~BIT(pad->voltage);
1100 else
1101 value |= BIT(pad->voltage);
1102
1103 tegra_pmc_writel(value, PMC_PWR_DET_VALUE);
1104
Jon Huntere8cf6612016-02-11 18:03:21 +00001105 mutex_unlock(&pmc->powergates_lock);
1106
Laxman Dewangan21b49912016-10-10 15:14:34 +02001107 usleep_range(100, 250);
1108
1109 return 0;
1110}
1111EXPORT_SYMBOL(tegra_io_pad_set_voltage);
1112
1113int tegra_io_pad_get_voltage(enum tegra_io_pad id)
1114{
1115 const struct tegra_io_pad_soc *pad;
1116 u32 value;
1117
1118 pad = tegra_io_pad_find(pmc, id);
1119 if (!pad)
1120 return -ENOENT;
1121
1122 if (pad->voltage == UINT_MAX)
1123 return -ENOTSUPP;
1124
1125 value = tegra_pmc_readl(PMC_PWR_DET_VALUE);
1126
1127 if ((value & BIT(pad->voltage)) == 0)
1128 return TEGRA_IO_PAD_1800000UV;
1129
1130 return TEGRA_IO_PAD_3300000UV;
1131}
1132EXPORT_SYMBOL(tegra_io_pad_get_voltage);
1133
1134/**
1135 * tegra_io_rail_power_on() - enable power to I/O rail
1136 * @id: Tegra I/O pad ID for which to enable power
1137 *
1138 * See also: tegra_io_pad_power_enable()
1139 */
1140int tegra_io_rail_power_on(unsigned int id)
1141{
1142 return tegra_io_pad_power_enable(id);
1143}
1144EXPORT_SYMBOL(tegra_io_rail_power_on);
1145
1146/**
1147 * tegra_io_rail_power_off() - disable power to I/O rail
1148 * @id: Tegra I/O pad ID for which to disable power
1149 *
1150 * See also: tegra_io_pad_power_disable()
1151 */
1152int tegra_io_rail_power_off(unsigned int id)
1153{
1154 return tegra_io_pad_power_disable(id);
Thierry Reding72323982014-07-11 13:19:06 +02001155}
1156EXPORT_SYMBOL(tegra_io_rail_power_off);
1157
1158#ifdef CONFIG_PM_SLEEP
1159enum tegra_suspend_mode tegra_pmc_get_suspend_mode(void)
1160{
1161 return pmc->suspend_mode;
1162}
1163
1164void tegra_pmc_set_suspend_mode(enum tegra_suspend_mode mode)
1165{
1166 if (mode < TEGRA_SUSPEND_NONE || mode >= TEGRA_MAX_SUSPEND_MODE)
1167 return;
1168
1169 pmc->suspend_mode = mode;
1170}
1171
1172void tegra_pmc_enter_suspend_mode(enum tegra_suspend_mode mode)
1173{
1174 unsigned long long rate = 0;
1175 u32 value;
1176
1177 switch (mode) {
1178 case TEGRA_SUSPEND_LP1:
1179 rate = 32768;
1180 break;
1181
1182 case TEGRA_SUSPEND_LP2:
1183 rate = clk_get_rate(pmc->clk);
1184 break;
1185
1186 default:
1187 break;
1188 }
1189
1190 if (WARN_ON_ONCE(rate == 0))
1191 rate = 100000000;
1192
1193 if (rate != pmc->rate) {
1194 u64 ticks;
1195
1196 ticks = pmc->cpu_good_time * rate + USEC_PER_SEC - 1;
1197 do_div(ticks, USEC_PER_SEC);
1198 tegra_pmc_writel(ticks, PMC_CPUPWRGOOD_TIMER);
1199
1200 ticks = pmc->cpu_off_time * rate + USEC_PER_SEC - 1;
1201 do_div(ticks, USEC_PER_SEC);
1202 tegra_pmc_writel(ticks, PMC_CPUPWROFF_TIMER);
1203
1204 wmb();
1205
1206 pmc->rate = rate;
1207 }
1208
1209 value = tegra_pmc_readl(PMC_CNTRL);
1210 value &= ~PMC_CNTRL_SIDE_EFFECT_LP0;
1211 value |= PMC_CNTRL_CPU_PWRREQ_OE;
1212 tegra_pmc_writel(value, PMC_CNTRL);
1213}
1214#endif
1215
1216static int tegra_pmc_parse_dt(struct tegra_pmc *pmc, struct device_node *np)
1217{
1218 u32 value, values[2];
1219
1220 if (of_property_read_u32(np, "nvidia,suspend-mode", &value)) {
1221 } else {
1222 switch (value) {
1223 case 0:
1224 pmc->suspend_mode = TEGRA_SUSPEND_LP0;
1225 break;
1226
1227 case 1:
1228 pmc->suspend_mode = TEGRA_SUSPEND_LP1;
1229 break;
1230
1231 case 2:
1232 pmc->suspend_mode = TEGRA_SUSPEND_LP2;
1233 break;
1234
1235 default:
1236 pmc->suspend_mode = TEGRA_SUSPEND_NONE;
1237 break;
1238 }
1239 }
1240
1241 pmc->suspend_mode = tegra_pm_validate_suspend_mode(pmc->suspend_mode);
1242
1243 if (of_property_read_u32(np, "nvidia,cpu-pwr-good-time", &value))
1244 pmc->suspend_mode = TEGRA_SUSPEND_NONE;
1245
1246 pmc->cpu_good_time = value;
1247
1248 if (of_property_read_u32(np, "nvidia,cpu-pwr-off-time", &value))
1249 pmc->suspend_mode = TEGRA_SUSPEND_NONE;
1250
1251 pmc->cpu_off_time = value;
1252
1253 if (of_property_read_u32_array(np, "nvidia,core-pwr-good-time",
1254 values, ARRAY_SIZE(values)))
1255 pmc->suspend_mode = TEGRA_SUSPEND_NONE;
1256
1257 pmc->core_osc_time = values[0];
1258 pmc->core_pmu_time = values[1];
1259
1260 if (of_property_read_u32(np, "nvidia,core-pwr-off-time", &value))
1261 pmc->suspend_mode = TEGRA_SUSPEND_NONE;
1262
1263 pmc->core_off_time = value;
1264
1265 pmc->corereq_high = of_property_read_bool(np,
1266 "nvidia,core-power-req-active-high");
1267
1268 pmc->sysclkreq_high = of_property_read_bool(np,
1269 "nvidia,sys-clock-req-active-high");
1270
1271 pmc->combined_req = of_property_read_bool(np,
1272 "nvidia,combined-power-req");
1273
1274 pmc->cpu_pwr_good_en = of_property_read_bool(np,
1275 "nvidia,cpu-pwr-good-en");
1276
1277 if (of_property_read_u32_array(np, "nvidia,lp0-vec", values,
1278 ARRAY_SIZE(values)))
1279 if (pmc->suspend_mode == TEGRA_SUSPEND_LP0)
1280 pmc->suspend_mode = TEGRA_SUSPEND_LP1;
1281
1282 pmc->lp0_vec_phys = values[0];
1283 pmc->lp0_vec_size = values[1];
1284
1285 return 0;
1286}
1287
1288static void tegra_pmc_init(struct tegra_pmc *pmc)
1289{
1290 u32 value;
1291
1292 /* Always enable CPU power request */
1293 value = tegra_pmc_readl(PMC_CNTRL);
1294 value |= PMC_CNTRL_CPU_PWRREQ_OE;
1295 tegra_pmc_writel(value, PMC_CNTRL);
1296
1297 value = tegra_pmc_readl(PMC_CNTRL);
1298
1299 if (pmc->sysclkreq_high)
1300 value &= ~PMC_CNTRL_SYSCLK_POLARITY;
1301 else
1302 value |= PMC_CNTRL_SYSCLK_POLARITY;
1303
1304 /* configure the output polarity while the request is tristated */
1305 tegra_pmc_writel(value, PMC_CNTRL);
1306
1307 /* now enable the request */
1308 value = tegra_pmc_readl(PMC_CNTRL);
1309 value |= PMC_CNTRL_SYSCLK_OE;
1310 tegra_pmc_writel(value, PMC_CNTRL);
1311}
1312
Jon Hunter1e52efdf2015-12-04 14:57:04 +00001313static void tegra_pmc_init_tsense_reset(struct tegra_pmc *pmc)
Mikko Perttunen3568df32015-01-06 12:52:58 +02001314{
1315 static const char disabled[] = "emergency thermal reset disabled";
1316 u32 pmu_addr, ctrl_id, reg_addr, reg_data, pinmux;
1317 struct device *dev = pmc->dev;
1318 struct device_node *np;
1319 u32 value, checksum;
1320
1321 if (!pmc->soc->has_tsense_reset)
Thierry Reding95169cd2015-07-09 09:59:55 +02001322 return;
Mikko Perttunen3568df32015-01-06 12:52:58 +02001323
1324 np = of_find_node_by_name(pmc->dev->of_node, "i2c-thermtrip");
1325 if (!np) {
1326 dev_warn(dev, "i2c-thermtrip node not found, %s.\n", disabled);
Thierry Reding95169cd2015-07-09 09:59:55 +02001327 return;
Mikko Perttunen3568df32015-01-06 12:52:58 +02001328 }
1329
1330 if (of_property_read_u32(np, "nvidia,i2c-controller-id", &ctrl_id)) {
1331 dev_err(dev, "I2C controller ID missing, %s.\n", disabled);
1332 goto out;
1333 }
1334
1335 if (of_property_read_u32(np, "nvidia,bus-addr", &pmu_addr)) {
1336 dev_err(dev, "nvidia,bus-addr missing, %s.\n", disabled);
1337 goto out;
1338 }
1339
1340 if (of_property_read_u32(np, "nvidia,reg-addr", &reg_addr)) {
1341 dev_err(dev, "nvidia,reg-addr missing, %s.\n", disabled);
1342 goto out;
1343 }
1344
1345 if (of_property_read_u32(np, "nvidia,reg-data", &reg_data)) {
1346 dev_err(dev, "nvidia,reg-data missing, %s.\n", disabled);
1347 goto out;
1348 }
1349
1350 if (of_property_read_u32(np, "nvidia,pinmux-id", &pinmux))
1351 pinmux = 0;
1352
1353 value = tegra_pmc_readl(PMC_SENSOR_CTRL);
1354 value |= PMC_SENSOR_CTRL_SCRATCH_WRITE;
1355 tegra_pmc_writel(value, PMC_SENSOR_CTRL);
1356
1357 value = (reg_data << PMC_SCRATCH54_DATA_SHIFT) |
1358 (reg_addr << PMC_SCRATCH54_ADDR_SHIFT);
1359 tegra_pmc_writel(value, PMC_SCRATCH54);
1360
1361 value = PMC_SCRATCH55_RESET_TEGRA;
1362 value |= ctrl_id << PMC_SCRATCH55_CNTRL_ID_SHIFT;
1363 value |= pinmux << PMC_SCRATCH55_PINMUX_SHIFT;
1364 value |= pmu_addr << PMC_SCRATCH55_I2CSLV1_SHIFT;
1365
1366 /*
1367 * Calculate checksum of SCRATCH54, SCRATCH55 fields. Bits 23:16 will
1368 * contain the checksum and are currently zero, so they are not added.
1369 */
1370 checksum = reg_addr + reg_data + (value & 0xff) + ((value >> 8) & 0xff)
1371 + ((value >> 24) & 0xff);
1372 checksum &= 0xff;
1373 checksum = 0x100 - checksum;
1374
1375 value |= checksum << PMC_SCRATCH55_CHECKSUM_SHIFT;
1376
1377 tegra_pmc_writel(value, PMC_SCRATCH55);
1378
1379 value = tegra_pmc_readl(PMC_SENSOR_CTRL);
1380 value |= PMC_SENSOR_CTRL_ENABLE_RST;
1381 tegra_pmc_writel(value, PMC_SENSOR_CTRL);
1382
1383 dev_info(pmc->dev, "emergency thermal reset enabled\n");
1384
1385out:
1386 of_node_put(np);
Mikko Perttunen3568df32015-01-06 12:52:58 +02001387}
1388
Thierry Reding72323982014-07-11 13:19:06 +02001389static int tegra_pmc_probe(struct platform_device *pdev)
1390{
Jon Huntere8cf6612016-02-11 18:03:21 +00001391 void __iomem *base;
Thierry Reding72323982014-07-11 13:19:06 +02001392 struct resource *res;
1393 int err;
1394
Jon Huntera83f1fc2016-06-28 11:38:28 +01001395 /*
1396 * Early initialisation should have configured an initial
1397 * register mapping and setup the soc data pointer. If these
1398 * are not valid then something went badly wrong!
1399 */
1400 if (WARN_ON(!pmc->base || !pmc->soc))
1401 return -ENODEV;
1402
Thierry Reding72323982014-07-11 13:19:06 +02001403 err = tegra_pmc_parse_dt(pmc, pdev->dev.of_node);
1404 if (err < 0)
1405 return err;
1406
1407 /* take over the memory region from the early initialization */
1408 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Jon Hunter0259f522016-02-11 18:03:20 +00001409 base = devm_ioremap_resource(&pdev->dev, res);
1410 if (IS_ERR(base))
1411 return PTR_ERR(base);
Thierry Reding72323982014-07-11 13:19:06 +02001412
1413 pmc->clk = devm_clk_get(&pdev->dev, "pclk");
1414 if (IS_ERR(pmc->clk)) {
1415 err = PTR_ERR(pmc->clk);
1416 dev_err(&pdev->dev, "failed to get pclk: %d\n", err);
1417 return err;
1418 }
1419
Mikko Perttunen3568df32015-01-06 12:52:58 +02001420 pmc->dev = &pdev->dev;
1421
Thierry Reding72323982014-07-11 13:19:06 +02001422 tegra_pmc_init(pmc);
1423
Mikko Perttunen3568df32015-01-06 12:52:58 +02001424 tegra_pmc_init_tsense_reset(pmc);
1425
Thierry Reding72323982014-07-11 13:19:06 +02001426 if (IS_ENABLED(CONFIG_DEBUG_FS)) {
1427 err = tegra_powergate_debugfs_init();
1428 if (err < 0)
1429 return err;
1430 }
1431
David Riley78921582015-03-18 10:52:25 +01001432 err = register_restart_handler(&tegra_pmc_restart_handler);
1433 if (err) {
Jon Hunter3195ac62015-12-04 14:57:05 +00001434 debugfs_remove(pmc->debugfs);
David Riley78921582015-03-18 10:52:25 +01001435 dev_err(&pdev->dev, "unable to register restart handler, %d\n",
1436 err);
1437 return err;
1438 }
1439
Jon Huntere8cf6612016-02-11 18:03:21 +00001440 mutex_lock(&pmc->powergates_lock);
1441 iounmap(pmc->base);
Jon Hunter0259f522016-02-11 18:03:20 +00001442 pmc->base = base;
Jon Huntere8cf6612016-02-11 18:03:21 +00001443 mutex_unlock(&pmc->powergates_lock);
Jon Hunter0259f522016-02-11 18:03:20 +00001444
Thierry Reding72323982014-07-11 13:19:06 +02001445 return 0;
1446}
1447
Paul Walmsley2b20b612014-12-09 22:36:50 +00001448#if defined(CONFIG_PM_SLEEP) && defined(CONFIG_ARM)
Thierry Reding72323982014-07-11 13:19:06 +02001449static int tegra_pmc_suspend(struct device *dev)
1450{
1451 tegra_pmc_writel(virt_to_phys(tegra_resume), PMC_SCRATCH41);
1452
1453 return 0;
1454}
1455
1456static int tegra_pmc_resume(struct device *dev)
1457{
1458 tegra_pmc_writel(0x0, PMC_SCRATCH41);
1459
1460 return 0;
1461}
Thierry Reding72323982014-07-11 13:19:06 +02001462
1463static SIMPLE_DEV_PM_OPS(tegra_pmc_pm_ops, tegra_pmc_suspend, tegra_pmc_resume);
1464
Paul Walmsley2b20b612014-12-09 22:36:50 +00001465#endif
1466
Thierry Reding72323982014-07-11 13:19:06 +02001467static const char * const tegra20_powergates[] = {
1468 [TEGRA_POWERGATE_CPU] = "cpu",
1469 [TEGRA_POWERGATE_3D] = "3d",
1470 [TEGRA_POWERGATE_VENC] = "venc",
1471 [TEGRA_POWERGATE_VDEC] = "vdec",
1472 [TEGRA_POWERGATE_PCIE] = "pcie",
1473 [TEGRA_POWERGATE_L2] = "l2",
1474 [TEGRA_POWERGATE_MPE] = "mpe",
1475};
1476
1477static const struct tegra_pmc_soc tegra20_pmc_soc = {
1478 .num_powergates = ARRAY_SIZE(tegra20_powergates),
1479 .powergates = tegra20_powergates,
1480 .num_cpu_powergates = 0,
1481 .cpu_powergates = NULL,
Mikko Perttunen3568df32015-01-06 12:52:58 +02001482 .has_tsense_reset = false,
Thierry Redinga9a40a42015-01-09 11:15:33 +01001483 .has_gpu_clamps = false,
Thierry Reding72323982014-07-11 13:19:06 +02001484};
1485
1486static const char * const tegra30_powergates[] = {
1487 [TEGRA_POWERGATE_CPU] = "cpu0",
1488 [TEGRA_POWERGATE_3D] = "3d0",
1489 [TEGRA_POWERGATE_VENC] = "venc",
1490 [TEGRA_POWERGATE_VDEC] = "vdec",
1491 [TEGRA_POWERGATE_PCIE] = "pcie",
1492 [TEGRA_POWERGATE_L2] = "l2",
1493 [TEGRA_POWERGATE_MPE] = "mpe",
1494 [TEGRA_POWERGATE_HEG] = "heg",
1495 [TEGRA_POWERGATE_SATA] = "sata",
1496 [TEGRA_POWERGATE_CPU1] = "cpu1",
1497 [TEGRA_POWERGATE_CPU2] = "cpu2",
1498 [TEGRA_POWERGATE_CPU3] = "cpu3",
1499 [TEGRA_POWERGATE_CELP] = "celp",
1500 [TEGRA_POWERGATE_3D1] = "3d1",
1501};
1502
1503static const u8 tegra30_cpu_powergates[] = {
1504 TEGRA_POWERGATE_CPU,
1505 TEGRA_POWERGATE_CPU1,
1506 TEGRA_POWERGATE_CPU2,
1507 TEGRA_POWERGATE_CPU3,
1508};
1509
1510static const struct tegra_pmc_soc tegra30_pmc_soc = {
1511 .num_powergates = ARRAY_SIZE(tegra30_powergates),
1512 .powergates = tegra30_powergates,
1513 .num_cpu_powergates = ARRAY_SIZE(tegra30_cpu_powergates),
1514 .cpu_powergates = tegra30_cpu_powergates,
Mikko Perttunen3568df32015-01-06 12:52:58 +02001515 .has_tsense_reset = true,
Thierry Redinga9a40a42015-01-09 11:15:33 +01001516 .has_gpu_clamps = false,
Thierry Reding72323982014-07-11 13:19:06 +02001517};
1518
1519static const char * const tegra114_powergates[] = {
1520 [TEGRA_POWERGATE_CPU] = "crail",
1521 [TEGRA_POWERGATE_3D] = "3d",
1522 [TEGRA_POWERGATE_VENC] = "venc",
1523 [TEGRA_POWERGATE_VDEC] = "vdec",
1524 [TEGRA_POWERGATE_MPE] = "mpe",
1525 [TEGRA_POWERGATE_HEG] = "heg",
1526 [TEGRA_POWERGATE_CPU1] = "cpu1",
1527 [TEGRA_POWERGATE_CPU2] = "cpu2",
1528 [TEGRA_POWERGATE_CPU3] = "cpu3",
1529 [TEGRA_POWERGATE_CELP] = "celp",
1530 [TEGRA_POWERGATE_CPU0] = "cpu0",
1531 [TEGRA_POWERGATE_C0NC] = "c0nc",
1532 [TEGRA_POWERGATE_C1NC] = "c1nc",
1533 [TEGRA_POWERGATE_DIS] = "dis",
1534 [TEGRA_POWERGATE_DISB] = "disb",
1535 [TEGRA_POWERGATE_XUSBA] = "xusba",
1536 [TEGRA_POWERGATE_XUSBB] = "xusbb",
1537 [TEGRA_POWERGATE_XUSBC] = "xusbc",
1538};
1539
1540static const u8 tegra114_cpu_powergates[] = {
1541 TEGRA_POWERGATE_CPU0,
1542 TEGRA_POWERGATE_CPU1,
1543 TEGRA_POWERGATE_CPU2,
1544 TEGRA_POWERGATE_CPU3,
1545};
1546
1547static const struct tegra_pmc_soc tegra114_pmc_soc = {
1548 .num_powergates = ARRAY_SIZE(tegra114_powergates),
1549 .powergates = tegra114_powergates,
1550 .num_cpu_powergates = ARRAY_SIZE(tegra114_cpu_powergates),
1551 .cpu_powergates = tegra114_cpu_powergates,
Mikko Perttunen3568df32015-01-06 12:52:58 +02001552 .has_tsense_reset = true,
Thierry Redinga9a40a42015-01-09 11:15:33 +01001553 .has_gpu_clamps = false,
Thierry Reding72323982014-07-11 13:19:06 +02001554};
1555
1556static const char * const tegra124_powergates[] = {
1557 [TEGRA_POWERGATE_CPU] = "crail",
1558 [TEGRA_POWERGATE_3D] = "3d",
1559 [TEGRA_POWERGATE_VENC] = "venc",
1560 [TEGRA_POWERGATE_PCIE] = "pcie",
1561 [TEGRA_POWERGATE_VDEC] = "vdec",
Thierry Reding72323982014-07-11 13:19:06 +02001562 [TEGRA_POWERGATE_MPE] = "mpe",
1563 [TEGRA_POWERGATE_HEG] = "heg",
1564 [TEGRA_POWERGATE_SATA] = "sata",
1565 [TEGRA_POWERGATE_CPU1] = "cpu1",
1566 [TEGRA_POWERGATE_CPU2] = "cpu2",
1567 [TEGRA_POWERGATE_CPU3] = "cpu3",
1568 [TEGRA_POWERGATE_CELP] = "celp",
1569 [TEGRA_POWERGATE_CPU0] = "cpu0",
1570 [TEGRA_POWERGATE_C0NC] = "c0nc",
1571 [TEGRA_POWERGATE_C1NC] = "c1nc",
1572 [TEGRA_POWERGATE_SOR] = "sor",
1573 [TEGRA_POWERGATE_DIS] = "dis",
1574 [TEGRA_POWERGATE_DISB] = "disb",
1575 [TEGRA_POWERGATE_XUSBA] = "xusba",
1576 [TEGRA_POWERGATE_XUSBB] = "xusbb",
1577 [TEGRA_POWERGATE_XUSBC] = "xusbc",
1578 [TEGRA_POWERGATE_VIC] = "vic",
1579 [TEGRA_POWERGATE_IRAM] = "iram",
1580};
1581
1582static const u8 tegra124_cpu_powergates[] = {
1583 TEGRA_POWERGATE_CPU0,
1584 TEGRA_POWERGATE_CPU1,
1585 TEGRA_POWERGATE_CPU2,
1586 TEGRA_POWERGATE_CPU3,
1587};
1588
Laxman Dewangan21b49912016-10-10 15:14:34 +02001589static const struct tegra_io_pad_soc tegra124_io_pads[] = {
1590 { .id = TEGRA_IO_PAD_AUDIO, .dpd = 17, .voltage = UINT_MAX },
1591 { .id = TEGRA_IO_PAD_BB, .dpd = 15, .voltage = UINT_MAX },
1592 { .id = TEGRA_IO_PAD_CAM, .dpd = 36, .voltage = UINT_MAX },
1593 { .id = TEGRA_IO_PAD_COMP, .dpd = 22, .voltage = UINT_MAX },
1594 { .id = TEGRA_IO_PAD_CSIA, .dpd = 0, .voltage = UINT_MAX },
1595 { .id = TEGRA_IO_PAD_CSIB, .dpd = 1, .voltage = UINT_MAX },
1596 { .id = TEGRA_IO_PAD_CSIE, .dpd = 44, .voltage = UINT_MAX },
1597 { .id = TEGRA_IO_PAD_DSI, .dpd = 2, .voltage = UINT_MAX },
1598 { .id = TEGRA_IO_PAD_DSIB, .dpd = 39, .voltage = UINT_MAX },
1599 { .id = TEGRA_IO_PAD_DSIC, .dpd = 40, .voltage = UINT_MAX },
1600 { .id = TEGRA_IO_PAD_DSID, .dpd = 41, .voltage = UINT_MAX },
1601 { .id = TEGRA_IO_PAD_HDMI, .dpd = 28, .voltage = UINT_MAX },
1602 { .id = TEGRA_IO_PAD_HSIC, .dpd = 19, .voltage = UINT_MAX },
1603 { .id = TEGRA_IO_PAD_HV, .dpd = 38, .voltage = UINT_MAX },
1604 { .id = TEGRA_IO_PAD_LVDS, .dpd = 57, .voltage = UINT_MAX },
1605 { .id = TEGRA_IO_PAD_MIPI_BIAS, .dpd = 3, .voltage = UINT_MAX },
1606 { .id = TEGRA_IO_PAD_NAND, .dpd = 13, .voltage = UINT_MAX },
1607 { .id = TEGRA_IO_PAD_PEX_BIAS, .dpd = 4, .voltage = UINT_MAX },
1608 { .id = TEGRA_IO_PAD_PEX_CLK1, .dpd = 5, .voltage = UINT_MAX },
1609 { .id = TEGRA_IO_PAD_PEX_CLK2, .dpd = 6, .voltage = UINT_MAX },
1610 { .id = TEGRA_IO_PAD_PEX_CNTRL, .dpd = 32, .voltage = UINT_MAX },
1611 { .id = TEGRA_IO_PAD_SDMMC1, .dpd = 33, .voltage = UINT_MAX },
1612 { .id = TEGRA_IO_PAD_SDMMC3, .dpd = 34, .voltage = UINT_MAX },
1613 { .id = TEGRA_IO_PAD_SDMMC4, .dpd = 35, .voltage = UINT_MAX },
1614 { .id = TEGRA_IO_PAD_SYS_DDC, .dpd = 58, .voltage = UINT_MAX },
1615 { .id = TEGRA_IO_PAD_UART, .dpd = 14, .voltage = UINT_MAX },
1616 { .id = TEGRA_IO_PAD_USB0, .dpd = 9, .voltage = UINT_MAX },
1617 { .id = TEGRA_IO_PAD_USB1, .dpd = 10, .voltage = UINT_MAX },
1618 { .id = TEGRA_IO_PAD_USB2, .dpd = 11, .voltage = UINT_MAX },
1619 { .id = TEGRA_IO_PAD_USB_BIAS, .dpd = 12, .voltage = UINT_MAX },
1620};
1621
Thierry Reding72323982014-07-11 13:19:06 +02001622static const struct tegra_pmc_soc tegra124_pmc_soc = {
1623 .num_powergates = ARRAY_SIZE(tegra124_powergates),
1624 .powergates = tegra124_powergates,
1625 .num_cpu_powergates = ARRAY_SIZE(tegra124_cpu_powergates),
1626 .cpu_powergates = tegra124_cpu_powergates,
Mikko Perttunen3568df32015-01-06 12:52:58 +02001627 .has_tsense_reset = true,
Thierry Redinga9a40a42015-01-09 11:15:33 +01001628 .has_gpu_clamps = true,
Laxman Dewangan21b49912016-10-10 15:14:34 +02001629 .num_io_pads = ARRAY_SIZE(tegra124_io_pads),
1630 .io_pads = tegra124_io_pads,
Thierry Reding72323982014-07-11 13:19:06 +02001631};
1632
Thierry Redingc2fe4692015-03-23 11:31:29 +01001633static const char * const tegra210_powergates[] = {
1634 [TEGRA_POWERGATE_CPU] = "crail",
1635 [TEGRA_POWERGATE_3D] = "3d",
1636 [TEGRA_POWERGATE_VENC] = "venc",
1637 [TEGRA_POWERGATE_PCIE] = "pcie",
Thierry Redingc2fe4692015-03-23 11:31:29 +01001638 [TEGRA_POWERGATE_MPE] = "mpe",
Thierry Redingc2fe4692015-03-23 11:31:29 +01001639 [TEGRA_POWERGATE_SATA] = "sata",
1640 [TEGRA_POWERGATE_CPU1] = "cpu1",
1641 [TEGRA_POWERGATE_CPU2] = "cpu2",
1642 [TEGRA_POWERGATE_CPU3] = "cpu3",
Thierry Redingc2fe4692015-03-23 11:31:29 +01001643 [TEGRA_POWERGATE_CPU0] = "cpu0",
1644 [TEGRA_POWERGATE_C0NC] = "c0nc",
Thierry Redingc2fe4692015-03-23 11:31:29 +01001645 [TEGRA_POWERGATE_SOR] = "sor",
1646 [TEGRA_POWERGATE_DIS] = "dis",
1647 [TEGRA_POWERGATE_DISB] = "disb",
1648 [TEGRA_POWERGATE_XUSBA] = "xusba",
1649 [TEGRA_POWERGATE_XUSBB] = "xusbb",
1650 [TEGRA_POWERGATE_XUSBC] = "xusbc",
1651 [TEGRA_POWERGATE_VIC] = "vic",
1652 [TEGRA_POWERGATE_IRAM] = "iram",
1653 [TEGRA_POWERGATE_NVDEC] = "nvdec",
1654 [TEGRA_POWERGATE_NVJPG] = "nvjpg",
1655 [TEGRA_POWERGATE_AUD] = "aud",
1656 [TEGRA_POWERGATE_DFD] = "dfd",
1657 [TEGRA_POWERGATE_VE2] = "ve2",
1658};
1659
1660static const u8 tegra210_cpu_powergates[] = {
1661 TEGRA_POWERGATE_CPU0,
1662 TEGRA_POWERGATE_CPU1,
1663 TEGRA_POWERGATE_CPU2,
1664 TEGRA_POWERGATE_CPU3,
1665};
1666
Laxman Dewangan21b49912016-10-10 15:14:34 +02001667static const struct tegra_io_pad_soc tegra210_io_pads[] = {
1668 { .id = TEGRA_IO_PAD_AUDIO, .dpd = 17, .voltage = 5 },
1669 { .id = TEGRA_IO_PAD_AUDIO_HV, .dpd = 61, .voltage = 18 },
1670 { .id = TEGRA_IO_PAD_CAM, .dpd = 36, .voltage = 10 },
1671 { .id = TEGRA_IO_PAD_CSIA, .dpd = 0, .voltage = UINT_MAX },
1672 { .id = TEGRA_IO_PAD_CSIB, .dpd = 1, .voltage = UINT_MAX },
1673 { .id = TEGRA_IO_PAD_CSIC, .dpd = 42, .voltage = UINT_MAX },
1674 { .id = TEGRA_IO_PAD_CSID, .dpd = 43, .voltage = UINT_MAX },
1675 { .id = TEGRA_IO_PAD_CSIE, .dpd = 44, .voltage = UINT_MAX },
1676 { .id = TEGRA_IO_PAD_CSIF, .dpd = 45, .voltage = UINT_MAX },
1677 { .id = TEGRA_IO_PAD_DBG, .dpd = 25, .voltage = 19 },
1678 { .id = TEGRA_IO_PAD_DEBUG_NONAO, .dpd = 26, .voltage = UINT_MAX },
1679 { .id = TEGRA_IO_PAD_DMIC, .dpd = 50, .voltage = 20 },
1680 { .id = TEGRA_IO_PAD_DP, .dpd = 51, .voltage = UINT_MAX },
1681 { .id = TEGRA_IO_PAD_DSI, .dpd = 2, .voltage = UINT_MAX },
1682 { .id = TEGRA_IO_PAD_DSIB, .dpd = 39, .voltage = UINT_MAX },
1683 { .id = TEGRA_IO_PAD_DSIC, .dpd = 40, .voltage = UINT_MAX },
1684 { .id = TEGRA_IO_PAD_DSID, .dpd = 41, .voltage = UINT_MAX },
1685 { .id = TEGRA_IO_PAD_EMMC, .dpd = 35, .voltage = UINT_MAX },
1686 { .id = TEGRA_IO_PAD_EMMC2, .dpd = 37, .voltage = UINT_MAX },
1687 { .id = TEGRA_IO_PAD_GPIO, .dpd = 27, .voltage = 21 },
1688 { .id = TEGRA_IO_PAD_HDMI, .dpd = 28, .voltage = UINT_MAX },
1689 { .id = TEGRA_IO_PAD_HSIC, .dpd = 19, .voltage = UINT_MAX },
1690 { .id = TEGRA_IO_PAD_LVDS, .dpd = 57, .voltage = UINT_MAX },
1691 { .id = TEGRA_IO_PAD_MIPI_BIAS, .dpd = 3, .voltage = UINT_MAX },
1692 { .id = TEGRA_IO_PAD_PEX_BIAS, .dpd = 4, .voltage = UINT_MAX },
1693 { .id = TEGRA_IO_PAD_PEX_CLK1, .dpd = 5, .voltage = UINT_MAX },
1694 { .id = TEGRA_IO_PAD_PEX_CLK2, .dpd = 6, .voltage = UINT_MAX },
1695 { .id = TEGRA_IO_PAD_PEX_CNTRL, .dpd = UINT_MAX, .voltage = 11 },
1696 { .id = TEGRA_IO_PAD_SDMMC1, .dpd = 33, .voltage = 12 },
1697 { .id = TEGRA_IO_PAD_SDMMC3, .dpd = 34, .voltage = 13 },
1698 { .id = TEGRA_IO_PAD_SPI, .dpd = 46, .voltage = 22 },
1699 { .id = TEGRA_IO_PAD_SPI_HV, .dpd = 47, .voltage = 23 },
1700 { .id = TEGRA_IO_PAD_UART, .dpd = 14, .voltage = 2 },
1701 { .id = TEGRA_IO_PAD_USB0, .dpd = 9, .voltage = UINT_MAX },
1702 { .id = TEGRA_IO_PAD_USB1, .dpd = 10, .voltage = UINT_MAX },
1703 { .id = TEGRA_IO_PAD_USB2, .dpd = 11, .voltage = UINT_MAX },
1704 { .id = TEGRA_IO_PAD_USB3, .dpd = 18, .voltage = UINT_MAX },
1705 { .id = TEGRA_IO_PAD_USB_BIAS, .dpd = 12, .voltage = UINT_MAX },
1706};
1707
Thierry Redingc2fe4692015-03-23 11:31:29 +01001708static const struct tegra_pmc_soc tegra210_pmc_soc = {
1709 .num_powergates = ARRAY_SIZE(tegra210_powergates),
1710 .powergates = tegra210_powergates,
1711 .num_cpu_powergates = ARRAY_SIZE(tegra210_cpu_powergates),
1712 .cpu_powergates = tegra210_cpu_powergates,
1713 .has_tsense_reset = true,
1714 .has_gpu_clamps = true,
Laxman Dewangan21b49912016-10-10 15:14:34 +02001715 .num_io_pads = ARRAY_SIZE(tegra210_io_pads),
1716 .io_pads = tegra210_io_pads,
Thierry Redingc2fe4692015-03-23 11:31:29 +01001717};
1718
Thierry Reding72323982014-07-11 13:19:06 +02001719static const struct of_device_id tegra_pmc_match[] = {
Thierry Redingc2fe4692015-03-23 11:31:29 +01001720 { .compatible = "nvidia,tegra210-pmc", .data = &tegra210_pmc_soc },
Thierry Reding7d71e9032015-04-29 12:42:28 +02001721 { .compatible = "nvidia,tegra132-pmc", .data = &tegra124_pmc_soc },
Thierry Reding72323982014-07-11 13:19:06 +02001722 { .compatible = "nvidia,tegra124-pmc", .data = &tegra124_pmc_soc },
1723 { .compatible = "nvidia,tegra114-pmc", .data = &tegra114_pmc_soc },
1724 { .compatible = "nvidia,tegra30-pmc", .data = &tegra30_pmc_soc },
1725 { .compatible = "nvidia,tegra20-pmc", .data = &tegra20_pmc_soc },
1726 { }
1727};
1728
1729static struct platform_driver tegra_pmc_driver = {
1730 .driver = {
1731 .name = "tegra-pmc",
1732 .suppress_bind_attrs = true,
1733 .of_match_table = tegra_pmc_match,
Paul Walmsley2b20b612014-12-09 22:36:50 +00001734#if defined(CONFIG_PM_SLEEP) && defined(CONFIG_ARM)
Thierry Reding72323982014-07-11 13:19:06 +02001735 .pm = &tegra_pmc_pm_ops,
Paul Walmsley2b20b612014-12-09 22:36:50 +00001736#endif
Thierry Reding72323982014-07-11 13:19:06 +02001737 },
1738 .probe = tegra_pmc_probe,
1739};
Paul Gortmaker7d4d9ed2015-05-01 20:10:57 -04001740builtin_platform_driver(tegra_pmc_driver);
Thierry Reding72323982014-07-11 13:19:06 +02001741
1742/*
1743 * Early initialization to allow access to registers in the very early boot
1744 * process.
1745 */
1746static int __init tegra_pmc_early_init(void)
1747{
1748 const struct of_device_id *match;
1749 struct device_node *np;
1750 struct resource regs;
1751 bool invert;
1752 u32 value;
1753
Jon Hunter61fd2842016-06-28 11:38:26 +01001754 mutex_init(&pmc->powergates_lock);
1755
Thierry Reding72323982014-07-11 13:19:06 +02001756 np = of_find_matching_node_and_match(NULL, tegra_pmc_match, &match);
1757 if (!np) {
Thierry Reding7d71e9032015-04-29 12:42:28 +02001758 /*
1759 * Fall back to legacy initialization for 32-bit ARM only. All
1760 * 64-bit ARM device tree files for Tegra are required to have
1761 * a PMC node.
1762 *
1763 * This is for backwards-compatibility with old device trees
1764 * that didn't contain a PMC node. Note that in this case the
1765 * SoC data can't be matched and therefore powergating is
1766 * disabled.
1767 */
1768 if (IS_ENABLED(CONFIG_ARM) && soc_is_tegra()) {
1769 pr_warn("DT node not found, powergating disabled\n");
Thierry Reding72323982014-07-11 13:19:06 +02001770
Thierry Reding7d71e9032015-04-29 12:42:28 +02001771 regs.start = 0x7000e400;
1772 regs.end = 0x7000e7ff;
1773 regs.flags = IORESOURCE_MEM;
Thierry Reding72323982014-07-11 13:19:06 +02001774
Thierry Reding7d71e9032015-04-29 12:42:28 +02001775 pr_warn("Using memory region %pR\n", &regs);
1776 } else {
1777 /*
1778 * At this point we're not running on Tegra, so play
1779 * nice with multi-platform kernels.
1780 */
1781 return 0;
1782 }
Thierry Reding72323982014-07-11 13:19:06 +02001783 } else {
Thierry Reding7d71e9032015-04-29 12:42:28 +02001784 /*
1785 * Extract information from the device tree if we've found a
1786 * matching node.
1787 */
1788 if (of_address_to_resource(np, 0, &regs) < 0) {
1789 pr_err("failed to get PMC registers\n");
Jon Hunterb69a6252016-06-28 11:38:27 +01001790 of_node_put(np);
Thierry Reding7d71e9032015-04-29 12:42:28 +02001791 return -ENXIO;
1792 }
Thierry Reding72323982014-07-11 13:19:06 +02001793 }
1794
1795 pmc->base = ioremap_nocache(regs.start, resource_size(&regs));
1796 if (!pmc->base) {
1797 pr_err("failed to map PMC registers\n");
Jon Hunterb69a6252016-06-28 11:38:27 +01001798 of_node_put(np);
Thierry Reding72323982014-07-11 13:19:06 +02001799 return -ENXIO;
1800 }
1801
Jon Hunter11131892016-06-28 11:38:24 +01001802 if (np) {
Jon Hunter718a2422016-06-28 11:38:25 +01001803 pmc->soc = match->data;
1804
Jon Huntere2d17962016-06-30 11:56:25 +01001805 tegra_powergate_init(pmc, np);
Thierry Reding72323982014-07-11 13:19:06 +02001806
Jon Hunter11131892016-06-28 11:38:24 +01001807 /*
1808 * Invert the interrupt polarity if a PMC device tree node
1809 * exists and contains the nvidia,invert-interrupt property.
1810 */
1811 invert = of_property_read_bool(np, "nvidia,invert-interrupt");
Thierry Reding72323982014-07-11 13:19:06 +02001812
Jon Hunter11131892016-06-28 11:38:24 +01001813 value = tegra_pmc_readl(PMC_CNTRL);
Thierry Reding72323982014-07-11 13:19:06 +02001814
Jon Hunter11131892016-06-28 11:38:24 +01001815 if (invert)
1816 value |= PMC_CNTRL_INTR_POLARITY;
1817 else
1818 value &= ~PMC_CNTRL_INTR_POLARITY;
1819
1820 tegra_pmc_writel(value, PMC_CNTRL);
Jon Hunterb69a6252016-06-28 11:38:27 +01001821
1822 of_node_put(np);
Jon Hunter11131892016-06-28 11:38:24 +01001823 }
Thierry Reding72323982014-07-11 13:19:06 +02001824
1825 return 0;
1826}
1827early_initcall(tegra_pmc_early_init);