|
@@ -10,35 +10,22 @@
|
|
|
* (at your option) any later version.
|
|
|
*/
|
|
|
|
|
|
-#include <linux/gpio.h>
|
|
|
-#include <linux/suspend.h>
|
|
|
-#include <linux/sched.h>
|
|
|
-#include <linux/proc_fs.h>
|
|
|
#include <linux/genalloc.h>
|
|
|
-#include <linux/interrupt.h>
|
|
|
-#include <linux/sysfs.h>
|
|
|
-#include <linux/module.h>
|
|
|
+#include <linux/io.h>
|
|
|
+#include <linux/of_address.h>
|
|
|
#include <linux/of.h>
|
|
|
#include <linux/of_platform.h>
|
|
|
-#include <linux/of_address.h>
|
|
|
-#include <linux/platform_device.h>
|
|
|
-#include <linux/platform_data/atmel.h>
|
|
|
-#include <linux/io.h>
|
|
|
+#include <linux/suspend.h>
|
|
|
+
|
|
|
#include <linux/clk/at91_pmc.h>
|
|
|
|
|
|
-#include <asm/irq.h>
|
|
|
-#include <linux/atomic.h>
|
|
|
-#include <asm/mach/time.h>
|
|
|
-#include <asm/mach/irq.h>
|
|
|
-#include <asm/fncpy.h>
|
|
|
#include <asm/cacheflush.h>
|
|
|
+#include <asm/fncpy.h>
|
|
|
#include <asm/system_misc.h>
|
|
|
|
|
|
#include "generic.h"
|
|
|
#include "pm.h"
|
|
|
|
|
|
-static void __iomem *pmc;
|
|
|
-
|
|
|
/*
|
|
|
* FIXME: this is needed to communicate between the pinctrl driver and
|
|
|
* the PM implementation in the machine. Possibly part of the PM
|
|
@@ -50,12 +37,13 @@ extern void at91_pinctrl_gpio_suspend(void);
|
|
|
extern void at91_pinctrl_gpio_resume(void);
|
|
|
#endif
|
|
|
|
|
|
-static struct {
|
|
|
- unsigned long uhp_udp_mask;
|
|
|
- int memctrl;
|
|
|
-} at91_pm_data;
|
|
|
+static struct at91_pm_data pm_data;
|
|
|
|
|
|
-static void __iomem *at91_ramc_base[2];
|
|
|
+#define at91_ramc_read(id, field) \
|
|
|
+ __raw_readl(pm_data.ramc[id] + field)
|
|
|
+
|
|
|
+#define at91_ramc_write(id, field, value) \
|
|
|
+ __raw_writel(value, pm_data.ramc[id] + field)
|
|
|
|
|
|
static int at91_pm_valid_state(suspend_state_t state)
|
|
|
{
|
|
@@ -91,10 +79,10 @@ static int at91_pm_verify_clocks(void)
|
|
|
unsigned long scsr;
|
|
|
int i;
|
|
|
|
|
|
- scsr = readl(pmc + AT91_PMC_SCSR);
|
|
|
+ scsr = readl(pm_data.pmc + AT91_PMC_SCSR);
|
|
|
|
|
|
/* USB must not be using PLLB */
|
|
|
- if ((scsr & at91_pm_data.uhp_udp_mask) != 0) {
|
|
|
+ if ((scsr & pm_data.uhp_udp_mask) != 0) {
|
|
|
pr_err("AT91: PM - Suspend-to-RAM with USB still active\n");
|
|
|
return 0;
|
|
|
}
|
|
@@ -105,7 +93,7 @@ static int at91_pm_verify_clocks(void)
|
|
|
|
|
|
if ((scsr & (AT91_PMC_PCK0 << i)) == 0)
|
|
|
continue;
|
|
|
- css = readl(pmc + AT91_PMC_PCKR(i)) & AT91_PMC_CSS;
|
|
|
+ css = readl(pm_data.pmc + AT91_PMC_PCKR(i)) & AT91_PMC_CSS;
|
|
|
if (css != AT91_PMC_CSS_SLOW) {
|
|
|
pr_err("AT91: PM - Suspend-to-RAM with PCK%d src %d\n", i, css);
|
|
|
return 0;
|
|
@@ -131,25 +119,18 @@ int at91_suspend_entering_slow_clock(void)
|
|
|
}
|
|
|
EXPORT_SYMBOL(at91_suspend_entering_slow_clock);
|
|
|
|
|
|
-static void (*at91_suspend_sram_fn)(void __iomem *pmc, void __iomem *ramc0,
|
|
|
- void __iomem *ramc1, int memctrl);
|
|
|
-
|
|
|
-extern void at91_pm_suspend_in_sram(void __iomem *pmc, void __iomem *ramc0,
|
|
|
- void __iomem *ramc1, int memctrl);
|
|
|
+static void (*at91_suspend_sram_fn)(struct at91_pm_data *);
|
|
|
+extern void at91_pm_suspend_in_sram(struct at91_pm_data *pm_data);
|
|
|
extern u32 at91_pm_suspend_in_sram_sz;
|
|
|
|
|
|
static void at91_pm_suspend(suspend_state_t state)
|
|
|
{
|
|
|
- unsigned int pm_data = at91_pm_data.memctrl;
|
|
|
-
|
|
|
- pm_data |= (state == PM_SUSPEND_MEM) ?
|
|
|
- AT91_PM_MODE(AT91_PM_SLOW_CLOCK) : 0;
|
|
|
+ pm_data.mode = (state == PM_SUSPEND_MEM) ? AT91_PM_SLOW_CLOCK : 0;
|
|
|
|
|
|
flush_cache_all();
|
|
|
outer_disable();
|
|
|
|
|
|
- at91_suspend_sram_fn(pmc, at91_ramc_base[0],
|
|
|
- at91_ramc_base[1], pm_data);
|
|
|
+ at91_suspend_sram_fn(&pm_data);
|
|
|
|
|
|
outer_resume();
|
|
|
}
|
|
@@ -224,12 +205,6 @@ static struct platform_device at91_cpuidle_device = {
|
|
|
.name = "cpuidle-at91",
|
|
|
};
|
|
|
|
|
|
-static void at91_pm_set_standby(void (*at91_standby)(void))
|
|
|
-{
|
|
|
- if (at91_standby)
|
|
|
- at91_cpuidle_device.dev.platform_data = at91_standby;
|
|
|
-}
|
|
|
-
|
|
|
/*
|
|
|
* The AT91RM9200 goes into self-refresh mode with this command, and will
|
|
|
* terminate self-refresh automatically on the next SDRAM access.
|
|
@@ -241,20 +216,15 @@ static void at91_pm_set_standby(void (*at91_standby)(void))
|
|
|
*/
|
|
|
static void at91rm9200_standby(void)
|
|
|
{
|
|
|
- u32 lpr = at91_ramc_read(0, AT91_MC_SDRAMC_LPR);
|
|
|
-
|
|
|
asm volatile(
|
|
|
"b 1f\n\t"
|
|
|
".align 5\n\t"
|
|
|
"1: mcr p15, 0, %0, c7, c10, 4\n\t"
|
|
|
- " str %0, [%1, %2]\n\t"
|
|
|
- " str %3, [%1, %4]\n\t"
|
|
|
+ " str %2, [%1, %3]\n\t"
|
|
|
" mcr p15, 0, %0, c7, c0, 4\n\t"
|
|
|
- " str %5, [%1, %2]"
|
|
|
:
|
|
|
- : "r" (0), "r" (at91_ramc_base[0]), "r" (AT91_MC_SDRAMC_LPR),
|
|
|
- "r" (1), "r" (AT91_MC_SDRAMC_SRR),
|
|
|
- "r" (lpr));
|
|
|
+ : "r" (0), "r" (pm_data.ramc[0]),
|
|
|
+ "r" (1), "r" (AT91_MC_SDRAMC_SRR));
|
|
|
}
|
|
|
|
|
|
/* We manage both DDRAM/SDRAM controllers, we need more than one value to
|
|
@@ -265,12 +235,27 @@ static void at91_ddr_standby(void)
|
|
|
/* Those two values allow us to delay self-refresh activation
|
|
|
* to the maximum. */
|
|
|
u32 lpr0, lpr1 = 0;
|
|
|
+ u32 mdr, saved_mdr0, saved_mdr1 = 0;
|
|
|
u32 saved_lpr0, saved_lpr1 = 0;
|
|
|
|
|
|
- if (at91_ramc_base[1]) {
|
|
|
+ /* LPDDR1 --> force DDR2 mode during self-refresh */
|
|
|
+ saved_mdr0 = at91_ramc_read(0, AT91_DDRSDRC_MDR);
|
|
|
+ if ((saved_mdr0 & AT91_DDRSDRC_MD) == AT91_DDRSDRC_MD_LOW_POWER_DDR) {
|
|
|
+ mdr = saved_mdr0 & ~AT91_DDRSDRC_MD;
|
|
|
+ mdr |= AT91_DDRSDRC_MD_DDR2;
|
|
|
+ at91_ramc_write(0, AT91_DDRSDRC_MDR, mdr);
|
|
|
+ }
|
|
|
+
|
|
|
+ if (pm_data.ramc[1]) {
|
|
|
saved_lpr1 = at91_ramc_read(1, AT91_DDRSDRC_LPR);
|
|
|
lpr1 = saved_lpr1 & ~AT91_DDRSDRC_LPCB;
|
|
|
lpr1 |= AT91_DDRSDRC_LPCB_SELF_REFRESH;
|
|
|
+ saved_mdr1 = at91_ramc_read(1, AT91_DDRSDRC_MDR);
|
|
|
+ if ((saved_mdr1 & AT91_DDRSDRC_MD) == AT91_DDRSDRC_MD_LOW_POWER_DDR) {
|
|
|
+ mdr = saved_mdr1 & ~AT91_DDRSDRC_MD;
|
|
|
+ mdr |= AT91_DDRSDRC_MD_DDR2;
|
|
|
+ at91_ramc_write(1, AT91_DDRSDRC_MDR, mdr);
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
saved_lpr0 = at91_ramc_read(0, AT91_DDRSDRC_LPR);
|
|
@@ -279,14 +264,17 @@ static void at91_ddr_standby(void)
|
|
|
|
|
|
/* self-refresh mode now */
|
|
|
at91_ramc_write(0, AT91_DDRSDRC_LPR, lpr0);
|
|
|
- if (at91_ramc_base[1])
|
|
|
+ if (pm_data.ramc[1])
|
|
|
at91_ramc_write(1, AT91_DDRSDRC_LPR, lpr1);
|
|
|
|
|
|
cpu_do_idle();
|
|
|
|
|
|
+ at91_ramc_write(0, AT91_DDRSDRC_MDR, saved_mdr0);
|
|
|
at91_ramc_write(0, AT91_DDRSDRC_LPR, saved_lpr0);
|
|
|
- if (at91_ramc_base[1])
|
|
|
+ if (pm_data.ramc[1]) {
|
|
|
+ at91_ramc_write(0, AT91_DDRSDRC_MDR, saved_mdr1);
|
|
|
at91_ramc_write(1, AT91_DDRSDRC_LPR, saved_lpr1);
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
static void sama5d3_ddr_standby(void)
|
|
@@ -313,7 +301,7 @@ static void at91sam9_sdram_standby(void)
|
|
|
u32 lpr0, lpr1 = 0;
|
|
|
u32 saved_lpr0, saved_lpr1 = 0;
|
|
|
|
|
|
- if (at91_ramc_base[1]) {
|
|
|
+ if (pm_data.ramc[1]) {
|
|
|
saved_lpr1 = at91_ramc_read(1, AT91_SDRAMC_LPR);
|
|
|
lpr1 = saved_lpr1 & ~AT91_SDRAMC_LPCB;
|
|
|
lpr1 |= AT91_SDRAMC_LPCB_SELF_REFRESH;
|
|
@@ -325,21 +313,33 @@ static void at91sam9_sdram_standby(void)
|
|
|
|
|
|
/* self-refresh mode now */
|
|
|
at91_ramc_write(0, AT91_SDRAMC_LPR, lpr0);
|
|
|
- if (at91_ramc_base[1])
|
|
|
+ if (pm_data.ramc[1])
|
|
|
at91_ramc_write(1, AT91_SDRAMC_LPR, lpr1);
|
|
|
|
|
|
cpu_do_idle();
|
|
|
|
|
|
at91_ramc_write(0, AT91_SDRAMC_LPR, saved_lpr0);
|
|
|
- if (at91_ramc_base[1])
|
|
|
+ if (pm_data.ramc[1])
|
|
|
at91_ramc_write(1, AT91_SDRAMC_LPR, saved_lpr1);
|
|
|
}
|
|
|
|
|
|
+struct ramc_info {
|
|
|
+ void (*idle)(void);
|
|
|
+ unsigned int memctrl;
|
|
|
+};
|
|
|
+
|
|
|
+static const struct ramc_info ramc_infos[] __initconst = {
|
|
|
+ { .idle = at91rm9200_standby, .memctrl = AT91_MEMCTRL_MC},
|
|
|
+ { .idle = at91sam9_sdram_standby, .memctrl = AT91_MEMCTRL_SDRAMC},
|
|
|
+ { .idle = at91_ddr_standby, .memctrl = AT91_MEMCTRL_DDRSDR},
|
|
|
+ { .idle = sama5d3_ddr_standby, .memctrl = AT91_MEMCTRL_DDRSDR},
|
|
|
+};
|
|
|
+
|
|
|
static const struct of_device_id const ramc_ids[] __initconst = {
|
|
|
- { .compatible = "atmel,at91rm9200-sdramc", .data = at91rm9200_standby },
|
|
|
- { .compatible = "atmel,at91sam9260-sdramc", .data = at91sam9_sdram_standby },
|
|
|
- { .compatible = "atmel,at91sam9g45-ddramc", .data = at91_ddr_standby },
|
|
|
- { .compatible = "atmel,sama5d3-ddramc", .data = sama5d3_ddr_standby },
|
|
|
+ { .compatible = "atmel,at91rm9200-sdramc", .data = &ramc_infos[0] },
|
|
|
+ { .compatible = "atmel,at91sam9260-sdramc", .data = &ramc_infos[1] },
|
|
|
+ { .compatible = "atmel,at91sam9g45-ddramc", .data = &ramc_infos[2] },
|
|
|
+ { .compatible = "atmel,sama5d3-ddramc", .data = &ramc_infos[3] },
|
|
|
{ /*sentinel*/ }
|
|
|
};
|
|
|
|
|
@@ -348,15 +348,18 @@ static __init void at91_dt_ramc(void)
|
|
|
struct device_node *np;
|
|
|
const struct of_device_id *of_id;
|
|
|
int idx = 0;
|
|
|
- const void *standby = NULL;
|
|
|
+ void *standby = NULL;
|
|
|
+ const struct ramc_info *ramc;
|
|
|
|
|
|
for_each_matching_node_and_match(np, ramc_ids, &of_id) {
|
|
|
- at91_ramc_base[idx] = of_iomap(np, 0);
|
|
|
- if (!at91_ramc_base[idx])
|
|
|
+ pm_data.ramc[idx] = of_iomap(np, 0);
|
|
|
+ if (!pm_data.ramc[idx])
|
|
|
panic(pr_fmt("unable to map ramc[%d] cpu registers\n"), idx);
|
|
|
|
|
|
+ ramc = of_id->data;
|
|
|
if (!standby)
|
|
|
- standby = of_id->data;
|
|
|
+ standby = ramc->idle;
|
|
|
+ pm_data.memctrl = ramc->memctrl;
|
|
|
|
|
|
idx++;
|
|
|
}
|
|
@@ -369,7 +372,7 @@ static __init void at91_dt_ramc(void)
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
- at91_pm_set_standby(standby);
|
|
|
+ at91_cpuidle_device.dev.platform_data = standby;
|
|
|
}
|
|
|
|
|
|
static void at91rm9200_idle(void)
|
|
@@ -378,12 +381,12 @@ static void at91rm9200_idle(void)
|
|
|
* Disable the processor clock. The processor will be automatically
|
|
|
* re-enabled by an interrupt or by a reset.
|
|
|
*/
|
|
|
- writel(AT91_PMC_PCK, pmc + AT91_PMC_SCDR);
|
|
|
+ writel(AT91_PMC_PCK, pm_data.pmc + AT91_PMC_SCDR);
|
|
|
}
|
|
|
|
|
|
static void at91sam9_idle(void)
|
|
|
{
|
|
|
- writel(AT91_PMC_PCK, pmc + AT91_PMC_SCDR);
|
|
|
+ writel(AT91_PMC_PCK, pm_data.pmc + AT91_PMC_SCDR);
|
|
|
cpu_do_idle();
|
|
|
}
|
|
|
|
|
@@ -433,31 +436,46 @@ static void __init at91_pm_sram_init(void)
|
|
|
&at91_pm_suspend_in_sram, at91_pm_suspend_in_sram_sz);
|
|
|
}
|
|
|
|
|
|
+struct pmc_info {
|
|
|
+ unsigned long uhp_udp_mask;
|
|
|
+};
|
|
|
+
|
|
|
+static const struct pmc_info pmc_infos[] __initconst = {
|
|
|
+ { .uhp_udp_mask = AT91RM9200_PMC_UHP | AT91RM9200_PMC_UDP },
|
|
|
+ { .uhp_udp_mask = AT91SAM926x_PMC_UHP | AT91SAM926x_PMC_UDP },
|
|
|
+ { .uhp_udp_mask = AT91SAM926x_PMC_UHP },
|
|
|
+};
|
|
|
+
|
|
|
static const struct of_device_id atmel_pmc_ids[] __initconst = {
|
|
|
- { .compatible = "atmel,at91rm9200-pmc" },
|
|
|
- { .compatible = "atmel,at91sam9260-pmc" },
|
|
|
- { .compatible = "atmel,at91sam9g45-pmc" },
|
|
|
- { .compatible = "atmel,at91sam9n12-pmc" },
|
|
|
- { .compatible = "atmel,at91sam9x5-pmc" },
|
|
|
- { .compatible = "atmel,sama5d3-pmc" },
|
|
|
- { .compatible = "atmel,sama5d2-pmc" },
|
|
|
+ { .compatible = "atmel,at91rm9200-pmc", .data = &pmc_infos[0] },
|
|
|
+ { .compatible = "atmel,at91sam9260-pmc", .data = &pmc_infos[1] },
|
|
|
+ { .compatible = "atmel,at91sam9g45-pmc", .data = &pmc_infos[2] },
|
|
|
+ { .compatible = "atmel,at91sam9n12-pmc", .data = &pmc_infos[1] },
|
|
|
+ { .compatible = "atmel,at91sam9x5-pmc", .data = &pmc_infos[1] },
|
|
|
+ { .compatible = "atmel,sama5d3-pmc", .data = &pmc_infos[1] },
|
|
|
+ { .compatible = "atmel,sama5d2-pmc", .data = &pmc_infos[1] },
|
|
|
{ /* sentinel */ },
|
|
|
};
|
|
|
|
|
|
static void __init at91_pm_init(void (*pm_idle)(void))
|
|
|
{
|
|
|
struct device_node *pmc_np;
|
|
|
+ const struct of_device_id *of_id;
|
|
|
+ const struct pmc_info *pmc;
|
|
|
|
|
|
if (at91_cpuidle_device.dev.platform_data)
|
|
|
platform_device_register(&at91_cpuidle_device);
|
|
|
|
|
|
- pmc_np = of_find_matching_node(NULL, atmel_pmc_ids);
|
|
|
- pmc = of_iomap(pmc_np, 0);
|
|
|
- if (!pmc) {
|
|
|
+ pmc_np = of_find_matching_node_and_match(NULL, atmel_pmc_ids, &of_id);
|
|
|
+ pm_data.pmc = of_iomap(pmc_np, 0);
|
|
|
+ if (!pm_data.pmc) {
|
|
|
pr_err("AT91: PM not supported, PMC not found\n");
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
+ pmc = of_id->data;
|
|
|
+ pm_data.uhp_udp_mask = pmc->uhp_udp_mask;
|
|
|
+
|
|
|
if (pm_idle)
|
|
|
arm_pm_idle = pm_idle;
|
|
|
|
|
@@ -478,40 +496,17 @@ void __init at91rm9200_pm_init(void)
|
|
|
*/
|
|
|
at91_ramc_write(0, AT91_MC_SDRAMC_LPR, 0);
|
|
|
|
|
|
- at91_pm_data.uhp_udp_mask = AT91RM9200_PMC_UHP | AT91RM9200_PMC_UDP;
|
|
|
- at91_pm_data.memctrl = AT91_MEMCTRL_MC;
|
|
|
-
|
|
|
at91_pm_init(at91rm9200_idle);
|
|
|
}
|
|
|
|
|
|
-void __init at91sam9260_pm_init(void)
|
|
|
-{
|
|
|
- at91_dt_ramc();
|
|
|
- at91_pm_data.memctrl = AT91_MEMCTRL_SDRAMC;
|
|
|
- at91_pm_data.uhp_udp_mask = AT91SAM926x_PMC_UHP | AT91SAM926x_PMC_UDP;
|
|
|
- at91_pm_init(at91sam9_idle);
|
|
|
-}
|
|
|
-
|
|
|
-void __init at91sam9g45_pm_init(void)
|
|
|
-{
|
|
|
- at91_dt_ramc();
|
|
|
- at91_pm_data.uhp_udp_mask = AT91SAM926x_PMC_UHP;
|
|
|
- at91_pm_data.memctrl = AT91_MEMCTRL_DDRSDR;
|
|
|
- at91_pm_init(at91sam9_idle);
|
|
|
-}
|
|
|
-
|
|
|
-void __init at91sam9x5_pm_init(void)
|
|
|
+void __init at91sam9_pm_init(void)
|
|
|
{
|
|
|
at91_dt_ramc();
|
|
|
- at91_pm_data.uhp_udp_mask = AT91SAM926x_PMC_UHP | AT91SAM926x_PMC_UDP;
|
|
|
- at91_pm_data.memctrl = AT91_MEMCTRL_DDRSDR;
|
|
|
at91_pm_init(at91sam9_idle);
|
|
|
}
|
|
|
|
|
|
void __init sama5_pm_init(void)
|
|
|
{
|
|
|
at91_dt_ramc();
|
|
|
- at91_pm_data.uhp_udp_mask = AT91SAM926x_PMC_UHP | AT91SAM926x_PMC_UDP;
|
|
|
- at91_pm_data.memctrl = AT91_MEMCTRL_DDRSDR;
|
|
|
at91_pm_init(NULL);
|
|
|
}
|