blob: 437294ea2f0ad9381035c19f00ffae82ada203c8 [file] [log] [blame]
Colin Crossdb811ca2011-02-20 17:14:21 -08001/*
2 * drivers/i2c/busses/i2c-tegra.c
3 *
4 * Copyright (C) 2010 Google, Inc.
5 * Author: Colin Cross <ccross@android.com>
6 *
7 * This software is licensed under the terms of the GNU General Public
8 * License version 2, as published by the Free Software Foundation, and
9 * may be copied, distributed, and modified under those terms.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 */
17
18#include <linux/kernel.h>
19#include <linux/init.h>
20#include <linux/platform_device.h>
21#include <linux/clk.h>
22#include <linux/err.h>
23#include <linux/i2c.h>
24#include <linux/io.h>
25#include <linux/interrupt.h>
26#include <linux/delay.h>
27#include <linux/slab.h>
Laxman Dewangan6ad068e2012-08-19 00:47:46 +053028#include <linux/of_device.h>
Paul Gortmaker93cf5d72011-07-29 21:14:30 -070029#include <linux/module.h>
Stephen Warrendda9d6a2013-11-06 16:42:05 -070030#include <linux/reset.h>
Jon Hunter718917b2016-08-26 14:09:05 +010031#include <linux/pinctrl/consumer.h>
Jon Hunter1f50ad22016-08-26 14:09:04 +010032#include <linux/pm_runtime.h>
Shardar Shariff Md685143a12016-08-31 18:58:40 +053033#include <linux/iopoll.h>
Colin Crossdb811ca2011-02-20 17:14:21 -080034
35#include <asm/unaligned.h>
36
Colin Crossdb811ca2011-02-20 17:14:21 -080037#define TEGRA_I2C_TIMEOUT (msecs_to_jiffies(1000))
38#define BYTES_PER_FIFO_WORD 4
39
40#define I2C_CNFG 0x000
Jay Cheng40abcf72011-04-25 15:32:27 -060041#define I2C_CNFG_DEBOUNCE_CNT_SHIFT 12
Jon Hunter2929be22016-08-26 14:08:58 +010042#define I2C_CNFG_PACKET_MODE_EN BIT(10)
43#define I2C_CNFG_NEW_MASTER_FSM BIT(11)
44#define I2C_CNFG_MULTI_MASTER_MODE BIT(17)
Todd Poynorcb63c622011-04-25 15:32:25 -060045#define I2C_STATUS 0x01C
Colin Crossdb811ca2011-02-20 17:14:21 -080046#define I2C_SL_CNFG 0x020
Jon Hunter2929be22016-08-26 14:08:58 +010047#define I2C_SL_CNFG_NACK BIT(1)
48#define I2C_SL_CNFG_NEWSL BIT(2)
Colin Crossdb811ca2011-02-20 17:14:21 -080049#define I2C_SL_ADDR1 0x02c
Stephen Warren5afa9d32011-06-06 11:25:19 -060050#define I2C_SL_ADDR2 0x030
Colin Crossdb811ca2011-02-20 17:14:21 -080051#define I2C_TX_FIFO 0x050
52#define I2C_RX_FIFO 0x054
53#define I2C_PACKET_TRANSFER_STATUS 0x058
54#define I2C_FIFO_CONTROL 0x05c
Jon Hunter2929be22016-08-26 14:08:58 +010055#define I2C_FIFO_CONTROL_TX_FLUSH BIT(1)
56#define I2C_FIFO_CONTROL_RX_FLUSH BIT(0)
Colin Crossdb811ca2011-02-20 17:14:21 -080057#define I2C_FIFO_CONTROL_TX_TRIG_SHIFT 5
58#define I2C_FIFO_CONTROL_RX_TRIG_SHIFT 2
59#define I2C_FIFO_STATUS 0x060
60#define I2C_FIFO_STATUS_TX_MASK 0xF0
61#define I2C_FIFO_STATUS_TX_SHIFT 4
62#define I2C_FIFO_STATUS_RX_MASK 0x0F
63#define I2C_FIFO_STATUS_RX_SHIFT 0
64#define I2C_INT_MASK 0x064
65#define I2C_INT_STATUS 0x068
Jon Hunter2929be22016-08-26 14:08:58 +010066#define I2C_INT_PACKET_XFER_COMPLETE BIT(7)
67#define I2C_INT_ALL_PACKETS_XFER_COMPLETE BIT(6)
68#define I2C_INT_TX_FIFO_OVERFLOW BIT(5)
69#define I2C_INT_RX_FIFO_UNDERFLOW BIT(4)
70#define I2C_INT_NO_ACK BIT(3)
71#define I2C_INT_ARBITRATION_LOST BIT(2)
72#define I2C_INT_TX_FIFO_DATA_REQ BIT(1)
73#define I2C_INT_RX_FIFO_DATA_REQ BIT(0)
Colin Crossdb811ca2011-02-20 17:14:21 -080074#define I2C_CLK_DIVISOR 0x06c
Laxman Dewangan2a2897b2013-01-05 17:34:46 +053075#define I2C_CLK_DIVISOR_STD_FAST_MODE_SHIFT 16
76#define I2C_CLK_MULTIPLIER_STD_FAST_MODE 8
Colin Crossdb811ca2011-02-20 17:14:21 -080077
78#define DVC_CTRL_REG1 0x000
Jon Hunter2929be22016-08-26 14:08:58 +010079#define DVC_CTRL_REG1_INTR_EN BIT(10)
Colin Crossdb811ca2011-02-20 17:14:21 -080080#define DVC_CTRL_REG2 0x004
81#define DVC_CTRL_REG3 0x008
Jon Hunter2929be22016-08-26 14:08:58 +010082#define DVC_CTRL_REG3_SW_PROG BIT(26)
83#define DVC_CTRL_REG3_I2C_DONE_INTR_EN BIT(30)
Colin Crossdb811ca2011-02-20 17:14:21 -080084#define DVC_STATUS 0x00c
Jon Hunter2929be22016-08-26 14:08:58 +010085#define DVC_STATUS_I2C_DONE_INTR BIT(30)
Colin Crossdb811ca2011-02-20 17:14:21 -080086
87#define I2C_ERR_NONE 0x00
88#define I2C_ERR_NO_ACK 0x01
89#define I2C_ERR_ARBITRATION_LOST 0x02
Todd Poynorcb63c622011-04-25 15:32:25 -060090#define I2C_ERR_UNKNOWN_INTERRUPT 0x04
Colin Crossdb811ca2011-02-20 17:14:21 -080091
92#define PACKET_HEADER0_HEADER_SIZE_SHIFT 28
93#define PACKET_HEADER0_PACKET_ID_SHIFT 16
94#define PACKET_HEADER0_CONT_ID_SHIFT 12
Jon Hunter2929be22016-08-26 14:08:58 +010095#define PACKET_HEADER0_PROTOCOL_I2C BIT(4)
Colin Crossdb811ca2011-02-20 17:14:21 -080096
Jon Hunter2929be22016-08-26 14:08:58 +010097#define I2C_HEADER_HIGHSPEED_MODE BIT(22)
98#define I2C_HEADER_CONT_ON_NAK BIT(21)
99#define I2C_HEADER_SEND_START_BYTE BIT(20)
100#define I2C_HEADER_READ BIT(19)
101#define I2C_HEADER_10BIT_ADDR BIT(18)
102#define I2C_HEADER_IE_ENABLE BIT(17)
103#define I2C_HEADER_REPEAT_START BIT(16)
104#define I2C_HEADER_CONTINUE_XFER BIT(15)
Colin Crossdb811ca2011-02-20 17:14:21 -0800105#define I2C_HEADER_MASTER_ADDR_SHIFT 12
106#define I2C_HEADER_SLAVE_ADDR_SHIFT 1
Laxman Dewangan6f4664b2015-06-30 16:24:26 +0530107
108#define I2C_CONFIG_LOAD 0x08C
Jon Hunter2929be22016-08-26 14:08:58 +0100109#define I2C_MSTR_CONFIG_LOAD BIT(0)
110#define I2C_SLV_CONFIG_LOAD BIT(1)
111#define I2C_TIMEOUT_CONFIG_LOAD BIT(2)
Laxman Dewangan6f4664b2015-06-30 16:24:26 +0530112
Shardar Shariff Md497fbe22016-03-14 18:52:18 +0530113#define I2C_CLKEN_OVERRIDE 0x090
Jon Hunter2929be22016-08-26 14:08:58 +0100114#define I2C_MST_CORE_CLKEN_OVR BIT(0)
Shardar Shariff Md497fbe22016-03-14 18:52:18 +0530115
Shardar Shariff Md685143a12016-08-31 18:58:40 +0530116#define I2C_CONFIG_LOAD_TIMEOUT 1000000
117
Thierry Redingc5907c62018-06-19 12:49:42 +0200118#define I2C_MST_FIFO_CONTROL 0x0b4
119#define I2C_MST_FIFO_CONTROL_RX_FLUSH BIT(0)
120#define I2C_MST_FIFO_CONTROL_TX_FLUSH BIT(1)
121#define I2C_MST_FIFO_CONTROL_RX_TRIG(x) (((x) - 1) << 4)
122#define I2C_MST_FIFO_CONTROL_TX_TRIG(x) (((x) - 1) << 16)
123
124#define I2C_MST_FIFO_STATUS 0x0b8
125#define I2C_MST_FIFO_STATUS_RX_MASK 0xff
126#define I2C_MST_FIFO_STATUS_RX_SHIFT 0
127#define I2C_MST_FIFO_STATUS_TX_MASK 0xff0000
128#define I2C_MST_FIFO_STATUS_TX_SHIFT 16
129
Laxman Dewanganc8f5af22012-06-13 15:42:38 +0530130/*
131 * msg_end_type: The bus control which need to be send at end of transfer.
132 * @MSG_END_STOP: Send stop pulse at end of transfer.
133 * @MSG_END_REPEAT_START: Send repeat start at end of transfer.
134 * @MSG_END_CONTINUE: The following on message is coming and so do not send
135 * stop or repeat start.
136 */
137enum msg_end_type {
138 MSG_END_STOP,
139 MSG_END_REPEAT_START,
140 MSG_END_CONTINUE,
141};
Colin Crossdb811ca2011-02-20 17:14:21 -0800142
143/**
Laxman Dewangan6ad068e2012-08-19 00:47:46 +0530144 * struct tegra_i2c_hw_feature : Different HW support on Tegra
145 * @has_continue_xfer_support: Continue transfer supports.
Laxman Dewangan2a2897b2013-01-05 17:34:46 +0530146 * @has_per_pkt_xfer_complete_irq: Has enable/disable capability for transfer
147 * complete interrupt per packet basis.
148 * @has_single_clk_source: The i2c controller has single clock source. Tegra30
149 * and earlier Socs has two clock sources i.e. div-clk and
150 * fast-clk.
Laxman Dewangan6f4664b2015-06-30 16:24:26 +0530151 * @has_config_load_reg: Has the config load register to load the new
152 * configuration.
Laxman Dewangan2a2897b2013-01-05 17:34:46 +0530153 * @clk_divisor_hs_mode: Clock divisor in HS mode.
154 * @clk_divisor_std_fast_mode: Clock divisor in standard/fast mode. It is
155 * applicable if there is no fast clock source i.e. single clock
156 * source.
Laxman Dewangan6ad068e2012-08-19 00:47:46 +0530157 */
158
159struct tegra_i2c_hw_feature {
160 bool has_continue_xfer_support;
Laxman Dewangan2a2897b2013-01-05 17:34:46 +0530161 bool has_per_pkt_xfer_complete_irq;
162 bool has_single_clk_source;
Laxman Dewangan6f4664b2015-06-30 16:24:26 +0530163 bool has_config_load_reg;
Laxman Dewangan2a2897b2013-01-05 17:34:46 +0530164 int clk_divisor_hs_mode;
165 int clk_divisor_std_fast_mode;
Laxman Dewangand57f5de2015-06-30 16:24:27 +0530166 u16 clk_divisor_fast_plus_mode;
Shardar Shariff Md497fbe22016-03-14 18:52:18 +0530167 bool has_multi_master_mode;
168 bool has_slcg_override_reg;
Thierry Redingc5907c62018-06-19 12:49:42 +0200169 bool has_mst_fifo;
Laxman Dewangan6ad068e2012-08-19 00:47:46 +0530170};
171
172/**
Colin Crossdb811ca2011-02-20 17:14:21 -0800173 * struct tegra_i2c_dev - per device i2c context
174 * @dev: device reference for power management
Laxman Dewangan6ad068e2012-08-19 00:47:46 +0530175 * @hw: Tegra i2c hw feature.
Colin Crossdb811ca2011-02-20 17:14:21 -0800176 * @adapter: core i2c layer adapter information
Laxman Dewangan14e92bd2012-08-08 13:21:32 +0530177 * @div_clk: clock reference for div clock of i2c controller.
178 * @fast_clk: clock reference for fast clock of i2c controller.
Colin Crossdb811ca2011-02-20 17:14:21 -0800179 * @base: ioremapped registers cookie
180 * @cont_id: i2c controller id, used for for packet header
181 * @irq: irq number of transfer complete interrupt
182 * @is_dvc: identifies the DVC i2c controller, has a different register layout
183 * @msg_complete: transfer completion notifier
184 * @msg_err: error code for completed message
185 * @msg_buf: pointer to current message data
186 * @msg_buf_remaining: size of unsent data in the message buffer
187 * @msg_read: identifies read transfers
188 * @bus_clk_rate: current i2c bus clock rate
Colin Crossdb811ca2011-02-20 17:14:21 -0800189 */
190struct tegra_i2c_dev {
191 struct device *dev;
Laxman Dewangan6ad068e2012-08-19 00:47:46 +0530192 const struct tegra_i2c_hw_feature *hw;
Colin Crossdb811ca2011-02-20 17:14:21 -0800193 struct i2c_adapter adapter;
Laxman Dewangan14e92bd2012-08-08 13:21:32 +0530194 struct clk *div_clk;
195 struct clk *fast_clk;
Stephen Warrendda9d6a2013-11-06 16:42:05 -0700196 struct reset_control *rst;
Colin Crossdb811ca2011-02-20 17:14:21 -0800197 void __iomem *base;
198 int cont_id;
199 int irq;
Todd Poynorcb63c622011-04-25 15:32:25 -0600200 bool irq_disabled;
Colin Crossdb811ca2011-02-20 17:14:21 -0800201 int is_dvc;
202 struct completion msg_complete;
203 int msg_err;
204 u8 *msg_buf;
205 size_t msg_buf_remaining;
206 int msg_read;
Stephen Warren49a64ac2013-03-21 08:08:46 +0000207 u32 bus_clk_rate;
Laxman Dewangand57f5de2015-06-30 16:24:27 +0530208 u16 clk_divisor_non_hs_mode;
Shardar Shariff Md497fbe22016-03-14 18:52:18 +0530209 bool is_multimaster_mode;
Shardar Shariff Md77821b462016-08-31 18:58:44 +0530210 spinlock_t xfer_lock;
Colin Crossdb811ca2011-02-20 17:14:21 -0800211};
212
Jon Hunterc7ae44e82016-08-26 14:08:57 +0100213static void dvc_writel(struct tegra_i2c_dev *i2c_dev, u32 val,
214 unsigned long reg)
Colin Crossdb811ca2011-02-20 17:14:21 -0800215{
216 writel(val, i2c_dev->base + reg);
217}
218
219static u32 dvc_readl(struct tegra_i2c_dev *i2c_dev, unsigned long reg)
220{
221 return readl(i2c_dev->base + reg);
222}
223
224/*
225 * i2c_writel and i2c_readl will offset the register if necessary to talk
226 * to the I2C block inside the DVC block
227 */
228static unsigned long tegra_i2c_reg_addr(struct tegra_i2c_dev *i2c_dev,
229 unsigned long reg)
230{
231 if (i2c_dev->is_dvc)
232 reg += (reg >= I2C_TX_FIFO) ? 0x10 : 0x40;
233 return reg;
234}
235
236static void i2c_writel(struct tegra_i2c_dev *i2c_dev, u32 val,
237 unsigned long reg)
238{
239 writel(val, i2c_dev->base + tegra_i2c_reg_addr(i2c_dev, reg));
Laxman Dewanganec7aaca2012-06-13 15:42:36 +0530240
241 /* Read back register to make sure that register writes completed */
242 if (reg != I2C_TX_FIFO)
243 readl(i2c_dev->base + tegra_i2c_reg_addr(i2c_dev, reg));
Colin Crossdb811ca2011-02-20 17:14:21 -0800244}
245
246static u32 i2c_readl(struct tegra_i2c_dev *i2c_dev, unsigned long reg)
247{
248 return readl(i2c_dev->base + tegra_i2c_reg_addr(i2c_dev, reg));
249}
250
251static void i2c_writesl(struct tegra_i2c_dev *i2c_dev, void *data,
252 unsigned long reg, int len)
253{
254 writesl(i2c_dev->base + tegra_i2c_reg_addr(i2c_dev, reg), data, len);
255}
256
257static void i2c_readsl(struct tegra_i2c_dev *i2c_dev, void *data,
258 unsigned long reg, int len)
259{
260 readsl(i2c_dev->base + tegra_i2c_reg_addr(i2c_dev, reg), data, len);
261}
262
263static void tegra_i2c_mask_irq(struct tegra_i2c_dev *i2c_dev, u32 mask)
264{
Jon Hunterf5076682016-08-26 14:08:59 +0100265 u32 int_mask;
266
267 int_mask = i2c_readl(i2c_dev, I2C_INT_MASK) & ~mask;
Colin Crossdb811ca2011-02-20 17:14:21 -0800268 i2c_writel(i2c_dev, int_mask, I2C_INT_MASK);
269}
270
271static void tegra_i2c_unmask_irq(struct tegra_i2c_dev *i2c_dev, u32 mask)
272{
Jon Hunterf5076682016-08-26 14:08:59 +0100273 u32 int_mask;
274
275 int_mask = i2c_readl(i2c_dev, I2C_INT_MASK) | mask;
Colin Crossdb811ca2011-02-20 17:14:21 -0800276 i2c_writel(i2c_dev, int_mask, I2C_INT_MASK);
277}
278
279static int tegra_i2c_flush_fifos(struct tegra_i2c_dev *i2c_dev)
280{
281 unsigned long timeout = jiffies + HZ;
Thierry Redingc5907c62018-06-19 12:49:42 +0200282 unsigned int offset;
283 u32 mask, val;
Jon Hunterf5076682016-08-26 14:08:59 +0100284
Thierry Redingc5907c62018-06-19 12:49:42 +0200285 if (i2c_dev->hw->has_mst_fifo) {
286 mask = I2C_MST_FIFO_CONTROL_TX_FLUSH |
287 I2C_MST_FIFO_CONTROL_RX_FLUSH;
288 offset = I2C_MST_FIFO_CONTROL;
289 } else {
290 mask = I2C_FIFO_CONTROL_TX_FLUSH |
291 I2C_FIFO_CONTROL_RX_FLUSH;
292 offset = I2C_FIFO_CONTROL;
293 }
Colin Crossdb811ca2011-02-20 17:14:21 -0800294
Thierry Redingc5907c62018-06-19 12:49:42 +0200295 val = i2c_readl(i2c_dev, offset);
296 val |= mask;
297 i2c_writel(i2c_dev, val, offset);
298
299 while (i2c_readl(i2c_dev, offset) & mask) {
Colin Crossdb811ca2011-02-20 17:14:21 -0800300 if (time_after(jiffies, timeout)) {
301 dev_warn(i2c_dev->dev, "timeout waiting for fifo flush\n");
302 return -ETIMEDOUT;
303 }
304 msleep(1);
305 }
306 return 0;
307}
308
309static int tegra_i2c_empty_rx_fifo(struct tegra_i2c_dev *i2c_dev)
310{
311 u32 val;
312 int rx_fifo_avail;
313 u8 *buf = i2c_dev->msg_buf;
314 size_t buf_remaining = i2c_dev->msg_buf_remaining;
315 int words_to_transfer;
316
Thierry Redingc5907c62018-06-19 12:49:42 +0200317 if (i2c_dev->hw->has_mst_fifo) {
318 val = i2c_readl(i2c_dev, I2C_MST_FIFO_STATUS);
319 rx_fifo_avail = (val & I2C_MST_FIFO_STATUS_RX_MASK) >>
320 I2C_MST_FIFO_STATUS_RX_SHIFT;
321 } else {
322 val = i2c_readl(i2c_dev, I2C_FIFO_STATUS);
323 rx_fifo_avail = (val & I2C_FIFO_STATUS_RX_MASK) >>
324 I2C_FIFO_STATUS_RX_SHIFT;
325 }
Colin Crossdb811ca2011-02-20 17:14:21 -0800326
327 /* Rounds down to not include partial word at the end of buf */
328 words_to_transfer = buf_remaining / BYTES_PER_FIFO_WORD;
329 if (words_to_transfer > rx_fifo_avail)
330 words_to_transfer = rx_fifo_avail;
331
332 i2c_readsl(i2c_dev, buf, I2C_RX_FIFO, words_to_transfer);
333
334 buf += words_to_transfer * BYTES_PER_FIFO_WORD;
335 buf_remaining -= words_to_transfer * BYTES_PER_FIFO_WORD;
336 rx_fifo_avail -= words_to_transfer;
337
338 /*
339 * If there is a partial word at the end of buf, handle it manually to
340 * prevent overwriting past the end of buf
341 */
342 if (rx_fifo_avail > 0 && buf_remaining > 0) {
343 BUG_ON(buf_remaining > 3);
344 val = i2c_readl(i2c_dev, I2C_RX_FIFO);
Dmitry Osipenko8c340f62015-01-26 19:55:02 +0300345 val = cpu_to_le32(val);
Colin Crossdb811ca2011-02-20 17:14:21 -0800346 memcpy(buf, &val, buf_remaining);
347 buf_remaining = 0;
348 rx_fifo_avail--;
349 }
350
351 BUG_ON(rx_fifo_avail > 0 && buf_remaining > 0);
352 i2c_dev->msg_buf_remaining = buf_remaining;
353 i2c_dev->msg_buf = buf;
Thierry Redingc5907c62018-06-19 12:49:42 +0200354
Colin Crossdb811ca2011-02-20 17:14:21 -0800355 return 0;
356}
357
358static int tegra_i2c_fill_tx_fifo(struct tegra_i2c_dev *i2c_dev)
359{
360 u32 val;
361 int tx_fifo_avail;
362 u8 *buf = i2c_dev->msg_buf;
363 size_t buf_remaining = i2c_dev->msg_buf_remaining;
364 int words_to_transfer;
365
Thierry Redingc5907c62018-06-19 12:49:42 +0200366 if (i2c_dev->hw->has_mst_fifo) {
367 val = i2c_readl(i2c_dev, I2C_MST_FIFO_STATUS);
368 tx_fifo_avail = (val & I2C_MST_FIFO_STATUS_TX_MASK) >>
369 I2C_MST_FIFO_STATUS_TX_SHIFT;
370 } else {
371 val = i2c_readl(i2c_dev, I2C_FIFO_STATUS);
372 tx_fifo_avail = (val & I2C_FIFO_STATUS_TX_MASK) >>
373 I2C_FIFO_STATUS_TX_SHIFT;
374 }
Colin Crossdb811ca2011-02-20 17:14:21 -0800375
376 /* Rounds down to not include partial word at the end of buf */
377 words_to_transfer = buf_remaining / BYTES_PER_FIFO_WORD;
Colin Crossdb811ca2011-02-20 17:14:21 -0800378
Doug Anderson96219c32011-08-30 11:46:10 -0600379 /* It's very common to have < 4 bytes, so optimize that case. */
380 if (words_to_transfer) {
381 if (words_to_transfer > tx_fifo_avail)
382 words_to_transfer = tx_fifo_avail;
Colin Crossdb811ca2011-02-20 17:14:21 -0800383
Doug Anderson96219c32011-08-30 11:46:10 -0600384 /*
385 * Update state before writing to FIFO. If this casues us
386 * to finish writing all bytes (AKA buf_remaining goes to 0) we
387 * have a potential for an interrupt (PACKET_XFER_COMPLETE is
388 * not maskable). We need to make sure that the isr sees
389 * buf_remaining as 0 and doesn't call us back re-entrantly.
390 */
391 buf_remaining -= words_to_transfer * BYTES_PER_FIFO_WORD;
392 tx_fifo_avail -= words_to_transfer;
393 i2c_dev->msg_buf_remaining = buf_remaining;
394 i2c_dev->msg_buf = buf +
395 words_to_transfer * BYTES_PER_FIFO_WORD;
396 barrier();
397
398 i2c_writesl(i2c_dev, buf, I2C_TX_FIFO, words_to_transfer);
399
400 buf += words_to_transfer * BYTES_PER_FIFO_WORD;
401 }
Colin Crossdb811ca2011-02-20 17:14:21 -0800402
403 /*
404 * If there is a partial word at the end of buf, handle it manually to
405 * prevent reading past the end of buf, which could cross a page
406 * boundary and fault.
407 */
408 if (tx_fifo_avail > 0 && buf_remaining > 0) {
409 BUG_ON(buf_remaining > 3);
410 memcpy(&val, buf, buf_remaining);
Dmitry Osipenko8c340f62015-01-26 19:55:02 +0300411 val = le32_to_cpu(val);
Doug Anderson96219c32011-08-30 11:46:10 -0600412
413 /* Again update before writing to FIFO to make sure isr sees. */
414 i2c_dev->msg_buf_remaining = 0;
415 i2c_dev->msg_buf = NULL;
416 barrier();
417
Colin Crossdb811ca2011-02-20 17:14:21 -0800418 i2c_writel(i2c_dev, val, I2C_TX_FIFO);
Colin Crossdb811ca2011-02-20 17:14:21 -0800419 }
420
Colin Crossdb811ca2011-02-20 17:14:21 -0800421 return 0;
422}
423
424/*
425 * One of the Tegra I2C blocks is inside the DVC (Digital Voltage Controller)
426 * block. This block is identical to the rest of the I2C blocks, except that
427 * it only supports master mode, it has registers moved around, and it needs
428 * some extra init to get it into I2C mode. The register moves are handled
429 * by i2c_readl and i2c_writel
430 */
431static void tegra_dvc_init(struct tegra_i2c_dev *i2c_dev)
432{
Jon Hunterf5076682016-08-26 14:08:59 +0100433 u32 val;
434
Colin Crossdb811ca2011-02-20 17:14:21 -0800435 val = dvc_readl(i2c_dev, DVC_CTRL_REG3);
436 val |= DVC_CTRL_REG3_SW_PROG;
437 val |= DVC_CTRL_REG3_I2C_DONE_INTR_EN;
438 dvc_writel(i2c_dev, val, DVC_CTRL_REG3);
439
440 val = dvc_readl(i2c_dev, DVC_CTRL_REG1);
441 val |= DVC_CTRL_REG1_INTR_EN;
442 dvc_writel(i2c_dev, val, DVC_CTRL_REG1);
443}
444
Jon Hunter1f50ad22016-08-26 14:09:04 +0100445static int tegra_i2c_runtime_resume(struct device *dev)
Laxman Dewanganfd301cc2012-08-19 00:47:47 +0530446{
Jon Hunter1f50ad22016-08-26 14:09:04 +0100447 struct tegra_i2c_dev *i2c_dev = dev_get_drvdata(dev);
Laxman Dewanganfd301cc2012-08-19 00:47:47 +0530448 int ret;
Jon Hunterf5076682016-08-26 14:08:59 +0100449
Jon Hunter718917b2016-08-26 14:09:05 +0100450 ret = pinctrl_pm_select_default_state(i2c_dev->dev);
451 if (ret)
452 return ret;
453
Laxman Dewangan2a2897b2013-01-05 17:34:46 +0530454 if (!i2c_dev->hw->has_single_clk_source) {
Mikko Perttunenc9a9ef42014-09-05 12:28:18 +0300455 ret = clk_enable(i2c_dev->fast_clk);
Laxman Dewangan2a2897b2013-01-05 17:34:46 +0530456 if (ret < 0) {
457 dev_err(i2c_dev->dev,
458 "Enabling fast clk failed, err %d\n", ret);
459 return ret;
460 }
Laxman Dewanganfd301cc2012-08-19 00:47:47 +0530461 }
Jon Hunter1f50ad22016-08-26 14:09:04 +0100462
Mikko Perttunenc9a9ef42014-09-05 12:28:18 +0300463 ret = clk_enable(i2c_dev->div_clk);
Laxman Dewanganfd301cc2012-08-19 00:47:47 +0530464 if (ret < 0) {
465 dev_err(i2c_dev->dev,
466 "Enabling div clk failed, err %d\n", ret);
Mikko Perttunenc9a9ef42014-09-05 12:28:18 +0300467 clk_disable(i2c_dev->fast_clk);
Jon Hunter1f50ad22016-08-26 14:09:04 +0100468 return ret;
Laxman Dewanganfd301cc2012-08-19 00:47:47 +0530469 }
Jon Hunter1f50ad22016-08-26 14:09:04 +0100470
471 return 0;
Laxman Dewanganfd301cc2012-08-19 00:47:47 +0530472}
473
Jon Hunter1f50ad22016-08-26 14:09:04 +0100474static int tegra_i2c_runtime_suspend(struct device *dev)
Laxman Dewanganfd301cc2012-08-19 00:47:47 +0530475{
Jon Hunter1f50ad22016-08-26 14:09:04 +0100476 struct tegra_i2c_dev *i2c_dev = dev_get_drvdata(dev);
477
Mikko Perttunenc9a9ef42014-09-05 12:28:18 +0300478 clk_disable(i2c_dev->div_clk);
Laxman Dewangan2a2897b2013-01-05 17:34:46 +0530479 if (!i2c_dev->hw->has_single_clk_source)
Mikko Perttunenc9a9ef42014-09-05 12:28:18 +0300480 clk_disable(i2c_dev->fast_clk);
Jon Hunter1f50ad22016-08-26 14:09:04 +0100481
Jon Hunter718917b2016-08-26 14:09:05 +0100482 return pinctrl_pm_select_idle_state(i2c_dev->dev);
Laxman Dewanganfd301cc2012-08-19 00:47:47 +0530483}
484
Shardar Shariff Md89120d62016-08-31 18:58:42 +0530485static int tegra_i2c_wait_for_config_load(struct tegra_i2c_dev *i2c_dev)
486{
487 unsigned long reg_offset;
488 void __iomem *addr;
489 u32 val;
490 int err;
491
492 if (i2c_dev->hw->has_config_load_reg) {
493 reg_offset = tegra_i2c_reg_addr(i2c_dev, I2C_CONFIG_LOAD);
494 addr = i2c_dev->base + reg_offset;
495 i2c_writel(i2c_dev, I2C_MSTR_CONFIG_LOAD, I2C_CONFIG_LOAD);
Shardar Shariff Md2bc445e2016-08-31 18:58:43 +0530496 if (in_interrupt())
497 err = readl_poll_timeout_atomic(addr, val, val == 0,
498 1000, I2C_CONFIG_LOAD_TIMEOUT);
499 else
500 err = readl_poll_timeout(addr, val, val == 0,
501 1000, I2C_CONFIG_LOAD_TIMEOUT);
502
Shardar Shariff Md89120d62016-08-31 18:58:42 +0530503 if (err) {
504 dev_warn(i2c_dev->dev,
505 "timeout waiting for config load\n");
506 return err;
507 }
508 }
509
510 return 0;
511}
512
Colin Crossdb811ca2011-02-20 17:14:21 -0800513static int tegra_i2c_init(struct tegra_i2c_dev *i2c_dev)
514{
515 u32 val;
Jon Hunter1f50ad22016-08-26 14:09:04 +0100516 int err;
Laxman Dewangan2a2897b2013-01-05 17:34:46 +0530517 u32 clk_divisor;
Colin Crossdb811ca2011-02-20 17:14:21 -0800518
Jon Hunter1f50ad22016-08-26 14:09:04 +0100519 err = pm_runtime_get_sync(i2c_dev->dev);
Laxman Dewangan132c8032013-03-15 05:34:08 +0000520 if (err < 0) {
Jon Hunter1f50ad22016-08-26 14:09:04 +0100521 dev_err(i2c_dev->dev, "runtime resume failed %d\n", err);
Laxman Dewangan132c8032013-03-15 05:34:08 +0000522 return err;
523 }
Colin Crossdb811ca2011-02-20 17:14:21 -0800524
Stephen Warrendda9d6a2013-11-06 16:42:05 -0700525 reset_control_assert(i2c_dev->rst);
Colin Crossdb811ca2011-02-20 17:14:21 -0800526 udelay(2);
Stephen Warrendda9d6a2013-11-06 16:42:05 -0700527 reset_control_deassert(i2c_dev->rst);
Colin Crossdb811ca2011-02-20 17:14:21 -0800528
529 if (i2c_dev->is_dvc)
530 tegra_dvc_init(i2c_dev);
531
Jay Cheng40abcf72011-04-25 15:32:27 -0600532 val = I2C_CNFG_NEW_MASTER_FSM | I2C_CNFG_PACKET_MODE_EN |
533 (0x2 << I2C_CNFG_DEBOUNCE_CNT_SHIFT);
Shardar Shariff Md497fbe22016-03-14 18:52:18 +0530534
535 if (i2c_dev->hw->has_multi_master_mode)
536 val |= I2C_CNFG_MULTI_MASTER_MODE;
537
Colin Crossdb811ca2011-02-20 17:14:21 -0800538 i2c_writel(i2c_dev, val, I2C_CNFG);
539 i2c_writel(i2c_dev, 0, I2C_INT_MASK);
Laxman Dewangan2a2897b2013-01-05 17:34:46 +0530540
Laxman Dewangan2a2897b2013-01-05 17:34:46 +0530541 /* Make sure clock divisor programmed correctly */
542 clk_divisor = i2c_dev->hw->clk_divisor_hs_mode;
Laxman Dewangand57f5de2015-06-30 16:24:27 +0530543 clk_divisor |= i2c_dev->clk_divisor_non_hs_mode <<
Laxman Dewangan2a2897b2013-01-05 17:34:46 +0530544 I2C_CLK_DIVISOR_STD_FAST_MODE_SHIFT;
545 i2c_writel(i2c_dev, clk_divisor, I2C_CLK_DIVISOR);
Colin Crossdb811ca2011-02-20 17:14:21 -0800546
Kenneth Waters65a1a0a2011-04-25 12:29:54 -0600547 if (!i2c_dev->is_dvc) {
548 u32 sl_cfg = i2c_readl(i2c_dev, I2C_SL_CNFG);
Jon Hunterf5076682016-08-26 14:08:59 +0100549
Stephen Warren5afa9d32011-06-06 11:25:19 -0600550 sl_cfg |= I2C_SL_CNFG_NACK | I2C_SL_CNFG_NEWSL;
551 i2c_writel(i2c_dev, sl_cfg, I2C_SL_CNFG);
552 i2c_writel(i2c_dev, 0xfc, I2C_SL_ADDR1);
553 i2c_writel(i2c_dev, 0x00, I2C_SL_ADDR2);
Kenneth Waters65a1a0a2011-04-25 12:29:54 -0600554 }
555
Thierry Redingc5907c62018-06-19 12:49:42 +0200556 if (i2c_dev->hw->has_mst_fifo) {
557 val = I2C_MST_FIFO_CONTROL_TX_TRIG(8) |
558 I2C_MST_FIFO_CONTROL_RX_TRIG(1);
559 i2c_writel(i2c_dev, val, I2C_MST_FIFO_CONTROL);
560 } else {
561 val = 7 << I2C_FIFO_CONTROL_TX_TRIG_SHIFT |
562 0 << I2C_FIFO_CONTROL_RX_TRIG_SHIFT;
563 i2c_writel(i2c_dev, val, I2C_FIFO_CONTROL);
564 }
Colin Crossdb811ca2011-02-20 17:14:21 -0800565
Jon Hunter1f50ad22016-08-26 14:09:04 +0100566 err = tegra_i2c_flush_fifos(i2c_dev);
Shardar Shariff Md2148c012016-08-31 18:58:41 +0530567 if (err)
568 goto err;
Colin Crossdb811ca2011-02-20 17:14:21 -0800569
Shardar Shariff Md497fbe22016-03-14 18:52:18 +0530570 if (i2c_dev->is_multimaster_mode && i2c_dev->hw->has_slcg_override_reg)
571 i2c_writel(i2c_dev, I2C_MST_CORE_CLKEN_OVR, I2C_CLKEN_OVERRIDE);
572
Shardar Shariff Md89120d62016-08-31 18:58:42 +0530573 err = tegra_i2c_wait_for_config_load(i2c_dev);
574 if (err)
575 goto err;
Laxman Dewangan6f4664b2015-06-30 16:24:26 +0530576
Todd Poynorcb63c622011-04-25 15:32:25 -0600577 if (i2c_dev->irq_disabled) {
Jon Hunterfbf80902016-09-06 10:50:45 +0100578 i2c_dev->irq_disabled = false;
Todd Poynorcb63c622011-04-25 15:32:25 -0600579 enable_irq(i2c_dev->irq);
580 }
581
Shardar Shariff Md21e9efd2016-04-25 19:08:36 +0530582err:
Jon Hunter1f50ad22016-08-26 14:09:04 +0100583 pm_runtime_put(i2c_dev->dev);
Colin Crossdb811ca2011-02-20 17:14:21 -0800584 return err;
585}
586
Shardar Shariff Md77821b462016-08-31 18:58:44 +0530587static int tegra_i2c_disable_packet_mode(struct tegra_i2c_dev *i2c_dev)
588{
589 u32 cnfg;
590
Jon Hunter54836e22018-07-03 09:55:43 +0100591 /*
592 * NACK interrupt is generated before the I2C controller generates
593 * the STOP condition on the bus. So wait for 2 clock periods
594 * before disabling the controller so that the STOP condition has
595 * been delivered properly.
596 */
597 udelay(DIV_ROUND_UP(2 * 1000000, i2c_dev->bus_clk_rate));
598
Shardar Shariff Md77821b462016-08-31 18:58:44 +0530599 cnfg = i2c_readl(i2c_dev, I2C_CNFG);
600 if (cnfg & I2C_CNFG_PACKET_MODE_EN)
601 i2c_writel(i2c_dev, cnfg & ~I2C_CNFG_PACKET_MODE_EN, I2C_CNFG);
602
603 return tegra_i2c_wait_for_config_load(i2c_dev);
604}
605
Colin Crossdb811ca2011-02-20 17:14:21 -0800606static irqreturn_t tegra_i2c_isr(int irq, void *dev_id)
607{
608 u32 status;
609 const u32 status_err = I2C_INT_NO_ACK | I2C_INT_ARBITRATION_LOST;
610 struct tegra_i2c_dev *i2c_dev = dev_id;
Shardar Shariff Md77821b462016-08-31 18:58:44 +0530611 unsigned long flags;
Colin Crossdb811ca2011-02-20 17:14:21 -0800612
613 status = i2c_readl(i2c_dev, I2C_INT_STATUS);
614
Shardar Shariff Md77821b462016-08-31 18:58:44 +0530615 spin_lock_irqsave(&i2c_dev->xfer_lock, flags);
Colin Crossdb811ca2011-02-20 17:14:21 -0800616 if (status == 0) {
Todd Poynorcb63c622011-04-25 15:32:25 -0600617 dev_warn(i2c_dev->dev, "irq status 0 %08x %08x %08x\n",
618 i2c_readl(i2c_dev, I2C_PACKET_TRANSFER_STATUS),
619 i2c_readl(i2c_dev, I2C_STATUS),
620 i2c_readl(i2c_dev, I2C_CNFG));
621 i2c_dev->msg_err |= I2C_ERR_UNKNOWN_INTERRUPT;
622
623 if (!i2c_dev->irq_disabled) {
624 disable_irq_nosync(i2c_dev->irq);
Jon Hunterfbf80902016-09-06 10:50:45 +0100625 i2c_dev->irq_disabled = true;
Todd Poynorcb63c622011-04-25 15:32:25 -0600626 }
Todd Poynorcb63c622011-04-25 15:32:25 -0600627 goto err;
Colin Crossdb811ca2011-02-20 17:14:21 -0800628 }
629
630 if (unlikely(status & status_err)) {
Shardar Shariff Md77821b462016-08-31 18:58:44 +0530631 tegra_i2c_disable_packet_mode(i2c_dev);
Colin Crossdb811ca2011-02-20 17:14:21 -0800632 if (status & I2C_INT_NO_ACK)
633 i2c_dev->msg_err |= I2C_ERR_NO_ACK;
634 if (status & I2C_INT_ARBITRATION_LOST)
635 i2c_dev->msg_err |= I2C_ERR_ARBITRATION_LOST;
Colin Crossdb811ca2011-02-20 17:14:21 -0800636 goto err;
637 }
638
639 if (i2c_dev->msg_read && (status & I2C_INT_RX_FIFO_DATA_REQ)) {
640 if (i2c_dev->msg_buf_remaining)
641 tegra_i2c_empty_rx_fifo(i2c_dev);
642 else
643 BUG();
644 }
645
646 if (!i2c_dev->msg_read && (status & I2C_INT_TX_FIFO_DATA_REQ)) {
647 if (i2c_dev->msg_buf_remaining)
648 tegra_i2c_fill_tx_fifo(i2c_dev);
649 else
650 tegra_i2c_mask_irq(i2c_dev, I2C_INT_TX_FIFO_DATA_REQ);
651 }
652
Laxman Dewanganc889e912012-05-07 12:16:19 +0530653 i2c_writel(i2c_dev, status, I2C_INT_STATUS);
654 if (i2c_dev->is_dvc)
655 dvc_writel(i2c_dev, DVC_STATUS_I2C_DONE_INTR, DVC_STATUS);
656
Doug Anderson96219c32011-08-30 11:46:10 -0600657 if (status & I2C_INT_PACKET_XFER_COMPLETE) {
658 BUG_ON(i2c_dev->msg_buf_remaining);
Colin Crossdb811ca2011-02-20 17:14:21 -0800659 complete(&i2c_dev->msg_complete);
Doug Anderson96219c32011-08-30 11:46:10 -0600660 }
Shardar Shariff Md77821b462016-08-31 18:58:44 +0530661 goto done;
Colin Crossdb811ca2011-02-20 17:14:21 -0800662err:
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300663 /* An error occurred, mask all interrupts */
Colin Crossdb811ca2011-02-20 17:14:21 -0800664 tegra_i2c_mask_irq(i2c_dev, I2C_INT_NO_ACK | I2C_INT_ARBITRATION_LOST |
665 I2C_INT_PACKET_XFER_COMPLETE | I2C_INT_TX_FIFO_DATA_REQ |
666 I2C_INT_RX_FIFO_DATA_REQ);
667 i2c_writel(i2c_dev, status, I2C_INT_STATUS);
Todd Poynorcb63c622011-04-25 15:32:25 -0600668 if (i2c_dev->is_dvc)
669 dvc_writel(i2c_dev, DVC_STATUS_I2C_DONE_INTR, DVC_STATUS);
Laxman Dewanganc889e912012-05-07 12:16:19 +0530670
671 complete(&i2c_dev->msg_complete);
Shardar Shariff Md77821b462016-08-31 18:58:44 +0530672done:
673 spin_unlock_irqrestore(&i2c_dev->xfer_lock, flags);
Colin Crossdb811ca2011-02-20 17:14:21 -0800674 return IRQ_HANDLED;
675}
676
677static int tegra_i2c_xfer_msg(struct tegra_i2c_dev *i2c_dev,
Laxman Dewanganc8f5af22012-06-13 15:42:38 +0530678 struct i2c_msg *msg, enum msg_end_type end_state)
Colin Crossdb811ca2011-02-20 17:14:21 -0800679{
680 u32 packet_header;
681 u32 int_mask;
Nicholas Mc Guire6973a392015-03-01 09:17:41 -0500682 unsigned long time_left;
Shardar Shariff Md77821b462016-08-31 18:58:44 +0530683 unsigned long flags;
Colin Crossdb811ca2011-02-20 17:14:21 -0800684
685 tegra_i2c_flush_fifos(i2c_dev);
Colin Crossdb811ca2011-02-20 17:14:21 -0800686
Colin Crossdb811ca2011-02-20 17:14:21 -0800687 i2c_dev->msg_buf = msg->buf;
688 i2c_dev->msg_buf_remaining = msg->len;
689 i2c_dev->msg_err = I2C_ERR_NONE;
690 i2c_dev->msg_read = (msg->flags & I2C_M_RD);
Wolfram Sang16735d02013-11-14 14:32:02 -0800691 reinit_completion(&i2c_dev->msg_complete);
Colin Crossdb811ca2011-02-20 17:14:21 -0800692
Shardar Shariff Md77821b462016-08-31 18:58:44 +0530693 spin_lock_irqsave(&i2c_dev->xfer_lock, flags);
694
695 int_mask = I2C_INT_NO_ACK | I2C_INT_ARBITRATION_LOST;
696 tegra_i2c_unmask_irq(i2c_dev, int_mask);
697
Colin Crossdb811ca2011-02-20 17:14:21 -0800698 packet_header = (0 << PACKET_HEADER0_HEADER_SIZE_SHIFT) |
699 PACKET_HEADER0_PROTOCOL_I2C |
700 (i2c_dev->cont_id << PACKET_HEADER0_CONT_ID_SHIFT) |
701 (1 << PACKET_HEADER0_PACKET_ID_SHIFT);
702 i2c_writel(i2c_dev, packet_header, I2C_TX_FIFO);
703
704 packet_header = msg->len - 1;
705 i2c_writel(i2c_dev, packet_header, I2C_TX_FIFO);
706
Laxman Dewangan353f56b2012-04-24 12:49:35 +0530707 packet_header = I2C_HEADER_IE_ENABLE;
Laxman Dewanganc8f5af22012-06-13 15:42:38 +0530708 if (end_state == MSG_END_CONTINUE)
709 packet_header |= I2C_HEADER_CONTINUE_XFER;
710 else if (end_state == MSG_END_REPEAT_START)
Erik Gilling2078cf32011-04-25 15:32:26 -0600711 packet_header |= I2C_HEADER_REPEAT_START;
Laxman Dewangan353f56b2012-04-24 12:49:35 +0530712 if (msg->flags & I2C_M_TEN) {
713 packet_header |= msg->addr;
Colin Crossdb811ca2011-02-20 17:14:21 -0800714 packet_header |= I2C_HEADER_10BIT_ADDR;
Laxman Dewangan353f56b2012-04-24 12:49:35 +0530715 } else {
716 packet_header |= msg->addr << I2C_HEADER_SLAVE_ADDR_SHIFT;
717 }
Colin Crossdb811ca2011-02-20 17:14:21 -0800718 if (msg->flags & I2C_M_IGNORE_NAK)
719 packet_header |= I2C_HEADER_CONT_ON_NAK;
Colin Crossdb811ca2011-02-20 17:14:21 -0800720 if (msg->flags & I2C_M_RD)
721 packet_header |= I2C_HEADER_READ;
722 i2c_writel(i2c_dev, packet_header, I2C_TX_FIFO);
723
724 if (!(msg->flags & I2C_M_RD))
725 tegra_i2c_fill_tx_fifo(i2c_dev);
726
Laxman Dewangan2a2897b2013-01-05 17:34:46 +0530727 if (i2c_dev->hw->has_per_pkt_xfer_complete_irq)
728 int_mask |= I2C_INT_PACKET_XFER_COMPLETE;
Colin Crossdb811ca2011-02-20 17:14:21 -0800729 if (msg->flags & I2C_M_RD)
730 int_mask |= I2C_INT_RX_FIFO_DATA_REQ;
731 else if (i2c_dev->msg_buf_remaining)
732 int_mask |= I2C_INT_TX_FIFO_DATA_REQ;
Shardar Shariff Md77821b462016-08-31 18:58:44 +0530733
Colin Crossdb811ca2011-02-20 17:14:21 -0800734 tegra_i2c_unmask_irq(i2c_dev, int_mask);
Shardar Shariff Md77821b462016-08-31 18:58:44 +0530735 spin_unlock_irqrestore(&i2c_dev->xfer_lock, flags);
Colin Crossdb811ca2011-02-20 17:14:21 -0800736 dev_dbg(i2c_dev->dev, "unmasked irq: %02x\n",
737 i2c_readl(i2c_dev, I2C_INT_MASK));
738
Nicholas Mc Guire6973a392015-03-01 09:17:41 -0500739 time_left = wait_for_completion_timeout(&i2c_dev->msg_complete,
740 TEGRA_I2C_TIMEOUT);
Colin Crossdb811ca2011-02-20 17:14:21 -0800741 tegra_i2c_mask_irq(i2c_dev, int_mask);
742
Nicholas Mc Guire6973a392015-03-01 09:17:41 -0500743 if (time_left == 0) {
Colin Crossdb811ca2011-02-20 17:14:21 -0800744 dev_err(i2c_dev->dev, "i2c transfer timed out\n");
745
746 tegra_i2c_init(i2c_dev);
747 return -ETIMEDOUT;
748 }
749
Nicholas Mc Guire6973a392015-03-01 09:17:41 -0500750 dev_dbg(i2c_dev->dev, "transfer complete: %lu %d %d\n",
751 time_left, completion_done(&i2c_dev->msg_complete),
752 i2c_dev->msg_err);
Colin Crossdb811ca2011-02-20 17:14:21 -0800753
754 if (likely(i2c_dev->msg_err == I2C_ERR_NONE))
755 return 0;
756
757 tegra_i2c_init(i2c_dev);
758 if (i2c_dev->msg_err == I2C_ERR_NO_ACK) {
759 if (msg->flags & I2C_M_IGNORE_NAK)
760 return 0;
761 return -EREMOTEIO;
762 }
763
764 return -EIO;
765}
766
767static int tegra_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg msgs[],
768 int num)
769{
770 struct tegra_i2c_dev *i2c_dev = i2c_get_adapdata(adap);
771 int i;
772 int ret = 0;
773
Jon Hunter1f50ad22016-08-26 14:09:04 +0100774 ret = pm_runtime_get_sync(i2c_dev->dev);
Laxman Dewangan132c8032013-03-15 05:34:08 +0000775 if (ret < 0) {
Jon Hunter1f50ad22016-08-26 14:09:04 +0100776 dev_err(i2c_dev->dev, "runtime resume failed %d\n", ret);
Laxman Dewangan132c8032013-03-15 05:34:08 +0000777 return ret;
778 }
779
Colin Crossdb811ca2011-02-20 17:14:21 -0800780 for (i = 0; i < num; i++) {
Laxman Dewanganc8f5af22012-06-13 15:42:38 +0530781 enum msg_end_type end_type = MSG_END_STOP;
Jon Hunterf5076682016-08-26 14:08:59 +0100782
Laxman Dewanganc8f5af22012-06-13 15:42:38 +0530783 if (i < (num - 1)) {
784 if (msgs[i + 1].flags & I2C_M_NOSTART)
785 end_type = MSG_END_CONTINUE;
786 else
787 end_type = MSG_END_REPEAT_START;
788 }
789 ret = tegra_i2c_xfer_msg(i2c_dev, &msgs[i], end_type);
Colin Crossdb811ca2011-02-20 17:14:21 -0800790 if (ret)
791 break;
792 }
Jon Hunter1f50ad22016-08-26 14:09:04 +0100793
794 pm_runtime_put(i2c_dev->dev);
795
Colin Crossdb811ca2011-02-20 17:14:21 -0800796 return ret ?: i;
797}
798
799static u32 tegra_i2c_func(struct i2c_adapter *adap)
800{
Laxman Dewangan6ad068e2012-08-19 00:47:46 +0530801 struct tegra_i2c_dev *i2c_dev = i2c_get_adapdata(adap);
Wolfram Sang4bb28e32015-06-16 19:47:21 +0200802 u32 ret = I2C_FUNC_I2C | (I2C_FUNC_SMBUS_EMUL & ~I2C_FUNC_SMBUS_QUICK) |
803 I2C_FUNC_10BIT_ADDR | I2C_FUNC_PROTOCOL_MANGLING;
Laxman Dewangan6ad068e2012-08-19 00:47:46 +0530804
805 if (i2c_dev->hw->has_continue_xfer_support)
806 ret |= I2C_FUNC_NOSTART;
807 return ret;
Colin Crossdb811ca2011-02-20 17:14:21 -0800808}
809
Shardar Shariff Md497fbe22016-03-14 18:52:18 +0530810static void tegra_i2c_parse_dt(struct tegra_i2c_dev *i2c_dev)
811{
812 struct device_node *np = i2c_dev->dev->of_node;
813 int ret;
814
815 ret = of_property_read_u32(np, "clock-frequency",
816 &i2c_dev->bus_clk_rate);
817 if (ret)
818 i2c_dev->bus_clk_rate = 100000; /* default clock rate */
819
820 i2c_dev->is_multimaster_mode = of_property_read_bool(np,
821 "multi-master");
822}
823
Colin Crossdb811ca2011-02-20 17:14:21 -0800824static const struct i2c_algorithm tegra_i2c_algo = {
825 .master_xfer = tegra_i2c_xfer,
826 .functionality = tegra_i2c_func,
827};
828
Wolfram Sang3aaa34b2015-06-16 19:57:29 +0200829/* payload size is only 12 bit */
Bhumika Goyalae3923a2017-08-21 17:42:04 +0530830static const struct i2c_adapter_quirks tegra_i2c_quirks = {
Wolfram Sangc96c0f22018-07-23 22:26:12 +0200831 .flags = I2C_AQ_NO_ZERO_LEN,
Wolfram Sang3aaa34b2015-06-16 19:57:29 +0200832 .max_read_len = 4096,
833 .max_write_len = 4096,
834};
835
Laxman Dewangan6ad068e2012-08-19 00:47:46 +0530836static const struct tegra_i2c_hw_feature tegra20_i2c_hw = {
837 .has_continue_xfer_support = false,
Laxman Dewangan2a2897b2013-01-05 17:34:46 +0530838 .has_per_pkt_xfer_complete_irq = false,
839 .has_single_clk_source = false,
840 .clk_divisor_hs_mode = 3,
841 .clk_divisor_std_fast_mode = 0,
Laxman Dewangand57f5de2015-06-30 16:24:27 +0530842 .clk_divisor_fast_plus_mode = 0,
Laxman Dewangan6f4664b2015-06-30 16:24:26 +0530843 .has_config_load_reg = false,
Shardar Shariff Md497fbe22016-03-14 18:52:18 +0530844 .has_multi_master_mode = false,
845 .has_slcg_override_reg = false,
Thierry Redingc5907c62018-06-19 12:49:42 +0200846 .has_mst_fifo = false,
Laxman Dewangan6ad068e2012-08-19 00:47:46 +0530847};
848
849static const struct tegra_i2c_hw_feature tegra30_i2c_hw = {
850 .has_continue_xfer_support = true,
Laxman Dewangan2a2897b2013-01-05 17:34:46 +0530851 .has_per_pkt_xfer_complete_irq = false,
852 .has_single_clk_source = false,
853 .clk_divisor_hs_mode = 3,
854 .clk_divisor_std_fast_mode = 0,
Laxman Dewangand57f5de2015-06-30 16:24:27 +0530855 .clk_divisor_fast_plus_mode = 0,
Laxman Dewangan6f4664b2015-06-30 16:24:26 +0530856 .has_config_load_reg = false,
Shardar Shariff Md497fbe22016-03-14 18:52:18 +0530857 .has_multi_master_mode = false,
858 .has_slcg_override_reg = false,
Thierry Redingc5907c62018-06-19 12:49:42 +0200859 .has_mst_fifo = false,
Laxman Dewangan2a2897b2013-01-05 17:34:46 +0530860};
861
862static const struct tegra_i2c_hw_feature tegra114_i2c_hw = {
863 .has_continue_xfer_support = true,
864 .has_per_pkt_xfer_complete_irq = true,
865 .has_single_clk_source = true,
866 .clk_divisor_hs_mode = 1,
867 .clk_divisor_std_fast_mode = 0x19,
Laxman Dewangand57f5de2015-06-30 16:24:27 +0530868 .clk_divisor_fast_plus_mode = 0x10,
Laxman Dewangan6f4664b2015-06-30 16:24:26 +0530869 .has_config_load_reg = false,
Shardar Shariff Md497fbe22016-03-14 18:52:18 +0530870 .has_multi_master_mode = false,
871 .has_slcg_override_reg = false,
Thierry Redingc5907c62018-06-19 12:49:42 +0200872 .has_mst_fifo = false,
Laxman Dewangan6f4664b2015-06-30 16:24:26 +0530873};
874
875static const struct tegra_i2c_hw_feature tegra124_i2c_hw = {
876 .has_continue_xfer_support = true,
877 .has_per_pkt_xfer_complete_irq = true,
878 .has_single_clk_source = true,
879 .clk_divisor_hs_mode = 1,
880 .clk_divisor_std_fast_mode = 0x19,
Laxman Dewangand57f5de2015-06-30 16:24:27 +0530881 .clk_divisor_fast_plus_mode = 0x10,
Laxman Dewangan6f4664b2015-06-30 16:24:26 +0530882 .has_config_load_reg = true,
Shardar Shariff Md497fbe22016-03-14 18:52:18 +0530883 .has_multi_master_mode = false,
884 .has_slcg_override_reg = true,
Thierry Redingc5907c62018-06-19 12:49:42 +0200885 .has_mst_fifo = false,
Shardar Shariff Md497fbe22016-03-14 18:52:18 +0530886};
887
888static const struct tegra_i2c_hw_feature tegra210_i2c_hw = {
889 .has_continue_xfer_support = true,
890 .has_per_pkt_xfer_complete_irq = true,
891 .has_single_clk_source = true,
892 .clk_divisor_hs_mode = 1,
893 .clk_divisor_std_fast_mode = 0x19,
894 .clk_divisor_fast_plus_mode = 0x10,
895 .has_config_load_reg = true,
896 .has_multi_master_mode = true,
897 .has_slcg_override_reg = true,
Thierry Redingc5907c62018-06-19 12:49:42 +0200898 .has_mst_fifo = false,
899};
900
901static const struct tegra_i2c_hw_feature tegra194_i2c_hw = {
902 .has_continue_xfer_support = true,
903 .has_per_pkt_xfer_complete_irq = true,
904 .has_single_clk_source = true,
905 .clk_divisor_hs_mode = 1,
906 .clk_divisor_std_fast_mode = 0x19,
907 .clk_divisor_fast_plus_mode = 0x10,
908 .has_config_load_reg = true,
909 .has_multi_master_mode = true,
910 .has_slcg_override_reg = true,
911 .has_mst_fifo = true,
Laxman Dewangan6ad068e2012-08-19 00:47:46 +0530912};
913
Laxman Dewangan6ad068e2012-08-19 00:47:46 +0530914/* Match table for of_platform binding */
Bill Pemberton0b255e92012-11-27 15:59:38 -0500915static const struct of_device_id tegra_i2c_of_match[] = {
Thierry Redingc5907c62018-06-19 12:49:42 +0200916 { .compatible = "nvidia,tegra194-i2c", .data = &tegra194_i2c_hw, },
Shardar Shariff Md497fbe22016-03-14 18:52:18 +0530917 { .compatible = "nvidia,tegra210-i2c", .data = &tegra210_i2c_hw, },
Laxman Dewangan6f4664b2015-06-30 16:24:26 +0530918 { .compatible = "nvidia,tegra124-i2c", .data = &tegra124_i2c_hw, },
Laxman Dewangan2a2897b2013-01-05 17:34:46 +0530919 { .compatible = "nvidia,tegra114-i2c", .data = &tegra114_i2c_hw, },
Laxman Dewangan6ad068e2012-08-19 00:47:46 +0530920 { .compatible = "nvidia,tegra30-i2c", .data = &tegra30_i2c_hw, },
921 { .compatible = "nvidia,tegra20-i2c", .data = &tegra20_i2c_hw, },
922 { .compatible = "nvidia,tegra20-i2c-dvc", .data = &tegra20_i2c_hw, },
923 {},
924};
925MODULE_DEVICE_TABLE(of, tegra_i2c_of_match);
Laxman Dewangan6ad068e2012-08-19 00:47:46 +0530926
Bill Pemberton0b255e92012-11-27 15:59:38 -0500927static int tegra_i2c_probe(struct platform_device *pdev)
Colin Crossdb811ca2011-02-20 17:14:21 -0800928{
929 struct tegra_i2c_dev *i2c_dev;
Colin Crossdb811ca2011-02-20 17:14:21 -0800930 struct resource *res;
Laxman Dewangan14e92bd2012-08-08 13:21:32 +0530931 struct clk *div_clk;
932 struct clk *fast_clk;
Olof Johanssonf533c612011-10-12 17:33:00 -0700933 void __iomem *base;
Colin Crossdb811ca2011-02-20 17:14:21 -0800934 int irq;
935 int ret = 0;
Mikko Perttunenc9a9ef42014-09-05 12:28:18 +0300936 int clk_multiplier = I2C_CLK_MULTIPLIER_STD_FAST_MODE;
Colin Crossdb811ca2011-02-20 17:14:21 -0800937
938 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Thierry Reding84dbf802013-01-21 11:09:03 +0100939 base = devm_ioremap_resource(&pdev->dev, res);
940 if (IS_ERR(base))
941 return PTR_ERR(base);
Colin Crossdb811ca2011-02-20 17:14:21 -0800942
943 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
944 if (!res) {
945 dev_err(&pdev->dev, "no irq resource\n");
Laxman Dewangan9cbb6b22012-06-13 15:42:39 +0530946 return -EINVAL;
Colin Crossdb811ca2011-02-20 17:14:21 -0800947 }
948 irq = res->start;
949
Laxman Dewangan14e92bd2012-08-08 13:21:32 +0530950 div_clk = devm_clk_get(&pdev->dev, "div-clk");
951 if (IS_ERR(div_clk)) {
Jon Huntere8e999cb2016-08-26 14:09:00 +0100952 dev_err(&pdev->dev, "missing controller clock\n");
Laxman Dewangan14e92bd2012-08-08 13:21:32 +0530953 return PTR_ERR(div_clk);
Colin Crossdb811ca2011-02-20 17:14:21 -0800954 }
955
Laxman Dewangan9cbb6b22012-06-13 15:42:39 +0530956 i2c_dev = devm_kzalloc(&pdev->dev, sizeof(*i2c_dev), GFP_KERNEL);
Jingoo Han46797a22014-05-13 10:51:58 +0900957 if (!i2c_dev)
Laxman Dewangan9cbb6b22012-06-13 15:42:39 +0530958 return -ENOMEM;
Colin Crossdb811ca2011-02-20 17:14:21 -0800959
960 i2c_dev->base = base;
Laxman Dewangan14e92bd2012-08-08 13:21:32 +0530961 i2c_dev->div_clk = div_clk;
Colin Crossdb811ca2011-02-20 17:14:21 -0800962 i2c_dev->adapter.algo = &tegra_i2c_algo;
Wolfram Sang3aaa34b2015-06-16 19:57:29 +0200963 i2c_dev->adapter.quirks = &tegra_i2c_quirks;
Colin Crossdb811ca2011-02-20 17:14:21 -0800964 i2c_dev->irq = irq;
965 i2c_dev->cont_id = pdev->id;
966 i2c_dev->dev = &pdev->dev;
John Bonesio5c470f32011-06-22 09:16:56 -0700967
Philipp Zabel94d3b652017-07-19 17:25:34 +0200968 i2c_dev->rst = devm_reset_control_get_exclusive(&pdev->dev, "i2c");
Stephen Warrendda9d6a2013-11-06 16:42:05 -0700969 if (IS_ERR(i2c_dev->rst)) {
Jon Huntere8e999cb2016-08-26 14:09:00 +0100970 dev_err(&pdev->dev, "missing controller reset\n");
Stephen Warrendda9d6a2013-11-06 16:42:05 -0700971 return PTR_ERR(i2c_dev->rst);
972 }
973
Shardar Shariff Md497fbe22016-03-14 18:52:18 +0530974 tegra_i2c_parse_dt(i2c_dev);
Colin Crossdb811ca2011-02-20 17:14:21 -0800975
Jon Huntera9e32cd2016-08-26 14:09:01 +0100976 i2c_dev->hw = of_device_get_match_data(&pdev->dev);
977 i2c_dev->is_dvc = of_device_is_compatible(pdev->dev.of_node,
978 "nvidia,tegra20-i2c-dvc");
Colin Crossdb811ca2011-02-20 17:14:21 -0800979 init_completion(&i2c_dev->msg_complete);
Shardar Shariff Md77821b462016-08-31 18:58:44 +0530980 spin_lock_init(&i2c_dev->xfer_lock);
Colin Crossdb811ca2011-02-20 17:14:21 -0800981
Laxman Dewangan2a2897b2013-01-05 17:34:46 +0530982 if (!i2c_dev->hw->has_single_clk_source) {
983 fast_clk = devm_clk_get(&pdev->dev, "fast-clk");
984 if (IS_ERR(fast_clk)) {
Jon Huntere8e999cb2016-08-26 14:09:00 +0100985 dev_err(&pdev->dev, "missing fast clock\n");
Laxman Dewangan2a2897b2013-01-05 17:34:46 +0530986 return PTR_ERR(fast_clk);
987 }
988 i2c_dev->fast_clk = fast_clk;
989 }
990
Colin Crossdb811ca2011-02-20 17:14:21 -0800991 platform_set_drvdata(pdev, i2c_dev);
992
Mikko Perttunenc9a9ef42014-09-05 12:28:18 +0300993 if (!i2c_dev->hw->has_single_clk_source) {
994 ret = clk_prepare(i2c_dev->fast_clk);
995 if (ret < 0) {
996 dev_err(i2c_dev->dev, "Clock prepare failed %d\n", ret);
997 return ret;
998 }
999 }
1000
Laxman Dewangand57f5de2015-06-30 16:24:27 +05301001 i2c_dev->clk_divisor_non_hs_mode =
1002 i2c_dev->hw->clk_divisor_std_fast_mode;
1003 if (i2c_dev->hw->clk_divisor_fast_plus_mode &&
1004 (i2c_dev->bus_clk_rate == 1000000))
1005 i2c_dev->clk_divisor_non_hs_mode =
1006 i2c_dev->hw->clk_divisor_fast_plus_mode;
1007
1008 clk_multiplier *= (i2c_dev->clk_divisor_non_hs_mode + 1);
Mikko Perttunenc9a9ef42014-09-05 12:28:18 +03001009 ret = clk_set_rate(i2c_dev->div_clk,
1010 i2c_dev->bus_clk_rate * clk_multiplier);
1011 if (ret) {
1012 dev_err(i2c_dev->dev, "Clock rate change failed %d\n", ret);
1013 goto unprepare_fast_clk;
1014 }
1015
1016 ret = clk_prepare(i2c_dev->div_clk);
1017 if (ret < 0) {
1018 dev_err(i2c_dev->dev, "Clock prepare failed %d\n", ret);
1019 goto unprepare_fast_clk;
1020 }
1021
Jon Hunter1f50ad22016-08-26 14:09:04 +01001022 pm_runtime_enable(&pdev->dev);
1023 if (!pm_runtime_enabled(&pdev->dev)) {
1024 ret = tegra_i2c_runtime_resume(&pdev->dev);
1025 if (ret < 0) {
1026 dev_err(&pdev->dev, "runtime resume failed\n");
1027 goto unprepare_div_clk;
1028 }
1029 }
1030
Shardar Shariff Md497fbe22016-03-14 18:52:18 +05301031 if (i2c_dev->is_multimaster_mode) {
1032 ret = clk_enable(i2c_dev->div_clk);
1033 if (ret < 0) {
1034 dev_err(i2c_dev->dev, "div_clk enable failed %d\n",
1035 ret);
Jon Hunter1f50ad22016-08-26 14:09:04 +01001036 goto disable_rpm;
Shardar Shariff Md497fbe22016-03-14 18:52:18 +05301037 }
1038 }
1039
Colin Crossdb811ca2011-02-20 17:14:21 -08001040 ret = tegra_i2c_init(i2c_dev);
1041 if (ret) {
Jon Huntere8e999cb2016-08-26 14:09:00 +01001042 dev_err(&pdev->dev, "Failed to initialize i2c controller\n");
Jon Huntereab09982016-06-14 21:26:46 +01001043 goto disable_div_clk;
Colin Crossdb811ca2011-02-20 17:14:21 -08001044 }
1045
Laxman Dewangan9cbb6b22012-06-13 15:42:39 +05301046 ret = devm_request_irq(&pdev->dev, i2c_dev->irq,
Laxman Dewangan91b370a2012-11-01 22:08:14 +05301047 tegra_i2c_isr, 0, dev_name(&pdev->dev), i2c_dev);
Colin Crossdb811ca2011-02-20 17:14:21 -08001048 if (ret) {
1049 dev_err(&pdev->dev, "Failed to request irq %i\n", i2c_dev->irq);
Shardar Shariff Md497fbe22016-03-14 18:52:18 +05301050 goto disable_div_clk;
Colin Crossdb811ca2011-02-20 17:14:21 -08001051 }
1052
Colin Crossdb811ca2011-02-20 17:14:21 -08001053 i2c_set_adapdata(&i2c_dev->adapter, i2c_dev);
1054 i2c_dev->adapter.owner = THIS_MODULE;
Wolfram Sang60251892014-07-10 13:46:35 +02001055 i2c_dev->adapter.class = I2C_CLASS_DEPRECATED;
Jon Hunter0da9ab82016-08-26 14:09:02 +01001056 strlcpy(i2c_dev->adapter.name, dev_name(&pdev->dev),
Colin Crossdb811ca2011-02-20 17:14:21 -08001057 sizeof(i2c_dev->adapter.name));
Colin Crossdb811ca2011-02-20 17:14:21 -08001058 i2c_dev->adapter.dev.parent = &pdev->dev;
1059 i2c_dev->adapter.nr = pdev->id;
John Bonesio5c470f32011-06-22 09:16:56 -07001060 i2c_dev->adapter.dev.of_node = pdev->dev.of_node;
Colin Crossdb811ca2011-02-20 17:14:21 -08001061
1062 ret = i2c_add_numbered_adapter(&i2c_dev->adapter);
Wolfram Sangea734402016-08-09 13:36:17 +02001063 if (ret)
Shardar Shariff Md497fbe22016-03-14 18:52:18 +05301064 goto disable_div_clk;
Colin Crossdb811ca2011-02-20 17:14:21 -08001065
Colin Crossdb811ca2011-02-20 17:14:21 -08001066 return 0;
Mikko Perttunenc9a9ef42014-09-05 12:28:18 +03001067
Shardar Shariff Md497fbe22016-03-14 18:52:18 +05301068disable_div_clk:
1069 if (i2c_dev->is_multimaster_mode)
1070 clk_disable(i2c_dev->div_clk);
1071
Jon Hunter1f50ad22016-08-26 14:09:04 +01001072disable_rpm:
1073 pm_runtime_disable(&pdev->dev);
1074 if (!pm_runtime_status_suspended(&pdev->dev))
1075 tegra_i2c_runtime_suspend(&pdev->dev);
1076
Mikko Perttunenc9a9ef42014-09-05 12:28:18 +03001077unprepare_div_clk:
1078 clk_unprepare(i2c_dev->div_clk);
1079
1080unprepare_fast_clk:
1081 if (!i2c_dev->hw->has_single_clk_source)
1082 clk_unprepare(i2c_dev->fast_clk);
1083
1084 return ret;
Colin Crossdb811ca2011-02-20 17:14:21 -08001085}
1086
Bill Pemberton0b255e92012-11-27 15:59:38 -05001087static int tegra_i2c_remove(struct platform_device *pdev)
Colin Crossdb811ca2011-02-20 17:14:21 -08001088{
1089 struct tegra_i2c_dev *i2c_dev = platform_get_drvdata(pdev);
Jon Hunterf5076682016-08-26 14:08:59 +01001090
Colin Crossdb811ca2011-02-20 17:14:21 -08001091 i2c_del_adapter(&i2c_dev->adapter);
Mikko Perttunenc9a9ef42014-09-05 12:28:18 +03001092
Shardar Shariff Md497fbe22016-03-14 18:52:18 +05301093 if (i2c_dev->is_multimaster_mode)
1094 clk_disable(i2c_dev->div_clk);
1095
Jon Hunter1f50ad22016-08-26 14:09:04 +01001096 pm_runtime_disable(&pdev->dev);
1097 if (!pm_runtime_status_suspended(&pdev->dev))
1098 tegra_i2c_runtime_suspend(&pdev->dev);
1099
Mikko Perttunenc9a9ef42014-09-05 12:28:18 +03001100 clk_unprepare(i2c_dev->div_clk);
1101 if (!i2c_dev->hw->has_single_clk_source)
1102 clk_unprepare(i2c_dev->fast_clk);
1103
Colin Crossdb811ca2011-02-20 17:14:21 -08001104 return 0;
1105}
1106
Laxman Dewangan371e67c2012-08-18 17:49:58 +05301107#ifdef CONFIG_PM_SLEEP
Jon Hunter1f50ad22016-08-26 14:09:04 +01001108static const struct dev_pm_ops tegra_i2c_pm = {
1109 SET_RUNTIME_PM_OPS(tegra_i2c_runtime_suspend, tegra_i2c_runtime_resume,
1110 NULL)
Jon Hunter1f50ad22016-08-26 14:09:04 +01001111};
Rafael J. Wysocki6a7b3c32012-07-11 21:27:30 +02001112#define TEGRA_I2C_PM (&tegra_i2c_pm)
1113#else
1114#define TEGRA_I2C_PM NULL
Colin Crossdb811ca2011-02-20 17:14:21 -08001115#endif
1116
1117static struct platform_driver tegra_i2c_driver = {
1118 .probe = tegra_i2c_probe,
Bill Pemberton0b255e92012-11-27 15:59:38 -05001119 .remove = tegra_i2c_remove,
Colin Crossdb811ca2011-02-20 17:14:21 -08001120 .driver = {
1121 .name = "tegra-i2c",
Stephen Warren49a64ac2013-03-21 08:08:46 +00001122 .of_match_table = tegra_i2c_of_match,
Rafael J. Wysocki6a7b3c32012-07-11 21:27:30 +02001123 .pm = TEGRA_I2C_PM,
Colin Crossdb811ca2011-02-20 17:14:21 -08001124 },
1125};
1126
1127static int __init tegra_i2c_init_driver(void)
1128{
1129 return platform_driver_register(&tegra_i2c_driver);
1130}
1131
1132static void __exit tegra_i2c_exit_driver(void)
1133{
1134 platform_driver_unregister(&tegra_i2c_driver);
1135}
1136
1137subsys_initcall(tegra_i2c_init_driver);
1138module_exit(tegra_i2c_exit_driver);
1139
1140MODULE_DESCRIPTION("nVidia Tegra2 I2C Bus Controller driver");
1141MODULE_AUTHOR("Colin Cross");
1142MODULE_LICENSE("GPL v2");