blob: 54cca005517105ba203144c7fbb68db170cf1f14 [file] [log] [blame]
Joachim Eastwoodc392b652015-05-06 00:10:26 +02001/*
2 * Reset driver for NXP LPC18xx/43xx Reset Generation Unit (RGU).
3 *
4 * Copyright (C) 2015 Joachim Eastwood <manabian@gmail.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 *
10 */
11
12#include <linux/clk.h>
13#include <linux/delay.h>
14#include <linux/err.h>
15#include <linux/io.h>
16#include <linux/module.h>
17#include <linux/of.h>
18#include <linux/platform_device.h>
19#include <linux/reboot.h>
20#include <linux/reset-controller.h>
21#include <linux/spinlock.h>
22
23/* LPC18xx RGU registers */
24#define LPC18XX_RGU_CTRL0 0x100
25#define LPC18XX_RGU_CTRL1 0x104
26#define LPC18XX_RGU_ACTIVE_STATUS0 0x150
27#define LPC18XX_RGU_ACTIVE_STATUS1 0x154
28
29#define LPC18XX_RGU_RESETS_PER_REG 32
30
31/* Internal reset outputs */
32#define LPC18XX_RGU_CORE_RST 0
33#define LPC43XX_RGU_M0SUB_RST 12
34#define LPC43XX_RGU_M0APP_RST 56
35
36struct lpc18xx_rgu_data {
37 struct reset_controller_dev rcdev;
Joachim Eastwood773fe7262016-02-20 20:06:49 +010038 struct notifier_block restart_nb;
Joachim Eastwoodc392b652015-05-06 00:10:26 +020039 struct clk *clk_delay;
40 struct clk *clk_reg;
41 void __iomem *base;
42 spinlock_t lock;
43 u32 delay_us;
44};
45
46#define to_rgu_data(p) container_of(p, struct lpc18xx_rgu_data, rcdev)
47
Joachim Eastwood773fe7262016-02-20 20:06:49 +010048static int lpc18xx_rgu_restart(struct notifier_block *nb, unsigned long mode,
Joachim Eastwoodc392b652015-05-06 00:10:26 +020049 void *cmd)
50{
Joachim Eastwood773fe7262016-02-20 20:06:49 +010051 struct lpc18xx_rgu_data *rc = container_of(nb, struct lpc18xx_rgu_data,
52 restart_nb);
53
54 writel(BIT(LPC18XX_RGU_CORE_RST), rc->base + LPC18XX_RGU_CTRL0);
Joachim Eastwoodc392b652015-05-06 00:10:26 +020055 mdelay(2000);
56
57 pr_emerg("%s: unable to restart system\n", __func__);
58
59 return NOTIFY_DONE;
60}
61
Joachim Eastwoodc392b652015-05-06 00:10:26 +020062/*
63 * The LPC18xx RGU has mostly self-deasserting resets except for the
64 * two reset lines going to the internal Cortex-M0 cores.
65 *
66 * To prevent the M0 core resets from accidentally getting deasserted
67 * status register must be check and bits in control register set to
68 * preserve the state.
69 */
70static int lpc18xx_rgu_setclear_reset(struct reset_controller_dev *rcdev,
71 unsigned long id, bool set)
72{
73 struct lpc18xx_rgu_data *rc = to_rgu_data(rcdev);
74 u32 stat_offset = LPC18XX_RGU_ACTIVE_STATUS0;
75 u32 ctrl_offset = LPC18XX_RGU_CTRL0;
76 unsigned long flags;
77 u32 stat, rst_bit;
78
79 stat_offset += (id / LPC18XX_RGU_RESETS_PER_REG) * sizeof(u32);
80 ctrl_offset += (id / LPC18XX_RGU_RESETS_PER_REG) * sizeof(u32);
81 rst_bit = 1 << (id % LPC18XX_RGU_RESETS_PER_REG);
82
83 spin_lock_irqsave(&rc->lock, flags);
84 stat = ~readl(rc->base + stat_offset);
85 if (set)
86 writel(stat | rst_bit, rc->base + ctrl_offset);
87 else
88 writel(stat & ~rst_bit, rc->base + ctrl_offset);
89 spin_unlock_irqrestore(&rc->lock, flags);
90
91 return 0;
92}
93
94static int lpc18xx_rgu_assert(struct reset_controller_dev *rcdev,
95 unsigned long id)
96{
97 return lpc18xx_rgu_setclear_reset(rcdev, id, true);
98}
99
100static int lpc18xx_rgu_deassert(struct reset_controller_dev *rcdev,
101 unsigned long id)
102{
103 return lpc18xx_rgu_setclear_reset(rcdev, id, false);
104}
105
106/* Only M0 cores require explicit reset deassert */
107static int lpc18xx_rgu_reset(struct reset_controller_dev *rcdev,
108 unsigned long id)
109{
110 struct lpc18xx_rgu_data *rc = to_rgu_data(rcdev);
111
112 lpc18xx_rgu_assert(rcdev, id);
113 udelay(rc->delay_us);
114
115 switch (id) {
116 case LPC43XX_RGU_M0SUB_RST:
117 case LPC43XX_RGU_M0APP_RST:
118 lpc18xx_rgu_setclear_reset(rcdev, id, false);
119 }
120
121 return 0;
122}
123
124static int lpc18xx_rgu_status(struct reset_controller_dev *rcdev,
125 unsigned long id)
126{
127 struct lpc18xx_rgu_data *rc = to_rgu_data(rcdev);
128 u32 bit, offset = LPC18XX_RGU_ACTIVE_STATUS0;
129
130 offset += (id / LPC18XX_RGU_RESETS_PER_REG) * sizeof(u32);
131 bit = 1 << (id % LPC18XX_RGU_RESETS_PER_REG);
132
133 return !(readl(rc->base + offset) & bit);
134}
135
Philipp Zabel1a55cad2016-01-17 15:13:20 +0100136static const struct reset_control_ops lpc18xx_rgu_ops = {
Joachim Eastwoodc392b652015-05-06 00:10:26 +0200137 .reset = lpc18xx_rgu_reset,
138 .assert = lpc18xx_rgu_assert,
139 .deassert = lpc18xx_rgu_deassert,
140 .status = lpc18xx_rgu_status,
141};
142
143static int lpc18xx_rgu_probe(struct platform_device *pdev)
144{
145 struct lpc18xx_rgu_data *rc;
146 struct resource *res;
147 u32 fcclk, firc;
148 int ret;
149
150 rc = devm_kzalloc(&pdev->dev, sizeof(*rc), GFP_KERNEL);
151 if (!rc)
152 return -ENOMEM;
153
154 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
155 rc->base = devm_ioremap_resource(&pdev->dev, res);
156 if (IS_ERR(rc->base))
157 return PTR_ERR(rc->base);
158
159 rc->clk_reg = devm_clk_get(&pdev->dev, "reg");
160 if (IS_ERR(rc->clk_reg)) {
161 dev_err(&pdev->dev, "reg clock not found\n");
162 return PTR_ERR(rc->clk_reg);
163 }
164
165 rc->clk_delay = devm_clk_get(&pdev->dev, "delay");
166 if (IS_ERR(rc->clk_delay)) {
167 dev_err(&pdev->dev, "delay clock not found\n");
168 return PTR_ERR(rc->clk_delay);
169 }
170
171 ret = clk_prepare_enable(rc->clk_reg);
172 if (ret) {
173 dev_err(&pdev->dev, "unable to enable reg clock\n");
174 return ret;
175 }
176
177 ret = clk_prepare_enable(rc->clk_delay);
178 if (ret) {
179 dev_err(&pdev->dev, "unable to enable delay clock\n");
180 goto dis_clk_reg;
181 }
182
183 fcclk = clk_get_rate(rc->clk_reg) / USEC_PER_SEC;
184 firc = clk_get_rate(rc->clk_delay) / USEC_PER_SEC;
185 if (fcclk == 0 || firc == 0)
186 rc->delay_us = 2;
187 else
188 rc->delay_us = DIV_ROUND_UP(fcclk, firc * firc);
189
190 spin_lock_init(&rc->lock);
191
192 rc->rcdev.owner = THIS_MODULE;
193 rc->rcdev.nr_resets = 64;
194 rc->rcdev.ops = &lpc18xx_rgu_ops;
195 rc->rcdev.of_node = pdev->dev.of_node;
196
197 platform_set_drvdata(pdev, rc);
198
199 ret = reset_controller_register(&rc->rcdev);
200 if (ret) {
201 dev_err(&pdev->dev, "unable to register device\n");
202 goto dis_clks;
203 }
204
Joachim Eastwood773fe7262016-02-20 20:06:49 +0100205 rc->restart_nb.priority = 192,
206 rc->restart_nb.notifier_call = lpc18xx_rgu_restart,
207 ret = register_restart_handler(&rc->restart_nb);
Joachim Eastwoodc392b652015-05-06 00:10:26 +0200208 if (ret)
209 dev_warn(&pdev->dev, "failed to register restart handler\n");
210
211 return 0;
212
213dis_clks:
214 clk_disable_unprepare(rc->clk_delay);
215dis_clk_reg:
216 clk_disable_unprepare(rc->clk_reg);
217
218 return ret;
219}
220
221static int lpc18xx_rgu_remove(struct platform_device *pdev)
222{
223 struct lpc18xx_rgu_data *rc = platform_get_drvdata(pdev);
224 int ret;
225
Joachim Eastwood773fe7262016-02-20 20:06:49 +0100226 ret = unregister_restart_handler(&rc->restart_nb);
Joachim Eastwoodc392b652015-05-06 00:10:26 +0200227 if (ret)
228 dev_warn(&pdev->dev, "failed to unregister restart handler\n");
229
230 reset_controller_unregister(&rc->rcdev);
231
232 clk_disable_unprepare(rc->clk_delay);
233 clk_disable_unprepare(rc->clk_reg);
234
235 return 0;
236}
237
238static const struct of_device_id lpc18xx_rgu_match[] = {
239 { .compatible = "nxp,lpc1850-rgu" },
240 { }
241};
242MODULE_DEVICE_TABLE(of, lpc18xx_rgu_match);
243
244static struct platform_driver lpc18xx_rgu_driver = {
245 .probe = lpc18xx_rgu_probe,
246 .remove = lpc18xx_rgu_remove,
247 .driver = {
248 .name = "lpc18xx-reset",
249 .of_match_table = lpc18xx_rgu_match,
250 },
251};
252module_platform_driver(lpc18xx_rgu_driver);
253
254MODULE_AUTHOR("Joachim Eastwood <manabian@gmail.com>");
255MODULE_DESCRIPTION("Reset driver for LPC18xx/43xx RGU");
256MODULE_LICENSE("GPL v2");