]> Git Repo - u-boot.git/blame - drivers/i2c/mv_i2c.c
dm: treewide: Rename auto_alloc_size members to be shorter
[u-boot.git] / drivers / i2c / mv_i2c.c
CommitLineData
83d290c5 1// SPDX-License-Identifier: GPL-2.0+
43d9616c
WD
2/*
3 * (C) Copyright 2000
4 * Paolo Scaffardi, AIRVENT SAM s.p.a - RIMINI(ITALY), [email protected]
5 *
6 * (C) Copyright 2000 Sysgo Real-Time Solutions, GmbH <www.elinos.com>
7 * Marius Groeger <[email protected]>
8 *
9 * (C) Copyright 2003 Pengutronix e.K.
10 * Robert Schwebel <[email protected]>
11 *
3df619ec
LW
12 * (C) Copyright 2011 Marvell Inc.
13 * Lei Wen <[email protected]>
14 *
43d9616c
WD
15 * Back ported to the 8xx platform (from the 8260 platform) by
16 * [email protected], 27-Jan-01.
17 */
18
43d9616c 19#include <common.h>
0c0f719a 20#include <dm.h>
43d9616c 21#include <i2c.h>
f7ae49fc 22#include <log.h>
7b46ee52 23#include <asm/io.h>
c05ed00a 24#include <linux/delay.h>
3df619ec 25#include "mv_i2c.h"
43d9616c 26
43d9616c 27/* All transfers are described by this data structure */
fffff726 28struct mv_i2c_msg {
43d9616c 29 u8 condition;
8bde7f77
WD
30 u8 acknack;
31 u8 direction;
43d9616c
WD
32 u8 data;
33};
34
0c0f719a
SR
35#ifdef CONFIG_ARMADA_3700
36/* Armada 3700 has no padding between the registers */
37struct mv_i2c {
38 u32 ibmr;
39 u32 idbr;
40 u32 icr;
41 u32 isr;
42 u32 isar;
43};
44#else
3df619ec
LW
45struct mv_i2c {
46 u32 ibmr;
47 u32 pad0;
48 u32 idbr;
49 u32 pad1;
50 u32 icr;
51 u32 pad2;
52 u32 isr;
53 u32 pad3;
54 u32 isar;
55};
0c0f719a
SR
56#endif
57
58/*
59 * Dummy implementation that can be overwritten by a board
60 * specific function
61 */
62__weak void i2c_clk_enable(void)
63{
64}
3df619ec 65
68432c27 66/*
3df619ec 67 * i2c_reset: - reset the host controller
43d9616c
WD
68 *
69 */
7b46ee52 70static void i2c_reset(struct mv_i2c *base)
43d9616c 71{
9ad5a007
SR
72 u32 icr_mode;
73
74 /* Save bus mode (standard or fast speed) for later use */
75 icr_mode = readl(&base->icr) & ICR_MODE_MASK;
3df619ec
LW
76 writel(readl(&base->icr) & ~ICR_IUE, &base->icr); /* disable unit */
77 writel(readl(&base->icr) | ICR_UR, &base->icr); /* reset the unit */
8bde7f77 78 udelay(100);
3df619ec
LW
79 writel(readl(&base->icr) & ~ICR_IUE, &base->icr); /* disable unit */
80
81 i2c_clk_enable();
82
83 writel(CONFIG_SYS_I2C_SLAVE, &base->isar); /* set our slave address */
9ad5a007
SR
84 /* set control reg values */
85 writel(I2C_ICR_INIT | icr_mode, &base->icr);
3df619ec
LW
86 writel(I2C_ISR_INIT, &base->isr); /* set clear interrupt bits */
87 writel(readl(&base->icr) | ICR_IUE, &base->icr); /* enable unit */
8bde7f77 88 udelay(100);
43d9616c
WD
89}
90
68432c27 91/*
8bde7f77 92 * i2c_isr_set_cleared: - wait until certain bits of the I2C status register
43d9616c
WD
93 * are set and cleared
94 *
ba70d6a4 95 * @return: 1 in case of success, 0 means timeout (no match within 10 ms).
43d9616c 96 */
7b46ee52 97static int i2c_isr_set_cleared(struct mv_i2c *base, unsigned long set_mask,
68432c27 98 unsigned long cleared_mask)
43d9616c 99{
3df619ec 100 int timeout = 1000, isr;
43d9616c 101
3df619ec
LW
102 do {
103 isr = readl(&base->isr);
68432c27
LW
104 udelay(10);
105 if (timeout-- < 0)
106 return 0;
3df619ec
LW
107 } while (((isr & set_mask) != set_mask)
108 || ((isr & cleared_mask) != 0));
43d9616c 109
8bde7f77 110 return 1;
43d9616c
WD
111}
112
68432c27 113/*
43d9616c
WD
114 * i2c_transfer: - Transfer one byte over the i2c bus
115 *
8bde7f77
WD
116 * This function can tranfer a byte over the i2c bus in both directions.
117 * It is used by the public API functions.
43d9616c
WD
118 *
119 * @return: 0: transfer successful
120 * -1: message is empty
121 * -2: transmit timeout
122 * -3: ACK missing
123 * -4: receive timeout
124 * -5: illegal parameters
125 * -6: bus is busy and couldn't be aquired
8bde7f77 126 */
7b46ee52 127static int i2c_transfer(struct mv_i2c *base, struct mv_i2c_msg *msg)
43d9616c
WD
128{
129 int ret;
130
8bde7f77 131 if (!msg)
43d9616c
WD
132 goto transfer_error_msg_empty;
133
68432c27 134 switch (msg->direction) {
43d9616c 135 case I2C_WRITE:
43d9616c 136 /* check if bus is not busy */
7b46ee52 137 if (!i2c_isr_set_cleared(base, 0, ISR_IBB))
43d9616c
WD
138 goto transfer_error_bus_busy;
139
140 /* start transmission */
3df619ec
LW
141 writel(readl(&base->icr) & ~ICR_START, &base->icr);
142 writel(readl(&base->icr) & ~ICR_STOP, &base->icr);
143 writel(msg->data, &base->idbr);
3ba8bf7c 144 if (msg->condition == I2C_COND_START)
3df619ec 145 writel(readl(&base->icr) | ICR_START, &base->icr);
3ba8bf7c 146 if (msg->condition == I2C_COND_STOP)
3df619ec 147 writel(readl(&base->icr) | ICR_STOP, &base->icr);
3ba8bf7c 148 if (msg->acknack == I2C_ACKNAK_SENDNAK)
3df619ec 149 writel(readl(&base->icr) | ICR_ACKNAK, &base->icr);
3ba8bf7c 150 if (msg->acknack == I2C_ACKNAK_SENDACK)
3df619ec
LW
151 writel(readl(&base->icr) & ~ICR_ACKNAK, &base->icr);
152 writel(readl(&base->icr) & ~ICR_ALDIE, &base->icr);
153 writel(readl(&base->icr) | ICR_TB, &base->icr);
43d9616c
WD
154
155 /* transmit register empty? */
7b46ee52 156 if (!i2c_isr_set_cleared(base, ISR_ITE, 0))
43d9616c
WD
157 goto transfer_error_transmit_timeout;
158
159 /* clear 'transmit empty' state */
3df619ec 160 writel(readl(&base->isr) | ISR_ITE, &base->isr);
43d9616c
WD
161
162 /* wait for ACK from slave */
163 if (msg->acknack == I2C_ACKNAK_WAITACK)
7b46ee52 164 if (!i2c_isr_set_cleared(base, 0, ISR_ACKNAK))
43d9616c
WD
165 goto transfer_error_ack_missing;
166 break;
167
168 case I2C_READ:
169
170 /* check if bus is not busy */
7b46ee52 171 if (!i2c_isr_set_cleared(base, 0, ISR_IBB))
43d9616c
WD
172 goto transfer_error_bus_busy;
173
174 /* start receive */
3df619ec
LW
175 writel(readl(&base->icr) & ~ICR_START, &base->icr);
176 writel(readl(&base->icr) & ~ICR_STOP, &base->icr);
3ba8bf7c 177 if (msg->condition == I2C_COND_START)
3df619ec 178 writel(readl(&base->icr) | ICR_START, &base->icr);
3ba8bf7c 179 if (msg->condition == I2C_COND_STOP)
3df619ec 180 writel(readl(&base->icr) | ICR_STOP, &base->icr);
3ba8bf7c 181 if (msg->acknack == I2C_ACKNAK_SENDNAK)
3df619ec 182 writel(readl(&base->icr) | ICR_ACKNAK, &base->icr);
3ba8bf7c 183 if (msg->acknack == I2C_ACKNAK_SENDACK)
3df619ec
LW
184 writel(readl(&base->icr) & ~ICR_ACKNAK, &base->icr);
185 writel(readl(&base->icr) & ~ICR_ALDIE, &base->icr);
186 writel(readl(&base->icr) | ICR_TB, &base->icr);
43d9616c
WD
187
188 /* receive register full? */
7b46ee52 189 if (!i2c_isr_set_cleared(base, ISR_IRF, 0))
8bde7f77 190 goto transfer_error_receive_timeout;
43d9616c 191
3df619ec 192 msg->data = readl(&base->idbr);
43d9616c
WD
193
194 /* clear 'receive empty' state */
3df619ec 195 writel(readl(&base->isr) | ISR_IRF, &base->isr);
43d9616c 196 break;
43d9616c 197 default:
43d9616c 198 goto transfer_error_illegal_param;
43d9616c
WD
199 }
200
8bde7f77 201 return 0;
43d9616c 202
8bde7f77 203transfer_error_msg_empty:
8eff909a
SR
204 debug("i2c_transfer: error: 'msg' is empty\n");
205 ret = -1;
206 goto i2c_transfer_finish;
43d9616c
WD
207
208transfer_error_transmit_timeout:
8eff909a
SR
209 debug("i2c_transfer: error: transmit timeout\n");
210 ret = -2;
211 goto i2c_transfer_finish;
43d9616c
WD
212
213transfer_error_ack_missing:
8eff909a
SR
214 debug("i2c_transfer: error: ACK missing\n");
215 ret = -3;
216 goto i2c_transfer_finish;
43d9616c
WD
217
218transfer_error_receive_timeout:
8eff909a
SR
219 debug("i2c_transfer: error: receive timeout\n");
220 ret = -4;
221 goto i2c_transfer_finish;
43d9616c
WD
222
223transfer_error_illegal_param:
8eff909a
SR
224 debug("i2c_transfer: error: illegal parameters\n");
225 ret = -5;
226 goto i2c_transfer_finish;
43d9616c
WD
227
228transfer_error_bus_busy:
8eff909a
SR
229 debug("i2c_transfer: error: bus is busy\n");
230 ret = -6;
231 goto i2c_transfer_finish;
43d9616c
WD
232
233i2c_transfer_finish:
8eff909a 234 debug("i2c_transfer: ISR: 0x%04x\n", readl(&base->isr));
7b46ee52 235 i2c_reset(base);
8eff909a 236 return ret;
43d9616c
WD
237}
238
0c0f719a 239static int __i2c_read(struct mv_i2c *base, uchar chip, u8 *addr, int alen,
7b46ee52 240 uchar *buffer, int len)
43d9616c 241{
fffff726 242 struct mv_i2c_msg msg;
43d9616c 243
8eff909a 244 debug("i2c_read(chip=0x%02x, addr=0x%02x, alen=0x%02x, "
0c0f719a 245 "len=0x%02x)\n", chip, *addr, alen, len);
43d9616c 246
85f03f0e 247 if (len == 0) {
248 printf("reading zero byte is invalid\n");
249 return -EINVAL;
250 }
251
7b46ee52 252 i2c_reset(base);
43d9616c
WD
253
254 /* dummy chip address write */
8eff909a 255 debug("i2c_read: dummy chip address write\n");
43d9616c
WD
256 msg.condition = I2C_COND_START;
257 msg.acknack = I2C_ACKNAK_WAITACK;
258 msg.direction = I2C_WRITE;
68432c27
LW
259 msg.data = (chip << 1);
260 msg.data &= 0xFE;
7b46ee52 261 if (i2c_transfer(base, &msg))
68432c27 262 return -1;
8bde7f77 263
43d9616c 264 /*
8bde7f77
WD
265 * send memory address bytes;
266 * alen defines how much bytes we have to send.
43d9616c 267 */
43d9616c 268 while (--alen >= 0) {
0c0f719a
SR
269 debug("i2c_read: send address byte %02x (alen=%d)\n",
270 *addr, alen);
43d9616c
WD
271 msg.condition = I2C_COND_NORMAL;
272 msg.acknack = I2C_ACKNAK_WAITACK;
273 msg.direction = I2C_WRITE;
77466267 274 msg.data = addr[alen];
7b46ee52 275 if (i2c_transfer(base, &msg))
68432c27 276 return -1;
43d9616c 277 }
8bde7f77 278
43d9616c 279 /* start read sequence */
8eff909a 280 debug("i2c_read: start read sequence\n");
43d9616c
WD
281 msg.condition = I2C_COND_START;
282 msg.acknack = I2C_ACKNAK_WAITACK;
283 msg.direction = I2C_WRITE;
284 msg.data = (chip << 1);
285 msg.data |= 0x01;
7b46ee52 286 if (i2c_transfer(base, &msg))
68432c27 287 return -1;
43d9616c
WD
288
289 /* read bytes; send NACK at last byte */
290 while (len--) {
68432c27 291 if (len == 0) {
43d9616c
WD
292 msg.condition = I2C_COND_STOP;
293 msg.acknack = I2C_ACKNAK_SENDNAK;
294 } else {
295 msg.condition = I2C_COND_NORMAL;
296 msg.acknack = I2C_ACKNAK_SENDACK;
297 }
298
299 msg.direction = I2C_READ;
300 msg.data = 0x00;
7b46ee52 301 if (i2c_transfer(base, &msg))
68432c27 302 return -1;
43d9616c 303
ba70d6a4 304 *buffer = msg.data;
0c0f719a
SR
305 debug("i2c_read: reading byte (%p)=0x%02x\n",
306 buffer, *buffer);
ba70d6a4 307 buffer++;
43d9616c
WD
308 }
309
7b46ee52 310 i2c_reset(base);
43d9616c
WD
311
312 return 0;
313}
314
0c0f719a 315static int __i2c_write(struct mv_i2c *base, uchar chip, u8 *addr, int alen,
7b46ee52 316 uchar *buffer, int len)
43d9616c 317{
fffff726 318 struct mv_i2c_msg msg;
43d9616c 319
8eff909a 320 debug("i2c_write(chip=0x%02x, addr=0x%02x, alen=0x%02x, "
0c0f719a 321 "len=0x%02x)\n", chip, *addr, alen, len);
43d9616c 322
7b46ee52 323 i2c_reset(base);
43d9616c
WD
324
325 /* chip address write */
8eff909a 326 debug("i2c_write: chip address write\n");
43d9616c
WD
327 msg.condition = I2C_COND_START;
328 msg.acknack = I2C_ACKNAK_WAITACK;
329 msg.direction = I2C_WRITE;
68432c27
LW
330 msg.data = (chip << 1);
331 msg.data &= 0xFE;
7b46ee52 332 if (i2c_transfer(base, &msg))
68432c27 333 return -1;
8bde7f77 334
43d9616c 335 /*
8bde7f77
WD
336 * send memory address bytes;
337 * alen defines how much bytes we have to send.
43d9616c 338 */
43d9616c 339 while (--alen >= 0) {
0c0f719a
SR
340 debug("i2c_read: send address byte %02x (alen=%d)\n",
341 *addr, alen);
43d9616c
WD
342 msg.condition = I2C_COND_NORMAL;
343 msg.acknack = I2C_ACKNAK_WAITACK;
344 msg.direction = I2C_WRITE;
77466267 345 msg.data = addr[alen];
7b46ee52 346 if (i2c_transfer(base, &msg))
68432c27 347 return -1;
43d9616c 348 }
8bde7f77 349
43d9616c
WD
350 /* write bytes; send NACK at last byte */
351 while (len--) {
0c0f719a
SR
352 debug("i2c_write: writing byte (%p)=0x%02x\n",
353 buffer, *buffer);
43d9616c 354
68432c27 355 if (len == 0)
43d9616c
WD
356 msg.condition = I2C_COND_STOP;
357 else
358 msg.condition = I2C_COND_NORMAL;
359
360 msg.acknack = I2C_ACKNAK_WAITACK;
361 msg.direction = I2C_WRITE;
362 msg.data = *(buffer++);
8bde7f77 363
7b46ee52 364 if (i2c_transfer(base, &msg))
68432c27 365 return -1;
43d9616c
WD
366 }
367
7b46ee52 368 i2c_reset(base);
43d9616c
WD
369
370 return 0;
43d9616c 371}
7b46ee52 372
0c0f719a
SR
373#ifndef CONFIG_DM_I2C
374
7b46ee52
SR
375static struct mv_i2c *base_glob;
376
377static void i2c_board_init(struct mv_i2c *base)
378{
379#ifdef CONFIG_SYS_I2C_INIT_BOARD
380 u32 icr;
381 /*
382 * call board specific i2c bus reset routine before accessing the
383 * environment, which might be in a chip on that bus. For details
384 * about this problem see doc/I2C_Edge_Conditions.
385 *
386 * disable I2C controller first, otherwhise it thinks we want to
387 * talk to the slave port...
388 */
389 icr = readl(&base->icr);
390 writel(readl(&base->icr) & ~(ICR_SCLE | ICR_IUE), &base->icr);
391
392 i2c_init_board();
393
394 writel(icr, &base->icr);
395#endif
396}
397
398#ifdef CONFIG_I2C_MULTI_BUS
399static unsigned long i2c_regs[CONFIG_MV_I2C_NUM] = CONFIG_MV_I2C_REG;
400static unsigned int bus_initialized[CONFIG_MV_I2C_NUM];
401static unsigned int current_bus;
402
403int i2c_set_bus_num(unsigned int bus)
404{
405 if ((bus < 0) || (bus >= CONFIG_MV_I2C_NUM)) {
406 printf("Bad bus: %d\n", bus);
407 return -1;
408 }
409
410 base_glob = (struct mv_i2c *)i2c_regs[bus];
411 current_bus = bus;
412
413 if (!bus_initialized[current_bus]) {
414 i2c_board_init(base_glob);
415 bus_initialized[current_bus] = 1;
416 }
417
418 return 0;
419}
420
421unsigned int i2c_get_bus_num(void)
422{
423 return current_bus;
424}
425#endif
426
427/* API Functions */
428void i2c_init(int speed, int slaveaddr)
429{
9ad5a007
SR
430 u32 val;
431
7b46ee52
SR
432#ifdef CONFIG_I2C_MULTI_BUS
433 current_bus = 0;
434 base_glob = (struct mv_i2c *)i2c_regs[current_bus];
435#else
436 base_glob = (struct mv_i2c *)CONFIG_MV_I2C_REG;
437#endif
438
f3d46152 439 if (speed > I2C_SPEED_STANDARD_RATE)
9ad5a007
SR
440 val = ICR_FM;
441 else
442 val = ICR_SM;
443 clrsetbits_le32(&base_glob->icr, ICR_MODE_MASK, val);
444
7b46ee52
SR
445 i2c_board_init(base_glob);
446}
447
0c0f719a
SR
448static int __i2c_probe_chip(struct mv_i2c *base, uchar chip)
449{
450 struct mv_i2c_msg msg;
451
452 i2c_reset(base);
453
454 msg.condition = I2C_COND_START;
455 msg.acknack = I2C_ACKNAK_WAITACK;
456 msg.direction = I2C_WRITE;
457 msg.data = (chip << 1) + 1;
458 if (i2c_transfer(base, &msg))
459 return -1;
460
461 msg.condition = I2C_COND_STOP;
462 msg.acknack = I2C_ACKNAK_SENDNAK;
463 msg.direction = I2C_READ;
464 msg.data = 0x00;
465 if (i2c_transfer(base, &msg))
466 return -1;
467
468 return 0;
469}
470
7b46ee52
SR
471/*
472 * i2c_probe: - Test if a chip answers for a given i2c address
473 *
474 * @chip: address of the chip which is searched for
475 * @return: 0 if a chip was found, -1 otherwhise
476 */
477int i2c_probe(uchar chip)
478{
479 return __i2c_probe_chip(base_glob, chip);
480}
481
482/*
483 * i2c_read: - Read multiple bytes from an i2c device
484 *
485 * The higher level routines take into account that this function is only
486 * called with len < page length of the device (see configuration file)
487 *
488 * @chip: address of the chip which is to be read
489 * @addr: i2c data address within the chip
490 * @alen: length of the i2c data address (1..2 bytes)
491 * @buffer: where to write the data
492 * @len: how much byte do we want to read
493 * @return: 0 in case of success
494 */
495int i2c_read(uchar chip, uint addr, int alen, uchar *buffer, int len)
496{
0c0f719a
SR
497 u8 addr_bytes[4];
498
499 addr_bytes[0] = (addr >> 0) & 0xFF;
500 addr_bytes[1] = (addr >> 8) & 0xFF;
501 addr_bytes[2] = (addr >> 16) & 0xFF;
502 addr_bytes[3] = (addr >> 24) & 0xFF;
503
504 return __i2c_read(base_glob, chip, addr_bytes, alen, buffer, len);
7b46ee52
SR
505}
506
507/*
508 * i2c_write: - Write multiple bytes to an i2c device
509 *
510 * The higher level routines take into account that this function is only
511 * called with len < page length of the device (see configuration file)
512 *
513 * @chip: address of the chip which is to be written
514 * @addr: i2c data address within the chip
515 * @alen: length of the i2c data address (1..2 bytes)
516 * @buffer: where to find the data to be written
517 * @len: how much byte do we want to read
518 * @return: 0 in case of success
519 */
520int i2c_write(uchar chip, uint addr, int alen, uchar *buffer, int len)
521{
0c0f719a
SR
522 u8 addr_bytes[4];
523
524 addr_bytes[0] = (addr >> 0) & 0xFF;
525 addr_bytes[1] = (addr >> 8) & 0xFF;
526 addr_bytes[2] = (addr >> 16) & 0xFF;
527 addr_bytes[3] = (addr >> 24) & 0xFF;
528
529 return __i2c_write(base_glob, chip, addr_bytes, alen, buffer, len);
530}
531
532#else /* CONFIG_DM_I2C */
533
534struct mv_i2c_priv {
535 struct mv_i2c *base;
536};
537
538static int mv_i2c_xfer(struct udevice *bus, struct i2c_msg *msg, int nmsgs)
539{
540 struct mv_i2c_priv *i2c = dev_get_priv(bus);
541 struct i2c_msg *dmsg, *omsg, dummy;
542
543 memset(&dummy, 0, sizeof(struct i2c_msg));
544
545 /*
546 * We expect either two messages (one with an offset and one with the
547 * actual data) or one message (just data or offset/data combined)
548 */
549 if (nmsgs > 2 || nmsgs == 0) {
550 debug("%s: Only one or two messages are supported.", __func__);
551 return -1;
552 }
553
554 omsg = nmsgs == 1 ? &dummy : msg;
555 dmsg = nmsgs == 1 ? msg : msg + 1;
556
557 if (dmsg->flags & I2C_M_RD)
558 return __i2c_read(i2c->base, dmsg->addr, omsg->buf,
559 omsg->len, dmsg->buf, dmsg->len);
560 else
561 return __i2c_write(i2c->base, dmsg->addr, omsg->buf,
562 omsg->len, dmsg->buf, dmsg->len);
7b46ee52 563}
0c0f719a 564
9ad5a007
SR
565static int mv_i2c_set_bus_speed(struct udevice *bus, unsigned int speed)
566{
567 struct mv_i2c_priv *priv = dev_get_priv(bus);
568 u32 val;
569
f3d46152 570 if (speed > I2C_SPEED_STANDARD_RATE)
9ad5a007
SR
571 val = ICR_FM;
572 else
573 val = ICR_SM;
574 clrsetbits_le32(&priv->base->icr, ICR_MODE_MASK, val);
575
576 return 0;
577}
578
0c0f719a
SR
579static int mv_i2c_probe(struct udevice *bus)
580{
581 struct mv_i2c_priv *priv = dev_get_priv(bus);
582
702e57e1 583 priv->base = dev_read_addr_ptr(bus);
0c0f719a
SR
584
585 return 0;
586}
587
588static const struct dm_i2c_ops mv_i2c_ops = {
589 .xfer = mv_i2c_xfer,
9ad5a007 590 .set_bus_speed = mv_i2c_set_bus_speed,
0c0f719a
SR
591};
592
593static const struct udevice_id mv_i2c_ids[] = {
594 { .compatible = "marvell,armada-3700-i2c" },
595 { }
596};
597
598U_BOOT_DRIVER(i2c_mv) = {
599 .name = "i2c_mv",
600 .id = UCLASS_I2C,
601 .of_match = mv_i2c_ids,
602 .probe = mv_i2c_probe,
41575d8e 603 .priv_auto = sizeof(struct mv_i2c_priv),
0c0f719a
SR
604 .ops = &mv_i2c_ops,
605};
606#endif /* CONFIG_DM_I2C */
This page took 0.417161 seconds and 4 git commands to generate.