1 #include <linux/init.h>
2 #include <linux/suspend.h>
5 #include <asm/cacheflush.h>
6 #include <asm/mpc52xx.h>
8 /* these are defined in mpc52xx_sleep.S, and only used here */
9 extern void mpc52xx_deep_sleep(void __iomem *sram, void __iomem *sdram_regs,
10 struct mpc52xx_cdm __iomem *, struct mpc52xx_intr __iomem*);
11 extern void mpc52xx_ds_sram(void);
12 extern const long mpc52xx_ds_sram_size;
13 extern void mpc52xx_ds_cached(void);
14 extern const long mpc52xx_ds_cached_size;
16 static void __iomem *mbar;
17 static void __iomem *sdram;
18 static struct mpc52xx_cdm __iomem *cdm;
19 static struct mpc52xx_intr __iomem *intr;
20 static struct mpc52xx_gpio_wkup __iomem *gpiow;
21 static void __iomem *sram;
24 struct mpc52xx_suspend mpc52xx_suspend;
26 static int mpc52xx_pm_valid(suspend_state_t state)
29 case PM_SUSPEND_STANDBY:
36 int mpc52xx_set_wakeup_gpio(u8 pin, u8 level)
41 out_8(&gpiow->wkup_gpioe, in_8(&gpiow->wkup_gpioe) | (1 << pin));
43 out_8(&gpiow->wkup_ddr, in_8(&gpiow->wkup_ddr) & ~(1 << pin));
44 /* enable deep sleep interrupt */
45 out_8(&gpiow->wkup_inten, in_8(&gpiow->wkup_inten) | (1 << pin));
46 /* low/high level creates wakeup interrupt */
47 tmp = in_be16(&gpiow->wkup_itype);
48 tmp &= ~(0x3 << (pin * 2));
49 tmp |= (!level + 1) << (pin * 2);
50 out_be16(&gpiow->wkup_itype, tmp);
52 out_8(&gpiow->wkup_maste, 1);
57 int mpc52xx_pm_prepare(void)
59 struct device_node *np;
60 const struct of_device_id immr_ids[] = {
61 { .compatible = "fsl,mpc5200-immr", },
62 { .compatible = "fsl,mpc5200b-immr", },
63 { .type = "soc", .compatible = "mpc5200", }, /* lite5200 */
64 { .type = "builtin", .compatible = "mpc5200", }, /* efika */
68 /* map the whole register space */
69 np = of_find_matching_node(NULL, immr_ids);
70 mbar = of_iomap(np, 0);
73 pr_err("mpc52xx_pm_prepare(): could not map registers\n");
76 /* these offsets are from mpc5200 users manual */
81 sram = mbar + 0x8000; /* Those will be handled by the */
82 sram_size = 0x4000; /* bestcomm driver soon */
84 /* call board suspend code, if applicable */
85 if (mpc52xx_suspend.board_suspend_prepare)
86 mpc52xx_suspend.board_suspend_prepare(mbar);
88 printk(KERN_ALERT "%s: %i don't know how to wake up the board\n",
101 char saved_sram[0x4000];
103 int mpc52xx_pm_enter(suspend_state_t state)
108 void __iomem * irq_0x500 = (void __iomem *)CONFIG_KERNEL_START + 0x500;
109 unsigned long irq_0x500_stop = (unsigned long)irq_0x500 + mpc52xx_ds_cached_size;
110 char saved_0x500[mpc52xx_ds_cached_size];
112 /* disable all interrupts in PIC */
113 intr_main_mask = in_be32(&intr->main_mask);
114 out_be32(&intr->main_mask, intr_main_mask | 0x1ffff);
116 /* don't let DEC expire any time soon */
117 mtspr(SPRN_DEC, 0x7fffffff);
120 memcpy(saved_sram, sram, sram_size);
122 /* copy low level suspend code to sram */
123 memcpy(sram, mpc52xx_ds_sram, mpc52xx_ds_sram_size);
125 out_8(&cdm->ccs_sleep_enable, 1);
126 out_8(&cdm->osc_sleep_enable, 1);
127 out_8(&cdm->ccs_qreq_test, 1);
129 /* disable all but SDRAM and bestcomm (SRAM) clocks */
130 clk_enables = in_be32(&cdm->clk_enables);
131 out_be32(&cdm->clk_enables, clk_enables & 0x00088000);
133 /* disable power management */
135 mtmsr(msr & ~MSR_POW);
137 /* enable sleep mode, disable others */
138 hid0 = mfspr(SPRN_HID0);
139 mtspr(SPRN_HID0, (hid0 & ~(HID0_DOZE | HID0_NAP | HID0_DPM)) | HID0_SLEEP);
141 /* save original, copy our irq handler, flush from dcache and invalidate icache */
142 memcpy(saved_0x500, irq_0x500, mpc52xx_ds_cached_size);
143 memcpy(irq_0x500, mpc52xx_ds_cached, mpc52xx_ds_cached_size);
144 flush_icache_range((unsigned long)irq_0x500, irq_0x500_stop);
146 /* call low-level sleep code */
147 mpc52xx_deep_sleep(sram, sdram, cdm, intr);
149 /* restore original irq handler */
150 memcpy(irq_0x500, saved_0x500, mpc52xx_ds_cached_size);
151 flush_icache_range((unsigned long)irq_0x500, irq_0x500_stop);
153 /* restore old power mode */
154 mtmsr(msr & ~MSR_POW);
155 mtspr(SPRN_HID0, hid0);
158 out_be32(&cdm->clk_enables, clk_enables);
159 out_8(&cdm->ccs_sleep_enable, 0);
160 out_8(&cdm->osc_sleep_enable, 0);
163 memcpy(sram, saved_sram, sram_size);
165 /* restart jiffies */
166 wakeup_decrementer();
168 /* reenable interrupts in PIC */
169 out_be32(&intr->main_mask, intr_main_mask);
174 void mpc52xx_pm_finish(void)
176 /* call board resume code */
177 if (mpc52xx_suspend.board_resume_finish)
178 mpc52xx_suspend.board_resume_finish(mbar);
183 static struct platform_suspend_ops mpc52xx_pm_ops = {
184 .valid = mpc52xx_pm_valid,
185 .prepare = mpc52xx_pm_prepare,
186 .enter = mpc52xx_pm_enter,
187 .finish = mpc52xx_pm_finish,
190 int __init mpc52xx_pm_init(void)
192 suspend_set_ops(&mpc52xx_pm_ops);