]> git.ipfire.org Git - thirdparty/u-boot.git/blame - drivers/i2c/mxc_i2c.c
dm: core: Create a new header file for 'compat' features
[thirdparty/u-boot.git] / drivers / i2c / mxc_i2c.c
CommitLineData
83d290c5 1// SPDX-License-Identifier: GPL-2.0+
cdace066 2/*
db84140b 3 * i2c driver for Freescale i.MX series
cdace066
SH
4 *
5 * (c) 2007 Pengutronix, Sascha Hauer <s.hauer@pengutronix.de>
db84140b
MV
6 * (c) 2011 Marek Vasut <marek.vasut@gmail.com>
7 *
8 * Based on i2c-imx.c from linux kernel:
9 * Copyright (C) 2005 Torsten Koschorrek <koschorrek at synertronixx.de>
10 * Copyright (C) 2005 Matthias Blaschke <blaschke at synertronixx.de>
11 * Copyright (C) 2007 RightHand Technologies, Inc.
12 * Copyright (C) 2008 Darius Augulis <darius.augulis at teltonika.lt>
13 *
cdace066
SH
14 */
15
16#include <common.h>
127cec18 17#include <asm/arch/clock.h>
86271115 18#include <asm/arch/imx-regs.h>
336d4615 19#include <dm/device_compat.h>
1221ce45 20#include <linux/errno.h>
552a848e 21#include <asm/mach-imx/mxc_i2c.h>
24cd738b 22#include <asm/io.h>
bf0783df 23#include <i2c.h>
7aa57a01 24#include <watchdog.h>
71204e95 25#include <dm.h>
e1bed802 26#include <dm/pinctrl.h>
71204e95 27#include <fdtdec.h>
cdace066 28
dec1861b
YS
29DECLARE_GLOBAL_DATA_PTR;
30
71204e95
PF
31#define I2C_QUIRK_FLAG (1 << 0)
32
33#define IMX_I2C_REGSHIFT 2
34#define VF610_I2C_REGSHIFT 0
9d10c2d3
YY
35
36#define I2C_EARLY_INIT_INDEX 0
37#ifdef CONFIG_SYS_I2C_IFDR_DIV
38#define I2C_IFDR_DIV_CONSERVATIVE CONFIG_SYS_I2C_IFDR_DIV
39#else
40#define I2C_IFDR_DIV_CONSERVATIVE 0x7e
41#endif
42
71204e95
PF
43/* Register index */
44#define IADR 0
45#define IFDR 1
46#define I2CR 2
47#define I2SR 3
48#define I2DR 4
cdace066 49
cdace066
SH
50#define I2CR_IIEN (1 << 6)
51#define I2CR_MSTA (1 << 5)
52#define I2CR_MTX (1 << 4)
53#define I2CR_TX_NO_AK (1 << 3)
54#define I2CR_RSTA (1 << 2)
55
56#define I2SR_ICF (1 << 7)
57#define I2SR_IBB (1 << 5)
d5383a63 58#define I2SR_IAL (1 << 4)
cdace066
SH
59#define I2SR_IIF (1 << 1)
60#define I2SR_RX_NO_AK (1 << 0)
61
30ea41a4
AW
62#ifdef I2C_QUIRK_REG
63#define I2CR_IEN (0 << 7)
64#define I2CR_IDIS (1 << 7)
65#define I2SR_IIF_CLEAR (1 << 1)
66#else
67#define I2CR_IEN (1 << 7)
68#define I2CR_IDIS (0 << 7)
69#define I2SR_IIF_CLEAR (0 << 1)
70#endif
71
30ea41a4
AW
72#ifdef I2C_QUIRK_REG
73static u16 i2c_clk_div[60][2] = {
74 { 20, 0x00 }, { 22, 0x01 }, { 24, 0x02 }, { 26, 0x03 },
75 { 28, 0x04 }, { 30, 0x05 }, { 32, 0x09 }, { 34, 0x06 },
76 { 36, 0x0A }, { 40, 0x07 }, { 44, 0x0C }, { 48, 0x0D },
77 { 52, 0x43 }, { 56, 0x0E }, { 60, 0x45 }, { 64, 0x12 },
78 { 68, 0x0F }, { 72, 0x13 }, { 80, 0x14 }, { 88, 0x15 },
79 { 96, 0x19 }, { 104, 0x16 }, { 112, 0x1A }, { 128, 0x17 },
80 { 136, 0x4F }, { 144, 0x1C }, { 160, 0x1D }, { 176, 0x55 },
81 { 192, 0x1E }, { 208, 0x56 }, { 224, 0x22 }, { 228, 0x24 },
82 { 240, 0x1F }, { 256, 0x23 }, { 288, 0x5C }, { 320, 0x25 },
83 { 384, 0x26 }, { 448, 0x2A }, { 480, 0x27 }, { 512, 0x2B },
84 { 576, 0x2C }, { 640, 0x2D }, { 768, 0x31 }, { 896, 0x32 },
85 { 960, 0x2F }, { 1024, 0x33 }, { 1152, 0x34 }, { 1280, 0x35 },
86 { 1536, 0x36 }, { 1792, 0x3A }, { 1920, 0x37 }, { 2048, 0x3B },
87 { 2304, 0x3C }, { 2560, 0x3D }, { 3072, 0x3E }, { 3584, 0x7A },
88 { 3840, 0x3F }, { 4096, 0x7B }, { 5120, 0x7D }, { 6144, 0x7E },
89};
90#else
db84140b
MV
91static u16 i2c_clk_div[50][2] = {
92 { 22, 0x20 }, { 24, 0x21 }, { 26, 0x22 }, { 28, 0x23 },
93 { 30, 0x00 }, { 32, 0x24 }, { 36, 0x25 }, { 40, 0x26 },
94 { 42, 0x03 }, { 44, 0x27 }, { 48, 0x28 }, { 52, 0x05 },
95 { 56, 0x29 }, { 60, 0x06 }, { 64, 0x2A }, { 72, 0x2B },
96 { 80, 0x2C }, { 88, 0x09 }, { 96, 0x2D }, { 104, 0x0A },
97 { 112, 0x2E }, { 128, 0x2F }, { 144, 0x0C }, { 160, 0x30 },
98 { 192, 0x31 }, { 224, 0x32 }, { 240, 0x0F }, { 256, 0x33 },
99 { 288, 0x10 }, { 320, 0x34 }, { 384, 0x35 }, { 448, 0x36 },
100 { 480, 0x13 }, { 512, 0x37 }, { 576, 0x14 }, { 640, 0x38 },
101 { 768, 0x39 }, { 896, 0x3A }, { 960, 0x17 }, { 1024, 0x3B },
102 { 1152, 0x18 }, { 1280, 0x3C }, { 1536, 0x3D }, { 1792, 0x3E },
103 { 1920, 0x1B }, { 2048, 0x3F }, { 2304, 0x1C }, { 2560, 0x1D },
104 { 3072, 0x1E }, { 3840, 0x1F }
105};
30ea41a4 106#endif
db84140b 107
fac96408 108#ifndef CONFIG_SYS_MXC_I2C1_SPEED
109#define CONFIG_SYS_MXC_I2C1_SPEED 100000
110#endif
111#ifndef CONFIG_SYS_MXC_I2C2_SPEED
112#define CONFIG_SYS_MXC_I2C2_SPEED 100000
113#endif
114#ifndef CONFIG_SYS_MXC_I2C3_SPEED
115#define CONFIG_SYS_MXC_I2C3_SPEED 100000
116#endif
f8cb101e
YS
117#ifndef CONFIG_SYS_MXC_I2C4_SPEED
118#define CONFIG_SYS_MXC_I2C4_SPEED 100000
119#endif
fac96408 120
121#ifndef CONFIG_SYS_MXC_I2C1_SLAVE
122#define CONFIG_SYS_MXC_I2C1_SLAVE 0
123#endif
124#ifndef CONFIG_SYS_MXC_I2C2_SLAVE
125#define CONFIG_SYS_MXC_I2C2_SLAVE 0
126#endif
127#ifndef CONFIG_SYS_MXC_I2C3_SLAVE
128#define CONFIG_SYS_MXC_I2C3_SLAVE 0
129#endif
f8cb101e
YS
130#ifndef CONFIG_SYS_MXC_I2C4_SLAVE
131#define CONFIG_SYS_MXC_I2C4_SLAVE 0
132#endif
fac96408 133
db84140b
MV
134/*
135 * Calculate and set proper clock divider
136 */
71204e95 137static uint8_t i2c_imx_get_clk(struct mxc_i2c_bus *i2c_bus, unsigned int rate)
cdace066 138{
db84140b
MV
139 unsigned int i2c_clk_rate;
140 unsigned int div;
bf0783df 141 u8 clk_div;
cdace066 142
127cec18 143#if defined(CONFIG_MX31)
1d549ade
SB
144 struct clock_control_regs *sc_regs =
145 (struct clock_control_regs *)CCM_BASE;
db84140b 146
e7de18af 147 /* start the required I2C clock */
de6f604d 148 writel(readl(&sc_regs->cgr0) | (3 << CONFIG_SYS_I2C_CLK_OFFSET),
1d549ade 149 &sc_regs->cgr0);
127cec18 150#endif
e7de18af 151
db84140b 152 /* Divider value calculation */
6dba0864
PF
153#if CONFIG_IS_ENABLED(CLK)
154 i2c_clk_rate = clk_get_rate(&i2c_bus->per_clk);
155#else
e7bed5c2 156 i2c_clk_rate = mxc_get_clock(MXC_I2C_CLK);
6dba0864
PF
157#endif
158
db84140b
MV
159 div = (i2c_clk_rate + rate - 1) / rate;
160 if (div < i2c_clk_div[0][0])
b567b8ff 161 clk_div = 0;
db84140b 162 else if (div > i2c_clk_div[ARRAY_SIZE(i2c_clk_div) - 1][0])
b567b8ff 163 clk_div = ARRAY_SIZE(i2c_clk_div) - 1;
db84140b 164 else
b567b8ff 165 for (clk_div = 0; i2c_clk_div[clk_div][0] < div; clk_div++)
db84140b
MV
166 ;
167
168 /* Store divider value */
bf0783df 169 return clk_div;
db84140b 170}
cdace066 171
db84140b 172/*
e4ff525f 173 * Set I2C Bus speed
db84140b 174 */
71204e95 175static int bus_i2c_set_bus_speed(struct mxc_i2c_bus *i2c_bus, int speed)
db84140b 176{
71204e95
PF
177 ulong base = i2c_bus->base;
178 bool quirk = i2c_bus->driver_data & I2C_QUIRK_FLAG ? true : false;
179 u8 clk_idx = i2c_imx_get_clk(i2c_bus, speed);
bf0783df 180 u8 idx = i2c_clk_div[clk_idx][1];
71204e95 181 int reg_shift = quirk ? VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT;
bf0783df 182
e6c8b716 183 if (!base)
7c84319a 184 return -EINVAL;
e6c8b716 185
bf0783df 186 /* Store divider value */
71204e95 187 writeb(idx, base + (IFDR << reg_shift));
bf0783df 188
83a1a190 189 /* Reset module */
71204e95
PF
190 writeb(I2CR_IDIS, base + (I2CR << reg_shift));
191 writeb(0, base + (I2SR << reg_shift));
b567b8ff
MV
192 return 0;
193}
194
7aa57a01
TK
195#define ST_BUS_IDLE (0 | (I2SR_IBB << 8))
196#define ST_BUS_BUSY (I2SR_IBB | (I2SR_IBB << 8))
197#define ST_IIF (I2SR_IIF | (I2SR_IIF << 8))
81687212 198
71204e95 199static int wait_for_sr_state(struct mxc_i2c_bus *i2c_bus, unsigned state)
cdace066 200{
7aa57a01
TK
201 unsigned sr;
202 ulong elapsed;
71204e95
PF
203 bool quirk = i2c_bus->driver_data & I2C_QUIRK_FLAG ? true : false;
204 int reg_shift = quirk ? VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT;
205 ulong base = i2c_bus->base;
7aa57a01
TK
206 ulong start_time = get_timer(0);
207 for (;;) {
71204e95 208 sr = readb(base + (I2SR << reg_shift));
d5383a63 209 if (sr & I2SR_IAL) {
71204e95
PF
210 if (quirk)
211 writeb(sr | I2SR_IAL, base +
212 (I2SR << reg_shift));
213 else
214 writeb(sr & ~I2SR_IAL, base +
215 (I2SR << reg_shift));
d5383a63 216 printf("%s: Arbitration lost sr=%x cr=%x state=%x\n",
71204e95
PF
217 __func__, sr, readb(base + (I2CR << reg_shift)),
218 state);
d5383a63
TK
219 return -ERESTART;
220 }
7aa57a01
TK
221 if ((sr & (state >> 8)) == (unsigned char)state)
222 return sr;
223 WATCHDOG_RESET();
224 elapsed = get_timer(start_time);
225 if (elapsed > (CONFIG_SYS_HZ / 10)) /* .1 seconds */
226 break;
db84140b 227 }
7aa57a01 228 printf("%s: failed sr=%x cr=%x state=%x\n", __func__,
71204e95 229 sr, readb(base + (I2CR << reg_shift)), state);
cea60b0c 230 return -ETIMEDOUT;
cdace066
SH
231}
232
71204e95 233static int tx_byte(struct mxc_i2c_bus *i2c_bus, u8 byte)
81687212 234{
cea60b0c 235 int ret;
71204e95
PF
236 int reg_shift = i2c_bus->driver_data & I2C_QUIRK_FLAG ?
237 VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT;
238 ulong base = i2c_bus->base;
81687212 239
71204e95
PF
240 writeb(I2SR_IIF_CLEAR, base + (I2SR << reg_shift));
241 writeb(byte, base + (I2DR << reg_shift));
242
243 ret = wait_for_sr_state(i2c_bus, ST_IIF);
cea60b0c
TK
244 if (ret < 0)
245 return ret;
cea60b0c 246 if (ret & I2SR_RX_NO_AK)
7c84319a 247 return -EREMOTEIO;
cea60b0c 248 return 0;
db84140b 249}
81687212 250
71204e95
PF
251/*
252 * Stub implementations for outer i2c slave operations.
253 */
254void __i2c_force_reset_slave(void)
255{
256}
257void i2c_force_reset_slave(void)
258 __attribute__((weak, alias("__i2c_force_reset_slave")));
259
db84140b 260/*
90a5b70f 261 * Stop I2C transaction
db84140b 262 */
71204e95 263static void i2c_imx_stop(struct mxc_i2c_bus *i2c_bus)
cdace066 264{
7aa57a01 265 int ret;
71204e95
PF
266 int reg_shift = i2c_bus->driver_data & I2C_QUIRK_FLAG ?
267 VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT;
268 ulong base = i2c_bus->base;
269 unsigned int temp = readb(base + (I2CR << reg_shift));
db84140b 270
1c076dba 271 temp &= ~(I2CR_MSTA | I2CR_MTX);
71204e95
PF
272 writeb(temp, base + (I2CR << reg_shift));
273 ret = wait_for_sr_state(i2c_bus, ST_BUS_IDLE);
7aa57a01
TK
274 if (ret < 0)
275 printf("%s:trigger stop failed\n", __func__);
cdace066
SH
276}
277
db84140b 278/*
b230ddc2
TK
279 * Send start signal, chip address and
280 * write register address
db84140b 281 */
71204e95
PF
282static int i2c_init_transfer_(struct mxc_i2c_bus *i2c_bus, u8 chip,
283 u32 addr, int alen)
cdace066 284{
71e9f3cb
TK
285 unsigned int temp;
286 int ret;
71204e95
PF
287 bool quirk = i2c_bus->driver_data & I2C_QUIRK_FLAG ? true : false;
288 ulong base = i2c_bus->base;
289 int reg_shift = quirk ? VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT;
290
291 /* Reset i2c slave */
292 i2c_force_reset_slave();
71e9f3cb
TK
293
294 /* Enable I2C controller */
71204e95
PF
295 if (quirk)
296 ret = readb(base + (I2CR << reg_shift)) & I2CR_IDIS;
297 else
298 ret = !(readb(base + (I2CR << reg_shift)) & I2CR_IEN);
299
300 if (ret) {
301 writeb(I2CR_IEN, base + (I2CR << reg_shift));
90a5b70f
TK
302 /* Wait for controller to be stable */
303 udelay(50);
304 }
71204e95
PF
305
306 if (readb(base + (IADR << reg_shift)) == (chip << 1))
307 writeb((chip << 1) ^ 2, base + (IADR << reg_shift));
308 writeb(I2SR_IIF_CLEAR, base + (I2SR << reg_shift));
309 ret = wait_for_sr_state(i2c_bus, ST_BUS_IDLE);
90a5b70f 310 if (ret < 0)
a7f1a005 311 return ret;
71e9f3cb
TK
312
313 /* Start I2C transaction */
71204e95 314 temp = readb(base + (I2CR << reg_shift));
71e9f3cb 315 temp |= I2CR_MSTA;
71204e95 316 writeb(temp, base + (I2CR << reg_shift));
71e9f3cb 317
71204e95 318 ret = wait_for_sr_state(i2c_bus, ST_BUS_BUSY);
71e9f3cb 319 if (ret < 0)
a7f1a005 320 return ret;
b230ddc2 321
71e9f3cb 322 temp |= I2CR_MTX | I2CR_TX_NO_AK;
71204e95 323 writeb(temp, base + (I2CR << reg_shift));
71e9f3cb 324
2feec4ea
NH
325 if (alen >= 0) {
326 /* write slave address */
327 ret = tx_byte(i2c_bus, chip << 1);
cea60b0c 328 if (ret < 0)
a7f1a005 329 return ret;
2feec4ea
NH
330
331 while (alen--) {
332 ret = tx_byte(i2c_bus, (addr >> (alen * 8)) & 0xff);
333 if (ret < 0)
334 return ret;
335 }
81687212 336 }
2feec4ea 337
b230ddc2 338 return 0;
a7f1a005
TK
339}
340
71204e95
PF
341#ifndef CONFIG_DM_I2C
342int i2c_idle_bus(struct mxc_i2c_bus *i2c_bus)
343{
344 if (i2c_bus && i2c_bus->idle_bus_fn)
345 return i2c_bus->idle_bus_fn(i2c_bus->idle_bus_data);
346 return 0;
347}
348#else
349/*
e1bed802
PF
350 * See Linux Documentation/devicetree/bindings/i2c/i2c-imx.txt
351 * "
352 * scl-gpios: specify the gpio related to SCL pin
353 * sda-gpios: specify the gpio related to SDA pin
354 * add pinctrl to configure i2c pins to gpio function for i2c
355 * bus recovery, call it "gpio" state
356 * "
357 *
358 * The i2c_idle_bus is an implementation following Linux Kernel.
71204e95 359 */
e1bed802 360int i2c_idle_bus(struct mxc_i2c_bus *i2c_bus)
71204e95 361{
e1bed802 362 struct udevice *bus = i2c_bus->bus;
a40fe217 363 struct dm_i2c_bus *i2c = dev_get_uclass_priv(bus);
e1bed802
PF
364 struct gpio_desc *scl_gpio = &i2c_bus->scl_gpio;
365 struct gpio_desc *sda_gpio = &i2c_bus->sda_gpio;
a40fe217 366 int sda, scl, idle_sclks;
e1bed802
PF
367 int i, ret = 0;
368 ulong elapsed, start_time;
96c19bd3 369
e1bed802
PF
370 if (pinctrl_select_state(bus, "gpio")) {
371 dev_dbg(bus, "Can not to switch to use gpio pinmux\n");
372 /*
373 * GPIO pinctrl for i2c force idle is not a must,
374 * but it is strongly recommended to be used.
375 * Because it can help you to recover from bad
376 * i2c bus state. Do not return failure, because
377 * it is not a must.
378 */
379 return 0;
380 }
381
382 dm_gpio_set_dir_flags(scl_gpio, GPIOD_IS_IN);
383 dm_gpio_set_dir_flags(sda_gpio, GPIOD_IS_IN);
384 scl = dm_gpio_get_value(scl_gpio);
385 sda = dm_gpio_get_value(sda_gpio);
386
387 if ((sda & scl) == 1)
388 goto exit; /* Bus is idle already */
389
a40fe217
LM
390 /*
391 * In most cases it is just enough to generate 8 + 1 SCLK
392 * clocks to recover I2C slave device from 'stuck' state
393 * (when for example SW reset was performed, in the middle of
394 * I2C transmission).
395 *
396 * However, there are devices which send data in packets of
397 * N bytes (N > 1). In such case we do need N * 8 + 1 SCLK
398 * clocks.
399 */
400 idle_sclks = 8 + 1;
401
402 if (i2c->max_transaction_bytes > 0)
403 idle_sclks = i2c->max_transaction_bytes * 8 + 1;
e1bed802 404 /* Send high and low on the SCL line */
a40fe217 405 for (i = 0; i < idle_sclks; i++) {
e1bed802
PF
406 dm_gpio_set_dir_flags(scl_gpio, GPIOD_IS_OUT);
407 dm_gpio_set_value(scl_gpio, 0);
408 udelay(50);
409 dm_gpio_set_dir_flags(scl_gpio, GPIOD_IS_IN);
410 udelay(50);
411 }
412 start_time = get_timer(0);
413 for (;;) {
414 dm_gpio_set_dir_flags(scl_gpio, GPIOD_IS_IN);
415 dm_gpio_set_dir_flags(sda_gpio, GPIOD_IS_IN);
416 scl = dm_gpio_get_value(scl_gpio);
417 sda = dm_gpio_get_value(sda_gpio);
418 if ((sda & scl) == 1)
419 break;
420 WATCHDOG_RESET();
421 elapsed = get_timer(start_time);
422 if (elapsed > (CONFIG_SYS_HZ / 5)) { /* .2 seconds */
423 ret = -EBUSY;
424 printf("%s: failed to clear bus, sda=%d scl=%d\n", __func__, sda, scl);
425 break;
426 }
427 }
428
429exit:
430 pinctrl_select_state(bus, "default");
431 return ret;
432}
71204e95
PF
433#endif
434
435static int i2c_init_transfer(struct mxc_i2c_bus *i2c_bus, u8 chip,
436 u32 addr, int alen)
a7f1a005
TK
437{
438 int retry;
439 int ret;
71204e95
PF
440 int reg_shift = i2c_bus->driver_data & I2C_QUIRK_FLAG ?
441 VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT;
e6c8b716
HS
442
443 if (!i2c_bus->base)
7c84319a 444 return -EINVAL;
e6c8b716 445
a7f1a005 446 for (retry = 0; retry < 3; retry++) {
71204e95 447 ret = i2c_init_transfer_(i2c_bus, chip, addr, alen);
a7f1a005
TK
448 if (ret >= 0)
449 return 0;
71204e95 450 i2c_imx_stop(i2c_bus);
7c84319a 451 if (ret == -EREMOTEIO)
a7f1a005
TK
452 return ret;
453
454 printf("%s: failed for chip 0x%x retry=%d\n", __func__, chip,
455 retry);
456 if (ret != -ERESTART)
30ea41a4 457 /* Disable controller */
71204e95 458 writeb(I2CR_IDIS, i2c_bus->base + (I2CR << reg_shift));
a7f1a005 459 udelay(100);
71204e95 460 if (i2c_idle_bus(i2c_bus) < 0)
96c19bd3 461 break;
a7f1a005 462 }
71204e95 463 printf("%s: give up i2c_regs=0x%lx\n", __func__, i2c_bus->base);
db84140b 464 return ret;
cdace066
SH
465}
466
71204e95
PF
467
468static int i2c_write_data(struct mxc_i2c_bus *i2c_bus, u8 chip, const u8 *buf,
469 int len)
470{
471 int i, ret = 0;
472
473 debug("i2c_write_data: chip=0x%x, len=0x%x\n", chip, len);
474 debug("write_data: ");
475 /* use rc for counter */
476 for (i = 0; i < len; ++i)
477 debug(" 0x%02x", buf[i]);
478 debug("\n");
479
480 for (i = 0; i < len; i++) {
481 ret = tx_byte(i2c_bus, buf[i]);
482 if (ret < 0) {
483 debug("i2c_write_data(): rc=%d\n", ret);
484 break;
485 }
486 }
487
488 return ret;
489}
490
c854933f
TP
491/* Will generate a STOP after the last byte if "last" is true, i.e. this is the
492 * final message of a transaction. If not, it switches the bus back to TX mode
493 * and does not send a STOP, leaving the bus in a state where a repeated start
494 * and address can be sent for another message.
495 */
71204e95 496static int i2c_read_data(struct mxc_i2c_bus *i2c_bus, uchar chip, uchar *buf,
c854933f 497 int len, bool last)
db84140b 498{
db84140b
MV
499 int ret;
500 unsigned int temp;
501 int i;
71204e95
PF
502 int reg_shift = i2c_bus->driver_data & I2C_QUIRK_FLAG ?
503 VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT;
504 ulong base = i2c_bus->base;
db84140b 505
71204e95 506 debug("i2c_read_data: chip=0x%x, len=0x%x\n", chip, len);
db84140b
MV
507
508 /* setup bus to read data */
71204e95 509 temp = readb(base + (I2CR << reg_shift));
db84140b
MV
510 temp &= ~(I2CR_MTX | I2CR_TX_NO_AK);
511 if (len == 1)
512 temp |= I2CR_TX_NO_AK;
71204e95
PF
513 writeb(temp, base + (I2CR << reg_shift));
514 writeb(I2SR_IIF_CLEAR, base + (I2SR << reg_shift));
515 /* dummy read to clear ICF */
516 readb(base + (I2DR << reg_shift));
db84140b
MV
517
518 /* read data */
519 for (i = 0; i < len; i++) {
71204e95 520 ret = wait_for_sr_state(i2c_bus, ST_IIF);
7aa57a01 521 if (ret < 0) {
71204e95
PF
522 debug("i2c_read_data(): ret=%d\n", ret);
523 i2c_imx_stop(i2c_bus);
db84140b 524 return ret;
c4330d28 525 }
db84140b 526
db84140b 527 if (i == (len - 1)) {
c854933f
TP
528 /* Final byte has already been received by master! When
529 * we read it from I2DR, the master will start another
530 * cycle. We must program it first to send a STOP or
531 * switch to TX to avoid this.
532 */
533 if (last) {
534 i2c_imx_stop(i2c_bus);
535 } else {
536 /* Final read, no stop, switch back to tx */
537 temp = readb(base + (I2CR << reg_shift));
538 temp |= I2CR_MTX | I2CR_TX_NO_AK;
539 writeb(temp, base + (I2CR << reg_shift));
540 }
db84140b 541 } else if (i == (len - 2)) {
c854933f
TP
542 /* Master has already recevied penultimate byte. When
543 * we read it from I2DR, master will start RX of final
544 * byte. We must set TX_NO_AK now so it does not ACK
545 * that final byte.
546 */
71204e95 547 temp = readb(base + (I2CR << reg_shift));
db84140b 548 temp |= I2CR_TX_NO_AK;
71204e95 549 writeb(temp, base + (I2CR << reg_shift));
db84140b 550 }
c854933f 551
71204e95
PF
552 writeb(I2SR_IIF_CLEAR, base + (I2SR << reg_shift));
553 buf[i] = readb(base + (I2DR << reg_shift));
cdace066 554 }
71204e95
PF
555
556 /* reuse ret for counter*/
557 for (ret = 0; ret < len; ++ret)
558 debug(" 0x%02x", buf[ret]);
559 debug("\n");
560
c854933f
TP
561 /* It is not clear to me that this is necessary */
562 if (last)
563 i2c_imx_stop(i2c_bus);
7aa57a01 564 return 0;
cdace066
SH
565}
566
068cabe8
CH
567int __enable_i2c_clk(unsigned char enable, unsigned int i2c_num)
568{
569 return 1;
570}
571
572int enable_i2c_clk(unsigned char enable, unsigned int i2c_num)
573 __attribute__((weak, alias("__enable_i2c_clk")));
574
71204e95 575#ifndef CONFIG_DM_I2C
db84140b 576/*
71204e95 577 * Read data from I2C device
6314b3c7
TP
578 *
579 * The transactions use the syntax defined in the Linux kernel I2C docs.
580 *
581 * If alen is > 0, then this function will send a transaction of the form:
582 * S Chip Wr [A] Addr [A] S Chip Rd [A] [data] A ... NA P
583 * This is a normal I2C register read: writing the register address, then doing
584 * a repeated start and reading the data.
585 *
586 * If alen == 0, then we get this transaction:
587 * S Chip Wr [A] S Chip Rd [A] [data] A ... NA P
588 * This is somewhat unusual, though valid, transaction. It addresses the chip
589 * in write mode, but doesn't actually write any register address or data, then
590 * does a repeated start and reads data.
591 *
592 * If alen < 0, then we get this transaction:
593 * S Chip Rd [A] [data] A ... NA P
594 * The chip is addressed in read mode and then data is read. No register
595 * address is written first. This is perfectly valid on most devices and
596 * required on some (usually those that don't act like an array of registers).
db84140b 597 */
71204e95
PF
598static int bus_i2c_read(struct mxc_i2c_bus *i2c_bus, u8 chip, u32 addr,
599 int alen, u8 *buf, int len)
cdace066 600{
71204e95
PF
601 int ret = 0;
602 u32 temp;
603 int reg_shift = i2c_bus->driver_data & I2C_QUIRK_FLAG ?
604 VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT;
605 ulong base = i2c_bus->base;
cdace066 606
71204e95 607 ret = i2c_init_transfer(i2c_bus, chip, addr, alen);
cea60b0c 608 if (ret < 0)
db84140b 609 return ret;
cdace066 610
2feec4ea
NH
611 if (alen >= 0) {
612 temp = readb(base + (I2CR << reg_shift));
613 temp |= I2CR_RSTA;
614 writeb(temp, base + (I2CR << reg_shift));
615 }
71204e95
PF
616
617 ret = tx_byte(i2c_bus, (chip << 1) | 1);
618 if (ret < 0) {
619 i2c_imx_stop(i2c_bus);
620 return ret;
db84140b 621 }
71204e95 622
c854933f 623 ret = i2c_read_data(i2c_bus, chip, buf, len, true);
71204e95
PF
624
625 i2c_imx_stop(i2c_bus);
626 return ret;
627}
628
629/*
630 * Write data to I2C device
6314b3c7
TP
631 *
632 * If alen > 0, we get this transaction:
633 * S Chip Wr [A] addr [A] data [A] ... [A] P
634 * An ordinary write register command.
635 *
636 * If alen == 0, then we get this:
637 * S Chip Wr [A] data [A] ... [A] P
638 * This is a simple I2C write.
639 *
640 * If alen < 0, then we get this:
641 * S data [A] ... [A] P
642 * This is most likely NOT something that should be used. It doesn't send the
643 * chip address first, so in effect, the first byte of data will be used as the
644 * address.
71204e95
PF
645 */
646static int bus_i2c_write(struct mxc_i2c_bus *i2c_bus, u8 chip, u32 addr,
647 int alen, const u8 *buf, int len)
648{
649 int ret = 0;
650
651 ret = i2c_init_transfer(i2c_bus, chip, addr, alen);
652 if (ret < 0)
653 return ret;
654
655 ret = i2c_write_data(i2c_bus, chip, buf, len);
656
657 i2c_imx_stop(i2c_bus);
658
db84140b
MV
659 return ret;
660}
cfbb88d3 661
e6c8b716
HS
662#if !defined(I2C2_BASE_ADDR)
663#define I2C2_BASE_ADDR 0
21a26940 664#endif
e6c8b716
HS
665
666#if !defined(I2C3_BASE_ADDR)
667#define I2C3_BASE_ADDR 0
668#endif
669
670#if !defined(I2C4_BASE_ADDR)
671#define I2C4_BASE_ADDR 0
672#endif
673
fa452192
SD
674#if !defined(I2C5_BASE_ADDR)
675#define I2C5_BASE_ADDR 0
676#endif
677
678#if !defined(I2C6_BASE_ADDR)
679#define I2C6_BASE_ADDR 0
680#endif
681
682#if !defined(I2C7_BASE_ADDR)
683#define I2C7_BASE_ADDR 0
684#endif
685
686#if !defined(I2C8_BASE_ADDR)
687#define I2C8_BASE_ADDR 0
688#endif
689
e6c8b716 690static struct mxc_i2c_bus mxc_i2c_buses[] = {
73fb5838 691#if defined(CONFIG_ARCH_LS1021A) || defined(CONFIG_VF610) || \
9f3183d2 692 defined(CONFIG_FSL_LAYERSCAPE)
71204e95
PF
693 { 0, I2C1_BASE_ADDR, I2C_QUIRK_FLAG },
694 { 1, I2C2_BASE_ADDR, I2C_QUIRK_FLAG },
695 { 2, I2C3_BASE_ADDR, I2C_QUIRK_FLAG },
696 { 3, I2C4_BASE_ADDR, I2C_QUIRK_FLAG },
fa452192
SD
697 { 4, I2C5_BASE_ADDR, I2C_QUIRK_FLAG },
698 { 5, I2C6_BASE_ADDR, I2C_QUIRK_FLAG },
699 { 6, I2C7_BASE_ADDR, I2C_QUIRK_FLAG },
700 { 7, I2C8_BASE_ADDR, I2C_QUIRK_FLAG },
e4ff525f 701#else
e6c8b716
HS
702 { 0, I2C1_BASE_ADDR, 0 },
703 { 1, I2C2_BASE_ADDR, 0 },
704 { 2, I2C3_BASE_ADDR, 0 },
705 { 3, I2C4_BASE_ADDR, 0 },
fa452192
SD
706 { 4, I2C5_BASE_ADDR, 0 },
707 { 5, I2C6_BASE_ADDR, 0 },
708 { 6, I2C7_BASE_ADDR, 0 },
709 { 7, I2C8_BASE_ADDR, 0 },
e4ff525f 710#endif
fac96408 711};
712
71204e95 713struct mxc_i2c_bus *i2c_get_base(struct i2c_adapter *adap)
96c19bd3 714{
71204e95 715 return &mxc_i2c_buses[adap->hwadapnr];
96c19bd3
TK
716}
717
fac96408 718static int mxc_i2c_read(struct i2c_adapter *adap, uint8_t chip,
719 uint addr, int alen, uint8_t *buffer,
720 int len)
e4ff525f 721{
fac96408 722 return bus_i2c_read(i2c_get_base(adap), chip, addr, alen, buffer, len);
e4ff525f
TK
723}
724
fac96408 725static int mxc_i2c_write(struct i2c_adapter *adap, uint8_t chip,
726 uint addr, int alen, uint8_t *buffer,
727 int len)
e4ff525f 728{
fac96408 729 return bus_i2c_write(i2c_get_base(adap), chip, addr, alen, buffer, len);
e4ff525f
TK
730}
731
cfbb88d3
TK
732/*
733 * Test if a chip at a given address responds (probe the chip)
734 */
fac96408 735static int mxc_i2c_probe(struct i2c_adapter *adap, uint8_t chip)
cfbb88d3 736{
fac96408 737 return bus_i2c_write(i2c_get_base(adap), chip, 0, 0, NULL, 0);
e4ff525f
TK
738}
739
71204e95
PF
740void bus_i2c_init(int index, int speed, int unused,
741 int (*idle_bus_fn)(void *p), void *idle_bus_data)
e4ff525f 742{
71204e95
PF
743 int ret;
744
745 if (index >= ARRAY_SIZE(mxc_i2c_buses)) {
746 debug("Error i2c index\n");
e4ff525f 747 return;
e4ff525f 748 }
71204e95 749
aee3fddb
GQ
750 /*
751 * Warning: Be careful to allow the assignment to a static
752 * variable here. This function could be called while U-Boot is
753 * still running in flash memory. So such assignment is equal
754 * to write data to flash without erasing.
755 */
756 if (idle_bus_fn)
757 mxc_i2c_buses[index].idle_bus_fn = idle_bus_fn;
758 if (idle_bus_data)
759 mxc_i2c_buses[index].idle_bus_data = idle_bus_data;
71204e95
PF
760
761 ret = enable_i2c_clk(1, index);
762 if (ret < 0) {
763 debug("I2C-%d clk fail to enable.\n", index);
764 return;
765 }
766
767 bus_i2c_set_bus_speed(&mxc_i2c_buses[index], speed);
e4ff525f
TK
768}
769
9d10c2d3
YY
770/*
771 * Early init I2C for prepare read the clk through I2C.
772 */
773void i2c_early_init_f(void)
774{
775 ulong base = mxc_i2c_buses[I2C_EARLY_INIT_INDEX].base;
776 bool quirk = mxc_i2c_buses[I2C_EARLY_INIT_INDEX].driver_data
777 & I2C_QUIRK_FLAG ? true : false;
778 int reg_shift = quirk ? VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT;
779
780 /* Set I2C divider value */
781 writeb(I2C_IFDR_DIV_CONSERVATIVE, base + (IFDR << reg_shift));
782 /* Reset module */
783 writeb(I2CR_IDIS, base + (I2CR << reg_shift));
784 writeb(0, base + (I2SR << reg_shift));
785 /* Enable I2C */
786 writeb(I2CR_IEN, base + (I2CR << reg_shift));
787}
788
e4ff525f
TK
789/*
790 * Init I2C Bus
791 */
fac96408 792static void mxc_i2c_init(struct i2c_adapter *adap, int speed, int slaveaddr)
e4ff525f 793{
71204e95 794 bus_i2c_init(adap->hwadapnr, speed, slaveaddr, NULL, NULL);
e4ff525f
TK
795}
796
797/*
798 * Set I2C Speed
799 */
71204e95 800static u32 mxc_i2c_set_bus_speed(struct i2c_adapter *adap, uint speed)
e4ff525f 801{
fac96408 802 return bus_i2c_set_bus_speed(i2c_get_base(adap), speed);
e4ff525f
TK
803}
804
805/*
fac96408 806 * Register mxc i2c adapters
e4ff525f 807 */
03544c66 808#ifdef CONFIG_SYS_I2C_MXC_I2C1
fac96408 809U_BOOT_I2C_ADAP_COMPLETE(mxc0, mxc_i2c_init, mxc_i2c_probe,
810 mxc_i2c_read, mxc_i2c_write,
811 mxc_i2c_set_bus_speed,
812 CONFIG_SYS_MXC_I2C1_SPEED,
813 CONFIG_SYS_MXC_I2C1_SLAVE, 0)
03544c66
AA
814#endif
815
816#ifdef CONFIG_SYS_I2C_MXC_I2C2
fac96408 817U_BOOT_I2C_ADAP_COMPLETE(mxc1, mxc_i2c_init, mxc_i2c_probe,
818 mxc_i2c_read, mxc_i2c_write,
819 mxc_i2c_set_bus_speed,
820 CONFIG_SYS_MXC_I2C2_SPEED,
821 CONFIG_SYS_MXC_I2C2_SLAVE, 1)
03544c66
AA
822#endif
823
f8cb101e 824#ifdef CONFIG_SYS_I2C_MXC_I2C3
fac96408 825U_BOOT_I2C_ADAP_COMPLETE(mxc2, mxc_i2c_init, mxc_i2c_probe,
826 mxc_i2c_read, mxc_i2c_write,
827 mxc_i2c_set_bus_speed,
828 CONFIG_SYS_MXC_I2C3_SPEED,
829 CONFIG_SYS_MXC_I2C3_SLAVE, 2)
830#endif
71204e95 831
f8cb101e
YS
832#ifdef CONFIG_SYS_I2C_MXC_I2C4
833U_BOOT_I2C_ADAP_COMPLETE(mxc3, mxc_i2c_init, mxc_i2c_probe,
834 mxc_i2c_read, mxc_i2c_write,
835 mxc_i2c_set_bus_speed,
836 CONFIG_SYS_MXC_I2C4_SPEED,
837 CONFIG_SYS_MXC_I2C4_SLAVE, 3)
838#endif
71204e95 839
fa452192
SD
840#ifdef CONFIG_SYS_I2C_MXC_I2C5
841U_BOOT_I2C_ADAP_COMPLETE(mxc4, mxc_i2c_init, mxc_i2c_probe,
842 mxc_i2c_read, mxc_i2c_write,
843 mxc_i2c_set_bus_speed,
844 CONFIG_SYS_MXC_I2C5_SPEED,
845 CONFIG_SYS_MXC_I2C5_SLAVE, 4)
846#endif
847
848#ifdef CONFIG_SYS_I2C_MXC_I2C6
849U_BOOT_I2C_ADAP_COMPLETE(mxc5, mxc_i2c_init, mxc_i2c_probe,
850 mxc_i2c_read, mxc_i2c_write,
851 mxc_i2c_set_bus_speed,
852 CONFIG_SYS_MXC_I2C6_SPEED,
853 CONFIG_SYS_MXC_I2C6_SLAVE, 5)
854#endif
855
856#ifdef CONFIG_SYS_I2C_MXC_I2C7
857U_BOOT_I2C_ADAP_COMPLETE(mxc6, mxc_i2c_init, mxc_i2c_probe,
858 mxc_i2c_read, mxc_i2c_write,
859 mxc_i2c_set_bus_speed,
860 CONFIG_SYS_MXC_I2C7_SPEED,
861 CONFIG_SYS_MXC_I2C7_SLAVE, 6)
862#endif
863
864#ifdef CONFIG_SYS_I2C_MXC_I2C8
865U_BOOT_I2C_ADAP_COMPLETE(mxc7, mxc_i2c_init, mxc_i2c_probe,
866 mxc_i2c_read, mxc_i2c_write,
867 mxc_i2c_set_bus_speed,
868 CONFIG_SYS_MXC_I2C8_SPEED,
869 CONFIG_SYS_MXC_I2C8_SLAVE, 7)
870#endif
871
71204e95
PF
872#else
873
874static int mxc_i2c_set_bus_speed(struct udevice *bus, unsigned int speed)
875{
876 struct mxc_i2c_bus *i2c_bus = dev_get_priv(bus);
877
878 return bus_i2c_set_bus_speed(i2c_bus, speed);
879}
880
881static int mxc_i2c_probe(struct udevice *bus)
882{
883 struct mxc_i2c_bus *i2c_bus = dev_get_priv(bus);
e1bed802 884 const void *fdt = gd->fdt_blob;
e160f7d4 885 int node = dev_of_offset(bus);
71204e95 886 fdt_addr_t addr;
e1bed802 887 int ret, ret2;
71204e95
PF
888
889 i2c_bus->driver_data = dev_get_driver_data(bus);
890
a821c4af 891 addr = devfdt_get_addr(bus);
71204e95 892 if (addr == FDT_ADDR_T_NONE)
7c84319a 893 return -EINVAL;
71204e95
PF
894
895 i2c_bus->base = addr;
896 i2c_bus->index = bus->seq;
e1bed802 897 i2c_bus->bus = bus;
71204e95
PF
898
899 /* Enable clk */
6dba0864
PF
900#if CONFIG_IS_ENABLED(CLK)
901 ret = clk_get_by_index(bus, 0, &i2c_bus->per_clk);
902 if (ret) {
903 printf("Failed to get i2c clk\n");
904 return ret;
905 }
906 ret = clk_enable(&i2c_bus->per_clk);
907 if (ret) {
908 printf("Failed to enable i2c clk\n");
909 return ret;
910 }
911#else
71204e95
PF
912 ret = enable_i2c_clk(1, bus->seq);
913 if (ret < 0)
914 return ret;
6dba0864 915#endif
71204e95 916
e1bed802
PF
917 /*
918 * See Documentation/devicetree/bindings/i2c/i2c-imx.txt
919 * Use gpio to force bus idle when necessary.
920 */
b02e4044 921 ret = fdt_stringlist_search(fdt, node, "pinctrl-names", "gpio");
e1bed802 922 if (ret < 0) {
2da24fe5 923 debug("i2c bus %d at 0x%2lx, no gpio pinctrl state.\n", bus->seq, i2c_bus->base);
e1bed802 924 } else {
150c5afe
SG
925 ret = gpio_request_by_name_nodev(offset_to_ofnode(node),
926 "scl-gpios", 0, &i2c_bus->scl_gpio,
927 GPIOD_IS_OUT);
928 ret2 = gpio_request_by_name_nodev(offset_to_ofnode(node),
929 "sda-gpios", 0, &i2c_bus->sda_gpio,
930 GPIOD_IS_OUT);
fb012873
PF
931 if (!dm_gpio_is_valid(&i2c_bus->sda_gpio) ||
932 !dm_gpio_is_valid(&i2c_bus->scl_gpio) ||
933 ret || ret2) {
e1bed802 934 dev_err(dev, "i2c bus %d at %lu, fail to request scl/sda gpio\n", bus->seq, i2c_bus->base);
7c84319a 935 return -EINVAL;
e1bed802
PF
936 }
937 }
938
71204e95
PF
939 /*
940 * Pinmux settings are in board file now, until pinmux is supported,
941 * we can set pinmux here in probe function.
942 */
943
944 debug("i2c : controller bus %d at %lu , speed %d: ",
945 bus->seq, i2c_bus->base,
946 i2c_bus->speed);
947
948 return 0;
949}
950
6314b3c7 951/* Sends: S Addr Wr [A|NA] P */
71204e95
PF
952static int mxc_i2c_probe_chip(struct udevice *bus, u32 chip_addr,
953 u32 chip_flags)
954{
955 int ret;
956 struct mxc_i2c_bus *i2c_bus = dev_get_priv(bus);
957
958 ret = i2c_init_transfer(i2c_bus, chip_addr, 0, 0);
959 if (ret < 0) {
960 debug("%s failed, ret = %d\n", __func__, ret);
961 return ret;
962 }
963
964 i2c_imx_stop(i2c_bus);
965
966 return 0;
967}
968
969static int mxc_i2c_xfer(struct udevice *bus, struct i2c_msg *msg, int nmsgs)
970{
971 struct mxc_i2c_bus *i2c_bus = dev_get_priv(bus);
972 int ret = 0;
973 ulong base = i2c_bus->base;
974 int reg_shift = i2c_bus->driver_data & I2C_QUIRK_FLAG ?
975 VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT;
c854933f 976 int read_mode;
71204e95 977
c854933f
TP
978 /* Here address len is set to -1 to not send any address at first.
979 * Otherwise i2c_init_transfer will send the chip address with write
980 * mode set. This is wrong if the 1st message is read.
71204e95 981 */
c854933f 982 ret = i2c_init_transfer(i2c_bus, msg->addr, 0, -1);
71204e95
PF
983 if (ret < 0) {
984 debug("i2c_init_transfer error: %d\n", ret);
985 return ret;
986 }
987
c854933f 988 read_mode = -1; /* So it's always different on the first message */
71204e95 989 for (; nmsgs > 0; nmsgs--, msg++) {
c854933f
TP
990 const int msg_is_read = !!(msg->flags & I2C_M_RD);
991
992 debug("i2c_xfer: chip=0x%x, len=0x%x, dir=%c\n", msg->addr,
993 msg->len, msg_is_read ? 'R' : 'W');
994
995 if (msg_is_read != read_mode) {
996 /* Send repeated start if not 1st message */
997 if (read_mode != -1) {
998 debug("i2c_xfer: [RSTART]\n");
71204e95
PF
999 ret = readb(base + (I2CR << reg_shift));
1000 ret |= I2CR_RSTA;
1001 writeb(ret, base + (I2CR << reg_shift));
71204e95 1002 }
c854933f
TP
1003 debug("i2c_xfer: [ADDR %02x | %c]\n", msg->addr,
1004 msg_is_read ? 'R' : 'W');
1005 ret = tx_byte(i2c_bus, (msg->addr << 1) | msg_is_read);
1006 if (ret < 0) {
1007 debug("i2c_xfer: [STOP]\n");
1008 i2c_imx_stop(i2c_bus);
1009 break;
1010 }
1011 read_mode = msg_is_read;
71204e95 1012 }
c854933f
TP
1013
1014 if (msg->flags & I2C_M_RD)
1015 ret = i2c_read_data(i2c_bus, msg->addr, msg->buf,
1016 msg->len, nmsgs == 1 ||
1017 (msg->flags & I2C_M_STOP));
1018 else
1019 ret = i2c_write_data(i2c_bus, msg->addr, msg->buf,
1020 msg->len);
1021
1022 if (ret < 0)
1023 break;
71204e95
PF
1024 }
1025
1026 if (ret)
1027 debug("i2c_write: error sending\n");
1028
1029 i2c_imx_stop(i2c_bus);
1030
1031 return ret;
1032}
1033
1034static const struct dm_i2c_ops mxc_i2c_ops = {
1035 .xfer = mxc_i2c_xfer,
1036 .probe_chip = mxc_i2c_probe_chip,
1037 .set_bus_speed = mxc_i2c_set_bus_speed,
1038};
1039
1040static const struct udevice_id mxc_i2c_ids[] = {
1041 { .compatible = "fsl,imx21-i2c", },
1042 { .compatible = "fsl,vf610-i2c", .data = I2C_QUIRK_FLAG, },
1043 {}
1044};
1045
1046U_BOOT_DRIVER(i2c_mxc) = {
1047 .name = "i2c_mxc",
1048 .id = UCLASS_I2C,
1049 .of_match = mxc_i2c_ids,
1050 .probe = mxc_i2c_probe,
1051 .priv_auto_alloc_size = sizeof(struct mxc_i2c_bus),
1052 .ops = &mxc_i2c_ops,
c6910321 1053 .flags = DM_FLAG_PRE_RELOC,
71204e95
PF
1054};
1055#endif