blob: e8bb023ff15e12adb853e2adfb72edf4d188141d [file] [log] [blame]
Masahiro Yamada54e991b2016-08-02 13:18:29 +09001/*
2 * Copyright (C) 2016 Socionext Inc.
3 * Author: Masahiro Yamada <yamada.masahiro@socionext.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 */
15
16#include <linux/mfd/syscon.h>
17#include <linux/module.h>
18#include <linux/of.h>
19#include <linux/of_device.h>
20#include <linux/platform_device.h>
21#include <linux/regmap.h>
22#include <linux/reset-controller.h>
23
24struct uniphier_reset_data {
25 unsigned int id;
26 unsigned int reg;
27 unsigned int bit;
28 unsigned int flags;
29#define UNIPHIER_RESET_ACTIVE_LOW BIT(0)
30};
31
32#define UNIPHIER_RESET_ID_END (unsigned int)(-1)
33
34#define UNIPHIER_RESET_END \
35 { .id = UNIPHIER_RESET_ID_END }
36
37#define UNIPHIER_RESET(_id, _reg, _bit) \
38 { \
39 .id = (_id), \
40 .reg = (_reg), \
41 .bit = (_bit), \
42 }
43
44#define UNIPHIER_RESETX(_id, _reg, _bit) \
45 { \
46 .id = (_id), \
47 .reg = (_reg), \
48 .bit = (_bit), \
49 .flags = UNIPHIER_RESET_ACTIVE_LOW, \
50 }
51
52/* System reset data */
Masahiro Yamada52810362017-08-06 11:44:01 +090053static const struct uniphier_reset_data uniphier_ld4_sys_reset_data[] = {
54 UNIPHIER_RESETX(2, 0x2000, 2), /* NAND */
55 UNIPHIER_RESETX(8, 0x2000, 10), /* STDMAC (Ether, HSC, MIO) */
Masahiro Yamada54e991b2016-08-02 13:18:29 +090056 UNIPHIER_RESET_END,
57};
58
Wei Yongjun716adfe2017-02-08 15:56:20 +000059static const struct uniphier_reset_data uniphier_pro4_sys_reset_data[] = {
Masahiro Yamada52810362017-08-06 11:44:01 +090060 UNIPHIER_RESETX(2, 0x2000, 2), /* NAND */
Kunihiko Hayashi4c05c4a2017-08-28 18:59:38 +090061 UNIPHIER_RESETX(6, 0x2000, 12), /* Ether */
Masahiro Yamada52810362017-08-06 11:44:01 +090062 UNIPHIER_RESETX(8, 0x2000, 10), /* STDMAC (HSC, MIO, RLE) */
Masahiro Yamadadec173c2017-08-06 11:44:02 +090063 UNIPHIER_RESETX(12, 0x2000, 6), /* GIO (Ether, SATA, USB3) */
64 UNIPHIER_RESETX(14, 0x2000, 17), /* USB30 */
65 UNIPHIER_RESETX(15, 0x2004, 17), /* USB31 */
Masahiro Yamada54e991b2016-08-02 13:18:29 +090066 UNIPHIER_RESET_END,
67};
68
Wei Yongjun716adfe2017-02-08 15:56:20 +000069static const struct uniphier_reset_data uniphier_pro5_sys_reset_data[] = {
Masahiro Yamada52810362017-08-06 11:44:01 +090070 UNIPHIER_RESETX(2, 0x2000, 2), /* NAND */
71 UNIPHIER_RESETX(8, 0x2000, 10), /* STDMAC (HSC) */
Masahiro Yamadadec173c2017-08-06 11:44:02 +090072 UNIPHIER_RESETX(12, 0x2000, 6), /* GIO (PCIe, USB3) */
73 UNIPHIER_RESETX(14, 0x2000, 17), /* USB30 */
74 UNIPHIER_RESETX(15, 0x2004, 17), /* USB31 */
Masahiro Yamada54e991b2016-08-02 13:18:29 +090075 UNIPHIER_RESET_END,
76};
77
Wei Yongjun716adfe2017-02-08 15:56:20 +000078static const struct uniphier_reset_data uniphier_pxs2_sys_reset_data[] = {
Masahiro Yamada52810362017-08-06 11:44:01 +090079 UNIPHIER_RESETX(2, 0x2000, 2), /* NAND */
Kunihiko Hayashi4c05c4a2017-08-28 18:59:38 +090080 UNIPHIER_RESETX(6, 0x2000, 12), /* Ether */
Masahiro Yamada52810362017-08-06 11:44:01 +090081 UNIPHIER_RESETX(8, 0x2000, 10), /* STDMAC (HSC, RLE) */
Masahiro Yamadadec173c2017-08-06 11:44:02 +090082 UNIPHIER_RESETX(14, 0x2000, 17), /* USB30 */
83 UNIPHIER_RESETX(15, 0x2004, 17), /* USB31 */
Masahiro Yamada54e991b2016-08-02 13:18:29 +090084 UNIPHIER_RESETX(16, 0x2014, 4), /* USB30-PHY0 */
85 UNIPHIER_RESETX(17, 0x2014, 0), /* USB30-PHY1 */
86 UNIPHIER_RESETX(18, 0x2014, 2), /* USB30-PHY2 */
87 UNIPHIER_RESETX(20, 0x2014, 5), /* USB31-PHY0 */
88 UNIPHIER_RESETX(21, 0x2014, 1), /* USB31-PHY1 */
89 UNIPHIER_RESETX(28, 0x2014, 12), /* SATA */
90 UNIPHIER_RESET(29, 0x2014, 8), /* SATA-PHY (active high) */
91 UNIPHIER_RESET_END,
92};
93
Wei Yongjun716adfe2017-02-08 15:56:20 +000094static const struct uniphier_reset_data uniphier_ld11_sys_reset_data[] = {
Masahiro Yamadadec173c2017-08-06 11:44:02 +090095 UNIPHIER_RESETX(2, 0x200c, 0), /* NAND */
96 UNIPHIER_RESETX(4, 0x200c, 2), /* eMMC */
Kunihiko Hayashi4c05c4a2017-08-28 18:59:38 +090097 UNIPHIER_RESETX(6, 0x200c, 6), /* Ether */
Masahiro Yamadadec173c2017-08-06 11:44:02 +090098 UNIPHIER_RESETX(8, 0x200c, 8), /* STDMAC (HSC, MIO) */
Katsuhiro Suzuki94e10c22017-08-13 18:00:41 +090099 UNIPHIER_RESETX(40, 0x2008, 0), /* AIO */
100 UNIPHIER_RESETX(41, 0x2008, 1), /* EVEA */
Katsuhiro Suzuki0f195432017-08-13 18:00:42 +0900101 UNIPHIER_RESETX(42, 0x2010, 2), /* EXIV */
Masahiro Yamada54e991b2016-08-02 13:18:29 +0900102 UNIPHIER_RESET_END,
103};
104
Wei Yongjun716adfe2017-02-08 15:56:20 +0000105static const struct uniphier_reset_data uniphier_ld20_sys_reset_data[] = {
Masahiro Yamadadec173c2017-08-06 11:44:02 +0900106 UNIPHIER_RESETX(2, 0x200c, 0), /* NAND */
107 UNIPHIER_RESETX(4, 0x200c, 2), /* eMMC */
Kunihiko Hayashi4c05c4a2017-08-28 18:59:38 +0900108 UNIPHIER_RESETX(6, 0x200c, 6), /* Ether */
Masahiro Yamadadec173c2017-08-06 11:44:02 +0900109 UNIPHIER_RESETX(8, 0x200c, 8), /* STDMAC (HSC) */
110 UNIPHIER_RESETX(12, 0x200c, 5), /* GIO (PCIe, USB3) */
Masahiro Yamada54e991b2016-08-02 13:18:29 +0900111 UNIPHIER_RESETX(16, 0x200c, 12), /* USB30-PHY0 */
112 UNIPHIER_RESETX(17, 0x200c, 13), /* USB30-PHY1 */
113 UNIPHIER_RESETX(18, 0x200c, 14), /* USB30-PHY2 */
114 UNIPHIER_RESETX(19, 0x200c, 15), /* USB30-PHY3 */
Katsuhiro Suzuki94e10c22017-08-13 18:00:41 +0900115 UNIPHIER_RESETX(40, 0x2008, 0), /* AIO */
116 UNIPHIER_RESETX(41, 0x2008, 1), /* EVEA */
Katsuhiro Suzuki0f195432017-08-13 18:00:42 +0900117 UNIPHIER_RESETX(42, 0x2010, 2), /* EXIV */
Masahiro Yamada54e991b2016-08-02 13:18:29 +0900118 UNIPHIER_RESET_END,
119};
120
Masahiro Yamada2a158f82017-10-05 11:30:57 +0900121static const struct uniphier_reset_data uniphier_pxs3_sys_reset_data[] = {
122 UNIPHIER_RESETX(2, 0x200c, 0), /* NAND */
123 UNIPHIER_RESETX(4, 0x200c, 2), /* eMMC */
124 UNIPHIER_RESETX(8, 0x200c, 12), /* STDMAC */
125 UNIPHIER_RESETX(12, 0x200c, 4), /* USB30 link (GIO0) */
126 UNIPHIER_RESETX(13, 0x200c, 5), /* USB31 link (GIO1) */
127 UNIPHIER_RESETX(16, 0x200c, 16), /* USB30-PHY0 */
128 UNIPHIER_RESETX(17, 0x200c, 18), /* USB30-PHY1 */
129 UNIPHIER_RESETX(18, 0x200c, 20), /* USB30-PHY2 */
130 UNIPHIER_RESETX(20, 0x200c, 17), /* USB31-PHY0 */
131 UNIPHIER_RESETX(21, 0x200c, 19), /* USB31-PHY1 */
132 UNIPHIER_RESET_END,
133};
134
Masahiro Yamada54e991b2016-08-02 13:18:29 +0900135/* Media I/O reset data */
136#define UNIPHIER_MIO_RESET_SD(id, ch) \
137 UNIPHIER_RESETX((id), 0x110 + 0x200 * (ch), 0)
138
139#define UNIPHIER_MIO_RESET_SD_BRIDGE(id, ch) \
140 UNIPHIER_RESETX((id), 0x110 + 0x200 * (ch), 26)
141
142#define UNIPHIER_MIO_RESET_EMMC_HW_RESET(id, ch) \
143 UNIPHIER_RESETX((id), 0x80 + 0x200 * (ch), 0)
144
145#define UNIPHIER_MIO_RESET_USB2(id, ch) \
146 UNIPHIER_RESETX((id), 0x114 + 0x200 * (ch), 0)
147
148#define UNIPHIER_MIO_RESET_USB2_BRIDGE(id, ch) \
149 UNIPHIER_RESETX((id), 0x110 + 0x200 * (ch), 24)
150
151#define UNIPHIER_MIO_RESET_DMAC(id) \
152 UNIPHIER_RESETX((id), 0x110, 17)
153
Masahiro Yamada52810362017-08-06 11:44:01 +0900154static const struct uniphier_reset_data uniphier_ld4_mio_reset_data[] = {
Masahiro Yamada54e991b2016-08-02 13:18:29 +0900155 UNIPHIER_MIO_RESET_SD(0, 0),
156 UNIPHIER_MIO_RESET_SD(1, 1),
157 UNIPHIER_MIO_RESET_SD(2, 2),
158 UNIPHIER_MIO_RESET_SD_BRIDGE(3, 0),
159 UNIPHIER_MIO_RESET_SD_BRIDGE(4, 1),
160 UNIPHIER_MIO_RESET_SD_BRIDGE(5, 2),
161 UNIPHIER_MIO_RESET_EMMC_HW_RESET(6, 1),
162 UNIPHIER_MIO_RESET_DMAC(7),
163 UNIPHIER_MIO_RESET_USB2(8, 0),
164 UNIPHIER_MIO_RESET_USB2(9, 1),
165 UNIPHIER_MIO_RESET_USB2(10, 2),
Masahiro Yamada54e991b2016-08-02 13:18:29 +0900166 UNIPHIER_MIO_RESET_USB2_BRIDGE(12, 0),
167 UNIPHIER_MIO_RESET_USB2_BRIDGE(13, 1),
168 UNIPHIER_MIO_RESET_USB2_BRIDGE(14, 2),
Masahiro Yamada54e991b2016-08-02 13:18:29 +0900169 UNIPHIER_RESET_END,
170};
171
Wei Yongjun716adfe2017-02-08 15:56:20 +0000172static const struct uniphier_reset_data uniphier_pro5_sd_reset_data[] = {
Masahiro Yamada54e991b2016-08-02 13:18:29 +0900173 UNIPHIER_MIO_RESET_SD(0, 0),
174 UNIPHIER_MIO_RESET_SD(1, 1),
175 UNIPHIER_MIO_RESET_EMMC_HW_RESET(6, 1),
176 UNIPHIER_RESET_END,
177};
178
179/* Peripheral reset data */
180#define UNIPHIER_PERI_RESET_UART(id, ch) \
181 UNIPHIER_RESETX((id), 0x114, 19 + (ch))
182
183#define UNIPHIER_PERI_RESET_I2C(id, ch) \
184 UNIPHIER_RESETX((id), 0x114, 5 + (ch))
185
186#define UNIPHIER_PERI_RESET_FI2C(id, ch) \
187 UNIPHIER_RESETX((id), 0x114, 24 + (ch))
188
Wei Yongjun716adfe2017-02-08 15:56:20 +0000189static const struct uniphier_reset_data uniphier_ld4_peri_reset_data[] = {
Masahiro Yamada54e991b2016-08-02 13:18:29 +0900190 UNIPHIER_PERI_RESET_UART(0, 0),
191 UNIPHIER_PERI_RESET_UART(1, 1),
192 UNIPHIER_PERI_RESET_UART(2, 2),
193 UNIPHIER_PERI_RESET_UART(3, 3),
194 UNIPHIER_PERI_RESET_I2C(4, 0),
195 UNIPHIER_PERI_RESET_I2C(5, 1),
196 UNIPHIER_PERI_RESET_I2C(6, 2),
197 UNIPHIER_PERI_RESET_I2C(7, 3),
198 UNIPHIER_PERI_RESET_I2C(8, 4),
199 UNIPHIER_RESET_END,
200};
201
Wei Yongjun716adfe2017-02-08 15:56:20 +0000202static const struct uniphier_reset_data uniphier_pro4_peri_reset_data[] = {
Masahiro Yamada54e991b2016-08-02 13:18:29 +0900203 UNIPHIER_PERI_RESET_UART(0, 0),
204 UNIPHIER_PERI_RESET_UART(1, 1),
205 UNIPHIER_PERI_RESET_UART(2, 2),
206 UNIPHIER_PERI_RESET_UART(3, 3),
207 UNIPHIER_PERI_RESET_FI2C(4, 0),
208 UNIPHIER_PERI_RESET_FI2C(5, 1),
209 UNIPHIER_PERI_RESET_FI2C(6, 2),
210 UNIPHIER_PERI_RESET_FI2C(7, 3),
211 UNIPHIER_PERI_RESET_FI2C(8, 4),
212 UNIPHIER_PERI_RESET_FI2C(9, 5),
213 UNIPHIER_PERI_RESET_FI2C(10, 6),
214 UNIPHIER_RESET_END,
215};
216
Katsuhiro Suzukiac0c7352017-08-13 18:00:43 +0900217/* Analog signal amplifiers reset data */
218static const struct uniphier_reset_data uniphier_ld11_adamv_reset_data[] = {
219 UNIPHIER_RESETX(0, 0x10, 6), /* EVEA */
220 UNIPHIER_RESET_END,
221};
222
Masahiro Yamada54e991b2016-08-02 13:18:29 +0900223/* core implementaton */
224struct uniphier_reset_priv {
225 struct reset_controller_dev rcdev;
226 struct device *dev;
227 struct regmap *regmap;
228 const struct uniphier_reset_data *data;
229};
230
231#define to_uniphier_reset_priv(_rcdev) \
232 container_of(_rcdev, struct uniphier_reset_priv, rcdev)
233
234static int uniphier_reset_update(struct reset_controller_dev *rcdev,
235 unsigned long id, int assert)
236{
237 struct uniphier_reset_priv *priv = to_uniphier_reset_priv(rcdev);
238 const struct uniphier_reset_data *p;
239
240 for (p = priv->data; p->id != UNIPHIER_RESET_ID_END; p++) {
241 unsigned int mask, val;
242
243 if (p->id != id)
244 continue;
245
246 mask = BIT(p->bit);
247
248 if (assert)
249 val = mask;
250 else
251 val = ~mask;
252
253 if (p->flags & UNIPHIER_RESET_ACTIVE_LOW)
254 val = ~val;
255
256 return regmap_write_bits(priv->regmap, p->reg, mask, val);
257 }
258
259 dev_err(priv->dev, "reset_id=%lu was not handled\n", id);
260 return -EINVAL;
261}
262
263static int uniphier_reset_assert(struct reset_controller_dev *rcdev,
264 unsigned long id)
265{
266 return uniphier_reset_update(rcdev, id, 1);
267}
268
269static int uniphier_reset_deassert(struct reset_controller_dev *rcdev,
270 unsigned long id)
271{
272 return uniphier_reset_update(rcdev, id, 0);
273}
274
275static int uniphier_reset_status(struct reset_controller_dev *rcdev,
276 unsigned long id)
277{
278 struct uniphier_reset_priv *priv = to_uniphier_reset_priv(rcdev);
279 const struct uniphier_reset_data *p;
280
281 for (p = priv->data; p->id != UNIPHIER_RESET_ID_END; p++) {
282 unsigned int val;
283 int ret, asserted;
284
285 if (p->id != id)
286 continue;
287
288 ret = regmap_read(priv->regmap, p->reg, &val);
289 if (ret)
290 return ret;
291
292 asserted = !!(val & BIT(p->bit));
293
294 if (p->flags & UNIPHIER_RESET_ACTIVE_LOW)
295 asserted = !asserted;
296
297 return asserted;
298 }
299
300 dev_err(priv->dev, "reset_id=%lu was not found\n", id);
301 return -EINVAL;
302}
303
304static const struct reset_control_ops uniphier_reset_ops = {
305 .assert = uniphier_reset_assert,
306 .deassert = uniphier_reset_deassert,
307 .status = uniphier_reset_status,
308};
309
310static int uniphier_reset_probe(struct platform_device *pdev)
311{
312 struct device *dev = &pdev->dev;
313 struct uniphier_reset_priv *priv;
314 const struct uniphier_reset_data *p, *data;
315 struct regmap *regmap;
316 struct device_node *parent;
317 unsigned int nr_resets = 0;
318
319 data = of_device_get_match_data(dev);
320 if (WARN_ON(!data))
321 return -EINVAL;
322
323 parent = of_get_parent(dev->of_node); /* parent should be syscon node */
324 regmap = syscon_node_to_regmap(parent);
325 of_node_put(parent);
326 if (IS_ERR(regmap)) {
327 dev_err(dev, "failed to get regmap (error %ld)\n",
328 PTR_ERR(regmap));
329 return PTR_ERR(regmap);
330 }
331
332 priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
333 if (!priv)
334 return -ENOMEM;
335
336 for (p = data; p->id != UNIPHIER_RESET_ID_END; p++)
337 nr_resets = max(nr_resets, p->id + 1);
338
339 priv->rcdev.ops = &uniphier_reset_ops;
340 priv->rcdev.owner = dev->driver->owner;
341 priv->rcdev.of_node = dev->of_node;
342 priv->rcdev.nr_resets = nr_resets;
343 priv->dev = dev;
344 priv->regmap = regmap;
345 priv->data = data;
346
347 return devm_reset_controller_register(&pdev->dev, &priv->rcdev);
348}
349
350static const struct of_device_id uniphier_reset_match[] = {
351 /* System reset */
352 {
Masahiro Yamada54e991b2016-08-02 13:18:29 +0900353 .compatible = "socionext,uniphier-ld4-reset",
Masahiro Yamada52810362017-08-06 11:44:01 +0900354 .data = uniphier_ld4_sys_reset_data,
Masahiro Yamada54e991b2016-08-02 13:18:29 +0900355 },
356 {
357 .compatible = "socionext,uniphier-pro4-reset",
358 .data = uniphier_pro4_sys_reset_data,
359 },
360 {
361 .compatible = "socionext,uniphier-sld8-reset",
Masahiro Yamada52810362017-08-06 11:44:01 +0900362 .data = uniphier_ld4_sys_reset_data,
Masahiro Yamada54e991b2016-08-02 13:18:29 +0900363 },
364 {
365 .compatible = "socionext,uniphier-pro5-reset",
366 .data = uniphier_pro5_sys_reset_data,
367 },
368 {
369 .compatible = "socionext,uniphier-pxs2-reset",
370 .data = uniphier_pxs2_sys_reset_data,
371 },
372 {
373 .compatible = "socionext,uniphier-ld11-reset",
374 .data = uniphier_ld11_sys_reset_data,
375 },
376 {
377 .compatible = "socionext,uniphier-ld20-reset",
378 .data = uniphier_ld20_sys_reset_data,
379 },
Masahiro Yamada2a158f82017-10-05 11:30:57 +0900380 {
381 .compatible = "socionext,uniphier-pxs3-reset",
382 .data = uniphier_pxs3_sys_reset_data,
383 },
Masahiro Yamada19eb4a42016-10-19 17:23:49 +0900384 /* Media I/O reset, SD reset */
Masahiro Yamada54e991b2016-08-02 13:18:29 +0900385 {
Masahiro Yamada54e991b2016-08-02 13:18:29 +0900386 .compatible = "socionext,uniphier-ld4-mio-reset",
Masahiro Yamada52810362017-08-06 11:44:01 +0900387 .data = uniphier_ld4_mio_reset_data,
Masahiro Yamada54e991b2016-08-02 13:18:29 +0900388 },
389 {
390 .compatible = "socionext,uniphier-pro4-mio-reset",
Masahiro Yamada52810362017-08-06 11:44:01 +0900391 .data = uniphier_ld4_mio_reset_data,
Masahiro Yamada54e991b2016-08-02 13:18:29 +0900392 },
393 {
394 .compatible = "socionext,uniphier-sld8-mio-reset",
Masahiro Yamada52810362017-08-06 11:44:01 +0900395 .data = uniphier_ld4_mio_reset_data,
Masahiro Yamada54e991b2016-08-02 13:18:29 +0900396 },
397 {
Masahiro Yamada19eb4a42016-10-19 17:23:49 +0900398 .compatible = "socionext,uniphier-pro5-sd-reset",
399 .data = uniphier_pro5_sd_reset_data,
Masahiro Yamada54e991b2016-08-02 13:18:29 +0900400 },
401 {
Masahiro Yamada19eb4a42016-10-19 17:23:49 +0900402 .compatible = "socionext,uniphier-pxs2-sd-reset",
403 .data = uniphier_pro5_sd_reset_data,
Masahiro Yamada54e991b2016-08-02 13:18:29 +0900404 },
405 {
406 .compatible = "socionext,uniphier-ld11-mio-reset",
Masahiro Yamada52810362017-08-06 11:44:01 +0900407 .data = uniphier_ld4_mio_reset_data,
Masahiro Yamada54e991b2016-08-02 13:18:29 +0900408 },
409 {
Masahiro Yamada88a7f522017-01-15 04:04:46 +0900410 .compatible = "socionext,uniphier-ld11-sd-reset",
411 .data = uniphier_pro5_sd_reset_data,
412 },
413 {
Masahiro Yamada19eb4a42016-10-19 17:23:49 +0900414 .compatible = "socionext,uniphier-ld20-sd-reset",
415 .data = uniphier_pro5_sd_reset_data,
Masahiro Yamada54e991b2016-08-02 13:18:29 +0900416 },
Masahiro Yamada2a158f82017-10-05 11:30:57 +0900417 {
418 .compatible = "socionext,uniphier-pxs3-sd-reset",
419 .data = uniphier_pro5_sd_reset_data,
420 },
Masahiro Yamada54e991b2016-08-02 13:18:29 +0900421 /* Peripheral reset */
422 {
423 .compatible = "socionext,uniphier-ld4-peri-reset",
424 .data = uniphier_ld4_peri_reset_data,
425 },
426 {
427 .compatible = "socionext,uniphier-pro4-peri-reset",
428 .data = uniphier_pro4_peri_reset_data,
429 },
430 {
431 .compatible = "socionext,uniphier-sld8-peri-reset",
432 .data = uniphier_ld4_peri_reset_data,
433 },
434 {
435 .compatible = "socionext,uniphier-pro5-peri-reset",
436 .data = uniphier_pro4_peri_reset_data,
437 },
438 {
439 .compatible = "socionext,uniphier-pxs2-peri-reset",
440 .data = uniphier_pro4_peri_reset_data,
441 },
442 {
443 .compatible = "socionext,uniphier-ld11-peri-reset",
444 .data = uniphier_pro4_peri_reset_data,
445 },
446 {
447 .compatible = "socionext,uniphier-ld20-peri-reset",
448 .data = uniphier_pro4_peri_reset_data,
449 },
Masahiro Yamada2a158f82017-10-05 11:30:57 +0900450 {
451 .compatible = "socionext,uniphier-pxs3-peri-reset",
452 .data = uniphier_pro4_peri_reset_data,
453 },
Katsuhiro Suzukiac0c7352017-08-13 18:00:43 +0900454 /* Analog signal amplifiers reset */
455 {
456 .compatible = "socionext,uniphier-ld11-adamv-reset",
457 .data = uniphier_ld11_adamv_reset_data,
458 },
459 {
460 .compatible = "socionext,uniphier-ld20-adamv-reset",
461 .data = uniphier_ld11_adamv_reset_data,
462 },
Masahiro Yamada54e991b2016-08-02 13:18:29 +0900463 { /* sentinel */ }
464};
465MODULE_DEVICE_TABLE(of, uniphier_reset_match);
466
467static struct platform_driver uniphier_reset_driver = {
468 .probe = uniphier_reset_probe,
469 .driver = {
470 .name = "uniphier-reset",
471 .of_match_table = uniphier_reset_match,
472 },
473};
474module_platform_driver(uniphier_reset_driver);
475
476MODULE_AUTHOR("Masahiro Yamada <yamada.masahiro@socionext.com>");
477MODULE_DESCRIPTION("UniPhier Reset Controller Driver");
478MODULE_LICENSE("GPL");