1f80cb488SNicolas Ferre /*
2f80cb488SNicolas Ferre * Atmel SAMA5D2-Compatible Shutdown Controller (SHDWC) driver.
3f80cb488SNicolas Ferre * Found on some SoCs as the sama5d2 (obviously).
4f80cb488SNicolas Ferre *
5f80cb488SNicolas Ferre * Copyright (C) 2015 Atmel Corporation,
6f80cb488SNicolas Ferre * Nicolas Ferre <nicolas.ferre@atmel.com>
7f80cb488SNicolas Ferre *
8f80cb488SNicolas Ferre * Evolved from driver at91-poweroff.c.
9f80cb488SNicolas Ferre *
10f80cb488SNicolas Ferre * This file is licensed under the terms of the GNU General Public
11f80cb488SNicolas Ferre * License version 2. This program is licensed "as is" without any
12f80cb488SNicolas Ferre * warranty of any kind, whether express or implied.
13f80cb488SNicolas Ferre *
14f80cb488SNicolas Ferre * TODO:
15f80cb488SNicolas Ferre * - addition to status of other wake-up inputs [1 - 15]
16f80cb488SNicolas Ferre * - Analog Comparator wake-up alarm
17f80cb488SNicolas Ferre * - Serial RX wake-up alarm
18f80cb488SNicolas Ferre * - low power debouncer
19f80cb488SNicolas Ferre */
20f80cb488SNicolas Ferre
21f80cb488SNicolas Ferre #include <linux/clk.h>
229f7195daSClaudiu Beznea #include <linux/clk/at91_pmc.h>
23f80cb488SNicolas Ferre #include <linux/io.h>
24f80cb488SNicolas Ferre #include <linux/module.h>
25f80cb488SNicolas Ferre #include <linux/of.h>
260b040874SAlexandre Belloni #include <linux/of_address.h>
27f80cb488SNicolas Ferre #include <linux/platform_device.h>
28f80cb488SNicolas Ferre #include <linux/printk.h>
29f80cb488SNicolas Ferre
300b040874SAlexandre Belloni #include <soc/at91/at91sam9_ddrsdr.h>
310b040874SAlexandre Belloni
32f80cb488SNicolas Ferre #define SLOW_CLOCK_FREQ 32768
33f80cb488SNicolas Ferre
34f80cb488SNicolas Ferre #define AT91_SHDW_CR 0x00 /* Shut Down Control Register */
35f80cb488SNicolas Ferre #define AT91_SHDW_SHDW BIT(0) /* Shut Down command */
36f80cb488SNicolas Ferre #define AT91_SHDW_KEY (0xa5UL << 24) /* KEY Password */
37f80cb488SNicolas Ferre
38f80cb488SNicolas Ferre #define AT91_SHDW_MR 0x04 /* Shut Down Mode Register */
39f80cb488SNicolas Ferre #define AT91_SHDW_WKUPDBC_SHIFT 24
4095aa21a3SClaudiu Beznea #define AT91_SHDW_WKUPDBC_MASK GENMASK(26, 24)
41f80cb488SNicolas Ferre #define AT91_SHDW_WKUPDBC(x) (((x) << AT91_SHDW_WKUPDBC_SHIFT) \
42f80cb488SNicolas Ferre & AT91_SHDW_WKUPDBC_MASK)
43f80cb488SNicolas Ferre
44f80cb488SNicolas Ferre #define AT91_SHDW_SR 0x08 /* Shut Down Status Register */
45f80cb488SNicolas Ferre #define AT91_SHDW_WKUPIS_SHIFT 16
46f80cb488SNicolas Ferre #define AT91_SHDW_WKUPIS_MASK GENMASK(31, 16)
47f80cb488SNicolas Ferre #define AT91_SHDW_WKUPIS(x) ((1 << (x)) << AT91_SHDW_WKUPIS_SHIFT \
48f80cb488SNicolas Ferre & AT91_SHDW_WKUPIS_MASK)
49f80cb488SNicolas Ferre
50f80cb488SNicolas Ferre #define AT91_SHDW_WUIR 0x0c /* Shutdown Wake-up Inputs Register */
51f80cb488SNicolas Ferre #define AT91_SHDW_WKUPEN_MASK GENMASK(15, 0)
52f80cb488SNicolas Ferre #define AT91_SHDW_WKUPEN(x) ((1 << (x)) & AT91_SHDW_WKUPEN_MASK)
53f80cb488SNicolas Ferre #define AT91_SHDW_WKUPT_SHIFT 16
54f80cb488SNicolas Ferre #define AT91_SHDW_WKUPT_MASK GENMASK(31, 16)
55f80cb488SNicolas Ferre #define AT91_SHDW_WKUPT(x) ((1 << (x)) << AT91_SHDW_WKUPT_SHIFT \
56f80cb488SNicolas Ferre & AT91_SHDW_WKUPT_MASK)
57f80cb488SNicolas Ferre
58f80cb488SNicolas Ferre #define SHDW_WK_PIN(reg, cfg) ((reg) & AT91_SHDW_WKUPIS((cfg)->wkup_pin_input))
59f80cb488SNicolas Ferre #define SHDW_RTCWK(reg, cfg) (((reg) >> ((cfg)->sr_rtcwk_shift)) & 0x1)
605c6c513dSClaudiu Beznea #define SHDW_RTTWK(reg, cfg) (((reg) >> ((cfg)->sr_rttwk_shift)) & 0x1)
61f80cb488SNicolas Ferre #define SHDW_RTCWKEN(cfg) (1 << ((cfg)->mr_rtcwk_shift))
625c6c513dSClaudiu Beznea #define SHDW_RTTWKEN(cfg) (1 << ((cfg)->mr_rttwk_shift))
63f80cb488SNicolas Ferre
64f80cb488SNicolas Ferre #define DBC_PERIOD_US(x) DIV_ROUND_UP_ULL((1000000 * (x)), \
65f80cb488SNicolas Ferre SLOW_CLOCK_FREQ)
66f80cb488SNicolas Ferre
675c6c513dSClaudiu Beznea #define SHDW_CFG_NOT_USED (32)
685c6c513dSClaudiu Beznea
69a4f06df1SClaudiu Beznea struct shdwc_reg_config {
70f80cb488SNicolas Ferre u8 wkup_pin_input;
71f80cb488SNicolas Ferre u8 mr_rtcwk_shift;
725c6c513dSClaudiu Beznea u8 mr_rttwk_shift;
73f80cb488SNicolas Ferre u8 sr_rtcwk_shift;
745c6c513dSClaudiu Beznea u8 sr_rttwk_shift;
75f80cb488SNicolas Ferre };
76f80cb488SNicolas Ferre
77d39284f2SClaudiu Beznea struct pmc_reg_config {
78d39284f2SClaudiu Beznea u8 mckr;
79d39284f2SClaudiu Beznea };
80d39284f2SClaudiu Beznea
81b7e15bd0SClaudiu Beznea struct ddrc_reg_config {
82b7e15bd0SClaudiu Beznea u32 type_offset;
83b7e15bd0SClaudiu Beznea u32 type_mask;
84b7e15bd0SClaudiu Beznea };
85b7e15bd0SClaudiu Beznea
86a4f06df1SClaudiu Beznea struct reg_config {
87a4f06df1SClaudiu Beznea struct shdwc_reg_config shdwc;
88d39284f2SClaudiu Beznea struct pmc_reg_config pmc;
89b7e15bd0SClaudiu Beznea struct ddrc_reg_config ddrc;
90a4f06df1SClaudiu Beznea };
91a4f06df1SClaudiu Beznea
92f80cb488SNicolas Ferre struct shdwc {
93a4f06df1SClaudiu Beznea const struct reg_config *rcfg;
946764aca1SClaudiu Beznea struct clk *sclk;
95d12f8490SClaudiu Beznea void __iomem *shdwc_base;
969be74f0dSClaudiu Beznea void __iomem *mpddrc_base;
979f7195daSClaudiu Beznea void __iomem *pmc_base;
98f80cb488SNicolas Ferre };
99f80cb488SNicolas Ferre
100f80cb488SNicolas Ferre /*
101f80cb488SNicolas Ferre * Hold configuration here, cannot be more than one instance of the driver
102f80cb488SNicolas Ferre * since pm_power_off itself is global.
103f80cb488SNicolas Ferre */
104f80cb488SNicolas Ferre static struct shdwc *at91_shdwc;
105f80cb488SNicolas Ferre
106f80cb488SNicolas Ferre static const unsigned long long sdwc_dbc_period[] = {
107f80cb488SNicolas Ferre 0, 3, 32, 512, 4096, 32768,
108f80cb488SNicolas Ferre };
109f80cb488SNicolas Ferre
at91_wakeup_status(struct platform_device * pdev)110f80cb488SNicolas Ferre static void __init at91_wakeup_status(struct platform_device *pdev)
111f80cb488SNicolas Ferre {
112f80cb488SNicolas Ferre struct shdwc *shdw = platform_get_drvdata(pdev);
113a4f06df1SClaudiu Beznea const struct reg_config *rcfg = shdw->rcfg;
114f80cb488SNicolas Ferre u32 reg;
115f80cb488SNicolas Ferre char *reason = "unknown";
116f80cb488SNicolas Ferre
117d12f8490SClaudiu Beznea reg = readl(shdw->shdwc_base + AT91_SHDW_SR);
118f80cb488SNicolas Ferre
119f80cb488SNicolas Ferre dev_dbg(&pdev->dev, "%s: status = %#x\n", __func__, reg);
120f80cb488SNicolas Ferre
121f80cb488SNicolas Ferre /* Simple power-on, just bail out */
122f80cb488SNicolas Ferre if (!reg)
123f80cb488SNicolas Ferre return;
124f80cb488SNicolas Ferre
125a4f06df1SClaudiu Beznea if (SHDW_WK_PIN(reg, &rcfg->shdwc))
126f80cb488SNicolas Ferre reason = "WKUP pin";
127a4f06df1SClaudiu Beznea else if (SHDW_RTCWK(reg, &rcfg->shdwc))
128f80cb488SNicolas Ferre reason = "RTC";
129a4f06df1SClaudiu Beznea else if (SHDW_RTTWK(reg, &rcfg->shdwc))
1305c6c513dSClaudiu Beznea reason = "RTT";
131f80cb488SNicolas Ferre
132f80cb488SNicolas Ferre pr_info("AT91: Wake-Up source: %s\n", reason);
133f80cb488SNicolas Ferre }
134f80cb488SNicolas Ferre
at91_poweroff(void)135f80cb488SNicolas Ferre static void at91_poweroff(void)
136f80cb488SNicolas Ferre {
1370b040874SAlexandre Belloni asm volatile(
1380b040874SAlexandre Belloni /* Align to cache lines */
1390b040874SAlexandre Belloni ".balign 32\n\t"
1400b040874SAlexandre Belloni
1410b040874SAlexandre Belloni /* Ensure AT91_SHDW_CR is in the TLB by reading it */
1420b040874SAlexandre Belloni " ldr r6, [%2, #" __stringify(AT91_SHDW_CR) "]\n\t"
1430b040874SAlexandre Belloni
1440b040874SAlexandre Belloni /* Power down SDRAM0 */
1454e018c1eSClaudiu Beznea " tst %0, #0\n\t"
1464e018c1eSClaudiu Beznea " beq 1f\n\t"
1470b040874SAlexandre Belloni " str %1, [%0, #" __stringify(AT91_DDRSDRC_LPR) "]\n\t"
1489f7195daSClaudiu Beznea
1499f7195daSClaudiu Beznea /* Switch the master clock source to slow clock. */
150d39284f2SClaudiu Beznea "1: ldr r6, [%4, %5]\n\t"
1519f7195daSClaudiu Beznea " bic r6, r6, #" __stringify(AT91_PMC_CSS) "\n\t"
152d39284f2SClaudiu Beznea " str r6, [%4, %5]\n\t"
1539f7195daSClaudiu Beznea /* Wait for clock switch. */
1544e018c1eSClaudiu Beznea "2: ldr r6, [%4, #" __stringify(AT91_PMC_SR) "]\n\t"
1559f7195daSClaudiu Beznea " tst r6, #" __stringify(AT91_PMC_MCKRDY) "\n\t"
1564e018c1eSClaudiu Beznea " beq 2b\n\t"
1579f7195daSClaudiu Beznea
1580b040874SAlexandre Belloni /* Shutdown CPU */
1590b040874SAlexandre Belloni " str %3, [%2, #" __stringify(AT91_SHDW_CR) "]\n\t"
1600b040874SAlexandre Belloni
1610b040874SAlexandre Belloni " b .\n\t"
1620b040874SAlexandre Belloni :
1639be74f0dSClaudiu Beznea : "r" (at91_shdwc->mpddrc_base),
1640b040874SAlexandre Belloni "r" cpu_to_le32(AT91_DDRSDRC_LPDDR2_PWOFF),
165d12f8490SClaudiu Beznea "r" (at91_shdwc->shdwc_base),
1669f7195daSClaudiu Beznea "r" cpu_to_le32(AT91_SHDW_KEY | AT91_SHDW_SHDW),
167d39284f2SClaudiu Beznea "r" (at91_shdwc->pmc_base),
168d39284f2SClaudiu Beznea "r" (at91_shdwc->rcfg->pmc.mckr)
169be04a0d7SAlexandre Belloni : "r6");
1700b040874SAlexandre Belloni }
1710b040874SAlexandre Belloni
at91_shdwc_debouncer_value(struct platform_device * pdev,u32 in_period_us)172f80cb488SNicolas Ferre static u32 at91_shdwc_debouncer_value(struct platform_device *pdev,
173f80cb488SNicolas Ferre u32 in_period_us)
174f80cb488SNicolas Ferre {
175f80cb488SNicolas Ferre int i;
176f80cb488SNicolas Ferre int max_idx = ARRAY_SIZE(sdwc_dbc_period) - 1;
177f80cb488SNicolas Ferre unsigned long long period_us;
178f80cb488SNicolas Ferre unsigned long long max_period_us = DBC_PERIOD_US(sdwc_dbc_period[max_idx]);
179f80cb488SNicolas Ferre
180f80cb488SNicolas Ferre if (in_period_us > max_period_us) {
181f80cb488SNicolas Ferre dev_warn(&pdev->dev,
182f80cb488SNicolas Ferre "debouncer period %u too big, reduced to %llu us\n",
183f80cb488SNicolas Ferre in_period_us, max_period_us);
184f80cb488SNicolas Ferre return max_idx;
185f80cb488SNicolas Ferre }
186f80cb488SNicolas Ferre
187f80cb488SNicolas Ferre for (i = max_idx - 1; i > 0; i--) {
188f80cb488SNicolas Ferre period_us = DBC_PERIOD_US(sdwc_dbc_period[i]);
189f80cb488SNicolas Ferre dev_dbg(&pdev->dev, "%s: ref[%d] = %llu\n",
190f80cb488SNicolas Ferre __func__, i, period_us);
191f80cb488SNicolas Ferre if (in_period_us > period_us)
192f80cb488SNicolas Ferre break;
193f80cb488SNicolas Ferre }
194f80cb488SNicolas Ferre
195f80cb488SNicolas Ferre return i + 1;
196f80cb488SNicolas Ferre }
197f80cb488SNicolas Ferre
at91_shdwc_get_wakeup_input(struct platform_device * pdev,struct device_node * np)198f80cb488SNicolas Ferre static u32 at91_shdwc_get_wakeup_input(struct platform_device *pdev,
199f80cb488SNicolas Ferre struct device_node *np)
200f80cb488SNicolas Ferre {
201f80cb488SNicolas Ferre struct device_node *cnp;
202f80cb488SNicolas Ferre u32 wk_input_mask;
203f80cb488SNicolas Ferre u32 wuir = 0;
204f80cb488SNicolas Ferre u32 wk_input;
205f80cb488SNicolas Ferre
206f80cb488SNicolas Ferre for_each_child_of_node(np, cnp) {
207f80cb488SNicolas Ferre if (of_property_read_u32(cnp, "reg", &wk_input)) {
2082f04cd2aSRob Herring dev_warn(&pdev->dev, "reg property is missing for %pOF\n",
2092f04cd2aSRob Herring cnp);
210f80cb488SNicolas Ferre continue;
211f80cb488SNicolas Ferre }
212f80cb488SNicolas Ferre
213f80cb488SNicolas Ferre wk_input_mask = 1 << wk_input;
214f80cb488SNicolas Ferre if (!(wk_input_mask & AT91_SHDW_WKUPEN_MASK)) {
215f80cb488SNicolas Ferre dev_warn(&pdev->dev,
216f80cb488SNicolas Ferre "wake-up input %d out of bounds ignore\n",
217f80cb488SNicolas Ferre wk_input);
218f80cb488SNicolas Ferre continue;
219f80cb488SNicolas Ferre }
220f80cb488SNicolas Ferre wuir |= wk_input_mask;
221f80cb488SNicolas Ferre
222f80cb488SNicolas Ferre if (of_property_read_bool(cnp, "atmel,wakeup-active-high"))
223f80cb488SNicolas Ferre wuir |= AT91_SHDW_WKUPT(wk_input);
224f80cb488SNicolas Ferre
225f80cb488SNicolas Ferre dev_dbg(&pdev->dev, "%s: (child %d) wuir = %#x\n",
226f80cb488SNicolas Ferre __func__, wk_input, wuir);
227f80cb488SNicolas Ferre }
228f80cb488SNicolas Ferre
229f80cb488SNicolas Ferre return wuir;
230f80cb488SNicolas Ferre }
231f80cb488SNicolas Ferre
at91_shdwc_dt_configure(struct platform_device * pdev)232f80cb488SNicolas Ferre static void at91_shdwc_dt_configure(struct platform_device *pdev)
233f80cb488SNicolas Ferre {
234f80cb488SNicolas Ferre struct shdwc *shdw = platform_get_drvdata(pdev);
235a4f06df1SClaudiu Beznea const struct reg_config *rcfg = shdw->rcfg;
236f80cb488SNicolas Ferre struct device_node *np = pdev->dev.of_node;
237f80cb488SNicolas Ferre u32 mode = 0, tmp, input;
238f80cb488SNicolas Ferre
239f80cb488SNicolas Ferre if (!np) {
240f80cb488SNicolas Ferre dev_err(&pdev->dev, "device node not found\n");
241f80cb488SNicolas Ferre return;
242f80cb488SNicolas Ferre }
243f80cb488SNicolas Ferre
244f80cb488SNicolas Ferre if (!of_property_read_u32(np, "debounce-delay-us", &tmp))
245f80cb488SNicolas Ferre mode |= AT91_SHDW_WKUPDBC(at91_shdwc_debouncer_value(pdev, tmp));
246f80cb488SNicolas Ferre
247f80cb488SNicolas Ferre if (of_property_read_bool(np, "atmel,wakeup-rtc-timer"))
248a4f06df1SClaudiu Beznea mode |= SHDW_RTCWKEN(&rcfg->shdwc);
249f80cb488SNicolas Ferre
2505c6c513dSClaudiu Beznea if (of_property_read_bool(np, "atmel,wakeup-rtt-timer"))
251a4f06df1SClaudiu Beznea mode |= SHDW_RTTWKEN(&rcfg->shdwc);
2525c6c513dSClaudiu Beznea
253f80cb488SNicolas Ferre dev_dbg(&pdev->dev, "%s: mode = %#x\n", __func__, mode);
254d12f8490SClaudiu Beznea writel(mode, shdw->shdwc_base + AT91_SHDW_MR);
255f80cb488SNicolas Ferre
256f80cb488SNicolas Ferre input = at91_shdwc_get_wakeup_input(pdev, np);
257d12f8490SClaudiu Beznea writel(input, shdw->shdwc_base + AT91_SHDW_WUIR);
258f80cb488SNicolas Ferre }
259f80cb488SNicolas Ferre
260a4f06df1SClaudiu Beznea static const struct reg_config sama5d2_reg_config = {
261a4f06df1SClaudiu Beznea .shdwc = {
262f80cb488SNicolas Ferre .wkup_pin_input = 0,
263f80cb488SNicolas Ferre .mr_rtcwk_shift = 17,
2645c6c513dSClaudiu Beznea .mr_rttwk_shift = SHDW_CFG_NOT_USED,
265f80cb488SNicolas Ferre .sr_rtcwk_shift = 5,
2665c6c513dSClaudiu Beznea .sr_rttwk_shift = SHDW_CFG_NOT_USED,
267a4f06df1SClaudiu Beznea },
268d39284f2SClaudiu Beznea .pmc = {
269d39284f2SClaudiu Beznea .mckr = 0x30,
270d39284f2SClaudiu Beznea },
271b7e15bd0SClaudiu Beznea .ddrc = {
272b7e15bd0SClaudiu Beznea .type_offset = AT91_DDRSDRC_MDR,
273b7e15bd0SClaudiu Beznea .type_mask = AT91_DDRSDRC_MD
274b7e15bd0SClaudiu Beznea },
2755c6c513dSClaudiu Beznea };
27617d2e876SClaudiu Beznea
277a4f06df1SClaudiu Beznea static const struct reg_config sam9x60_reg_config = {
278a4f06df1SClaudiu Beznea .shdwc = {
27917d2e876SClaudiu Beznea .wkup_pin_input = 0,
28017d2e876SClaudiu Beznea .mr_rtcwk_shift = 17,
28117d2e876SClaudiu Beznea .mr_rttwk_shift = 16,
28217d2e876SClaudiu Beznea .sr_rtcwk_shift = 5,
28317d2e876SClaudiu Beznea .sr_rttwk_shift = 4,
284a4f06df1SClaudiu Beznea },
285d39284f2SClaudiu Beznea .pmc = {
286d39284f2SClaudiu Beznea .mckr = 0x28,
287d39284f2SClaudiu Beznea },
288b7e15bd0SClaudiu Beznea .ddrc = {
289b7e15bd0SClaudiu Beznea .type_offset = AT91_DDRSDRC_MDR,
290b7e15bd0SClaudiu Beznea .type_mask = AT91_DDRSDRC_MD
291b7e15bd0SClaudiu Beznea },
292b7e15bd0SClaudiu Beznea };
293b7e15bd0SClaudiu Beznea
294b7e15bd0SClaudiu Beznea static const struct reg_config sama7g5_reg_config = {
295b7e15bd0SClaudiu Beznea .shdwc = {
296b7e15bd0SClaudiu Beznea .wkup_pin_input = 0,
297b7e15bd0SClaudiu Beznea .mr_rtcwk_shift = 17,
298b7e15bd0SClaudiu Beznea .mr_rttwk_shift = 16,
299b7e15bd0SClaudiu Beznea .sr_rtcwk_shift = 5,
300b7e15bd0SClaudiu Beznea .sr_rttwk_shift = 4,
301b7e15bd0SClaudiu Beznea },
302b7e15bd0SClaudiu Beznea .pmc = {
303b7e15bd0SClaudiu Beznea .mckr = 0x28,
304b7e15bd0SClaudiu Beznea },
305f80cb488SNicolas Ferre };
306f80cb488SNicolas Ferre
307f80cb488SNicolas Ferre static const struct of_device_id at91_shdwc_of_match[] = {
308f80cb488SNicolas Ferre {
309f80cb488SNicolas Ferre .compatible = "atmel,sama5d2-shdwc",
310a4f06df1SClaudiu Beznea .data = &sama5d2_reg_config,
31117d2e876SClaudiu Beznea },
31217d2e876SClaudiu Beznea {
31317d2e876SClaudiu Beznea .compatible = "microchip,sam9x60-shdwc",
314a4f06df1SClaudiu Beznea .data = &sam9x60_reg_config,
315b7e15bd0SClaudiu Beznea },
316b7e15bd0SClaudiu Beznea {
317b7e15bd0SClaudiu Beznea .compatible = "microchip,sama7g5-shdwc",
318b7e15bd0SClaudiu Beznea .data = &sama7g5_reg_config,
319f80cb488SNicolas Ferre }, {
320f80cb488SNicolas Ferre /*sentinel*/
321f80cb488SNicolas Ferre }
322f80cb488SNicolas Ferre };
323f80cb488SNicolas Ferre MODULE_DEVICE_TABLE(of, at91_shdwc_of_match);
324f80cb488SNicolas Ferre
325b0ac8596SClaudiu Beznea static const struct of_device_id at91_pmc_ids[] = {
326b0ac8596SClaudiu Beznea { .compatible = "atmel,sama5d2-pmc" },
327b0ac8596SClaudiu Beznea { .compatible = "microchip,sam9x60-pmc" },
328b7e15bd0SClaudiu Beznea { .compatible = "microchip,sama7g5-pmc" },
329b0ac8596SClaudiu Beznea { /* Sentinel. */ }
330b0ac8596SClaudiu Beznea };
331b0ac8596SClaudiu Beznea
at91_shdwc_probe(struct platform_device * pdev)332f80cb488SNicolas Ferre static int __init at91_shdwc_probe(struct platform_device *pdev)
333f80cb488SNicolas Ferre {
334f80cb488SNicolas Ferre const struct of_device_id *match;
3350b040874SAlexandre Belloni struct device_node *np;
3360b040874SAlexandre Belloni u32 ddr_type;
337f80cb488SNicolas Ferre int ret;
338f80cb488SNicolas Ferre
339f80cb488SNicolas Ferre if (!pdev->dev.of_node)
340f80cb488SNicolas Ferre return -ENODEV;
341f80cb488SNicolas Ferre
3429f1e4477SClaudiu Beznea if (at91_shdwc)
3439f1e4477SClaudiu Beznea return -EBUSY;
3449f1e4477SClaudiu Beznea
345f80cb488SNicolas Ferre at91_shdwc = devm_kzalloc(&pdev->dev, sizeof(*at91_shdwc), GFP_KERNEL);
346f80cb488SNicolas Ferre if (!at91_shdwc)
347f80cb488SNicolas Ferre return -ENOMEM;
348f80cb488SNicolas Ferre
349f80cb488SNicolas Ferre platform_set_drvdata(pdev, at91_shdwc);
350f80cb488SNicolas Ferre
351*5d002da7SYangtao Li at91_shdwc->shdwc_base = devm_platform_ioremap_resource(pdev, 0);
3528ef9f687SZhen Lei if (IS_ERR(at91_shdwc->shdwc_base))
353d12f8490SClaudiu Beznea return PTR_ERR(at91_shdwc->shdwc_base);
354f80cb488SNicolas Ferre
355f80cb488SNicolas Ferre match = of_match_node(at91_shdwc_of_match, pdev->dev.of_node);
356a4f06df1SClaudiu Beznea at91_shdwc->rcfg = match->data;
357f80cb488SNicolas Ferre
3586764aca1SClaudiu Beznea at91_shdwc->sclk = devm_clk_get(&pdev->dev, NULL);
3596764aca1SClaudiu Beznea if (IS_ERR(at91_shdwc->sclk))
3606764aca1SClaudiu Beznea return PTR_ERR(at91_shdwc->sclk);
361f80cb488SNicolas Ferre
3626764aca1SClaudiu Beznea ret = clk_prepare_enable(at91_shdwc->sclk);
363f80cb488SNicolas Ferre if (ret) {
364f80cb488SNicolas Ferre dev_err(&pdev->dev, "Could not enable slow clock\n");
365f80cb488SNicolas Ferre return ret;
366f80cb488SNicolas Ferre }
367f80cb488SNicolas Ferre
368f80cb488SNicolas Ferre at91_wakeup_status(pdev);
369f80cb488SNicolas Ferre
370f80cb488SNicolas Ferre at91_shdwc_dt_configure(pdev);
371f80cb488SNicolas Ferre
372b0ac8596SClaudiu Beznea np = of_find_matching_node(NULL, at91_pmc_ids);
3739f7195daSClaudiu Beznea if (!np) {
3749f7195daSClaudiu Beznea ret = -ENODEV;
3759f7195daSClaudiu Beznea goto clk_disable;
3769f7195daSClaudiu Beznea }
3779f7195daSClaudiu Beznea
3789f7195daSClaudiu Beznea at91_shdwc->pmc_base = of_iomap(np, 0);
3799f7195daSClaudiu Beznea of_node_put(np);
3809f7195daSClaudiu Beznea
3819f7195daSClaudiu Beznea if (!at91_shdwc->pmc_base) {
3829f7195daSClaudiu Beznea ret = -ENOMEM;
3839f7195daSClaudiu Beznea goto clk_disable;
3849f7195daSClaudiu Beznea }
385f80cb488SNicolas Ferre
386b7e15bd0SClaudiu Beznea if (at91_shdwc->rcfg->ddrc.type_mask) {
387b7e15bd0SClaudiu Beznea np = of_find_compatible_node(NULL, NULL,
388b7e15bd0SClaudiu Beznea "atmel,sama5d3-ddramc");
3899f7195daSClaudiu Beznea if (!np) {
3909f7195daSClaudiu Beznea ret = -ENODEV;
3919f7195daSClaudiu Beznea goto unmap;
3929f7195daSClaudiu Beznea }
3930b040874SAlexandre Belloni
3949be74f0dSClaudiu Beznea at91_shdwc->mpddrc_base = of_iomap(np, 0);
3950b040874SAlexandre Belloni of_node_put(np);
3960b040874SAlexandre Belloni
3979be74f0dSClaudiu Beznea if (!at91_shdwc->mpddrc_base) {
3989f7195daSClaudiu Beznea ret = -ENOMEM;
3999f7195daSClaudiu Beznea goto unmap;
4009f7195daSClaudiu Beznea }
4019f7195daSClaudiu Beznea
402b7e15bd0SClaudiu Beznea ddr_type = readl(at91_shdwc->mpddrc_base +
403b7e15bd0SClaudiu Beznea at91_shdwc->rcfg->ddrc.type_offset) &
404b7e15bd0SClaudiu Beznea at91_shdwc->rcfg->ddrc.type_mask;
4054e018c1eSClaudiu Beznea if (ddr_type != AT91_DDRSDRC_MD_LPDDR2 &&
4064e018c1eSClaudiu Beznea ddr_type != AT91_DDRSDRC_MD_LPDDR3) {
4079be74f0dSClaudiu Beznea iounmap(at91_shdwc->mpddrc_base);
4089be74f0dSClaudiu Beznea at91_shdwc->mpddrc_base = NULL;
4099f7195daSClaudiu Beznea }
410b7e15bd0SClaudiu Beznea }
411b7e15bd0SClaudiu Beznea
412b7e15bd0SClaudiu Beznea pm_power_off = at91_poweroff;
4130b040874SAlexandre Belloni
414f80cb488SNicolas Ferre return 0;
4159f7195daSClaudiu Beznea
4169f7195daSClaudiu Beznea unmap:
4179f7195daSClaudiu Beznea iounmap(at91_shdwc->pmc_base);
4189f7195daSClaudiu Beznea clk_disable:
4196764aca1SClaudiu Beznea clk_disable_unprepare(at91_shdwc->sclk);
4209f7195daSClaudiu Beznea
4219f7195daSClaudiu Beznea return ret;
422f80cb488SNicolas Ferre }
423f80cb488SNicolas Ferre
at91_shdwc_remove(struct platform_device * pdev)424f80cb488SNicolas Ferre static int __exit at91_shdwc_remove(struct platform_device *pdev)
425f80cb488SNicolas Ferre {
426f80cb488SNicolas Ferre struct shdwc *shdw = platform_get_drvdata(pdev);
427f80cb488SNicolas Ferre
4284e018c1eSClaudiu Beznea if (pm_power_off == at91_poweroff)
429f80cb488SNicolas Ferre pm_power_off = NULL;
430f80cb488SNicolas Ferre
431f80cb488SNicolas Ferre /* Reset values to disable wake-up features */
432d12f8490SClaudiu Beznea writel(0, shdw->shdwc_base + AT91_SHDW_MR);
433d12f8490SClaudiu Beznea writel(0, shdw->shdwc_base + AT91_SHDW_WUIR);
434f80cb488SNicolas Ferre
4359be74f0dSClaudiu Beznea if (shdw->mpddrc_base)
4369be74f0dSClaudiu Beznea iounmap(shdw->mpddrc_base);
4379f7195daSClaudiu Beznea iounmap(shdw->pmc_base);
4389f7195daSClaudiu Beznea
4396764aca1SClaudiu Beznea clk_disable_unprepare(shdw->sclk);
440f80cb488SNicolas Ferre
441f80cb488SNicolas Ferre return 0;
442f80cb488SNicolas Ferre }
443f80cb488SNicolas Ferre
444f80cb488SNicolas Ferre static struct platform_driver at91_shdwc_driver = {
445f80cb488SNicolas Ferre .remove = __exit_p(at91_shdwc_remove),
446f80cb488SNicolas Ferre .driver = {
447f80cb488SNicolas Ferre .name = "at91-shdwc",
448f80cb488SNicolas Ferre .of_match_table = at91_shdwc_of_match,
449f80cb488SNicolas Ferre },
450f80cb488SNicolas Ferre };
451f80cb488SNicolas Ferre module_platform_driver_probe(at91_shdwc_driver, at91_shdwc_probe);
452f80cb488SNicolas Ferre
453f80cb488SNicolas Ferre MODULE_AUTHOR("Nicolas Ferre <nicolas.ferre@atmel.com>");
454f80cb488SNicolas Ferre MODULE_DESCRIPTION("Atmel shutdown controller driver");
455f80cb488SNicolas Ferre MODULE_LICENSE("GPL v2");
456