Lines Matching +full:stop +full:- +full:ack

1 // SPDX-License-Identifier: GPL-2.0
5 * Copyright (C) 2014-19 Wolfram Sang <wsa@sang-engineering.com>
8 * Portions of the code based on out-of-tree driver i2c-sh7343.c
15 #include <linux/dma-mapping.h>
31 /* BUS: S A8 ACK P(*) */
38 /* BUS: S A8 ACK D8(1) ACK P(*) */
40 /* ICIC: -DTE */
45 /* BUS: S A8 ACK D8(1) ACK D8(2) ACK P(*) */
47 /* ICIC: -DTE */
51 /* 3 bytes or more, +---------+ gets repeated */
56 /* 0 byte receive - not supported since slave may hold SDA low */
59 /* BUS: S A8 ACK | D8(1) ACK P(*) */
61 /* ICIC: -DTE | +DTE */
66 /* BUS: S A8 ACK | D8(1) ACK D8(2) ACK P(*) */
68 /* ICIC: -DTE | +DTE */
73 /* BUS: S A8 ACK | D8(1) ACK D8(2) ACK D8(3) ACK P */
75 /* ICIC: -DTE | +DTE */
79 /* 4 bytes or more, this part is repeated +---------+ */
96 /* (*) The STOP condition is only sent by the master at the end of the last */
98 /* only cleared after the STOP condition, so, between messages we have to */
188 data |= pd->icic; in iic_wr()
190 iowrite8(data, pd->reg + offs); in iic_wr()
195 return ioread8(pd->reg + offs); in iic_rd()
210 * SH-Mobile IIC hardware starts counting the LOW period of in sh_mobile_i2c_iccl()
225 * SH-Mobile IIC hardware is aware of SCL transition period 'tr', in sh_mobile_i2c_icch()
226 * and can ignore it. SH-Mobile IIC controller starts counting in sh_mobile_i2c_icch()
240 u16 max_val = pd->flags & IIC_FLAG_HAS_ICIC67 ? 0x1ff : 0xff; in sh_mobile_i2c_check_timing()
242 if (pd->iccl > max_val || pd->icch > max_val) { in sh_mobile_i2c_check_timing()
243 dev_err(pd->dev, "timing values out of range: L/H=0x%x/0x%x\n", in sh_mobile_i2c_check_timing()
244 pd->iccl, pd->icch); in sh_mobile_i2c_check_timing()
245 return -EINVAL; in sh_mobile_i2c_check_timing()
249 if (pd->iccl & 0x100) in sh_mobile_i2c_check_timing()
250 pd->icic |= ICIC_ICCLB8; in sh_mobile_i2c_check_timing()
252 pd->icic &= ~ICIC_ICCLB8; in sh_mobile_i2c_check_timing()
255 if (pd->icch & 0x100) in sh_mobile_i2c_check_timing()
256 pd->icic |= ICIC_ICCHB8; in sh_mobile_i2c_check_timing()
258 pd->icic &= ~ICIC_ICCHB8; in sh_mobile_i2c_check_timing()
260 dev_dbg(pd->dev, "timing values: L/H=0x%x/0x%x\n", pd->iccl, pd->icch); in sh_mobile_i2c_check_timing()
269 i2c_clk_khz = clk_get_rate(pd->clk) / 1000 / pd->clks_per_count; in sh_mobile_i2c_init()
271 if (pd->bus_speed == I2C_MAX_STANDARD_MODE_FREQ) { in sh_mobile_i2c_init()
275 } else if (pd->bus_speed == I2C_MAX_FAST_MODE_FREQ) { in sh_mobile_i2c_init()
280 dev_err(pd->dev, "unrecognized bus speed %lu Hz\n", in sh_mobile_i2c_init()
281 pd->bus_speed); in sh_mobile_i2c_init()
282 return -EINVAL; in sh_mobile_i2c_init()
285 pd->iccl = sh_mobile_i2c_iccl(i2c_clk_khz, tLOW, tf); in sh_mobile_i2c_init()
286 pd->icch = sh_mobile_i2c_icch(i2c_clk_khz, tHIGH, tf); in sh_mobile_i2c_init()
296 clks_per_cycle = clk_get_rate(pd->clk) / pd->bus_speed; in sh_mobile_i2c_v2_init()
297 pd->iccl = DIV_ROUND_UP(clks_per_cycle * 5 / 9 - 1, pd->clks_per_count); in sh_mobile_i2c_v2_init()
298 pd->icch = DIV_ROUND_UP(clks_per_cycle * 4 / 9 - 5, pd->clks_per_count); in sh_mobile_i2c_v2_init()
308 dev_dbg(pd->dev, "op %d\n", op); in i2c_op()
310 spin_lock_irqsave(&pd->lock, flags); in i2c_op()
318 iic_wr(pd, ICDR, i2c_8bit_addr_from_msg(pd->msg)); in i2c_op()
321 iic_wr(pd, ICDR, pd->msg->buf[pd->pos]); in i2c_op()
323 case OP_TX_STOP: /* issue a stop (or rep_start) */ in i2c_op()
324 iic_wr(pd, ICCR, pd->send_stop ? ICCR_ICE | ICCR_TRS in i2c_op()
333 case OP_RX_STOP: /* enable DTE interrupt, issue stop */ in i2c_op()
334 if (!pd->atomic_xfer) in i2c_op()
339 case OP_RX_STOP_DATA: /* enable DTE interrupt, read data, issue stop */ in i2c_op()
340 if (!pd->atomic_xfer) in i2c_op()
348 spin_unlock_irqrestore(&pd->lock, flags); in i2c_op()
350 dev_dbg(pd->dev, "op %d, data out 0x%02x\n", op, ret); in i2c_op()
356 if (pd->pos == pd->msg->len) { in sh_mobile_i2c_isr_tx()
361 if (pd->pos == -1) in sh_mobile_i2c_isr_tx()
366 pd->pos++; in sh_mobile_i2c_isr_tx()
375 real_pos = pd->pos - 2; in sh_mobile_i2c_isr_rx()
377 if (pd->pos == -1) { in sh_mobile_i2c_isr_rx()
379 } else if (pd->pos == 0) { in sh_mobile_i2c_isr_rx()
381 } else if (pd->pos == pd->msg->len) { in sh_mobile_i2c_isr_rx()
382 if (pd->stop_after_dma) { in sh_mobile_i2c_isr_rx()
385 pd->pos++; in sh_mobile_i2c_isr_rx()
392 pd->msg->buf[real_pos] = i2c_op(pd, OP_RX_STOP_DATA); in sh_mobile_i2c_isr_rx()
394 pd->msg->buf[real_pos] = i2c_op(pd, OP_RX); in sh_mobile_i2c_isr_rx()
398 pd->pos++; in sh_mobile_i2c_isr_rx()
399 return pd->pos == (pd->msg->len + 2); in sh_mobile_i2c_isr_rx()
409 pd->sr |= sr; /* remember state */ in sh_mobile_i2c_isr()
411 dev_dbg(pd->dev, "i2c_isr 0x%02x 0x%02x %s %d %d!\n", sr, pd->sr, in sh_mobile_i2c_isr()
412 (pd->msg->flags & I2C_M_RD) ? "read" : "write", in sh_mobile_i2c_isr()
413 pd->pos, pd->msg->len); in sh_mobile_i2c_isr()
416 if (pd->dma_direction == DMA_TO_DEVICE && pd->pos == 0) in sh_mobile_i2c_isr()
419 /* don't interrupt transaction - continue to issue stop */ in sh_mobile_i2c_isr()
421 else if (pd->msg->flags & I2C_M_RD) in sh_mobile_i2c_isr()
427 if (pd->dma_direction == DMA_FROM_DEVICE && pd->pos == 1) in sh_mobile_i2c_isr()
434 pd->sr |= SW_DONE; in sh_mobile_i2c_isr()
435 if (!pd->atomic_xfer) in sh_mobile_i2c_isr()
436 wake_up(&pd->wait); in sh_mobile_i2c_isr()
447 struct dma_chan *chan = pd->dma_direction == DMA_FROM_DEVICE in sh_mobile_i2c_cleanup_dma()
448 ? pd->dma_rx : pd->dma_tx; in sh_mobile_i2c_cleanup_dma()
454 dma_unmap_single(chan->device->dev, sg_dma_address(&pd->sg), in sh_mobile_i2c_cleanup_dma()
455 pd->msg->len, pd->dma_direction); in sh_mobile_i2c_cleanup_dma()
457 pd->dma_direction = DMA_NONE; in sh_mobile_i2c_cleanup_dma()
465 pd->pos = pd->msg->len; in sh_mobile_i2c_dma_callback()
466 pd->stop_after_dma = true; in sh_mobile_i2c_dma_callback()
509 bool read = pd->msg->flags & I2C_M_RD; in sh_mobile_i2c_xfer_dma()
511 struct dma_chan *chan = read ? pd->dma_rx : pd->dma_tx; in sh_mobile_i2c_xfer_dma()
516 if (PTR_ERR(chan) == -EPROBE_DEFER) { in sh_mobile_i2c_xfer_dma()
518 chan = pd->dma_rx = sh_mobile_i2c_request_dma_chan(pd->dev, DMA_DEV_TO_MEM, in sh_mobile_i2c_xfer_dma()
519 pd->res->start + ICDR); in sh_mobile_i2c_xfer_dma()
521 chan = pd->dma_tx = sh_mobile_i2c_request_dma_chan(pd->dev, DMA_MEM_TO_DEV, in sh_mobile_i2c_xfer_dma()
522 pd->res->start + ICDR); in sh_mobile_i2c_xfer_dma()
528 dma_addr = dma_map_single(chan->device->dev, pd->dma_buf, pd->msg->len, dir); in sh_mobile_i2c_xfer_dma()
529 if (dma_mapping_error(chan->device->dev, dma_addr)) { in sh_mobile_i2c_xfer_dma()
530 dev_dbg(pd->dev, "dma map failed, using PIO\n"); in sh_mobile_i2c_xfer_dma()
534 sg_dma_len(&pd->sg) = pd->msg->len; in sh_mobile_i2c_xfer_dma()
535 sg_dma_address(&pd->sg) = dma_addr; in sh_mobile_i2c_xfer_dma()
537 pd->dma_direction = dir; in sh_mobile_i2c_xfer_dma()
539 txdesc = dmaengine_prep_slave_sg(chan, &pd->sg, 1, in sh_mobile_i2c_xfer_dma()
543 dev_dbg(pd->dev, "dma prep slave sg failed, using PIO\n"); in sh_mobile_i2c_xfer_dma()
548 txdesc->callback = sh_mobile_i2c_dma_callback; in sh_mobile_i2c_xfer_dma()
549 txdesc->callback_param = pd; in sh_mobile_i2c_xfer_dma()
553 dev_dbg(pd->dev, "submitting dma failed, using PIO\n"); in sh_mobile_i2c_xfer_dma()
568 /* Enable channel and configure rx ack */ in start_ch()
572 iic_wr(pd, ICCL, pd->iccl & 0xff); in start_ch()
573 iic_wr(pd, ICCH, pd->icch & 0xff); in start_ch()
576 pd->msg = usr_msg; in start_ch()
577 pd->pos = -1; in start_ch()
578 pd->sr = 0; in start_ch()
580 if (pd->atomic_xfer) in start_ch()
583 pd->dma_buf = i2c_get_dma_safe_msg_buf(pd->msg, 8); in start_ch()
584 if (pd->dma_buf) in start_ch()
595 for (i = 1000; i; i--) { in poll_dte()
602 return -ENXIO; in poll_dte()
607 return i ? 0 : -ETIMEDOUT; in poll_dte()
614 for (i = 1000; i; i--) { in poll_busy()
617 dev_dbg(pd->dev, "val 0x%02x pd->sr 0x%02x\n", val, pd->sr); in poll_busy()
625 val |= pd->sr; in poll_busy()
627 return -ENXIO; in poll_busy()
629 return -EAGAIN; in poll_busy()
636 return i ? 0 : -ETIMEDOUT; in poll_busy()
648 pm_runtime_get_sync(pd->dev); in sh_mobile_xfer()
652 bool do_start = pd->send_stop || !i; in sh_mobile_xfer()
654 pd->send_stop = i == num - 1 || msg->flags & I2C_M_STOP; in sh_mobile_xfer()
655 pd->stop_after_dma = false; in sh_mobile_xfer()
662 if (pd->atomic_xfer) { in sh_mobile_xfer()
663 unsigned long j = jiffies + pd->adap.timeout; in sh_mobile_xfer()
667 !(pd->sr & (ICSR_TACK | SW_DONE))) { in sh_mobile_xfer()
681 time_left = wait_event_timeout(pd->wait, in sh_mobile_xfer()
682 pd->sr & (ICSR_TACK | SW_DONE), in sh_mobile_xfer()
683 pd->adap.timeout); in sh_mobile_xfer()
686 i2c_put_dma_safe_msg_buf(pd->dma_buf, pd->msg, in sh_mobile_xfer()
687 pd->stop_after_dma); in sh_mobile_xfer()
691 if (pd->dma_direction != DMA_NONE) in sh_mobile_xfer()
694 err = -ETIMEDOUT; in sh_mobile_xfer()
698 if (pd->send_stop) in sh_mobile_xfer()
710 pm_runtime_put_sync(pd->dev); in sh_mobile_xfer()
721 pd->atomic_xfer = false; in sh_mobile_i2c_xfer()
731 pd->atomic_xfer = true; in sh_mobile_i2c_xfer_atomic()
794 { .compatible = "renesas,iic-r8a73a4", .data = &fast_clock_dt_config },
795 { .compatible = "renesas,iic-r8a7740", .data = &r8a7740_dt_config },
796 { .compatible = "renesas,iic-r8a774c0", .data = &fast_clock_dt_config },
797 { .compatible = "renesas,iic-r8a7790", .data = &fast_clock_dt_config },
798 { .compatible = "renesas,iic-r8a7791", .data = &fast_clock_dt_config },
799 { .compatible = "renesas,iic-r8a7792", .data = &fast_clock_dt_config },
800 { .compatible = "renesas,iic-r8a7793", .data = &fast_clock_dt_config },
801 { .compatible = "renesas,iic-r8a7794", .data = &fast_clock_dt_config },
802 { .compatible = "renesas,iic-r8a7795", .data = &fast_clock_dt_config },
803 { .compatible = "renesas,iic-r8a77990", .data = &fast_clock_dt_config },
804 { .compatible = "renesas,iic-sh73a0", .data = &fast_clock_dt_config },
805 { .compatible = "renesas,rcar-gen2-iic", .data = &fast_clock_dt_config },
806 { .compatible = "renesas,rcar-gen3-iic", .data = &fast_clock_dt_config },
807 { .compatible = "renesas,rmobile-iic", .data = &default_dt_config },
814 if (!IS_ERR(pd->dma_tx)) { in sh_mobile_i2c_release_dma()
815 dma_release_channel(pd->dma_tx); in sh_mobile_i2c_release_dma()
816 pd->dma_tx = ERR_PTR(-EPROBE_DEFER); in sh_mobile_i2c_release_dma()
819 if (!IS_ERR(pd->dma_rx)) { in sh_mobile_i2c_release_dma()
820 dma_release_channel(pd->dma_rx); in sh_mobile_i2c_release_dma()
821 pd->dma_rx = ERR_PTR(-EPROBE_DEFER); in sh_mobile_i2c_release_dma()
827 struct device_node *np = dev_of_node(&dev->dev); in sh_mobile_i2c_hook_irqs()
833 while ((irq = platform_get_irq_optional(dev, k)) != -ENXIO) { in sh_mobile_i2c_hook_irqs()
836 ret = devm_request_irq(&dev->dev, irq, sh_mobile_i2c_isr, in sh_mobile_i2c_hook_irqs()
837 0, dev_name(&dev->dev), pd); in sh_mobile_i2c_hook_irqs()
839 dev_err(&dev->dev, "cannot request IRQ %d\n", irq); in sh_mobile_i2c_hook_irqs()
849 for (n = res->start; n <= res->end; n++) { in sh_mobile_i2c_hook_irqs()
850 ret = devm_request_irq(&dev->dev, n, sh_mobile_i2c_isr, in sh_mobile_i2c_hook_irqs()
851 0, dev_name(&dev->dev), pd); in sh_mobile_i2c_hook_irqs()
853 dev_err(&dev->dev, "cannot request IRQ %pa\n", &n); in sh_mobile_i2c_hook_irqs()
861 return k > 0 ? 0 : -ENOENT; in sh_mobile_i2c_hook_irqs()
872 pd = devm_kzalloc(&dev->dev, sizeof(struct sh_mobile_i2c_data), GFP_KERNEL); in sh_mobile_i2c_probe()
874 return -ENOMEM; in sh_mobile_i2c_probe()
876 pd->clk = devm_clk_get(&dev->dev, NULL); in sh_mobile_i2c_probe()
877 if (IS_ERR(pd->clk)) { in sh_mobile_i2c_probe()
878 dev_err(&dev->dev, "cannot get clock\n"); in sh_mobile_i2c_probe()
879 return PTR_ERR(pd->clk); in sh_mobile_i2c_probe()
886 pd->dev = &dev->dev; in sh_mobile_i2c_probe()
889 pd->reg = devm_platform_get_and_ioremap_resource(dev, 0, &pd->res); in sh_mobile_i2c_probe()
890 if (IS_ERR(pd->reg)) in sh_mobile_i2c_probe()
891 return PTR_ERR(pd->reg); in sh_mobile_i2c_probe()
893 ret = of_property_read_u32(dev->dev.of_node, "clock-frequency", &bus_speed); in sh_mobile_i2c_probe()
894 pd->bus_speed = (ret || !bus_speed) ? I2C_MAX_STANDARD_MODE_FREQ : bus_speed; in sh_mobile_i2c_probe()
895 pd->clks_per_count = 1; in sh_mobile_i2c_probe()
898 if (resource_size(pd->res) > 0x17) in sh_mobile_i2c_probe()
899 pd->flags |= IIC_FLAG_HAS_ICIC67; in sh_mobile_i2c_probe()
901 pm_runtime_enable(&dev->dev); in sh_mobile_i2c_probe()
902 pm_runtime_get_sync(&dev->dev); in sh_mobile_i2c_probe()
904 config = of_device_get_match_data(&dev->dev); in sh_mobile_i2c_probe()
906 pd->clks_per_count = config->clks_per_count; in sh_mobile_i2c_probe()
907 ret = config->setup(pd); in sh_mobile_i2c_probe()
912 pm_runtime_put_sync(&dev->dev); in sh_mobile_i2c_probe()
917 sg_init_table(&pd->sg, 1); in sh_mobile_i2c_probe()
918 pd->dma_direction = DMA_NONE; in sh_mobile_i2c_probe()
919 pd->dma_rx = pd->dma_tx = ERR_PTR(-EPROBE_DEFER); in sh_mobile_i2c_probe()
922 adap = &pd->adap; in sh_mobile_i2c_probe()
925 adap->owner = THIS_MODULE; in sh_mobile_i2c_probe()
926 adap->algo = &sh_mobile_i2c_algorithm; in sh_mobile_i2c_probe()
927 adap->quirks = &sh_mobile_i2c_quirks; in sh_mobile_i2c_probe()
928 adap->dev.parent = &dev->dev; in sh_mobile_i2c_probe()
929 adap->retries = 5; in sh_mobile_i2c_probe()
930 adap->nr = dev->id; in sh_mobile_i2c_probe()
931 adap->dev.of_node = dev->dev.of_node; in sh_mobile_i2c_probe()
933 strscpy(adap->name, dev->name, sizeof(adap->name)); in sh_mobile_i2c_probe()
935 spin_lock_init(&pd->lock); in sh_mobile_i2c_probe()
936 init_waitqueue_head(&pd->wait); in sh_mobile_i2c_probe()
944 dev_info(&dev->dev, "I2C adapter %d, bus speed %lu Hz\n", adap->nr, pd->bus_speed); in sh_mobile_i2c_probe()
953 i2c_del_adapter(&pd->adap); in sh_mobile_i2c_remove()
955 pm_runtime_disable(&dev->dev); in sh_mobile_i2c_remove()
962 i2c_mark_adapter_suspended(&pd->adap); in sh_mobile_i2c_suspend()
970 i2c_mark_adapter_resumed(&pd->adap); in sh_mobile_i2c_resume()
981 .name = "i2c-sh_mobile",
1005 MODULE_ALIAS("platform:i2c-sh_mobile");