Linux Audio

Check our new training course

Loading...
v5.14.15
   1// SPDX-License-Identifier: GPL-2.0-or-later
   2/*
   3 * arch/arm/mach-at91/pm.c
   4 * AT91 Power Management
   5 *
   6 * Copyright (C) 2005 David Brownell
   7 */
   8
   9#include <linux/genalloc.h>
  10#include <linux/io.h>
  11#include <linux/of_address.h>
  12#include <linux/of.h>
 
  13#include <linux/of_platform.h>
 
  14#include <linux/parser.h>
  15#include <linux/suspend.h>
  16
 
  17#include <linux/clk/at91_pmc.h>
  18#include <linux/platform_data/atmel.h>
  19
  20#include <soc/at91/pm.h>
  21
  22#include <asm/cacheflush.h>
  23#include <asm/fncpy.h>
  24#include <asm/system_misc.h>
  25#include <asm/suspend.h>
  26
  27#include "generic.h"
  28#include "pm.h"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
  29
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
  30struct at91_soc_pm {
  31	int (*config_shdwc_ws)(void __iomem *shdwc, u32 *mode, u32 *polarity);
  32	int (*config_pmc_ws)(void __iomem *pmc, u32 mode, u32 polarity);
  33	const struct of_device_id *ws_ids;
 
 
  34	struct at91_pm_data data;
 
 
  35};
  36
 
 
 
 
 
 
 
 
 
 
 
 
 
 
  37static struct at91_soc_pm soc_pm = {
  38	.data = {
  39		.standby_mode = AT91_PM_STANDBY,
  40		.suspend_mode = AT91_PM_ULP0,
  41	},
  42};
  43
  44static const match_table_t pm_modes __initconst = {
  45	{ AT91_PM_STANDBY,	"standby" },
  46	{ AT91_PM_ULP0,		"ulp0" },
  47	{ AT91_PM_ULP0_FAST,    "ulp0-fast" },
  48	{ AT91_PM_ULP1,		"ulp1" },
  49	{ AT91_PM_BACKUP,	"backup" },
  50	{ -1, NULL },
  51};
  52
  53#define at91_ramc_read(id, field) \
  54	__raw_readl(soc_pm.data.ramc[id] + field)
  55
  56#define at91_ramc_write(id, field, value) \
  57	__raw_writel(value, soc_pm.data.ramc[id] + field)
  58
  59static int at91_pm_valid_state(suspend_state_t state)
  60{
  61	switch (state) {
  62		case PM_SUSPEND_ON:
  63		case PM_SUSPEND_STANDBY:
  64		case PM_SUSPEND_MEM:
  65			return 1;
  66
  67		default:
  68			return 0;
  69	}
  70}
  71
  72static int canary = 0xA5A5A5A5;
  73
  74static struct at91_pm_bu {
  75	int suspended;
  76	unsigned long reserved;
  77	phys_addr_t canary;
  78	phys_addr_t resume;
  79} *pm_bu;
  80
  81struct wakeup_source_info {
  82	unsigned int pmc_fsmr_bit;
  83	unsigned int shdwc_mr_bit;
  84	bool set_polarity;
  85};
  86
  87static const struct wakeup_source_info ws_info[] = {
  88	{ .pmc_fsmr_bit = AT91_PMC_FSTT(10),	.set_polarity = true },
  89	{ .pmc_fsmr_bit = AT91_PMC_RTCAL,	.shdwc_mr_bit = BIT(17) },
  90	{ .pmc_fsmr_bit = AT91_PMC_USBAL },
  91	{ .pmc_fsmr_bit = AT91_PMC_SDMMC_CD },
  92	{ .pmc_fsmr_bit = AT91_PMC_RTTAL },
  93	{ .pmc_fsmr_bit = AT91_PMC_RXLP_MCE },
  94};
  95
  96static const struct of_device_id sama5d2_ws_ids[] = {
  97	{ .compatible = "atmel,sama5d2-gem",		.data = &ws_info[0] },
  98	{ .compatible = "atmel,at91rm9200-rtc",		.data = &ws_info[1] },
  99	{ .compatible = "atmel,sama5d3-udc",		.data = &ws_info[2] },
 100	{ .compatible = "atmel,at91rm9200-ohci",	.data = &ws_info[2] },
 101	{ .compatible = "usb-ohci",			.data = &ws_info[2] },
 102	{ .compatible = "atmel,at91sam9g45-ehci",	.data = &ws_info[2] },
 103	{ .compatible = "usb-ehci",			.data = &ws_info[2] },
 104	{ .compatible = "atmel,sama5d2-sdhci",		.data = &ws_info[3] },
 105	{ /* sentinel */ }
 106};
 107
 108static const struct of_device_id sam9x60_ws_ids[] = {
 109	{ .compatible = "atmel,at91sam9x5-rtc",		.data = &ws_info[1] },
 110	{ .compatible = "atmel,at91rm9200-ohci",	.data = &ws_info[2] },
 111	{ .compatible = "usb-ohci",			.data = &ws_info[2] },
 112	{ .compatible = "atmel,at91sam9g45-ehci",	.data = &ws_info[2] },
 113	{ .compatible = "usb-ehci",			.data = &ws_info[2] },
 114	{ .compatible = "atmel,at91sam9260-rtt",	.data = &ws_info[4] },
 115	{ .compatible = "cdns,sam9x60-macb",		.data = &ws_info[5] },
 116	{ /* sentinel */ }
 117};
 118
 
 
 
 
 
 
 
 
 
 
 
 119static int at91_pm_config_ws(unsigned int pm_mode, bool set)
 120{
 121	const struct wakeup_source_info *wsi;
 122	const struct of_device_id *match;
 123	struct platform_device *pdev;
 124	struct device_node *np;
 125	unsigned int mode = 0, polarity = 0, val = 0;
 126
 127	if (pm_mode != AT91_PM_ULP1)
 128		return 0;
 129
 130	if (!soc_pm.data.pmc || !soc_pm.data.shdwc || !soc_pm.ws_ids)
 131		return -EPERM;
 132
 133	if (!set) {
 134		writel(mode, soc_pm.data.pmc + AT91_PMC_FSMR);
 135		return 0;
 136	}
 137
 138	if (soc_pm.config_shdwc_ws)
 139		soc_pm.config_shdwc_ws(soc_pm.data.shdwc, &mode, &polarity);
 140
 141	/* SHDWC.MR */
 142	val = readl(soc_pm.data.shdwc + 0x04);
 143
 144	/* Loop through defined wakeup sources. */
 145	for_each_matching_node_and_match(np, soc_pm.ws_ids, &match) {
 146		pdev = of_find_device_by_node(np);
 147		if (!pdev)
 148			continue;
 149
 150		if (device_may_wakeup(&pdev->dev)) {
 151			wsi = match->data;
 152
 153			/* Check if enabled on SHDWC. */
 154			if (wsi->shdwc_mr_bit && !(val & wsi->shdwc_mr_bit))
 155				goto put_device;
 156
 157			mode |= wsi->pmc_fsmr_bit;
 158			if (wsi->set_polarity)
 159				polarity |= wsi->pmc_fsmr_bit;
 160		}
 161
 162put_device:
 163		put_device(&pdev->dev);
 164	}
 165
 166	if (mode) {
 167		if (soc_pm.config_pmc_ws)
 168			soc_pm.config_pmc_ws(soc_pm.data.pmc, mode, polarity);
 169	} else {
 170		pr_err("AT91: PM: no ULP1 wakeup sources found!");
 171	}
 172
 173	return mode ? 0 : -EPERM;
 174}
 175
 176static int at91_sama5d2_config_shdwc_ws(void __iomem *shdwc, u32 *mode,
 177					u32 *polarity)
 178{
 179	u32 val;
 180
 181	/* SHDWC.WUIR */
 182	val = readl(shdwc + 0x0c);
 183	*mode |= (val & 0x3ff);
 184	*polarity |= ((val >> 16) & 0x3ff);
 185
 186	return 0;
 187}
 188
 189static int at91_sama5d2_config_pmc_ws(void __iomem *pmc, u32 mode, u32 polarity)
 190{
 191	writel(mode, pmc + AT91_PMC_FSMR);
 192	writel(polarity, pmc + AT91_PMC_FSPR);
 193
 194	return 0;
 195}
 196
 197static int at91_sam9x60_config_pmc_ws(void __iomem *pmc, u32 mode, u32 polarity)
 198{
 199	writel(mode, pmc + AT91_PMC_FSMR);
 200
 201	return 0;
 202}
 203
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 204/*
 205 * Called after processes are frozen, but before we shutdown devices.
 206 */
 207static int at91_pm_begin(suspend_state_t state)
 208{
 
 
 209	switch (state) {
 210	case PM_SUSPEND_MEM:
 211		soc_pm.data.mode = soc_pm.data.suspend_mode;
 212		break;
 213
 214	case PM_SUSPEND_STANDBY:
 215		soc_pm.data.mode = soc_pm.data.standby_mode;
 216		break;
 217
 218	default:
 219		soc_pm.data.mode = -1;
 220	}
 221
 222	return at91_pm_config_ws(soc_pm.data.mode, true);
 
 
 
 
 
 
 
 
 
 223}
 224
 225/*
 226 * Verify that all the clocks are correct before entering
 227 * slow-clock mode.
 228 */
 229static int at91_pm_verify_clocks(void)
 230{
 231	unsigned long scsr;
 232	int i;
 233
 234	scsr = readl(soc_pm.data.pmc + AT91_PMC_SCSR);
 235
 236	/* USB must not be using PLLB */
 237	if ((scsr & soc_pm.data.uhp_udp_mask) != 0) {
 238		pr_err("AT91: PM - Suspend-to-RAM with USB still active\n");
 239		return 0;
 240	}
 241
 242	/* PCK0..PCK3 must be disabled, or configured to use clk32k */
 243	for (i = 0; i < 4; i++) {
 244		u32 css;
 245
 246		if ((scsr & (AT91_PMC_PCK0 << i)) == 0)
 247			continue;
 248		css = readl(soc_pm.data.pmc + AT91_PMC_PCKR(i)) & AT91_PMC_CSS;
 249		if (css != AT91_PMC_CSS_SLOW) {
 250			pr_err("AT91: PM - Suspend-to-RAM with PCK%d src %d\n", i, css);
 251			return 0;
 252		}
 253	}
 254
 255	return 1;
 256}
 257
 258/*
 259 * Call this from platform driver suspend() to see how deeply to suspend.
 260 * For example, some controllers (like OHCI) need one of the PLL clocks
 261 * in order to act as a wakeup source, and those are not available when
 262 * going into slow clock mode.
 263 *
 264 * REVISIT: generalize as clk_will_be_available(clk)?  Other platforms have
 265 * the very same problem (but not using at91 main_clk), and it'd be better
 266 * to add one generic API rather than lots of platform-specific ones.
 267 */
 268int at91_suspend_entering_slow_clock(void)
 269{
 270	return (soc_pm.data.mode >= AT91_PM_ULP0);
 271}
 272EXPORT_SYMBOL(at91_suspend_entering_slow_clock);
 273
 274static void (*at91_suspend_sram_fn)(struct at91_pm_data *);
 275extern void at91_pm_suspend_in_sram(struct at91_pm_data *pm_data);
 276extern u32 at91_pm_suspend_in_sram_sz;
 277
 278static int at91_suspend_finish(unsigned long val)
 279{
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 280	flush_cache_all();
 281	outer_disable();
 282
 283	at91_suspend_sram_fn(&soc_pm.data);
 284
 285	return 0;
 286}
 287
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 288static void at91_pm_suspend(suspend_state_t state)
 289{
 290	if (soc_pm.data.mode == AT91_PM_BACKUP) {
 291		pm_bu->suspended = 1;
 292
 293		cpu_suspend(0, at91_suspend_finish);
 294
 295		/* The SRAM is lost between suspend cycles */
 296		at91_suspend_sram_fn = fncpy(at91_suspend_sram_fn,
 297					     &at91_pm_suspend_in_sram,
 298					     at91_pm_suspend_in_sram_sz);
 299	} else {
 300		at91_suspend_finish(0);
 301	}
 302
 303	outer_resume();
 304}
 305
 306/*
 307 * STANDBY mode has *all* drivers suspended; ignores irqs not marked as 'wakeup'
 308 * event sources; and reduces DRAM power.  But otherwise it's identical to
 309 * PM_SUSPEND_ON: cpu idle, and nothing fancy done with main or cpu clocks.
 310 *
 311 * AT91_PM_ULP0 is like STANDBY plus slow clock mode, so drivers must
 312 * suspend more deeply, the master clock switches to the clk32k and turns off
 313 * the main oscillator
 314 *
 315 * AT91_PM_BACKUP turns off the whole SoC after placing the DDR in self refresh
 316 */
 317static int at91_pm_enter(suspend_state_t state)
 318{
 319#ifdef CONFIG_PINCTRL_AT91
 320	/*
 321	 * FIXME: this is needed to communicate between the pinctrl driver and
 322	 * the PM implementation in the machine. Possibly part of the PM
 323	 * implementation should be moved down into the pinctrl driver and get
 324	 * called as part of the generic suspend/resume path.
 325	 */
 326	at91_pinctrl_gpio_suspend();
 327#endif
 328
 329	switch (state) {
 330	case PM_SUSPEND_MEM:
 331	case PM_SUSPEND_STANDBY:
 332		/*
 333		 * Ensure that clocks are in a valid state.
 334		 */
 335		if (soc_pm.data.mode >= AT91_PM_ULP0 &&
 336		    !at91_pm_verify_clocks())
 337			goto error;
 338
 339		at91_pm_suspend(state);
 340
 341		break;
 342
 343	case PM_SUSPEND_ON:
 344		cpu_do_idle();
 345		break;
 346
 347	default:
 348		pr_debug("AT91: PM - bogus suspend state %d\n", state);
 349		goto error;
 350	}
 351
 352error:
 353#ifdef CONFIG_PINCTRL_AT91
 354	at91_pinctrl_gpio_resume();
 355#endif
 356	return 0;
 357}
 358
 359/*
 360 * Called right prior to thawing processes.
 361 */
 362static void at91_pm_end(void)
 363{
 364	at91_pm_config_ws(soc_pm.data.mode, false);
 365}
 366
 367
 368static const struct platform_suspend_ops at91_pm_ops = {
 369	.valid	= at91_pm_valid_state,
 370	.begin	= at91_pm_begin,
 371	.enter	= at91_pm_enter,
 372	.end	= at91_pm_end,
 373};
 374
 375static struct platform_device at91_cpuidle_device = {
 376	.name = "cpuidle-at91",
 377};
 378
 379/*
 380 * The AT91RM9200 goes into self-refresh mode with this command, and will
 381 * terminate self-refresh automatically on the next SDRAM access.
 382 *
 383 * Self-refresh mode is exited as soon as a memory access is made, but we don't
 384 * know for sure when that happens. However, we need to restore the low-power
 385 * mode if it was enabled before going idle. Restoring low-power mode while
 386 * still in self-refresh is "not recommended", but seems to work.
 387 */
 388static void at91rm9200_standby(void)
 389{
 390	asm volatile(
 391		"b    1f\n\t"
 392		".align    5\n\t"
 393		"1:  mcr    p15, 0, %0, c7, c10, 4\n\t"
 394		"    str    %2, [%1, %3]\n\t"
 395		"    mcr    p15, 0, %0, c7, c0, 4\n\t"
 396		:
 397		: "r" (0), "r" (soc_pm.data.ramc[0]),
 398		  "r" (1), "r" (AT91_MC_SDRAMC_SRR));
 399}
 400
 401/* We manage both DDRAM/SDRAM controllers, we need more than one value to
 402 * remember.
 403 */
 404static void at91_ddr_standby(void)
 405{
 406	/* Those two values allow us to delay self-refresh activation
 407	 * to the maximum. */
 408	u32 lpr0, lpr1 = 0;
 409	u32 mdr, saved_mdr0, saved_mdr1 = 0;
 410	u32 saved_lpr0, saved_lpr1 = 0;
 411
 412	/* LPDDR1 --> force DDR2 mode during self-refresh */
 413	saved_mdr0 = at91_ramc_read(0, AT91_DDRSDRC_MDR);
 414	if ((saved_mdr0 & AT91_DDRSDRC_MD) == AT91_DDRSDRC_MD_LOW_POWER_DDR) {
 415		mdr = saved_mdr0 & ~AT91_DDRSDRC_MD;
 416		mdr |= AT91_DDRSDRC_MD_DDR2;
 417		at91_ramc_write(0, AT91_DDRSDRC_MDR, mdr);
 418	}
 419
 420	if (soc_pm.data.ramc[1]) {
 421		saved_lpr1 = at91_ramc_read(1, AT91_DDRSDRC_LPR);
 422		lpr1 = saved_lpr1 & ~AT91_DDRSDRC_LPCB;
 423		lpr1 |= AT91_DDRSDRC_LPCB_SELF_REFRESH;
 424		saved_mdr1 = at91_ramc_read(1, AT91_DDRSDRC_MDR);
 425		if ((saved_mdr1 & AT91_DDRSDRC_MD) == AT91_DDRSDRC_MD_LOW_POWER_DDR) {
 426			mdr = saved_mdr1 & ~AT91_DDRSDRC_MD;
 427			mdr |= AT91_DDRSDRC_MD_DDR2;
 428			at91_ramc_write(1, AT91_DDRSDRC_MDR, mdr);
 429		}
 430	}
 431
 432	saved_lpr0 = at91_ramc_read(0, AT91_DDRSDRC_LPR);
 433	lpr0 = saved_lpr0 & ~AT91_DDRSDRC_LPCB;
 434	lpr0 |= AT91_DDRSDRC_LPCB_SELF_REFRESH;
 435
 436	/* self-refresh mode now */
 437	at91_ramc_write(0, AT91_DDRSDRC_LPR, lpr0);
 438	if (soc_pm.data.ramc[1])
 439		at91_ramc_write(1, AT91_DDRSDRC_LPR, lpr1);
 440
 441	cpu_do_idle();
 442
 443	at91_ramc_write(0, AT91_DDRSDRC_MDR, saved_mdr0);
 444	at91_ramc_write(0, AT91_DDRSDRC_LPR, saved_lpr0);
 445	if (soc_pm.data.ramc[1]) {
 446		at91_ramc_write(0, AT91_DDRSDRC_MDR, saved_mdr1);
 447		at91_ramc_write(1, AT91_DDRSDRC_LPR, saved_lpr1);
 448	}
 449}
 450
 451static void sama5d3_ddr_standby(void)
 452{
 453	u32 lpr0;
 454	u32 saved_lpr0;
 455
 456	saved_lpr0 = at91_ramc_read(0, AT91_DDRSDRC_LPR);
 457	lpr0 = saved_lpr0 & ~AT91_DDRSDRC_LPCB;
 458	lpr0 |= AT91_DDRSDRC_LPCB_POWER_DOWN;
 459
 460	at91_ramc_write(0, AT91_DDRSDRC_LPR, lpr0);
 461
 462	cpu_do_idle();
 463
 464	at91_ramc_write(0, AT91_DDRSDRC_LPR, saved_lpr0);
 465}
 466
 467/* We manage both DDRAM/SDRAM controllers, we need more than one value to
 468 * remember.
 469 */
 470static void at91sam9_sdram_standby(void)
 471{
 472	u32 lpr0, lpr1 = 0;
 473	u32 saved_lpr0, saved_lpr1 = 0;
 474
 475	if (soc_pm.data.ramc[1]) {
 476		saved_lpr1 = at91_ramc_read(1, AT91_SDRAMC_LPR);
 477		lpr1 = saved_lpr1 & ~AT91_SDRAMC_LPCB;
 478		lpr1 |= AT91_SDRAMC_LPCB_SELF_REFRESH;
 479	}
 480
 481	saved_lpr0 = at91_ramc_read(0, AT91_SDRAMC_LPR);
 482	lpr0 = saved_lpr0 & ~AT91_SDRAMC_LPCB;
 483	lpr0 |= AT91_SDRAMC_LPCB_SELF_REFRESH;
 484
 485	/* self-refresh mode now */
 486	at91_ramc_write(0, AT91_SDRAMC_LPR, lpr0);
 487	if (soc_pm.data.ramc[1])
 488		at91_ramc_write(1, AT91_SDRAMC_LPR, lpr1);
 489
 490	cpu_do_idle();
 491
 492	at91_ramc_write(0, AT91_SDRAMC_LPR, saved_lpr0);
 493	if (soc_pm.data.ramc[1])
 494		at91_ramc_write(1, AT91_SDRAMC_LPR, saved_lpr1);
 495}
 496
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 497struct ramc_info {
 498	void (*idle)(void);
 499	unsigned int memctrl;
 500};
 501
 502static const struct ramc_info ramc_infos[] __initconst = {
 503	{ .idle = at91rm9200_standby, .memctrl = AT91_MEMCTRL_MC},
 504	{ .idle = at91sam9_sdram_standby, .memctrl = AT91_MEMCTRL_SDRAMC},
 505	{ .idle = at91_ddr_standby, .memctrl = AT91_MEMCTRL_DDRSDR},
 506	{ .idle = sama5d3_ddr_standby, .memctrl = AT91_MEMCTRL_DDRSDR},
 
 507};
 508
 509static const struct of_device_id ramc_ids[] __initconst = {
 510	{ .compatible = "atmel,at91rm9200-sdramc", .data = &ramc_infos[0] },
 511	{ .compatible = "atmel,at91sam9260-sdramc", .data = &ramc_infos[1] },
 512	{ .compatible = "atmel,at91sam9g45-ddramc", .data = &ramc_infos[2] },
 513	{ .compatible = "atmel,sama5d3-ddramc", .data = &ramc_infos[3] },
 
 514	{ /*sentinel*/ }
 515};
 516
 517static __init int at91_dt_ramc(void)
 
 
 
 
 
 518{
 519	struct device_node *np;
 520	const struct of_device_id *of_id;
 521	int idx = 0;
 522	void *standby = NULL;
 523	const struct ramc_info *ramc;
 524	int ret;
 525
 526	for_each_matching_node_and_match(np, ramc_ids, &of_id) {
 527		soc_pm.data.ramc[idx] = of_iomap(np, 0);
 528		if (!soc_pm.data.ramc[idx]) {
 529			pr_err("unable to map ramc[%d] cpu registers\n", idx);
 530			ret = -ENOMEM;
 
 531			goto unmap_ramc;
 532		}
 533
 534		ramc = of_id->data;
 535		if (!standby)
 536			standby = ramc->idle;
 537		soc_pm.data.memctrl = ramc->memctrl;
 
 
 538
 539		idx++;
 540	}
 541
 542	if (!idx) {
 543		pr_err("unable to find compatible ram controller node in dtb\n");
 544		ret = -ENODEV;
 545		goto unmap_ramc;
 546	}
 547
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 548	if (!standby) {
 549		pr_warn("ramc no standby function available\n");
 550		return 0;
 551	}
 552
 553	at91_cpuidle_device.dev.platform_data = standby;
 554
 555	return 0;
 556
 557unmap_ramc:
 558	while (idx)
 559		iounmap(soc_pm.data.ramc[--idx]);
 560
 561	return ret;
 562}
 563
 564static void at91rm9200_idle(void)
 565{
 566	/*
 567	 * Disable the processor clock.  The processor will be automatically
 568	 * re-enabled by an interrupt or by a reset.
 569	 */
 570	writel(AT91_PMC_PCK, soc_pm.data.pmc + AT91_PMC_SCDR);
 571}
 572
 573static void at91sam9_idle(void)
 574{
 575	writel(AT91_PMC_PCK, soc_pm.data.pmc + AT91_PMC_SCDR);
 576	cpu_do_idle();
 577}
 578
 579static void __init at91_pm_sram_init(void)
 580{
 581	struct gen_pool *sram_pool;
 582	phys_addr_t sram_pbase;
 583	unsigned long sram_base;
 584	struct device_node *node;
 585	struct platform_device *pdev = NULL;
 586
 587	for_each_compatible_node(node, NULL, "mmio-sram") {
 588		pdev = of_find_device_by_node(node);
 589		if (pdev) {
 590			of_node_put(node);
 591			break;
 592		}
 593	}
 594
 595	if (!pdev) {
 596		pr_warn("%s: failed to find sram device!\n", __func__);
 597		return;
 598	}
 599
 600	sram_pool = gen_pool_get(&pdev->dev, NULL);
 601	if (!sram_pool) {
 602		pr_warn("%s: sram pool unavailable!\n", __func__);
 603		goto out_put_device;
 604	}
 605
 606	sram_base = gen_pool_alloc(sram_pool, at91_pm_suspend_in_sram_sz);
 607	if (!sram_base) {
 608		pr_warn("%s: unable to alloc sram!\n", __func__);
 609		goto out_put_device;
 610	}
 611
 612	sram_pbase = gen_pool_virt_to_phys(sram_pool, sram_base);
 613	at91_suspend_sram_fn = __arm_ioremap_exec(sram_pbase,
 614					at91_pm_suspend_in_sram_sz, false);
 615	if (!at91_suspend_sram_fn) {
 616		pr_warn("SRAM: Could not map\n");
 617		goto out_put_device;
 618	}
 619
 620	/* Copy the pm suspend handler to SRAM */
 621	at91_suspend_sram_fn = fncpy(at91_suspend_sram_fn,
 622			&at91_pm_suspend_in_sram, at91_pm_suspend_in_sram_sz);
 623	return;
 624
 625out_put_device:
 626	put_device(&pdev->dev);
 627	return;
 628}
 629
 630static bool __init at91_is_pm_mode_active(int pm_mode)
 631{
 632	return (soc_pm.data.standby_mode == pm_mode ||
 633		soc_pm.data.suspend_mode == pm_mode);
 634}
 635
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 636static int __init at91_pm_backup_init(void)
 637{
 638	struct gen_pool *sram_pool;
 639	struct device_node *np;
 640	struct platform_device *pdev = NULL;
 641	int ret = -ENODEV;
 642
 643	if (!IS_ENABLED(CONFIG_SOC_SAMA5D2))
 
 644		return -EPERM;
 645
 646	if (!at91_is_pm_mode_active(AT91_PM_BACKUP))
 647		return 0;
 648
 649	np = of_find_compatible_node(NULL, NULL, "atmel,sama5d2-sfrbu");
 650	if (!np) {
 651		pr_warn("%s: failed to find sfrbu!\n", __func__);
 652		return ret;
 653	}
 654
 655	soc_pm.data.sfrbu = of_iomap(np, 0);
 656	of_node_put(np);
 657
 658	np = of_find_compatible_node(NULL, NULL, "atmel,sama5d2-securam");
 659	if (!np)
 660		goto securam_fail_no_ref_dev;
 661
 662	pdev = of_find_device_by_node(np);
 663	of_node_put(np);
 664	if (!pdev) {
 665		pr_warn("%s: failed to find securam device!\n", __func__);
 666		goto securam_fail_no_ref_dev;
 667	}
 668
 669	sram_pool = gen_pool_get(&pdev->dev, NULL);
 670	if (!sram_pool) {
 671		pr_warn("%s: securam pool unavailable!\n", __func__);
 672		goto securam_fail;
 673	}
 674
 675	pm_bu = (void *)gen_pool_alloc(sram_pool, sizeof(struct at91_pm_bu));
 676	if (!pm_bu) {
 677		pr_warn("%s: unable to alloc securam!\n", __func__);
 678		ret = -ENOMEM;
 679		goto securam_fail;
 680	}
 681
 682	pm_bu->suspended = 0;
 683	pm_bu->canary = __pa_symbol(&canary);
 684	pm_bu->resume = __pa_symbol(cpu_resume);
 
 
 
 
 
 685
 686	return 0;
 687
 688securam_fail:
 689	put_device(&pdev->dev);
 690securam_fail_no_ref_dev:
 691	iounmap(soc_pm.data.sfrbu);
 692	soc_pm.data.sfrbu = NULL;
 693	return ret;
 694}
 695
 696static void __init at91_pm_use_default_mode(int pm_mode)
 697{
 698	if (pm_mode != AT91_PM_ULP1 && pm_mode != AT91_PM_BACKUP)
 
 
 
 
 
 
 
 
 
 
 699		return;
 
 700
 701	if (soc_pm.data.standby_mode == pm_mode)
 702		soc_pm.data.standby_mode = AT91_PM_ULP0;
 703	if (soc_pm.data.suspend_mode == pm_mode)
 704		soc_pm.data.suspend_mode = AT91_PM_ULP0;
 705}
 706
 
 
 
 
 
 
 
 
 
 
 
 
 
 707static const struct of_device_id atmel_shdwc_ids[] = {
 708	{ .compatible = "atmel,sama5d2-shdwc" },
 709	{ .compatible = "microchip,sam9x60-shdwc" },
 
 710	{ /* sentinel. */ }
 711};
 712
 713static void __init at91_pm_modes_init(void)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 714{
 
 
 715	struct device_node *np;
 716	int ret;
 717
 718	if (!at91_is_pm_mode_active(AT91_PM_BACKUP) &&
 719	    !at91_is_pm_mode_active(AT91_PM_ULP1))
 720		return;
 
 
 
 
 721
 722	np = of_find_matching_node(NULL, atmel_shdwc_ids);
 723	if (!np) {
 724		pr_warn("%s: failed to find shdwc!\n", __func__);
 725		goto ulp1_default;
 
 
 
 
 
 
 726	}
 727
 728	soc_pm.data.shdwc = of_iomap(np, 0);
 729	of_node_put(np);
 
 
 
 
 
 
 
 
 
 730
 731	ret = at91_pm_backup_init();
 732	if (ret) {
 733		if (!at91_is_pm_mode_active(AT91_PM_ULP1))
 734			goto unmap;
 735		else
 736			goto backup_default;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 737	}
 738
 739	return;
 
 
 
 
 
 
 
 740
 741unmap:
 742	iounmap(soc_pm.data.shdwc);
 743	soc_pm.data.shdwc = NULL;
 744ulp1_default:
 745	at91_pm_use_default_mode(AT91_PM_ULP1);
 746backup_default:
 747	at91_pm_use_default_mode(AT91_PM_BACKUP);
 
 748}
 749
 750struct pmc_info {
 751	unsigned long uhp_udp_mask;
 752	unsigned long mckr;
 753	unsigned long version;
 754};
 755
 756static const struct pmc_info pmc_infos[] __initconst = {
 757	{
 758		.uhp_udp_mask = AT91RM9200_PMC_UHP | AT91RM9200_PMC_UDP,
 759		.mckr = 0x30,
 760		.version = AT91_PMC_V1,
 761	},
 762
 763	{
 764		.uhp_udp_mask = AT91SAM926x_PMC_UHP | AT91SAM926x_PMC_UDP,
 765		.mckr = 0x30,
 766		.version = AT91_PMC_V1,
 767	},
 768	{
 769		.uhp_udp_mask = AT91SAM926x_PMC_UHP,
 770		.mckr = 0x30,
 771		.version = AT91_PMC_V1,
 772	},
 773	{	.uhp_udp_mask = 0,
 774		.mckr = 0x30,
 775		.version = AT91_PMC_V1,
 776	},
 777	{
 778		.uhp_udp_mask = AT91SAM926x_PMC_UHP | AT91SAM926x_PMC_UDP,
 779		.mckr = 0x28,
 780		.version = AT91_PMC_V2,
 781	},
 
 
 
 
 
 782};
 783
 784static const struct of_device_id atmel_pmc_ids[] __initconst = {
 785	{ .compatible = "atmel,at91rm9200-pmc", .data = &pmc_infos[0] },
 786	{ .compatible = "atmel,at91sam9260-pmc", .data = &pmc_infos[1] },
 787	{ .compatible = "atmel,at91sam9261-pmc", .data = &pmc_infos[1] },
 788	{ .compatible = "atmel,at91sam9263-pmc", .data = &pmc_infos[1] },
 789	{ .compatible = "atmel,at91sam9g45-pmc", .data = &pmc_infos[2] },
 790	{ .compatible = "atmel,at91sam9n12-pmc", .data = &pmc_infos[1] },
 791	{ .compatible = "atmel,at91sam9rl-pmc", .data = &pmc_infos[3] },
 792	{ .compatible = "atmel,at91sam9x5-pmc", .data = &pmc_infos[1] },
 793	{ .compatible = "atmel,sama5d3-pmc", .data = &pmc_infos[1] },
 794	{ .compatible = "atmel,sama5d4-pmc", .data = &pmc_infos[1] },
 795	{ .compatible = "atmel,sama5d2-pmc", .data = &pmc_infos[1] },
 796	{ .compatible = "microchip,sam9x60-pmc", .data = &pmc_infos[4] },
 
 797	{ /* sentinel */ },
 798};
 799
 800static void __init at91_pm_modes_validate(const int *modes, int len)
 801{
 802	u8 i, standby = 0, suspend = 0;
 803	int mode;
 804
 805	for (i = 0; i < len; i++) {
 806		if (standby && suspend)
 807			break;
 808
 809		if (modes[i] == soc_pm.data.standby_mode && !standby) {
 810			standby = 1;
 811			continue;
 812		}
 813
 814		if (modes[i] == soc_pm.data.suspend_mode && !suspend) {
 815			suspend = 1;
 816			continue;
 817		}
 818	}
 819
 820	if (!standby) {
 821		if (soc_pm.data.suspend_mode == AT91_PM_STANDBY)
 822			mode = AT91_PM_ULP0;
 823		else
 824			mode = AT91_PM_STANDBY;
 825
 826		pr_warn("AT91: PM: %s mode not supported! Using %s.\n",
 827			pm_modes[soc_pm.data.standby_mode].pattern,
 828			pm_modes[mode].pattern);
 829		soc_pm.data.standby_mode = mode;
 830	}
 831
 832	if (!suspend) {
 833		if (soc_pm.data.standby_mode == AT91_PM_ULP0)
 834			mode = AT91_PM_STANDBY;
 835		else
 836			mode = AT91_PM_ULP0;
 837
 838		pr_warn("AT91: PM: %s mode not supported! Using %s.\n",
 839			pm_modes[soc_pm.data.suspend_mode].pattern,
 840			pm_modes[mode].pattern);
 841		soc_pm.data.suspend_mode = mode;
 842	}
 843}
 844
 845static void __init at91_pm_init(void (*pm_idle)(void))
 846{
 847	struct device_node *pmc_np;
 848	const struct of_device_id *of_id;
 849	const struct pmc_info *pmc;
 850
 851	if (at91_cpuidle_device.dev.platform_data)
 852		platform_device_register(&at91_cpuidle_device);
 853
 854	pmc_np = of_find_matching_node_and_match(NULL, atmel_pmc_ids, &of_id);
 855	soc_pm.data.pmc = of_iomap(pmc_np, 0);
 856	of_node_put(pmc_np);
 857	if (!soc_pm.data.pmc) {
 858		pr_err("AT91: PM not supported, PMC not found\n");
 859		return;
 860	}
 861
 862	pmc = of_id->data;
 863	soc_pm.data.uhp_udp_mask = pmc->uhp_udp_mask;
 864	soc_pm.data.pmc_mckr_offset = pmc->mckr;
 865	soc_pm.data.pmc_version = pmc->version;
 866
 867	if (pm_idle)
 868		arm_pm_idle = pm_idle;
 869
 870	at91_pm_sram_init();
 871
 872	if (at91_suspend_sram_fn) {
 873		suspend_set_ops(&at91_pm_ops);
 874		pr_info("AT91: PM: standby: %s, suspend: %s\n",
 875			pm_modes[soc_pm.data.standby_mode].pattern,
 876			pm_modes[soc_pm.data.suspend_mode].pattern);
 877	} else {
 878		pr_info("AT91: PM not supported, due to no SRAM allocated\n");
 879	}
 880}
 881
 882void __init at91rm9200_pm_init(void)
 883{
 884	int ret;
 885
 886	if (!IS_ENABLED(CONFIG_SOC_AT91RM9200))
 887		return;
 888
 889	/*
 890	 * Force STANDBY and ULP0 mode to avoid calling
 891	 * at91_pm_modes_validate() which may increase booting time.
 892	 * Platform supports anyway only STANDBY and ULP0 modes.
 893	 */
 894	soc_pm.data.standby_mode = AT91_PM_STANDBY;
 895	soc_pm.data.suspend_mode = AT91_PM_ULP0;
 896
 897	ret = at91_dt_ramc();
 898	if (ret)
 899		return;
 900
 901	/*
 902	 * AT91RM9200 SDRAM low-power mode cannot be used with self-refresh.
 903	 */
 904	at91_ramc_write(0, AT91_MC_SDRAMC_LPR, 0);
 905
 906	at91_pm_init(at91rm9200_idle);
 907}
 908
 909void __init sam9x60_pm_init(void)
 910{
 911	static const int modes[] __initconst = {
 912		AT91_PM_STANDBY, AT91_PM_ULP0, AT91_PM_ULP0_FAST, AT91_PM_ULP1,
 913	};
 
 
 
 914	int ret;
 915
 916	if (!IS_ENABLED(CONFIG_SOC_SAM9X60))
 917		return;
 918
 919	at91_pm_modes_validate(modes, ARRAY_SIZE(modes));
 920	at91_pm_modes_init();
 921	ret = at91_dt_ramc();
 922	if (ret)
 923		return;
 924
 925	at91_pm_init(NULL);
 926
 927	soc_pm.ws_ids = sam9x60_ws_ids;
 928	soc_pm.config_pmc_ws = at91_sam9x60_config_pmc_ws;
 929}
 930
 931void __init at91sam9_pm_init(void)
 932{
 933	int ret;
 934
 935	if (!IS_ENABLED(CONFIG_SOC_AT91SAM9))
 936		return;
 937
 938	/*
 939	 * Force STANDBY and ULP0 mode to avoid calling
 940	 * at91_pm_modes_validate() which may increase booting time.
 941	 * Platform supports anyway only STANDBY and ULP0 modes.
 942	 */
 943	soc_pm.data.standby_mode = AT91_PM_STANDBY;
 944	soc_pm.data.suspend_mode = AT91_PM_ULP0;
 945
 946	ret = at91_dt_ramc();
 947	if (ret)
 948		return;
 949
 950	at91_pm_init(at91sam9_idle);
 951}
 952
 953void __init sama5_pm_init(void)
 954{
 955	static const int modes[] __initconst = {
 956		AT91_PM_STANDBY, AT91_PM_ULP0, AT91_PM_ULP0_FAST,
 957	};
 
 
 
 
 958	int ret;
 959
 960	if (!IS_ENABLED(CONFIG_SOC_SAMA5))
 961		return;
 962
 963	at91_pm_modes_validate(modes, ARRAY_SIZE(modes));
 964	ret = at91_dt_ramc();
 
 965	if (ret)
 966		return;
 967
 968	at91_pm_init(NULL);
 
 
 
 
 
 
 
 
 969}
 970
 971void __init sama5d2_pm_init(void)
 972{
 973	static const int modes[] __initconst = {
 974		AT91_PM_STANDBY, AT91_PM_ULP0, AT91_PM_ULP0_FAST, AT91_PM_ULP1,
 975		AT91_PM_BACKUP,
 976	};
 
 
 
 
 
 
 
 
 977	int ret;
 978
 979	if (!IS_ENABLED(CONFIG_SOC_SAMA5D2))
 980		return;
 981
 
 
 
 
 
 
 982	at91_pm_modes_validate(modes, ARRAY_SIZE(modes));
 983	at91_pm_modes_init();
 984	ret = at91_dt_ramc();
 985	if (ret)
 986		return;
 987
 988	at91_pm_init(NULL);
 989
 990	soc_pm.ws_ids = sama5d2_ws_ids;
 991	soc_pm.config_shdwc_ws = at91_sama5d2_config_shdwc_ws;
 992	soc_pm.config_pmc_ws = at91_sama5d2_config_pmc_ws;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 993}
 994
 995static int __init at91_pm_modes_select(char *str)
 996{
 997	char *s;
 998	substring_t args[MAX_OPT_ARGS];
 999	int standby, suspend;
1000
1001	if (!str)
1002		return 0;
1003
1004	s = strsep(&str, ",");
1005	standby = match_token(s, pm_modes, args);
1006	if (standby < 0)
1007		return 0;
1008
1009	suspend = match_token(str, pm_modes, args);
1010	if (suspend < 0)
1011		return 0;
1012
1013	soc_pm.data.standby_mode = standby;
1014	soc_pm.data.suspend_mode = suspend;
1015
1016	return 0;
1017}
1018early_param("atmel.pm_modes", at91_pm_modes_select);
v6.8
   1// SPDX-License-Identifier: GPL-2.0-or-later
   2/*
   3 * arch/arm/mach-at91/pm.c
   4 * AT91 Power Management
   5 *
   6 * Copyright (C) 2005 David Brownell
   7 */
   8
   9#include <linux/genalloc.h>
  10#include <linux/io.h>
  11#include <linux/of_address.h>
  12#include <linux/of.h>
  13#include <linux/of_fdt.h>
  14#include <linux/of_platform.h>
  15#include <linux/platform_device.h>
  16#include <linux/parser.h>
  17#include <linux/suspend.h>
  18
  19#include <linux/clk.h>
  20#include <linux/clk/at91_pmc.h>
  21#include <linux/platform_data/atmel.h>
  22
 
 
  23#include <asm/cacheflush.h>
  24#include <asm/fncpy.h>
  25#include <asm/system_misc.h>
  26#include <asm/suspend.h>
  27
  28#include "generic.h"
  29#include "pm.h"
  30#include "sam_secure.h"
  31
  32#define BACKUP_DDR_PHY_CALIBRATION	(9)
  33
  34/**
  35 * struct at91_pm_bu - AT91 power management backup unit data structure
  36 * @suspended: true if suspended to backup mode
  37 * @reserved: reserved
  38 * @canary: canary data for memory checking after exit from backup mode
  39 * @resume: resume API
  40 * @ddr_phy_calibration: DDR PHY calibration data: ZQ0CR0, first 8 words
  41 * of the memory
  42 */
  43struct at91_pm_bu {
  44	int suspended;
  45	unsigned long reserved;
  46	phys_addr_t canary;
  47	phys_addr_t resume;
  48	unsigned long ddr_phy_calibration[BACKUP_DDR_PHY_CALIBRATION];
  49};
  50
  51/**
  52 * struct at91_pm_sfrbu_regs - registers mapping for SFRBU
  53 * @pswbu: power switch BU control registers
  54 */
  55struct at91_pm_sfrbu_regs {
  56	struct {
  57		u32 key;
  58		u32 ctrl;
  59		u32 state;
  60		u32 softsw;
  61	} pswbu;
  62};
  63
  64/**
  65 * enum at91_pm_eth_clk - Ethernet clock indexes
  66 * @AT91_PM_ETH_PCLK: pclk index
  67 * @AT91_PM_ETH_HCLK: hclk index
  68 * @AT91_PM_ETH_MAX_CLK: max index
  69 */
  70enum at91_pm_eth_clk {
  71	AT91_PM_ETH_PCLK,
  72	AT91_PM_ETH_HCLK,
  73	AT91_PM_ETH_MAX_CLK,
  74};
  75
  76/**
  77 * enum at91_pm_eth - Ethernet controller indexes
  78 * @AT91_PM_G_ETH: gigabit Ethernet controller index
  79 * @AT91_PM_E_ETH: megabit Ethernet controller index
  80 * @AT91_PM_MAX_ETH: max index
  81 */
  82enum at91_pm_eth {
  83	AT91_PM_G_ETH,
  84	AT91_PM_E_ETH,
  85	AT91_PM_MAX_ETH,
  86};
  87
  88/**
  89 * struct at91_pm_quirk_eth - AT91 PM Ethernet quirks
  90 * @dev: Ethernet device
  91 * @np: Ethernet device node
  92 * @clks: Ethernet clocks
  93 * @modes: power management mode that this quirk applies to
  94 * @dns_modes: do not suspend modes: stop suspending if Ethernet is configured
  95 *	       as wakeup source but buggy and no other wakeup source is
  96 *	       available
  97 */
  98struct at91_pm_quirk_eth {
  99	struct device *dev;
 100	struct device_node *np;
 101	struct clk_bulk_data clks[AT91_PM_ETH_MAX_CLK];
 102	u32 modes;
 103	u32 dns_modes;
 104};
 105
 106/**
 107 * struct at91_pm_quirks - AT91 PM quirks
 108 * @eth: Ethernet quirks
 109 */
 110struct at91_pm_quirks {
 111	struct at91_pm_quirk_eth eth[AT91_PM_MAX_ETH];
 112};
 113
 114/**
 115 * struct at91_soc_pm - AT91 SoC power management data structure
 116 * @config_shdwc_ws: wakeup sources configuration function for SHDWC
 117 * @config_pmc_ws: wakeup srouces configuration function for PMC
 118 * @ws_ids: wakup sources of_device_id array
 119 * @bu: backup unit mapped data (for backup mode)
 120 * @quirks: PM quirks
 121 * @data: PM data to be used on last phase of suspend
 122 * @sfrbu_regs: SFRBU registers mapping
 123 * @memcs: memory chip select
 124 */
 125struct at91_soc_pm {
 126	int (*config_shdwc_ws)(void __iomem *shdwc, u32 *mode, u32 *polarity);
 127	int (*config_pmc_ws)(void __iomem *pmc, u32 mode, u32 polarity);
 128	const struct of_device_id *ws_ids;
 129	struct at91_pm_bu *bu;
 130	struct at91_pm_quirks quirks;
 131	struct at91_pm_data data;
 132	struct at91_pm_sfrbu_regs sfrbu_regs;
 133	void *memcs;
 134};
 135
 136/**
 137 * enum at91_pm_iomaps - IOs that needs to be mapped for different PM modes
 138 * @AT91_PM_IOMAP_SHDWC:	SHDWC controller
 139 * @AT91_PM_IOMAP_SFRBU:	SFRBU controller
 140 * @AT91_PM_IOMAP_ETHC:		Ethernet controller
 141 */
 142enum at91_pm_iomaps {
 143	AT91_PM_IOMAP_SHDWC,
 144	AT91_PM_IOMAP_SFRBU,
 145	AT91_PM_IOMAP_ETHC,
 146};
 147
 148#define AT91_PM_IOMAP(name)	BIT(AT91_PM_IOMAP_##name)
 149
 150static struct at91_soc_pm soc_pm = {
 151	.data = {
 152		.standby_mode = AT91_PM_STANDBY,
 153		.suspend_mode = AT91_PM_ULP0,
 154	},
 155};
 156
 157static const match_table_t pm_modes __initconst = {
 158	{ AT91_PM_STANDBY,	"standby" },
 159	{ AT91_PM_ULP0,		"ulp0" },
 160	{ AT91_PM_ULP0_FAST,    "ulp0-fast" },
 161	{ AT91_PM_ULP1,		"ulp1" },
 162	{ AT91_PM_BACKUP,	"backup" },
 163	{ -1, NULL },
 164};
 165
 166#define at91_ramc_read(id, field) \
 167	__raw_readl(soc_pm.data.ramc[id] + field)
 168
 169#define at91_ramc_write(id, field, value) \
 170	__raw_writel(value, soc_pm.data.ramc[id] + field)
 171
 172static int at91_pm_valid_state(suspend_state_t state)
 173{
 174	switch (state) {
 175		case PM_SUSPEND_ON:
 176		case PM_SUSPEND_STANDBY:
 177		case PM_SUSPEND_MEM:
 178			return 1;
 179
 180		default:
 181			return 0;
 182	}
 183}
 184
 185static int canary = 0xA5A5A5A5;
 186
 
 
 
 
 
 
 
 187struct wakeup_source_info {
 188	unsigned int pmc_fsmr_bit;
 189	unsigned int shdwc_mr_bit;
 190	bool set_polarity;
 191};
 192
 193static const struct wakeup_source_info ws_info[] = {
 194	{ .pmc_fsmr_bit = AT91_PMC_FSTT(10),	.set_polarity = true },
 195	{ .pmc_fsmr_bit = AT91_PMC_RTCAL,	.shdwc_mr_bit = BIT(17) },
 196	{ .pmc_fsmr_bit = AT91_PMC_USBAL },
 197	{ .pmc_fsmr_bit = AT91_PMC_SDMMC_CD },
 198	{ .pmc_fsmr_bit = AT91_PMC_RTTAL },
 199	{ .pmc_fsmr_bit = AT91_PMC_RXLP_MCE },
 200};
 201
 202static const struct of_device_id sama5d2_ws_ids[] = {
 203	{ .compatible = "atmel,sama5d2-gem",		.data = &ws_info[0] },
 204	{ .compatible = "atmel,sama5d2-rtc",		.data = &ws_info[1] },
 205	{ .compatible = "atmel,sama5d3-udc",		.data = &ws_info[2] },
 206	{ .compatible = "atmel,at91rm9200-ohci",	.data = &ws_info[2] },
 207	{ .compatible = "usb-ohci",			.data = &ws_info[2] },
 208	{ .compatible = "atmel,at91sam9g45-ehci",	.data = &ws_info[2] },
 209	{ .compatible = "usb-ehci",			.data = &ws_info[2] },
 210	{ .compatible = "atmel,sama5d2-sdhci",		.data = &ws_info[3] },
 211	{ /* sentinel */ }
 212};
 213
 214static const struct of_device_id sam9x60_ws_ids[] = {
 215	{ .compatible = "microchip,sam9x60-rtc",	.data = &ws_info[1] },
 216	{ .compatible = "atmel,at91rm9200-ohci",	.data = &ws_info[2] },
 217	{ .compatible = "usb-ohci",			.data = &ws_info[2] },
 218	{ .compatible = "atmel,at91sam9g45-ehci",	.data = &ws_info[2] },
 219	{ .compatible = "usb-ehci",			.data = &ws_info[2] },
 220	{ .compatible = "microchip,sam9x60-rtt",	.data = &ws_info[4] },
 221	{ .compatible = "cdns,sam9x60-macb",		.data = &ws_info[5] },
 222	{ /* sentinel */ }
 223};
 224
 225static const struct of_device_id sama7g5_ws_ids[] = {
 226	{ .compatible = "microchip,sama7g5-rtc",	.data = &ws_info[1] },
 227	{ .compatible = "microchip,sama7g5-ohci",	.data = &ws_info[2] },
 228	{ .compatible = "usb-ohci",			.data = &ws_info[2] },
 229	{ .compatible = "atmel,at91sam9g45-ehci",	.data = &ws_info[2] },
 230	{ .compatible = "usb-ehci",			.data = &ws_info[2] },
 231	{ .compatible = "microchip,sama7g5-sdhci",	.data = &ws_info[3] },
 232	{ .compatible = "microchip,sama7g5-rtt",	.data = &ws_info[4] },
 233	{ /* sentinel */ }
 234};
 235
 236static int at91_pm_config_ws(unsigned int pm_mode, bool set)
 237{
 238	const struct wakeup_source_info *wsi;
 239	const struct of_device_id *match;
 240	struct platform_device *pdev;
 241	struct device_node *np;
 242	unsigned int mode = 0, polarity = 0, val = 0;
 243
 244	if (pm_mode != AT91_PM_ULP1)
 245		return 0;
 246
 247	if (!soc_pm.data.pmc || !soc_pm.data.shdwc || !soc_pm.ws_ids)
 248		return -EPERM;
 249
 250	if (!set) {
 251		writel(mode, soc_pm.data.pmc + AT91_PMC_FSMR);
 252		return 0;
 253	}
 254
 255	if (soc_pm.config_shdwc_ws)
 256		soc_pm.config_shdwc_ws(soc_pm.data.shdwc, &mode, &polarity);
 257
 258	/* SHDWC.MR */
 259	val = readl(soc_pm.data.shdwc + 0x04);
 260
 261	/* Loop through defined wakeup sources. */
 262	for_each_matching_node_and_match(np, soc_pm.ws_ids, &match) {
 263		pdev = of_find_device_by_node(np);
 264		if (!pdev)
 265			continue;
 266
 267		if (device_may_wakeup(&pdev->dev)) {
 268			wsi = match->data;
 269
 270			/* Check if enabled on SHDWC. */
 271			if (wsi->shdwc_mr_bit && !(val & wsi->shdwc_mr_bit))
 272				goto put_device;
 273
 274			mode |= wsi->pmc_fsmr_bit;
 275			if (wsi->set_polarity)
 276				polarity |= wsi->pmc_fsmr_bit;
 277		}
 278
 279put_device:
 280		put_device(&pdev->dev);
 281	}
 282
 283	if (mode) {
 284		if (soc_pm.config_pmc_ws)
 285			soc_pm.config_pmc_ws(soc_pm.data.pmc, mode, polarity);
 286	} else {
 287		pr_err("AT91: PM: no ULP1 wakeup sources found!");
 288	}
 289
 290	return mode ? 0 : -EPERM;
 291}
 292
 293static int at91_sama5d2_config_shdwc_ws(void __iomem *shdwc, u32 *mode,
 294					u32 *polarity)
 295{
 296	u32 val;
 297
 298	/* SHDWC.WUIR */
 299	val = readl(shdwc + 0x0c);
 300	*mode |= (val & 0x3ff);
 301	*polarity |= ((val >> 16) & 0x3ff);
 302
 303	return 0;
 304}
 305
 306static int at91_sama5d2_config_pmc_ws(void __iomem *pmc, u32 mode, u32 polarity)
 307{
 308	writel(mode, pmc + AT91_PMC_FSMR);
 309	writel(polarity, pmc + AT91_PMC_FSPR);
 310
 311	return 0;
 312}
 313
 314static int at91_sam9x60_config_pmc_ws(void __iomem *pmc, u32 mode, u32 polarity)
 315{
 316	writel(mode, pmc + AT91_PMC_FSMR);
 317
 318	return 0;
 319}
 320
 321static bool at91_pm_eth_quirk_is_valid(struct at91_pm_quirk_eth *eth)
 322{
 323	struct platform_device *pdev;
 324
 325	/* Interface NA in DT. */
 326	if (!eth->np)
 327		return false;
 328
 329	/* No quirks for this interface and current suspend mode. */
 330	if (!(eth->modes & BIT(soc_pm.data.mode)))
 331		return false;
 332
 333	if (!eth->dev) {
 334		/* Driver not probed. */
 335		pdev = of_find_device_by_node(eth->np);
 336		if (!pdev)
 337			return false;
 338		/* put_device(eth->dev) is called at the end of suspend. */
 339		eth->dev = &pdev->dev;
 340	}
 341
 342	/* No quirks if device isn't a wakeup source. */
 343	if (!device_may_wakeup(eth->dev))
 344		return false;
 345
 346	return true;
 347}
 348
 349static int at91_pm_config_quirks(bool suspend)
 350{
 351	struct at91_pm_quirk_eth *eth;
 352	int i, j, ret, tmp;
 353
 354	/*
 355	 * Ethernet IPs who's device_node pointers are stored into
 356	 * soc_pm.quirks.eth[].np cannot handle WoL packets while in ULP0, ULP1
 357	 * or both due to a hardware bug. If they receive WoL packets while in
 358	 * ULP0 or ULP1 IPs could stop working or the whole system could stop
 359	 * working. We cannot handle this scenario in the ethernet driver itself
 360	 * as the driver is common to multiple vendors and also we only know
 361	 * here, in this file, if we suspend to ULP0 or ULP1 mode. Thus handle
 362	 * these scenarios here, as quirks.
 363	 */
 364	for (i = 0; i < AT91_PM_MAX_ETH; i++) {
 365		eth = &soc_pm.quirks.eth[i];
 366
 367		if (!at91_pm_eth_quirk_is_valid(eth))
 368			continue;
 369
 370		/*
 371		 * For modes in dns_modes mask the system blocks if quirk is not
 372		 * applied but if applied the interface doesn't act at WoL
 373		 * events. Thus take care to avoid suspending if this interface
 374		 * is the only configured wakeup source.
 375		 */
 376		if (suspend && eth->dns_modes & BIT(soc_pm.data.mode)) {
 377			int ws_count = 0;
 378#ifdef CONFIG_PM_SLEEP
 379			struct wakeup_source *ws;
 380
 381			for_each_wakeup_source(ws) {
 382				if (ws->dev == eth->dev)
 383					continue;
 384
 385				ws_count++;
 386				break;
 387			}
 388#endif
 389
 390			/*
 391			 * Checking !ws is good for all platforms with issues
 392			 * even when both G_ETH and E_ETH are available as dns_modes
 393			 * is populated only on G_ETH interface.
 394			 */
 395			if (!ws_count) {
 396				pr_err("AT91: PM: Ethernet cannot resume from WoL!");
 397				ret = -EPERM;
 398				put_device(eth->dev);
 399				eth->dev = NULL;
 400				/* No need to revert clock settings for this eth. */
 401				i--;
 402				goto clk_unconfigure;
 403			}
 404		}
 405
 406		if (suspend) {
 407			clk_bulk_disable_unprepare(AT91_PM_ETH_MAX_CLK, eth->clks);
 408		} else {
 409			ret = clk_bulk_prepare_enable(AT91_PM_ETH_MAX_CLK,
 410						      eth->clks);
 411			if (ret)
 412				goto clk_unconfigure;
 413			/*
 414			 * Release the reference to eth->dev taken in
 415			 * at91_pm_eth_quirk_is_valid().
 416			 */
 417			put_device(eth->dev);
 418			eth->dev = NULL;
 419		}
 420	}
 421
 422	return 0;
 423
 424clk_unconfigure:
 425	/*
 426	 * In case of resume we reach this point if clk_prepare_enable() failed.
 427	 * we don't want to revert the previous clk_prepare_enable() for the
 428	 * other IP.
 429	 */
 430	for (j = i; j >= 0; j--) {
 431		eth = &soc_pm.quirks.eth[j];
 432		if (suspend) {
 433			if (!at91_pm_eth_quirk_is_valid(eth))
 434				continue;
 435
 436			tmp = clk_bulk_prepare_enable(AT91_PM_ETH_MAX_CLK, eth->clks);
 437			if (tmp) {
 438				pr_err("AT91: PM: failed to enable %s clocks\n",
 439				       j == AT91_PM_G_ETH ? "geth" : "eth");
 440			}
 441		}
 442
 443		/*
 444		 * Release the reference to eth->dev taken in
 445		 * at91_pm_eth_quirk_is_valid().
 446		 */
 447		put_device(eth->dev);
 448		eth->dev = NULL;
 449	}
 450
 451	return ret;
 452}
 453
 454/*
 455 * Called after processes are frozen, but before we shutdown devices.
 456 */
 457static int at91_pm_begin(suspend_state_t state)
 458{
 459	int ret;
 460
 461	switch (state) {
 462	case PM_SUSPEND_MEM:
 463		soc_pm.data.mode = soc_pm.data.suspend_mode;
 464		break;
 465
 466	case PM_SUSPEND_STANDBY:
 467		soc_pm.data.mode = soc_pm.data.standby_mode;
 468		break;
 469
 470	default:
 471		soc_pm.data.mode = -1;
 472	}
 473
 474	ret = at91_pm_config_ws(soc_pm.data.mode, true);
 475	if (ret)
 476		return ret;
 477
 478	if (soc_pm.data.mode == AT91_PM_BACKUP)
 479		soc_pm.bu->suspended = 1;
 480	else if (soc_pm.bu)
 481		soc_pm.bu->suspended = 0;
 482
 483	return 0;
 484}
 485
 486/*
 487 * Verify that all the clocks are correct before entering
 488 * slow-clock mode.
 489 */
 490static int at91_pm_verify_clocks(void)
 491{
 492	unsigned long scsr;
 493	int i;
 494
 495	scsr = readl(soc_pm.data.pmc + AT91_PMC_SCSR);
 496
 497	/* USB must not be using PLLB */
 498	if ((scsr & soc_pm.data.uhp_udp_mask) != 0) {
 499		pr_err("AT91: PM - Suspend-to-RAM with USB still active\n");
 500		return 0;
 501	}
 502
 503	/* PCK0..PCK3 must be disabled, or configured to use clk32k */
 504	for (i = 0; i < 4; i++) {
 505		u32 css;
 506
 507		if ((scsr & (AT91_PMC_PCK0 << i)) == 0)
 508			continue;
 509		css = readl(soc_pm.data.pmc + AT91_PMC_PCKR(i)) & AT91_PMC_CSS;
 510		if (css != AT91_PMC_CSS_SLOW) {
 511			pr_err("AT91: PM - Suspend-to-RAM with PCK%d src %d\n", i, css);
 512			return 0;
 513		}
 514	}
 515
 516	return 1;
 517}
 518
 519/*
 520 * Call this from platform driver suspend() to see how deeply to suspend.
 521 * For example, some controllers (like OHCI) need one of the PLL clocks
 522 * in order to act as a wakeup source, and those are not available when
 523 * going into slow clock mode.
 524 *
 525 * REVISIT: generalize as clk_will_be_available(clk)?  Other platforms have
 526 * the very same problem (but not using at91 main_clk), and it'd be better
 527 * to add one generic API rather than lots of platform-specific ones.
 528 */
 529int at91_suspend_entering_slow_clock(void)
 530{
 531	return (soc_pm.data.mode >= AT91_PM_ULP0);
 532}
 533EXPORT_SYMBOL(at91_suspend_entering_slow_clock);
 534
 535static void (*at91_suspend_sram_fn)(struct at91_pm_data *);
 536extern void at91_pm_suspend_in_sram(struct at91_pm_data *pm_data);
 537extern u32 at91_pm_suspend_in_sram_sz;
 538
 539static int at91_suspend_finish(unsigned long val)
 540{
 541	unsigned char modified_gray_code[] = {
 542		0x00, 0x01, 0x02, 0x03, 0x06, 0x07, 0x04, 0x05, 0x0c, 0x0d,
 543		0x0e, 0x0f, 0x0a, 0x0b, 0x08, 0x09, 0x18, 0x19, 0x1a, 0x1b,
 544		0x1e, 0x1f, 0x1c, 0x1d, 0x14, 0x15, 0x16, 0x17, 0x12, 0x13,
 545		0x10, 0x11,
 546	};
 547	unsigned int tmp, index;
 548	int i;
 549
 550	if (soc_pm.data.mode == AT91_PM_BACKUP && soc_pm.data.ramc_phy) {
 551		/*
 552		 * Bootloader will perform DDR recalibration and will try to
 553		 * restore the ZQ0SR0 with the value saved here. But the
 554		 * calibration is buggy and restoring some values from ZQ0SR0
 555		 * is forbidden and risky thus we need to provide processed
 556		 * values for these (modified gray code values).
 557		 */
 558		tmp = readl(soc_pm.data.ramc_phy + DDR3PHY_ZQ0SR0);
 559
 560		/* Store pull-down output impedance select. */
 561		index = (tmp >> DDR3PHY_ZQ0SR0_PDO_OFF) & 0x1f;
 562		soc_pm.bu->ddr_phy_calibration[0] = modified_gray_code[index];
 563
 564		/* Store pull-up output impedance select. */
 565		index = (tmp >> DDR3PHY_ZQ0SR0_PUO_OFF) & 0x1f;
 566		soc_pm.bu->ddr_phy_calibration[0] |= modified_gray_code[index];
 567
 568		/* Store pull-down on-die termination impedance select. */
 569		index = (tmp >> DDR3PHY_ZQ0SR0_PDODT_OFF) & 0x1f;
 570		soc_pm.bu->ddr_phy_calibration[0] |= modified_gray_code[index];
 571
 572		/* Store pull-up on-die termination impedance select. */
 573		index = (tmp >> DDR3PHY_ZQ0SRO_PUODT_OFF) & 0x1f;
 574		soc_pm.bu->ddr_phy_calibration[0] |= modified_gray_code[index];
 575
 576		/*
 577		 * The 1st 8 words of memory might get corrupted in the process
 578		 * of DDR PHY recalibration; it is saved here in securam and it
 579		 * will be restored later, after recalibration, by bootloader
 580		 */
 581		for (i = 1; i < BACKUP_DDR_PHY_CALIBRATION; i++)
 582			soc_pm.bu->ddr_phy_calibration[i] =
 583				*((unsigned int *)soc_pm.memcs + (i - 1));
 584	}
 585
 586	flush_cache_all();
 587	outer_disable();
 588
 589	at91_suspend_sram_fn(&soc_pm.data);
 590
 591	return 0;
 592}
 593
 594static void at91_pm_switch_ba_to_vbat(void)
 595{
 596	unsigned int offset = offsetof(struct at91_pm_sfrbu_regs, pswbu);
 597	unsigned int val;
 598
 599	/* Just for safety. */
 600	if (!soc_pm.data.sfrbu)
 601		return;
 602
 603	val = readl(soc_pm.data.sfrbu + offset);
 604
 605	/* Already on VBAT. */
 606	if (!(val & soc_pm.sfrbu_regs.pswbu.state))
 607		return;
 608
 609	val &= ~soc_pm.sfrbu_regs.pswbu.softsw;
 610	val |= soc_pm.sfrbu_regs.pswbu.key | soc_pm.sfrbu_regs.pswbu.ctrl;
 611	writel(val, soc_pm.data.sfrbu + offset);
 612
 613	/* Wait for update. */
 614	val = readl(soc_pm.data.sfrbu + offset);
 615	while (val & soc_pm.sfrbu_regs.pswbu.state)
 616		val = readl(soc_pm.data.sfrbu + offset);
 617}
 618
 619static void at91_pm_suspend(suspend_state_t state)
 620{
 621	if (soc_pm.data.mode == AT91_PM_BACKUP) {
 622		at91_pm_switch_ba_to_vbat();
 623
 624		cpu_suspend(0, at91_suspend_finish);
 625
 626		/* The SRAM is lost between suspend cycles */
 627		at91_suspend_sram_fn = fncpy(at91_suspend_sram_fn,
 628					     &at91_pm_suspend_in_sram,
 629					     at91_pm_suspend_in_sram_sz);
 630	} else {
 631		at91_suspend_finish(0);
 632	}
 633
 634	outer_resume();
 635}
 636
 637/*
 638 * STANDBY mode has *all* drivers suspended; ignores irqs not marked as 'wakeup'
 639 * event sources; and reduces DRAM power.  But otherwise it's identical to
 640 * PM_SUSPEND_ON: cpu idle, and nothing fancy done with main or cpu clocks.
 641 *
 642 * AT91_PM_ULP0 is like STANDBY plus slow clock mode, so drivers must
 643 * suspend more deeply, the master clock switches to the clk32k and turns off
 644 * the main oscillator
 645 *
 646 * AT91_PM_BACKUP turns off the whole SoC after placing the DDR in self refresh
 647 */
 648static int at91_pm_enter(suspend_state_t state)
 649{
 650	int ret;
 651
 652	ret = at91_pm_config_quirks(true);
 653	if (ret)
 654		return ret;
 
 
 
 
 655
 656	switch (state) {
 657	case PM_SUSPEND_MEM:
 658	case PM_SUSPEND_STANDBY:
 659		/*
 660		 * Ensure that clocks are in a valid state.
 661		 */
 662		if (soc_pm.data.mode >= AT91_PM_ULP0 &&
 663		    !at91_pm_verify_clocks())
 664			goto error;
 665
 666		at91_pm_suspend(state);
 667
 668		break;
 669
 670	case PM_SUSPEND_ON:
 671		cpu_do_idle();
 672		break;
 673
 674	default:
 675		pr_debug("AT91: PM - bogus suspend state %d\n", state);
 676		goto error;
 677	}
 678
 679error:
 680	at91_pm_config_quirks(false);
 
 
 681	return 0;
 682}
 683
 684/*
 685 * Called right prior to thawing processes.
 686 */
 687static void at91_pm_end(void)
 688{
 689	at91_pm_config_ws(soc_pm.data.mode, false);
 690}
 691
 692
 693static const struct platform_suspend_ops at91_pm_ops = {
 694	.valid	= at91_pm_valid_state,
 695	.begin	= at91_pm_begin,
 696	.enter	= at91_pm_enter,
 697	.end	= at91_pm_end,
 698};
 699
 700static struct platform_device at91_cpuidle_device = {
 701	.name = "cpuidle-at91",
 702};
 703
 704/*
 705 * The AT91RM9200 goes into self-refresh mode with this command, and will
 706 * terminate self-refresh automatically on the next SDRAM access.
 707 *
 708 * Self-refresh mode is exited as soon as a memory access is made, but we don't
 709 * know for sure when that happens. However, we need to restore the low-power
 710 * mode if it was enabled before going idle. Restoring low-power mode while
 711 * still in self-refresh is "not recommended", but seems to work.
 712 */
 713static void at91rm9200_standby(void)
 714{
 715	asm volatile(
 716		"b    1f\n\t"
 717		".align    5\n\t"
 718		"1:  mcr    p15, 0, %0, c7, c10, 4\n\t"
 719		"    str    %2, [%1, %3]\n\t"
 720		"    mcr    p15, 0, %0, c7, c0, 4\n\t"
 721		:
 722		: "r" (0), "r" (soc_pm.data.ramc[0]),
 723		  "r" (1), "r" (AT91_MC_SDRAMC_SRR));
 724}
 725
 726/* We manage both DDRAM/SDRAM controllers, we need more than one value to
 727 * remember.
 728 */
 729static void at91_ddr_standby(void)
 730{
 731	/* Those two values allow us to delay self-refresh activation
 732	 * to the maximum. */
 733	u32 lpr0, lpr1 = 0;
 734	u32 mdr, saved_mdr0, saved_mdr1 = 0;
 735	u32 saved_lpr0, saved_lpr1 = 0;
 736
 737	/* LPDDR1 --> force DDR2 mode during self-refresh */
 738	saved_mdr0 = at91_ramc_read(0, AT91_DDRSDRC_MDR);
 739	if ((saved_mdr0 & AT91_DDRSDRC_MD) == AT91_DDRSDRC_MD_LOW_POWER_DDR) {
 740		mdr = saved_mdr0 & ~AT91_DDRSDRC_MD;
 741		mdr |= AT91_DDRSDRC_MD_DDR2;
 742		at91_ramc_write(0, AT91_DDRSDRC_MDR, mdr);
 743	}
 744
 745	if (soc_pm.data.ramc[1]) {
 746		saved_lpr1 = at91_ramc_read(1, AT91_DDRSDRC_LPR);
 747		lpr1 = saved_lpr1 & ~AT91_DDRSDRC_LPCB;
 748		lpr1 |= AT91_DDRSDRC_LPCB_SELF_REFRESH;
 749		saved_mdr1 = at91_ramc_read(1, AT91_DDRSDRC_MDR);
 750		if ((saved_mdr1 & AT91_DDRSDRC_MD) == AT91_DDRSDRC_MD_LOW_POWER_DDR) {
 751			mdr = saved_mdr1 & ~AT91_DDRSDRC_MD;
 752			mdr |= AT91_DDRSDRC_MD_DDR2;
 753			at91_ramc_write(1, AT91_DDRSDRC_MDR, mdr);
 754		}
 755	}
 756
 757	saved_lpr0 = at91_ramc_read(0, AT91_DDRSDRC_LPR);
 758	lpr0 = saved_lpr0 & ~AT91_DDRSDRC_LPCB;
 759	lpr0 |= AT91_DDRSDRC_LPCB_SELF_REFRESH;
 760
 761	/* self-refresh mode now */
 762	at91_ramc_write(0, AT91_DDRSDRC_LPR, lpr0);
 763	if (soc_pm.data.ramc[1])
 764		at91_ramc_write(1, AT91_DDRSDRC_LPR, lpr1);
 765
 766	cpu_do_idle();
 767
 768	at91_ramc_write(0, AT91_DDRSDRC_MDR, saved_mdr0);
 769	at91_ramc_write(0, AT91_DDRSDRC_LPR, saved_lpr0);
 770	if (soc_pm.data.ramc[1]) {
 771		at91_ramc_write(0, AT91_DDRSDRC_MDR, saved_mdr1);
 772		at91_ramc_write(1, AT91_DDRSDRC_LPR, saved_lpr1);
 773	}
 774}
 775
 776static void sama5d3_ddr_standby(void)
 777{
 778	u32 lpr0;
 779	u32 saved_lpr0;
 780
 781	saved_lpr0 = at91_ramc_read(0, AT91_DDRSDRC_LPR);
 782	lpr0 = saved_lpr0 & ~AT91_DDRSDRC_LPCB;
 783	lpr0 |= AT91_DDRSDRC_LPCB_POWER_DOWN;
 784
 785	at91_ramc_write(0, AT91_DDRSDRC_LPR, lpr0);
 786
 787	cpu_do_idle();
 788
 789	at91_ramc_write(0, AT91_DDRSDRC_LPR, saved_lpr0);
 790}
 791
 792/* We manage both DDRAM/SDRAM controllers, we need more than one value to
 793 * remember.
 794 */
 795static void at91sam9_sdram_standby(void)
 796{
 797	u32 lpr0, lpr1 = 0;
 798	u32 saved_lpr0, saved_lpr1 = 0;
 799
 800	if (soc_pm.data.ramc[1]) {
 801		saved_lpr1 = at91_ramc_read(1, AT91_SDRAMC_LPR);
 802		lpr1 = saved_lpr1 & ~AT91_SDRAMC_LPCB;
 803		lpr1 |= AT91_SDRAMC_LPCB_SELF_REFRESH;
 804	}
 805
 806	saved_lpr0 = at91_ramc_read(0, AT91_SDRAMC_LPR);
 807	lpr0 = saved_lpr0 & ~AT91_SDRAMC_LPCB;
 808	lpr0 |= AT91_SDRAMC_LPCB_SELF_REFRESH;
 809
 810	/* self-refresh mode now */
 811	at91_ramc_write(0, AT91_SDRAMC_LPR, lpr0);
 812	if (soc_pm.data.ramc[1])
 813		at91_ramc_write(1, AT91_SDRAMC_LPR, lpr1);
 814
 815	cpu_do_idle();
 816
 817	at91_ramc_write(0, AT91_SDRAMC_LPR, saved_lpr0);
 818	if (soc_pm.data.ramc[1])
 819		at91_ramc_write(1, AT91_SDRAMC_LPR, saved_lpr1);
 820}
 821
 822static void sama7g5_standby(void)
 823{
 824	int pwrtmg, ratio;
 825
 826	pwrtmg = readl(soc_pm.data.ramc[0] + UDDRC_PWRCTL);
 827	ratio = readl(soc_pm.data.pmc + AT91_PMC_RATIO);
 828
 829	/*
 830	 * Place RAM into self-refresh after a maximum idle clocks. The maximum
 831	 * idle clocks is configured by bootloader in
 832	 * UDDRC_PWRMGT.SELFREF_TO_X32.
 833	 */
 834	writel(pwrtmg | UDDRC_PWRCTL_SELFREF_EN,
 835	       soc_pm.data.ramc[0] + UDDRC_PWRCTL);
 836	/* Divide CPU clock by 16. */
 837	writel(ratio & ~AT91_PMC_RATIO_RATIO, soc_pm.data.pmc + AT91_PMC_RATIO);
 838
 839	cpu_do_idle();
 840
 841	/* Restore previous configuration. */
 842	writel(ratio, soc_pm.data.pmc + AT91_PMC_RATIO);
 843	writel(pwrtmg, soc_pm.data.ramc[0] + UDDRC_PWRCTL);
 844}
 845
 846struct ramc_info {
 847	void (*idle)(void);
 848	unsigned int memctrl;
 849};
 850
 851static const struct ramc_info ramc_infos[] __initconst = {
 852	{ .idle = at91rm9200_standby, .memctrl = AT91_MEMCTRL_MC},
 853	{ .idle = at91sam9_sdram_standby, .memctrl = AT91_MEMCTRL_SDRAMC},
 854	{ .idle = at91_ddr_standby, .memctrl = AT91_MEMCTRL_DDRSDR},
 855	{ .idle = sama5d3_ddr_standby, .memctrl = AT91_MEMCTRL_DDRSDR},
 856	{ .idle = sama7g5_standby, },
 857};
 858
 859static const struct of_device_id ramc_ids[] __initconst = {
 860	{ .compatible = "atmel,at91rm9200-sdramc", .data = &ramc_infos[0] },
 861	{ .compatible = "atmel,at91sam9260-sdramc", .data = &ramc_infos[1] },
 862	{ .compatible = "atmel,at91sam9g45-ddramc", .data = &ramc_infos[2] },
 863	{ .compatible = "atmel,sama5d3-ddramc", .data = &ramc_infos[3] },
 864	{ .compatible = "microchip,sama7g5-uddrc", .data = &ramc_infos[4], },
 865	{ /*sentinel*/ }
 866};
 867
 868static const struct of_device_id ramc_phy_ids[] __initconst = {
 869	{ .compatible = "microchip,sama7g5-ddr3phy", },
 870	{ /* Sentinel. */ },
 871};
 872
 873static __init int at91_dt_ramc(bool phy_mandatory)
 874{
 875	struct device_node *np;
 876	const struct of_device_id *of_id;
 877	int idx = 0;
 878	void *standby = NULL;
 879	const struct ramc_info *ramc;
 880	int ret;
 881
 882	for_each_matching_node_and_match(np, ramc_ids, &of_id) {
 883		soc_pm.data.ramc[idx] = of_iomap(np, 0);
 884		if (!soc_pm.data.ramc[idx]) {
 885			pr_err("unable to map ramc[%d] cpu registers\n", idx);
 886			ret = -ENOMEM;
 887			of_node_put(np);
 888			goto unmap_ramc;
 889		}
 890
 891		ramc = of_id->data;
 892		if (ramc) {
 893			if (!standby)
 894				standby = ramc->idle;
 895			soc_pm.data.memctrl = ramc->memctrl;
 896		}
 897
 898		idx++;
 899	}
 900
 901	if (!idx) {
 902		pr_err("unable to find compatible ram controller node in dtb\n");
 903		ret = -ENODEV;
 904		goto unmap_ramc;
 905	}
 906
 907	/* Lookup for DDR PHY node, if any. */
 908	for_each_matching_node_and_match(np, ramc_phy_ids, &of_id) {
 909		soc_pm.data.ramc_phy = of_iomap(np, 0);
 910		if (!soc_pm.data.ramc_phy) {
 911			pr_err("unable to map ramc phy cpu registers\n");
 912			ret = -ENOMEM;
 913			of_node_put(np);
 914			goto unmap_ramc;
 915		}
 916	}
 917
 918	if (phy_mandatory && !soc_pm.data.ramc_phy) {
 919		pr_err("DDR PHY is mandatory!\n");
 920		ret = -ENODEV;
 921		goto unmap_ramc;
 922	}
 923
 924	if (!standby) {
 925		pr_warn("ramc no standby function available\n");
 926		return 0;
 927	}
 928
 929	at91_cpuidle_device.dev.platform_data = standby;
 930
 931	return 0;
 932
 933unmap_ramc:
 934	while (idx)
 935		iounmap(soc_pm.data.ramc[--idx]);
 936
 937	return ret;
 938}
 939
 940static void at91rm9200_idle(void)
 941{
 942	/*
 943	 * Disable the processor clock.  The processor will be automatically
 944	 * re-enabled by an interrupt or by a reset.
 945	 */
 946	writel(AT91_PMC_PCK, soc_pm.data.pmc + AT91_PMC_SCDR);
 947}
 948
 949static void at91sam9_idle(void)
 950{
 951	writel(AT91_PMC_PCK, soc_pm.data.pmc + AT91_PMC_SCDR);
 952	cpu_do_idle();
 953}
 954
 955static void __init at91_pm_sram_init(void)
 956{
 957	struct gen_pool *sram_pool;
 958	phys_addr_t sram_pbase;
 959	unsigned long sram_base;
 960	struct device_node *node;
 961	struct platform_device *pdev = NULL;
 962
 963	for_each_compatible_node(node, NULL, "mmio-sram") {
 964		pdev = of_find_device_by_node(node);
 965		if (pdev) {
 966			of_node_put(node);
 967			break;
 968		}
 969	}
 970
 971	if (!pdev) {
 972		pr_warn("%s: failed to find sram device!\n", __func__);
 973		return;
 974	}
 975
 976	sram_pool = gen_pool_get(&pdev->dev, NULL);
 977	if (!sram_pool) {
 978		pr_warn("%s: sram pool unavailable!\n", __func__);
 979		goto out_put_device;
 980	}
 981
 982	sram_base = gen_pool_alloc(sram_pool, at91_pm_suspend_in_sram_sz);
 983	if (!sram_base) {
 984		pr_warn("%s: unable to alloc sram!\n", __func__);
 985		goto out_put_device;
 986	}
 987
 988	sram_pbase = gen_pool_virt_to_phys(sram_pool, sram_base);
 989	at91_suspend_sram_fn = __arm_ioremap_exec(sram_pbase,
 990					at91_pm_suspend_in_sram_sz, false);
 991	if (!at91_suspend_sram_fn) {
 992		pr_warn("SRAM: Could not map\n");
 993		goto out_put_device;
 994	}
 995
 996	/* Copy the pm suspend handler to SRAM */
 997	at91_suspend_sram_fn = fncpy(at91_suspend_sram_fn,
 998			&at91_pm_suspend_in_sram, at91_pm_suspend_in_sram_sz);
 999	return;
1000
1001out_put_device:
1002	put_device(&pdev->dev);
1003	return;
1004}
1005
1006static bool __init at91_is_pm_mode_active(int pm_mode)
1007{
1008	return (soc_pm.data.standby_mode == pm_mode ||
1009		soc_pm.data.suspend_mode == pm_mode);
1010}
1011
1012static int __init at91_pm_backup_scan_memcs(unsigned long node,
1013					    const char *uname, int depth,
1014					    void *data)
1015{
1016	const char *type;
1017	const __be32 *reg;
1018	int *located = data;
1019	int size;
1020
1021	/* Memory node already located. */
1022	if (*located)
1023		return 0;
1024
1025	type = of_get_flat_dt_prop(node, "device_type", NULL);
1026
1027	/* We are scanning "memory" nodes only. */
1028	if (!type || strcmp(type, "memory"))
1029		return 0;
1030
1031	reg = of_get_flat_dt_prop(node, "reg", &size);
1032	if (reg) {
1033		soc_pm.memcs = __va((phys_addr_t)be32_to_cpu(*reg));
1034		*located = 1;
1035	}
1036
1037	return 0;
1038}
1039
1040static int __init at91_pm_backup_init(void)
1041{
1042	struct gen_pool *sram_pool;
1043	struct device_node *np;
1044	struct platform_device *pdev;
1045	int ret = -ENODEV, located = 0;
1046
1047	if (!IS_ENABLED(CONFIG_SOC_SAMA5D2) &&
1048	    !IS_ENABLED(CONFIG_SOC_SAMA7G5))
1049		return -EPERM;
1050
1051	if (!at91_is_pm_mode_active(AT91_PM_BACKUP))
1052		return 0;
1053
 
 
 
 
 
 
 
 
 
1054	np = of_find_compatible_node(NULL, NULL, "atmel,sama5d2-securam");
1055	if (!np)
1056		return ret;
1057
1058	pdev = of_find_device_by_node(np);
1059	of_node_put(np);
1060	if (!pdev) {
1061		pr_warn("%s: failed to find securam device!\n", __func__);
1062		return ret;
1063	}
1064
1065	sram_pool = gen_pool_get(&pdev->dev, NULL);
1066	if (!sram_pool) {
1067		pr_warn("%s: securam pool unavailable!\n", __func__);
1068		goto securam_fail;
1069	}
1070
1071	soc_pm.bu = (void *)gen_pool_alloc(sram_pool, sizeof(struct at91_pm_bu));
1072	if (!soc_pm.bu) {
1073		pr_warn("%s: unable to alloc securam!\n", __func__);
1074		ret = -ENOMEM;
1075		goto securam_fail;
1076	}
1077
1078	soc_pm.bu->suspended = 0;
1079	soc_pm.bu->canary = __pa_symbol(&canary);
1080	soc_pm.bu->resume = __pa_symbol(cpu_resume);
1081	if (soc_pm.data.ramc_phy) {
1082		of_scan_flat_dt(at91_pm_backup_scan_memcs, &located);
1083		if (!located)
1084			goto securam_fail;
1085	}
1086
1087	return 0;
1088
1089securam_fail:
1090	put_device(&pdev->dev);
 
 
 
1091	return ret;
1092}
1093
1094static void __init at91_pm_secure_init(void)
1095{
1096	int suspend_mode;
1097	struct arm_smccc_res res;
1098
1099	suspend_mode = soc_pm.data.suspend_mode;
1100
1101	res = sam_smccc_call(SAMA5_SMC_SIP_SET_SUSPEND_MODE,
1102			     suspend_mode, 0);
1103	if (res.a0 == 0) {
1104		pr_info("AT91: Secure PM: suspend mode set to %s\n",
1105			pm_modes[suspend_mode].pattern);
1106		soc_pm.data.mode = suspend_mode;
1107		return;
1108	}
1109
1110	pr_warn("AT91: Secure PM: %s mode not supported !\n",
1111		pm_modes[suspend_mode].pattern);
 
 
 
1112
1113	res = sam_smccc_call(SAMA5_SMC_SIP_GET_SUSPEND_MODE, 0, 0);
1114	if (res.a0 == 0) {
1115		pr_warn("AT91: Secure PM: failed to get default mode\n");
1116		soc_pm.data.mode = -1;
1117		return;
1118	}
1119
1120	pr_info("AT91: Secure PM: using default suspend mode %s\n",
1121		pm_modes[suspend_mode].pattern);
1122
1123	soc_pm.data.suspend_mode = res.a1;
1124	soc_pm.data.mode = soc_pm.data.suspend_mode;
1125}
1126static const struct of_device_id atmel_shdwc_ids[] = {
1127	{ .compatible = "atmel,sama5d2-shdwc" },
1128	{ .compatible = "microchip,sam9x60-shdwc" },
1129	{ .compatible = "microchip,sama7g5-shdwc" },
1130	{ /* sentinel. */ }
1131};
1132
1133static const struct of_device_id gmac_ids[] __initconst = {
1134	{ .compatible = "atmel,sama5d3-gem" },
1135	{ .compatible = "atmel,sama5d2-gem" },
1136	{ .compatible = "atmel,sama5d29-gem" },
1137	{ .compatible = "microchip,sama7g5-gem" },
1138	{ },
1139};
1140
1141static const struct of_device_id emac_ids[] __initconst = {
1142	{ .compatible = "atmel,sama5d3-macb" },
1143	{ .compatible = "microchip,sama7g5-emac" },
1144	{ },
1145};
1146
1147/*
1148 * Replaces _mode_to_replace with a supported mode that doesn't depend
1149 * on controller pointed by _map_bitmask
1150 * @_maps: u32 array containing AT91_PM_IOMAP() flags and indexed by AT91
1151 * PM mode
1152 * @_map_bitmask: AT91_PM_IOMAP() bitmask; if _mode_to_replace depends on
1153 * controller represented by _map_bitmask, _mode_to_replace needs to be
1154 * updated
1155 * @_mode_to_replace: standby_mode or suspend_mode that need to be
1156 * updated
1157 * @_mode_to_check: standby_mode or suspend_mode; this is needed here
1158 * to avoid having standby_mode and suspend_mode set with the same AT91
1159 * PM mode
1160 */
1161#define AT91_PM_REPLACE_MODE(_maps, _map_bitmask, _mode_to_replace,	\
1162			     _mode_to_check)				\
1163	do {								\
1164		if (((_maps)[(_mode_to_replace)]) & (_map_bitmask)) {	\
1165			int _mode_to_use, _mode_complementary;		\
1166			/* Use ULP0 if it doesn't need _map_bitmask. */	\
1167			if (!((_maps)[AT91_PM_ULP0] & (_map_bitmask))) {\
1168				_mode_to_use = AT91_PM_ULP0;		\
1169				_mode_complementary = AT91_PM_STANDBY;	\
1170			} else {					\
1171				_mode_to_use = AT91_PM_STANDBY;		\
1172				_mode_complementary = AT91_PM_STANDBY;	\
1173			}						\
1174									\
1175			if ((_mode_to_check) != _mode_to_use)		\
1176				(_mode_to_replace) = _mode_to_use;	\
1177			else						\
1178				(_mode_to_replace) = _mode_complementary;\
1179		}							\
1180	} while (0)
1181
1182/*
1183 * Replaces standby and suspend modes with default supported modes:
1184 * ULP0 and STANDBY.
1185 * @_maps: u32 array indexed by AT91 PM mode containing AT91_PM_IOMAP()
1186 * flags
1187 * @_map: controller specific name; standby and suspend mode need to be
1188 * replaced in order to not depend on this controller
1189 */
1190#define AT91_PM_REPLACE_MODES(_maps, _map)				\
1191	do {								\
1192		AT91_PM_REPLACE_MODE((_maps), BIT(AT91_PM_IOMAP_##_map),\
1193				     (soc_pm.data.standby_mode),	\
1194				     (soc_pm.data.suspend_mode));	\
1195		AT91_PM_REPLACE_MODE((_maps), BIT(AT91_PM_IOMAP_##_map),\
1196				     (soc_pm.data.suspend_mode),	\
1197				     (soc_pm.data.standby_mode));	\
1198	} while (0)
1199
1200static int __init at91_pm_get_eth_clks(struct device_node *np,
1201				       struct clk_bulk_data *clks)
1202{
1203	clks[AT91_PM_ETH_PCLK].clk = of_clk_get_by_name(np, "pclk");
1204	if (IS_ERR(clks[AT91_PM_ETH_PCLK].clk))
1205		return PTR_ERR(clks[AT91_PM_ETH_PCLK].clk);
1206
1207	clks[AT91_PM_ETH_HCLK].clk = of_clk_get_by_name(np, "hclk");
1208	if (IS_ERR(clks[AT91_PM_ETH_HCLK].clk))
1209		return PTR_ERR(clks[AT91_PM_ETH_HCLK].clk);
1210
1211	return 0;
1212}
1213
1214static int __init at91_pm_eth_clks_empty(struct clk_bulk_data *clks)
1215{
1216	return IS_ERR(clks[AT91_PM_ETH_PCLK].clk) ||
1217	       IS_ERR(clks[AT91_PM_ETH_HCLK].clk);
1218}
1219
1220static void __init at91_pm_modes_init(const u32 *maps, int len)
1221{
1222	struct at91_pm_quirk_eth *gmac = &soc_pm.quirks.eth[AT91_PM_G_ETH];
1223	struct at91_pm_quirk_eth *emac = &soc_pm.quirks.eth[AT91_PM_E_ETH];
1224	struct device_node *np;
1225	int ret;
1226
1227	ret = at91_pm_backup_init();
1228	if (ret) {
1229		if (soc_pm.data.standby_mode == AT91_PM_BACKUP)
1230			soc_pm.data.standby_mode = AT91_PM_ULP0;
1231		if (soc_pm.data.suspend_mode == AT91_PM_BACKUP)
1232			soc_pm.data.suspend_mode = AT91_PM_ULP0;
1233	}
1234
1235	if (maps[soc_pm.data.standby_mode] & AT91_PM_IOMAP(SHDWC) ||
1236	    maps[soc_pm.data.suspend_mode] & AT91_PM_IOMAP(SHDWC)) {
1237		np = of_find_matching_node(NULL, atmel_shdwc_ids);
1238		if (!np) {
1239			pr_warn("%s: failed to find shdwc!\n", __func__);
1240			AT91_PM_REPLACE_MODES(maps, SHDWC);
1241		} else {
1242			soc_pm.data.shdwc = of_iomap(np, 0);
1243			of_node_put(np);
1244		}
1245	}
1246
1247	if (maps[soc_pm.data.standby_mode] & AT91_PM_IOMAP(SFRBU) ||
1248	    maps[soc_pm.data.suspend_mode] & AT91_PM_IOMAP(SFRBU)) {
1249		np = of_find_compatible_node(NULL, NULL, "atmel,sama5d2-sfrbu");
1250		if (!np) {
1251			pr_warn("%s: failed to find sfrbu!\n", __func__);
1252			AT91_PM_REPLACE_MODES(maps, SFRBU);
1253		} else {
1254			soc_pm.data.sfrbu = of_iomap(np, 0);
1255			of_node_put(np);
1256		}
1257	}
1258
1259	if ((at91_is_pm_mode_active(AT91_PM_ULP1) ||
1260	     at91_is_pm_mode_active(AT91_PM_ULP0) ||
1261	     at91_is_pm_mode_active(AT91_PM_ULP0_FAST)) &&
1262	    (maps[soc_pm.data.standby_mode] & AT91_PM_IOMAP(ETHC) ||
1263	     maps[soc_pm.data.suspend_mode] & AT91_PM_IOMAP(ETHC))) {
1264		np = of_find_matching_node(NULL, gmac_ids);
1265		if (!np) {
1266			np = of_find_matching_node(NULL, emac_ids);
1267			if (np)
1268				goto get_emac_clks;
1269			AT91_PM_REPLACE_MODES(maps, ETHC);
1270			goto unmap_unused_nodes;
1271		} else {
1272			gmac->np = np;
1273			at91_pm_get_eth_clks(np, gmac->clks);
1274		}
1275
1276		np = of_find_matching_node(NULL, emac_ids);
1277		if (!np) {
1278			if (at91_pm_eth_clks_empty(gmac->clks))
1279				AT91_PM_REPLACE_MODES(maps, ETHC);
1280		} else {
1281get_emac_clks:
1282			emac->np = np;
1283			ret = at91_pm_get_eth_clks(np, emac->clks);
1284			if (ret && at91_pm_eth_clks_empty(gmac->clks)) {
1285				of_node_put(gmac->np);
1286				of_node_put(emac->np);
1287				gmac->np = NULL;
1288				emac->np = NULL;
1289			}
1290		}
1291	}
1292
1293unmap_unused_nodes:
1294	/* Unmap all unnecessary. */
1295	if (soc_pm.data.shdwc &&
1296	    !(maps[soc_pm.data.standby_mode] & AT91_PM_IOMAP(SHDWC) ||
1297	      maps[soc_pm.data.suspend_mode] & AT91_PM_IOMAP(SHDWC))) {
1298		iounmap(soc_pm.data.shdwc);
1299		soc_pm.data.shdwc = NULL;
1300	}
1301
1302	if (soc_pm.data.sfrbu &&
1303	    !(maps[soc_pm.data.standby_mode] & AT91_PM_IOMAP(SFRBU) ||
1304	      maps[soc_pm.data.suspend_mode] & AT91_PM_IOMAP(SFRBU))) {
1305		iounmap(soc_pm.data.sfrbu);
1306		soc_pm.data.sfrbu = NULL;
1307	}
1308
1309	return;
1310}
1311
1312struct pmc_info {
1313	unsigned long uhp_udp_mask;
1314	unsigned long mckr;
1315	unsigned long version;
1316};
1317
1318static const struct pmc_info pmc_infos[] __initconst = {
1319	{
1320		.uhp_udp_mask = AT91RM9200_PMC_UHP | AT91RM9200_PMC_UDP,
1321		.mckr = 0x30,
1322		.version = AT91_PMC_V1,
1323	},
1324
1325	{
1326		.uhp_udp_mask = AT91SAM926x_PMC_UHP | AT91SAM926x_PMC_UDP,
1327		.mckr = 0x30,
1328		.version = AT91_PMC_V1,
1329	},
1330	{
1331		.uhp_udp_mask = AT91SAM926x_PMC_UHP,
1332		.mckr = 0x30,
1333		.version = AT91_PMC_V1,
1334	},
1335	{	.uhp_udp_mask = 0,
1336		.mckr = 0x30,
1337		.version = AT91_PMC_V1,
1338	},
1339	{
1340		.uhp_udp_mask = AT91SAM926x_PMC_UHP | AT91SAM926x_PMC_UDP,
1341		.mckr = 0x28,
1342		.version = AT91_PMC_V2,
1343	},
1344	{
1345		.mckr = 0x28,
1346		.version = AT91_PMC_V2,
1347	},
1348
1349};
1350
1351static const struct of_device_id atmel_pmc_ids[] __initconst = {
1352	{ .compatible = "atmel,at91rm9200-pmc", .data = &pmc_infos[0] },
1353	{ .compatible = "atmel,at91sam9260-pmc", .data = &pmc_infos[1] },
1354	{ .compatible = "atmel,at91sam9261-pmc", .data = &pmc_infos[1] },
1355	{ .compatible = "atmel,at91sam9263-pmc", .data = &pmc_infos[1] },
1356	{ .compatible = "atmel,at91sam9g45-pmc", .data = &pmc_infos[2] },
1357	{ .compatible = "atmel,at91sam9n12-pmc", .data = &pmc_infos[1] },
1358	{ .compatible = "atmel,at91sam9rl-pmc", .data = &pmc_infos[3] },
1359	{ .compatible = "atmel,at91sam9x5-pmc", .data = &pmc_infos[1] },
1360	{ .compatible = "atmel,sama5d3-pmc", .data = &pmc_infos[1] },
1361	{ .compatible = "atmel,sama5d4-pmc", .data = &pmc_infos[1] },
1362	{ .compatible = "atmel,sama5d2-pmc", .data = &pmc_infos[1] },
1363	{ .compatible = "microchip,sam9x60-pmc", .data = &pmc_infos[4] },
1364	{ .compatible = "microchip,sama7g5-pmc", .data = &pmc_infos[5] },
1365	{ /* sentinel */ },
1366};
1367
1368static void __init at91_pm_modes_validate(const int *modes, int len)
1369{
1370	u8 i, standby = 0, suspend = 0;
1371	int mode;
1372
1373	for (i = 0; i < len; i++) {
1374		if (standby && suspend)
1375			break;
1376
1377		if (modes[i] == soc_pm.data.standby_mode && !standby) {
1378			standby = 1;
1379			continue;
1380		}
1381
1382		if (modes[i] == soc_pm.data.suspend_mode && !suspend) {
1383			suspend = 1;
1384			continue;
1385		}
1386	}
1387
1388	if (!standby) {
1389		if (soc_pm.data.suspend_mode == AT91_PM_STANDBY)
1390			mode = AT91_PM_ULP0;
1391		else
1392			mode = AT91_PM_STANDBY;
1393
1394		pr_warn("AT91: PM: %s mode not supported! Using %s.\n",
1395			pm_modes[soc_pm.data.standby_mode].pattern,
1396			pm_modes[mode].pattern);
1397		soc_pm.data.standby_mode = mode;
1398	}
1399
1400	if (!suspend) {
1401		if (soc_pm.data.standby_mode == AT91_PM_ULP0)
1402			mode = AT91_PM_STANDBY;
1403		else
1404			mode = AT91_PM_ULP0;
1405
1406		pr_warn("AT91: PM: %s mode not supported! Using %s.\n",
1407			pm_modes[soc_pm.data.suspend_mode].pattern,
1408			pm_modes[mode].pattern);
1409		soc_pm.data.suspend_mode = mode;
1410	}
1411}
1412
1413static void __init at91_pm_init(void (*pm_idle)(void))
1414{
1415	struct device_node *pmc_np;
1416	const struct of_device_id *of_id;
1417	const struct pmc_info *pmc;
1418
1419	if (at91_cpuidle_device.dev.platform_data)
1420		platform_device_register(&at91_cpuidle_device);
1421
1422	pmc_np = of_find_matching_node_and_match(NULL, atmel_pmc_ids, &of_id);
1423	soc_pm.data.pmc = of_iomap(pmc_np, 0);
1424	of_node_put(pmc_np);
1425	if (!soc_pm.data.pmc) {
1426		pr_err("AT91: PM not supported, PMC not found\n");
1427		return;
1428	}
1429
1430	pmc = of_id->data;
1431	soc_pm.data.uhp_udp_mask = pmc->uhp_udp_mask;
1432	soc_pm.data.pmc_mckr_offset = pmc->mckr;
1433	soc_pm.data.pmc_version = pmc->version;
1434
1435	if (pm_idle)
1436		arm_pm_idle = pm_idle;
1437
1438	at91_pm_sram_init();
1439
1440	if (at91_suspend_sram_fn) {
1441		suspend_set_ops(&at91_pm_ops);
1442		pr_info("AT91: PM: standby: %s, suspend: %s\n",
1443			pm_modes[soc_pm.data.standby_mode].pattern,
1444			pm_modes[soc_pm.data.suspend_mode].pattern);
1445	} else {
1446		pr_info("AT91: PM not supported, due to no SRAM allocated\n");
1447	}
1448}
1449
1450void __init at91rm9200_pm_init(void)
1451{
1452	int ret;
1453
1454	if (!IS_ENABLED(CONFIG_SOC_AT91RM9200))
1455		return;
1456
1457	/*
1458	 * Force STANDBY and ULP0 mode to avoid calling
1459	 * at91_pm_modes_validate() which may increase booting time.
1460	 * Platform supports anyway only STANDBY and ULP0 modes.
1461	 */
1462	soc_pm.data.standby_mode = AT91_PM_STANDBY;
1463	soc_pm.data.suspend_mode = AT91_PM_ULP0;
1464
1465	ret = at91_dt_ramc(false);
1466	if (ret)
1467		return;
1468
1469	/*
1470	 * AT91RM9200 SDRAM low-power mode cannot be used with self-refresh.
1471	 */
1472	at91_ramc_write(0, AT91_MC_SDRAMC_LPR, 0);
1473
1474	at91_pm_init(at91rm9200_idle);
1475}
1476
1477void __init sam9x60_pm_init(void)
1478{
1479	static const int modes[] __initconst = {
1480		AT91_PM_STANDBY, AT91_PM_ULP0, AT91_PM_ULP0_FAST, AT91_PM_ULP1,
1481	};
1482	static const int iomaps[] __initconst = {
1483		[AT91_PM_ULP1]		= AT91_PM_IOMAP(SHDWC),
1484	};
1485	int ret;
1486
1487	if (!IS_ENABLED(CONFIG_SOC_SAM9X60))
1488		return;
1489
1490	at91_pm_modes_validate(modes, ARRAY_SIZE(modes));
1491	at91_pm_modes_init(iomaps, ARRAY_SIZE(iomaps));
1492	ret = at91_dt_ramc(false);
1493	if (ret)
1494		return;
1495
1496	at91_pm_init(NULL);
1497
1498	soc_pm.ws_ids = sam9x60_ws_ids;
1499	soc_pm.config_pmc_ws = at91_sam9x60_config_pmc_ws;
1500}
1501
1502void __init at91sam9_pm_init(void)
1503{
1504	int ret;
1505
1506	if (!IS_ENABLED(CONFIG_SOC_AT91SAM9))
1507		return;
1508
1509	/*
1510	 * Force STANDBY and ULP0 mode to avoid calling
1511	 * at91_pm_modes_validate() which may increase booting time.
1512	 * Platform supports anyway only STANDBY and ULP0 modes.
1513	 */
1514	soc_pm.data.standby_mode = AT91_PM_STANDBY;
1515	soc_pm.data.suspend_mode = AT91_PM_ULP0;
1516
1517	ret = at91_dt_ramc(false);
1518	if (ret)
1519		return;
1520
1521	at91_pm_init(at91sam9_idle);
1522}
1523
1524void __init sama5_pm_init(void)
1525{
1526	static const int modes[] __initconst = {
1527		AT91_PM_STANDBY, AT91_PM_ULP0, AT91_PM_ULP0_FAST,
1528	};
1529	static const u32 iomaps[] __initconst = {
1530		[AT91_PM_ULP0]		= AT91_PM_IOMAP(ETHC),
1531		[AT91_PM_ULP0_FAST]	= AT91_PM_IOMAP(ETHC),
1532	};
1533	int ret;
1534
1535	if (!IS_ENABLED(CONFIG_SOC_SAMA5))
1536		return;
1537
1538	at91_pm_modes_validate(modes, ARRAY_SIZE(modes));
1539	at91_pm_modes_init(iomaps, ARRAY_SIZE(iomaps));
1540	ret = at91_dt_ramc(false);
1541	if (ret)
1542		return;
1543
1544	at91_pm_init(NULL);
1545
1546	/* Quirks applies to ULP0, ULP0 fast and ULP1 modes. */
1547	soc_pm.quirks.eth[AT91_PM_G_ETH].modes = BIT(AT91_PM_ULP0) |
1548						 BIT(AT91_PM_ULP0_FAST) |
1549						 BIT(AT91_PM_ULP1);
1550	/* Do not suspend in ULP0, ULP0 fast if GETH is the only wakeup source. */
1551	soc_pm.quirks.eth[AT91_PM_G_ETH].dns_modes = BIT(AT91_PM_ULP0) |
1552						     BIT(AT91_PM_ULP0_FAST);
1553}
1554
1555void __init sama5d2_pm_init(void)
1556{
1557	static const int modes[] __initconst = {
1558		AT91_PM_STANDBY, AT91_PM_ULP0, AT91_PM_ULP0_FAST, AT91_PM_ULP1,
1559		AT91_PM_BACKUP,
1560	};
1561	static const u32 iomaps[] __initconst = {
1562		[AT91_PM_ULP0]		= AT91_PM_IOMAP(ETHC),
1563		[AT91_PM_ULP0_FAST]	= AT91_PM_IOMAP(ETHC),
1564		[AT91_PM_ULP1]		= AT91_PM_IOMAP(SHDWC) |
1565					  AT91_PM_IOMAP(ETHC),
1566		[AT91_PM_BACKUP]	= AT91_PM_IOMAP(SHDWC) |
1567					  AT91_PM_IOMAP(SFRBU),
1568	};
1569	int ret;
1570
1571	if (!IS_ENABLED(CONFIG_SOC_SAMA5D2))
1572		return;
1573
1574	if (IS_ENABLED(CONFIG_ATMEL_SECURE_PM)) {
1575		pr_warn("AT91: Secure PM: ignoring standby mode\n");
1576		at91_pm_secure_init();
1577		return;
1578	}
1579
1580	at91_pm_modes_validate(modes, ARRAY_SIZE(modes));
1581	at91_pm_modes_init(iomaps, ARRAY_SIZE(iomaps));
1582	ret = at91_dt_ramc(false);
1583	if (ret)
1584		return;
1585
1586	at91_pm_init(NULL);
1587
1588	soc_pm.ws_ids = sama5d2_ws_ids;
1589	soc_pm.config_shdwc_ws = at91_sama5d2_config_shdwc_ws;
1590	soc_pm.config_pmc_ws = at91_sama5d2_config_pmc_ws;
1591
1592	soc_pm.sfrbu_regs.pswbu.key = (0x4BD20C << 8);
1593	soc_pm.sfrbu_regs.pswbu.ctrl = BIT(0);
1594	soc_pm.sfrbu_regs.pswbu.softsw = BIT(1);
1595	soc_pm.sfrbu_regs.pswbu.state = BIT(3);
1596
1597	/* Quirk applies to ULP0, ULP0 fast and ULP1 modes. */
1598	soc_pm.quirks.eth[AT91_PM_G_ETH].modes = BIT(AT91_PM_ULP0) |
1599						 BIT(AT91_PM_ULP0_FAST) |
1600						 BIT(AT91_PM_ULP1);
1601	/*
1602	 * Do not suspend in ULP0, ULP0 fast if GETH is the only wakeup
1603	 * source.
1604	 */
1605	soc_pm.quirks.eth[AT91_PM_G_ETH].dns_modes = BIT(AT91_PM_ULP0) |
1606						     BIT(AT91_PM_ULP0_FAST);
1607}
1608
1609void __init sama7_pm_init(void)
1610{
1611	static const int modes[] __initconst = {
1612		AT91_PM_STANDBY, AT91_PM_ULP0, AT91_PM_ULP1, AT91_PM_BACKUP,
1613	};
1614	static const u32 iomaps[] __initconst = {
1615		[AT91_PM_ULP0]		= AT91_PM_IOMAP(SFRBU),
1616		[AT91_PM_ULP1]		= AT91_PM_IOMAP(SFRBU) |
1617					  AT91_PM_IOMAP(SHDWC) |
1618					  AT91_PM_IOMAP(ETHC),
1619		[AT91_PM_BACKUP]	= AT91_PM_IOMAP(SFRBU) |
1620					  AT91_PM_IOMAP(SHDWC),
1621	};
1622	int ret;
1623
1624	if (!IS_ENABLED(CONFIG_SOC_SAMA7))
1625		return;
1626
1627	at91_pm_modes_validate(modes, ARRAY_SIZE(modes));
1628
1629	ret = at91_dt_ramc(true);
1630	if (ret)
1631		return;
1632
1633	at91_pm_modes_init(iomaps, ARRAY_SIZE(iomaps));
1634	at91_pm_init(NULL);
1635
1636	soc_pm.ws_ids = sama7g5_ws_ids;
1637	soc_pm.config_pmc_ws = at91_sam9x60_config_pmc_ws;
1638
1639	soc_pm.sfrbu_regs.pswbu.key = (0x4BD20C << 8);
1640	soc_pm.sfrbu_regs.pswbu.ctrl = BIT(0);
1641	soc_pm.sfrbu_regs.pswbu.softsw = BIT(1);
1642	soc_pm.sfrbu_regs.pswbu.state = BIT(2);
1643
1644	/* Quirks applies to ULP1 for both Ethernet interfaces. */
1645	soc_pm.quirks.eth[AT91_PM_E_ETH].modes = BIT(AT91_PM_ULP1);
1646	soc_pm.quirks.eth[AT91_PM_G_ETH].modes = BIT(AT91_PM_ULP1);
1647}
1648
1649static int __init at91_pm_modes_select(char *str)
1650{
1651	char *s;
1652	substring_t args[MAX_OPT_ARGS];
1653	int standby, suspend;
1654
1655	if (!str)
1656		return 0;
1657
1658	s = strsep(&str, ",");
1659	standby = match_token(s, pm_modes, args);
1660	if (standby < 0)
1661		return 0;
1662
1663	suspend = match_token(str, pm_modes, args);
1664	if (suspend < 0)
1665		return 0;
1666
1667	soc_pm.data.standby_mode = standby;
1668	soc_pm.data.suspend_mode = suspend;
1669
1670	return 0;
1671}
1672early_param("atmel.pm_modes", at91_pm_modes_select);