Lines Matching +full:i2c +full:- +full:sda +full:- +full:hold +full:- +full:time +full:- +full:ns
1 // SPDX-License-Identifier: GPL-2.0
3 * i2c Support for Atmel's AT91 Two-Wire Interface (TWI)
18 #include <linux/dma-mapping.h>
22 #include <linux/i2c.h>
29 #include <linux/platform_data/dma-atmel.h>
32 #include "i2c-at91.h"
36 struct at91_twi_pdata *pdata = dev->pdata; in at91_init_twi_bus_master()
40 if (dev->fifo_size) in at91_init_twi_bus_master()
44 at91_twi_write(dev, AT91_TWI_CWGR, dev->twi_cwgr_reg); in at91_init_twi_bus_master()
47 if (pdata->has_dig_filtr && dev->enable_dig_filt) in at91_init_twi_bus_master()
51 if (pdata->has_adv_dig_filtr && dev->enable_dig_filt) in at91_init_twi_bus_master()
53 (AT91_TWI_FILTR_THRES(dev->filter_width) & in at91_init_twi_bus_master()
57 if (pdata->has_ana_filtr && dev->enable_ana_filt) in at91_init_twi_bus_master()
70 int ckdiv, cdiv, div, hold = 0, filter_width = 0; in at91_calc_twi_clock() local
71 struct at91_twi_pdata *pdata = dev->pdata; in at91_calc_twi_clock()
72 int offset = pdata->clk_offset; in at91_calc_twi_clock()
73 int max_ckdiv = pdata->clk_max_div; in at91_calc_twi_clock()
76 i2c_parse_fw_timings(dev->dev, t, true); in at91_calc_twi_clock()
78 div = max(0, (int)DIV_ROUND_UP(clk_get_rate(dev->clk), in at91_calc_twi_clock()
79 2 * t->bus_freq_hz) - offset); in at91_calc_twi_clock()
84 dev_warn(dev->dev, "%d exceeds ckdiv max value which is %d.\n", in at91_calc_twi_clock()
90 if (pdata->has_hold_field) { in at91_calc_twi_clock()
92 * hold time = HOLD + 3 x T_peripheral_clock in at91_calc_twi_clock()
94 * hold. in at91_calc_twi_clock()
96 hold = DIV_ROUND_UP(t->sda_hold_ns in at91_calc_twi_clock()
97 * (clk_get_rate(dev->clk) / 1000), 1000000); in at91_calc_twi_clock()
98 hold -= 3; in at91_calc_twi_clock()
99 if (hold < 0) in at91_calc_twi_clock()
100 hold = 0; in at91_calc_twi_clock()
101 if (hold > AT91_TWI_CWGR_HOLD_MAX) { in at91_calc_twi_clock()
102 dev_warn(dev->dev, in at91_calc_twi_clock()
103 "HOLD field set to its maximum value (%d instead of %d)\n", in at91_calc_twi_clock()
104 AT91_TWI_CWGR_HOLD_MAX, hold); in at91_calc_twi_clock()
105 hold = AT91_TWI_CWGR_HOLD_MAX; in at91_calc_twi_clock()
109 if (pdata->has_adv_dig_filtr) { in at91_calc_twi_clock()
114 filter_width = DIV_ROUND_UP(t->digital_filter_width_ns in at91_calc_twi_clock()
115 * (clk_get_rate(dev->clk) / 1000), 1000000); in at91_calc_twi_clock()
117 dev_warn(dev->dev, in at91_calc_twi_clock()
124 dev->twi_cwgr_reg = (ckdiv << 16) | (cdiv << 8) | cdiv in at91_calc_twi_clock()
125 | AT91_TWI_CWGR_HOLD(hold); in at91_calc_twi_clock()
127 dev->filter_width = filter_width; in at91_calc_twi_clock()
129 dev_dbg(dev->dev, "cdiv %d ckdiv %d hold %d (%d ns), filter_width %d (%d ns)\n", in at91_calc_twi_clock()
130 cdiv, ckdiv, hold, t->sda_hold_ns, filter_width, in at91_calc_twi_clock()
131 t->digital_filter_width_ns); in at91_calc_twi_clock()
136 struct at91_twi_dma *dma = &dev->dma; in at91_twi_dma_cleanup()
140 if (dma->xfer_in_progress) { in at91_twi_dma_cleanup()
141 if (dma->direction == DMA_FROM_DEVICE) in at91_twi_dma_cleanup()
142 dmaengine_terminate_all(dma->chan_rx); in at91_twi_dma_cleanup()
144 dmaengine_terminate_all(dma->chan_tx); in at91_twi_dma_cleanup()
145 dma->xfer_in_progress = false; in at91_twi_dma_cleanup()
147 if (dma->buf_mapped) { in at91_twi_dma_cleanup()
148 dma_unmap_single(dev->dev, sg_dma_address(&dma->sg[0]), in at91_twi_dma_cleanup()
149 dev->buf_len, dma->direction); in at91_twi_dma_cleanup()
150 dma->buf_mapped = false; in at91_twi_dma_cleanup()
158 if (!dev->buf_len) in at91_twi_write_next_byte()
162 writeb_relaxed(*dev->buf, dev->base + AT91_TWI_THR); in at91_twi_write_next_byte()
165 if (--dev->buf_len == 0) { in at91_twi_write_next_byte()
166 if (!dev->use_alt_cmd) in at91_twi_write_next_byte()
171 dev_dbg(dev->dev, "wrote 0x%x, to go %zu\n", *dev->buf, dev->buf_len); in at91_twi_write_next_byte()
173 ++dev->buf; in at91_twi_write_next_byte()
180 dma_unmap_single(dev->dev, sg_dma_address(&dev->dma.sg[0]), in at91_twi_write_data_dma_callback()
181 dev->buf_len, DMA_TO_DEVICE); in at91_twi_write_data_dma_callback()
191 if (!dev->use_alt_cmd) in at91_twi_write_data_dma_callback()
199 struct at91_twi_dma *dma = &dev->dma; in at91_twi_write_data_dma()
200 struct dma_chan *chan_tx = dma->chan_tx; in at91_twi_write_data_dma()
203 if (!dev->buf_len) in at91_twi_write_data_dma()
206 dma->direction = DMA_TO_DEVICE; in at91_twi_write_data_dma()
209 dma_addr = dma_map_single(dev->dev, dev->buf, dev->buf_len, in at91_twi_write_data_dma()
211 if (dma_mapping_error(dev->dev, dma_addr)) { in at91_twi_write_data_dma()
212 dev_err(dev->dev, "dma map failed\n"); in at91_twi_write_data_dma()
215 dma->buf_mapped = true; in at91_twi_write_data_dma()
218 if (dev->fifo_size) { in at91_twi_write_data_dma()
225 part1_len = dev->buf_len & ~0x3; in at91_twi_write_data_dma()
227 sg = &dma->sg[sg_len++]; in at91_twi_write_data_dma()
232 part2_len = dev->buf_len & 0x3; in at91_twi_write_data_dma()
234 sg = &dma->sg[sg_len++]; in at91_twi_write_data_dma()
248 sg_dma_len(&dma->sg[0]) = dev->buf_len; in at91_twi_write_data_dma()
249 sg_dma_address(&dma->sg[0]) = dma_addr; in at91_twi_write_data_dma()
252 txdesc = dmaengine_prep_slave_sg(chan_tx, dma->sg, sg_len, in at91_twi_write_data_dma()
256 dev_err(dev->dev, "dma prep slave sg failed\n"); in at91_twi_write_data_dma()
260 txdesc->callback = at91_twi_write_data_dma_callback; in at91_twi_write_data_dma()
261 txdesc->callback_param = dev; in at91_twi_write_data_dma()
263 dma->xfer_in_progress = true; in at91_twi_write_data_dma()
279 if (!dev->buf_len) { in at91_twi_read_next_byte()
285 *dev->buf = readb_relaxed(dev->base + AT91_TWI_RHR); in at91_twi_read_next_byte()
286 --dev->buf_len; in at91_twi_read_next_byte()
289 if (dev->recv_len_abort) in at91_twi_read_next_byte()
293 if (unlikely(dev->msg->flags & I2C_M_RECV_LEN)) { in at91_twi_read_next_byte()
295 if (*dev->buf <= I2C_SMBUS_BLOCK_MAX && *dev->buf > 0) { in at91_twi_read_next_byte()
296 dev->msg->flags &= ~I2C_M_RECV_LEN; in at91_twi_read_next_byte()
297 dev->buf_len += *dev->buf; in at91_twi_read_next_byte()
298 dev->msg->len = dev->buf_len + 1; in at91_twi_read_next_byte()
299 dev_dbg(dev->dev, "received block length %zu\n", in at91_twi_read_next_byte()
300 dev->buf_len); in at91_twi_read_next_byte()
303 dev->recv_len_abort = true; in at91_twi_read_next_byte()
304 dev->buf_len = 1; in at91_twi_read_next_byte()
309 if (!dev->use_alt_cmd && dev->buf_len == 1) in at91_twi_read_next_byte()
312 dev_dbg(dev->dev, "read 0x%x, to go %zu\n", *dev->buf, dev->buf_len); in at91_twi_read_next_byte()
314 ++dev->buf; in at91_twi_read_next_byte()
322 dma_unmap_single(dev->dev, sg_dma_address(&dev->dma.sg[0]), in at91_twi_read_data_dma_callback()
323 dev->buf_len, DMA_FROM_DEVICE); in at91_twi_read_data_dma_callback()
325 if (!dev->use_alt_cmd) { in at91_twi_read_data_dma_callback()
327 dev->buf += dev->buf_len - 2; in at91_twi_read_data_dma_callback()
328 dev->buf_len = 2; in at91_twi_read_data_dma_callback()
338 struct at91_twi_dma *dma = &dev->dma; in at91_twi_read_data_dma()
339 struct dma_chan *chan_rx = dma->chan_rx; in at91_twi_read_data_dma()
342 buf_len = (dev->use_alt_cmd) ? dev->buf_len : dev->buf_len - 2; in at91_twi_read_data_dma()
343 dma->direction = DMA_FROM_DEVICE; in at91_twi_read_data_dma()
347 dma_addr = dma_map_single(dev->dev, dev->buf, buf_len, DMA_FROM_DEVICE); in at91_twi_read_data_dma()
348 if (dma_mapping_error(dev->dev, dma_addr)) { in at91_twi_read_data_dma()
349 dev_err(dev->dev, "dma map failed\n"); in at91_twi_read_data_dma()
352 dma->buf_mapped = true; in at91_twi_read_data_dma()
355 if (dev->fifo_size && IS_ALIGNED(buf_len, 4)) { in at91_twi_read_data_dma()
368 sg_dma_len(&dma->sg[0]) = buf_len; in at91_twi_read_data_dma()
369 sg_dma_address(&dma->sg[0]) = dma_addr; in at91_twi_read_data_dma()
371 rxdesc = dmaengine_prep_slave_sg(chan_rx, dma->sg, 1, DMA_DEV_TO_MEM, in at91_twi_read_data_dma()
374 dev_err(dev->dev, "dma prep slave sg failed\n"); in at91_twi_read_data_dma()
378 rxdesc->callback = at91_twi_read_data_dma_callback; in at91_twi_read_data_dma()
379 rxdesc->callback_param = dev; in at91_twi_read_data_dma()
381 dma->xfer_in_progress = true; in at91_twi_read_data_dma()
383 dma_async_issue_pending(dma->chan_rx); in at91_twi_read_data_dma()
408 * when the i2c slave device sends too quickly data after receiving the in atmel_twi_interrupt()
427 * When a NACK condition is detected, the I2C controller sets the NACK, in atmel_twi_interrupt()
430 * 1 - Handling NACK errors with CPU write transfer. in atmel_twi_interrupt()
433 * Holding Register (THR) otherwise the I2C controller would start a new in atmel_twi_interrupt()
434 * transfer and the I2C slave is likely to reply by another NACK. in atmel_twi_interrupt()
436 * 2 - Handling NACK errors with DMA write transfer. in atmel_twi_interrupt()
438 * By setting the TXRDY bit in the SR, the I2C controller also triggers in atmel_twi_interrupt()
440 * result depends on the hardware version of the I2C controller. in atmel_twi_interrupt()
442 * 2a - Without support of the Alternative Command mode. in atmel_twi_interrupt()
445 * next data into the THR, hence starting a new transfer: the I2C slave in atmel_twi_interrupt()
448 * the first NACK before the I2C controller detects the second NACK and in atmel_twi_interrupt()
450 * When handling the first NACK, this interrupt handler disables the I2C in atmel_twi_interrupt()
456 * 2b - With support of the Alternative Command mode. in atmel_twi_interrupt()
458 * When a NACK condition is detected, the I2C controller also locks the in atmel_twi_interrupt()
461 * this data actually won't go on the I2C bus hence a second NACK is not in atmel_twi_interrupt()
466 complete(&dev->cmd_complete); in atmel_twi_interrupt()
472 dev->transfer_status |= status; in atmel_twi_interrupt()
481 bool has_unre_flag = dev->pdata->has_unre_flag; in at91_do_twi_transfer()
482 bool has_alt_cmd = dev->pdata->has_alt_cmd; in at91_do_twi_transfer()
486 * read flag but shows the state of the transmission at the time the in at91_do_twi_transfer()
492 * Indeed let's take the case of an i2c write command using DMA. in at91_do_twi_transfer()
496 * controller from sending new data on the i2c bus after a NACK in at91_do_twi_transfer()
497 * condition has happened. Once locked, this i2c peripheral stops in at91_do_twi_transfer()
501 * these new data won't be sent to the i2c bus but they will remain in at91_do_twi_transfer()
508 * Besides, the TXCOMP bit is already set before the i2c transaction in at91_do_twi_transfer()
515 * the interrupt handler would be called immediately and the i2c command in at91_do_twi_transfer()
527 dev_dbg(dev->dev, "transfer: %s %zu bytes.\n", in at91_do_twi_transfer()
528 (dev->msg->flags & I2C_M_RD) ? "read" : "write", dev->buf_len); in at91_do_twi_transfer()
530 reinit_completion(&dev->cmd_complete); in at91_do_twi_transfer()
531 dev->transfer_status = 0; in at91_do_twi_transfer()
536 if (dev->fifo_size) { in at91_do_twi_transfer()
551 if (!dev->buf_len) { in at91_do_twi_transfer()
554 } else if (dev->msg->flags & I2C_M_RD) { in at91_do_twi_transfer()
558 if (!dev->use_alt_cmd && dev->buf_len <= 1 && in at91_do_twi_transfer()
559 !(dev->msg->flags & I2C_M_RECV_LEN)) in at91_do_twi_transfer()
567 * read n-1 bytes because of latency. in at91_do_twi_transfer()
568 * Reading n-2 bytes with dma and the two last ones manually in at91_do_twi_transfer()
571 if (dev->use_dma && (dev->buf_len > AT91_I2C_DMA_THRESHOLD)) { in at91_do_twi_transfer()
581 if (dev->use_dma && (dev->buf_len > AT91_I2C_DMA_THRESHOLD)) { in at91_do_twi_transfer()
588 (dev->buf_len ? AT91_TWI_TXRDY : 0)); in at91_do_twi_transfer()
592 time_left = wait_for_completion_timeout(&dev->cmd_complete, in at91_do_twi_transfer()
593 dev->adapter.timeout); in at91_do_twi_transfer()
595 dev->transfer_status |= at91_twi_read(dev, AT91_TWI_SR); in at91_do_twi_transfer()
596 dev_err(dev->dev, "controller timed out\n"); in at91_do_twi_transfer()
598 ret = -ETIMEDOUT; in at91_do_twi_transfer()
601 if (dev->transfer_status & AT91_TWI_NACK) { in at91_do_twi_transfer()
602 dev_dbg(dev->dev, "received nack\n"); in at91_do_twi_transfer()
603 ret = -EREMOTEIO; in at91_do_twi_transfer()
606 if (dev->transfer_status & AT91_TWI_OVRE) { in at91_do_twi_transfer()
607 dev_err(dev->dev, "overrun while reading\n"); in at91_do_twi_transfer()
608 ret = -EIO; in at91_do_twi_transfer()
611 if (has_unre_flag && dev->transfer_status & AT91_TWI_UNRE) { in at91_do_twi_transfer()
612 dev_err(dev->dev, "underrun while writing\n"); in at91_do_twi_transfer()
613 ret = -EIO; in at91_do_twi_transfer()
616 if ((has_alt_cmd || dev->fifo_size) && in at91_do_twi_transfer()
617 (dev->transfer_status & AT91_TWI_LOCK)) { in at91_do_twi_transfer()
618 dev_err(dev->dev, "tx locked\n"); in at91_do_twi_transfer()
619 ret = -EIO; in at91_do_twi_transfer()
622 if (dev->recv_len_abort) { in at91_do_twi_transfer()
623 dev_err(dev->dev, "invalid smbus block length recvd\n"); in at91_do_twi_transfer()
624 ret = -EPROTO; in at91_do_twi_transfer()
628 dev_dbg(dev->dev, "transfer complete\n"); in at91_do_twi_transfer()
636 if ((has_alt_cmd || dev->fifo_size) && in at91_do_twi_transfer()
637 (dev->transfer_status & AT91_TWI_LOCK)) { in at91_do_twi_transfer()
638 dev_dbg(dev->dev, "unlock tx\n"); in at91_do_twi_transfer()
644 * some faulty I2C slave devices might hold SDA down; in at91_do_twi_transfer()
648 i2c_recover_bus(&dev->adapter); in at91_do_twi_transfer()
661 dev_dbg(&adap->dev, "at91_xfer: processing %d messages:\n", num); in at91_twi_xfer()
663 ret = pm_runtime_get_sync(dev->dev); in at91_twi_xfer()
673 for (i = 0; i < msg->len; ++i) { in at91_twi_xfer()
674 const unsigned addr = msg->buf[msg->len - 1 - i]; in at91_twi_xfer()
682 dev->use_alt_cmd = false; in at91_twi_xfer()
683 is_read = (m_start->flags & I2C_M_RD); in at91_twi_xfer()
684 if (dev->pdata->has_alt_cmd) { in at91_twi_xfer()
685 if (m_start->len > 0 && in at91_twi_xfer()
686 m_start->len < AT91_I2C_MAX_ALT_CMD_DATA_SIZE) { in at91_twi_xfer()
689 AT91_TWI_ACR_DATAL(m_start->len) | in at91_twi_xfer()
691 dev->use_alt_cmd = true; in at91_twi_xfer()
698 (m_start->addr << 16) | in at91_twi_xfer()
700 ((!dev->use_alt_cmd && is_read) ? AT91_TWI_MREAD : 0)); in at91_twi_xfer()
702 dev->buf_len = m_start->len; in at91_twi_xfer()
703 dev->buf = m_start->buf; in at91_twi_xfer()
704 dev->msg = m_start; in at91_twi_xfer()
705 dev->recv_len_abort = false; in at91_twi_xfer()
711 pm_runtime_mark_last_busy(dev->dev); in at91_twi_xfer()
712 pm_runtime_put_autosuspend(dev->dev); in at91_twi_xfer()
741 struct at91_twi_dma *dma = &dev->dma; in at91_twi_configure_dma()
747 * for each buffer in the scatter-gather list, if its size is aligned in at91_twi_configure_dma()
759 if (dev->fifo_size) in at91_twi_configure_dma()
771 dma->chan_tx = dma_request_chan(dev->dev, "tx"); in at91_twi_configure_dma()
772 if (IS_ERR(dma->chan_tx)) { in at91_twi_configure_dma()
773 ret = PTR_ERR(dma->chan_tx); in at91_twi_configure_dma()
774 dma->chan_tx = NULL; in at91_twi_configure_dma()
778 dma->chan_rx = dma_request_chan(dev->dev, "rx"); in at91_twi_configure_dma()
779 if (IS_ERR(dma->chan_rx)) { in at91_twi_configure_dma()
780 ret = PTR_ERR(dma->chan_rx); in at91_twi_configure_dma()
781 dma->chan_rx = NULL; in at91_twi_configure_dma()
786 if (dmaengine_slave_config(dma->chan_tx, &slave_config)) { in at91_twi_configure_dma()
787 dev_err(dev->dev, "failed to configure tx channel\n"); in at91_twi_configure_dma()
788 ret = -EINVAL; in at91_twi_configure_dma()
793 if (dmaengine_slave_config(dma->chan_rx, &slave_config)) { in at91_twi_configure_dma()
794 dev_err(dev->dev, "failed to configure rx channel\n"); in at91_twi_configure_dma()
795 ret = -EINVAL; in at91_twi_configure_dma()
799 sg_init_table(dma->sg, 2); in at91_twi_configure_dma()
800 dma->buf_mapped = false; in at91_twi_configure_dma()
801 dma->xfer_in_progress = false; in at91_twi_configure_dma()
802 dev->use_dma = true; in at91_twi_configure_dma()
804 dev_info(dev->dev, "using %s (tx) and %s (rx) for DMA transfers\n", in at91_twi_configure_dma()
805 dma_chan_name(dma->chan_tx), dma_chan_name(dma->chan_rx)); in at91_twi_configure_dma()
810 if (ret != -EPROBE_DEFER) in at91_twi_configure_dma()
811 dev_info(dev->dev, "can't get DMA channel, continue without DMA support\n"); in at91_twi_configure_dma()
812 if (dma->chan_rx) in at91_twi_configure_dma()
813 dma_release_channel(dma->chan_rx); in at91_twi_configure_dma()
814 if (dma->chan_tx) in at91_twi_configure_dma()
815 dma_release_channel(dma->chan_tx); in at91_twi_configure_dma()
822 struct i2c_bus_recovery_info *rinfo = &dev->rinfo; in at91_init_twi_recovery_gpio()
824 rinfo->pinctrl = devm_pinctrl_get(&pdev->dev); in at91_init_twi_recovery_gpio()
825 if (!rinfo->pinctrl || IS_ERR(rinfo->pinctrl)) { in at91_init_twi_recovery_gpio()
826 dev_info(dev->dev, "can't get pinctrl, bus recovery not supported\n"); in at91_init_twi_recovery_gpio()
827 return PTR_ERR(rinfo->pinctrl); in at91_init_twi_recovery_gpio()
829 dev->adapter.bus_recovery_info = rinfo; in at91_init_twi_recovery_gpio()
838 dev->transfer_status |= at91_twi_read(dev, AT91_TWI_SR); in at91_twi_recover_bus_cmd()
839 if (!(dev->transfer_status & AT91_TWI_SDA)) { in at91_twi_recover_bus_cmd()
840 dev_dbg(dev->dev, "SDA is down; sending bus clear command\n"); in at91_twi_recover_bus_cmd()
841 if (dev->use_alt_cmd) { in at91_twi_recover_bus_cmd()
857 struct i2c_bus_recovery_info *rinfo = &dev->rinfo; in at91_init_twi_recovery_info()
858 bool has_clear_cmd = dev->pdata->has_clear_cmd; in at91_init_twi_recovery_info()
863 rinfo->recover_bus = at91_twi_recover_bus_cmd; in at91_init_twi_recovery_info()
864 dev->adapter.bus_recovery_info = rinfo; in at91_init_twi_recovery_info()
874 init_completion(&dev->cmd_complete); in at91_twi_probe_master()
876 rc = devm_request_irq(&pdev->dev, dev->irq, atmel_twi_interrupt, 0, in at91_twi_probe_master()
877 dev_name(dev->dev), dev); in at91_twi_probe_master()
879 dev_err(dev->dev, "Cannot get irq %d: %d\n", dev->irq, rc); in at91_twi_probe_master()
883 if (dev->dev->of_node) { in at91_twi_probe_master()
885 if (rc == -EPROBE_DEFER) in at91_twi_probe_master()
889 if (!of_property_read_u32(pdev->dev.of_node, "atmel,fifo-size", in at91_twi_probe_master()
890 &dev->fifo_size)) { in at91_twi_probe_master()
891 dev_info(dev->dev, "Using FIFO (%u data)\n", dev->fifo_size); in at91_twi_probe_master()
894 dev->enable_dig_filt = of_property_read_bool(pdev->dev.of_node, in at91_twi_probe_master()
895 "i2c-digital-filter"); in at91_twi_probe_master()
897 dev->enable_ana_filt = of_property_read_bool(pdev->dev.of_node, in at91_twi_probe_master()
898 "i2c-analog-filter"); in at91_twi_probe_master()
902 if (rc == -EPROBE_DEFER) in at91_twi_probe_master()
905 dev->adapter.algo = &at91_twi_algorithm; in at91_twi_probe_master()
906 dev->adapter.quirks = &at91_twi_quirks; in at91_twi_probe_master()