blob: f17a47f60056f16c0b64aa320380d3b33f4797c6 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Sascha Hauercdace062008-03-26 20:40:49 +01002/*
Marek Vasutdb841402011-09-22 09:22:12 +00003 * i2c driver for Freescale i.MX series
Sascha Hauercdace062008-03-26 20:40:49 +01004 *
5 * (c) 2007 Pengutronix, Sascha Hauer <s.hauer@pengutronix.de>
Marek Vasutdb841402011-09-22 09:22:12 +00006 * (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 *
Sascha Hauercdace062008-03-26 20:40:49 +010014 */
15
16#include <common.h>
Liu Hui-R64343127cec12011-01-03 22:27:39 +000017#include <asm/arch/clock.h>
Stefano Babic86271112011-03-14 15:43:56 +010018#include <asm/arch/imx-regs.h>
Masahiro Yamada1221ce42016-09-21 11:28:55 +090019#include <linux/errno.h>
Stefano Babic552a8482017-06-29 10:16:06 +020020#include <asm/mach-imx/mxc_i2c.h>
Troy Kisky24cd7382012-07-19 08:18:03 +000021#include <asm/io.h>
Marek Vasutbf0783d2011-10-26 00:05:44 +000022#include <i2c.h>
Troy Kisky7aa57a02012-07-19 08:18:09 +000023#include <watchdog.h>
Peng Fan71204e92015-05-15 07:29:12 +080024#include <dm.h>
Peng Fane1bed802016-03-11 16:47:50 +080025#include <dm/pinctrl.h>
Peng Fan71204e92015-05-15 07:29:12 +080026#include <fdtdec.h>
Sascha Hauercdace062008-03-26 20:40:49 +010027
York Sundec18612014-02-10 14:02:52 -080028DECLARE_GLOBAL_DATA_PTR;
29
Peng Fan71204e92015-05-15 07:29:12 +080030#define I2C_QUIRK_FLAG (1 << 0)
31
32#define IMX_I2C_REGSHIFT 2
33#define VF610_I2C_REGSHIFT 0
Yuan Yao9d10c2d2016-06-08 18:24:51 +080034
35#define I2C_EARLY_INIT_INDEX 0
36#ifdef CONFIG_SYS_I2C_IFDR_DIV
37#define I2C_IFDR_DIV_CONSERVATIVE CONFIG_SYS_I2C_IFDR_DIV
38#else
39#define I2C_IFDR_DIV_CONSERVATIVE 0x7e
40#endif
41
Peng Fan71204e92015-05-15 07:29:12 +080042/* Register index */
43#define IADR 0
44#define IFDR 1
45#define I2CR 2
46#define I2SR 3
47#define I2DR 4
Sascha Hauercdace062008-03-26 20:40:49 +010048
Sascha Hauercdace062008-03-26 20:40:49 +010049#define I2CR_IIEN (1 << 6)
50#define I2CR_MSTA (1 << 5)
51#define I2CR_MTX (1 << 4)
52#define I2CR_TX_NO_AK (1 << 3)
53#define I2CR_RSTA (1 << 2)
54
55#define I2SR_ICF (1 << 7)
56#define I2SR_IBB (1 << 5)
Troy Kiskyd5383a62012-07-19 08:18:15 +000057#define I2SR_IAL (1 << 4)
Sascha Hauercdace062008-03-26 20:40:49 +010058#define I2SR_IIF (1 << 1)
59#define I2SR_RX_NO_AK (1 << 0)
60
Alison Wang30ea41a2013-06-17 15:30:39 +080061#ifdef I2C_QUIRK_REG
62#define I2CR_IEN (0 << 7)
63#define I2CR_IDIS (1 << 7)
64#define I2SR_IIF_CLEAR (1 << 1)
65#else
66#define I2CR_IEN (1 << 7)
67#define I2CR_IDIS (0 << 7)
68#define I2SR_IIF_CLEAR (0 << 1)
69#endif
70
Alison Wang30ea41a2013-06-17 15:30:39 +080071#ifdef I2C_QUIRK_REG
72static u16 i2c_clk_div[60][2] = {
73 { 20, 0x00 }, { 22, 0x01 }, { 24, 0x02 }, { 26, 0x03 },
74 { 28, 0x04 }, { 30, 0x05 }, { 32, 0x09 }, { 34, 0x06 },
75 { 36, 0x0A }, { 40, 0x07 }, { 44, 0x0C }, { 48, 0x0D },
76 { 52, 0x43 }, { 56, 0x0E }, { 60, 0x45 }, { 64, 0x12 },
77 { 68, 0x0F }, { 72, 0x13 }, { 80, 0x14 }, { 88, 0x15 },
78 { 96, 0x19 }, { 104, 0x16 }, { 112, 0x1A }, { 128, 0x17 },
79 { 136, 0x4F }, { 144, 0x1C }, { 160, 0x1D }, { 176, 0x55 },
80 { 192, 0x1E }, { 208, 0x56 }, { 224, 0x22 }, { 228, 0x24 },
81 { 240, 0x1F }, { 256, 0x23 }, { 288, 0x5C }, { 320, 0x25 },
82 { 384, 0x26 }, { 448, 0x2A }, { 480, 0x27 }, { 512, 0x2B },
83 { 576, 0x2C }, { 640, 0x2D }, { 768, 0x31 }, { 896, 0x32 },
84 { 960, 0x2F }, { 1024, 0x33 }, { 1152, 0x34 }, { 1280, 0x35 },
85 { 1536, 0x36 }, { 1792, 0x3A }, { 1920, 0x37 }, { 2048, 0x3B },
86 { 2304, 0x3C }, { 2560, 0x3D }, { 3072, 0x3E }, { 3584, 0x7A },
87 { 3840, 0x3F }, { 4096, 0x7B }, { 5120, 0x7D }, { 6144, 0x7E },
88};
89#else
Marek Vasutdb841402011-09-22 09:22:12 +000090static u16 i2c_clk_div[50][2] = {
91 { 22, 0x20 }, { 24, 0x21 }, { 26, 0x22 }, { 28, 0x23 },
92 { 30, 0x00 }, { 32, 0x24 }, { 36, 0x25 }, { 40, 0x26 },
93 { 42, 0x03 }, { 44, 0x27 }, { 48, 0x28 }, { 52, 0x05 },
94 { 56, 0x29 }, { 60, 0x06 }, { 64, 0x2A }, { 72, 0x2B },
95 { 80, 0x2C }, { 88, 0x09 }, { 96, 0x2D }, { 104, 0x0A },
96 { 112, 0x2E }, { 128, 0x2F }, { 144, 0x0C }, { 160, 0x30 },
97 { 192, 0x31 }, { 224, 0x32 }, { 240, 0x0F }, { 256, 0x33 },
98 { 288, 0x10 }, { 320, 0x34 }, { 384, 0x35 }, { 448, 0x36 },
99 { 480, 0x13 }, { 512, 0x37 }, { 576, 0x14 }, { 640, 0x38 },
100 { 768, 0x39 }, { 896, 0x3A }, { 960, 0x17 }, { 1024, 0x3B },
101 { 1152, 0x18 }, { 1280, 0x3C }, { 1536, 0x3D }, { 1792, 0x3E },
102 { 1920, 0x1B }, { 2048, 0x3F }, { 2304, 0x1C }, { 2560, 0x1D },
103 { 3072, 0x1E }, { 3840, 0x1F }
104};
Alison Wang30ea41a2013-06-17 15:30:39 +0800105#endif
Sascha Hauercdace062008-03-26 20:40:49 +0100106
tremfac96402013-09-21 18:13:35 +0200107#ifndef CONFIG_SYS_MXC_I2C1_SPEED
108#define CONFIG_SYS_MXC_I2C1_SPEED 100000
109#endif
110#ifndef CONFIG_SYS_MXC_I2C2_SPEED
111#define CONFIG_SYS_MXC_I2C2_SPEED 100000
112#endif
113#ifndef CONFIG_SYS_MXC_I2C3_SPEED
114#define CONFIG_SYS_MXC_I2C3_SPEED 100000
115#endif
York Sunf8cb1012015-03-20 10:20:40 -0700116#ifndef CONFIG_SYS_MXC_I2C4_SPEED
117#define CONFIG_SYS_MXC_I2C4_SPEED 100000
118#endif
tremfac96402013-09-21 18:13:35 +0200119
120#ifndef CONFIG_SYS_MXC_I2C1_SLAVE
121#define CONFIG_SYS_MXC_I2C1_SLAVE 0
122#endif
123#ifndef CONFIG_SYS_MXC_I2C2_SLAVE
124#define CONFIG_SYS_MXC_I2C2_SLAVE 0
125#endif
126#ifndef CONFIG_SYS_MXC_I2C3_SLAVE
127#define CONFIG_SYS_MXC_I2C3_SLAVE 0
128#endif
York Sunf8cb1012015-03-20 10:20:40 -0700129#ifndef CONFIG_SYS_MXC_I2C4_SLAVE
130#define CONFIG_SYS_MXC_I2C4_SLAVE 0
131#endif
tremfac96402013-09-21 18:13:35 +0200132
Marek Vasutdb841402011-09-22 09:22:12 +0000133/*
134 * Calculate and set proper clock divider
135 */
Peng Fan71204e92015-05-15 07:29:12 +0800136static uint8_t i2c_imx_get_clk(struct mxc_i2c_bus *i2c_bus, unsigned int rate)
Stefano Babic1d549ad2011-01-20 07:50:44 +0000137{
Marek Vasutdb841402011-09-22 09:22:12 +0000138 unsigned int i2c_clk_rate;
139 unsigned int div;
Marek Vasutbf0783d2011-10-26 00:05:44 +0000140 u8 clk_div;
Sascha Hauercdace062008-03-26 20:40:49 +0100141
Liu Hui-R64343127cec12011-01-03 22:27:39 +0000142#if defined(CONFIG_MX31)
Stefano Babic1d549ad2011-01-20 07:50:44 +0000143 struct clock_control_regs *sc_regs =
144 (struct clock_control_regs *)CCM_BASE;
Marek Vasutdb841402011-09-22 09:22:12 +0000145
Guennadi Liakhovetskie7de18a2009-02-13 09:23:36 +0100146 /* start the required I2C clock */
Troy Kiskyde6f6042012-04-24 17:33:25 +0000147 writel(readl(&sc_regs->cgr0) | (3 << CONFIG_SYS_I2C_CLK_OFFSET),
Stefano Babic1d549ad2011-01-20 07:50:44 +0000148 &sc_regs->cgr0);
Liu Hui-R64343127cec12011-01-03 22:27:39 +0000149#endif
Guennadi Liakhovetskie7de18a2009-02-13 09:23:36 +0100150
Marek Vasutdb841402011-09-22 09:22:12 +0000151 /* Divider value calculation */
Matthias Weissere7bed5c2012-09-24 02:46:53 +0000152 i2c_clk_rate = mxc_get_clock(MXC_I2C_CLK);
Marek Vasutdb841402011-09-22 09:22:12 +0000153 div = (i2c_clk_rate + rate - 1) / rate;
154 if (div < i2c_clk_div[0][0])
Marek Vasutb567b8f2011-09-27 06:34:11 +0000155 clk_div = 0;
Marek Vasutdb841402011-09-22 09:22:12 +0000156 else if (div > i2c_clk_div[ARRAY_SIZE(i2c_clk_div) - 1][0])
Marek Vasutb567b8f2011-09-27 06:34:11 +0000157 clk_div = ARRAY_SIZE(i2c_clk_div) - 1;
Marek Vasutdb841402011-09-22 09:22:12 +0000158 else
Marek Vasutb567b8f2011-09-27 06:34:11 +0000159 for (clk_div = 0; i2c_clk_div[clk_div][0] < div; clk_div++)
Marek Vasutdb841402011-09-22 09:22:12 +0000160 ;
Sascha Hauercdace062008-03-26 20:40:49 +0100161
Marek Vasutdb841402011-09-22 09:22:12 +0000162 /* Store divider value */
Marek Vasutbf0783d2011-10-26 00:05:44 +0000163 return clk_div;
Marek Vasutdb841402011-09-22 09:22:12 +0000164}
Sascha Hauercdace062008-03-26 20:40:49 +0100165
Marek Vasutdb841402011-09-22 09:22:12 +0000166/*
Troy Kiskye4ff5252012-07-19 08:18:18 +0000167 * Set I2C Bus speed
Marek Vasutdb841402011-09-22 09:22:12 +0000168 */
Peng Fan71204e92015-05-15 07:29:12 +0800169static int bus_i2c_set_bus_speed(struct mxc_i2c_bus *i2c_bus, int speed)
Marek Vasutdb841402011-09-22 09:22:12 +0000170{
Peng Fan71204e92015-05-15 07:29:12 +0800171 ulong base = i2c_bus->base;
172 bool quirk = i2c_bus->driver_data & I2C_QUIRK_FLAG ? true : false;
173 u8 clk_idx = i2c_imx_get_clk(i2c_bus, speed);
Marek Vasutbf0783d2011-10-26 00:05:44 +0000174 u8 idx = i2c_clk_div[clk_idx][1];
Peng Fan71204e92015-05-15 07:29:12 +0800175 int reg_shift = quirk ? VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT;
Marek Vasutbf0783d2011-10-26 00:05:44 +0000176
Heiko Schochere6c8b712015-05-18 10:58:12 +0200177 if (!base)
Simon Glass7c843192017-09-17 16:54:53 -0600178 return -EINVAL;
Heiko Schochere6c8b712015-05-18 10:58:12 +0200179
Marek Vasutbf0783d2011-10-26 00:05:44 +0000180 /* Store divider value */
Peng Fan71204e92015-05-15 07:29:12 +0800181 writeb(idx, base + (IFDR << reg_shift));
Marek Vasutbf0783d2011-10-26 00:05:44 +0000182
Troy Kisky83a1a192012-07-19 08:18:12 +0000183 /* Reset module */
Peng Fan71204e92015-05-15 07:29:12 +0800184 writeb(I2CR_IDIS, base + (I2CR << reg_shift));
185 writeb(0, base + (I2SR << reg_shift));
Marek Vasutb567b8f2011-09-27 06:34:11 +0000186 return 0;
187}
188
Troy Kisky7aa57a02012-07-19 08:18:09 +0000189#define ST_BUS_IDLE (0 | (I2SR_IBB << 8))
190#define ST_BUS_BUSY (I2SR_IBB | (I2SR_IBB << 8))
191#define ST_IIF (I2SR_IIF | (I2SR_IIF << 8))
192
Peng Fan71204e92015-05-15 07:29:12 +0800193static int wait_for_sr_state(struct mxc_i2c_bus *i2c_bus, unsigned state)
Stefano Babic81687212011-01-20 07:51:31 +0000194{
Troy Kisky7aa57a02012-07-19 08:18:09 +0000195 unsigned sr;
196 ulong elapsed;
Peng Fan71204e92015-05-15 07:29:12 +0800197 bool quirk = i2c_bus->driver_data & I2C_QUIRK_FLAG ? true : false;
198 int reg_shift = quirk ? VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT;
199 ulong base = i2c_bus->base;
Troy Kisky7aa57a02012-07-19 08:18:09 +0000200 ulong start_time = get_timer(0);
201 for (;;) {
Peng Fan71204e92015-05-15 07:29:12 +0800202 sr = readb(base + (I2SR << reg_shift));
Troy Kiskyd5383a62012-07-19 08:18:15 +0000203 if (sr & I2SR_IAL) {
Peng Fan71204e92015-05-15 07:29:12 +0800204 if (quirk)
205 writeb(sr | I2SR_IAL, base +
206 (I2SR << reg_shift));
207 else
208 writeb(sr & ~I2SR_IAL, base +
209 (I2SR << reg_shift));
Troy Kiskyd5383a62012-07-19 08:18:15 +0000210 printf("%s: Arbitration lost sr=%x cr=%x state=%x\n",
Peng Fan71204e92015-05-15 07:29:12 +0800211 __func__, sr, readb(base + (I2CR << reg_shift)),
212 state);
Troy Kiskyd5383a62012-07-19 08:18:15 +0000213 return -ERESTART;
214 }
Troy Kisky7aa57a02012-07-19 08:18:09 +0000215 if ((sr & (state >> 8)) == (unsigned char)state)
216 return sr;
217 WATCHDOG_RESET();
218 elapsed = get_timer(start_time);
219 if (elapsed > (CONFIG_SYS_HZ / 10)) /* .1 seconds */
220 break;
Stefano Babic81687212011-01-20 07:51:31 +0000221 }
Troy Kisky7aa57a02012-07-19 08:18:09 +0000222 printf("%s: failed sr=%x cr=%x state=%x\n", __func__,
Peng Fan71204e92015-05-15 07:29:12 +0800223 sr, readb(base + (I2CR << reg_shift)), state);
Troy Kiskycea60b02012-07-19 08:18:04 +0000224 return -ETIMEDOUT;
Stefano Babic81687212011-01-20 07:51:31 +0000225}
226
Peng Fan71204e92015-05-15 07:29:12 +0800227static int tx_byte(struct mxc_i2c_bus *i2c_bus, u8 byte)
Sascha Hauercdace062008-03-26 20:40:49 +0100228{
Troy Kiskycea60b02012-07-19 08:18:04 +0000229 int ret;
Peng Fan71204e92015-05-15 07:29:12 +0800230 int reg_shift = i2c_bus->driver_data & I2C_QUIRK_FLAG ?
231 VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT;
232 ulong base = i2c_bus->base;
Sascha Hauercdace062008-03-26 20:40:49 +0100233
Peng Fan71204e92015-05-15 07:29:12 +0800234 writeb(I2SR_IIF_CLEAR, base + (I2SR << reg_shift));
235 writeb(byte, base + (I2DR << reg_shift));
236
237 ret = wait_for_sr_state(i2c_bus, ST_IIF);
Troy Kiskycea60b02012-07-19 08:18:04 +0000238 if (ret < 0)
239 return ret;
Troy Kiskycea60b02012-07-19 08:18:04 +0000240 if (ret & I2SR_RX_NO_AK)
Simon Glass7c843192017-09-17 16:54:53 -0600241 return -EREMOTEIO;
Troy Kiskycea60b02012-07-19 08:18:04 +0000242 return 0;
Marek Vasutdb841402011-09-22 09:22:12 +0000243}
244
245/*
Peng Fan71204e92015-05-15 07:29:12 +0800246 * Stub implementations for outer i2c slave operations.
247 */
248void __i2c_force_reset_slave(void)
249{
250}
251void i2c_force_reset_slave(void)
252 __attribute__((weak, alias("__i2c_force_reset_slave")));
253
254/*
Troy Kisky90a5b702012-07-19 08:18:13 +0000255 * Stop I2C transaction
Marek Vasutdb841402011-09-22 09:22:12 +0000256 */
Peng Fan71204e92015-05-15 07:29:12 +0800257static void i2c_imx_stop(struct mxc_i2c_bus *i2c_bus)
Sascha Hauercdace062008-03-26 20:40:49 +0100258{
Troy Kisky7aa57a02012-07-19 08:18:09 +0000259 int ret;
Peng Fan71204e92015-05-15 07:29:12 +0800260 int reg_shift = i2c_bus->driver_data & I2C_QUIRK_FLAG ?
261 VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT;
262 ulong base = i2c_bus->base;
263 unsigned int temp = readb(base + (I2CR << reg_shift));
Sascha Hauercdace062008-03-26 20:40:49 +0100264
Troy Kisky1c076db2012-07-19 08:18:02 +0000265 temp &= ~(I2CR_MSTA | I2CR_MTX);
Peng Fan71204e92015-05-15 07:29:12 +0800266 writeb(temp, base + (I2CR << reg_shift));
267 ret = wait_for_sr_state(i2c_bus, ST_BUS_IDLE);
Troy Kisky7aa57a02012-07-19 08:18:09 +0000268 if (ret < 0)
269 printf("%s:trigger stop failed\n", __func__);
Sascha Hauercdace062008-03-26 20:40:49 +0100270}
271
Marek Vasutdb841402011-09-22 09:22:12 +0000272/*
Troy Kiskyb230ddc2012-07-19 08:18:06 +0000273 * Send start signal, chip address and
274 * write register address
Marek Vasutdb841402011-09-22 09:22:12 +0000275 */
Peng Fan71204e92015-05-15 07:29:12 +0800276static int i2c_init_transfer_(struct mxc_i2c_bus *i2c_bus, u8 chip,
277 u32 addr, int alen)
Sascha Hauercdace062008-03-26 20:40:49 +0100278{
Troy Kisky71e9f3c2012-07-19 08:18:11 +0000279 unsigned int temp;
280 int ret;
Peng Fan71204e92015-05-15 07:29:12 +0800281 bool quirk = i2c_bus->driver_data & I2C_QUIRK_FLAG ? true : false;
282 ulong base = i2c_bus->base;
283 int reg_shift = quirk ? VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT;
284
285 /* Reset i2c slave */
286 i2c_force_reset_slave();
Troy Kisky71e9f3c2012-07-19 08:18:11 +0000287
288 /* Enable I2C controller */
Peng Fan71204e92015-05-15 07:29:12 +0800289 if (quirk)
290 ret = readb(base + (I2CR << reg_shift)) & I2CR_IDIS;
291 else
292 ret = !(readb(base + (I2CR << reg_shift)) & I2CR_IEN);
293
294 if (ret) {
295 writeb(I2CR_IEN, base + (I2CR << reg_shift));
Troy Kisky90a5b702012-07-19 08:18:13 +0000296 /* Wait for controller to be stable */
297 udelay(50);
298 }
Peng Fan71204e92015-05-15 07:29:12 +0800299
300 if (readb(base + (IADR << reg_shift)) == (chip << 1))
301 writeb((chip << 1) ^ 2, base + (IADR << reg_shift));
302 writeb(I2SR_IIF_CLEAR, base + (I2SR << reg_shift));
303 ret = wait_for_sr_state(i2c_bus, ST_BUS_IDLE);
Troy Kisky90a5b702012-07-19 08:18:13 +0000304 if (ret < 0)
Troy Kiskya7f1a002012-07-19 08:18:16 +0000305 return ret;
Troy Kisky71e9f3c2012-07-19 08:18:11 +0000306
307 /* Start I2C transaction */
Peng Fan71204e92015-05-15 07:29:12 +0800308 temp = readb(base + (I2CR << reg_shift));
Troy Kisky71e9f3c2012-07-19 08:18:11 +0000309 temp |= I2CR_MSTA;
Peng Fan71204e92015-05-15 07:29:12 +0800310 writeb(temp, base + (I2CR << reg_shift));
Troy Kisky71e9f3c2012-07-19 08:18:11 +0000311
Peng Fan71204e92015-05-15 07:29:12 +0800312 ret = wait_for_sr_state(i2c_bus, ST_BUS_BUSY);
Troy Kisky71e9f3c2012-07-19 08:18:11 +0000313 if (ret < 0)
Troy Kiskya7f1a002012-07-19 08:18:16 +0000314 return ret;
Troy Kiskyb230ddc2012-07-19 08:18:06 +0000315
Troy Kisky71e9f3c2012-07-19 08:18:11 +0000316 temp |= I2CR_MTX | I2CR_TX_NO_AK;
Peng Fan71204e92015-05-15 07:29:12 +0800317 writeb(temp, base + (I2CR << reg_shift));
Troy Kisky71e9f3c2012-07-19 08:18:11 +0000318
Nandor Han2feec4e2017-11-08 15:35:09 +0000319 if (alen >= 0) {
320 /* write slave address */
321 ret = tx_byte(i2c_bus, chip << 1);
Troy Kiskycea60b02012-07-19 08:18:04 +0000322 if (ret < 0)
Troy Kiskya7f1a002012-07-19 08:18:16 +0000323 return ret;
Nandor Han2feec4e2017-11-08 15:35:09 +0000324
325 while (alen--) {
326 ret = tx_byte(i2c_bus, (addr >> (alen * 8)) & 0xff);
327 if (ret < 0)
328 return ret;
329 }
Stefano Babic81687212011-01-20 07:51:31 +0000330 }
Nandor Han2feec4e2017-11-08 15:35:09 +0000331
Troy Kiskyb230ddc2012-07-19 08:18:06 +0000332 return 0;
Troy Kiskya7f1a002012-07-19 08:18:16 +0000333}
334
Peng Fan71204e92015-05-15 07:29:12 +0800335#ifndef CONFIG_DM_I2C
336int i2c_idle_bus(struct mxc_i2c_bus *i2c_bus)
337{
338 if (i2c_bus && i2c_bus->idle_bus_fn)
339 return i2c_bus->idle_bus_fn(i2c_bus->idle_bus_data);
340 return 0;
341}
342#else
343/*
Peng Fane1bed802016-03-11 16:47:50 +0800344 * See Linux Documentation/devicetree/bindings/i2c/i2c-imx.txt
345 * "
346 * scl-gpios: specify the gpio related to SCL pin
347 * sda-gpios: specify the gpio related to SDA pin
348 * add pinctrl to configure i2c pins to gpio function for i2c
349 * bus recovery, call it "gpio" state
350 * "
351 *
352 * The i2c_idle_bus is an implementation following Linux Kernel.
Peng Fan71204e92015-05-15 07:29:12 +0800353 */
Peng Fan71204e92015-05-15 07:29:12 +0800354int i2c_idle_bus(struct mxc_i2c_bus *i2c_bus)
Peng Fane1bed802016-03-11 16:47:50 +0800355{
356 struct udevice *bus = i2c_bus->bus;
Lukasz Majewskia40fe212019-04-04 12:35:34 +0200357 struct dm_i2c_bus *i2c = dev_get_uclass_priv(bus);
Peng Fane1bed802016-03-11 16:47:50 +0800358 struct gpio_desc *scl_gpio = &i2c_bus->scl_gpio;
359 struct gpio_desc *sda_gpio = &i2c_bus->sda_gpio;
Lukasz Majewskia40fe212019-04-04 12:35:34 +0200360 int sda, scl, idle_sclks;
Peng Fane1bed802016-03-11 16:47:50 +0800361 int i, ret = 0;
362 ulong elapsed, start_time;
363
364 if (pinctrl_select_state(bus, "gpio")) {
365 dev_dbg(bus, "Can not to switch to use gpio pinmux\n");
366 /*
367 * GPIO pinctrl for i2c force idle is not a must,
368 * but it is strongly recommended to be used.
369 * Because it can help you to recover from bad
370 * i2c bus state. Do not return failure, because
371 * it is not a must.
372 */
373 return 0;
374 }
375
376 dm_gpio_set_dir_flags(scl_gpio, GPIOD_IS_IN);
377 dm_gpio_set_dir_flags(sda_gpio, GPIOD_IS_IN);
378 scl = dm_gpio_get_value(scl_gpio);
379 sda = dm_gpio_get_value(sda_gpio);
380
381 if ((sda & scl) == 1)
382 goto exit; /* Bus is idle already */
383
Lukasz Majewskia40fe212019-04-04 12:35:34 +0200384 /*
385 * In most cases it is just enough to generate 8 + 1 SCLK
386 * clocks to recover I2C slave device from 'stuck' state
387 * (when for example SW reset was performed, in the middle of
388 * I2C transmission).
389 *
390 * However, there are devices which send data in packets of
391 * N bytes (N > 1). In such case we do need N * 8 + 1 SCLK
392 * clocks.
393 */
394 idle_sclks = 8 + 1;
395
396 if (i2c->max_transaction_bytes > 0)
397 idle_sclks = i2c->max_transaction_bytes * 8 + 1;
Peng Fane1bed802016-03-11 16:47:50 +0800398 /* Send high and low on the SCL line */
Lukasz Majewskia40fe212019-04-04 12:35:34 +0200399 for (i = 0; i < idle_sclks; i++) {
Peng Fane1bed802016-03-11 16:47:50 +0800400 dm_gpio_set_dir_flags(scl_gpio, GPIOD_IS_OUT);
401 dm_gpio_set_value(scl_gpio, 0);
402 udelay(50);
403 dm_gpio_set_dir_flags(scl_gpio, GPIOD_IS_IN);
404 udelay(50);
405 }
406 start_time = get_timer(0);
407 for (;;) {
408 dm_gpio_set_dir_flags(scl_gpio, GPIOD_IS_IN);
409 dm_gpio_set_dir_flags(sda_gpio, GPIOD_IS_IN);
410 scl = dm_gpio_get_value(scl_gpio);
411 sda = dm_gpio_get_value(sda_gpio);
412 if ((sda & scl) == 1)
413 break;
414 WATCHDOG_RESET();
415 elapsed = get_timer(start_time);
416 if (elapsed > (CONFIG_SYS_HZ / 5)) { /* .2 seconds */
417 ret = -EBUSY;
418 printf("%s: failed to clear bus, sda=%d scl=%d\n", __func__, sda, scl);
419 break;
420 }
421 }
422
423exit:
424 pinctrl_select_state(bus, "default");
425 return ret;
426}
Peng Fan71204e92015-05-15 07:29:12 +0800427#endif
428
429static int i2c_init_transfer(struct mxc_i2c_bus *i2c_bus, u8 chip,
430 u32 addr, int alen)
Troy Kiskya7f1a002012-07-19 08:18:16 +0000431{
432 int retry;
433 int ret;
Peng Fan71204e92015-05-15 07:29:12 +0800434 int reg_shift = i2c_bus->driver_data & I2C_QUIRK_FLAG ?
435 VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT;
Heiko Schochere6c8b712015-05-18 10:58:12 +0200436
437 if (!i2c_bus->base)
Simon Glass7c843192017-09-17 16:54:53 -0600438 return -EINVAL;
Heiko Schochere6c8b712015-05-18 10:58:12 +0200439
Troy Kiskya7f1a002012-07-19 08:18:16 +0000440 for (retry = 0; retry < 3; retry++) {
Peng Fan71204e92015-05-15 07:29:12 +0800441 ret = i2c_init_transfer_(i2c_bus, chip, addr, alen);
Troy Kiskya7f1a002012-07-19 08:18:16 +0000442 if (ret >= 0)
443 return 0;
Peng Fan71204e92015-05-15 07:29:12 +0800444 i2c_imx_stop(i2c_bus);
Simon Glass7c843192017-09-17 16:54:53 -0600445 if (ret == -EREMOTEIO)
Troy Kiskya7f1a002012-07-19 08:18:16 +0000446 return ret;
447
448 printf("%s: failed for chip 0x%x retry=%d\n", __func__, chip,
449 retry);
450 if (ret != -ERESTART)
Alison Wang30ea41a2013-06-17 15:30:39 +0800451 /* Disable controller */
Peng Fan71204e92015-05-15 07:29:12 +0800452 writeb(I2CR_IDIS, i2c_bus->base + (I2CR << reg_shift));
Troy Kiskya7f1a002012-07-19 08:18:16 +0000453 udelay(100);
Peng Fan71204e92015-05-15 07:29:12 +0800454 if (i2c_idle_bus(i2c_bus) < 0)
Troy Kisky96c19bd2012-07-19 08:18:19 +0000455 break;
Troy Kiskya7f1a002012-07-19 08:18:16 +0000456 }
Peng Fan71204e92015-05-15 07:29:12 +0800457 printf("%s: give up i2c_regs=0x%lx\n", __func__, i2c_bus->base);
Marek Vasutdb841402011-09-22 09:22:12 +0000458 return ret;
Sascha Hauercdace062008-03-26 20:40:49 +0100459}
460
Peng Fan71204e92015-05-15 07:29:12 +0800461
462static int i2c_write_data(struct mxc_i2c_bus *i2c_bus, u8 chip, const u8 *buf,
463 int len)
464{
465 int i, ret = 0;
466
467 debug("i2c_write_data: chip=0x%x, len=0x%x\n", chip, len);
468 debug("write_data: ");
469 /* use rc for counter */
470 for (i = 0; i < len; ++i)
471 debug(" 0x%02x", buf[i]);
472 debug("\n");
473
474 for (i = 0; i < len; i++) {
475 ret = tx_byte(i2c_bus, buf[i]);
476 if (ret < 0) {
477 debug("i2c_write_data(): rc=%d\n", ret);
478 break;
479 }
480 }
481
482 return ret;
483}
484
485static int i2c_read_data(struct mxc_i2c_bus *i2c_bus, uchar chip, uchar *buf,
486 int len)
Marek Vasutdb841402011-09-22 09:22:12 +0000487{
Marek Vasutdb841402011-09-22 09:22:12 +0000488 int ret;
489 unsigned int temp;
490 int i;
Peng Fan71204e92015-05-15 07:29:12 +0800491 int reg_shift = i2c_bus->driver_data & I2C_QUIRK_FLAG ?
492 VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT;
493 ulong base = i2c_bus->base;
Marek Vasutdb841402011-09-22 09:22:12 +0000494
Peng Fan71204e92015-05-15 07:29:12 +0800495 debug("i2c_read_data: chip=0x%x, len=0x%x\n", chip, len);
Marek Vasutdb841402011-09-22 09:22:12 +0000496
497 /* setup bus to read data */
Peng Fan71204e92015-05-15 07:29:12 +0800498 temp = readb(base + (I2CR << reg_shift));
Marek Vasutdb841402011-09-22 09:22:12 +0000499 temp &= ~(I2CR_MTX | I2CR_TX_NO_AK);
500 if (len == 1)
501 temp |= I2CR_TX_NO_AK;
Peng Fan71204e92015-05-15 07:29:12 +0800502 writeb(temp, base + (I2CR << reg_shift));
503 writeb(I2SR_IIF_CLEAR, base + (I2SR << reg_shift));
504 /* dummy read to clear ICF */
505 readb(base + (I2DR << reg_shift));
Marek Vasutdb841402011-09-22 09:22:12 +0000506
507 /* read data */
508 for (i = 0; i < len; i++) {
Peng Fan71204e92015-05-15 07:29:12 +0800509 ret = wait_for_sr_state(i2c_bus, ST_IIF);
Troy Kisky7aa57a02012-07-19 08:18:09 +0000510 if (ret < 0) {
Peng Fan71204e92015-05-15 07:29:12 +0800511 debug("i2c_read_data(): ret=%d\n", ret);
512 i2c_imx_stop(i2c_bus);
Marek Vasutdb841402011-09-22 09:22:12 +0000513 return ret;
Troy Kiskyc4330d22012-07-19 08:18:07 +0000514 }
Marek Vasutdb841402011-09-22 09:22:12 +0000515
516 /*
517 * It must generate STOP before read I2DR to prevent
518 * controller from generating another clock cycle
519 */
520 if (i == (len - 1)) {
Peng Fan71204e92015-05-15 07:29:12 +0800521 i2c_imx_stop(i2c_bus);
Marek Vasutdb841402011-09-22 09:22:12 +0000522 } else if (i == (len - 2)) {
Peng Fan71204e92015-05-15 07:29:12 +0800523 temp = readb(base + (I2CR << reg_shift));
Marek Vasutdb841402011-09-22 09:22:12 +0000524 temp |= I2CR_TX_NO_AK;
Peng Fan71204e92015-05-15 07:29:12 +0800525 writeb(temp, base + (I2CR << reg_shift));
Marek Vasutdb841402011-09-22 09:22:12 +0000526 }
Peng Fan71204e92015-05-15 07:29:12 +0800527 writeb(I2SR_IIF_CLEAR, base + (I2SR << reg_shift));
528 buf[i] = readb(base + (I2DR << reg_shift));
Marek Vasutdb841402011-09-22 09:22:12 +0000529 }
Peng Fan71204e92015-05-15 07:29:12 +0800530
531 /* reuse ret for counter*/
532 for (ret = 0; ret < len; ++ret)
533 debug(" 0x%02x", buf[ret]);
534 debug("\n");
535
536 i2c_imx_stop(i2c_bus);
Troy Kisky7aa57a02012-07-19 08:18:09 +0000537 return 0;
Marek Vasutdb841402011-09-22 09:22:12 +0000538}
539
Peng Fan71204e92015-05-15 07:29:12 +0800540#ifndef CONFIG_DM_I2C
541/*
542 * Read data from I2C device
Trent Piepho6314b3c2019-04-30 16:08:18 +0000543 *
544 * The transactions use the syntax defined in the Linux kernel I2C docs.
545 *
546 * If alen is > 0, then this function will send a transaction of the form:
547 * S Chip Wr [A] Addr [A] S Chip Rd [A] [data] A ... NA P
548 * This is a normal I2C register read: writing the register address, then doing
549 * a repeated start and reading the data.
550 *
551 * If alen == 0, then we get this transaction:
552 * S Chip Wr [A] S Chip Rd [A] [data] A ... NA P
553 * This is somewhat unusual, though valid, transaction. It addresses the chip
554 * in write mode, but doesn't actually write any register address or data, then
555 * does a repeated start and reads data.
556 *
557 * If alen < 0, then we get this transaction:
558 * S Chip Rd [A] [data] A ... NA P
559 * The chip is addressed in read mode and then data is read. No register
560 * address is written first. This is perfectly valid on most devices and
561 * required on some (usually those that don't act like an array of registers).
Peng Fan71204e92015-05-15 07:29:12 +0800562 */
563static int bus_i2c_read(struct mxc_i2c_bus *i2c_bus, u8 chip, u32 addr,
564 int alen, u8 *buf, int len)
565{
566 int ret = 0;
567 u32 temp;
568 int reg_shift = i2c_bus->driver_data & I2C_QUIRK_FLAG ?
569 VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT;
570 ulong base = i2c_bus->base;
571
572 ret = i2c_init_transfer(i2c_bus, chip, addr, alen);
573 if (ret < 0)
574 return ret;
575
Nandor Han2feec4e2017-11-08 15:35:09 +0000576 if (alen >= 0) {
577 temp = readb(base + (I2CR << reg_shift));
578 temp |= I2CR_RSTA;
579 writeb(temp, base + (I2CR << reg_shift));
580 }
Peng Fan71204e92015-05-15 07:29:12 +0800581
582 ret = tx_byte(i2c_bus, (chip << 1) | 1);
583 if (ret < 0) {
584 i2c_imx_stop(i2c_bus);
585 return ret;
586 }
587
588 ret = i2c_read_data(i2c_bus, chip, buf, len);
589
590 i2c_imx_stop(i2c_bus);
591 return ret;
592}
593
Marek Vasutdb841402011-09-22 09:22:12 +0000594/*
595 * Write data to I2C device
Trent Piepho6314b3c2019-04-30 16:08:18 +0000596 *
597 * If alen > 0, we get this transaction:
598 * S Chip Wr [A] addr [A] data [A] ... [A] P
599 * An ordinary write register command.
600 *
601 * If alen == 0, then we get this:
602 * S Chip Wr [A] data [A] ... [A] P
603 * This is a simple I2C write.
604 *
605 * If alen < 0, then we get this:
606 * S data [A] ... [A] P
607 * This is most likely NOT something that should be used. It doesn't send the
608 * chip address first, so in effect, the first byte of data will be used as the
609 * address.
Marek Vasutdb841402011-09-22 09:22:12 +0000610 */
Peng Fan71204e92015-05-15 07:29:12 +0800611static int bus_i2c_write(struct mxc_i2c_bus *i2c_bus, u8 chip, u32 addr,
612 int alen, const u8 *buf, int len)
Sascha Hauercdace062008-03-26 20:40:49 +0100613{
Peng Fan71204e92015-05-15 07:29:12 +0800614 int ret = 0;
Sascha Hauercdace062008-03-26 20:40:49 +0100615
Peng Fan71204e92015-05-15 07:29:12 +0800616 ret = i2c_init_transfer(i2c_bus, chip, addr, alen);
Troy Kiskycea60b02012-07-19 08:18:04 +0000617 if (ret < 0)
Marek Vasutdb841402011-09-22 09:22:12 +0000618 return ret;
Sascha Hauercdace062008-03-26 20:40:49 +0100619
Peng Fan71204e92015-05-15 07:29:12 +0800620 ret = i2c_write_data(i2c_bus, chip, buf, len);
621
622 i2c_imx_stop(i2c_bus);
623
Marek Vasutdb841402011-09-22 09:22:12 +0000624 return ret;
Sascha Hauercdace062008-03-26 20:40:49 +0100625}
Troy Kiskycfbb88d2012-07-19 08:18:08 +0000626
Heiko Schochere6c8b712015-05-18 10:58:12 +0200627#if !defined(I2C2_BASE_ADDR)
628#define I2C2_BASE_ADDR 0
Heiko Schocher21a26942015-05-18 10:56:24 +0200629#endif
Heiko Schochere6c8b712015-05-18 10:58:12 +0200630
631#if !defined(I2C3_BASE_ADDR)
632#define I2C3_BASE_ADDR 0
633#endif
634
635#if !defined(I2C4_BASE_ADDR)
636#define I2C4_BASE_ADDR 0
637#endif
638
Sriram Dashfa452192018-02-06 11:26:31 +0530639#if !defined(I2C5_BASE_ADDR)
640#define I2C5_BASE_ADDR 0
641#endif
642
643#if !defined(I2C6_BASE_ADDR)
644#define I2C6_BASE_ADDR 0
645#endif
646
647#if !defined(I2C7_BASE_ADDR)
648#define I2C7_BASE_ADDR 0
649#endif
650
651#if !defined(I2C8_BASE_ADDR)
652#define I2C8_BASE_ADDR 0
653#endif
654
Heiko Schochere6c8b712015-05-18 10:58:12 +0200655static struct mxc_i2c_bus mxc_i2c_buses[] = {
York Sun73fb5832017-03-27 11:41:03 -0700656#if defined(CONFIG_ARCH_LS1021A) || defined(CONFIG_VF610) || \
Mingkai Hu9f3183d2015-10-26 19:47:50 +0800657 defined(CONFIG_FSL_LAYERSCAPE)
Peng Fan71204e92015-05-15 07:29:12 +0800658 { 0, I2C1_BASE_ADDR, I2C_QUIRK_FLAG },
659 { 1, I2C2_BASE_ADDR, I2C_QUIRK_FLAG },
660 { 2, I2C3_BASE_ADDR, I2C_QUIRK_FLAG },
661 { 3, I2C4_BASE_ADDR, I2C_QUIRK_FLAG },
Sriram Dashfa452192018-02-06 11:26:31 +0530662 { 4, I2C5_BASE_ADDR, I2C_QUIRK_FLAG },
663 { 5, I2C6_BASE_ADDR, I2C_QUIRK_FLAG },
664 { 6, I2C7_BASE_ADDR, I2C_QUIRK_FLAG },
665 { 7, I2C8_BASE_ADDR, I2C_QUIRK_FLAG },
Troy Kiskye4ff5252012-07-19 08:18:18 +0000666#else
Heiko Schochere6c8b712015-05-18 10:58:12 +0200667 { 0, I2C1_BASE_ADDR, 0 },
668 { 1, I2C2_BASE_ADDR, 0 },
669 { 2, I2C3_BASE_ADDR, 0 },
670 { 3, I2C4_BASE_ADDR, 0 },
Sriram Dashfa452192018-02-06 11:26:31 +0530671 { 4, I2C5_BASE_ADDR, 0 },
672 { 5, I2C6_BASE_ADDR, 0 },
673 { 6, I2C7_BASE_ADDR, 0 },
674 { 7, I2C8_BASE_ADDR, 0 },
Troy Kiskye4ff5252012-07-19 08:18:18 +0000675#endif
tremfac96402013-09-21 18:13:35 +0200676};
677
Peng Fan71204e92015-05-15 07:29:12 +0800678struct mxc_i2c_bus *i2c_get_base(struct i2c_adapter *adap)
tremfac96402013-09-21 18:13:35 +0200679{
Peng Fan71204e92015-05-15 07:29:12 +0800680 return &mxc_i2c_buses[adap->hwadapnr];
Troy Kisky96c19bd2012-07-19 08:18:19 +0000681}
682
tremfac96402013-09-21 18:13:35 +0200683static int mxc_i2c_read(struct i2c_adapter *adap, uint8_t chip,
684 uint addr, int alen, uint8_t *buffer,
685 int len)
Troy Kisky98153262012-07-19 08:18:20 +0000686{
tremfac96402013-09-21 18:13:35 +0200687 return bus_i2c_read(i2c_get_base(adap), chip, addr, alen, buffer, len);
Troy Kisky98153262012-07-19 08:18:20 +0000688}
689
tremfac96402013-09-21 18:13:35 +0200690static int mxc_i2c_write(struct i2c_adapter *adap, uint8_t chip,
691 uint addr, int alen, uint8_t *buffer,
692 int len)
Troy Kisky98153262012-07-19 08:18:20 +0000693{
tremfac96402013-09-21 18:13:35 +0200694 return bus_i2c_write(i2c_get_base(adap), chip, addr, alen, buffer, len);
Troy Kiskye4ff5252012-07-19 08:18:18 +0000695}
696
Troy Kiskycfbb88d2012-07-19 08:18:08 +0000697/*
698 * Test if a chip at a given address responds (probe the chip)
699 */
tremfac96402013-09-21 18:13:35 +0200700static int mxc_i2c_probe(struct i2c_adapter *adap, uint8_t chip)
Troy Kiskycfbb88d2012-07-19 08:18:08 +0000701{
tremfac96402013-09-21 18:13:35 +0200702 return bus_i2c_write(i2c_get_base(adap), chip, 0, 0, NULL, 0);
Troy Kiskye4ff5252012-07-19 08:18:18 +0000703}
704
Peng Fan71204e92015-05-15 07:29:12 +0800705int __enable_i2c_clk(unsigned char enable, unsigned i2c_num)
Troy Kiskye4ff5252012-07-19 08:18:18 +0000706{
Peng Fan71204e92015-05-15 07:29:12 +0800707 return 1;
708}
709int enable_i2c_clk(unsigned char enable, unsigned i2c_num)
710 __attribute__((weak, alias("__enable_i2c_clk")));
711
712void bus_i2c_init(int index, int speed, int unused,
713 int (*idle_bus_fn)(void *p), void *idle_bus_data)
714{
715 int ret;
716
717 if (index >= ARRAY_SIZE(mxc_i2c_buses)) {
718 debug("Error i2c index\n");
Troy Kiskye4ff5252012-07-19 08:18:18 +0000719 return;
Troy Kiskye4ff5252012-07-19 08:18:18 +0000720 }
Peng Fan71204e92015-05-15 07:29:12 +0800721
Gong Qianyuaee3fdd2015-12-18 17:38:01 +0800722 /*
723 * Warning: Be careful to allow the assignment to a static
724 * variable here. This function could be called while U-Boot is
725 * still running in flash memory. So such assignment is equal
726 * to write data to flash without erasing.
727 */
728 if (idle_bus_fn)
729 mxc_i2c_buses[index].idle_bus_fn = idle_bus_fn;
730 if (idle_bus_data)
731 mxc_i2c_buses[index].idle_bus_data = idle_bus_data;
Peng Fan71204e92015-05-15 07:29:12 +0800732
733 ret = enable_i2c_clk(1, index);
734 if (ret < 0) {
735 debug("I2C-%d clk fail to enable.\n", index);
736 return;
737 }
738
739 bus_i2c_set_bus_speed(&mxc_i2c_buses[index], speed);
Troy Kiskye4ff5252012-07-19 08:18:18 +0000740}
741
742/*
Yuan Yao9d10c2d2016-06-08 18:24:51 +0800743 * Early init I2C for prepare read the clk through I2C.
744 */
745void i2c_early_init_f(void)
746{
747 ulong base = mxc_i2c_buses[I2C_EARLY_INIT_INDEX].base;
748 bool quirk = mxc_i2c_buses[I2C_EARLY_INIT_INDEX].driver_data
749 & I2C_QUIRK_FLAG ? true : false;
750 int reg_shift = quirk ? VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT;
751
752 /* Set I2C divider value */
753 writeb(I2C_IFDR_DIV_CONSERVATIVE, base + (IFDR << reg_shift));
754 /* Reset module */
755 writeb(I2CR_IDIS, base + (I2CR << reg_shift));
756 writeb(0, base + (I2SR << reg_shift));
757 /* Enable I2C */
758 writeb(I2CR_IEN, base + (I2CR << reg_shift));
759}
760
761/*
Troy Kiskye4ff5252012-07-19 08:18:18 +0000762 * Init I2C Bus
763 */
tremfac96402013-09-21 18:13:35 +0200764static void mxc_i2c_init(struct i2c_adapter *adap, int speed, int slaveaddr)
Troy Kiskye4ff5252012-07-19 08:18:18 +0000765{
Peng Fan71204e92015-05-15 07:29:12 +0800766 bus_i2c_init(adap->hwadapnr, speed, slaveaddr, NULL, NULL);
Troy Kiskye4ff5252012-07-19 08:18:18 +0000767}
768
769/*
770 * Set I2C Speed
771 */
Peng Fan71204e92015-05-15 07:29:12 +0800772static u32 mxc_i2c_set_bus_speed(struct i2c_adapter *adap, uint speed)
Troy Kiskye4ff5252012-07-19 08:18:18 +0000773{
tremfac96402013-09-21 18:13:35 +0200774 return bus_i2c_set_bus_speed(i2c_get_base(adap), speed);
Troy Kiskye4ff5252012-07-19 08:18:18 +0000775}
776
777/*
tremfac96402013-09-21 18:13:35 +0200778 * Register mxc i2c adapters
Troy Kiskye4ff5252012-07-19 08:18:18 +0000779 */
Albert ARIBAUD \\(3ADEV\\)03544c62015-09-21 22:43:38 +0200780#ifdef CONFIG_SYS_I2C_MXC_I2C1
tremfac96402013-09-21 18:13:35 +0200781U_BOOT_I2C_ADAP_COMPLETE(mxc0, mxc_i2c_init, mxc_i2c_probe,
782 mxc_i2c_read, mxc_i2c_write,
783 mxc_i2c_set_bus_speed,
784 CONFIG_SYS_MXC_I2C1_SPEED,
785 CONFIG_SYS_MXC_I2C1_SLAVE, 0)
Albert ARIBAUD \\(3ADEV\\)03544c62015-09-21 22:43:38 +0200786#endif
787
788#ifdef CONFIG_SYS_I2C_MXC_I2C2
tremfac96402013-09-21 18:13:35 +0200789U_BOOT_I2C_ADAP_COMPLETE(mxc1, mxc_i2c_init, mxc_i2c_probe,
790 mxc_i2c_read, mxc_i2c_write,
791 mxc_i2c_set_bus_speed,
792 CONFIG_SYS_MXC_I2C2_SPEED,
793 CONFIG_SYS_MXC_I2C2_SLAVE, 1)
Albert ARIBAUD \\(3ADEV\\)03544c62015-09-21 22:43:38 +0200794#endif
795
York Sunf8cb1012015-03-20 10:20:40 -0700796#ifdef CONFIG_SYS_I2C_MXC_I2C3
tremfac96402013-09-21 18:13:35 +0200797U_BOOT_I2C_ADAP_COMPLETE(mxc2, mxc_i2c_init, mxc_i2c_probe,
798 mxc_i2c_read, mxc_i2c_write,
799 mxc_i2c_set_bus_speed,
800 CONFIG_SYS_MXC_I2C3_SPEED,
801 CONFIG_SYS_MXC_I2C3_SLAVE, 2)
802#endif
Peng Fan71204e92015-05-15 07:29:12 +0800803
York Sunf8cb1012015-03-20 10:20:40 -0700804#ifdef CONFIG_SYS_I2C_MXC_I2C4
805U_BOOT_I2C_ADAP_COMPLETE(mxc3, mxc_i2c_init, mxc_i2c_probe,
806 mxc_i2c_read, mxc_i2c_write,
807 mxc_i2c_set_bus_speed,
808 CONFIG_SYS_MXC_I2C4_SPEED,
809 CONFIG_SYS_MXC_I2C4_SLAVE, 3)
810#endif
Peng Fan71204e92015-05-15 07:29:12 +0800811
Sriram Dashfa452192018-02-06 11:26:31 +0530812#ifdef CONFIG_SYS_I2C_MXC_I2C5
813U_BOOT_I2C_ADAP_COMPLETE(mxc4, mxc_i2c_init, mxc_i2c_probe,
814 mxc_i2c_read, mxc_i2c_write,
815 mxc_i2c_set_bus_speed,
816 CONFIG_SYS_MXC_I2C5_SPEED,
817 CONFIG_SYS_MXC_I2C5_SLAVE, 4)
818#endif
819
820#ifdef CONFIG_SYS_I2C_MXC_I2C6
821U_BOOT_I2C_ADAP_COMPLETE(mxc5, mxc_i2c_init, mxc_i2c_probe,
822 mxc_i2c_read, mxc_i2c_write,
823 mxc_i2c_set_bus_speed,
824 CONFIG_SYS_MXC_I2C6_SPEED,
825 CONFIG_SYS_MXC_I2C6_SLAVE, 5)
826#endif
827
828#ifdef CONFIG_SYS_I2C_MXC_I2C7
829U_BOOT_I2C_ADAP_COMPLETE(mxc6, mxc_i2c_init, mxc_i2c_probe,
830 mxc_i2c_read, mxc_i2c_write,
831 mxc_i2c_set_bus_speed,
832 CONFIG_SYS_MXC_I2C7_SPEED,
833 CONFIG_SYS_MXC_I2C7_SLAVE, 6)
834#endif
835
836#ifdef CONFIG_SYS_I2C_MXC_I2C8
837U_BOOT_I2C_ADAP_COMPLETE(mxc7, mxc_i2c_init, mxc_i2c_probe,
838 mxc_i2c_read, mxc_i2c_write,
839 mxc_i2c_set_bus_speed,
840 CONFIG_SYS_MXC_I2C8_SPEED,
841 CONFIG_SYS_MXC_I2C8_SLAVE, 7)
842#endif
843
Peng Fan71204e92015-05-15 07:29:12 +0800844#else
845
846static int mxc_i2c_set_bus_speed(struct udevice *bus, unsigned int speed)
847{
848 struct mxc_i2c_bus *i2c_bus = dev_get_priv(bus);
849
850 return bus_i2c_set_bus_speed(i2c_bus, speed);
851}
852
853static int mxc_i2c_probe(struct udevice *bus)
854{
855 struct mxc_i2c_bus *i2c_bus = dev_get_priv(bus);
Peng Fane1bed802016-03-11 16:47:50 +0800856 const void *fdt = gd->fdt_blob;
Simon Glasse160f7d2017-01-17 16:52:55 -0700857 int node = dev_of_offset(bus);
Peng Fan71204e92015-05-15 07:29:12 +0800858 fdt_addr_t addr;
Peng Fane1bed802016-03-11 16:47:50 +0800859 int ret, ret2;
Peng Fan71204e92015-05-15 07:29:12 +0800860
861 i2c_bus->driver_data = dev_get_driver_data(bus);
862
Simon Glassa821c4a2017-05-17 17:18:05 -0600863 addr = devfdt_get_addr(bus);
Peng Fan71204e92015-05-15 07:29:12 +0800864 if (addr == FDT_ADDR_T_NONE)
Simon Glass7c843192017-09-17 16:54:53 -0600865 return -EINVAL;
Peng Fan71204e92015-05-15 07:29:12 +0800866
867 i2c_bus->base = addr;
868 i2c_bus->index = bus->seq;
Peng Fane1bed802016-03-11 16:47:50 +0800869 i2c_bus->bus = bus;
Peng Fan71204e92015-05-15 07:29:12 +0800870
871 /* Enable clk */
872 ret = enable_i2c_clk(1, bus->seq);
873 if (ret < 0)
874 return ret;
875
Peng Fane1bed802016-03-11 16:47:50 +0800876 /*
877 * See Documentation/devicetree/bindings/i2c/i2c-imx.txt
878 * Use gpio to force bus idle when necessary.
879 */
Simon Glassb02e4042016-10-02 17:59:28 -0600880 ret = fdt_stringlist_search(fdt, node, "pinctrl-names", "gpio");
Peng Fane1bed802016-03-11 16:47:50 +0800881 if (ret < 0) {
Jagan Teki2da24fe2016-12-06 00:00:59 +0100882 debug("i2c bus %d at 0x%2lx, no gpio pinctrl state.\n", bus->seq, i2c_bus->base);
Peng Fane1bed802016-03-11 16:47:50 +0800883 } else {
Simon Glass150c5af2017-05-30 21:47:09 -0600884 ret = gpio_request_by_name_nodev(offset_to_ofnode(node),
885 "scl-gpios", 0, &i2c_bus->scl_gpio,
886 GPIOD_IS_OUT);
887 ret2 = gpio_request_by_name_nodev(offset_to_ofnode(node),
888 "sda-gpios", 0, &i2c_bus->sda_gpio,
889 GPIOD_IS_OUT);
Peng Fanfb012872017-12-29 15:06:08 +0800890 if (!dm_gpio_is_valid(&i2c_bus->sda_gpio) ||
891 !dm_gpio_is_valid(&i2c_bus->scl_gpio) ||
892 ret || ret2) {
Peng Fane1bed802016-03-11 16:47:50 +0800893 dev_err(dev, "i2c bus %d at %lu, fail to request scl/sda gpio\n", bus->seq, i2c_bus->base);
Simon Glass7c843192017-09-17 16:54:53 -0600894 return -EINVAL;
Peng Fane1bed802016-03-11 16:47:50 +0800895 }
896 }
897
Peng Fan71204e92015-05-15 07:29:12 +0800898 ret = i2c_idle_bus(i2c_bus);
899 if (ret < 0) {
900 /* Disable clk */
901 enable_i2c_clk(0, bus->seq);
902 return ret;
903 }
904
905 /*
906 * Pinmux settings are in board file now, until pinmux is supported,
907 * we can set pinmux here in probe function.
908 */
909
910 debug("i2c : controller bus %d at %lu , speed %d: ",
911 bus->seq, i2c_bus->base,
912 i2c_bus->speed);
913
914 return 0;
915}
916
Trent Piepho6314b3c2019-04-30 16:08:18 +0000917/* Sends: S Addr Wr [A|NA] P */
Peng Fan71204e92015-05-15 07:29:12 +0800918static int mxc_i2c_probe_chip(struct udevice *bus, u32 chip_addr,
919 u32 chip_flags)
920{
921 int ret;
922 struct mxc_i2c_bus *i2c_bus = dev_get_priv(bus);
923
924 ret = i2c_init_transfer(i2c_bus, chip_addr, 0, 0);
925 if (ret < 0) {
926 debug("%s failed, ret = %d\n", __func__, ret);
927 return ret;
928 }
929
930 i2c_imx_stop(i2c_bus);
931
932 return 0;
933}
934
935static int mxc_i2c_xfer(struct udevice *bus, struct i2c_msg *msg, int nmsgs)
936{
937 struct mxc_i2c_bus *i2c_bus = dev_get_priv(bus);
938 int ret = 0;
939 ulong base = i2c_bus->base;
940 int reg_shift = i2c_bus->driver_data & I2C_QUIRK_FLAG ?
941 VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT;
942
943 /*
944 * Here the 3rd parameter addr and the 4th one alen are set to 0,
945 * because here we only want to send out chip address. The register
946 * address is wrapped in msg.
947 */
948 ret = i2c_init_transfer(i2c_bus, msg->addr, 0, 0);
949 if (ret < 0) {
950 debug("i2c_init_transfer error: %d\n", ret);
951 return ret;
952 }
953
954 for (; nmsgs > 0; nmsgs--, msg++) {
955 bool next_is_read = nmsgs > 1 && (msg[1].flags & I2C_M_RD);
956 debug("i2c_xfer: chip=0x%x, len=0x%x\n", msg->addr, msg->len);
957 if (msg->flags & I2C_M_RD)
958 ret = i2c_read_data(i2c_bus, msg->addr, msg->buf,
959 msg->len);
960 else {
961 ret = i2c_write_data(i2c_bus, msg->addr, msg->buf,
962 msg->len);
963 if (ret)
964 break;
965 if (next_is_read) {
966 /* Reuse ret */
967 ret = readb(base + (I2CR << reg_shift));
968 ret |= I2CR_RSTA;
969 writeb(ret, base + (I2CR << reg_shift));
970
971 ret = tx_byte(i2c_bus, (msg->addr << 1) | 1);
972 if (ret < 0) {
973 i2c_imx_stop(i2c_bus);
974 break;
975 }
976 }
977 }
978 }
979
980 if (ret)
981 debug("i2c_write: error sending\n");
982
983 i2c_imx_stop(i2c_bus);
984
985 return ret;
986}
987
988static const struct dm_i2c_ops mxc_i2c_ops = {
989 .xfer = mxc_i2c_xfer,
990 .probe_chip = mxc_i2c_probe_chip,
991 .set_bus_speed = mxc_i2c_set_bus_speed,
992};
993
994static const struct udevice_id mxc_i2c_ids[] = {
995 { .compatible = "fsl,imx21-i2c", },
996 { .compatible = "fsl,vf610-i2c", .data = I2C_QUIRK_FLAG, },
997 {}
998};
999
1000U_BOOT_DRIVER(i2c_mxc) = {
1001 .name = "i2c_mxc",
1002 .id = UCLASS_I2C,
1003 .of_match = mxc_i2c_ids,
1004 .probe = mxc_i2c_probe,
1005 .priv_auto_alloc_size = sizeof(struct mxc_i2c_bus),
1006 .ops = &mxc_i2c_ops,
1007};
1008#endif