2 * Atmel SAMA5D2-Compatible Shutdown Controller (SHDWC) driver.
3 * Found on some SoCs as the sama5d2 (obviously).
5 * Copyright (C) 2015 Atmel Corporation,
8 * Evolved from driver at91-poweroff.c.
10 * This file is licensed under the terms of the GNU General Public
11 * License version 2. This program is licensed "as is" without any
12 * warranty of any kind, whether express or implied.
15 * - addition to status of other wake-up inputs [1 - 15]
16 * - Analog Comparator wake-up alarm
17 * - Serial RX wake-up alarm
18 * - low power debouncer
21 #include <linux/clk.h>
22 #include <linux/clk/at91_pmc.h>
24 #include <linux/module.h>
26 #include <linux/of_address.h>
27 #include <linux/platform_device.h>
28 #include <linux/printk.h>
30 #include <soc/at91/at91sam9_ddrsdr.h>
32 #define SLOW_CLOCK_FREQ 32768
34 #define AT91_SHDW_CR 0x00 /* Shut Down Control Register */
35 #define AT91_SHDW_SHDW BIT(0) /* Shut Down command */
36 #define AT91_SHDW_KEY (0xa5UL << 24) /* KEY Password */
38 #define AT91_SHDW_MR 0x04 /* Shut Down Mode Register */
39 #define AT91_SHDW_WKUPDBC_SHIFT 24
40 #define AT91_SHDW_WKUPDBC_MASK GENMASK(31, 16)
41 #define AT91_SHDW_WKUPDBC(x) (((x) << AT91_SHDW_WKUPDBC_SHIFT) \
42 & AT91_SHDW_WKUPDBC_MASK)
44 #define AT91_SHDW_SR 0x08 /* Shut Down Status Register */
45 #define AT91_SHDW_WKUPIS_SHIFT 16
46 #define AT91_SHDW_WKUPIS_MASK GENMASK(31, 16)
47 #define AT91_SHDW_WKUPIS(x) ((1 << (x)) << AT91_SHDW_WKUPIS_SHIFT \
48 & AT91_SHDW_WKUPIS_MASK)
50 #define AT91_SHDW_WUIR 0x0c /* Shutdown Wake-up Inputs Register */
51 #define AT91_SHDW_WKUPEN_MASK GENMASK(15, 0)
52 #define AT91_SHDW_WKUPEN(x) ((1 << (x)) & AT91_SHDW_WKUPEN_MASK)
53 #define AT91_SHDW_WKUPT_SHIFT 16
54 #define AT91_SHDW_WKUPT_MASK GENMASK(31, 16)
55 #define AT91_SHDW_WKUPT(x) ((1 << (x)) << AT91_SHDW_WKUPT_SHIFT \
56 & AT91_SHDW_WKUPT_MASK)
58 #define SHDW_WK_PIN(reg, cfg) ((reg) & AT91_SHDW_WKUPIS((cfg)->wkup_pin_input))
59 #define SHDW_RTCWK(reg, cfg) (((reg) >> ((cfg)->sr_rtcwk_shift)) & 0x1)
60 #define SHDW_RTCWKEN(cfg) (1 << ((cfg)->mr_rtcwk_shift))
62 #define DBC_PERIOD_US(x) DIV_ROUND_UP_ULL((1000000 * (x)), \
72 const struct shdwc_config *cfg;
74 void __iomem *shdwc_base;
75 void __iomem *mpddrc_base;
76 void __iomem *pmc_base;
80 * Hold configuration here, cannot be more than one instance of the driver
81 * since pm_power_off itself is global.
83 static struct shdwc *at91_shdwc;
85 static const unsigned long long sdwc_dbc_period[] = {
86 0, 3, 32, 512, 4096, 32768,
89 static void __init at91_wakeup_status(struct platform_device *pdev)
91 struct shdwc *shdw = platform_get_drvdata(pdev);
93 char *reason = "unknown";
95 reg = readl(shdw->shdwc_base + AT91_SHDW_SR);
97 dev_dbg(&pdev->dev, "%s: status = %#x\n", __func__, reg);
99 /* Simple power-on, just bail out */
103 if (SHDW_WK_PIN(reg, shdw->cfg))
105 else if (SHDW_RTCWK(reg, shdw->cfg))
108 pr_info("AT91: Wake-Up source: %s\n", reason);
111 static void at91_poweroff(void)
114 /* Align to cache lines */
117 /* Ensure AT91_SHDW_CR is in the TLB by reading it */
118 " ldr r6, [%2, #" __stringify(AT91_SHDW_CR) "]\n\t"
120 /* Power down SDRAM0 */
123 " str %1, [%0, #" __stringify(AT91_DDRSDRC_LPR) "]\n\t"
125 /* Switch the master clock source to slow clock. */
126 "1: ldr r6, [%4, #" __stringify(AT91_PMC_MCKR) "]\n\t"
127 " bic r6, r6, #" __stringify(AT91_PMC_CSS) "\n\t"
128 " str r6, [%4, #" __stringify(AT91_PMC_MCKR) "]\n\t"
129 /* Wait for clock switch. */
130 "2: ldr r6, [%4, #" __stringify(AT91_PMC_SR) "]\n\t"
131 " tst r6, #" __stringify(AT91_PMC_MCKRDY) "\n\t"
135 " str %3, [%2, #" __stringify(AT91_SHDW_CR) "]\n\t"
139 : "r" (at91_shdwc->mpddrc_base),
140 "r" cpu_to_le32(AT91_DDRSDRC_LPDDR2_PWOFF),
141 "r" (at91_shdwc->shdwc_base),
142 "r" cpu_to_le32(AT91_SHDW_KEY | AT91_SHDW_SHDW),
143 "r" (at91_shdwc->pmc_base)
147 static u32 at91_shdwc_debouncer_value(struct platform_device *pdev,
151 int max_idx = ARRAY_SIZE(sdwc_dbc_period) - 1;
152 unsigned long long period_us;
153 unsigned long long max_period_us = DBC_PERIOD_US(sdwc_dbc_period[max_idx]);
155 if (in_period_us > max_period_us) {
157 "debouncer period %u too big, reduced to %llu us\n",
158 in_period_us, max_period_us);
162 for (i = max_idx - 1; i > 0; i--) {
163 period_us = DBC_PERIOD_US(sdwc_dbc_period[i]);
164 dev_dbg(&pdev->dev, "%s: ref[%d] = %llu\n",
165 __func__, i, period_us);
166 if (in_period_us > period_us)
173 static u32 at91_shdwc_get_wakeup_input(struct platform_device *pdev,
174 struct device_node *np)
176 struct device_node *cnp;
181 for_each_child_of_node(np, cnp) {
182 if (of_property_read_u32(cnp, "reg", &wk_input)) {
183 dev_warn(&pdev->dev, "reg property is missing for %pOF\n",
188 wk_input_mask = 1 << wk_input;
189 if (!(wk_input_mask & AT91_SHDW_WKUPEN_MASK)) {
191 "wake-up input %d out of bounds ignore\n",
195 wuir |= wk_input_mask;
197 if (of_property_read_bool(cnp, "atmel,wakeup-active-high"))
198 wuir |= AT91_SHDW_WKUPT(wk_input);
200 dev_dbg(&pdev->dev, "%s: (child %d) wuir = %#x\n",
201 __func__, wk_input, wuir);
207 static void at91_shdwc_dt_configure(struct platform_device *pdev)
209 struct shdwc *shdw = platform_get_drvdata(pdev);
210 struct device_node *np = pdev->dev.of_node;
211 u32 mode = 0, tmp, input;
214 dev_err(&pdev->dev, "device node not found\n");
218 if (!of_property_read_u32(np, "debounce-delay-us", &tmp))
219 mode |= AT91_SHDW_WKUPDBC(at91_shdwc_debouncer_value(pdev, tmp));
221 if (of_property_read_bool(np, "atmel,wakeup-rtc-timer"))
222 mode |= SHDW_RTCWKEN(shdw->cfg);
224 dev_dbg(&pdev->dev, "%s: mode = %#x\n", __func__, mode);
225 writel(mode, shdw->shdwc_base + AT91_SHDW_MR);
227 input = at91_shdwc_get_wakeup_input(pdev, np);
228 writel(input, shdw->shdwc_base + AT91_SHDW_WUIR);
231 static const struct shdwc_config sama5d2_shdwc_config = {
233 .mr_rtcwk_shift = 17,
237 static const struct of_device_id at91_shdwc_of_match[] = {
239 .compatible = "atmel,sama5d2-shdwc",
240 .data = &sama5d2_shdwc_config,
245 MODULE_DEVICE_TABLE(of, at91_shdwc_of_match);
247 static int __init at91_shdwc_probe(struct platform_device *pdev)
249 struct resource *res;
250 const struct of_device_id *match;
251 struct device_node *np;
255 if (!pdev->dev.of_node)
261 at91_shdwc = devm_kzalloc(&pdev->dev, sizeof(*at91_shdwc), GFP_KERNEL);
265 platform_set_drvdata(pdev, at91_shdwc);
267 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
268 at91_shdwc->shdwc_base = devm_ioremap_resource(&pdev->dev, res);
269 if (IS_ERR(at91_shdwc->shdwc_base)) {
270 dev_err(&pdev->dev, "Could not map reset controller address\n");
271 return PTR_ERR(at91_shdwc->shdwc_base);
274 match = of_match_node(at91_shdwc_of_match, pdev->dev.of_node);
275 at91_shdwc->cfg = match->data;
277 at91_shdwc->sclk = devm_clk_get(&pdev->dev, NULL);
278 if (IS_ERR(at91_shdwc->sclk))
279 return PTR_ERR(at91_shdwc->sclk);
281 ret = clk_prepare_enable(at91_shdwc->sclk);
283 dev_err(&pdev->dev, "Could not enable slow clock\n");
287 at91_wakeup_status(pdev);
289 at91_shdwc_dt_configure(pdev);
291 np = of_find_compatible_node(NULL, NULL, "atmel,sama5d2-pmc");
297 at91_shdwc->pmc_base = of_iomap(np, 0);
300 if (!at91_shdwc->pmc_base) {
305 np = of_find_compatible_node(NULL, NULL, "atmel,sama5d3-ddramc");
311 at91_shdwc->mpddrc_base = of_iomap(np, 0);
314 if (!at91_shdwc->mpddrc_base) {
319 pm_power_off = at91_poweroff;
321 ddr_type = readl(at91_shdwc->mpddrc_base + AT91_DDRSDRC_MDR) &
323 if (ddr_type != AT91_DDRSDRC_MD_LPDDR2 &&
324 ddr_type != AT91_DDRSDRC_MD_LPDDR3) {
325 iounmap(at91_shdwc->mpddrc_base);
326 at91_shdwc->mpddrc_base = NULL;
332 iounmap(at91_shdwc->pmc_base);
334 clk_disable_unprepare(at91_shdwc->sclk);
339 static int __exit at91_shdwc_remove(struct platform_device *pdev)
341 struct shdwc *shdw = platform_get_drvdata(pdev);
343 if (pm_power_off == at91_poweroff)
346 /* Reset values to disable wake-up features */
347 writel(0, shdw->shdwc_base + AT91_SHDW_MR);
348 writel(0, shdw->shdwc_base + AT91_SHDW_WUIR);
350 if (shdw->mpddrc_base)
351 iounmap(shdw->mpddrc_base);
352 iounmap(shdw->pmc_base);
354 clk_disable_unprepare(shdw->sclk);
359 static struct platform_driver at91_shdwc_driver = {
360 .remove = __exit_p(at91_shdwc_remove),
362 .name = "at91-shdwc",
363 .of_match_table = at91_shdwc_of_match,
366 module_platform_driver_probe(at91_shdwc_driver, at91_shdwc_probe);
369 MODULE_DESCRIPTION("Atmel shutdown controller driver");
370 MODULE_LICENSE("GPL v2");