]> git.ipfire.org Git - people/ms/u-boot.git/blame - drivers/i2c/mxc_i2c.c
imx: reorganize IMX code as other SOCs
[people/ms/u-boot.git] / drivers / i2c / mxc_i2c.c
CommitLineData
cdace066 1/*
db84140b 2 * i2c driver for Freescale i.MX series
cdace066
SH
3 *
4 * (c) 2007 Pengutronix, Sascha Hauer <s.hauer@pengutronix.de>
db84140b
MV
5 * (c) 2011 Marek Vasut <marek.vasut@gmail.com>
6 *
7 * Based on i2c-imx.c from linux kernel:
8 * Copyright (C) 2005 Torsten Koschorrek <koschorrek at synertronixx.de>
9 * Copyright (C) 2005 Matthias Blaschke <blaschke at synertronixx.de>
10 * Copyright (C) 2007 RightHand Technologies, Inc.
11 * Copyright (C) 2008 Darius Augulis <darius.augulis at teltonika.lt>
12 *
cdace066 13 *
1a459660 14 * SPDX-License-Identifier: GPL-2.0+
cdace066
SH
15 */
16
17#include <common.h>
127cec18 18#include <asm/arch/clock.h>
86271115 19#include <asm/arch/imx-regs.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 */
e7bed5c2 153 i2c_clk_rate = mxc_get_clock(MXC_I2C_CLK);
db84140b
MV
154 div = (i2c_clk_rate + rate - 1) / rate;
155 if (div < i2c_clk_div[0][0])
b567b8ff 156 clk_div = 0;
db84140b 157 else if (div > i2c_clk_div[ARRAY_SIZE(i2c_clk_div) - 1][0])
b567b8ff 158 clk_div = ARRAY_SIZE(i2c_clk_div) - 1;
db84140b 159 else
b567b8ff 160 for (clk_div = 0; i2c_clk_div[clk_div][0] < div; clk_div++)
db84140b
MV
161 ;
162
163 /* Store divider value */
bf0783df 164 return clk_div;
db84140b 165}
cdace066 166
db84140b 167/*
e4ff525f 168 * Set I2C Bus speed
db84140b 169 */
71204e95 170static int bus_i2c_set_bus_speed(struct mxc_i2c_bus *i2c_bus, int speed)
db84140b 171{
71204e95
PF
172 ulong base = i2c_bus->base;
173 bool quirk = i2c_bus->driver_data & I2C_QUIRK_FLAG ? true : false;
174 u8 clk_idx = i2c_imx_get_clk(i2c_bus, speed);
bf0783df 175 u8 idx = i2c_clk_div[clk_idx][1];
71204e95 176 int reg_shift = quirk ? VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT;
bf0783df 177
e6c8b716
HS
178 if (!base)
179 return -ENODEV;
180
bf0783df 181 /* Store divider value */
71204e95 182 writeb(idx, base + (IFDR << reg_shift));
bf0783df 183
83a1a190 184 /* Reset module */
71204e95
PF
185 writeb(I2CR_IDIS, base + (I2CR << reg_shift));
186 writeb(0, base + (I2SR << reg_shift));
b567b8ff
MV
187 return 0;
188}
189
7aa57a01
TK
190#define ST_BUS_IDLE (0 | (I2SR_IBB << 8))
191#define ST_BUS_BUSY (I2SR_IBB | (I2SR_IBB << 8))
192#define ST_IIF (I2SR_IIF | (I2SR_IIF << 8))
81687212 193
71204e95 194static int wait_for_sr_state(struct mxc_i2c_bus *i2c_bus, unsigned state)
cdace066 195{
7aa57a01
TK
196 unsigned sr;
197 ulong elapsed;
71204e95
PF
198 bool quirk = i2c_bus->driver_data & I2C_QUIRK_FLAG ? true : false;
199 int reg_shift = quirk ? VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT;
200 ulong base = i2c_bus->base;
7aa57a01
TK
201 ulong start_time = get_timer(0);
202 for (;;) {
71204e95 203 sr = readb(base + (I2SR << reg_shift));
d5383a63 204 if (sr & I2SR_IAL) {
71204e95
PF
205 if (quirk)
206 writeb(sr | I2SR_IAL, base +
207 (I2SR << reg_shift));
208 else
209 writeb(sr & ~I2SR_IAL, base +
210 (I2SR << reg_shift));
d5383a63 211 printf("%s: Arbitration lost sr=%x cr=%x state=%x\n",
71204e95
PF
212 __func__, sr, readb(base + (I2CR << reg_shift)),
213 state);
d5383a63
TK
214 return -ERESTART;
215 }
7aa57a01
TK
216 if ((sr & (state >> 8)) == (unsigned char)state)
217 return sr;
218 WATCHDOG_RESET();
219 elapsed = get_timer(start_time);
220 if (elapsed > (CONFIG_SYS_HZ / 10)) /* .1 seconds */
221 break;
db84140b 222 }
7aa57a01 223 printf("%s: failed sr=%x cr=%x state=%x\n", __func__,
71204e95 224 sr, readb(base + (I2CR << reg_shift)), state);
cea60b0c 225 return -ETIMEDOUT;
cdace066
SH
226}
227
71204e95 228static int tx_byte(struct mxc_i2c_bus *i2c_bus, u8 byte)
81687212 229{
cea60b0c 230 int ret;
71204e95
PF
231 int reg_shift = i2c_bus->driver_data & I2C_QUIRK_FLAG ?
232 VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT;
233 ulong base = i2c_bus->base;
81687212 234
71204e95
PF
235 writeb(I2SR_IIF_CLEAR, base + (I2SR << reg_shift));
236 writeb(byte, base + (I2DR << reg_shift));
237
238 ret = wait_for_sr_state(i2c_bus, ST_IIF);
cea60b0c
TK
239 if (ret < 0)
240 return ret;
cea60b0c
TK
241 if (ret & I2SR_RX_NO_AK)
242 return -ENODEV;
243 return 0;
db84140b 244}
81687212 245
71204e95
PF
246/*
247 * Stub implementations for outer i2c slave operations.
248 */
249void __i2c_force_reset_slave(void)
250{
251}
252void i2c_force_reset_slave(void)
253 __attribute__((weak, alias("__i2c_force_reset_slave")));
254
db84140b 255/*
90a5b70f 256 * Stop I2C transaction
db84140b 257 */
71204e95 258static void i2c_imx_stop(struct mxc_i2c_bus *i2c_bus)
cdace066 259{
7aa57a01 260 int ret;
71204e95
PF
261 int reg_shift = i2c_bus->driver_data & I2C_QUIRK_FLAG ?
262 VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT;
263 ulong base = i2c_bus->base;
264 unsigned int temp = readb(base + (I2CR << reg_shift));
db84140b 265
1c076dba 266 temp &= ~(I2CR_MSTA | I2CR_MTX);
71204e95
PF
267 writeb(temp, base + (I2CR << reg_shift));
268 ret = wait_for_sr_state(i2c_bus, ST_BUS_IDLE);
7aa57a01
TK
269 if (ret < 0)
270 printf("%s:trigger stop failed\n", __func__);
cdace066
SH
271}
272
db84140b 273/*
b230ddc2
TK
274 * Send start signal, chip address and
275 * write register address
db84140b 276 */
71204e95
PF
277static int i2c_init_transfer_(struct mxc_i2c_bus *i2c_bus, u8 chip,
278 u32 addr, int alen)
cdace066 279{
71e9f3cb
TK
280 unsigned int temp;
281 int ret;
71204e95
PF
282 bool quirk = i2c_bus->driver_data & I2C_QUIRK_FLAG ? true : false;
283 ulong base = i2c_bus->base;
284 int reg_shift = quirk ? VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT;
285
286 /* Reset i2c slave */
287 i2c_force_reset_slave();
71e9f3cb
TK
288
289 /* Enable I2C controller */
71204e95
PF
290 if (quirk)
291 ret = readb(base + (I2CR << reg_shift)) & I2CR_IDIS;
292 else
293 ret = !(readb(base + (I2CR << reg_shift)) & I2CR_IEN);
294
295 if (ret) {
296 writeb(I2CR_IEN, base + (I2CR << reg_shift));
90a5b70f
TK
297 /* Wait for controller to be stable */
298 udelay(50);
299 }
71204e95
PF
300
301 if (readb(base + (IADR << reg_shift)) == (chip << 1))
302 writeb((chip << 1) ^ 2, base + (IADR << reg_shift));
303 writeb(I2SR_IIF_CLEAR, base + (I2SR << reg_shift));
304 ret = wait_for_sr_state(i2c_bus, ST_BUS_IDLE);
90a5b70f 305 if (ret < 0)
a7f1a005 306 return ret;
71e9f3cb
TK
307
308 /* Start I2C transaction */
71204e95 309 temp = readb(base + (I2CR << reg_shift));
71e9f3cb 310 temp |= I2CR_MSTA;
71204e95 311 writeb(temp, base + (I2CR << reg_shift));
71e9f3cb 312
71204e95 313 ret = wait_for_sr_state(i2c_bus, ST_BUS_BUSY);
71e9f3cb 314 if (ret < 0)
a7f1a005 315 return ret;
b230ddc2 316
71e9f3cb 317 temp |= I2CR_MTX | I2CR_TX_NO_AK;
71204e95 318 writeb(temp, base + (I2CR << reg_shift));
71e9f3cb 319
b230ddc2 320 /* write slave address */
71204e95 321 ret = tx_byte(i2c_bus, chip << 1);
b230ddc2 322 if (ret < 0)
a7f1a005 323 return ret;
db84140b 324
bf0783df 325 while (alen--) {
71204e95 326 ret = tx_byte(i2c_bus, (addr >> (alen * 8)) & 0xff);
cea60b0c 327 if (ret < 0)
a7f1a005 328 return ret;
81687212 329 }
b230ddc2 330 return 0;
a7f1a005
TK
331}
332
71204e95
PF
333#ifndef CONFIG_DM_I2C
334int i2c_idle_bus(struct mxc_i2c_bus *i2c_bus)
335{
336 if (i2c_bus && i2c_bus->idle_bus_fn)
337 return i2c_bus->idle_bus_fn(i2c_bus->idle_bus_data);
338 return 0;
339}
340#else
341/*
e1bed802
PF
342 * See Linux Documentation/devicetree/bindings/i2c/i2c-imx.txt
343 * "
344 * scl-gpios: specify the gpio related to SCL pin
345 * sda-gpios: specify the gpio related to SDA pin
346 * add pinctrl to configure i2c pins to gpio function for i2c
347 * bus recovery, call it "gpio" state
348 * "
349 *
350 * The i2c_idle_bus is an implementation following Linux Kernel.
71204e95 351 */
e1bed802 352int i2c_idle_bus(struct mxc_i2c_bus *i2c_bus)
71204e95 353{
e1bed802
PF
354 struct udevice *bus = i2c_bus->bus;
355 struct gpio_desc *scl_gpio = &i2c_bus->scl_gpio;
356 struct gpio_desc *sda_gpio = &i2c_bus->sda_gpio;
357 int sda, scl;
358 int i, ret = 0;
359 ulong elapsed, start_time;
96c19bd3 360
e1bed802
PF
361 if (pinctrl_select_state(bus, "gpio")) {
362 dev_dbg(bus, "Can not to switch to use gpio pinmux\n");
363 /*
364 * GPIO pinctrl for i2c force idle is not a must,
365 * but it is strongly recommended to be used.
366 * Because it can help you to recover from bad
367 * i2c bus state. Do not return failure, because
368 * it is not a must.
369 */
370 return 0;
371 }
372
373 dm_gpio_set_dir_flags(scl_gpio, GPIOD_IS_IN);
374 dm_gpio_set_dir_flags(sda_gpio, GPIOD_IS_IN);
375 scl = dm_gpio_get_value(scl_gpio);
376 sda = dm_gpio_get_value(sda_gpio);
377
378 if ((sda & scl) == 1)
379 goto exit; /* Bus is idle already */
380
381 /* Send high and low on the SCL line */
382 for (i = 0; i < 9; i++) {
383 dm_gpio_set_dir_flags(scl_gpio, GPIOD_IS_OUT);
384 dm_gpio_set_value(scl_gpio, 0);
385 udelay(50);
386 dm_gpio_set_dir_flags(scl_gpio, GPIOD_IS_IN);
387 udelay(50);
388 }
389 start_time = get_timer(0);
390 for (;;) {
391 dm_gpio_set_dir_flags(scl_gpio, GPIOD_IS_IN);
392 dm_gpio_set_dir_flags(sda_gpio, GPIOD_IS_IN);
393 scl = dm_gpio_get_value(scl_gpio);
394 sda = dm_gpio_get_value(sda_gpio);
395 if ((sda & scl) == 1)
396 break;
397 WATCHDOG_RESET();
398 elapsed = get_timer(start_time);
399 if (elapsed > (CONFIG_SYS_HZ / 5)) { /* .2 seconds */
400 ret = -EBUSY;
401 printf("%s: failed to clear bus, sda=%d scl=%d\n", __func__, sda, scl);
402 break;
403 }
404 }
405
406exit:
407 pinctrl_select_state(bus, "default");
408 return ret;
409}
71204e95
PF
410#endif
411
412static int i2c_init_transfer(struct mxc_i2c_bus *i2c_bus, u8 chip,
413 u32 addr, int alen)
a7f1a005
TK
414{
415 int retry;
416 int ret;
71204e95
PF
417 int reg_shift = i2c_bus->driver_data & I2C_QUIRK_FLAG ?
418 VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT;
e6c8b716
HS
419
420 if (!i2c_bus->base)
421 return -ENODEV;
422
a7f1a005 423 for (retry = 0; retry < 3; retry++) {
71204e95 424 ret = i2c_init_transfer_(i2c_bus, chip, addr, alen);
a7f1a005
TK
425 if (ret >= 0)
426 return 0;
71204e95 427 i2c_imx_stop(i2c_bus);
a7f1a005
TK
428 if (ret == -ENODEV)
429 return ret;
430
431 printf("%s: failed for chip 0x%x retry=%d\n", __func__, chip,
432 retry);
433 if (ret != -ERESTART)
30ea41a4 434 /* Disable controller */
71204e95 435 writeb(I2CR_IDIS, i2c_bus->base + (I2CR << reg_shift));
a7f1a005 436 udelay(100);
71204e95 437 if (i2c_idle_bus(i2c_bus) < 0)
96c19bd3 438 break;
a7f1a005 439 }
71204e95 440 printf("%s: give up i2c_regs=0x%lx\n", __func__, i2c_bus->base);
db84140b 441 return ret;
cdace066
SH
442}
443
71204e95
PF
444
445static int i2c_write_data(struct mxc_i2c_bus *i2c_bus, u8 chip, const u8 *buf,
446 int len)
447{
448 int i, ret = 0;
449
450 debug("i2c_write_data: chip=0x%x, len=0x%x\n", chip, len);
451 debug("write_data: ");
452 /* use rc for counter */
453 for (i = 0; i < len; ++i)
454 debug(" 0x%02x", buf[i]);
455 debug("\n");
456
457 for (i = 0; i < len; i++) {
458 ret = tx_byte(i2c_bus, buf[i]);
459 if (ret < 0) {
460 debug("i2c_write_data(): rc=%d\n", ret);
461 break;
462 }
463 }
464
465 return ret;
466}
467
468static int i2c_read_data(struct mxc_i2c_bus *i2c_bus, uchar chip, uchar *buf,
469 int len)
db84140b 470{
db84140b
MV
471 int ret;
472 unsigned int temp;
473 int i;
71204e95
PF
474 int reg_shift = i2c_bus->driver_data & I2C_QUIRK_FLAG ?
475 VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT;
476 ulong base = i2c_bus->base;
db84140b 477
71204e95 478 debug("i2c_read_data: chip=0x%x, len=0x%x\n", chip, len);
db84140b
MV
479
480 /* setup bus to read data */
71204e95 481 temp = readb(base + (I2CR << reg_shift));
db84140b
MV
482 temp &= ~(I2CR_MTX | I2CR_TX_NO_AK);
483 if (len == 1)
484 temp |= I2CR_TX_NO_AK;
71204e95
PF
485 writeb(temp, base + (I2CR << reg_shift));
486 writeb(I2SR_IIF_CLEAR, base + (I2SR << reg_shift));
487 /* dummy read to clear ICF */
488 readb(base + (I2DR << reg_shift));
db84140b
MV
489
490 /* read data */
491 for (i = 0; i < len; i++) {
71204e95 492 ret = wait_for_sr_state(i2c_bus, ST_IIF);
7aa57a01 493 if (ret < 0) {
71204e95
PF
494 debug("i2c_read_data(): ret=%d\n", ret);
495 i2c_imx_stop(i2c_bus);
db84140b 496 return ret;
c4330d28 497 }
db84140b
MV
498
499 /*
500 * It must generate STOP before read I2DR to prevent
501 * controller from generating another clock cycle
502 */
503 if (i == (len - 1)) {
71204e95 504 i2c_imx_stop(i2c_bus);
db84140b 505 } else if (i == (len - 2)) {
71204e95 506 temp = readb(base + (I2CR << reg_shift));
db84140b 507 temp |= I2CR_TX_NO_AK;
71204e95 508 writeb(temp, base + (I2CR << reg_shift));
db84140b 509 }
71204e95
PF
510 writeb(I2SR_IIF_CLEAR, base + (I2SR << reg_shift));
511 buf[i] = readb(base + (I2DR << reg_shift));
cdace066 512 }
71204e95
PF
513
514 /* reuse ret for counter*/
515 for (ret = 0; ret < len; ++ret)
516 debug(" 0x%02x", buf[ret]);
517 debug("\n");
518
519 i2c_imx_stop(i2c_bus);
7aa57a01 520 return 0;
cdace066
SH
521}
522
71204e95 523#ifndef CONFIG_DM_I2C
db84140b 524/*
71204e95 525 * Read data from I2C device
db84140b 526 */
71204e95
PF
527static int bus_i2c_read(struct mxc_i2c_bus *i2c_bus, u8 chip, u32 addr,
528 int alen, u8 *buf, int len)
cdace066 529{
71204e95
PF
530 int ret = 0;
531 u32 temp;
532 int reg_shift = i2c_bus->driver_data & I2C_QUIRK_FLAG ?
533 VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT;
534 ulong base = i2c_bus->base;
cdace066 535
71204e95 536 ret = i2c_init_transfer(i2c_bus, chip, addr, alen);
cea60b0c 537 if (ret < 0)
db84140b 538 return ret;
cdace066 539
71204e95
PF
540 temp = readb(base + (I2CR << reg_shift));
541 temp |= I2CR_RSTA;
542 writeb(temp, base + (I2CR << reg_shift));
543
544 ret = tx_byte(i2c_bus, (chip << 1) | 1);
545 if (ret < 0) {
546 i2c_imx_stop(i2c_bus);
547 return ret;
db84140b 548 }
71204e95
PF
549
550 ret = i2c_read_data(i2c_bus, chip, buf, len);
551
552 i2c_imx_stop(i2c_bus);
553 return ret;
554}
555
556/*
557 * Write data to I2C device
558 */
559static int bus_i2c_write(struct mxc_i2c_bus *i2c_bus, u8 chip, u32 addr,
560 int alen, const u8 *buf, int len)
561{
562 int ret = 0;
563
564 ret = i2c_init_transfer(i2c_bus, chip, addr, alen);
565 if (ret < 0)
566 return ret;
567
568 ret = i2c_write_data(i2c_bus, chip, buf, len);
569
570 i2c_imx_stop(i2c_bus);
571
db84140b
MV
572 return ret;
573}
cfbb88d3 574
e6c8b716
HS
575#if !defined(I2C2_BASE_ADDR)
576#define I2C2_BASE_ADDR 0
21a26940 577#endif
e6c8b716
HS
578
579#if !defined(I2C3_BASE_ADDR)
580#define I2C3_BASE_ADDR 0
581#endif
582
583#if !defined(I2C4_BASE_ADDR)
584#define I2C4_BASE_ADDR 0
585#endif
586
587static struct mxc_i2c_bus mxc_i2c_buses[] = {
73fb5838 588#if defined(CONFIG_ARCH_LS1021A) || defined(CONFIG_VF610) || \
9f3183d2 589 defined(CONFIG_FSL_LAYERSCAPE)
71204e95
PF
590 { 0, I2C1_BASE_ADDR, I2C_QUIRK_FLAG },
591 { 1, I2C2_BASE_ADDR, I2C_QUIRK_FLAG },
592 { 2, I2C3_BASE_ADDR, I2C_QUIRK_FLAG },
593 { 3, I2C4_BASE_ADDR, I2C_QUIRK_FLAG },
e4ff525f 594#else
e6c8b716
HS
595 { 0, I2C1_BASE_ADDR, 0 },
596 { 1, I2C2_BASE_ADDR, 0 },
597 { 2, I2C3_BASE_ADDR, 0 },
598 { 3, I2C4_BASE_ADDR, 0 },
e4ff525f 599#endif
fac96408 600};
601
71204e95 602struct mxc_i2c_bus *i2c_get_base(struct i2c_adapter *adap)
96c19bd3 603{
71204e95 604 return &mxc_i2c_buses[adap->hwadapnr];
96c19bd3
TK
605}
606
fac96408 607static int mxc_i2c_read(struct i2c_adapter *adap, uint8_t chip,
608 uint addr, int alen, uint8_t *buffer,
609 int len)
e4ff525f 610{
fac96408 611 return bus_i2c_read(i2c_get_base(adap), chip, addr, alen, buffer, len);
e4ff525f
TK
612}
613
fac96408 614static int mxc_i2c_write(struct i2c_adapter *adap, uint8_t chip,
615 uint addr, int alen, uint8_t *buffer,
616 int len)
e4ff525f 617{
fac96408 618 return bus_i2c_write(i2c_get_base(adap), chip, addr, alen, buffer, len);
e4ff525f
TK
619}
620
cfbb88d3
TK
621/*
622 * Test if a chip at a given address responds (probe the chip)
623 */
fac96408 624static int mxc_i2c_probe(struct i2c_adapter *adap, uint8_t chip)
cfbb88d3 625{
fac96408 626 return bus_i2c_write(i2c_get_base(adap), chip, 0, 0, NULL, 0);
e4ff525f
TK
627}
628
71204e95
PF
629int __enable_i2c_clk(unsigned char enable, unsigned i2c_num)
630{
631 return 1;
632}
633int enable_i2c_clk(unsigned char enable, unsigned i2c_num)
634 __attribute__((weak, alias("__enable_i2c_clk")));
635
636void bus_i2c_init(int index, int speed, int unused,
637 int (*idle_bus_fn)(void *p), void *idle_bus_data)
e4ff525f 638{
71204e95
PF
639 int ret;
640
641 if (index >= ARRAY_SIZE(mxc_i2c_buses)) {
642 debug("Error i2c index\n");
e4ff525f 643 return;
e4ff525f 644 }
71204e95 645
aee3fddb
GQ
646 /*
647 * Warning: Be careful to allow the assignment to a static
648 * variable here. This function could be called while U-Boot is
649 * still running in flash memory. So such assignment is equal
650 * to write data to flash without erasing.
651 */
652 if (idle_bus_fn)
653 mxc_i2c_buses[index].idle_bus_fn = idle_bus_fn;
654 if (idle_bus_data)
655 mxc_i2c_buses[index].idle_bus_data = idle_bus_data;
71204e95
PF
656
657 ret = enable_i2c_clk(1, index);
658 if (ret < 0) {
659 debug("I2C-%d clk fail to enable.\n", index);
660 return;
661 }
662
663 bus_i2c_set_bus_speed(&mxc_i2c_buses[index], speed);
e4ff525f
TK
664}
665
9d10c2d3
YY
666/*
667 * Early init I2C for prepare read the clk through I2C.
668 */
669void i2c_early_init_f(void)
670{
671 ulong base = mxc_i2c_buses[I2C_EARLY_INIT_INDEX].base;
672 bool quirk = mxc_i2c_buses[I2C_EARLY_INIT_INDEX].driver_data
673 & I2C_QUIRK_FLAG ? true : false;
674 int reg_shift = quirk ? VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT;
675
676 /* Set I2C divider value */
677 writeb(I2C_IFDR_DIV_CONSERVATIVE, base + (IFDR << reg_shift));
678 /* Reset module */
679 writeb(I2CR_IDIS, base + (I2CR << reg_shift));
680 writeb(0, base + (I2SR << reg_shift));
681 /* Enable I2C */
682 writeb(I2CR_IEN, base + (I2CR << reg_shift));
683}
684
e4ff525f
TK
685/*
686 * Init I2C Bus
687 */
fac96408 688static void mxc_i2c_init(struct i2c_adapter *adap, int speed, int slaveaddr)
e4ff525f 689{
71204e95 690 bus_i2c_init(adap->hwadapnr, speed, slaveaddr, NULL, NULL);
e4ff525f
TK
691}
692
693/*
694 * Set I2C Speed
695 */
71204e95 696static u32 mxc_i2c_set_bus_speed(struct i2c_adapter *adap, uint speed)
e4ff525f 697{
fac96408 698 return bus_i2c_set_bus_speed(i2c_get_base(adap), speed);
e4ff525f
TK
699}
700
701/*
fac96408 702 * Register mxc i2c adapters
e4ff525f 703 */
03544c66 704#ifdef CONFIG_SYS_I2C_MXC_I2C1
fac96408 705U_BOOT_I2C_ADAP_COMPLETE(mxc0, mxc_i2c_init, mxc_i2c_probe,
706 mxc_i2c_read, mxc_i2c_write,
707 mxc_i2c_set_bus_speed,
708 CONFIG_SYS_MXC_I2C1_SPEED,
709 CONFIG_SYS_MXC_I2C1_SLAVE, 0)
03544c66
AA
710#endif
711
712#ifdef CONFIG_SYS_I2C_MXC_I2C2
fac96408 713U_BOOT_I2C_ADAP_COMPLETE(mxc1, mxc_i2c_init, mxc_i2c_probe,
714 mxc_i2c_read, mxc_i2c_write,
715 mxc_i2c_set_bus_speed,
716 CONFIG_SYS_MXC_I2C2_SPEED,
717 CONFIG_SYS_MXC_I2C2_SLAVE, 1)
03544c66
AA
718#endif
719
f8cb101e 720#ifdef CONFIG_SYS_I2C_MXC_I2C3
fac96408 721U_BOOT_I2C_ADAP_COMPLETE(mxc2, mxc_i2c_init, mxc_i2c_probe,
722 mxc_i2c_read, mxc_i2c_write,
723 mxc_i2c_set_bus_speed,
724 CONFIG_SYS_MXC_I2C3_SPEED,
725 CONFIG_SYS_MXC_I2C3_SLAVE, 2)
726#endif
71204e95 727
f8cb101e
YS
728#ifdef CONFIG_SYS_I2C_MXC_I2C4
729U_BOOT_I2C_ADAP_COMPLETE(mxc3, mxc_i2c_init, mxc_i2c_probe,
730 mxc_i2c_read, mxc_i2c_write,
731 mxc_i2c_set_bus_speed,
732 CONFIG_SYS_MXC_I2C4_SPEED,
733 CONFIG_SYS_MXC_I2C4_SLAVE, 3)
734#endif
71204e95
PF
735
736#else
737
738static int mxc_i2c_set_bus_speed(struct udevice *bus, unsigned int speed)
739{
740 struct mxc_i2c_bus *i2c_bus = dev_get_priv(bus);
741
742 return bus_i2c_set_bus_speed(i2c_bus, speed);
743}
744
745static int mxc_i2c_probe(struct udevice *bus)
746{
747 struct mxc_i2c_bus *i2c_bus = dev_get_priv(bus);
e1bed802 748 const void *fdt = gd->fdt_blob;
e160f7d4 749 int node = dev_of_offset(bus);
71204e95 750 fdt_addr_t addr;
e1bed802 751 int ret, ret2;
71204e95
PF
752
753 i2c_bus->driver_data = dev_get_driver_data(bus);
754
a821c4af 755 addr = devfdt_get_addr(bus);
71204e95
PF
756 if (addr == FDT_ADDR_T_NONE)
757 return -ENODEV;
758
759 i2c_bus->base = addr;
760 i2c_bus->index = bus->seq;
e1bed802 761 i2c_bus->bus = bus;
71204e95
PF
762
763 /* Enable clk */
764 ret = enable_i2c_clk(1, bus->seq);
765 if (ret < 0)
766 return ret;
767
e1bed802
PF
768 /*
769 * See Documentation/devicetree/bindings/i2c/i2c-imx.txt
770 * Use gpio to force bus idle when necessary.
771 */
b02e4044 772 ret = fdt_stringlist_search(fdt, node, "pinctrl-names", "gpio");
e1bed802 773 if (ret < 0) {
2da24fe5 774 debug("i2c bus %d at 0x%2lx, no gpio pinctrl state.\n", bus->seq, i2c_bus->base);
e1bed802 775 } else {
150c5afe
SG
776 ret = gpio_request_by_name_nodev(offset_to_ofnode(node),
777 "scl-gpios", 0, &i2c_bus->scl_gpio,
778 GPIOD_IS_OUT);
779 ret2 = gpio_request_by_name_nodev(offset_to_ofnode(node),
780 "sda-gpios", 0, &i2c_bus->sda_gpio,
781 GPIOD_IS_OUT);
e1bed802
PF
782 if (!dm_gpio_is_valid(&i2c_bus->sda_gpio) |
783 !dm_gpio_is_valid(&i2c_bus->scl_gpio) |
784 ret | ret2) {
785 dev_err(dev, "i2c bus %d at %lu, fail to request scl/sda gpio\n", bus->seq, i2c_bus->base);
786 return -ENODEV;
787 }
788 }
789
71204e95
PF
790 ret = i2c_idle_bus(i2c_bus);
791 if (ret < 0) {
792 /* Disable clk */
793 enable_i2c_clk(0, bus->seq);
794 return ret;
795 }
796
797 /*
798 * Pinmux settings are in board file now, until pinmux is supported,
799 * we can set pinmux here in probe function.
800 */
801
802 debug("i2c : controller bus %d at %lu , speed %d: ",
803 bus->seq, i2c_bus->base,
804 i2c_bus->speed);
805
806 return 0;
807}
808
809static int mxc_i2c_probe_chip(struct udevice *bus, u32 chip_addr,
810 u32 chip_flags)
811{
812 int ret;
813 struct mxc_i2c_bus *i2c_bus = dev_get_priv(bus);
814
815 ret = i2c_init_transfer(i2c_bus, chip_addr, 0, 0);
816 if (ret < 0) {
817 debug("%s failed, ret = %d\n", __func__, ret);
818 return ret;
819 }
820
821 i2c_imx_stop(i2c_bus);
822
823 return 0;
824}
825
826static int mxc_i2c_xfer(struct udevice *bus, struct i2c_msg *msg, int nmsgs)
827{
828 struct mxc_i2c_bus *i2c_bus = dev_get_priv(bus);
829 int ret = 0;
830 ulong base = i2c_bus->base;
831 int reg_shift = i2c_bus->driver_data & I2C_QUIRK_FLAG ?
832 VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT;
833
834 /*
835 * Here the 3rd parameter addr and the 4th one alen are set to 0,
836 * because here we only want to send out chip address. The register
837 * address is wrapped in msg.
838 */
839 ret = i2c_init_transfer(i2c_bus, msg->addr, 0, 0);
840 if (ret < 0) {
841 debug("i2c_init_transfer error: %d\n", ret);
842 return ret;
843 }
844
845 for (; nmsgs > 0; nmsgs--, msg++) {
846 bool next_is_read = nmsgs > 1 && (msg[1].flags & I2C_M_RD);
847 debug("i2c_xfer: chip=0x%x, len=0x%x\n", msg->addr, msg->len);
848 if (msg->flags & I2C_M_RD)
849 ret = i2c_read_data(i2c_bus, msg->addr, msg->buf,
850 msg->len);
851 else {
852 ret = i2c_write_data(i2c_bus, msg->addr, msg->buf,
853 msg->len);
854 if (ret)
855 break;
856 if (next_is_read) {
857 /* Reuse ret */
858 ret = readb(base + (I2CR << reg_shift));
859 ret |= I2CR_RSTA;
860 writeb(ret, base + (I2CR << reg_shift));
861
862 ret = tx_byte(i2c_bus, (msg->addr << 1) | 1);
863 if (ret < 0) {
864 i2c_imx_stop(i2c_bus);
865 break;
866 }
867 }
868 }
869 }
870
871 if (ret)
872 debug("i2c_write: error sending\n");
873
874 i2c_imx_stop(i2c_bus);
875
876 return ret;
877}
878
879static const struct dm_i2c_ops mxc_i2c_ops = {
880 .xfer = mxc_i2c_xfer,
881 .probe_chip = mxc_i2c_probe_chip,
882 .set_bus_speed = mxc_i2c_set_bus_speed,
883};
884
885static const struct udevice_id mxc_i2c_ids[] = {
886 { .compatible = "fsl,imx21-i2c", },
887 { .compatible = "fsl,vf610-i2c", .data = I2C_QUIRK_FLAG, },
888 {}
889};
890
891U_BOOT_DRIVER(i2c_mxc) = {
892 .name = "i2c_mxc",
893 .id = UCLASS_I2C,
894 .of_match = mxc_i2c_ids,
895 .probe = mxc_i2c_probe,
896 .priv_auto_alloc_size = sizeof(struct mxc_i2c_bus),
897 .ops = &mxc_i2c_ops,
898};
899#endif