blob: 66a0148254c215d4157c9ff41b6f932bcdb6e3a3 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Yen Lin96a78ac2012-03-06 19:00:23 +00002/*
3 * Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
4 * Copyright (c) 2010-2011 NVIDIA Corporation
5 * NVIDIA Corporation <www.nvidia.com>
Yen Lin96a78ac2012-03-06 19:00:23 +00006 */
7
8#include <common.h>
Simon Glassb0e6ef42014-12-10 08:55:57 -07009#include <dm.h>
10#include <errno.h>
Yen Lin96a78ac2012-03-06 19:00:23 +000011#include <i2c.h>
12#include <asm/io.h>
Bryan Wu3c27fa22016-08-05 16:10:35 -060013#include <clk.h>
14#include <reset.h>
Stephen Warrenfc607d92016-09-13 10:46:02 -060015#ifndef CONFIG_TEGRA186
Yen Lin96a78ac2012-03-06 19:00:23 +000016#include <asm/arch/clock.h>
17#include <asm/arch/funcmux.h>
Bryan Wu3c27fa22016-08-05 16:10:35 -060018#endif
19#include <asm/arch/gpio.h>
Tom Warren150c2492012-09-19 15:50:56 -070020#include <asm/arch-tegra/tegra_i2c.h>
Simon Glass61b29b82020-02-03 07:36:15 -070021#include <linux/err.h>
Yen Lin96a78ac2012-03-06 19:00:23 +000022
Simon Glassb0e6ef42014-12-10 08:55:57 -070023enum i2c_type {
24 TYPE_114,
25 TYPE_STD,
26 TYPE_DVC,
27};
28
Yen Lin96a78ac2012-03-06 19:00:23 +000029/* Information about i2c controller */
30struct i2c_bus {
31 int id;
Bryan Wu3c27fa22016-08-05 16:10:35 -060032 struct reset_ctl reset_ctl;
33 struct clk clk;
Yen Lin96a78ac2012-03-06 19:00:23 +000034 int speed;
35 int pinmux_config;
36 struct i2c_control *control;
37 struct i2c_ctlr *regs;
Simon Glassb0e6ef42014-12-10 08:55:57 -070038 enum i2c_type type;
Yen Lin96a78ac2012-03-06 19:00:23 +000039 int inited; /* bus is inited */
40};
41
Yen Lin96a78ac2012-03-06 19:00:23 +000042static void set_packet_mode(struct i2c_bus *i2c_bus)
43{
44 u32 config;
45
46 config = I2C_CNFG_NEW_MASTER_FSM_MASK | I2C_CNFG_PACKET_MODE_MASK;
47
Simon Glassb0e6ef42014-12-10 08:55:57 -070048 if (i2c_bus->type == TYPE_DVC) {
Yen Lin96a78ac2012-03-06 19:00:23 +000049 struct dvc_ctlr *dvc = (struct dvc_ctlr *)i2c_bus->regs;
50
51 writel(config, &dvc->cnfg);
52 } else {
53 writel(config, &i2c_bus->regs->cnfg);
54 /*
55 * program I2C_SL_CNFG.NEWSL to ENABLE. This fixes probe
56 * issues, i.e., some slaves may be wrongly detected.
57 */
58 setbits_le32(&i2c_bus->regs->sl_cnfg, I2C_SL_CNFG_NEWSL_MASK);
59 }
60}
61
62static void i2c_reset_controller(struct i2c_bus *i2c_bus)
63{
64 /* Reset I2C controller. */
Bryan Wu3c27fa22016-08-05 16:10:35 -060065 reset_assert(&i2c_bus->reset_ctl);
66 udelay(1);
67 reset_deassert(&i2c_bus->reset_ctl);
68 udelay(1);
Yen Lin96a78ac2012-03-06 19:00:23 +000069
70 /* re-program config register to packet mode */
71 set_packet_mode(i2c_bus);
72}
73
Bryan Wu3c27fa22016-08-05 16:10:35 -060074static int i2c_init_clock(struct i2c_bus *i2c_bus, unsigned rate)
75{
76 int ret;
77
78 ret = reset_assert(&i2c_bus->reset_ctl);
79 if (ret)
80 return ret;
81 ret = clk_enable(&i2c_bus->clk);
82 if (ret)
83 return ret;
84 ret = clk_set_rate(&i2c_bus->clk, rate);
85 if (IS_ERR_VALUE(ret))
86 return ret;
87 ret = reset_deassert(&i2c_bus->reset_ctl);
88 if (ret)
89 return ret;
90
91 return 0;
92}
Bryan Wu3c27fa22016-08-05 16:10:35 -060093
Yen Lin96a78ac2012-03-06 19:00:23 +000094static void i2c_init_controller(struct i2c_bus *i2c_bus)
95{
Simon Glassb0e6ef42014-12-10 08:55:57 -070096 if (!i2c_bus->speed)
97 return;
98 debug("%s: speed=%d\n", __func__, i2c_bus->speed);
Yen Lin96a78ac2012-03-06 19:00:23 +000099 /*
100 * Use PLLP - DP-04508-001_v06 datasheet indicates a divisor of 8
101 * here, in section 23.3.1, but in fact we seem to need a factor of
102 * 16 to get the right frequency.
103 */
Bryan Wu3c27fa22016-08-05 16:10:35 -0600104 i2c_init_clock(i2c_bus, i2c_bus->speed * 2 * 8);
Tom Warrene32624e2013-02-08 07:25:30 +0000105
Simon Glassb0e6ef42014-12-10 08:55:57 -0700106 if (i2c_bus->type == TYPE_114) {
Tom Warrene32624e2013-02-08 07:25:30 +0000107 /*
108 * T114 I2C went to a single clock source for standard/fast and
109 * HS clock speeds. The new clock rate setting calculation is:
110 * SCL = CLK_SOURCE.I2C /
111 * (CLK_MULT_STD_FAST_MODE * (I2C_CLK_DIV_STD_FAST_MODE+1) *
112 * I2C FREQUENCY DIVISOR) as per the T114 TRM (sec 30.3.1).
113 *
114 * NOTE: We do this here, after the initial clock/pll start,
115 * because if we read the clk_div reg before the controller
116 * is running, we hang, and we need it for the new calc.
117 */
118 int clk_div_stdfst_mode = readl(&i2c_bus->regs->clk_div) >> 16;
Bryan Wu3c27fa22016-08-05 16:10:35 -0600119 unsigned rate = CLK_MULT_STD_FAST_MODE *
120 (clk_div_stdfst_mode + 1) * i2c_bus->speed * 2;
Tom Warrene32624e2013-02-08 07:25:30 +0000121 debug("%s: CLK_DIV_STD_FAST_MODE setting = %d\n", __func__,
122 clk_div_stdfst_mode);
123
Bryan Wu3c27fa22016-08-05 16:10:35 -0600124 i2c_init_clock(i2c_bus, rate);
Tom Warrene32624e2013-02-08 07:25:30 +0000125 }
Yen Lin96a78ac2012-03-06 19:00:23 +0000126
127 /* Reset I2C controller. */
128 i2c_reset_controller(i2c_bus);
129
130 /* Configure I2C controller. */
Simon Glassb0e6ef42014-12-10 08:55:57 -0700131 if (i2c_bus->type == TYPE_DVC) { /* only for DVC I2C */
Yen Lin96a78ac2012-03-06 19:00:23 +0000132 struct dvc_ctlr *dvc = (struct dvc_ctlr *)i2c_bus->regs;
133
134 setbits_le32(&dvc->ctrl3, DVC_CTRL_REG3_I2C_HW_SW_PROG_MASK);
135 }
136
Bryan Wu3c27fa22016-08-05 16:10:35 -0600137#ifndef CONFIG_TEGRA186
Stephen Warrenfc607d92016-09-13 10:46:02 -0600138 funcmux_select(i2c_bus->clk.id, i2c_bus->pinmux_config);
Bryan Wu3c27fa22016-08-05 16:10:35 -0600139#endif
Yen Lin96a78ac2012-03-06 19:00:23 +0000140}
141
142static void send_packet_headers(
143 struct i2c_bus *i2c_bus,
144 struct i2c_trans_info *trans,
Stephen Warren68049a02014-06-25 10:57:27 -0600145 u32 packet_id,
146 bool end_with_repeated_start)
Yen Lin96a78ac2012-03-06 19:00:23 +0000147{
148 u32 data;
149
150 /* prepare header1: Header size = 0 Protocol = I2C, pktType = 0 */
151 data = PROTOCOL_TYPE_I2C << PKT_HDR1_PROTOCOL_SHIFT;
152 data |= packet_id << PKT_HDR1_PKT_ID_SHIFT;
153 data |= i2c_bus->id << PKT_HDR1_CTLR_ID_SHIFT;
154 writel(data, &i2c_bus->control->tx_fifo);
155 debug("pkt header 1 sent (0x%x)\n", data);
156
157 /* prepare header2 */
158 data = (trans->num_bytes - 1) << PKT_HDR2_PAYLOAD_SIZE_SHIFT;
159 writel(data, &i2c_bus->control->tx_fifo);
160 debug("pkt header 2 sent (0x%x)\n", data);
161
162 /* prepare IO specific header: configure the slave address */
163 data = trans->address << PKT_HDR3_SLAVE_ADDR_SHIFT;
164
165 /* Enable Read if it is not a write transaction */
166 if (!(trans->flags & I2C_IS_WRITE))
167 data |= PKT_HDR3_READ_MODE_MASK;
Stephen Warren68049a02014-06-25 10:57:27 -0600168 if (end_with_repeated_start)
169 data |= PKT_HDR3_REPEAT_START_MASK;
Yen Lin96a78ac2012-03-06 19:00:23 +0000170
171 /* Write I2C specific header */
172 writel(data, &i2c_bus->control->tx_fifo);
173 debug("pkt header 3 sent (0x%x)\n", data);
174}
175
176static int wait_for_tx_fifo_empty(struct i2c_control *control)
177{
178 u32 count;
179 int timeout_us = I2C_TIMEOUT_USEC;
180
181 while (timeout_us >= 0) {
182 count = (readl(&control->fifo_status) & TX_FIFO_EMPTY_CNT_MASK)
183 >> TX_FIFO_EMPTY_CNT_SHIFT;
184 if (count == I2C_FIFO_DEPTH)
185 return 1;
186 udelay(10);
187 timeout_us -= 10;
188 }
189
190 return 0;
191}
192
193static int wait_for_rx_fifo_notempty(struct i2c_control *control)
194{
195 u32 count;
196 int timeout_us = I2C_TIMEOUT_USEC;
197
198 while (timeout_us >= 0) {
199 count = (readl(&control->fifo_status) & TX_FIFO_FULL_CNT_MASK)
200 >> TX_FIFO_FULL_CNT_SHIFT;
201 if (count)
202 return 1;
203 udelay(10);
204 timeout_us -= 10;
205 }
206
207 return 0;
208}
209
210static int wait_for_transfer_complete(struct i2c_control *control)
211{
212 int int_status;
213 int timeout_us = I2C_TIMEOUT_USEC;
214
215 while (timeout_us >= 0) {
216 int_status = readl(&control->int_status);
217 if (int_status & I2C_INT_NO_ACK_MASK)
218 return -int_status;
219 if (int_status & I2C_INT_ARBITRATION_LOST_MASK)
220 return -int_status;
221 if (int_status & I2C_INT_XFER_COMPLETE_MASK)
222 return 0;
223
224 udelay(10);
225 timeout_us -= 10;
226 }
227
228 return -1;
229}
230
231static int send_recv_packets(struct i2c_bus *i2c_bus,
232 struct i2c_trans_info *trans)
233{
234 struct i2c_control *control = i2c_bus->control;
235 u32 int_status;
236 u32 words;
237 u8 *dptr;
238 u32 local;
239 uchar last_bytes;
240 int error = 0;
241 int is_write = trans->flags & I2C_IS_WRITE;
242
243 /* clear status from previous transaction, XFER_COMPLETE, NOACK, etc. */
244 int_status = readl(&control->int_status);
245 writel(int_status, &control->int_status);
246
Stephen Warren68049a02014-06-25 10:57:27 -0600247 send_packet_headers(i2c_bus, trans, 1,
248 trans->flags & I2C_USE_REPEATED_START);
Yen Lin96a78ac2012-03-06 19:00:23 +0000249
250 words = DIV_ROUND_UP(trans->num_bytes, 4);
251 last_bytes = trans->num_bytes & 3;
252 dptr = trans->buf;
253
254 while (words) {
255 u32 *wptr = (u32 *)dptr;
256
257 if (is_write) {
258 /* deal with word alignment */
Stephen Warren981b14f2014-06-25 10:57:28 -0600259 if ((words == 1) && last_bytes) {
260 local = 0;
261 memcpy(&local, dptr, last_bytes);
Thierry Reding8e67c5d2015-07-22 15:33:22 -0600262 } else if ((unsigned long)dptr & 3) {
Yen Lin96a78ac2012-03-06 19:00:23 +0000263 memcpy(&local, dptr, sizeof(u32));
Yen Lin96a78ac2012-03-06 19:00:23 +0000264 } else {
Stephen Warren981b14f2014-06-25 10:57:28 -0600265 local = *wptr;
Yen Lin96a78ac2012-03-06 19:00:23 +0000266 }
Stephen Warren981b14f2014-06-25 10:57:28 -0600267 writel(local, &control->tx_fifo);
268 debug("pkt data sent (0x%x)\n", local);
Yen Lin96a78ac2012-03-06 19:00:23 +0000269 if (!wait_for_tx_fifo_empty(control)) {
270 error = -1;
271 goto exit;
272 }
273 } else {
274 if (!wait_for_rx_fifo_notempty(control)) {
275 error = -1;
276 goto exit;
277 }
278 /*
279 * for the last word, we read into our local buffer,
280 * in case that caller did not provide enough buffer.
281 */
282 local = readl(&control->rx_fifo);
283 if ((words == 1) && last_bytes)
284 memcpy(dptr, (char *)&local, last_bytes);
Thierry Reding8e67c5d2015-07-22 15:33:22 -0600285 else if ((unsigned long)dptr & 3)
Yen Lin96a78ac2012-03-06 19:00:23 +0000286 memcpy(dptr, &local, sizeof(u32));
287 else
288 *wptr = local;
289 debug("pkt data received (0x%x)\n", local);
290 }
291 words--;
292 dptr += sizeof(u32);
293 }
294
295 if (wait_for_transfer_complete(control)) {
296 error = -1;
297 goto exit;
298 }
299 return 0;
300exit:
301 /* error, reset the controller. */
302 i2c_reset_controller(i2c_bus);
303
304 return error;
305}
306
Simon Glassb0e6ef42014-12-10 08:55:57 -0700307static int tegra_i2c_write_data(struct i2c_bus *i2c_bus, u32 addr, u8 *data,
Stephen Warren68049a02014-06-25 10:57:27 -0600308 u32 len, bool end_with_repeated_start)
Yen Lin96a78ac2012-03-06 19:00:23 +0000309{
310 int error;
311 struct i2c_trans_info trans_info;
312
313 trans_info.address = addr;
314 trans_info.buf = data;
315 trans_info.flags = I2C_IS_WRITE;
Stephen Warren68049a02014-06-25 10:57:27 -0600316 if (end_with_repeated_start)
317 trans_info.flags |= I2C_USE_REPEATED_START;
Yen Lin96a78ac2012-03-06 19:00:23 +0000318 trans_info.num_bytes = len;
319 trans_info.is_10bit_address = 0;
320
Simon Glassb0e6ef42014-12-10 08:55:57 -0700321 error = send_recv_packets(i2c_bus, &trans_info);
Yen Lin96a78ac2012-03-06 19:00:23 +0000322 if (error)
Tom Warren29f3e3f2012-09-04 17:00:24 -0700323 debug("tegra_i2c_write_data: Error (%d) !!!\n", error);
Yen Lin96a78ac2012-03-06 19:00:23 +0000324
325 return error;
326}
327
Simon Glassb0e6ef42014-12-10 08:55:57 -0700328static int tegra_i2c_read_data(struct i2c_bus *i2c_bus, u32 addr, u8 *data,
Simon Glassd84eb852012-10-30 07:28:52 +0000329 u32 len)
Yen Lin96a78ac2012-03-06 19:00:23 +0000330{
331 int error;
332 struct i2c_trans_info trans_info;
333
334 trans_info.address = addr | 1;
335 trans_info.buf = data;
336 trans_info.flags = 0;
337 trans_info.num_bytes = len;
338 trans_info.is_10bit_address = 0;
339
Simon Glassb0e6ef42014-12-10 08:55:57 -0700340 error = send_recv_packets(i2c_bus, &trans_info);
Yen Lin96a78ac2012-03-06 19:00:23 +0000341 if (error)
Tom Warren29f3e3f2012-09-04 17:00:24 -0700342 debug("tegra_i2c_read_data: Error (%d) !!!\n", error);
Yen Lin96a78ac2012-03-06 19:00:23 +0000343
344 return error;
345}
346
Simon Glassb0e6ef42014-12-10 08:55:57 -0700347static int tegra_i2c_set_bus_speed(struct udevice *dev, unsigned int speed)
Yen Lin96a78ac2012-03-06 19:00:23 +0000348{
Simon Glassb0e6ef42014-12-10 08:55:57 -0700349 struct i2c_bus *i2c_bus = dev_get_priv(dev);
Simon Glassd84eb852012-10-30 07:28:52 +0000350
Simon Glassb0e6ef42014-12-10 08:55:57 -0700351 i2c_bus->speed = speed;
352 i2c_init_controller(i2c_bus);
Yen Lin96a78ac2012-03-06 19:00:23 +0000353
354 return 0;
355}
356
Simon Glassb0e6ef42014-12-10 08:55:57 -0700357static int tegra_i2c_probe(struct udevice *dev)
Yen Lin96a78ac2012-03-06 19:00:23 +0000358{
Simon Glassb0e6ef42014-12-10 08:55:57 -0700359 struct i2c_bus *i2c_bus = dev_get_priv(dev);
Bryan Wu3c27fa22016-08-05 16:10:35 -0600360 int ret;
Simon Glassb0e6ef42014-12-10 08:55:57 -0700361 bool is_dvc;
362
363 i2c_bus->id = dev->seq;
Simon Glass39de8432015-03-25 12:21:55 -0600364 i2c_bus->type = dev_get_driver_data(dev);
Simon Glassd8554d02017-07-25 08:30:06 -0600365 i2c_bus->regs = (struct i2c_ctlr *)dev_read_addr(dev);
366 if ((ulong)i2c_bus->regs == FDT_ADDR_T_NONE) {
367 debug("%s: Cannot get regs address\n", __func__);
368 return -EINVAL;
369 }
Yen Lin96a78ac2012-03-06 19:00:23 +0000370
Bryan Wu3c27fa22016-08-05 16:10:35 -0600371 ret = reset_get_by_name(dev, "i2c", &i2c_bus->reset_ctl);
372 if (ret) {
Masahiro Yamada9b643e32017-09-16 14:10:41 +0900373 pr_err("reset_get_by_name() failed: %d\n", ret);
Bryan Wu3c27fa22016-08-05 16:10:35 -0600374 return ret;
375 }
Stephen Warrenb4ee0812016-08-18 11:08:43 -0600376 ret = clk_get_by_name(dev, "div-clk", &i2c_bus->clk);
Bryan Wu3c27fa22016-08-05 16:10:35 -0600377 if (ret) {
Masahiro Yamada9b643e32017-09-16 14:10:41 +0900378 pr_err("clk_get_by_name() failed: %d\n", ret);
Bryan Wu3c27fa22016-08-05 16:10:35 -0600379 return ret;
380 }
Stephen Warrenfc607d92016-09-13 10:46:02 -0600381
382#ifndef CONFIG_TEGRA186
383 /*
384 * We don't have a binding for pinmux yet. Leave it out for now. So
385 * far no one needs anything other than the default.
386 */
Yen Lin96a78ac2012-03-06 19:00:23 +0000387 i2c_bus->pinmux_config = FUNCMUX_DEFAULT;
Yen Lin96a78ac2012-03-06 19:00:23 +0000388
389 /*
390 * We can't specify the pinmux config in the fdt, so I2C2 will not
391 * work on Seaboard. It normally has no devices on it anyway.
392 * You could add in this little hack if you need to use it.
393 * The correct solution is a pinmux binding in the fdt.
394 *
Stephen Warrenfc607d92016-09-13 10:46:02 -0600395 * if (i2c_bus->clk.id == PERIPH_ID_I2C2)
Yen Lin96a78ac2012-03-06 19:00:23 +0000396 * i2c_bus->pinmux_config = FUNCMUX_I2C2_PTA;
397 */
Bryan Wu3c27fa22016-08-05 16:10:35 -0600398#endif
Yen Lin96a78ac2012-03-06 19:00:23 +0000399
Simon Glass39de8432015-03-25 12:21:55 -0600400 is_dvc = dev_get_driver_data(dev) == TYPE_DVC;
Simon Glassb0e6ef42014-12-10 08:55:57 -0700401 if (is_dvc) {
402 i2c_bus->control =
403 &((struct dvc_ctlr *)i2c_bus->regs)->control;
404 } else {
405 i2c_bus->control = &i2c_bus->regs->control;
Yen Lin96a78ac2012-03-06 19:00:23 +0000406 }
Simon Glassb0e6ef42014-12-10 08:55:57 -0700407 i2c_init_controller(i2c_bus);
Stephen Warrenfc607d92016-09-13 10:46:02 -0600408 debug("%s: controller bus %d at %p, speed %d: ",
409 is_dvc ? "dvc" : "i2c", dev->seq, i2c_bus->regs, i2c_bus->speed);
Yen Lin96a78ac2012-03-06 19:00:23 +0000410
411 return 0;
412}
413
Yen Lin96a78ac2012-03-06 19:00:23 +0000414/* i2c write version without the register address */
Simon Glassb0e6ef42014-12-10 08:55:57 -0700415static int i2c_write_data(struct i2c_bus *i2c_bus, uchar chip, uchar *buffer,
Jeroen Hofstee19d7bf32014-10-08 22:57:46 +0200416 int len, bool end_with_repeated_start)
Yen Lin96a78ac2012-03-06 19:00:23 +0000417{
418 int rc;
419
420 debug("i2c_write_data: chip=0x%x, len=0x%x\n", chip, len);
421 debug("write_data: ");
422 /* use rc for counter */
423 for (rc = 0; rc < len; ++rc)
424 debug(" 0x%02x", buffer[rc]);
425 debug("\n");
426
427 /* Shift 7-bit address over for lower-level i2c functions */
Simon Glassb0e6ef42014-12-10 08:55:57 -0700428 rc = tegra_i2c_write_data(i2c_bus, chip << 1, buffer, len,
Stephen Warren68049a02014-06-25 10:57:27 -0600429 end_with_repeated_start);
Yen Lin96a78ac2012-03-06 19:00:23 +0000430 if (rc)
431 debug("i2c_write_data(): rc=%d\n", rc);
432
433 return rc;
434}
435
436/* i2c read version without the register address */
Simon Glassb0e6ef42014-12-10 08:55:57 -0700437static int i2c_read_data(struct i2c_bus *i2c_bus, uchar chip, uchar *buffer,
438 int len)
Yen Lin96a78ac2012-03-06 19:00:23 +0000439{
440 int rc;
441
442 debug("inside i2c_read_data():\n");
443 /* Shift 7-bit address over for lower-level i2c functions */
Simon Glassb0e6ef42014-12-10 08:55:57 -0700444 rc = tegra_i2c_read_data(i2c_bus, chip << 1, buffer, len);
Yen Lin96a78ac2012-03-06 19:00:23 +0000445 if (rc) {
446 debug("i2c_read_data(): rc=%d\n", rc);
447 return rc;
448 }
449
450 debug("i2c_read_data: ");
451 /* reuse rc for counter*/
452 for (rc = 0; rc < len; ++rc)
453 debug(" 0x%02x", buffer[rc]);
454 debug("\n");
455
456 return 0;
457}
458
459/* Probe to see if a chip is present. */
Simon Glassb0e6ef42014-12-10 08:55:57 -0700460static int tegra_i2c_probe_chip(struct udevice *bus, uint chip_addr,
461 uint chip_flags)
Yen Lin96a78ac2012-03-06 19:00:23 +0000462{
Simon Glassb0e6ef42014-12-10 08:55:57 -0700463 struct i2c_bus *i2c_bus = dev_get_priv(bus);
Yen Lin96a78ac2012-03-06 19:00:23 +0000464 int rc;
Simon Glassb0e6ef42014-12-10 08:55:57 -0700465 u8 reg;
Yen Lin96a78ac2012-03-06 19:00:23 +0000466
Simon Glassb0e6ef42014-12-10 08:55:57 -0700467 /* Shift 7-bit address over for lower-level i2c functions */
468 rc = tegra_i2c_write_data(i2c_bus, chip_addr << 1, &reg, sizeof(reg),
469 false);
470
471 return rc;
Yen Lin96a78ac2012-03-06 19:00:23 +0000472}
473
Simon Glassb0e6ef42014-12-10 08:55:57 -0700474static int tegra_i2c_xfer(struct udevice *bus, struct i2c_msg *msg,
475 int nmsgs)
Yen Lin96a78ac2012-03-06 19:00:23 +0000476{
Simon Glassb0e6ef42014-12-10 08:55:57 -0700477 struct i2c_bus *i2c_bus = dev_get_priv(bus);
478 int ret;
Yen Lin96a78ac2012-03-06 19:00:23 +0000479
Simon Glassb0e6ef42014-12-10 08:55:57 -0700480 debug("i2c_xfer: %d messages\n", nmsgs);
481 for (; nmsgs > 0; nmsgs--, msg++) {
482 bool next_is_read = nmsgs > 1 && (msg[1].flags & I2C_M_RD);
Yen Lin96a78ac2012-03-06 19:00:23 +0000483
Simon Glassb0e6ef42014-12-10 08:55:57 -0700484 debug("i2c_xfer: chip=0x%x, len=0x%x\n", msg->addr, msg->len);
485 if (msg->flags & I2C_M_RD) {
486 ret = i2c_read_data(i2c_bus, msg->addr, msg->buf,
487 msg->len);
488 } else {
489 ret = i2c_write_data(i2c_bus, msg->addr, msg->buf,
490 msg->len, next_is_read);
Yen Lin96a78ac2012-03-06 19:00:23 +0000491 }
Simon Glassb0e6ef42014-12-10 08:55:57 -0700492 if (ret) {
493 debug("i2c_write: error sending\n");
494 return -EREMOTEIO;
Yen Lin96a78ac2012-03-06 19:00:23 +0000495 }
496 }
497
498 return 0;
499}
500
Simon Glassb0e6ef42014-12-10 08:55:57 -0700501int tegra_i2c_get_dvc_bus(struct udevice **busp)
Yen Lin96a78ac2012-03-06 19:00:23 +0000502{
Simon Glassfdec36f2020-02-06 09:54:52 -0700503 return uclass_first_device_drvdata(UCLASS_I2C, TYPE_DVC, busp);
Simon Glassb0e6ef42014-12-10 08:55:57 -0700504}
505
506static const struct dm_i2c_ops tegra_i2c_ops = {
507 .xfer = tegra_i2c_xfer,
508 .probe_chip = tegra_i2c_probe_chip,
509 .set_bus_speed = tegra_i2c_set_bus_speed,
510};
511
Simon Glassb0e6ef42014-12-10 08:55:57 -0700512static const struct udevice_id tegra_i2c_ids[] = {
513 { .compatible = "nvidia,tegra114-i2c", .data = TYPE_114 },
514 { .compatible = "nvidia,tegra20-i2c", .data = TYPE_STD },
515 { .compatible = "nvidia,tegra20-i2c-dvc", .data = TYPE_DVC },
516 { }
517};
Simon Glasse31c1e52012-04-02 13:19:01 +0000518
Simon Glassb0e6ef42014-12-10 08:55:57 -0700519U_BOOT_DRIVER(i2c_tegra) = {
520 .name = "i2c_tegra",
521 .id = UCLASS_I2C,
522 .of_match = tegra_i2c_ids,
Simon Glassb0e6ef42014-12-10 08:55:57 -0700523 .probe = tegra_i2c_probe,
Simon Glassb0e6ef42014-12-10 08:55:57 -0700524 .priv_auto_alloc_size = sizeof(struct i2c_bus),
525 .ops = &tegra_i2c_ops,
526};