blob: 57d77d56ea5515cd902280294c0a586359d35cdd [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>
Simon Glassf7ae49f2020-05-10 11:40:05 -060012#include <log.h>
Yen Lin96a78ac2012-03-06 19:00:23 +000013#include <asm/io.h>
Bryan Wu3c27fa22016-08-05 16:10:35 -060014#include <clk.h>
15#include <reset.h>
Stephen Warrenfc607d92016-09-13 10:46:02 -060016#ifndef CONFIG_TEGRA186
Yen Lin96a78ac2012-03-06 19:00:23 +000017#include <asm/arch/clock.h>
18#include <asm/arch/funcmux.h>
Bryan Wu3c27fa22016-08-05 16:10:35 -060019#endif
20#include <asm/arch/gpio.h>
Tom Warren150c2492012-09-19 15:50:56 -070021#include <asm/arch-tegra/tegra_i2c.h>
Simon Glassc05ed002020-05-10 11:40:11 -060022#include <linux/delay.h>
Simon Glass61b29b82020-02-03 07:36:15 -070023#include <linux/err.h>
Simon Glass1e94b462023-09-14 18:21:46 -060024#include <linux/printk.h>
Yen Lin96a78ac2012-03-06 19:00:23 +000025
Simon Glassb0e6ef42014-12-10 08:55:57 -070026enum i2c_type {
27 TYPE_114,
28 TYPE_STD,
29 TYPE_DVC,
30};
31
Yen Lin96a78ac2012-03-06 19:00:23 +000032/* Information about i2c controller */
33struct i2c_bus {
34 int id;
Bryan Wu3c27fa22016-08-05 16:10:35 -060035 struct reset_ctl reset_ctl;
36 struct clk clk;
Yen Lin96a78ac2012-03-06 19:00:23 +000037 int speed;
38 int pinmux_config;
39 struct i2c_control *control;
40 struct i2c_ctlr *regs;
Simon Glassb0e6ef42014-12-10 08:55:57 -070041 enum i2c_type type;
Yen Lin96a78ac2012-03-06 19:00:23 +000042 int inited; /* bus is inited */
43};
44
Yen Lin96a78ac2012-03-06 19:00:23 +000045static void set_packet_mode(struct i2c_bus *i2c_bus)
46{
47 u32 config;
48
49 config = I2C_CNFG_NEW_MASTER_FSM_MASK | I2C_CNFG_PACKET_MODE_MASK;
50
Simon Glassb0e6ef42014-12-10 08:55:57 -070051 if (i2c_bus->type == TYPE_DVC) {
Yen Lin96a78ac2012-03-06 19:00:23 +000052 struct dvc_ctlr *dvc = (struct dvc_ctlr *)i2c_bus->regs;
53
54 writel(config, &dvc->cnfg);
55 } else {
56 writel(config, &i2c_bus->regs->cnfg);
57 /*
58 * program I2C_SL_CNFG.NEWSL to ENABLE. This fixes probe
59 * issues, i.e., some slaves may be wrongly detected.
60 */
61 setbits_le32(&i2c_bus->regs->sl_cnfg, I2C_SL_CNFG_NEWSL_MASK);
62 }
63}
64
65static void i2c_reset_controller(struct i2c_bus *i2c_bus)
66{
67 /* Reset I2C controller. */
Bryan Wu3c27fa22016-08-05 16:10:35 -060068 reset_assert(&i2c_bus->reset_ctl);
69 udelay(1);
70 reset_deassert(&i2c_bus->reset_ctl);
71 udelay(1);
Yen Lin96a78ac2012-03-06 19:00:23 +000072
73 /* re-program config register to packet mode */
74 set_packet_mode(i2c_bus);
75}
76
Bryan Wu3c27fa22016-08-05 16:10:35 -060077static int i2c_init_clock(struct i2c_bus *i2c_bus, unsigned rate)
78{
79 int ret;
80
81 ret = reset_assert(&i2c_bus->reset_ctl);
82 if (ret)
83 return ret;
84 ret = clk_enable(&i2c_bus->clk);
85 if (ret)
86 return ret;
87 ret = clk_set_rate(&i2c_bus->clk, rate);
88 if (IS_ERR_VALUE(ret))
89 return ret;
90 ret = reset_deassert(&i2c_bus->reset_ctl);
91 if (ret)
92 return ret;
93
94 return 0;
95}
Bryan Wu3c27fa22016-08-05 16:10:35 -060096
Yen Lin96a78ac2012-03-06 19:00:23 +000097static void i2c_init_controller(struct i2c_bus *i2c_bus)
98{
Simon Glassb0e6ef42014-12-10 08:55:57 -070099 if (!i2c_bus->speed)
100 return;
101 debug("%s: speed=%d\n", __func__, i2c_bus->speed);
Yen Lin96a78ac2012-03-06 19:00:23 +0000102 /*
103 * Use PLLP - DP-04508-001_v06 datasheet indicates a divisor of 8
104 * here, in section 23.3.1, but in fact we seem to need a factor of
105 * 16 to get the right frequency.
106 */
Bryan Wu3c27fa22016-08-05 16:10:35 -0600107 i2c_init_clock(i2c_bus, i2c_bus->speed * 2 * 8);
Tom Warrene32624e2013-02-08 07:25:30 +0000108
Simon Glassb0e6ef42014-12-10 08:55:57 -0700109 if (i2c_bus->type == TYPE_114) {
Tom Warrene32624e2013-02-08 07:25:30 +0000110 /*
111 * T114 I2C went to a single clock source for standard/fast and
112 * HS clock speeds. The new clock rate setting calculation is:
113 * SCL = CLK_SOURCE.I2C /
114 * (CLK_MULT_STD_FAST_MODE * (I2C_CLK_DIV_STD_FAST_MODE+1) *
115 * I2C FREQUENCY DIVISOR) as per the T114 TRM (sec 30.3.1).
116 *
117 * NOTE: We do this here, after the initial clock/pll start,
118 * because if we read the clk_div reg before the controller
119 * is running, we hang, and we need it for the new calc.
120 */
121 int clk_div_stdfst_mode = readl(&i2c_bus->regs->clk_div) >> 16;
Bryan Wu3c27fa22016-08-05 16:10:35 -0600122 unsigned rate = CLK_MULT_STD_FAST_MODE *
123 (clk_div_stdfst_mode + 1) * i2c_bus->speed * 2;
Tom Warrene32624e2013-02-08 07:25:30 +0000124 debug("%s: CLK_DIV_STD_FAST_MODE setting = %d\n", __func__,
125 clk_div_stdfst_mode);
126
Bryan Wu3c27fa22016-08-05 16:10:35 -0600127 i2c_init_clock(i2c_bus, rate);
Tom Warrene32624e2013-02-08 07:25:30 +0000128 }
Yen Lin96a78ac2012-03-06 19:00:23 +0000129
130 /* Reset I2C controller. */
131 i2c_reset_controller(i2c_bus);
132
133 /* Configure I2C controller. */
Simon Glassb0e6ef42014-12-10 08:55:57 -0700134 if (i2c_bus->type == TYPE_DVC) { /* only for DVC I2C */
Yen Lin96a78ac2012-03-06 19:00:23 +0000135 struct dvc_ctlr *dvc = (struct dvc_ctlr *)i2c_bus->regs;
136
137 setbits_le32(&dvc->ctrl3, DVC_CTRL_REG3_I2C_HW_SW_PROG_MASK);
138 }
139
Bryan Wu3c27fa22016-08-05 16:10:35 -0600140#ifndef CONFIG_TEGRA186
Stephen Warrenfc607d92016-09-13 10:46:02 -0600141 funcmux_select(i2c_bus->clk.id, i2c_bus->pinmux_config);
Bryan Wu3c27fa22016-08-05 16:10:35 -0600142#endif
Yen Lin96a78ac2012-03-06 19:00:23 +0000143}
144
145static void send_packet_headers(
146 struct i2c_bus *i2c_bus,
147 struct i2c_trans_info *trans,
Stephen Warren68049a02014-06-25 10:57:27 -0600148 u32 packet_id,
149 bool end_with_repeated_start)
Yen Lin96a78ac2012-03-06 19:00:23 +0000150{
151 u32 data;
152
153 /* prepare header1: Header size = 0 Protocol = I2C, pktType = 0 */
154 data = PROTOCOL_TYPE_I2C << PKT_HDR1_PROTOCOL_SHIFT;
155 data |= packet_id << PKT_HDR1_PKT_ID_SHIFT;
156 data |= i2c_bus->id << PKT_HDR1_CTLR_ID_SHIFT;
157 writel(data, &i2c_bus->control->tx_fifo);
158 debug("pkt header 1 sent (0x%x)\n", data);
159
160 /* prepare header2 */
161 data = (trans->num_bytes - 1) << PKT_HDR2_PAYLOAD_SIZE_SHIFT;
162 writel(data, &i2c_bus->control->tx_fifo);
163 debug("pkt header 2 sent (0x%x)\n", data);
164
165 /* prepare IO specific header: configure the slave address */
166 data = trans->address << PKT_HDR3_SLAVE_ADDR_SHIFT;
167
168 /* Enable Read if it is not a write transaction */
169 if (!(trans->flags & I2C_IS_WRITE))
170 data |= PKT_HDR3_READ_MODE_MASK;
Stephen Warren68049a02014-06-25 10:57:27 -0600171 if (end_with_repeated_start)
172 data |= PKT_HDR3_REPEAT_START_MASK;
Yen Lin96a78ac2012-03-06 19:00:23 +0000173
174 /* Write I2C specific header */
175 writel(data, &i2c_bus->control->tx_fifo);
176 debug("pkt header 3 sent (0x%x)\n", data);
177}
178
179static int wait_for_tx_fifo_empty(struct i2c_control *control)
180{
181 u32 count;
182 int timeout_us = I2C_TIMEOUT_USEC;
183
184 while (timeout_us >= 0) {
185 count = (readl(&control->fifo_status) & TX_FIFO_EMPTY_CNT_MASK)
186 >> TX_FIFO_EMPTY_CNT_SHIFT;
187 if (count == I2C_FIFO_DEPTH)
188 return 1;
189 udelay(10);
190 timeout_us -= 10;
191 }
192
193 return 0;
194}
195
196static int wait_for_rx_fifo_notempty(struct i2c_control *control)
197{
198 u32 count;
199 int timeout_us = I2C_TIMEOUT_USEC;
200
201 while (timeout_us >= 0) {
202 count = (readl(&control->fifo_status) & TX_FIFO_FULL_CNT_MASK)
203 >> TX_FIFO_FULL_CNT_SHIFT;
204 if (count)
205 return 1;
206 udelay(10);
207 timeout_us -= 10;
208 }
209
210 return 0;
211}
212
213static int wait_for_transfer_complete(struct i2c_control *control)
214{
215 int int_status;
216 int timeout_us = I2C_TIMEOUT_USEC;
217
218 while (timeout_us >= 0) {
219 int_status = readl(&control->int_status);
220 if (int_status & I2C_INT_NO_ACK_MASK)
221 return -int_status;
222 if (int_status & I2C_INT_ARBITRATION_LOST_MASK)
223 return -int_status;
224 if (int_status & I2C_INT_XFER_COMPLETE_MASK)
225 return 0;
226
227 udelay(10);
228 timeout_us -= 10;
229 }
230
231 return -1;
232}
233
234static int send_recv_packets(struct i2c_bus *i2c_bus,
235 struct i2c_trans_info *trans)
236{
237 struct i2c_control *control = i2c_bus->control;
238 u32 int_status;
239 u32 words;
240 u8 *dptr;
241 u32 local;
242 uchar last_bytes;
243 int error = 0;
244 int is_write = trans->flags & I2C_IS_WRITE;
245
246 /* clear status from previous transaction, XFER_COMPLETE, NOACK, etc. */
247 int_status = readl(&control->int_status);
248 writel(int_status, &control->int_status);
249
Stephen Warren68049a02014-06-25 10:57:27 -0600250 send_packet_headers(i2c_bus, trans, 1,
251 trans->flags & I2C_USE_REPEATED_START);
Yen Lin96a78ac2012-03-06 19:00:23 +0000252
253 words = DIV_ROUND_UP(trans->num_bytes, 4);
254 last_bytes = trans->num_bytes & 3;
255 dptr = trans->buf;
256
257 while (words) {
258 u32 *wptr = (u32 *)dptr;
259
260 if (is_write) {
261 /* deal with word alignment */
Stephen Warren981b14f2014-06-25 10:57:28 -0600262 if ((words == 1) && last_bytes) {
263 local = 0;
264 memcpy(&local, dptr, last_bytes);
Thierry Reding8e67c5d2015-07-22 15:33:22 -0600265 } else if ((unsigned long)dptr & 3) {
Yen Lin96a78ac2012-03-06 19:00:23 +0000266 memcpy(&local, dptr, sizeof(u32));
Yen Lin96a78ac2012-03-06 19:00:23 +0000267 } else {
Stephen Warren981b14f2014-06-25 10:57:28 -0600268 local = *wptr;
Yen Lin96a78ac2012-03-06 19:00:23 +0000269 }
Stephen Warren981b14f2014-06-25 10:57:28 -0600270 writel(local, &control->tx_fifo);
271 debug("pkt data sent (0x%x)\n", local);
Yen Lin96a78ac2012-03-06 19:00:23 +0000272 if (!wait_for_tx_fifo_empty(control)) {
273 error = -1;
274 goto exit;
275 }
276 } else {
277 if (!wait_for_rx_fifo_notempty(control)) {
278 error = -1;
279 goto exit;
280 }
281 /*
282 * for the last word, we read into our local buffer,
283 * in case that caller did not provide enough buffer.
284 */
285 local = readl(&control->rx_fifo);
286 if ((words == 1) && last_bytes)
287 memcpy(dptr, (char *)&local, last_bytes);
Thierry Reding8e67c5d2015-07-22 15:33:22 -0600288 else if ((unsigned long)dptr & 3)
Yen Lin96a78ac2012-03-06 19:00:23 +0000289 memcpy(dptr, &local, sizeof(u32));
290 else
291 *wptr = local;
292 debug("pkt data received (0x%x)\n", local);
293 }
294 words--;
295 dptr += sizeof(u32);
296 }
297
298 if (wait_for_transfer_complete(control)) {
299 error = -1;
300 goto exit;
301 }
302 return 0;
303exit:
304 /* error, reset the controller. */
305 i2c_reset_controller(i2c_bus);
306
307 return error;
308}
309
Simon Glassb0e6ef42014-12-10 08:55:57 -0700310static int tegra_i2c_write_data(struct i2c_bus *i2c_bus, u32 addr, u8 *data,
Stephen Warren68049a02014-06-25 10:57:27 -0600311 u32 len, bool end_with_repeated_start)
Yen Lin96a78ac2012-03-06 19:00:23 +0000312{
313 int error;
314 struct i2c_trans_info trans_info;
315
316 trans_info.address = addr;
317 trans_info.buf = data;
318 trans_info.flags = I2C_IS_WRITE;
Stephen Warren68049a02014-06-25 10:57:27 -0600319 if (end_with_repeated_start)
320 trans_info.flags |= I2C_USE_REPEATED_START;
Yen Lin96a78ac2012-03-06 19:00:23 +0000321 trans_info.num_bytes = len;
322 trans_info.is_10bit_address = 0;
323
Simon Glassb0e6ef42014-12-10 08:55:57 -0700324 error = send_recv_packets(i2c_bus, &trans_info);
Yen Lin96a78ac2012-03-06 19:00:23 +0000325 if (error)
Tom Warren29f3e3f2012-09-04 17:00:24 -0700326 debug("tegra_i2c_write_data: Error (%d) !!!\n", error);
Yen Lin96a78ac2012-03-06 19:00:23 +0000327
328 return error;
329}
330
Simon Glassb0e6ef42014-12-10 08:55:57 -0700331static int tegra_i2c_read_data(struct i2c_bus *i2c_bus, u32 addr, u8 *data,
Simon Glassd84eb852012-10-30 07:28:52 +0000332 u32 len)
Yen Lin96a78ac2012-03-06 19:00:23 +0000333{
334 int error;
335 struct i2c_trans_info trans_info;
336
337 trans_info.address = addr | 1;
338 trans_info.buf = data;
339 trans_info.flags = 0;
340 trans_info.num_bytes = len;
341 trans_info.is_10bit_address = 0;
342
Simon Glassb0e6ef42014-12-10 08:55:57 -0700343 error = send_recv_packets(i2c_bus, &trans_info);
Yen Lin96a78ac2012-03-06 19:00:23 +0000344 if (error)
Tom Warren29f3e3f2012-09-04 17:00:24 -0700345 debug("tegra_i2c_read_data: Error (%d) !!!\n", error);
Yen Lin96a78ac2012-03-06 19:00:23 +0000346
347 return error;
348}
349
Simon Glassb0e6ef42014-12-10 08:55:57 -0700350static int tegra_i2c_set_bus_speed(struct udevice *dev, unsigned int speed)
Yen Lin96a78ac2012-03-06 19:00:23 +0000351{
Simon Glassb0e6ef42014-12-10 08:55:57 -0700352 struct i2c_bus *i2c_bus = dev_get_priv(dev);
Simon Glassd84eb852012-10-30 07:28:52 +0000353
Simon Glassb0e6ef42014-12-10 08:55:57 -0700354 i2c_bus->speed = speed;
355 i2c_init_controller(i2c_bus);
Yen Lin96a78ac2012-03-06 19:00:23 +0000356
357 return 0;
358}
359
Simon Glassb0e6ef42014-12-10 08:55:57 -0700360static int tegra_i2c_probe(struct udevice *dev)
Yen Lin96a78ac2012-03-06 19:00:23 +0000361{
Simon Glassb0e6ef42014-12-10 08:55:57 -0700362 struct i2c_bus *i2c_bus = dev_get_priv(dev);
Bryan Wu3c27fa22016-08-05 16:10:35 -0600363 int ret;
Simon Glassb0e6ef42014-12-10 08:55:57 -0700364 bool is_dvc;
365
Simon Glass8b85dfc2020-12-16 21:20:07 -0700366 i2c_bus->id = dev_seq(dev);
Simon Glass39de8432015-03-25 12:21:55 -0600367 i2c_bus->type = dev_get_driver_data(dev);
Johan Jonkera12a73b2023-03-13 01:32:04 +0100368 i2c_bus->regs = dev_read_addr_ptr(dev);
369 if (!i2c_bus->regs) {
Simon Glassd8554d02017-07-25 08:30:06 -0600370 debug("%s: Cannot get regs address\n", __func__);
371 return -EINVAL;
372 }
Yen Lin96a78ac2012-03-06 19:00:23 +0000373
Bryan Wu3c27fa22016-08-05 16:10:35 -0600374 ret = reset_get_by_name(dev, "i2c", &i2c_bus->reset_ctl);
375 if (ret) {
Masahiro Yamada9b643e32017-09-16 14:10:41 +0900376 pr_err("reset_get_by_name() failed: %d\n", ret);
Bryan Wu3c27fa22016-08-05 16:10:35 -0600377 return ret;
378 }
Stephen Warrenb4ee0812016-08-18 11:08:43 -0600379 ret = clk_get_by_name(dev, "div-clk", &i2c_bus->clk);
Bryan Wu3c27fa22016-08-05 16:10:35 -0600380 if (ret) {
Masahiro Yamada9b643e32017-09-16 14:10:41 +0900381 pr_err("clk_get_by_name() failed: %d\n", ret);
Bryan Wu3c27fa22016-08-05 16:10:35 -0600382 return ret;
383 }
Stephen Warrenfc607d92016-09-13 10:46:02 -0600384
385#ifndef CONFIG_TEGRA186
386 /*
387 * We don't have a binding for pinmux yet. Leave it out for now. So
388 * far no one needs anything other than the default.
389 */
Yen Lin96a78ac2012-03-06 19:00:23 +0000390 i2c_bus->pinmux_config = FUNCMUX_DEFAULT;
Yen Lin96a78ac2012-03-06 19:00:23 +0000391
392 /*
393 * We can't specify the pinmux config in the fdt, so I2C2 will not
394 * work on Seaboard. It normally has no devices on it anyway.
395 * You could add in this little hack if you need to use it.
396 * The correct solution is a pinmux binding in the fdt.
397 *
Stephen Warrenfc607d92016-09-13 10:46:02 -0600398 * if (i2c_bus->clk.id == PERIPH_ID_I2C2)
Yen Lin96a78ac2012-03-06 19:00:23 +0000399 * i2c_bus->pinmux_config = FUNCMUX_I2C2_PTA;
400 */
Bryan Wu3c27fa22016-08-05 16:10:35 -0600401#endif
Yen Lin96a78ac2012-03-06 19:00:23 +0000402
Simon Glass39de8432015-03-25 12:21:55 -0600403 is_dvc = dev_get_driver_data(dev) == TYPE_DVC;
Simon Glassb0e6ef42014-12-10 08:55:57 -0700404 if (is_dvc) {
405 i2c_bus->control =
406 &((struct dvc_ctlr *)i2c_bus->regs)->control;
407 } else {
408 i2c_bus->control = &i2c_bus->regs->control;
Yen Lin96a78ac2012-03-06 19:00:23 +0000409 }
Simon Glassb0e6ef42014-12-10 08:55:57 -0700410 i2c_init_controller(i2c_bus);
Stephen Warrenfc607d92016-09-13 10:46:02 -0600411 debug("%s: controller bus %d at %p, speed %d: ",
Simon Glass8b85dfc2020-12-16 21:20:07 -0700412 is_dvc ? "dvc" : "i2c", dev_seq(dev), i2c_bus->regs,
413 i2c_bus->speed);
Yen Lin96a78ac2012-03-06 19:00:23 +0000414
415 return 0;
416}
417
Yen Lin96a78ac2012-03-06 19:00:23 +0000418/* i2c write version without the register address */
Simon Glassb0e6ef42014-12-10 08:55:57 -0700419static int i2c_write_data(struct i2c_bus *i2c_bus, uchar chip, uchar *buffer,
Jeroen Hofstee19d7bf32014-10-08 22:57:46 +0200420 int len, bool end_with_repeated_start)
Yen Lin96a78ac2012-03-06 19:00:23 +0000421{
422 int rc;
423
424 debug("i2c_write_data: chip=0x%x, len=0x%x\n", chip, len);
425 debug("write_data: ");
426 /* use rc for counter */
427 for (rc = 0; rc < len; ++rc)
428 debug(" 0x%02x", buffer[rc]);
429 debug("\n");
430
431 /* Shift 7-bit address over for lower-level i2c functions */
Simon Glassb0e6ef42014-12-10 08:55:57 -0700432 rc = tegra_i2c_write_data(i2c_bus, chip << 1, buffer, len,
Stephen Warren68049a02014-06-25 10:57:27 -0600433 end_with_repeated_start);
Yen Lin96a78ac2012-03-06 19:00:23 +0000434 if (rc)
435 debug("i2c_write_data(): rc=%d\n", rc);
436
437 return rc;
438}
439
440/* i2c read version without the register address */
Simon Glassb0e6ef42014-12-10 08:55:57 -0700441static int i2c_read_data(struct i2c_bus *i2c_bus, uchar chip, uchar *buffer,
442 int len)
Yen Lin96a78ac2012-03-06 19:00:23 +0000443{
444 int rc;
445
446 debug("inside i2c_read_data():\n");
447 /* Shift 7-bit address over for lower-level i2c functions */
Simon Glassb0e6ef42014-12-10 08:55:57 -0700448 rc = tegra_i2c_read_data(i2c_bus, chip << 1, buffer, len);
Yen Lin96a78ac2012-03-06 19:00:23 +0000449 if (rc) {
450 debug("i2c_read_data(): rc=%d\n", rc);
451 return rc;
452 }
453
454 debug("i2c_read_data: ");
455 /* reuse rc for counter*/
456 for (rc = 0; rc < len; ++rc)
457 debug(" 0x%02x", buffer[rc]);
458 debug("\n");
459
460 return 0;
461}
462
463/* Probe to see if a chip is present. */
Simon Glassb0e6ef42014-12-10 08:55:57 -0700464static int tegra_i2c_probe_chip(struct udevice *bus, uint chip_addr,
465 uint chip_flags)
Yen Lin96a78ac2012-03-06 19:00:23 +0000466{
Simon Glassb0e6ef42014-12-10 08:55:57 -0700467 struct i2c_bus *i2c_bus = dev_get_priv(bus);
Yen Lin96a78ac2012-03-06 19:00:23 +0000468 int rc;
Simon Glassb0e6ef42014-12-10 08:55:57 -0700469 u8 reg;
Yen Lin96a78ac2012-03-06 19:00:23 +0000470
Simon Glassb0e6ef42014-12-10 08:55:57 -0700471 /* Shift 7-bit address over for lower-level i2c functions */
472 rc = tegra_i2c_write_data(i2c_bus, chip_addr << 1, &reg, sizeof(reg),
473 false);
474
475 return rc;
Yen Lin96a78ac2012-03-06 19:00:23 +0000476}
477
Simon Glassb0e6ef42014-12-10 08:55:57 -0700478static int tegra_i2c_xfer(struct udevice *bus, struct i2c_msg *msg,
479 int nmsgs)
Yen Lin96a78ac2012-03-06 19:00:23 +0000480{
Simon Glassb0e6ef42014-12-10 08:55:57 -0700481 struct i2c_bus *i2c_bus = dev_get_priv(bus);
482 int ret;
Yen Lin96a78ac2012-03-06 19:00:23 +0000483
Simon Glassb0e6ef42014-12-10 08:55:57 -0700484 debug("i2c_xfer: %d messages\n", nmsgs);
485 for (; nmsgs > 0; nmsgs--, msg++) {
486 bool next_is_read = nmsgs > 1 && (msg[1].flags & I2C_M_RD);
Yen Lin96a78ac2012-03-06 19:00:23 +0000487
Simon Glassb0e6ef42014-12-10 08:55:57 -0700488 debug("i2c_xfer: chip=0x%x, len=0x%x\n", msg->addr, msg->len);
489 if (msg->flags & I2C_M_RD) {
490 ret = i2c_read_data(i2c_bus, msg->addr, msg->buf,
491 msg->len);
492 } else {
493 ret = i2c_write_data(i2c_bus, msg->addr, msg->buf,
494 msg->len, next_is_read);
Yen Lin96a78ac2012-03-06 19:00:23 +0000495 }
Simon Glassb0e6ef42014-12-10 08:55:57 -0700496 if (ret) {
497 debug("i2c_write: error sending\n");
498 return -EREMOTEIO;
Yen Lin96a78ac2012-03-06 19:00:23 +0000499 }
500 }
501
502 return 0;
503}
504
Simon Glassb0e6ef42014-12-10 08:55:57 -0700505int tegra_i2c_get_dvc_bus(struct udevice **busp)
Yen Lin96a78ac2012-03-06 19:00:23 +0000506{
Simon Glassfdec36f2020-02-06 09:54:52 -0700507 return uclass_first_device_drvdata(UCLASS_I2C, TYPE_DVC, busp);
Simon Glassb0e6ef42014-12-10 08:55:57 -0700508}
509
510static const struct dm_i2c_ops tegra_i2c_ops = {
511 .xfer = tegra_i2c_xfer,
512 .probe_chip = tegra_i2c_probe_chip,
513 .set_bus_speed = tegra_i2c_set_bus_speed,
514};
515
Simon Glassb0e6ef42014-12-10 08:55:57 -0700516static const struct udevice_id tegra_i2c_ids[] = {
517 { .compatible = "nvidia,tegra114-i2c", .data = TYPE_114 },
Peter Robinson0d2105a2022-05-03 09:32:54 +0100518 { .compatible = "nvidia,tegra124-i2c", .data = TYPE_114 },
Simon Glassb0e6ef42014-12-10 08:55:57 -0700519 { .compatible = "nvidia,tegra20-i2c", .data = TYPE_STD },
520 { .compatible = "nvidia,tegra20-i2c-dvc", .data = TYPE_DVC },
521 { }
522};
Simon Glasse31c1e52012-04-02 13:19:01 +0000523
Simon Glassb0e6ef42014-12-10 08:55:57 -0700524U_BOOT_DRIVER(i2c_tegra) = {
525 .name = "i2c_tegra",
526 .id = UCLASS_I2C,
527 .of_match = tegra_i2c_ids,
Simon Glassb0e6ef42014-12-10 08:55:57 -0700528 .probe = tegra_i2c_probe,
Simon Glass41575d82020-12-03 16:55:17 -0700529 .priv_auto = sizeof(struct i2c_bus),
Simon Glassb0e6ef42014-12-10 08:55:57 -0700530 .ops = &tegra_i2c_ops,
531};