1 /*
2 * RSB (Reduced Serial Bus) driver.
3 *
4 * Author: Chen-Yu Tsai <wens@csie.org>
5 *
6 * This file is licensed under the terms of the GNU General Public License
7 * version 2. This program is licensed "as is" without any warranty of any
8 * kind, whether express or implied.
9 *
10 * The RSB controller looks like an SMBus controller which only supports
11 * byte and word data transfers. But, it differs from standard SMBus
12 * protocol on several aspects:
13 * - it uses addresses set at runtime to address slaves. Runtime addresses
14 * are sent to slaves using their 12bit hardware addresses. Up to 15
15 * runtime addresses are available.
16 * - it adds a parity bit every 8bits of data and address for read and
17 * write accesses; this replaces the ack bit
18 * - only one read access is required to read a byte (instead of a write
19 * followed by a read access in standard SMBus protocol)
20 * - there's no Ack bit after each read access
21 *
22 * This means this bus cannot be used to interface with standard SMBus
23 * devices. Devices known to support this interface include the AXP223,
24 * AXP809, and AXP806 PMICs, and the AC100 audio codec, all from X-Powers.
25 *
26 * A description of the operation and wire protocol can be found in the
27 * RSB section of Allwinner's A80 user manual, which can be found at
28 *
29 * https://github.com/allwinner-zh/documents/tree/master/A80
30 *
31 * This document is officially released by Allwinner.
32 *
33 * This driver is based on i2c-sun6i-p2wi.c, the P2WI bus driver.
34 *
35 */
36
37 #include <linux/clk.h>
38 #include <linux/clk/clk-conf.h>
39 #include <linux/device.h>
40 #include <linux/interrupt.h>
41 #include <linux/io.h>
42 #include <linux/iopoll.h>
43 #include <linux/module.h>
44 #include <linux/of.h>
45 #include <linux/of_irq.h>
46 #include <linux/of_platform.h>
47 #include <linux/platform_device.h>
48 #include <linux/pm.h>
49 #include <linux/pm_runtime.h>
50 #include <linux/regmap.h>
51 #include <linux/reset.h>
52 #include <linux/slab.h>
53 #include <linux/sunxi-rsb.h>
54 #include <linux/types.h>
55
56 /* RSB registers */
57 #define RSB_CTRL 0x0 /* Global control */
58 #define RSB_CCR 0x4 /* Clock control */
59 #define RSB_INTE 0x8 /* Interrupt controls */
60 #define RSB_INTS 0xc /* Interrupt status */
61 #define RSB_ADDR 0x10 /* Address to send with read/write command */
62 #define RSB_DATA 0x1c /* Data to read/write */
63 #define RSB_LCR 0x24 /* Line control */
64 #define RSB_DMCR 0x28 /* Device mode (init) control */
65 #define RSB_CMD 0x2c /* RSB Command */
66 #define RSB_DAR 0x30 /* Device address / runtime address */
67
68 /* CTRL fields */
69 #define RSB_CTRL_START_TRANS BIT(7)
70 #define RSB_CTRL_ABORT_TRANS BIT(6)
71 #define RSB_CTRL_GLOBAL_INT_ENB BIT(1)
72 #define RSB_CTRL_SOFT_RST BIT(0)
73
74 /* CLK CTRL fields */
75 #define RSB_CCR_SDA_OUT_DELAY(v) (((v) & 0x7) << 8)
76 #define RSB_CCR_MAX_CLK_DIV 0xff
77 #define RSB_CCR_CLK_DIV(v) ((v) & RSB_CCR_MAX_CLK_DIV)
78
79 /* STATUS fields */
80 #define RSB_INTS_TRANS_ERR_ACK BIT(16)
81 #define RSB_INTS_TRANS_ERR_DATA_BIT(v) (((v) >> 8) & 0xf)
82 #define RSB_INTS_TRANS_ERR_DATA GENMASK(11, 8)
83 #define RSB_INTS_LOAD_BSY BIT(2)
84 #define RSB_INTS_TRANS_ERR BIT(1)
85 #define RSB_INTS_TRANS_OVER BIT(0)
86
87 /* LINE CTRL fields*/
88 #define RSB_LCR_SCL_STATE BIT(5)
89 #define RSB_LCR_SDA_STATE BIT(4)
90 #define RSB_LCR_SCL_CTL BIT(3)
91 #define RSB_LCR_SCL_CTL_EN BIT(2)
92 #define RSB_LCR_SDA_CTL BIT(1)
93 #define RSB_LCR_SDA_CTL_EN BIT(0)
94
95 /* DEVICE MODE CTRL field values */
96 #define RSB_DMCR_DEVICE_START BIT(31)
97 #define RSB_DMCR_MODE_DATA (0x7c << 16)
98 #define RSB_DMCR_MODE_REG (0x3e << 8)
99 #define RSB_DMCR_DEV_ADDR 0x00
100
101 /* CMD values */
102 #define RSB_CMD_RD8 0x8b
103 #define RSB_CMD_RD16 0x9c
104 #define RSB_CMD_RD32 0xa6
105 #define RSB_CMD_WR8 0x4e
106 #define RSB_CMD_WR16 0x59
107 #define RSB_CMD_WR32 0x63
108 #define RSB_CMD_STRA 0xe8
109
110 /* DAR fields */
111 #define RSB_DAR_RTA(v) (((v) & 0xff) << 16)
112 #define RSB_DAR_DA(v) ((v) & 0xffff)
113
114 #define RSB_MAX_FREQ 20000000
115
116 #define RSB_CTRL_NAME "sunxi-rsb"
117
118 struct sunxi_rsb_addr_map {
119 u16 hwaddr;
120 u8 rtaddr;
121 };
122
123 struct sunxi_rsb {
124 struct device *dev;
125 void __iomem *regs;
126 struct clk *clk;
127 struct reset_control *rstc;
128 struct completion complete;
129 struct mutex lock;
130 unsigned int status;
131 u32 clk_freq;
132 };
133
134 /* bus / slave device related functions */
135 static struct bus_type sunxi_rsb_bus;
136
sunxi_rsb_device_match(struct device * dev,struct device_driver * drv)137 static int sunxi_rsb_device_match(struct device *dev, struct device_driver *drv)
138 {
139 return of_driver_match_device(dev, drv);
140 }
141
sunxi_rsb_device_probe(struct device * dev)142 static int sunxi_rsb_device_probe(struct device *dev)
143 {
144 const struct sunxi_rsb_driver *drv = to_sunxi_rsb_driver(dev->driver);
145 struct sunxi_rsb_device *rdev = to_sunxi_rsb_device(dev);
146 int ret;
147
148 if (!drv->probe)
149 return -ENODEV;
150
151 if (!rdev->irq) {
152 int irq = -ENOENT;
153
154 if (dev->of_node)
155 irq = of_irq_get(dev->of_node, 0);
156
157 if (irq == -EPROBE_DEFER)
158 return irq;
159 if (irq < 0)
160 irq = 0;
161
162 rdev->irq = irq;
163 }
164
165 ret = of_clk_set_defaults(dev->of_node, false);
166 if (ret < 0)
167 return ret;
168
169 return drv->probe(rdev);
170 }
171
sunxi_rsb_device_remove(struct device * dev)172 static void sunxi_rsb_device_remove(struct device *dev)
173 {
174 const struct sunxi_rsb_driver *drv = to_sunxi_rsb_driver(dev->driver);
175
176 drv->remove(to_sunxi_rsb_device(dev));
177 }
178
179 static struct bus_type sunxi_rsb_bus = {
180 .name = RSB_CTRL_NAME,
181 .match = sunxi_rsb_device_match,
182 .probe = sunxi_rsb_device_probe,
183 .remove = sunxi_rsb_device_remove,
184 .uevent = of_device_uevent_modalias,
185 };
186
sunxi_rsb_dev_release(struct device * dev)187 static void sunxi_rsb_dev_release(struct device *dev)
188 {
189 struct sunxi_rsb_device *rdev = to_sunxi_rsb_device(dev);
190
191 kfree(rdev);
192 }
193
194 /**
195 * sunxi_rsb_device_create() - allocate and add an RSB device
196 * @rsb: RSB controller
197 * @node: RSB slave device node
198 * @hwaddr: RSB slave hardware address
199 * @rtaddr: RSB slave runtime address
200 */
sunxi_rsb_device_create(struct sunxi_rsb * rsb,struct device_node * node,u16 hwaddr,u8 rtaddr)201 static struct sunxi_rsb_device *sunxi_rsb_device_create(struct sunxi_rsb *rsb,
202 struct device_node *node, u16 hwaddr, u8 rtaddr)
203 {
204 int err;
205 struct sunxi_rsb_device *rdev;
206
207 rdev = kzalloc(sizeof(*rdev), GFP_KERNEL);
208 if (!rdev)
209 return ERR_PTR(-ENOMEM);
210
211 rdev->rsb = rsb;
212 rdev->hwaddr = hwaddr;
213 rdev->rtaddr = rtaddr;
214 rdev->dev.bus = &sunxi_rsb_bus;
215 rdev->dev.parent = rsb->dev;
216 rdev->dev.of_node = node;
217 rdev->dev.release = sunxi_rsb_dev_release;
218
219 dev_set_name(&rdev->dev, "%s-%x", RSB_CTRL_NAME, hwaddr);
220
221 err = device_register(&rdev->dev);
222 if (err < 0) {
223 dev_err(&rdev->dev, "Can't add %s, status %d\n",
224 dev_name(&rdev->dev), err);
225 goto err_device_add;
226 }
227
228 dev_dbg(&rdev->dev, "device %s registered\n", dev_name(&rdev->dev));
229
230 return rdev;
231
232 err_device_add:
233 put_device(&rdev->dev);
234
235 return ERR_PTR(err);
236 }
237
238 /**
239 * sunxi_rsb_device_unregister(): unregister an RSB device
240 * @rdev: rsb_device to be removed
241 */
sunxi_rsb_device_unregister(struct sunxi_rsb_device * rdev)242 static void sunxi_rsb_device_unregister(struct sunxi_rsb_device *rdev)
243 {
244 device_unregister(&rdev->dev);
245 }
246
sunxi_rsb_remove_devices(struct device * dev,void * data)247 static int sunxi_rsb_remove_devices(struct device *dev, void *data)
248 {
249 struct sunxi_rsb_device *rdev = to_sunxi_rsb_device(dev);
250
251 if (dev->bus == &sunxi_rsb_bus)
252 sunxi_rsb_device_unregister(rdev);
253
254 return 0;
255 }
256
257 /**
258 * sunxi_rsb_driver_register() - Register device driver with RSB core
259 * @rdrv: device driver to be associated with slave-device.
260 *
261 * This API will register the client driver with the RSB framework.
262 * It is typically called from the driver's module-init function.
263 */
sunxi_rsb_driver_register(struct sunxi_rsb_driver * rdrv)264 int sunxi_rsb_driver_register(struct sunxi_rsb_driver *rdrv)
265 {
266 rdrv->driver.bus = &sunxi_rsb_bus;
267 return driver_register(&rdrv->driver);
268 }
269 EXPORT_SYMBOL_GPL(sunxi_rsb_driver_register);
270
271 /* common code that starts a transfer */
_sunxi_rsb_run_xfer(struct sunxi_rsb * rsb)272 static int _sunxi_rsb_run_xfer(struct sunxi_rsb *rsb)
273 {
274 u32 int_mask, status;
275 bool timeout;
276
277 if (readl(rsb->regs + RSB_CTRL) & RSB_CTRL_START_TRANS) {
278 dev_dbg(rsb->dev, "RSB transfer still in progress\n");
279 return -EBUSY;
280 }
281
282 reinit_completion(&rsb->complete);
283
284 int_mask = RSB_INTS_LOAD_BSY | RSB_INTS_TRANS_ERR | RSB_INTS_TRANS_OVER;
285 writel(int_mask, rsb->regs + RSB_INTE);
286 writel(RSB_CTRL_START_TRANS | RSB_CTRL_GLOBAL_INT_ENB,
287 rsb->regs + RSB_CTRL);
288
289 if (irqs_disabled()) {
290 timeout = readl_poll_timeout_atomic(rsb->regs + RSB_INTS,
291 status, (status & int_mask),
292 10, 100000);
293 writel(status, rsb->regs + RSB_INTS);
294 } else {
295 timeout = !wait_for_completion_io_timeout(&rsb->complete,
296 msecs_to_jiffies(100));
297 status = rsb->status;
298 }
299
300 if (timeout) {
301 dev_dbg(rsb->dev, "RSB timeout\n");
302
303 /* abort the transfer */
304 writel(RSB_CTRL_ABORT_TRANS, rsb->regs + RSB_CTRL);
305
306 /* clear any interrupt flags */
307 writel(readl(rsb->regs + RSB_INTS), rsb->regs + RSB_INTS);
308
309 return -ETIMEDOUT;
310 }
311
312 if (status & RSB_INTS_LOAD_BSY) {
313 dev_dbg(rsb->dev, "RSB busy\n");
314 return -EBUSY;
315 }
316
317 if (status & RSB_INTS_TRANS_ERR) {
318 if (status & RSB_INTS_TRANS_ERR_ACK) {
319 dev_dbg(rsb->dev, "RSB slave nack\n");
320 return -EINVAL;
321 }
322
323 if (status & RSB_INTS_TRANS_ERR_DATA) {
324 dev_dbg(rsb->dev, "RSB transfer data error\n");
325 return -EIO;
326 }
327 }
328
329 return 0;
330 }
331
sunxi_rsb_read(struct sunxi_rsb * rsb,u8 rtaddr,u8 addr,u32 * buf,size_t len)332 static int sunxi_rsb_read(struct sunxi_rsb *rsb, u8 rtaddr, u8 addr,
333 u32 *buf, size_t len)
334 {
335 u32 cmd;
336 int ret;
337
338 if (!buf)
339 return -EINVAL;
340
341 switch (len) {
342 case 1:
343 cmd = RSB_CMD_RD8;
344 break;
345 case 2:
346 cmd = RSB_CMD_RD16;
347 break;
348 case 4:
349 cmd = RSB_CMD_RD32;
350 break;
351 default:
352 dev_err(rsb->dev, "Invalid access width: %zd\n", len);
353 return -EINVAL;
354 }
355
356 ret = pm_runtime_resume_and_get(rsb->dev);
357 if (ret)
358 return ret;
359
360 mutex_lock(&rsb->lock);
361
362 writel(addr, rsb->regs + RSB_ADDR);
363 writel(RSB_DAR_RTA(rtaddr), rsb->regs + RSB_DAR);
364 writel(cmd, rsb->regs + RSB_CMD);
365
366 ret = _sunxi_rsb_run_xfer(rsb);
367 if (ret)
368 goto unlock;
369
370 *buf = readl(rsb->regs + RSB_DATA) & GENMASK(len * 8 - 1, 0);
371
372 unlock:
373 mutex_unlock(&rsb->lock);
374
375 pm_runtime_mark_last_busy(rsb->dev);
376 pm_runtime_put_autosuspend(rsb->dev);
377
378 return ret;
379 }
380
sunxi_rsb_write(struct sunxi_rsb * rsb,u8 rtaddr,u8 addr,const u32 * buf,size_t len)381 static int sunxi_rsb_write(struct sunxi_rsb *rsb, u8 rtaddr, u8 addr,
382 const u32 *buf, size_t len)
383 {
384 u32 cmd;
385 int ret;
386
387 if (!buf)
388 return -EINVAL;
389
390 switch (len) {
391 case 1:
392 cmd = RSB_CMD_WR8;
393 break;
394 case 2:
395 cmd = RSB_CMD_WR16;
396 break;
397 case 4:
398 cmd = RSB_CMD_WR32;
399 break;
400 default:
401 dev_err(rsb->dev, "Invalid access width: %zd\n", len);
402 return -EINVAL;
403 }
404
405 ret = pm_runtime_resume_and_get(rsb->dev);
406 if (ret)
407 return ret;
408
409 mutex_lock(&rsb->lock);
410
411 writel(addr, rsb->regs + RSB_ADDR);
412 writel(RSB_DAR_RTA(rtaddr), rsb->regs + RSB_DAR);
413 writel(*buf, rsb->regs + RSB_DATA);
414 writel(cmd, rsb->regs + RSB_CMD);
415 ret = _sunxi_rsb_run_xfer(rsb);
416
417 mutex_unlock(&rsb->lock);
418
419 pm_runtime_mark_last_busy(rsb->dev);
420 pm_runtime_put_autosuspend(rsb->dev);
421
422 return ret;
423 }
424
425 /* RSB regmap functions */
426 struct sunxi_rsb_ctx {
427 struct sunxi_rsb_device *rdev;
428 int size;
429 };
430
regmap_sunxi_rsb_reg_read(void * context,unsigned int reg,unsigned int * val)431 static int regmap_sunxi_rsb_reg_read(void *context, unsigned int reg,
432 unsigned int *val)
433 {
434 struct sunxi_rsb_ctx *ctx = context;
435 struct sunxi_rsb_device *rdev = ctx->rdev;
436
437 if (reg > 0xff)
438 return -EINVAL;
439
440 return sunxi_rsb_read(rdev->rsb, rdev->rtaddr, reg, val, ctx->size);
441 }
442
regmap_sunxi_rsb_reg_write(void * context,unsigned int reg,unsigned int val)443 static int regmap_sunxi_rsb_reg_write(void *context, unsigned int reg,
444 unsigned int val)
445 {
446 struct sunxi_rsb_ctx *ctx = context;
447 struct sunxi_rsb_device *rdev = ctx->rdev;
448
449 return sunxi_rsb_write(rdev->rsb, rdev->rtaddr, reg, &val, ctx->size);
450 }
451
regmap_sunxi_rsb_free_ctx(void * context)452 static void regmap_sunxi_rsb_free_ctx(void *context)
453 {
454 struct sunxi_rsb_ctx *ctx = context;
455
456 kfree(ctx);
457 }
458
459 static struct regmap_bus regmap_sunxi_rsb = {
460 .reg_write = regmap_sunxi_rsb_reg_write,
461 .reg_read = regmap_sunxi_rsb_reg_read,
462 .free_context = regmap_sunxi_rsb_free_ctx,
463 .reg_format_endian_default = REGMAP_ENDIAN_NATIVE,
464 .val_format_endian_default = REGMAP_ENDIAN_NATIVE,
465 };
466
regmap_sunxi_rsb_init_ctx(struct sunxi_rsb_device * rdev,const struct regmap_config * config)467 static struct sunxi_rsb_ctx *regmap_sunxi_rsb_init_ctx(struct sunxi_rsb_device *rdev,
468 const struct regmap_config *config)
469 {
470 struct sunxi_rsb_ctx *ctx;
471
472 switch (config->val_bits) {
473 case 8:
474 case 16:
475 case 32:
476 break;
477 default:
478 return ERR_PTR(-EINVAL);
479 }
480
481 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
482 if (!ctx)
483 return ERR_PTR(-ENOMEM);
484
485 ctx->rdev = rdev;
486 ctx->size = config->val_bits / 8;
487
488 return ctx;
489 }
490
__devm_regmap_init_sunxi_rsb(struct sunxi_rsb_device * rdev,const struct regmap_config * config,struct lock_class_key * lock_key,const char * lock_name)491 struct regmap *__devm_regmap_init_sunxi_rsb(struct sunxi_rsb_device *rdev,
492 const struct regmap_config *config,
493 struct lock_class_key *lock_key,
494 const char *lock_name)
495 {
496 struct sunxi_rsb_ctx *ctx = regmap_sunxi_rsb_init_ctx(rdev, config);
497
498 if (IS_ERR(ctx))
499 return ERR_CAST(ctx);
500
501 return __devm_regmap_init(&rdev->dev, ®map_sunxi_rsb, ctx, config,
502 lock_key, lock_name);
503 }
504 EXPORT_SYMBOL_GPL(__devm_regmap_init_sunxi_rsb);
505
506 /* RSB controller driver functions */
sunxi_rsb_irq(int irq,void * dev_id)507 static irqreturn_t sunxi_rsb_irq(int irq, void *dev_id)
508 {
509 struct sunxi_rsb *rsb = dev_id;
510 u32 status;
511
512 status = readl(rsb->regs + RSB_INTS);
513 rsb->status = status;
514
515 /* Clear interrupts */
516 status &= (RSB_INTS_LOAD_BSY | RSB_INTS_TRANS_ERR |
517 RSB_INTS_TRANS_OVER);
518 writel(status, rsb->regs + RSB_INTS);
519
520 complete(&rsb->complete);
521
522 return IRQ_HANDLED;
523 }
524
sunxi_rsb_init_device_mode(struct sunxi_rsb * rsb)525 static int sunxi_rsb_init_device_mode(struct sunxi_rsb *rsb)
526 {
527 int ret = 0;
528 u32 reg;
529
530 /* send init sequence */
531 writel(RSB_DMCR_DEVICE_START | RSB_DMCR_MODE_DATA |
532 RSB_DMCR_MODE_REG | RSB_DMCR_DEV_ADDR, rsb->regs + RSB_DMCR);
533
534 readl_poll_timeout(rsb->regs + RSB_DMCR, reg,
535 !(reg & RSB_DMCR_DEVICE_START), 100, 250000);
536 if (reg & RSB_DMCR_DEVICE_START)
537 ret = -ETIMEDOUT;
538
539 /* clear interrupt status bits */
540 writel(readl(rsb->regs + RSB_INTS), rsb->regs + RSB_INTS);
541
542 return ret;
543 }
544
545 /*
546 * There are 15 valid runtime addresses, though Allwinner typically
547 * skips the first, for unknown reasons, and uses the following three.
548 *
549 * 0x17, 0x2d, 0x3a, 0x4e, 0x59, 0x63, 0x74, 0x8b,
550 * 0x9c, 0xa6, 0xb1, 0xc5, 0xd2, 0xe8, 0xff
551 *
552 * No designs with 2 RSB slave devices sharing identical hardware
553 * addresses on the same bus have been seen in the wild. All designs
554 * use 0x2d for the primary PMIC, 0x3a for the secondary PMIC if
555 * there is one, and 0x45 for peripheral ICs.
556 *
557 * The hardware does not seem to support re-setting runtime addresses.
558 * Attempts to do so result in the slave devices returning a NACK.
559 * Hence we just hardcode the mapping here, like Allwinner does.
560 */
561
562 static const struct sunxi_rsb_addr_map sunxi_rsb_addr_maps[] = {
563 { 0x3a3, 0x2d }, /* Primary PMIC: AXP223, AXP809, AXP81X, ... */
564 { 0x745, 0x3a }, /* Secondary PMIC: AXP806, ... */
565 { 0xe89, 0x4e }, /* Peripheral IC: AC100, ... */
566 };
567
sunxi_rsb_get_rtaddr(u16 hwaddr)568 static u8 sunxi_rsb_get_rtaddr(u16 hwaddr)
569 {
570 int i;
571
572 for (i = 0; i < ARRAY_SIZE(sunxi_rsb_addr_maps); i++)
573 if (hwaddr == sunxi_rsb_addr_maps[i].hwaddr)
574 return sunxi_rsb_addr_maps[i].rtaddr;
575
576 return 0; /* 0 is an invalid runtime address */
577 }
578
of_rsb_register_devices(struct sunxi_rsb * rsb)579 static int of_rsb_register_devices(struct sunxi_rsb *rsb)
580 {
581 struct device *dev = rsb->dev;
582 struct device_node *child, *np = dev->of_node;
583 u32 hwaddr;
584 u8 rtaddr;
585 int ret;
586
587 if (!np)
588 return -EINVAL;
589
590 /* Runtime addresses for all slaves should be set first */
591 for_each_available_child_of_node(np, child) {
592 dev_dbg(dev, "setting child %pOF runtime address\n",
593 child);
594
595 ret = of_property_read_u32(child, "reg", &hwaddr);
596 if (ret) {
597 dev_err(dev, "%pOF: invalid 'reg' property: %d\n",
598 child, ret);
599 continue;
600 }
601
602 rtaddr = sunxi_rsb_get_rtaddr(hwaddr);
603 if (!rtaddr) {
604 dev_err(dev, "%pOF: unknown hardware device address\n",
605 child);
606 continue;
607 }
608
609 /*
610 * Since no devices have been registered yet, we are the
611 * only ones using the bus, we can skip locking the bus.
612 */
613
614 /* setup command parameters */
615 writel(RSB_CMD_STRA, rsb->regs + RSB_CMD);
616 writel(RSB_DAR_RTA(rtaddr) | RSB_DAR_DA(hwaddr),
617 rsb->regs + RSB_DAR);
618
619 /* send command */
620 ret = _sunxi_rsb_run_xfer(rsb);
621 if (ret)
622 dev_warn(dev, "%pOF: set runtime address failed: %d\n",
623 child, ret);
624 }
625
626 /* Then we start adding devices and probing them */
627 for_each_available_child_of_node(np, child) {
628 struct sunxi_rsb_device *rdev;
629
630 dev_dbg(dev, "adding child %pOF\n", child);
631
632 ret = of_property_read_u32(child, "reg", &hwaddr);
633 if (ret)
634 continue;
635
636 rtaddr = sunxi_rsb_get_rtaddr(hwaddr);
637 if (!rtaddr)
638 continue;
639
640 rdev = sunxi_rsb_device_create(rsb, child, hwaddr, rtaddr);
641 if (IS_ERR(rdev))
642 dev_err(dev, "failed to add child device %pOF: %ld\n",
643 child, PTR_ERR(rdev));
644 }
645
646 return 0;
647 }
648
sunxi_rsb_hw_init(struct sunxi_rsb * rsb)649 static int sunxi_rsb_hw_init(struct sunxi_rsb *rsb)
650 {
651 struct device *dev = rsb->dev;
652 unsigned long p_clk_freq;
653 u32 clk_delay, reg;
654 int clk_div, ret;
655
656 ret = clk_prepare_enable(rsb->clk);
657 if (ret) {
658 dev_err(dev, "failed to enable clk: %d\n", ret);
659 return ret;
660 }
661
662 ret = reset_control_deassert(rsb->rstc);
663 if (ret) {
664 dev_err(dev, "failed to deassert reset line: %d\n", ret);
665 goto err_clk_disable;
666 }
667
668 /* reset the controller */
669 writel(RSB_CTRL_SOFT_RST, rsb->regs + RSB_CTRL);
670 readl_poll_timeout(rsb->regs + RSB_CTRL, reg,
671 !(reg & RSB_CTRL_SOFT_RST), 1000, 100000);
672
673 /*
674 * Clock frequency and delay calculation code is from
675 * Allwinner U-boot sources.
676 *
677 * From A83 user manual:
678 * bus clock frequency = parent clock frequency / (2 * (divider + 1))
679 */
680 p_clk_freq = clk_get_rate(rsb->clk);
681 clk_div = p_clk_freq / rsb->clk_freq / 2;
682 if (!clk_div)
683 clk_div = 1;
684 else if (clk_div > RSB_CCR_MAX_CLK_DIV + 1)
685 clk_div = RSB_CCR_MAX_CLK_DIV + 1;
686
687 clk_delay = clk_div >> 1;
688 if (!clk_delay)
689 clk_delay = 1;
690
691 dev_info(dev, "RSB running at %lu Hz\n", p_clk_freq / clk_div / 2);
692 writel(RSB_CCR_SDA_OUT_DELAY(clk_delay) | RSB_CCR_CLK_DIV(clk_div - 1),
693 rsb->regs + RSB_CCR);
694
695 return 0;
696
697 err_clk_disable:
698 clk_disable_unprepare(rsb->clk);
699
700 return ret;
701 }
702
sunxi_rsb_hw_exit(struct sunxi_rsb * rsb)703 static void sunxi_rsb_hw_exit(struct sunxi_rsb *rsb)
704 {
705 reset_control_assert(rsb->rstc);
706
707 /* Keep the clock and PM reference counts consistent. */
708 if (!pm_runtime_status_suspended(rsb->dev))
709 clk_disable_unprepare(rsb->clk);
710 }
711
sunxi_rsb_runtime_suspend(struct device * dev)712 static int __maybe_unused sunxi_rsb_runtime_suspend(struct device *dev)
713 {
714 struct sunxi_rsb *rsb = dev_get_drvdata(dev);
715
716 clk_disable_unprepare(rsb->clk);
717
718 return 0;
719 }
720
sunxi_rsb_runtime_resume(struct device * dev)721 static int __maybe_unused sunxi_rsb_runtime_resume(struct device *dev)
722 {
723 struct sunxi_rsb *rsb = dev_get_drvdata(dev);
724
725 return clk_prepare_enable(rsb->clk);
726 }
727
sunxi_rsb_suspend(struct device * dev)728 static int __maybe_unused sunxi_rsb_suspend(struct device *dev)
729 {
730 struct sunxi_rsb *rsb = dev_get_drvdata(dev);
731
732 sunxi_rsb_hw_exit(rsb);
733
734 return 0;
735 }
736
sunxi_rsb_resume(struct device * dev)737 static int __maybe_unused sunxi_rsb_resume(struct device *dev)
738 {
739 struct sunxi_rsb *rsb = dev_get_drvdata(dev);
740
741 return sunxi_rsb_hw_init(rsb);
742 }
743
sunxi_rsb_probe(struct platform_device * pdev)744 static int sunxi_rsb_probe(struct platform_device *pdev)
745 {
746 struct device *dev = &pdev->dev;
747 struct device_node *np = dev->of_node;
748 struct resource *r;
749 struct sunxi_rsb *rsb;
750 u32 clk_freq = 3000000;
751 int irq, ret;
752
753 of_property_read_u32(np, "clock-frequency", &clk_freq);
754 if (clk_freq > RSB_MAX_FREQ) {
755 dev_err(dev,
756 "clock-frequency (%u Hz) is too high (max = 20MHz)\n",
757 clk_freq);
758 return -EINVAL;
759 }
760
761 rsb = devm_kzalloc(dev, sizeof(*rsb), GFP_KERNEL);
762 if (!rsb)
763 return -ENOMEM;
764
765 rsb->dev = dev;
766 rsb->clk_freq = clk_freq;
767 platform_set_drvdata(pdev, rsb);
768 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
769 rsb->regs = devm_ioremap_resource(dev, r);
770 if (IS_ERR(rsb->regs))
771 return PTR_ERR(rsb->regs);
772
773 irq = platform_get_irq(pdev, 0);
774 if (irq < 0)
775 return irq;
776
777 rsb->clk = devm_clk_get(dev, NULL);
778 if (IS_ERR(rsb->clk)) {
779 ret = PTR_ERR(rsb->clk);
780 dev_err(dev, "failed to retrieve clk: %d\n", ret);
781 return ret;
782 }
783
784 rsb->rstc = devm_reset_control_get(dev, NULL);
785 if (IS_ERR(rsb->rstc)) {
786 ret = PTR_ERR(rsb->rstc);
787 dev_err(dev, "failed to retrieve reset controller: %d\n", ret);
788 return ret;
789 }
790
791 init_completion(&rsb->complete);
792 mutex_init(&rsb->lock);
793
794 ret = devm_request_irq(dev, irq, sunxi_rsb_irq, 0, RSB_CTRL_NAME, rsb);
795 if (ret) {
796 dev_err(dev, "can't register interrupt handler irq %d: %d\n",
797 irq, ret);
798 return ret;
799 }
800
801 ret = sunxi_rsb_hw_init(rsb);
802 if (ret)
803 return ret;
804
805 /* initialize all devices on the bus into RSB mode */
806 ret = sunxi_rsb_init_device_mode(rsb);
807 if (ret)
808 dev_warn(dev, "Initialize device mode failed: %d\n", ret);
809
810 pm_suspend_ignore_children(dev, true);
811 pm_runtime_set_active(dev);
812 pm_runtime_set_autosuspend_delay(dev, MSEC_PER_SEC);
813 pm_runtime_use_autosuspend(dev);
814 pm_runtime_enable(dev);
815
816 of_rsb_register_devices(rsb);
817
818 return 0;
819 }
820
sunxi_rsb_remove(struct platform_device * pdev)821 static int sunxi_rsb_remove(struct platform_device *pdev)
822 {
823 struct sunxi_rsb *rsb = platform_get_drvdata(pdev);
824
825 device_for_each_child(rsb->dev, NULL, sunxi_rsb_remove_devices);
826 pm_runtime_disable(&pdev->dev);
827 sunxi_rsb_hw_exit(rsb);
828
829 return 0;
830 }
831
832 static const struct dev_pm_ops sunxi_rsb_dev_pm_ops = {
833 SET_RUNTIME_PM_OPS(sunxi_rsb_runtime_suspend,
834 sunxi_rsb_runtime_resume, NULL)
835 SET_NOIRQ_SYSTEM_SLEEP_PM_OPS(sunxi_rsb_suspend, sunxi_rsb_resume)
836 };
837
838 static const struct of_device_id sunxi_rsb_of_match_table[] = {
839 { .compatible = "allwinner,sun8i-a23-rsb" },
840 {}
841 };
842 MODULE_DEVICE_TABLE(of, sunxi_rsb_of_match_table);
843
844 static struct platform_driver sunxi_rsb_driver = {
845 .probe = sunxi_rsb_probe,
846 .remove = sunxi_rsb_remove,
847 .driver = {
848 .name = RSB_CTRL_NAME,
849 .of_match_table = sunxi_rsb_of_match_table,
850 .pm = &sunxi_rsb_dev_pm_ops,
851 },
852 };
853
sunxi_rsb_init(void)854 static int __init sunxi_rsb_init(void)
855 {
856 int ret;
857
858 ret = bus_register(&sunxi_rsb_bus);
859 if (ret) {
860 pr_err("failed to register sunxi sunxi_rsb bus: %d\n", ret);
861 return ret;
862 }
863
864 ret = platform_driver_register(&sunxi_rsb_driver);
865 if (ret) {
866 bus_unregister(&sunxi_rsb_bus);
867 return ret;
868 }
869
870 return 0;
871 }
872 module_init(sunxi_rsb_init);
873
sunxi_rsb_exit(void)874 static void __exit sunxi_rsb_exit(void)
875 {
876 platform_driver_unregister(&sunxi_rsb_driver);
877 bus_unregister(&sunxi_rsb_bus);
878 }
879 module_exit(sunxi_rsb_exit);
880
881 MODULE_AUTHOR("Chen-Yu Tsai <wens@csie.org>");
882 MODULE_DESCRIPTION("Allwinner sunXi Reduced Serial Bus controller driver");
883 MODULE_LICENSE("GPL v2");
884