Lines Matching +full:i2c +full:- +full:fast +full:- +full:mode
1 // SPDX-License-Identifier: GPL-2.0
3 * drivers/i2c/busses/i2c-tegra.c
13 #include <linux/dma-mapping.h>
15 #include <linux/i2c.h>
50 #define I2C_FIFO_CONTROL_TX_TRIG(x) (((x) - 1) << 5)
51 #define I2C_FIFO_CONTROL_RX_TRIG(x) (((x) - 1) << 2)
129 #define I2C_MST_FIFO_CONTROL_RX_TRIG(x) (((x) - 1) << 4)
130 #define I2C_MST_FIFO_CONTROL_TX_TRIG(x) (((x) - 1) << 16)
143 * I2C Controller will use PIO mode for transfers up to 32 bytes in order to
153 * @MSG_END_REPEAT_START: Send repeat-start.
154 * @MSG_END_CONTINUE: Don't send stop or repeat-start.
164 * @has_continue_xfer_support: continue-transfer supported
169 * @clk_divisor_hs_mode: Clock divisor in HS mode.
170 * @clk_divisor_std_mode: Clock divisor in standard mode. It is
171 * applicable if there is no fast clock source i.e. single clock
173 * @clk_divisor_fast_mode: Clock divisor in fast mode. It is
174 * applicable if there is no fast clock source i.e. single clock
176 * @clk_divisor_fast_plus_mode: Clock divisor in fast mode plus. It is
177 * applicable if there is no fast clock source (i.e. single
179 * @has_multi_master_mode: The I2C controller supports running in single-master
180 * or multi-master mode.
181 * @has_slcg_override_reg: The I2C controller supports a register that
183 * @has_mst_fifo: The I2C controller contains the new MST FIFO interface that
186 * @quirks: I2C adapter quirks for limiting write/read transfer size and not
191 * @tlow_std_mode: Low period of the clock in standard mode.
192 * @thigh_std_mode: High period of the clock in standard mode.
193 * @tlow_fast_fastplus_mode: Low period of the clock in fast/fast-plus modes.
194 * @thigh_fast_fastplus_mode: High period of the clock in fast/fast-plus modes.
196 * in standard mode.
198 * conditions in fast/fast-plus modes.
200 * in HS mode.
229 * struct tegra_i2c_dev - per device I2C context
231 * @hw: Tegra I2C HW feature
232 * @adapter: core I2C layer adapter information
233 * @div_clk: clock reference for div clock of I2C controller
234 * @clocks: array of I2C controller clocks
236 * @rst: reset control for the I2C controller
238 * @base_phys: physical base address of the I2C controller
239 * @cont_id: I2C controller ID, used for packet header
241 * @is_dvc: identifies the DVC I2C controller, has a different register layout
242 * @is_vi: identifies the VI I2C controller, has a different register layout
248 * @bus_clk_rate: current I2C bus clock rate
249 * @multimaster_mode: indicates that I2C controller is in multi-master mode
300 writel_relaxed(val, i2c_dev->base + reg); in dvc_writel()
305 return readl_relaxed(i2c_dev->base + reg); in dvc_readl()
310 * in order to talk to the I2C block inside the DVC block.
314 if (i2c_dev->is_dvc) in tegra_i2c_reg_addr()
316 else if (i2c_dev->is_vi) in tegra_i2c_reg_addr()
324 writel_relaxed(val, i2c_dev->base + tegra_i2c_reg_addr(i2c_dev, reg)); in i2c_writel()
328 readl_relaxed(i2c_dev->base + tegra_i2c_reg_addr(i2c_dev, reg)); in i2c_writel()
329 else if (i2c_dev->is_vi) in i2c_writel()
330 readl_relaxed(i2c_dev->base + tegra_i2c_reg_addr(i2c_dev, I2C_INT_STATUS)); in i2c_writel()
335 return readl_relaxed(i2c_dev->base + tegra_i2c_reg_addr(i2c_dev, reg)); in i2c_readl()
341 writesl(i2c_dev->base + tegra_i2c_reg_addr(i2c_dev, reg), data, len); in i2c_writesl()
350 * VI I2C controller has known hardware bug where writes get stuck in i2c_writesl_vi()
352 * Recommended software work around is to read I2C register after in i2c_writesl_vi()
355 while (len--) in i2c_writesl_vi()
362 readsl(i2c_dev->base + tegra_i2c_reg_addr(i2c_dev, reg), data, len); in i2c_readsl()
385 complete(&i2c_dev->dma_complete); in tegra_i2c_dma_complete()
394 dev_dbg(i2c_dev->dev, "starting DMA for length: %zu\n", len); in tegra_i2c_dma_submit()
396 reinit_completion(&i2c_dev->dma_complete); in tegra_i2c_dma_submit()
398 dir = i2c_dev->msg_read ? DMA_DEV_TO_MEM : DMA_MEM_TO_DEV; in tegra_i2c_dma_submit()
399 chan = i2c_dev->msg_read ? i2c_dev->rx_dma_chan : i2c_dev->tx_dma_chan; in tegra_i2c_dma_submit()
401 dma_desc = dmaengine_prep_slave_single(chan, i2c_dev->dma_phys, in tegra_i2c_dma_submit()
405 dev_err(i2c_dev->dev, "failed to get %s DMA descriptor\n", in tegra_i2c_dma_submit()
406 i2c_dev->msg_read ? "RX" : "TX"); in tegra_i2c_dma_submit()
407 return -EINVAL; in tegra_i2c_dma_submit()
410 dma_desc->callback = tegra_i2c_dma_complete; in tegra_i2c_dma_submit()
411 dma_desc->callback_param = i2c_dev; in tegra_i2c_dma_submit()
421 if (i2c_dev->dma_buf) { in tegra_i2c_release_dma()
422 dma_free_coherent(i2c_dev->dev, i2c_dev->dma_buf_size, in tegra_i2c_release_dma()
423 i2c_dev->dma_buf, i2c_dev->dma_phys); in tegra_i2c_release_dma()
424 i2c_dev->dma_buf = NULL; in tegra_i2c_release_dma()
427 if (i2c_dev->tx_dma_chan) { in tegra_i2c_release_dma()
428 dma_release_channel(i2c_dev->tx_dma_chan); in tegra_i2c_release_dma()
429 i2c_dev->tx_dma_chan = NULL; in tegra_i2c_release_dma()
432 if (i2c_dev->rx_dma_chan) { in tegra_i2c_release_dma()
433 dma_release_channel(i2c_dev->rx_dma_chan); in tegra_i2c_release_dma()
434 i2c_dev->rx_dma_chan = NULL; in tegra_i2c_release_dma()
445 if (!i2c_dev->hw->has_apb_dma || i2c_dev->is_vi) in tegra_i2c_init_dma()
449 dev_dbg(i2c_dev->dev, "DMA support not enabled\n"); in tegra_i2c_init_dma()
453 chan = dma_request_chan(i2c_dev->dev, "rx"); in tegra_i2c_init_dma()
459 i2c_dev->rx_dma_chan = chan; in tegra_i2c_init_dma()
461 chan = dma_request_chan(i2c_dev->dev, "tx"); in tegra_i2c_init_dma()
467 i2c_dev->tx_dma_chan = chan; in tegra_i2c_init_dma()
469 i2c_dev->dma_buf_size = i2c_dev->hw->quirks->max_write_len + in tegra_i2c_init_dma()
472 dma_buf = dma_alloc_coherent(i2c_dev->dev, i2c_dev->dma_buf_size, in tegra_i2c_init_dma()
475 dev_err(i2c_dev->dev, "failed to allocate DMA buffer\n"); in tegra_i2c_init_dma()
476 err = -ENOMEM; in tegra_i2c_init_dma()
480 i2c_dev->dma_buf = dma_buf; in tegra_i2c_init_dma()
481 i2c_dev->dma_phys = dma_phys; in tegra_i2c_init_dma()
487 if (err != -EPROBE_DEFER) { in tegra_i2c_init_dma()
488 dev_err(i2c_dev->dev, "cannot use DMA: %d\n", err); in tegra_i2c_init_dma()
489 dev_err(i2c_dev->dev, "falling back to PIO\n"); in tegra_i2c_init_dma()
497 * One of the Tegra I2C blocks is inside the DVC (Digital Voltage Controller)
498 * block. This block is identical to the rest of the I2C blocks, except that
499 * it only supports master mode, it has registers moved around, and it needs
500 * some extra init to get it into I2C mode. The register moves are handled
550 void __iomem *addr = i2c_dev->base + tegra_i2c_reg_addr(i2c_dev, reg); in tegra_i2c_poll_register()
553 if (!i2c_dev->atomic_mode && !in_irq()) in tegra_i2c_poll_register()
566 if (i2c_dev->hw->has_mst_fifo) { in tegra_i2c_flush_fifos()
582 dev_err(i2c_dev->dev, "failed to flush FIFO\n"); in tegra_i2c_flush_fifos()
593 if (!i2c_dev->hw->has_config_load_reg) in tegra_i2c_wait_for_config_load()
601 dev_err(i2c_dev->dev, "failed to load config\n"); in tegra_i2c_wait_for_config_load()
617 * kernel boot up since voltage regulators use I2C. Hence, we will in tegra_i2c_init()
621 err = reset_control_reset(i2c_dev->rst); in tegra_i2c_init()
624 if (i2c_dev->is_dvc) in tegra_i2c_init()
630 if (i2c_dev->hw->has_multi_master_mode) in tegra_i2c_init()
636 if (i2c_dev->is_vi) in tegra_i2c_init()
639 switch (i2c_dev->bus_clk_rate) { in tegra_i2c_init()
642 tlow = i2c_dev->hw->tlow_fast_fastplus_mode; in tegra_i2c_init()
643 thigh = i2c_dev->hw->thigh_fast_fastplus_mode; in tegra_i2c_init()
644 tsu_thd = i2c_dev->hw->setup_hold_time_fast_fast_plus_mode; in tegra_i2c_init()
646 if (i2c_dev->bus_clk_rate > I2C_MAX_FAST_MODE_FREQ) in tegra_i2c_init()
647 non_hs_mode = i2c_dev->hw->clk_divisor_fast_plus_mode; in tegra_i2c_init()
649 non_hs_mode = i2c_dev->hw->clk_divisor_fast_mode; in tegra_i2c_init()
653 tlow = i2c_dev->hw->tlow_std_mode; in tegra_i2c_init()
654 thigh = i2c_dev->hw->thigh_std_mode; in tegra_i2c_init()
655 tsu_thd = i2c_dev->hw->setup_hold_time_std_mode; in tegra_i2c_init()
656 non_hs_mode = i2c_dev->hw->clk_divisor_std_mode; in tegra_i2c_init()
662 i2c_dev->hw->clk_divisor_hs_mode) | in tegra_i2c_init()
666 if (i2c_dev->hw->has_interface_timing_reg) { in tegra_i2c_init()
673 * Configure setup and hold times only when tsu_thd is non-zero. in tegra_i2c_init()
676 if (i2c_dev->hw->has_interface_timing_reg && tsu_thd) in tegra_i2c_init()
681 err = clk_set_rate(i2c_dev->div_clk, in tegra_i2c_init()
682 i2c_dev->bus_clk_rate * clk_multiplier); in tegra_i2c_init()
684 dev_err(i2c_dev->dev, "failed to set div-clk rate: %d\n", err); in tegra_i2c_init()
688 if (!i2c_dev->is_dvc && !i2c_dev->is_vi) { in tegra_i2c_init()
701 if (i2c_dev->multimaster_mode && i2c_dev->hw->has_slcg_override_reg) in tegra_i2c_init()
716 * NACK interrupt is generated before the I2C controller generates in tegra_i2c_disable_packet_mode()
721 udelay(DIV_ROUND_UP(2 * 1000000, i2c_dev->bus_clk_rate)); in tegra_i2c_disable_packet_mode()
732 size_t buf_remaining = i2c_dev->msg_buf_remaining; in tegra_i2c_empty_rx_fifo()
734 u8 *buf = i2c_dev->msg_buf; in tegra_i2c_empty_rx_fifo()
741 if (WARN_ON_ONCE(!(i2c_dev->msg_buf_remaining))) in tegra_i2c_empty_rx_fifo()
742 return -EINVAL; in tegra_i2c_empty_rx_fifo()
744 if (i2c_dev->hw->has_mst_fifo) { in tegra_i2c_empty_rx_fifo()
760 buf_remaining -= words_to_transfer * BYTES_PER_FIFO_WORD; in tegra_i2c_empty_rx_fifo()
761 rx_fifo_avail -= words_to_transfer; in tegra_i2c_empty_rx_fifo()
777 rx_fifo_avail--; in tegra_i2c_empty_rx_fifo()
782 return -EINVAL; in tegra_i2c_empty_rx_fifo()
784 i2c_dev->msg_buf_remaining = buf_remaining; in tegra_i2c_empty_rx_fifo()
785 i2c_dev->msg_buf = buf; in tegra_i2c_empty_rx_fifo()
792 size_t buf_remaining = i2c_dev->msg_buf_remaining; in tegra_i2c_fill_tx_fifo()
794 u8 *buf = i2c_dev->msg_buf; in tegra_i2c_fill_tx_fifo()
797 if (i2c_dev->hw->has_mst_fifo) { in tegra_i2c_fill_tx_fifo()
825 buf_remaining -= words_to_transfer * BYTES_PER_FIFO_WORD; in tegra_i2c_fill_tx_fifo()
826 tx_fifo_avail -= words_to_transfer; in tegra_i2c_fill_tx_fifo()
828 i2c_dev->msg_buf_remaining = buf_remaining; in tegra_i2c_fill_tx_fifo()
829 i2c_dev->msg_buf = buf + words_to_transfer * BYTES_PER_FIFO_WORD; in tegra_i2c_fill_tx_fifo()
831 if (i2c_dev->is_vi) in tegra_i2c_fill_tx_fifo()
848 * in this function for non-zero words_to_transfer. in tegra_i2c_fill_tx_fifo()
853 i2c_dev->msg_buf_remaining = 0; in tegra_i2c_fill_tx_fifo()
854 i2c_dev->msg_buf = NULL; in tegra_i2c_fill_tx_fifo()
871 dev_warn(i2c_dev->dev, "IRQ status 0 %08x %08x %08x\n", in tegra_i2c_isr()
875 i2c_dev->msg_err |= I2C_ERR_UNKNOWN_INTERRUPT; in tegra_i2c_isr()
882 i2c_dev->msg_err |= I2C_ERR_NO_ACK; in tegra_i2c_isr()
884 i2c_dev->msg_err |= I2C_ERR_ARBITRATION_LOST; in tegra_i2c_isr()
889 * I2C transfer is terminated during the bus clear, so skip in tegra_i2c_isr()
892 if (i2c_dev->hw->supports_bus_clear && (status & I2C_INT_BUS_CLR_DONE)) in tegra_i2c_isr()
895 if (!i2c_dev->dma_mode) { in tegra_i2c_isr()
896 if (i2c_dev->msg_read && (status & I2C_INT_RX_FIFO_DATA_REQ)) { in tegra_i2c_isr()
903 i2c_dev->msg_err |= I2C_ERR_RX_BUFFER_OVERFLOW; in tegra_i2c_isr()
908 if (!i2c_dev->msg_read && (status & I2C_INT_TX_FIFO_DATA_REQ)) { in tegra_i2c_isr()
909 if (i2c_dev->msg_buf_remaining) in tegra_i2c_isr()
918 if (i2c_dev->is_dvc) in tegra_i2c_isr()
927 * so forcing msg_buf_remaining to 0 in DMA mode. in tegra_i2c_isr()
930 if (i2c_dev->dma_mode) in tegra_i2c_isr()
931 i2c_dev->msg_buf_remaining = 0; in tegra_i2c_isr()
936 if (WARN_ON_ONCE(i2c_dev->msg_buf_remaining)) { in tegra_i2c_isr()
937 i2c_dev->msg_err |= I2C_ERR_UNKNOWN_INTERRUPT; in tegra_i2c_isr()
940 complete(&i2c_dev->msg_complete); in tegra_i2c_isr()
952 if (i2c_dev->hw->supports_bus_clear) in tegra_i2c_isr()
957 if (i2c_dev->is_dvc) in tegra_i2c_isr()
960 if (i2c_dev->dma_mode) { in tegra_i2c_isr()
961 if (i2c_dev->msg_read) in tegra_i2c_isr()
962 dmaengine_terminate_async(i2c_dev->rx_dma_chan); in tegra_i2c_isr()
964 dmaengine_terminate_async(i2c_dev->tx_dma_chan); in tegra_i2c_isr()
966 complete(&i2c_dev->dma_complete); in tegra_i2c_isr()
969 complete(&i2c_dev->msg_complete); in tegra_i2c_isr()
982 if (i2c_dev->hw->has_mst_fifo) in tegra_i2c_config_fifo_trig()
987 if (i2c_dev->dma_mode) { in tegra_i2c_config_fifo_trig()
995 if (i2c_dev->msg_read) { in tegra_i2c_config_fifo_trig()
996 chan = i2c_dev->rx_dma_chan; in tegra_i2c_config_fifo_trig()
999 slv_config.src_addr = i2c_dev->base_phys + reg_offset; in tegra_i2c_config_fifo_trig()
1003 if (i2c_dev->hw->has_mst_fifo) in tegra_i2c_config_fifo_trig()
1008 chan = i2c_dev->tx_dma_chan; in tegra_i2c_config_fifo_trig()
1011 slv_config.dst_addr = i2c_dev->base_phys + reg_offset; in tegra_i2c_config_fifo_trig()
1015 if (i2c_dev->hw->has_mst_fifo) in tegra_i2c_config_fifo_trig()
1024 dev_err(i2c_dev->dev, "DMA config failed: %d\n", err); in tegra_i2c_config_fifo_trig()
1025 dev_err(i2c_dev->dev, "falling back to PIO\n"); in tegra_i2c_config_fifo_trig()
1028 i2c_dev->dma_mode = false; in tegra_i2c_config_fifo_trig()
1034 if (i2c_dev->hw->has_mst_fifo) in tegra_i2c_config_fifo_trig()
1055 tegra_i2c_isr(i2c_dev->irq, i2c_dev); in tegra_i2c_poll_completion()
1076 if (i2c_dev->atomic_mode) { in tegra_i2c_wait_completion()
1079 enable_irq(i2c_dev->irq); in tegra_i2c_wait_completion()
1082 disable_irq(i2c_dev->irq); in tegra_i2c_wait_completion()
1088 * case we will get timeout if I2C transfer is running on in tegra_i2c_wait_completion()
1107 reinit_completion(&i2c_dev->msg_complete); in tegra_i2c_issue_bus_clear()
1121 time_left = tegra_i2c_wait_completion(i2c_dev, &i2c_dev->msg_complete, 50); in tegra_i2c_issue_bus_clear()
1125 dev_err(i2c_dev->dev, "failed to clear bus\n"); in tegra_i2c_issue_bus_clear()
1126 return -ETIMEDOUT; in tegra_i2c_issue_bus_clear()
1131 dev_err(i2c_dev->dev, "un-recovered arbitration lost\n"); in tegra_i2c_issue_bus_clear()
1132 return -EIO; in tegra_i2c_issue_bus_clear()
1135 return -EAGAIN; in tegra_i2c_issue_bus_clear()
1142 u32 *dma_buf = i2c_dev->dma_buf; in tegra_i2c_push_packet_header()
1148 FIELD_PREP(PACKET_HEADER0_CONT_ID, i2c_dev->cont_id) | in tegra_i2c_push_packet_header()
1151 if (i2c_dev->dma_mode && !i2c_dev->msg_read) in tegra_i2c_push_packet_header()
1156 packet_header = msg->len - 1; in tegra_i2c_push_packet_header()
1158 if (i2c_dev->dma_mode && !i2c_dev->msg_read) in tegra_i2c_push_packet_header()
1170 if (msg->flags & I2C_M_TEN) { in tegra_i2c_push_packet_header()
1171 packet_header |= msg->addr; in tegra_i2c_push_packet_header()
1174 packet_header |= msg->addr << I2C_HEADER_SLAVE_ADDR_SHIFT; in tegra_i2c_push_packet_header()
1177 if (msg->flags & I2C_M_IGNORE_NAK) in tegra_i2c_push_packet_header()
1180 if (msg->flags & I2C_M_RD) in tegra_i2c_push_packet_header()
1183 if (i2c_dev->dma_mode && !i2c_dev->msg_read) in tegra_i2c_push_packet_header()
1192 if (i2c_dev->msg_err == I2C_ERR_NONE) in tegra_i2c_error_recover()
1197 /* start recovery upon arbitration loss in single master mode */ in tegra_i2c_error_recover()
1198 if (i2c_dev->msg_err == I2C_ERR_ARBITRATION_LOST) { in tegra_i2c_error_recover()
1199 if (!i2c_dev->multimaster_mode) in tegra_i2c_error_recover()
1200 return i2c_recover_bus(&i2c_dev->adapter); in tegra_i2c_error_recover()
1202 return -EAGAIN; in tegra_i2c_error_recover()
1205 if (i2c_dev->msg_err == I2C_ERR_NO_ACK) { in tegra_i2c_error_recover()
1206 if (msg->flags & I2C_M_IGNORE_NAK) in tegra_i2c_error_recover()
1209 return -EREMOTEIO; in tegra_i2c_error_recover()
1212 return -EIO; in tegra_i2c_error_recover()
1228 i2c_dev->msg_buf = msg->buf; in tegra_i2c_xfer_msg()
1229 i2c_dev->msg_buf_remaining = msg->len; in tegra_i2c_xfer_msg()
1230 i2c_dev->msg_err = I2C_ERR_NONE; in tegra_i2c_xfer_msg()
1231 i2c_dev->msg_read = !!(msg->flags & I2C_M_RD); in tegra_i2c_xfer_msg()
1232 reinit_completion(&i2c_dev->msg_complete); in tegra_i2c_xfer_msg()
1234 if (i2c_dev->msg_read) in tegra_i2c_xfer_msg()
1235 xfer_size = msg->len; in tegra_i2c_xfer_msg()
1237 xfer_size = msg->len + I2C_PACKET_HEADER_SIZE; in tegra_i2c_xfer_msg()
1241 i2c_dev->dma_mode = xfer_size > I2C_PIO_MODE_PREFERRED_LEN && in tegra_i2c_xfer_msg()
1242 i2c_dev->dma_buf && !i2c_dev->atomic_mode; in tegra_i2c_xfer_msg()
1251 i2c_dev->bus_clk_rate); in tegra_i2c_xfer_msg()
1256 if (i2c_dev->dma_mode) { in tegra_i2c_xfer_msg()
1257 if (i2c_dev->msg_read) { in tegra_i2c_xfer_msg()
1258 dma_sync_single_for_device(i2c_dev->dev, in tegra_i2c_xfer_msg()
1259 i2c_dev->dma_phys, in tegra_i2c_xfer_msg()
1266 dma_sync_single_for_cpu(i2c_dev->dev, in tegra_i2c_xfer_msg()
1267 i2c_dev->dma_phys, in tegra_i2c_xfer_msg()
1274 if (!i2c_dev->msg_read) { in tegra_i2c_xfer_msg()
1275 if (i2c_dev->dma_mode) { in tegra_i2c_xfer_msg()
1276 memcpy(i2c_dev->dma_buf + I2C_PACKET_HEADER_SIZE, in tegra_i2c_xfer_msg()
1277 msg->buf, msg->len); in tegra_i2c_xfer_msg()
1279 dma_sync_single_for_device(i2c_dev->dev, in tegra_i2c_xfer_msg()
1280 i2c_dev->dma_phys, in tegra_i2c_xfer_msg()
1291 if (i2c_dev->hw->has_per_pkt_xfer_complete_irq) in tegra_i2c_xfer_msg()
1294 if (!i2c_dev->dma_mode) { in tegra_i2c_xfer_msg()
1295 if (msg->flags & I2C_M_RD) in tegra_i2c_xfer_msg()
1297 else if (i2c_dev->msg_buf_remaining) in tegra_i2c_xfer_msg()
1302 dev_dbg(i2c_dev->dev, "unmasked IRQ: %02x\n", in tegra_i2c_xfer_msg()
1305 if (i2c_dev->dma_mode) { in tegra_i2c_xfer_msg()
1307 &i2c_dev->dma_complete, in tegra_i2c_xfer_msg()
1315 dmaengine_synchronize(i2c_dev->msg_read ? in tegra_i2c_xfer_msg()
1316 i2c_dev->rx_dma_chan : in tegra_i2c_xfer_msg()
1317 i2c_dev->tx_dma_chan); in tegra_i2c_xfer_msg()
1319 dmaengine_terminate_sync(i2c_dev->msg_read ? in tegra_i2c_xfer_msg()
1320 i2c_dev->rx_dma_chan : in tegra_i2c_xfer_msg()
1321 i2c_dev->tx_dma_chan); in tegra_i2c_xfer_msg()
1323 if (!time_left && !completion_done(&i2c_dev->dma_complete)) { in tegra_i2c_xfer_msg()
1324 dev_err(i2c_dev->dev, "DMA transfer timed out\n"); in tegra_i2c_xfer_msg()
1326 return -ETIMEDOUT; in tegra_i2c_xfer_msg()
1329 if (i2c_dev->msg_read && i2c_dev->msg_err == I2C_ERR_NONE) { in tegra_i2c_xfer_msg()
1330 dma_sync_single_for_cpu(i2c_dev->dev, in tegra_i2c_xfer_msg()
1331 i2c_dev->dma_phys, in tegra_i2c_xfer_msg()
1334 memcpy(i2c_dev->msg_buf, i2c_dev->dma_buf, msg->len); in tegra_i2c_xfer_msg()
1338 time_left = tegra_i2c_wait_completion(i2c_dev, &i2c_dev->msg_complete, in tegra_i2c_xfer_msg()
1344 dev_err(i2c_dev->dev, "I2C transfer timed out\n"); in tegra_i2c_xfer_msg()
1346 return -ETIMEDOUT; in tegra_i2c_xfer_msg()
1349 dev_dbg(i2c_dev->dev, "transfer complete: %lu %d %d\n", in tegra_i2c_xfer_msg()
1350 time_left, completion_done(&i2c_dev->msg_complete), in tegra_i2c_xfer_msg()
1351 i2c_dev->msg_err); in tegra_i2c_xfer_msg()
1353 i2c_dev->dma_mode = false; in tegra_i2c_xfer_msg()
1368 ret = pm_runtime_get_sync(i2c_dev->dev); in tegra_i2c_xfer()
1370 dev_err(i2c_dev->dev, "runtime resume failed %d\n", ret); in tegra_i2c_xfer()
1371 pm_runtime_put_noidle(i2c_dev->dev); in tegra_i2c_xfer()
1378 if (i < (num - 1)) { in tegra_i2c_xfer()
1390 pm_runtime_put(i2c_dev->dev); in tegra_i2c_xfer()
1401 i2c_dev->atomic_mode = true; in tegra_i2c_xfer_atomic()
1403 i2c_dev->atomic_mode = false; in tegra_i2c_xfer_atomic()
1414 if (i2c_dev->hw->has_continue_xfer_support) in tegra_i2c_func()
1430 .max_write_len = SZ_4K - I2C_PACKET_HEADER_SIZE,
1435 .max_write_len = SZ_64K - I2C_PACKET_HEADER_SIZE,
1611 { .compatible = "nvidia,tegra194-i2c", .data = &tegra194_i2c_hw, },
1612 { .compatible = "nvidia,tegra186-i2c", .data = &tegra186_i2c_hw, },
1613 { .compatible = "nvidia,tegra210-i2c-vi", .data = &tegra210_i2c_hw, },
1614 { .compatible = "nvidia,tegra210-i2c", .data = &tegra210_i2c_hw, },
1615 { .compatible = "nvidia,tegra124-i2c", .data = &tegra124_i2c_hw, },
1616 { .compatible = "nvidia,tegra114-i2c", .data = &tegra114_i2c_hw, },
1617 { .compatible = "nvidia,tegra30-i2c", .data = &tegra30_i2c_hw, },
1618 { .compatible = "nvidia,tegra20-i2c", .data = &tegra20_i2c_hw, },
1619 { .compatible = "nvidia,tegra20-i2c-dvc", .data = &tegra20_i2c_hw, },
1626 struct device_node *np = i2c_dev->dev->of_node; in tegra_i2c_parse_dt()
1630 err = of_property_read_u32(np, "clock-frequency", in tegra_i2c_parse_dt()
1631 &i2c_dev->bus_clk_rate); in tegra_i2c_parse_dt()
1633 i2c_dev->bus_clk_rate = I2C_MAX_STANDARD_MODE_FREQ; in tegra_i2c_parse_dt()
1635 multi_mode = of_property_read_bool(np, "multi-master"); in tegra_i2c_parse_dt()
1636 i2c_dev->multimaster_mode = multi_mode; in tegra_i2c_parse_dt()
1638 if (of_device_is_compatible(np, "nvidia,tegra20-i2c-dvc")) in tegra_i2c_parse_dt()
1639 i2c_dev->is_dvc = true; in tegra_i2c_parse_dt()
1641 if (of_device_is_compatible(np, "nvidia,tegra210-i2c-vi")) in tegra_i2c_parse_dt()
1642 i2c_dev->is_vi = true; in tegra_i2c_parse_dt()
1649 i2c_dev->clocks[i2c_dev->nclocks++].id = "div-clk"; in tegra_i2c_init_clocks()
1651 if (i2c_dev->hw == &tegra20_i2c_hw || i2c_dev->hw == &tegra30_i2c_hw) in tegra_i2c_init_clocks()
1652 i2c_dev->clocks[i2c_dev->nclocks++].id = "fast-clk"; in tegra_i2c_init_clocks()
1654 if (i2c_dev->is_vi) in tegra_i2c_init_clocks()
1655 i2c_dev->clocks[i2c_dev->nclocks++].id = "slow"; in tegra_i2c_init_clocks()
1657 err = devm_clk_bulk_get(i2c_dev->dev, i2c_dev->nclocks, in tegra_i2c_init_clocks()
1658 i2c_dev->clocks); in tegra_i2c_init_clocks()
1662 err = clk_bulk_prepare(i2c_dev->nclocks, i2c_dev->clocks); in tegra_i2c_init_clocks()
1666 i2c_dev->div_clk = i2c_dev->clocks[0].clk; in tegra_i2c_init_clocks()
1668 if (!i2c_dev->multimaster_mode) in tegra_i2c_init_clocks()
1671 err = clk_enable(i2c_dev->div_clk); in tegra_i2c_init_clocks()
1673 dev_err(i2c_dev->dev, "failed to enable div-clk: %d\n", err); in tegra_i2c_init_clocks()
1680 clk_bulk_unprepare(i2c_dev->nclocks, i2c_dev->clocks); in tegra_i2c_init_clocks()
1687 if (i2c_dev->multimaster_mode) in tegra_i2c_release_clocks()
1688 clk_disable(i2c_dev->div_clk); in tegra_i2c_release_clocks()
1690 clk_bulk_unprepare(i2c_dev->nclocks, i2c_dev->clocks); in tegra_i2c_release_clocks()
1697 ret = pm_runtime_get_sync(i2c_dev->dev); in tegra_i2c_init_hardware()
1699 dev_err(i2c_dev->dev, "runtime resume failed: %d\n", ret); in tegra_i2c_init_hardware()
1703 pm_runtime_put(i2c_dev->dev); in tegra_i2c_init_hardware()
1714 i2c_dev = devm_kzalloc(&pdev->dev, sizeof(*i2c_dev), GFP_KERNEL); in tegra_i2c_probe()
1716 return -ENOMEM; in tegra_i2c_probe()
1720 init_completion(&i2c_dev->msg_complete); in tegra_i2c_probe()
1721 init_completion(&i2c_dev->dma_complete); in tegra_i2c_probe()
1723 i2c_dev->hw = of_device_get_match_data(&pdev->dev); in tegra_i2c_probe()
1724 i2c_dev->cont_id = pdev->id; in tegra_i2c_probe()
1725 i2c_dev->dev = &pdev->dev; in tegra_i2c_probe()
1727 i2c_dev->base = devm_platform_get_and_ioremap_resource(pdev, 0, &res); in tegra_i2c_probe()
1728 if (IS_ERR(i2c_dev->base)) in tegra_i2c_probe()
1729 return PTR_ERR(i2c_dev->base); in tegra_i2c_probe()
1731 i2c_dev->base_phys = res->start; in tegra_i2c_probe()
1737 i2c_dev->irq = err; in tegra_i2c_probe()
1740 irq_set_status_flags(i2c_dev->irq, IRQ_NOAUTOEN); in tegra_i2c_probe()
1742 err = devm_request_irq(i2c_dev->dev, i2c_dev->irq, tegra_i2c_isr, in tegra_i2c_probe()
1743 IRQF_NO_SUSPEND, dev_name(i2c_dev->dev), in tegra_i2c_probe()
1748 i2c_dev->rst = devm_reset_control_get_exclusive(i2c_dev->dev, "i2c"); in tegra_i2c_probe()
1749 if (IS_ERR(i2c_dev->rst)) { in tegra_i2c_probe()
1750 dev_err_probe(i2c_dev->dev, PTR_ERR(i2c_dev->rst), in tegra_i2c_probe()
1752 return PTR_ERR(i2c_dev->rst); in tegra_i2c_probe()
1766 * VI I2C is in VE power domain which is not always ON and not in tegra_i2c_probe()
1767 * IRQ-safe. Thus, IRQ-safe device shouldn't be attached to a in tegra_i2c_probe()
1768 * non IRQ-safe domain because this prevents powering off the power in tegra_i2c_probe()
1771 * VI I2C device shouldn't be marked as IRQ-safe because VI I2C won't in tegra_i2c_probe()
1774 if (!i2c_dev->is_vi) in tegra_i2c_probe()
1775 pm_runtime_irq_safe(i2c_dev->dev); in tegra_i2c_probe()
1777 pm_runtime_enable(i2c_dev->dev); in tegra_i2c_probe()
1783 i2c_set_adapdata(&i2c_dev->adapter, i2c_dev); in tegra_i2c_probe()
1784 i2c_dev->adapter.dev.of_node = i2c_dev->dev->of_node; in tegra_i2c_probe()
1785 i2c_dev->adapter.dev.parent = i2c_dev->dev; in tegra_i2c_probe()
1786 i2c_dev->adapter.retries = 1; in tegra_i2c_probe()
1787 i2c_dev->adapter.timeout = 6 * HZ; in tegra_i2c_probe()
1788 i2c_dev->adapter.quirks = i2c_dev->hw->quirks; in tegra_i2c_probe()
1789 i2c_dev->adapter.owner = THIS_MODULE; in tegra_i2c_probe()
1790 i2c_dev->adapter.class = I2C_CLASS_DEPRECATED; in tegra_i2c_probe()
1791 i2c_dev->adapter.algo = &tegra_i2c_algo; in tegra_i2c_probe()
1792 i2c_dev->adapter.nr = pdev->id; in tegra_i2c_probe()
1794 if (i2c_dev->hw->supports_bus_clear) in tegra_i2c_probe()
1795 i2c_dev->adapter.bus_recovery_info = &tegra_i2c_recovery_info; in tegra_i2c_probe()
1797 strlcpy(i2c_dev->adapter.name, dev_name(i2c_dev->dev), in tegra_i2c_probe()
1798 sizeof(i2c_dev->adapter.name)); in tegra_i2c_probe()
1800 err = i2c_add_numbered_adapter(&i2c_dev->adapter); in tegra_i2c_probe()
1807 pm_runtime_disable(i2c_dev->dev); in tegra_i2c_probe()
1820 i2c_del_adapter(&i2c_dev->adapter); in tegra_i2c_remove()
1821 pm_runtime_disable(i2c_dev->dev); in tegra_i2c_remove()
1838 err = clk_bulk_enable(i2c_dev->nclocks, i2c_dev->clocks); in tegra_i2c_runtime_resume()
1843 * VI I2C device is attached to VE power domain which goes through in tegra_i2c_runtime_resume()
1845 * controller needs to be re-initialized after power ON. in tegra_i2c_runtime_resume()
1847 if (i2c_dev->is_vi) { in tegra_i2c_runtime_resume()
1856 clk_bulk_disable(i2c_dev->nclocks, i2c_dev->clocks); in tegra_i2c_runtime_resume()
1865 clk_bulk_disable(i2c_dev->nclocks, i2c_dev->clocks); in tegra_i2c_runtime_suspend()
1875 i2c_mark_adapter_suspended(&i2c_dev->adapter); in tegra_i2c_suspend()
1914 i2c_mark_adapter_resumed(&i2c_dev->adapter); in tegra_i2c_resume()
1929 .name = "tegra-i2c",
1936 MODULE_DESCRIPTION("NVIDIA Tegra I2C Bus Controller driver");