blob: 257b72f0f7cdf71b40afc10a2d18a9d48fdf700d [file] [log] [blame]
Yen Lin96a78ac2012-03-06 19:00:23 +00001/*
2 * Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
3 * Copyright (c) 2010-2011 NVIDIA Corporation
4 * NVIDIA Corporation <www.nvidia.com>
5 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02006 * SPDX-License-Identifier: GPL-2.0+
Yen Lin96a78ac2012-03-06 19:00:23 +00007 */
8
9#include <common.h>
10#include <fdtdec.h>
11#include <i2c.h>
12#include <asm/io.h>
Yen Lin96a78ac2012-03-06 19:00:23 +000013#include <asm/arch/clock.h>
14#include <asm/arch/funcmux.h>
15#include <asm/arch/gpio.h>
16#include <asm/arch/pinmux.h>
Tom Warren150c2492012-09-19 15:50:56 -070017#include <asm/arch-tegra/clk_rst.h>
18#include <asm/arch-tegra/tegra_i2c.h>
Yen Lin96a78ac2012-03-06 19:00:23 +000019
20DECLARE_GLOBAL_DATA_PTR;
21
Yen Lin96a78ac2012-03-06 19:00:23 +000022/* Information about i2c controller */
23struct i2c_bus {
24 int id;
25 enum periph_id periph_id;
26 int speed;
27 int pinmux_config;
28 struct i2c_control *control;
29 struct i2c_ctlr *regs;
30 int is_dvc; /* DVC type, rather than I2C */
Tom Warrene32624e2013-02-08 07:25:30 +000031 int is_scs; /* single clock source (T114+) */
Yen Lin96a78ac2012-03-06 19:00:23 +000032 int inited; /* bus is inited */
33};
34
35static struct i2c_bus i2c_controllers[TEGRA_I2C_NUM_CONTROLLERS];
36
37static void set_packet_mode(struct i2c_bus *i2c_bus)
38{
39 u32 config;
40
41 config = I2C_CNFG_NEW_MASTER_FSM_MASK | I2C_CNFG_PACKET_MODE_MASK;
42
43 if (i2c_bus->is_dvc) {
44 struct dvc_ctlr *dvc = (struct dvc_ctlr *)i2c_bus->regs;
45
46 writel(config, &dvc->cnfg);
47 } else {
48 writel(config, &i2c_bus->regs->cnfg);
49 /*
50 * program I2C_SL_CNFG.NEWSL to ENABLE. This fixes probe
51 * issues, i.e., some slaves may be wrongly detected.
52 */
53 setbits_le32(&i2c_bus->regs->sl_cnfg, I2C_SL_CNFG_NEWSL_MASK);
54 }
55}
56
57static void i2c_reset_controller(struct i2c_bus *i2c_bus)
58{
59 /* Reset I2C controller. */
60 reset_periph(i2c_bus->periph_id, 1);
61
62 /* re-program config register to packet mode */
63 set_packet_mode(i2c_bus);
64}
65
66static void i2c_init_controller(struct i2c_bus *i2c_bus)
67{
68 /*
69 * Use PLLP - DP-04508-001_v06 datasheet indicates a divisor of 8
70 * here, in section 23.3.1, but in fact we seem to need a factor of
71 * 16 to get the right frequency.
72 */
73 clock_start_periph_pll(i2c_bus->periph_id, CLOCK_ID_PERIPH,
Tom Warrene32624e2013-02-08 07:25:30 +000074 i2c_bus->speed * 2 * 8);
75
76 if (i2c_bus->is_scs) {
77 /*
78 * T114 I2C went to a single clock source for standard/fast and
79 * HS clock speeds. The new clock rate setting calculation is:
80 * SCL = CLK_SOURCE.I2C /
81 * (CLK_MULT_STD_FAST_MODE * (I2C_CLK_DIV_STD_FAST_MODE+1) *
82 * I2C FREQUENCY DIVISOR) as per the T114 TRM (sec 30.3.1).
83 *
84 * NOTE: We do this here, after the initial clock/pll start,
85 * because if we read the clk_div reg before the controller
86 * is running, we hang, and we need it for the new calc.
87 */
88 int clk_div_stdfst_mode = readl(&i2c_bus->regs->clk_div) >> 16;
89 debug("%s: CLK_DIV_STD_FAST_MODE setting = %d\n", __func__,
90 clk_div_stdfst_mode);
91
92 clock_start_periph_pll(i2c_bus->periph_id, CLOCK_ID_PERIPH,
93 CLK_MULT_STD_FAST_MODE * (clk_div_stdfst_mode + 1) *
94 i2c_bus->speed * 2);
95 }
Yen Lin96a78ac2012-03-06 19:00:23 +000096
97 /* Reset I2C controller. */
98 i2c_reset_controller(i2c_bus);
99
100 /* Configure I2C controller. */
101 if (i2c_bus->is_dvc) { /* only for DVC I2C */
102 struct dvc_ctlr *dvc = (struct dvc_ctlr *)i2c_bus->regs;
103
104 setbits_le32(&dvc->ctrl3, DVC_CTRL_REG3_I2C_HW_SW_PROG_MASK);
105 }
106
107 funcmux_select(i2c_bus->periph_id, i2c_bus->pinmux_config);
108}
109
110static void send_packet_headers(
111 struct i2c_bus *i2c_bus,
112 struct i2c_trans_info *trans,
Stephen Warren68049a02014-06-25 10:57:27 -0600113 u32 packet_id,
114 bool end_with_repeated_start)
Yen Lin96a78ac2012-03-06 19:00:23 +0000115{
116 u32 data;
117
118 /* prepare header1: Header size = 0 Protocol = I2C, pktType = 0 */
119 data = PROTOCOL_TYPE_I2C << PKT_HDR1_PROTOCOL_SHIFT;
120 data |= packet_id << PKT_HDR1_PKT_ID_SHIFT;
121 data |= i2c_bus->id << PKT_HDR1_CTLR_ID_SHIFT;
122 writel(data, &i2c_bus->control->tx_fifo);
123 debug("pkt header 1 sent (0x%x)\n", data);
124
125 /* prepare header2 */
126 data = (trans->num_bytes - 1) << PKT_HDR2_PAYLOAD_SIZE_SHIFT;
127 writel(data, &i2c_bus->control->tx_fifo);
128 debug("pkt header 2 sent (0x%x)\n", data);
129
130 /* prepare IO specific header: configure the slave address */
131 data = trans->address << PKT_HDR3_SLAVE_ADDR_SHIFT;
132
133 /* Enable Read if it is not a write transaction */
134 if (!(trans->flags & I2C_IS_WRITE))
135 data |= PKT_HDR3_READ_MODE_MASK;
Stephen Warren68049a02014-06-25 10:57:27 -0600136 if (end_with_repeated_start)
137 data |= PKT_HDR3_REPEAT_START_MASK;
Yen Lin96a78ac2012-03-06 19:00:23 +0000138
139 /* Write I2C specific header */
140 writel(data, &i2c_bus->control->tx_fifo);
141 debug("pkt header 3 sent (0x%x)\n", data);
142}
143
144static int wait_for_tx_fifo_empty(struct i2c_control *control)
145{
146 u32 count;
147 int timeout_us = I2C_TIMEOUT_USEC;
148
149 while (timeout_us >= 0) {
150 count = (readl(&control->fifo_status) & TX_FIFO_EMPTY_CNT_MASK)
151 >> TX_FIFO_EMPTY_CNT_SHIFT;
152 if (count == I2C_FIFO_DEPTH)
153 return 1;
154 udelay(10);
155 timeout_us -= 10;
156 }
157
158 return 0;
159}
160
161static int wait_for_rx_fifo_notempty(struct i2c_control *control)
162{
163 u32 count;
164 int timeout_us = I2C_TIMEOUT_USEC;
165
166 while (timeout_us >= 0) {
167 count = (readl(&control->fifo_status) & TX_FIFO_FULL_CNT_MASK)
168 >> TX_FIFO_FULL_CNT_SHIFT;
169 if (count)
170 return 1;
171 udelay(10);
172 timeout_us -= 10;
173 }
174
175 return 0;
176}
177
178static int wait_for_transfer_complete(struct i2c_control *control)
179{
180 int int_status;
181 int timeout_us = I2C_TIMEOUT_USEC;
182
183 while (timeout_us >= 0) {
184 int_status = readl(&control->int_status);
185 if (int_status & I2C_INT_NO_ACK_MASK)
186 return -int_status;
187 if (int_status & I2C_INT_ARBITRATION_LOST_MASK)
188 return -int_status;
189 if (int_status & I2C_INT_XFER_COMPLETE_MASK)
190 return 0;
191
192 udelay(10);
193 timeout_us -= 10;
194 }
195
196 return -1;
197}
198
199static int send_recv_packets(struct i2c_bus *i2c_bus,
200 struct i2c_trans_info *trans)
201{
202 struct i2c_control *control = i2c_bus->control;
203 u32 int_status;
204 u32 words;
205 u8 *dptr;
206 u32 local;
207 uchar last_bytes;
208 int error = 0;
209 int is_write = trans->flags & I2C_IS_WRITE;
210
211 /* clear status from previous transaction, XFER_COMPLETE, NOACK, etc. */
212 int_status = readl(&control->int_status);
213 writel(int_status, &control->int_status);
214
Stephen Warren68049a02014-06-25 10:57:27 -0600215 send_packet_headers(i2c_bus, trans, 1,
216 trans->flags & I2C_USE_REPEATED_START);
Yen Lin96a78ac2012-03-06 19:00:23 +0000217
218 words = DIV_ROUND_UP(trans->num_bytes, 4);
219 last_bytes = trans->num_bytes & 3;
220 dptr = trans->buf;
221
222 while (words) {
223 u32 *wptr = (u32 *)dptr;
224
225 if (is_write) {
226 /* deal with word alignment */
Stephen Warren981b14f2014-06-25 10:57:28 -0600227 if ((words == 1) && last_bytes) {
228 local = 0;
229 memcpy(&local, dptr, last_bytes);
230 } else if ((unsigned)dptr & 3) {
Yen Lin96a78ac2012-03-06 19:00:23 +0000231 memcpy(&local, dptr, sizeof(u32));
Yen Lin96a78ac2012-03-06 19:00:23 +0000232 } else {
Stephen Warren981b14f2014-06-25 10:57:28 -0600233 local = *wptr;
Yen Lin96a78ac2012-03-06 19:00:23 +0000234 }
Stephen Warren981b14f2014-06-25 10:57:28 -0600235 writel(local, &control->tx_fifo);
236 debug("pkt data sent (0x%x)\n", local);
Yen Lin96a78ac2012-03-06 19:00:23 +0000237 if (!wait_for_tx_fifo_empty(control)) {
238 error = -1;
239 goto exit;
240 }
241 } else {
242 if (!wait_for_rx_fifo_notempty(control)) {
243 error = -1;
244 goto exit;
245 }
246 /*
247 * for the last word, we read into our local buffer,
248 * in case that caller did not provide enough buffer.
249 */
250 local = readl(&control->rx_fifo);
251 if ((words == 1) && last_bytes)
252 memcpy(dptr, (char *)&local, last_bytes);
253 else if ((unsigned)dptr & 3)
254 memcpy(dptr, &local, sizeof(u32));
255 else
256 *wptr = local;
257 debug("pkt data received (0x%x)\n", local);
258 }
259 words--;
260 dptr += sizeof(u32);
261 }
262
263 if (wait_for_transfer_complete(control)) {
264 error = -1;
265 goto exit;
266 }
267 return 0;
268exit:
269 /* error, reset the controller. */
270 i2c_reset_controller(i2c_bus);
271
272 return error;
273}
274
Simon Glassd84eb852012-10-30 07:28:52 +0000275static int tegra_i2c_write_data(struct i2c_bus *bus, u32 addr, u8 *data,
Stephen Warren68049a02014-06-25 10:57:27 -0600276 u32 len, bool end_with_repeated_start)
Yen Lin96a78ac2012-03-06 19:00:23 +0000277{
278 int error;
279 struct i2c_trans_info trans_info;
280
281 trans_info.address = addr;
282 trans_info.buf = data;
283 trans_info.flags = I2C_IS_WRITE;
Stephen Warren68049a02014-06-25 10:57:27 -0600284 if (end_with_repeated_start)
285 trans_info.flags |= I2C_USE_REPEATED_START;
Yen Lin96a78ac2012-03-06 19:00:23 +0000286 trans_info.num_bytes = len;
287 trans_info.is_10bit_address = 0;
288
Simon Glassd84eb852012-10-30 07:28:52 +0000289 error = send_recv_packets(bus, &trans_info);
Yen Lin96a78ac2012-03-06 19:00:23 +0000290 if (error)
Tom Warren29f3e3f2012-09-04 17:00:24 -0700291 debug("tegra_i2c_write_data: Error (%d) !!!\n", error);
Yen Lin96a78ac2012-03-06 19:00:23 +0000292
293 return error;
294}
295
Simon Glassd84eb852012-10-30 07:28:52 +0000296static int tegra_i2c_read_data(struct i2c_bus *bus, u32 addr, u8 *data,
297 u32 len)
Yen Lin96a78ac2012-03-06 19:00:23 +0000298{
299 int error;
300 struct i2c_trans_info trans_info;
301
302 trans_info.address = addr | 1;
303 trans_info.buf = data;
304 trans_info.flags = 0;
305 trans_info.num_bytes = len;
306 trans_info.is_10bit_address = 0;
307
Simon Glassd84eb852012-10-30 07:28:52 +0000308 error = send_recv_packets(bus, &trans_info);
Yen Lin96a78ac2012-03-06 19:00:23 +0000309 if (error)
Tom Warren29f3e3f2012-09-04 17:00:24 -0700310 debug("tegra_i2c_read_data: Error (%d) !!!\n", error);
Yen Lin96a78ac2012-03-06 19:00:23 +0000311
312 return error;
313}
314
315#ifndef CONFIG_OF_CONTROL
316#error "Please enable device tree support to use this driver"
317#endif
318
Simon Glassd84eb852012-10-30 07:28:52 +0000319/**
320 * Check that a bus number is valid and return a pointer to it
321 *
322 * @param bus_num Bus number to check / return
323 * @return pointer to bus, if valid, else NULL
324 */
Simon Glass1f2ba722012-10-30 07:28:53 +0000325static struct i2c_bus *tegra_i2c_get_bus(struct i2c_adapter *adap)
Yen Lin96a78ac2012-03-06 19:00:23 +0000326{
Simon Glassd84eb852012-10-30 07:28:52 +0000327 struct i2c_bus *bus;
328
Simon Glass1f2ba722012-10-30 07:28:53 +0000329 bus = &i2c_controllers[adap->hwadapnr];
Simon Glassd84eb852012-10-30 07:28:52 +0000330 if (!bus->inited) {
Simon Glass1f2ba722012-10-30 07:28:53 +0000331 debug("%s: Bus %u not available\n", __func__, adap->hwadapnr);
Simon Glassd84eb852012-10-30 07:28:52 +0000332 return NULL;
333 }
334
335 return bus;
Yen Lin96a78ac2012-03-06 19:00:23 +0000336}
337
Simon Glass1f2ba722012-10-30 07:28:53 +0000338static unsigned int tegra_i2c_set_bus_speed(struct i2c_adapter *adap,
339 unsigned int speed)
Yen Lin96a78ac2012-03-06 19:00:23 +0000340{
Simon Glassd84eb852012-10-30 07:28:52 +0000341 struct i2c_bus *bus;
Yen Lin96a78ac2012-03-06 19:00:23 +0000342
Simon Glass1f2ba722012-10-30 07:28:53 +0000343 bus = tegra_i2c_get_bus(adap);
Simon Glassd84eb852012-10-30 07:28:52 +0000344 if (!bus)
345 return 0;
346 bus->speed = speed;
347 i2c_init_controller(bus);
Yen Lin96a78ac2012-03-06 19:00:23 +0000348
349 return 0;
350}
351
352static int i2c_get_config(const void *blob, int node, struct i2c_bus *i2c_bus)
353{
354 i2c_bus->regs = (struct i2c_ctlr *)fdtdec_get_addr(blob, node, "reg");
355
356 /*
357 * We don't have a binding for pinmux yet. Leave it out for now. So
358 * far no one needs anything other than the default.
359 */
360 i2c_bus->pinmux_config = FUNCMUX_DEFAULT;
361 i2c_bus->speed = fdtdec_get_int(blob, node, "clock-frequency", 0);
362 i2c_bus->periph_id = clock_decode_periph_id(blob, node);
363
364 /*
365 * We can't specify the pinmux config in the fdt, so I2C2 will not
366 * work on Seaboard. It normally has no devices on it anyway.
367 * You could add in this little hack if you need to use it.
368 * The correct solution is a pinmux binding in the fdt.
369 *
370 * if (i2c_bus->periph_id == PERIPH_ID_I2C2)
371 * i2c_bus->pinmux_config = FUNCMUX_I2C2_PTA;
372 */
373 if (i2c_bus->periph_id == -1)
374 return -FDT_ERR_NOTFOUND;
375
376 return 0;
377}
378
379/*
380 * Process a list of nodes, adding them to our list of I2C ports.
381 *
382 * @param blob fdt blob
383 * @param node_list list of nodes to process (any <=0 are ignored)
384 * @param count number of nodes to process
385 * @param is_dvc 1 if these are DVC ports, 0 if standard I2C
Tom Warrene32624e2013-02-08 07:25:30 +0000386 * @param is_scs 1 if this HW uses a single clock source (T114+)
Yen Lin96a78ac2012-03-06 19:00:23 +0000387 * @return 0 if ok, -1 on error
388 */
389static int process_nodes(const void *blob, int node_list[], int count,
Tom Warrene32624e2013-02-08 07:25:30 +0000390 int is_dvc, int is_scs)
Yen Lin96a78ac2012-03-06 19:00:23 +0000391{
392 struct i2c_bus *i2c_bus;
393 int i;
394
395 /* build the i2c_controllers[] for each controller */
396 for (i = 0; i < count; i++) {
397 int node = node_list[i];
398
399 if (node <= 0)
400 continue;
401
402 i2c_bus = &i2c_controllers[i];
403 i2c_bus->id = i;
404
405 if (i2c_get_config(blob, node, i2c_bus)) {
406 printf("i2c_init_board: failed to decode bus %d\n", i);
407 return -1;
408 }
409
Tom Warrene32624e2013-02-08 07:25:30 +0000410 i2c_bus->is_scs = is_scs;
411
Yen Lin96a78ac2012-03-06 19:00:23 +0000412 i2c_bus->is_dvc = is_dvc;
413 if (is_dvc) {
414 i2c_bus->control =
415 &((struct dvc_ctlr *)i2c_bus->regs)->control;
416 } else {
417 i2c_bus->control = &i2c_bus->regs->control;
418 }
419 debug("%s: controller bus %d at %p, periph_id %d, speed %d: ",
420 is_dvc ? "dvc" : "i2c", i, i2c_bus->regs,
421 i2c_bus->periph_id, i2c_bus->speed);
422 i2c_init_controller(i2c_bus);
423 debug("ok\n");
424 i2c_bus->inited = 1;
425
426 /* Mark position as used */
427 node_list[i] = -1;
428 }
429
430 return 0;
431}
432
433/* Sadly there is no error return from this function */
434void i2c_init_board(void)
435{
436 int node_list[TEGRA_I2C_NUM_CONTROLLERS];
437 const void *blob = gd->fdt_blob;
438 int count;
439
Tom Warrene32624e2013-02-08 07:25:30 +0000440 /* First check for newer (T114+) I2C ports */
441 count = fdtdec_find_aliases_for_id(blob, "i2c",
442 COMPAT_NVIDIA_TEGRA114_I2C, node_list,
443 TEGRA_I2C_NUM_CONTROLLERS);
444 if (process_nodes(blob, node_list, count, 0, 1))
445 return;
446
447 /* Now get the older (T20/T30) normal I2C ports */
Yen Lin96a78ac2012-03-06 19:00:23 +0000448 count = fdtdec_find_aliases_for_id(blob, "i2c",
449 COMPAT_NVIDIA_TEGRA20_I2C, node_list,
450 TEGRA_I2C_NUM_CONTROLLERS);
Tom Warrene32624e2013-02-08 07:25:30 +0000451 if (process_nodes(blob, node_list, count, 0, 0))
Yen Lin96a78ac2012-03-06 19:00:23 +0000452 return;
453
454 /* Now look for dvc ports */
455 count = fdtdec_add_aliases_for_id(blob, "i2c",
456 COMPAT_NVIDIA_TEGRA20_DVC, node_list,
457 TEGRA_I2C_NUM_CONTROLLERS);
Tom Warrene32624e2013-02-08 07:25:30 +0000458 if (process_nodes(blob, node_list, count, 1, 0))
Yen Lin96a78ac2012-03-06 19:00:23 +0000459 return;
460}
461
Simon Glass1f2ba722012-10-30 07:28:53 +0000462static void tegra_i2c_init(struct i2c_adapter *adap, int speed, int slaveaddr)
Yen Lin96a78ac2012-03-06 19:00:23 +0000463{
Simon Glasscdce8892013-08-06 22:52:25 -0700464 /* No i2c support prior to relocation */
465 if (!(gd->flags & GD_FLG_RELOC))
466 return;
467
Yen Lin96a78ac2012-03-06 19:00:23 +0000468 /* This will override the speed selected in the fdt for that port */
469 debug("i2c_init(speed=%u, slaveaddr=0x%x)\n", speed, slaveaddr);
470 i2c_set_bus_speed(speed);
471}
472
473/* i2c write version without the register address */
Stephen Warren68049a02014-06-25 10:57:27 -0600474int i2c_write_data(struct i2c_bus *bus, uchar chip, uchar *buffer, int len,
475 bool end_with_repeated_start)
Yen Lin96a78ac2012-03-06 19:00:23 +0000476{
477 int rc;
478
479 debug("i2c_write_data: chip=0x%x, len=0x%x\n", chip, len);
480 debug("write_data: ");
481 /* use rc for counter */
482 for (rc = 0; rc < len; ++rc)
483 debug(" 0x%02x", buffer[rc]);
484 debug("\n");
485
486 /* Shift 7-bit address over for lower-level i2c functions */
Stephen Warren68049a02014-06-25 10:57:27 -0600487 rc = tegra_i2c_write_data(bus, chip << 1, buffer, len,
488 end_with_repeated_start);
Yen Lin96a78ac2012-03-06 19:00:23 +0000489 if (rc)
490 debug("i2c_write_data(): rc=%d\n", rc);
491
492 return rc;
493}
494
495/* i2c read version without the register address */
Simon Glassd84eb852012-10-30 07:28:52 +0000496int i2c_read_data(struct i2c_bus *bus, uchar chip, uchar *buffer, int len)
Yen Lin96a78ac2012-03-06 19:00:23 +0000497{
498 int rc;
499
500 debug("inside i2c_read_data():\n");
501 /* Shift 7-bit address over for lower-level i2c functions */
Simon Glassd84eb852012-10-30 07:28:52 +0000502 rc = tegra_i2c_read_data(bus, chip << 1, buffer, len);
Yen Lin96a78ac2012-03-06 19:00:23 +0000503 if (rc) {
504 debug("i2c_read_data(): rc=%d\n", rc);
505 return rc;
506 }
507
508 debug("i2c_read_data: ");
509 /* reuse rc for counter*/
510 for (rc = 0; rc < len; ++rc)
511 debug(" 0x%02x", buffer[rc]);
512 debug("\n");
513
514 return 0;
515}
516
517/* Probe to see if a chip is present. */
Simon Glass1f2ba722012-10-30 07:28:53 +0000518static int tegra_i2c_probe(struct i2c_adapter *adap, uchar chip)
Yen Lin96a78ac2012-03-06 19:00:23 +0000519{
Simon Glassd84eb852012-10-30 07:28:52 +0000520 struct i2c_bus *bus;
Yen Lin96a78ac2012-03-06 19:00:23 +0000521 int rc;
522 uchar reg;
523
524 debug("i2c_probe: addr=0x%x\n", chip);
Simon Glass1f2ba722012-10-30 07:28:53 +0000525 bus = tegra_i2c_get_bus(adap);
Simon Glassd84eb852012-10-30 07:28:52 +0000526 if (!bus)
527 return 1;
Yen Lin96a78ac2012-03-06 19:00:23 +0000528 reg = 0;
Stephen Warren68049a02014-06-25 10:57:27 -0600529 rc = i2c_write_data(bus, chip, &reg, 1, false);
Yen Lin96a78ac2012-03-06 19:00:23 +0000530 if (rc) {
531 debug("Error probing 0x%x.\n", chip);
532 return 1;
533 }
534 return 0;
535}
536
537static int i2c_addr_ok(const uint addr, const int alen)
538{
539 /* We support 7 or 10 bit addresses, so one or two bytes each */
540 return alen == 1 || alen == 2;
541}
542
543/* Read bytes */
Simon Glass1f2ba722012-10-30 07:28:53 +0000544static int tegra_i2c_read(struct i2c_adapter *adap, uchar chip, uint addr,
545 int alen, uchar *buffer, int len)
Yen Lin96a78ac2012-03-06 19:00:23 +0000546{
Simon Glassd84eb852012-10-30 07:28:52 +0000547 struct i2c_bus *bus;
Yen Lin96a78ac2012-03-06 19:00:23 +0000548 uint offset;
549 int i;
550
Stephen Warrenad3091a2014-06-25 10:57:29 -0600551 debug("i2c_read: chip=0x%x, addr=0x%x, alen=0x%x len=0x%x\n",
552 chip, addr, alen, len);
Simon Glass1f2ba722012-10-30 07:28:53 +0000553 bus = tegra_i2c_get_bus(adap);
Simon Glassd84eb852012-10-30 07:28:52 +0000554 if (!bus)
555 return 1;
Yen Lin96a78ac2012-03-06 19:00:23 +0000556 if (!i2c_addr_ok(addr, alen)) {
557 debug("i2c_read: Bad address %x.%d.\n", addr, alen);
558 return 1;
559 }
560 for (offset = 0; offset < len; offset++) {
561 if (alen) {
562 uchar data[alen];
563 for (i = 0; i < alen; i++) {
564 data[alen - i - 1] =
565 (addr + offset) >> (8 * i);
566 }
Stephen Warren68049a02014-06-25 10:57:27 -0600567 if (i2c_write_data(bus, chip, data, alen, true)) {
Yen Lin96a78ac2012-03-06 19:00:23 +0000568 debug("i2c_read: error sending (0x%x)\n",
569 addr);
570 return 1;
571 }
572 }
Simon Glassd84eb852012-10-30 07:28:52 +0000573 if (i2c_read_data(bus, chip, buffer + offset, 1)) {
Yen Lin96a78ac2012-03-06 19:00:23 +0000574 debug("i2c_read: error reading (0x%x)\n", addr);
575 return 1;
576 }
577 }
578
579 return 0;
580}
581
582/* Write bytes */
Simon Glass1f2ba722012-10-30 07:28:53 +0000583static int tegra_i2c_write(struct i2c_adapter *adap, uchar chip, uint addr,
584 int alen, uchar *buffer, int len)
Yen Lin96a78ac2012-03-06 19:00:23 +0000585{
Simon Glassd84eb852012-10-30 07:28:52 +0000586 struct i2c_bus *bus;
Yen Lin96a78ac2012-03-06 19:00:23 +0000587 uint offset;
588 int i;
589
Stephen Warrenad3091a2014-06-25 10:57:29 -0600590 debug("i2c_write: chip=0x%x, addr=0x%x, alen=0x%x len=0x%x\n",
591 chip, addr, alen, len);
Simon Glass1f2ba722012-10-30 07:28:53 +0000592 bus = tegra_i2c_get_bus(adap);
Simon Glassd84eb852012-10-30 07:28:52 +0000593 if (!bus)
594 return 1;
Yen Lin96a78ac2012-03-06 19:00:23 +0000595 if (!i2c_addr_ok(addr, alen)) {
596 debug("i2c_write: Bad address %x.%d.\n", addr, alen);
597 return 1;
598 }
599 for (offset = 0; offset < len; offset++) {
600 uchar data[alen + 1];
601 for (i = 0; i < alen; i++)
602 data[alen - i - 1] = (addr + offset) >> (8 * i);
603 data[alen] = buffer[offset];
Stephen Warren68049a02014-06-25 10:57:27 -0600604 if (i2c_write_data(bus, chip, data, alen + 1, false)) {
Yen Lin96a78ac2012-03-06 19:00:23 +0000605 debug("i2c_write: error sending (0x%x)\n", addr);
606 return 1;
607 }
608 }
609
610 return 0;
611}
612
Simon Glasse31c1e52012-04-02 13:19:01 +0000613int tegra_i2c_get_dvc_bus_num(void)
614{
615 int i;
616
Simon Glass1f2ba722012-10-30 07:28:53 +0000617 for (i = 0; i < TEGRA_I2C_NUM_CONTROLLERS; i++) {
Simon Glasse31c1e52012-04-02 13:19:01 +0000618 struct i2c_bus *bus = &i2c_controllers[i];
619
620 if (bus->inited && bus->is_dvc)
621 return i;
622 }
623
624 return -1;
625}
Simon Glass1f2ba722012-10-30 07:28:53 +0000626
627/*
628 * Register soft i2c adapters
629 */
630U_BOOT_I2C_ADAP_COMPLETE(tegra0, tegra_i2c_init, tegra_i2c_probe,
631 tegra_i2c_read, tegra_i2c_write,
632 tegra_i2c_set_bus_speed, 100000, 0, 0)
633U_BOOT_I2C_ADAP_COMPLETE(tegra1, tegra_i2c_init, tegra_i2c_probe,
634 tegra_i2c_read, tegra_i2c_write,
635 tegra_i2c_set_bus_speed, 100000, 0, 1)
636U_BOOT_I2C_ADAP_COMPLETE(tegra2, tegra_i2c_init, tegra_i2c_probe,
637 tegra_i2c_read, tegra_i2c_write,
638 tegra_i2c_set_bus_speed, 100000, 0, 2)
639U_BOOT_I2C_ADAP_COMPLETE(tegra3, tegra_i2c_init, tegra_i2c_probe,
640 tegra_i2c_read, tegra_i2c_write,
641 tegra_i2c_set_bus_speed, 100000, 0, 3)
Alban Bedelac2ff532013-11-13 17:27:19 +0100642#if TEGRA_I2C_NUM_CONTROLLERS > 4
643U_BOOT_I2C_ADAP_COMPLETE(tegra4, tegra_i2c_init, tegra_i2c_probe,
644 tegra_i2c_read, tegra_i2c_write,
645 tegra_i2c_set_bus_speed, 100000, 0, 4)
646#endif