blob: 9e1bafc7e1e31f66c333c974dc453e055f32095e [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>
Biwen Li9c31c532020-07-02 11:13:00 +08007 * Copyright 2020 NXP
Marek Vasutdb841402011-09-22 09:22:12 +00008 *
9 * Based on i2c-imx.c from linux kernel:
10 * Copyright (C) 2005 Torsten Koschorrek <koschorrek at synertronixx.de>
11 * Copyright (C) 2005 Matthias Blaschke <blaschke at synertronixx.de>
12 * Copyright (C) 2007 RightHand Technologies, Inc.
13 * Copyright (C) 2008 Darius Augulis <darius.augulis at teltonika.lt>
14 *
Sascha Hauercdace062008-03-26 20:40:49 +010015 */
16
17#include <common.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060018#include <log.h>
Liu Hui-R64343127cec12011-01-03 22:27:39 +000019#include <asm/arch/clock.h>
Stefano Babic86271112011-03-14 15:43:56 +010020#include <asm/arch/imx-regs.h>
Simon Glass336d4612020-02-03 07:36:16 -070021#include <dm/device_compat.h>
Simon Glassc05ed002020-05-10 11:40:11 -060022#include <linux/delay.h>
Masahiro Yamada1221ce42016-09-21 11:28:55 +090023#include <linux/errno.h>
Stefano Babic552a8482017-06-29 10:16:06 +020024#include <asm/mach-imx/mxc_i2c.h>
Peng Fan7d1ee742020-05-01 22:08:35 +080025#include <asm/mach-imx/sys_proto.h>
Troy Kisky24cd7382012-07-19 08:18:03 +000026#include <asm/io.h>
Marek Vasutbf0783d2011-10-26 00:05:44 +000027#include <i2c.h>
Troy Kisky7aa57a02012-07-19 08:18:09 +000028#include <watchdog.h>
Peng Fan71204e92015-05-15 07:29:12 +080029#include <dm.h>
Peng Fane1bed802016-03-11 16:47:50 +080030#include <dm/pinctrl.h>
Peng Fan71204e92015-05-15 07:29:12 +080031#include <fdtdec.h>
Sascha Hauercdace062008-03-26 20:40:49 +010032
York Sundec18612014-02-10 14:02:52 -080033DECLARE_GLOBAL_DATA_PTR;
34
Peng Fan71204e92015-05-15 07:29:12 +080035#define I2C_QUIRK_FLAG (1 << 0)
36
37#define IMX_I2C_REGSHIFT 2
38#define VF610_I2C_REGSHIFT 0
Yuan Yao9d10c2d2016-06-08 18:24:51 +080039
40#define I2C_EARLY_INIT_INDEX 0
41#ifdef CONFIG_SYS_I2C_IFDR_DIV
42#define I2C_IFDR_DIV_CONSERVATIVE CONFIG_SYS_I2C_IFDR_DIV
43#else
44#define I2C_IFDR_DIV_CONSERVATIVE 0x7e
45#endif
46
Peng Fan71204e92015-05-15 07:29:12 +080047/* Register index */
48#define IADR 0
49#define IFDR 1
50#define I2CR 2
51#define I2SR 3
52#define I2DR 4
Sascha Hauercdace062008-03-26 20:40:49 +010053
Sascha Hauercdace062008-03-26 20:40:49 +010054#define I2CR_IIEN (1 << 6)
55#define I2CR_MSTA (1 << 5)
56#define I2CR_MTX (1 << 4)
57#define I2CR_TX_NO_AK (1 << 3)
58#define I2CR_RSTA (1 << 2)
59
60#define I2SR_ICF (1 << 7)
61#define I2SR_IBB (1 << 5)
Troy Kiskyd5383a62012-07-19 08:18:15 +000062#define I2SR_IAL (1 << 4)
Sascha Hauercdace062008-03-26 20:40:49 +010063#define I2SR_IIF (1 << 1)
64#define I2SR_RX_NO_AK (1 << 0)
65
Alison Wang30ea41a2013-06-17 15:30:39 +080066#ifdef I2C_QUIRK_REG
67#define I2CR_IEN (0 << 7)
68#define I2CR_IDIS (1 << 7)
69#define I2SR_IIF_CLEAR (1 << 1)
70#else
71#define I2CR_IEN (1 << 7)
72#define I2CR_IDIS (0 << 7)
73#define I2SR_IIF_CLEAR (0 << 1)
74#endif
75
Alison Wang30ea41a2013-06-17 15:30:39 +080076#ifdef I2C_QUIRK_REG
77static u16 i2c_clk_div[60][2] = {
78 { 20, 0x00 }, { 22, 0x01 }, { 24, 0x02 }, { 26, 0x03 },
79 { 28, 0x04 }, { 30, 0x05 }, { 32, 0x09 }, { 34, 0x06 },
80 { 36, 0x0A }, { 40, 0x07 }, { 44, 0x0C }, { 48, 0x0D },
81 { 52, 0x43 }, { 56, 0x0E }, { 60, 0x45 }, { 64, 0x12 },
82 { 68, 0x0F }, { 72, 0x13 }, { 80, 0x14 }, { 88, 0x15 },
83 { 96, 0x19 }, { 104, 0x16 }, { 112, 0x1A }, { 128, 0x17 },
84 { 136, 0x4F }, { 144, 0x1C }, { 160, 0x1D }, { 176, 0x55 },
85 { 192, 0x1E }, { 208, 0x56 }, { 224, 0x22 }, { 228, 0x24 },
86 { 240, 0x1F }, { 256, 0x23 }, { 288, 0x5C }, { 320, 0x25 },
87 { 384, 0x26 }, { 448, 0x2A }, { 480, 0x27 }, { 512, 0x2B },
88 { 576, 0x2C }, { 640, 0x2D }, { 768, 0x31 }, { 896, 0x32 },
89 { 960, 0x2F }, { 1024, 0x33 }, { 1152, 0x34 }, { 1280, 0x35 },
90 { 1536, 0x36 }, { 1792, 0x3A }, { 1920, 0x37 }, { 2048, 0x3B },
91 { 2304, 0x3C }, { 2560, 0x3D }, { 3072, 0x3E }, { 3584, 0x7A },
92 { 3840, 0x3F }, { 4096, 0x7B }, { 5120, 0x7D }, { 6144, 0x7E },
93};
94#else
Marek Vasutdb841402011-09-22 09:22:12 +000095static u16 i2c_clk_div[50][2] = {
96 { 22, 0x20 }, { 24, 0x21 }, { 26, 0x22 }, { 28, 0x23 },
97 { 30, 0x00 }, { 32, 0x24 }, { 36, 0x25 }, { 40, 0x26 },
98 { 42, 0x03 }, { 44, 0x27 }, { 48, 0x28 }, { 52, 0x05 },
99 { 56, 0x29 }, { 60, 0x06 }, { 64, 0x2A }, { 72, 0x2B },
100 { 80, 0x2C }, { 88, 0x09 }, { 96, 0x2D }, { 104, 0x0A },
101 { 112, 0x2E }, { 128, 0x2F }, { 144, 0x0C }, { 160, 0x30 },
102 { 192, 0x31 }, { 224, 0x32 }, { 240, 0x0F }, { 256, 0x33 },
103 { 288, 0x10 }, { 320, 0x34 }, { 384, 0x35 }, { 448, 0x36 },
104 { 480, 0x13 }, { 512, 0x37 }, { 576, 0x14 }, { 640, 0x38 },
105 { 768, 0x39 }, { 896, 0x3A }, { 960, 0x17 }, { 1024, 0x3B },
106 { 1152, 0x18 }, { 1280, 0x3C }, { 1536, 0x3D }, { 1792, 0x3E },
107 { 1920, 0x1B }, { 2048, 0x3F }, { 2304, 0x1C }, { 2560, 0x1D },
108 { 3072, 0x1E }, { 3840, 0x1F }
109};
Alison Wang30ea41a2013-06-17 15:30:39 +0800110#endif
Sascha Hauercdace062008-03-26 20:40:49 +0100111
tremfac96402013-09-21 18:13:35 +0200112#ifndef CONFIG_SYS_MXC_I2C1_SPEED
113#define CONFIG_SYS_MXC_I2C1_SPEED 100000
114#endif
115#ifndef CONFIG_SYS_MXC_I2C2_SPEED
116#define CONFIG_SYS_MXC_I2C2_SPEED 100000
117#endif
118#ifndef CONFIG_SYS_MXC_I2C3_SPEED
119#define CONFIG_SYS_MXC_I2C3_SPEED 100000
120#endif
York Sunf8cb1012015-03-20 10:20:40 -0700121#ifndef CONFIG_SYS_MXC_I2C4_SPEED
122#define CONFIG_SYS_MXC_I2C4_SPEED 100000
123#endif
tremfac96402013-09-21 18:13:35 +0200124
125#ifndef CONFIG_SYS_MXC_I2C1_SLAVE
126#define CONFIG_SYS_MXC_I2C1_SLAVE 0
127#endif
128#ifndef CONFIG_SYS_MXC_I2C2_SLAVE
129#define CONFIG_SYS_MXC_I2C2_SLAVE 0
130#endif
131#ifndef CONFIG_SYS_MXC_I2C3_SLAVE
132#define CONFIG_SYS_MXC_I2C3_SLAVE 0
133#endif
York Sunf8cb1012015-03-20 10:20:40 -0700134#ifndef CONFIG_SYS_MXC_I2C4_SLAVE
135#define CONFIG_SYS_MXC_I2C4_SLAVE 0
136#endif
tremfac96402013-09-21 18:13:35 +0200137
Marek Vasutdb841402011-09-22 09:22:12 +0000138/*
139 * Calculate and set proper clock divider
140 */
Peng Fan71204e92015-05-15 07:29:12 +0800141static uint8_t i2c_imx_get_clk(struct mxc_i2c_bus *i2c_bus, unsigned int rate)
Stefano Babic1d549ad2011-01-20 07:50:44 +0000142{
Marek Vasutdb841402011-09-22 09:22:12 +0000143 unsigned int i2c_clk_rate;
144 unsigned int div;
Marek Vasutbf0783d2011-10-26 00:05:44 +0000145 u8 clk_div;
Sascha Hauercdace062008-03-26 20:40:49 +0100146
Liu Hui-R64343127cec12011-01-03 22:27:39 +0000147#if defined(CONFIG_MX31)
Stefano Babic1d549ad2011-01-20 07:50:44 +0000148 struct clock_control_regs *sc_regs =
149 (struct clock_control_regs *)CCM_BASE;
Marek Vasutdb841402011-09-22 09:22:12 +0000150
Guennadi Liakhovetskie7de18a2009-02-13 09:23:36 +0100151 /* start the required I2C clock */
Troy Kiskyde6f6042012-04-24 17:33:25 +0000152 writel(readl(&sc_regs->cgr0) | (3 << CONFIG_SYS_I2C_CLK_OFFSET),
Stefano Babic1d549ad2011-01-20 07:50:44 +0000153 &sc_regs->cgr0);
Liu Hui-R64343127cec12011-01-03 22:27:39 +0000154#endif
Guennadi Liakhovetskie7de18a2009-02-13 09:23:36 +0100155
Marek Vasutdb841402011-09-22 09:22:12 +0000156 /* Divider value calculation */
Peng Fan6dba0862019-08-08 01:43:30 +0000157#if CONFIG_IS_ENABLED(CLK)
158 i2c_clk_rate = clk_get_rate(&i2c_bus->per_clk);
159#else
Matthias Weissere7bed5c2012-09-24 02:46:53 +0000160 i2c_clk_rate = mxc_get_clock(MXC_I2C_CLK);
Peng Fan6dba0862019-08-08 01:43:30 +0000161#endif
162
Marek Vasutdb841402011-09-22 09:22:12 +0000163 div = (i2c_clk_rate + rate - 1) / rate;
164 if (div < i2c_clk_div[0][0])
Marek Vasutb567b8f2011-09-27 06:34:11 +0000165 clk_div = 0;
Marek Vasutdb841402011-09-22 09:22:12 +0000166 else if (div > i2c_clk_div[ARRAY_SIZE(i2c_clk_div) - 1][0])
Marek Vasutb567b8f2011-09-27 06:34:11 +0000167 clk_div = ARRAY_SIZE(i2c_clk_div) - 1;
Marek Vasutdb841402011-09-22 09:22:12 +0000168 else
Marek Vasutb567b8f2011-09-27 06:34:11 +0000169 for (clk_div = 0; i2c_clk_div[clk_div][0] < div; clk_div++)
Marek Vasutdb841402011-09-22 09:22:12 +0000170 ;
Sascha Hauercdace062008-03-26 20:40:49 +0100171
Marek Vasutdb841402011-09-22 09:22:12 +0000172 /* Store divider value */
Marek Vasutbf0783d2011-10-26 00:05:44 +0000173 return clk_div;
Marek Vasutdb841402011-09-22 09:22:12 +0000174}
Sascha Hauercdace062008-03-26 20:40:49 +0100175
Marek Vasutdb841402011-09-22 09:22:12 +0000176/*
Troy Kiskye4ff5252012-07-19 08:18:18 +0000177 * Set I2C Bus speed
Marek Vasutdb841402011-09-22 09:22:12 +0000178 */
Peng Fan71204e92015-05-15 07:29:12 +0800179static int bus_i2c_set_bus_speed(struct mxc_i2c_bus *i2c_bus, int speed)
Marek Vasutdb841402011-09-22 09:22:12 +0000180{
Peng Fan71204e92015-05-15 07:29:12 +0800181 ulong base = i2c_bus->base;
182 bool quirk = i2c_bus->driver_data & I2C_QUIRK_FLAG ? true : false;
183 u8 clk_idx = i2c_imx_get_clk(i2c_bus, speed);
Marek Vasutbf0783d2011-10-26 00:05:44 +0000184 u8 idx = i2c_clk_div[clk_idx][1];
Peng Fan71204e92015-05-15 07:29:12 +0800185 int reg_shift = quirk ? VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT;
Marek Vasutbf0783d2011-10-26 00:05:44 +0000186
Heiko Schochere6c8b712015-05-18 10:58:12 +0200187 if (!base)
Simon Glass7c843192017-09-17 16:54:53 -0600188 return -EINVAL;
Heiko Schochere6c8b712015-05-18 10:58:12 +0200189
Marek Vasutbf0783d2011-10-26 00:05:44 +0000190 /* Store divider value */
Peng Fan71204e92015-05-15 07:29:12 +0800191 writeb(idx, base + (IFDR << reg_shift));
Marek Vasutbf0783d2011-10-26 00:05:44 +0000192
Troy Kisky83a1a192012-07-19 08:18:12 +0000193 /* Reset module */
Peng Fan71204e92015-05-15 07:29:12 +0800194 writeb(I2CR_IDIS, base + (I2CR << reg_shift));
195 writeb(0, base + (I2SR << reg_shift));
Marek Vasutb567b8f2011-09-27 06:34:11 +0000196 return 0;
197}
198
Troy Kisky7aa57a02012-07-19 08:18:09 +0000199#define ST_BUS_IDLE (0 | (I2SR_IBB << 8))
200#define ST_BUS_BUSY (I2SR_IBB | (I2SR_IBB << 8))
201#define ST_IIF (I2SR_IIF | (I2SR_IIF << 8))
202
Peng Fan71204e92015-05-15 07:29:12 +0800203static int wait_for_sr_state(struct mxc_i2c_bus *i2c_bus, unsigned state)
Stefano Babic81687212011-01-20 07:51:31 +0000204{
Troy Kisky7aa57a02012-07-19 08:18:09 +0000205 unsigned sr;
206 ulong elapsed;
Peng Fan71204e92015-05-15 07:29:12 +0800207 bool quirk = i2c_bus->driver_data & I2C_QUIRK_FLAG ? true : false;
208 int reg_shift = quirk ? VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT;
209 ulong base = i2c_bus->base;
Troy Kisky7aa57a02012-07-19 08:18:09 +0000210 ulong start_time = get_timer(0);
211 for (;;) {
Peng Fan71204e92015-05-15 07:29:12 +0800212 sr = readb(base + (I2SR << reg_shift));
Troy Kiskyd5383a62012-07-19 08:18:15 +0000213 if (sr & I2SR_IAL) {
Peng Fan71204e92015-05-15 07:29:12 +0800214 if (quirk)
215 writeb(sr | I2SR_IAL, base +
216 (I2SR << reg_shift));
217 else
218 writeb(sr & ~I2SR_IAL, base +
219 (I2SR << reg_shift));
Troy Kiskyd5383a62012-07-19 08:18:15 +0000220 printf("%s: Arbitration lost sr=%x cr=%x state=%x\n",
Peng Fan71204e92015-05-15 07:29:12 +0800221 __func__, sr, readb(base + (I2CR << reg_shift)),
222 state);
Troy Kiskyd5383a62012-07-19 08:18:15 +0000223 return -ERESTART;
224 }
Troy Kisky7aa57a02012-07-19 08:18:09 +0000225 if ((sr & (state >> 8)) == (unsigned char)state)
226 return sr;
227 WATCHDOG_RESET();
228 elapsed = get_timer(start_time);
229 if (elapsed > (CONFIG_SYS_HZ / 10)) /* .1 seconds */
230 break;
Stefano Babic81687212011-01-20 07:51:31 +0000231 }
Troy Kisky7aa57a02012-07-19 08:18:09 +0000232 printf("%s: failed sr=%x cr=%x state=%x\n", __func__,
Peng Fan71204e92015-05-15 07:29:12 +0800233 sr, readb(base + (I2CR << reg_shift)), state);
Troy Kiskycea60b02012-07-19 08:18:04 +0000234 return -ETIMEDOUT;
Stefano Babic81687212011-01-20 07:51:31 +0000235}
236
Peng Fan71204e92015-05-15 07:29:12 +0800237static int tx_byte(struct mxc_i2c_bus *i2c_bus, u8 byte)
Sascha Hauercdace062008-03-26 20:40:49 +0100238{
Troy Kiskycea60b02012-07-19 08:18:04 +0000239 int ret;
Peng Fan71204e92015-05-15 07:29:12 +0800240 int reg_shift = i2c_bus->driver_data & I2C_QUIRK_FLAG ?
241 VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT;
242 ulong base = i2c_bus->base;
Sascha Hauercdace062008-03-26 20:40:49 +0100243
Peng Fan71204e92015-05-15 07:29:12 +0800244 writeb(I2SR_IIF_CLEAR, base + (I2SR << reg_shift));
245 writeb(byte, base + (I2DR << reg_shift));
246
247 ret = wait_for_sr_state(i2c_bus, ST_IIF);
Troy Kiskycea60b02012-07-19 08:18:04 +0000248 if (ret < 0)
249 return ret;
Troy Kiskycea60b02012-07-19 08:18:04 +0000250 if (ret & I2SR_RX_NO_AK)
Simon Glass7c843192017-09-17 16:54:53 -0600251 return -EREMOTEIO;
Troy Kiskycea60b02012-07-19 08:18:04 +0000252 return 0;
Marek Vasutdb841402011-09-22 09:22:12 +0000253}
254
255/*
Peng Fan71204e92015-05-15 07:29:12 +0800256 * Stub implementations for outer i2c slave operations.
257 */
258void __i2c_force_reset_slave(void)
259{
260}
261void i2c_force_reset_slave(void)
262 __attribute__((weak, alias("__i2c_force_reset_slave")));
263
264/*
Troy Kisky90a5b702012-07-19 08:18:13 +0000265 * Stop I2C transaction
Marek Vasutdb841402011-09-22 09:22:12 +0000266 */
Peng Fan71204e92015-05-15 07:29:12 +0800267static void i2c_imx_stop(struct mxc_i2c_bus *i2c_bus)
Sascha Hauercdace062008-03-26 20:40:49 +0100268{
Troy Kisky7aa57a02012-07-19 08:18:09 +0000269 int ret;
Peng Fan71204e92015-05-15 07:29:12 +0800270 int reg_shift = i2c_bus->driver_data & I2C_QUIRK_FLAG ?
271 VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT;
272 ulong base = i2c_bus->base;
273 unsigned int temp = readb(base + (I2CR << reg_shift));
Sascha Hauercdace062008-03-26 20:40:49 +0100274
Troy Kisky1c076db2012-07-19 08:18:02 +0000275 temp &= ~(I2CR_MSTA | I2CR_MTX);
Peng Fan71204e92015-05-15 07:29:12 +0800276 writeb(temp, base + (I2CR << reg_shift));
277 ret = wait_for_sr_state(i2c_bus, ST_BUS_IDLE);
Troy Kisky7aa57a02012-07-19 08:18:09 +0000278 if (ret < 0)
279 printf("%s:trigger stop failed\n", __func__);
Sascha Hauercdace062008-03-26 20:40:49 +0100280}
281
Marek Vasutdb841402011-09-22 09:22:12 +0000282/*
Troy Kiskyb230ddc2012-07-19 08:18:06 +0000283 * Send start signal, chip address and
284 * write register address
Marek Vasutdb841402011-09-22 09:22:12 +0000285 */
Peng Fan71204e92015-05-15 07:29:12 +0800286static int i2c_init_transfer_(struct mxc_i2c_bus *i2c_bus, u8 chip,
287 u32 addr, int alen)
Sascha Hauercdace062008-03-26 20:40:49 +0100288{
Troy Kisky71e9f3c2012-07-19 08:18:11 +0000289 unsigned int temp;
290 int ret;
Peng Fan71204e92015-05-15 07:29:12 +0800291 bool quirk = i2c_bus->driver_data & I2C_QUIRK_FLAG ? true : false;
292 ulong base = i2c_bus->base;
293 int reg_shift = quirk ? VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT;
294
295 /* Reset i2c slave */
296 i2c_force_reset_slave();
Troy Kisky71e9f3c2012-07-19 08:18:11 +0000297
298 /* Enable I2C controller */
Peng Fan71204e92015-05-15 07:29:12 +0800299 if (quirk)
300 ret = readb(base + (I2CR << reg_shift)) & I2CR_IDIS;
301 else
302 ret = !(readb(base + (I2CR << reg_shift)) & I2CR_IEN);
303
304 if (ret) {
305 writeb(I2CR_IEN, base + (I2CR << reg_shift));
Troy Kisky90a5b702012-07-19 08:18:13 +0000306 /* Wait for controller to be stable */
307 udelay(50);
308 }
Peng Fan71204e92015-05-15 07:29:12 +0800309
310 if (readb(base + (IADR << reg_shift)) == (chip << 1))
311 writeb((chip << 1) ^ 2, base + (IADR << reg_shift));
312 writeb(I2SR_IIF_CLEAR, base + (I2SR << reg_shift));
313 ret = wait_for_sr_state(i2c_bus, ST_BUS_IDLE);
Troy Kisky90a5b702012-07-19 08:18:13 +0000314 if (ret < 0)
Troy Kiskya7f1a002012-07-19 08:18:16 +0000315 return ret;
Troy Kisky71e9f3c2012-07-19 08:18:11 +0000316
317 /* Start I2C transaction */
Peng Fan71204e92015-05-15 07:29:12 +0800318 temp = readb(base + (I2CR << reg_shift));
Troy Kisky71e9f3c2012-07-19 08:18:11 +0000319 temp |= I2CR_MSTA;
Peng Fan71204e92015-05-15 07:29:12 +0800320 writeb(temp, base + (I2CR << reg_shift));
Troy Kisky71e9f3c2012-07-19 08:18:11 +0000321
Peng Fan71204e92015-05-15 07:29:12 +0800322 ret = wait_for_sr_state(i2c_bus, ST_BUS_BUSY);
Troy Kisky71e9f3c2012-07-19 08:18:11 +0000323 if (ret < 0)
Troy Kiskya7f1a002012-07-19 08:18:16 +0000324 return ret;
Troy Kiskyb230ddc2012-07-19 08:18:06 +0000325
Troy Kisky71e9f3c2012-07-19 08:18:11 +0000326 temp |= I2CR_MTX | I2CR_TX_NO_AK;
Peng Fan71204e92015-05-15 07:29:12 +0800327 writeb(temp, base + (I2CR << reg_shift));
Troy Kisky71e9f3c2012-07-19 08:18:11 +0000328
Nandor Han2feec4e2017-11-08 15:35:09 +0000329 if (alen >= 0) {
330 /* write slave address */
331 ret = tx_byte(i2c_bus, chip << 1);
Troy Kiskycea60b02012-07-19 08:18:04 +0000332 if (ret < 0)
Troy Kiskya7f1a002012-07-19 08:18:16 +0000333 return ret;
Nandor Han2feec4e2017-11-08 15:35:09 +0000334
335 while (alen--) {
336 ret = tx_byte(i2c_bus, (addr >> (alen * 8)) & 0xff);
337 if (ret < 0)
338 return ret;
339 }
Stefano Babic81687212011-01-20 07:51:31 +0000340 }
Nandor Han2feec4e2017-11-08 15:35:09 +0000341
Troy Kiskyb230ddc2012-07-19 08:18:06 +0000342 return 0;
Troy Kiskya7f1a002012-07-19 08:18:16 +0000343}
344
Biwen Li9c31c532020-07-02 11:13:00 +0800345#if !defined(I2C2_BASE_ADDR)
346#define I2C2_BASE_ADDR 0
347#endif
348
349#if !defined(I2C3_BASE_ADDR)
350#define I2C3_BASE_ADDR 0
351#endif
352
353#if !defined(I2C4_BASE_ADDR)
354#define I2C4_BASE_ADDR 0
355#endif
356
357#if !defined(I2C5_BASE_ADDR)
358#define I2C5_BASE_ADDR 0
359#endif
360
361#if !defined(I2C6_BASE_ADDR)
362#define I2C6_BASE_ADDR 0
363#endif
364
365#if !defined(I2C7_BASE_ADDR)
366#define I2C7_BASE_ADDR 0
367#endif
368
369#if !defined(I2C8_BASE_ADDR)
370#define I2C8_BASE_ADDR 0
371#endif
372
373static struct mxc_i2c_bus mxc_i2c_buses[] = {
374#if defined(CONFIG_ARCH_LS1021A) || defined(CONFIG_VF610) || \
375 defined(CONFIG_FSL_LAYERSCAPE)
376 { 0, I2C1_BASE_ADDR, I2C_QUIRK_FLAG },
377 { 1, I2C2_BASE_ADDR, I2C_QUIRK_FLAG },
378 { 2, I2C3_BASE_ADDR, I2C_QUIRK_FLAG },
379 { 3, I2C4_BASE_ADDR, I2C_QUIRK_FLAG },
380 { 4, I2C5_BASE_ADDR, I2C_QUIRK_FLAG },
381 { 5, I2C6_BASE_ADDR, I2C_QUIRK_FLAG },
382 { 6, I2C7_BASE_ADDR, I2C_QUIRK_FLAG },
383 { 7, I2C8_BASE_ADDR, I2C_QUIRK_FLAG },
384#else
385 { 0, I2C1_BASE_ADDR, 0 },
386 { 1, I2C2_BASE_ADDR, 0 },
387 { 2, I2C3_BASE_ADDR, 0 },
388 { 3, I2C4_BASE_ADDR, 0 },
389 { 4, I2C5_BASE_ADDR, 0 },
390 { 5, I2C6_BASE_ADDR, 0 },
391 { 6, I2C7_BASE_ADDR, 0 },
392 { 7, I2C8_BASE_ADDR, 0 },
393#endif
394};
395
Peng Fan71204e92015-05-15 07:29:12 +0800396#ifndef CONFIG_DM_I2C
397int i2c_idle_bus(struct mxc_i2c_bus *i2c_bus)
398{
399 if (i2c_bus && i2c_bus->idle_bus_fn)
400 return i2c_bus->idle_bus_fn(i2c_bus->idle_bus_data);
401 return 0;
402}
403#else
404/*
Peng Fane1bed802016-03-11 16:47:50 +0800405 * See Linux Documentation/devicetree/bindings/i2c/i2c-imx.txt
406 * "
407 * scl-gpios: specify the gpio related to SCL pin
408 * sda-gpios: specify the gpio related to SDA pin
409 * add pinctrl to configure i2c pins to gpio function for i2c
410 * bus recovery, call it "gpio" state
411 * "
412 *
413 * The i2c_idle_bus is an implementation following Linux Kernel.
Peng Fan71204e92015-05-15 07:29:12 +0800414 */
Peng Fan71204e92015-05-15 07:29:12 +0800415int i2c_idle_bus(struct mxc_i2c_bus *i2c_bus)
Peng Fane1bed802016-03-11 16:47:50 +0800416{
417 struct udevice *bus = i2c_bus->bus;
Lukasz Majewskia40fe212019-04-04 12:35:34 +0200418 struct dm_i2c_bus *i2c = dev_get_uclass_priv(bus);
Peng Fane1bed802016-03-11 16:47:50 +0800419 struct gpio_desc *scl_gpio = &i2c_bus->scl_gpio;
420 struct gpio_desc *sda_gpio = &i2c_bus->sda_gpio;
Lukasz Majewskia40fe212019-04-04 12:35:34 +0200421 int sda, scl, idle_sclks;
Peng Fane1bed802016-03-11 16:47:50 +0800422 int i, ret = 0;
423 ulong elapsed, start_time;
424
425 if (pinctrl_select_state(bus, "gpio")) {
426 dev_dbg(bus, "Can not to switch to use gpio pinmux\n");
427 /*
428 * GPIO pinctrl for i2c force idle is not a must,
429 * but it is strongly recommended to be used.
430 * Because it can help you to recover from bad
431 * i2c bus state. Do not return failure, because
432 * it is not a must.
433 */
434 return 0;
435 }
436
437 dm_gpio_set_dir_flags(scl_gpio, GPIOD_IS_IN);
438 dm_gpio_set_dir_flags(sda_gpio, GPIOD_IS_IN);
439 scl = dm_gpio_get_value(scl_gpio);
440 sda = dm_gpio_get_value(sda_gpio);
441
442 if ((sda & scl) == 1)
443 goto exit; /* Bus is idle already */
444
Lukasz Majewskia40fe212019-04-04 12:35:34 +0200445 /*
446 * In most cases it is just enough to generate 8 + 1 SCLK
447 * clocks to recover I2C slave device from 'stuck' state
448 * (when for example SW reset was performed, in the middle of
449 * I2C transmission).
450 *
451 * However, there are devices which send data in packets of
452 * N bytes (N > 1). In such case we do need N * 8 + 1 SCLK
453 * clocks.
454 */
455 idle_sclks = 8 + 1;
456
457 if (i2c->max_transaction_bytes > 0)
458 idle_sclks = i2c->max_transaction_bytes * 8 + 1;
Peng Fane1bed802016-03-11 16:47:50 +0800459 /* Send high and low on the SCL line */
Lukasz Majewskia40fe212019-04-04 12:35:34 +0200460 for (i = 0; i < idle_sclks; i++) {
Peng Fane1bed802016-03-11 16:47:50 +0800461 dm_gpio_set_dir_flags(scl_gpio, GPIOD_IS_OUT);
462 dm_gpio_set_value(scl_gpio, 0);
463 udelay(50);
464 dm_gpio_set_dir_flags(scl_gpio, GPIOD_IS_IN);
465 udelay(50);
466 }
467 start_time = get_timer(0);
468 for (;;) {
469 dm_gpio_set_dir_flags(scl_gpio, GPIOD_IS_IN);
470 dm_gpio_set_dir_flags(sda_gpio, GPIOD_IS_IN);
471 scl = dm_gpio_get_value(scl_gpio);
472 sda = dm_gpio_get_value(sda_gpio);
473 if ((sda & scl) == 1)
474 break;
475 WATCHDOG_RESET();
476 elapsed = get_timer(start_time);
477 if (elapsed > (CONFIG_SYS_HZ / 5)) { /* .2 seconds */
478 ret = -EBUSY;
479 printf("%s: failed to clear bus, sda=%d scl=%d\n", __func__, sda, scl);
480 break;
481 }
482 }
483
484exit:
485 pinctrl_select_state(bus, "default");
486 return ret;
487}
Peng Fan71204e92015-05-15 07:29:12 +0800488#endif
Biwen Li9c31c532020-07-02 11:13:00 +0800489/*
490 * Early init I2C for prepare read the clk through I2C.
491 */
492void i2c_early_init_f(void)
493{
494 ulong base = mxc_i2c_buses[I2C_EARLY_INIT_INDEX].base;
495 bool quirk = mxc_i2c_buses[I2C_EARLY_INIT_INDEX].driver_data
496 & I2C_QUIRK_FLAG ? true : false;
497 int reg_shift = quirk ? VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT;
498
499 /* Set I2C divider value */
500 writeb(I2C_IFDR_DIV_CONSERVATIVE, base + (IFDR << reg_shift));
501 /* Reset module */
502 writeb(I2CR_IDIS, base + (I2CR << reg_shift));
503 writeb(0, base + (I2SR << reg_shift));
504 /* Enable I2C */
505 writeb(I2CR_IEN, base + (I2CR << reg_shift));
506}
Peng Fan71204e92015-05-15 07:29:12 +0800507
508static int i2c_init_transfer(struct mxc_i2c_bus *i2c_bus, u8 chip,
509 u32 addr, int alen)
Troy Kiskya7f1a002012-07-19 08:18:16 +0000510{
511 int retry;
512 int ret;
Peng Fan71204e92015-05-15 07:29:12 +0800513 int reg_shift = i2c_bus->driver_data & I2C_QUIRK_FLAG ?
514 VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT;
Heiko Schochere6c8b712015-05-18 10:58:12 +0200515
516 if (!i2c_bus->base)
Simon Glass7c843192017-09-17 16:54:53 -0600517 return -EINVAL;
Heiko Schochere6c8b712015-05-18 10:58:12 +0200518
Troy Kiskya7f1a002012-07-19 08:18:16 +0000519 for (retry = 0; retry < 3; retry++) {
Peng Fan71204e92015-05-15 07:29:12 +0800520 ret = i2c_init_transfer_(i2c_bus, chip, addr, alen);
Troy Kiskya7f1a002012-07-19 08:18:16 +0000521 if (ret >= 0)
522 return 0;
Peng Fan71204e92015-05-15 07:29:12 +0800523 i2c_imx_stop(i2c_bus);
Simon Glass7c843192017-09-17 16:54:53 -0600524 if (ret == -EREMOTEIO)
Troy Kiskya7f1a002012-07-19 08:18:16 +0000525 return ret;
526
527 printf("%s: failed for chip 0x%x retry=%d\n", __func__, chip,
528 retry);
529 if (ret != -ERESTART)
Alison Wang30ea41a2013-06-17 15:30:39 +0800530 /* Disable controller */
Peng Fan71204e92015-05-15 07:29:12 +0800531 writeb(I2CR_IDIS, i2c_bus->base + (I2CR << reg_shift));
Troy Kiskya7f1a002012-07-19 08:18:16 +0000532 udelay(100);
Peng Fan71204e92015-05-15 07:29:12 +0800533 if (i2c_idle_bus(i2c_bus) < 0)
Troy Kisky96c19bd2012-07-19 08:18:19 +0000534 break;
Troy Kiskya7f1a002012-07-19 08:18:16 +0000535 }
Peng Fan71204e92015-05-15 07:29:12 +0800536 printf("%s: give up i2c_regs=0x%lx\n", __func__, i2c_bus->base);
Marek Vasutdb841402011-09-22 09:22:12 +0000537 return ret;
Sascha Hauercdace062008-03-26 20:40:49 +0100538}
539
Peng Fan71204e92015-05-15 07:29:12 +0800540
541static int i2c_write_data(struct mxc_i2c_bus *i2c_bus, u8 chip, const u8 *buf,
542 int len)
543{
544 int i, ret = 0;
545
546 debug("i2c_write_data: chip=0x%x, len=0x%x\n", chip, len);
547 debug("write_data: ");
548 /* use rc for counter */
549 for (i = 0; i < len; ++i)
550 debug(" 0x%02x", buf[i]);
551 debug("\n");
552
553 for (i = 0; i < len; i++) {
554 ret = tx_byte(i2c_bus, buf[i]);
555 if (ret < 0) {
556 debug("i2c_write_data(): rc=%d\n", ret);
557 break;
558 }
559 }
560
561 return ret;
562}
563
Trent Piephoc8549332019-04-30 16:08:19 +0000564/* Will generate a STOP after the last byte if "last" is true, i.e. this is the
565 * final message of a transaction. If not, it switches the bus back to TX mode
566 * and does not send a STOP, leaving the bus in a state where a repeated start
567 * and address can be sent for another message.
568 */
Peng Fan71204e92015-05-15 07:29:12 +0800569static int i2c_read_data(struct mxc_i2c_bus *i2c_bus, uchar chip, uchar *buf,
Trent Piephoc8549332019-04-30 16:08:19 +0000570 int len, bool last)
Marek Vasutdb841402011-09-22 09:22:12 +0000571{
Marek Vasutdb841402011-09-22 09:22:12 +0000572 int ret;
573 unsigned int temp;
574 int i;
Peng Fan71204e92015-05-15 07:29:12 +0800575 int reg_shift = i2c_bus->driver_data & I2C_QUIRK_FLAG ?
576 VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT;
577 ulong base = i2c_bus->base;
Marek Vasutdb841402011-09-22 09:22:12 +0000578
Peng Fan71204e92015-05-15 07:29:12 +0800579 debug("i2c_read_data: chip=0x%x, len=0x%x\n", chip, len);
Marek Vasutdb841402011-09-22 09:22:12 +0000580
581 /* setup bus to read data */
Peng Fan71204e92015-05-15 07:29:12 +0800582 temp = readb(base + (I2CR << reg_shift));
Marek Vasutdb841402011-09-22 09:22:12 +0000583 temp &= ~(I2CR_MTX | I2CR_TX_NO_AK);
584 if (len == 1)
585 temp |= I2CR_TX_NO_AK;
Peng Fan71204e92015-05-15 07:29:12 +0800586 writeb(temp, base + (I2CR << reg_shift));
587 writeb(I2SR_IIF_CLEAR, base + (I2SR << reg_shift));
588 /* dummy read to clear ICF */
589 readb(base + (I2DR << reg_shift));
Marek Vasutdb841402011-09-22 09:22:12 +0000590
591 /* read data */
592 for (i = 0; i < len; i++) {
Peng Fan71204e92015-05-15 07:29:12 +0800593 ret = wait_for_sr_state(i2c_bus, ST_IIF);
Troy Kisky7aa57a02012-07-19 08:18:09 +0000594 if (ret < 0) {
Peng Fan71204e92015-05-15 07:29:12 +0800595 debug("i2c_read_data(): ret=%d\n", ret);
596 i2c_imx_stop(i2c_bus);
Marek Vasutdb841402011-09-22 09:22:12 +0000597 return ret;
Troy Kiskyc4330d22012-07-19 08:18:07 +0000598 }
Marek Vasutdb841402011-09-22 09:22:12 +0000599
Marek Vasutdb841402011-09-22 09:22:12 +0000600 if (i == (len - 1)) {
Trent Piephoc8549332019-04-30 16:08:19 +0000601 /* Final byte has already been received by master! When
602 * we read it from I2DR, the master will start another
603 * cycle. We must program it first to send a STOP or
604 * switch to TX to avoid this.
605 */
606 if (last) {
607 i2c_imx_stop(i2c_bus);
608 } else {
609 /* Final read, no stop, switch back to tx */
610 temp = readb(base + (I2CR << reg_shift));
611 temp |= I2CR_MTX | I2CR_TX_NO_AK;
612 writeb(temp, base + (I2CR << reg_shift));
613 }
Marek Vasutdb841402011-09-22 09:22:12 +0000614 } else if (i == (len - 2)) {
Trent Piephoc8549332019-04-30 16:08:19 +0000615 /* Master has already recevied penultimate byte. When
616 * we read it from I2DR, master will start RX of final
617 * byte. We must set TX_NO_AK now so it does not ACK
618 * that final byte.
619 */
Peng Fan71204e92015-05-15 07:29:12 +0800620 temp = readb(base + (I2CR << reg_shift));
Marek Vasutdb841402011-09-22 09:22:12 +0000621 temp |= I2CR_TX_NO_AK;
Peng Fan71204e92015-05-15 07:29:12 +0800622 writeb(temp, base + (I2CR << reg_shift));
Marek Vasutdb841402011-09-22 09:22:12 +0000623 }
Trent Piephoc8549332019-04-30 16:08:19 +0000624
Peng Fan71204e92015-05-15 07:29:12 +0800625 writeb(I2SR_IIF_CLEAR, base + (I2SR << reg_shift));
626 buf[i] = readb(base + (I2DR << reg_shift));
Marek Vasutdb841402011-09-22 09:22:12 +0000627 }
Peng Fan71204e92015-05-15 07:29:12 +0800628
629 /* reuse ret for counter*/
630 for (ret = 0; ret < len; ++ret)
631 debug(" 0x%02x", buf[ret]);
632 debug("\n");
633
Trent Piephoc8549332019-04-30 16:08:19 +0000634 /* It is not clear to me that this is necessary */
635 if (last)
636 i2c_imx_stop(i2c_bus);
Troy Kisky7aa57a02012-07-19 08:18:09 +0000637 return 0;
Marek Vasutdb841402011-09-22 09:22:12 +0000638}
639
Chuanhua Han068cabe2019-07-10 21:00:22 +0800640int __enable_i2c_clk(unsigned char enable, unsigned int i2c_num)
641{
642 return 1;
643}
644
645int enable_i2c_clk(unsigned char enable, unsigned int i2c_num)
646 __attribute__((weak, alias("__enable_i2c_clk")));
647
Peng Fan71204e92015-05-15 07:29:12 +0800648#ifndef CONFIG_DM_I2C
649/*
650 * Read data from I2C device
Trent Piepho6314b3c2019-04-30 16:08:18 +0000651 *
652 * The transactions use the syntax defined in the Linux kernel I2C docs.
653 *
654 * If alen is > 0, then this function will send a transaction of the form:
655 * S Chip Wr [A] Addr [A] S Chip Rd [A] [data] A ... NA P
656 * This is a normal I2C register read: writing the register address, then doing
657 * a repeated start and reading the data.
658 *
659 * If alen == 0, then we get this transaction:
660 * S Chip Wr [A] S Chip Rd [A] [data] A ... NA P
661 * This is somewhat unusual, though valid, transaction. It addresses the chip
662 * in write mode, but doesn't actually write any register address or data, then
663 * does a repeated start and reads data.
664 *
665 * If alen < 0, then we get this transaction:
666 * S Chip Rd [A] [data] A ... NA P
667 * The chip is addressed in read mode and then data is read. No register
668 * address is written first. This is perfectly valid on most devices and
669 * required on some (usually those that don't act like an array of registers).
Peng Fan71204e92015-05-15 07:29:12 +0800670 */
671static int bus_i2c_read(struct mxc_i2c_bus *i2c_bus, u8 chip, u32 addr,
672 int alen, u8 *buf, int len)
673{
674 int ret = 0;
675 u32 temp;
676 int reg_shift = i2c_bus->driver_data & I2C_QUIRK_FLAG ?
677 VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT;
678 ulong base = i2c_bus->base;
679
680 ret = i2c_init_transfer(i2c_bus, chip, addr, alen);
681 if (ret < 0)
682 return ret;
683
Nandor Han2feec4e2017-11-08 15:35:09 +0000684 if (alen >= 0) {
685 temp = readb(base + (I2CR << reg_shift));
686 temp |= I2CR_RSTA;
687 writeb(temp, base + (I2CR << reg_shift));
688 }
Peng Fan71204e92015-05-15 07:29:12 +0800689
690 ret = tx_byte(i2c_bus, (chip << 1) | 1);
691 if (ret < 0) {
692 i2c_imx_stop(i2c_bus);
693 return ret;
694 }
695
Trent Piephoc8549332019-04-30 16:08:19 +0000696 ret = i2c_read_data(i2c_bus, chip, buf, len, true);
Peng Fan71204e92015-05-15 07:29:12 +0800697
698 i2c_imx_stop(i2c_bus);
699 return ret;
700}
701
Marek Vasutdb841402011-09-22 09:22:12 +0000702/*
703 * Write data to I2C device
Trent Piepho6314b3c2019-04-30 16:08:18 +0000704 *
705 * If alen > 0, we get this transaction:
706 * S Chip Wr [A] addr [A] data [A] ... [A] P
707 * An ordinary write register command.
708 *
709 * If alen == 0, then we get this:
710 * S Chip Wr [A] data [A] ... [A] P
711 * This is a simple I2C write.
712 *
713 * If alen < 0, then we get this:
714 * S data [A] ... [A] P
715 * This is most likely NOT something that should be used. It doesn't send the
716 * chip address first, so in effect, the first byte of data will be used as the
717 * address.
Marek Vasutdb841402011-09-22 09:22:12 +0000718 */
Peng Fan71204e92015-05-15 07:29:12 +0800719static int bus_i2c_write(struct mxc_i2c_bus *i2c_bus, u8 chip, u32 addr,
720 int alen, const u8 *buf, int len)
Sascha Hauercdace062008-03-26 20:40:49 +0100721{
Peng Fan71204e92015-05-15 07:29:12 +0800722 int ret = 0;
Sascha Hauercdace062008-03-26 20:40:49 +0100723
Peng Fan71204e92015-05-15 07:29:12 +0800724 ret = i2c_init_transfer(i2c_bus, chip, addr, alen);
Troy Kiskycea60b02012-07-19 08:18:04 +0000725 if (ret < 0)
Marek Vasutdb841402011-09-22 09:22:12 +0000726 return ret;
Sascha Hauercdace062008-03-26 20:40:49 +0100727
Peng Fan71204e92015-05-15 07:29:12 +0800728 ret = i2c_write_data(i2c_bus, chip, buf, len);
729
730 i2c_imx_stop(i2c_bus);
731
Marek Vasutdb841402011-09-22 09:22:12 +0000732 return ret;
Sascha Hauercdace062008-03-26 20:40:49 +0100733}
Troy Kiskycfbb88d2012-07-19 08:18:08 +0000734
Peng Fan71204e92015-05-15 07:29:12 +0800735struct mxc_i2c_bus *i2c_get_base(struct i2c_adapter *adap)
tremfac96402013-09-21 18:13:35 +0200736{
Peng Fan71204e92015-05-15 07:29:12 +0800737 return &mxc_i2c_buses[adap->hwadapnr];
Troy Kisky96c19bd2012-07-19 08:18:19 +0000738}
739
tremfac96402013-09-21 18:13:35 +0200740static int mxc_i2c_read(struct i2c_adapter *adap, uint8_t chip,
741 uint addr, int alen, uint8_t *buffer,
742 int len)
Troy Kisky98153262012-07-19 08:18:20 +0000743{
tremfac96402013-09-21 18:13:35 +0200744 return bus_i2c_read(i2c_get_base(adap), chip, addr, alen, buffer, len);
Troy Kisky98153262012-07-19 08:18:20 +0000745}
746
tremfac96402013-09-21 18:13:35 +0200747static int mxc_i2c_write(struct i2c_adapter *adap, uint8_t chip,
748 uint addr, int alen, uint8_t *buffer,
749 int len)
Troy Kisky98153262012-07-19 08:18:20 +0000750{
tremfac96402013-09-21 18:13:35 +0200751 return bus_i2c_write(i2c_get_base(adap), chip, addr, alen, buffer, len);
Troy Kiskye4ff5252012-07-19 08:18:18 +0000752}
753
Troy Kiskycfbb88d2012-07-19 08:18:08 +0000754/*
755 * Test if a chip at a given address responds (probe the chip)
756 */
tremfac96402013-09-21 18:13:35 +0200757static int mxc_i2c_probe(struct i2c_adapter *adap, uint8_t chip)
Troy Kiskycfbb88d2012-07-19 08:18:08 +0000758{
tremfac96402013-09-21 18:13:35 +0200759 return bus_i2c_write(i2c_get_base(adap), chip, 0, 0, NULL, 0);
Troy Kiskye4ff5252012-07-19 08:18:18 +0000760}
761
Peng Fan71204e92015-05-15 07:29:12 +0800762void bus_i2c_init(int index, int speed, int unused,
763 int (*idle_bus_fn)(void *p), void *idle_bus_data)
764{
765 int ret;
766
767 if (index >= ARRAY_SIZE(mxc_i2c_buses)) {
768 debug("Error i2c index\n");
Troy Kiskye4ff5252012-07-19 08:18:18 +0000769 return;
Troy Kiskye4ff5252012-07-19 08:18:18 +0000770 }
Peng Fan71204e92015-05-15 07:29:12 +0800771
Peng Fan7d1ee742020-05-01 22:08:35 +0800772 if (CONFIG_IS_ENABLED(IMX_MODULE_FUSE)) {
773 if (i2c_fused((ulong)mxc_i2c_buses[index].base)) {
774 printf("SoC fuse indicates I2C@0x%lx is unavailable.\n",
775 (ulong)mxc_i2c_buses[index].base);
776 return;
777 }
778 }
779
Gong Qianyuaee3fdd2015-12-18 17:38:01 +0800780 /*
781 * Warning: Be careful to allow the assignment to a static
782 * variable here. This function could be called while U-Boot is
783 * still running in flash memory. So such assignment is equal
784 * to write data to flash without erasing.
785 */
786 if (idle_bus_fn)
787 mxc_i2c_buses[index].idle_bus_fn = idle_bus_fn;
788 if (idle_bus_data)
789 mxc_i2c_buses[index].idle_bus_data = idle_bus_data;
Peng Fan71204e92015-05-15 07:29:12 +0800790
791 ret = enable_i2c_clk(1, index);
792 if (ret < 0) {
793 debug("I2C-%d clk fail to enable.\n", index);
794 return;
795 }
796
797 bus_i2c_set_bus_speed(&mxc_i2c_buses[index], speed);
Troy Kiskye4ff5252012-07-19 08:18:18 +0000798}
799
Yuan Yao9d10c2d2016-06-08 18:24:51 +0800800
Yuan Yao9d10c2d2016-06-08 18:24:51 +0800801
802/*
Troy Kiskye4ff5252012-07-19 08:18:18 +0000803 * Init I2C Bus
804 */
tremfac96402013-09-21 18:13:35 +0200805static void mxc_i2c_init(struct i2c_adapter *adap, int speed, int slaveaddr)
Troy Kiskye4ff5252012-07-19 08:18:18 +0000806{
Peng Fan71204e92015-05-15 07:29:12 +0800807 bus_i2c_init(adap->hwadapnr, speed, slaveaddr, NULL, NULL);
Troy Kiskye4ff5252012-07-19 08:18:18 +0000808}
809
810/*
811 * Set I2C Speed
812 */
Peng Fan71204e92015-05-15 07:29:12 +0800813static u32 mxc_i2c_set_bus_speed(struct i2c_adapter *adap, uint speed)
Troy Kiskye4ff5252012-07-19 08:18:18 +0000814{
tremfac96402013-09-21 18:13:35 +0200815 return bus_i2c_set_bus_speed(i2c_get_base(adap), speed);
Troy Kiskye4ff5252012-07-19 08:18:18 +0000816}
817
818/*
tremfac96402013-09-21 18:13:35 +0200819 * Register mxc i2c adapters
Troy Kiskye4ff5252012-07-19 08:18:18 +0000820 */
Albert ARIBAUD \\(3ADEV\\)03544c62015-09-21 22:43:38 +0200821#ifdef CONFIG_SYS_I2C_MXC_I2C1
tremfac96402013-09-21 18:13:35 +0200822U_BOOT_I2C_ADAP_COMPLETE(mxc0, mxc_i2c_init, mxc_i2c_probe,
823 mxc_i2c_read, mxc_i2c_write,
824 mxc_i2c_set_bus_speed,
825 CONFIG_SYS_MXC_I2C1_SPEED,
826 CONFIG_SYS_MXC_I2C1_SLAVE, 0)
Albert ARIBAUD \\(3ADEV\\)03544c62015-09-21 22:43:38 +0200827#endif
828
829#ifdef CONFIG_SYS_I2C_MXC_I2C2
tremfac96402013-09-21 18:13:35 +0200830U_BOOT_I2C_ADAP_COMPLETE(mxc1, mxc_i2c_init, mxc_i2c_probe,
831 mxc_i2c_read, mxc_i2c_write,
832 mxc_i2c_set_bus_speed,
833 CONFIG_SYS_MXC_I2C2_SPEED,
834 CONFIG_SYS_MXC_I2C2_SLAVE, 1)
Albert ARIBAUD \\(3ADEV\\)03544c62015-09-21 22:43:38 +0200835#endif
836
York Sunf8cb1012015-03-20 10:20:40 -0700837#ifdef CONFIG_SYS_I2C_MXC_I2C3
tremfac96402013-09-21 18:13:35 +0200838U_BOOT_I2C_ADAP_COMPLETE(mxc2, mxc_i2c_init, mxc_i2c_probe,
839 mxc_i2c_read, mxc_i2c_write,
840 mxc_i2c_set_bus_speed,
841 CONFIG_SYS_MXC_I2C3_SPEED,
842 CONFIG_SYS_MXC_I2C3_SLAVE, 2)
843#endif
Peng Fan71204e92015-05-15 07:29:12 +0800844
York Sunf8cb1012015-03-20 10:20:40 -0700845#ifdef CONFIG_SYS_I2C_MXC_I2C4
846U_BOOT_I2C_ADAP_COMPLETE(mxc3, mxc_i2c_init, mxc_i2c_probe,
847 mxc_i2c_read, mxc_i2c_write,
848 mxc_i2c_set_bus_speed,
849 CONFIG_SYS_MXC_I2C4_SPEED,
850 CONFIG_SYS_MXC_I2C4_SLAVE, 3)
851#endif
Peng Fan71204e92015-05-15 07:29:12 +0800852
Sriram Dashfa452192018-02-06 11:26:31 +0530853#ifdef CONFIG_SYS_I2C_MXC_I2C5
854U_BOOT_I2C_ADAP_COMPLETE(mxc4, mxc_i2c_init, mxc_i2c_probe,
855 mxc_i2c_read, mxc_i2c_write,
856 mxc_i2c_set_bus_speed,
857 CONFIG_SYS_MXC_I2C5_SPEED,
858 CONFIG_SYS_MXC_I2C5_SLAVE, 4)
859#endif
860
861#ifdef CONFIG_SYS_I2C_MXC_I2C6
862U_BOOT_I2C_ADAP_COMPLETE(mxc5, mxc_i2c_init, mxc_i2c_probe,
863 mxc_i2c_read, mxc_i2c_write,
864 mxc_i2c_set_bus_speed,
865 CONFIG_SYS_MXC_I2C6_SPEED,
866 CONFIG_SYS_MXC_I2C6_SLAVE, 5)
867#endif
868
869#ifdef CONFIG_SYS_I2C_MXC_I2C7
870U_BOOT_I2C_ADAP_COMPLETE(mxc6, mxc_i2c_init, mxc_i2c_probe,
871 mxc_i2c_read, mxc_i2c_write,
872 mxc_i2c_set_bus_speed,
873 CONFIG_SYS_MXC_I2C7_SPEED,
874 CONFIG_SYS_MXC_I2C7_SLAVE, 6)
875#endif
876
877#ifdef CONFIG_SYS_I2C_MXC_I2C8
878U_BOOT_I2C_ADAP_COMPLETE(mxc7, mxc_i2c_init, mxc_i2c_probe,
879 mxc_i2c_read, mxc_i2c_write,
880 mxc_i2c_set_bus_speed,
881 CONFIG_SYS_MXC_I2C8_SPEED,
882 CONFIG_SYS_MXC_I2C8_SLAVE, 7)
883#endif
884
Peng Fan71204e92015-05-15 07:29:12 +0800885#else
886
887static int mxc_i2c_set_bus_speed(struct udevice *bus, unsigned int speed)
888{
889 struct mxc_i2c_bus *i2c_bus = dev_get_priv(bus);
890
891 return bus_i2c_set_bus_speed(i2c_bus, speed);
892}
893
894static int mxc_i2c_probe(struct udevice *bus)
895{
896 struct mxc_i2c_bus *i2c_bus = dev_get_priv(bus);
Peng Fane1bed802016-03-11 16:47:50 +0800897 const void *fdt = gd->fdt_blob;
Simon Glasse160f7d2017-01-17 16:52:55 -0700898 int node = dev_of_offset(bus);
Peng Fan71204e92015-05-15 07:29:12 +0800899 fdt_addr_t addr;
Peng Fane1bed802016-03-11 16:47:50 +0800900 int ret, ret2;
Peng Fan71204e92015-05-15 07:29:12 +0800901
902 i2c_bus->driver_data = dev_get_driver_data(bus);
903
Tom Rini72083962020-07-24 08:42:06 -0400904 addr = devfdt_get_addr(bus);
Peng Fan71204e92015-05-15 07:29:12 +0800905 if (addr == FDT_ADDR_T_NONE)
Simon Glass7c843192017-09-17 16:54:53 -0600906 return -EINVAL;
Peng Fan71204e92015-05-15 07:29:12 +0800907
Peng Fan7d1ee742020-05-01 22:08:35 +0800908 if (CONFIG_IS_ENABLED(IMX_MODULE_FUSE)) {
909 if (i2c_fused((ulong)addr)) {
910 printf("SoC fuse indicates I2C@0x%lx is unavailable.\n",
911 (ulong)addr);
912 return -ENODEV;
913 }
914 }
915
Peng Fan71204e92015-05-15 07:29:12 +0800916 i2c_bus->base = addr;
917 i2c_bus->index = bus->seq;
Peng Fane1bed802016-03-11 16:47:50 +0800918 i2c_bus->bus = bus;
Peng Fan71204e92015-05-15 07:29:12 +0800919
920 /* Enable clk */
Peng Fan6dba0862019-08-08 01:43:30 +0000921#if CONFIG_IS_ENABLED(CLK)
922 ret = clk_get_by_index(bus, 0, &i2c_bus->per_clk);
923 if (ret) {
924 printf("Failed to get i2c clk\n");
925 return ret;
926 }
927 ret = clk_enable(&i2c_bus->per_clk);
928 if (ret) {
929 printf("Failed to enable i2c clk\n");
930 return ret;
931 }
932#else
Peng Fan71204e92015-05-15 07:29:12 +0800933 ret = enable_i2c_clk(1, bus->seq);
934 if (ret < 0)
935 return ret;
Peng Fan6dba0862019-08-08 01:43:30 +0000936#endif
Peng Fan71204e92015-05-15 07:29:12 +0800937
Peng Fane1bed802016-03-11 16:47:50 +0800938 /*
939 * See Documentation/devicetree/bindings/i2c/i2c-imx.txt
940 * Use gpio to force bus idle when necessary.
941 */
Simon Glassb02e4042016-10-02 17:59:28 -0600942 ret = fdt_stringlist_search(fdt, node, "pinctrl-names", "gpio");
Peng Fane1bed802016-03-11 16:47:50 +0800943 if (ret < 0) {
Jagan Teki2da24fe2016-12-06 00:00:59 +0100944 debug("i2c bus %d at 0x%2lx, no gpio pinctrl state.\n", bus->seq, i2c_bus->base);
Peng Fane1bed802016-03-11 16:47:50 +0800945 } else {
Simon Glass150c5af2017-05-30 21:47:09 -0600946 ret = gpio_request_by_name_nodev(offset_to_ofnode(node),
947 "scl-gpios", 0, &i2c_bus->scl_gpio,
948 GPIOD_IS_OUT);
949 ret2 = gpio_request_by_name_nodev(offset_to_ofnode(node),
950 "sda-gpios", 0, &i2c_bus->sda_gpio,
951 GPIOD_IS_OUT);
Peng Fanfb012872017-12-29 15:06:08 +0800952 if (!dm_gpio_is_valid(&i2c_bus->sda_gpio) ||
953 !dm_gpio_is_valid(&i2c_bus->scl_gpio) ||
954 ret || ret2) {
Peng Fane1bed802016-03-11 16:47:50 +0800955 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 -0600956 return -EINVAL;
Peng Fane1bed802016-03-11 16:47:50 +0800957 }
958 }
959
Peng Fan71204e92015-05-15 07:29:12 +0800960 /*
961 * Pinmux settings are in board file now, until pinmux is supported,
962 * we can set pinmux here in probe function.
963 */
964
965 debug("i2c : controller bus %d at %lu , speed %d: ",
966 bus->seq, i2c_bus->base,
967 i2c_bus->speed);
968
969 return 0;
970}
971
Trent Piepho6314b3c2019-04-30 16:08:18 +0000972/* Sends: S Addr Wr [A|NA] P */
Peng Fan71204e92015-05-15 07:29:12 +0800973static int mxc_i2c_probe_chip(struct udevice *bus, u32 chip_addr,
974 u32 chip_flags)
975{
976 int ret;
977 struct mxc_i2c_bus *i2c_bus = dev_get_priv(bus);
978
979 ret = i2c_init_transfer(i2c_bus, chip_addr, 0, 0);
980 if (ret < 0) {
981 debug("%s failed, ret = %d\n", __func__, ret);
982 return ret;
983 }
984
985 i2c_imx_stop(i2c_bus);
986
987 return 0;
988}
989
990static int mxc_i2c_xfer(struct udevice *bus, struct i2c_msg *msg, int nmsgs)
991{
992 struct mxc_i2c_bus *i2c_bus = dev_get_priv(bus);
993 int ret = 0;
994 ulong base = i2c_bus->base;
995 int reg_shift = i2c_bus->driver_data & I2C_QUIRK_FLAG ?
996 VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT;
Trent Piephoc8549332019-04-30 16:08:19 +0000997 int read_mode;
Peng Fan71204e92015-05-15 07:29:12 +0800998
Trent Piephoc8549332019-04-30 16:08:19 +0000999 /* Here address len is set to -1 to not send any address at first.
1000 * Otherwise i2c_init_transfer will send the chip address with write
1001 * mode set. This is wrong if the 1st message is read.
Peng Fan71204e92015-05-15 07:29:12 +08001002 */
Trent Piephoc8549332019-04-30 16:08:19 +00001003 ret = i2c_init_transfer(i2c_bus, msg->addr, 0, -1);
Peng Fan71204e92015-05-15 07:29:12 +08001004 if (ret < 0) {
1005 debug("i2c_init_transfer error: %d\n", ret);
1006 return ret;
1007 }
1008
Trent Piephoc8549332019-04-30 16:08:19 +00001009 read_mode = -1; /* So it's always different on the first message */
Peng Fan71204e92015-05-15 07:29:12 +08001010 for (; nmsgs > 0; nmsgs--, msg++) {
Trent Piephoc8549332019-04-30 16:08:19 +00001011 const int msg_is_read = !!(msg->flags & I2C_M_RD);
1012
1013 debug("i2c_xfer: chip=0x%x, len=0x%x, dir=%c\n", msg->addr,
1014 msg->len, msg_is_read ? 'R' : 'W');
1015
1016 if (msg_is_read != read_mode) {
1017 /* Send repeated start if not 1st message */
1018 if (read_mode != -1) {
1019 debug("i2c_xfer: [RSTART]\n");
Peng Fan71204e92015-05-15 07:29:12 +08001020 ret = readb(base + (I2CR << reg_shift));
1021 ret |= I2CR_RSTA;
1022 writeb(ret, base + (I2CR << reg_shift));
Peng Fan71204e92015-05-15 07:29:12 +08001023 }
Trent Piephoc8549332019-04-30 16:08:19 +00001024 debug("i2c_xfer: [ADDR %02x | %c]\n", msg->addr,
1025 msg_is_read ? 'R' : 'W');
1026 ret = tx_byte(i2c_bus, (msg->addr << 1) | msg_is_read);
1027 if (ret < 0) {
1028 debug("i2c_xfer: [STOP]\n");
1029 i2c_imx_stop(i2c_bus);
1030 break;
1031 }
1032 read_mode = msg_is_read;
Peng Fan71204e92015-05-15 07:29:12 +08001033 }
Trent Piephoc8549332019-04-30 16:08:19 +00001034
1035 if (msg->flags & I2C_M_RD)
1036 ret = i2c_read_data(i2c_bus, msg->addr, msg->buf,
1037 msg->len, nmsgs == 1 ||
1038 (msg->flags & I2C_M_STOP));
1039 else
1040 ret = i2c_write_data(i2c_bus, msg->addr, msg->buf,
1041 msg->len);
1042
1043 if (ret < 0)
1044 break;
Peng Fan71204e92015-05-15 07:29:12 +08001045 }
1046
1047 if (ret)
1048 debug("i2c_write: error sending\n");
1049
1050 i2c_imx_stop(i2c_bus);
1051
1052 return ret;
1053}
1054
1055static const struct dm_i2c_ops mxc_i2c_ops = {
1056 .xfer = mxc_i2c_xfer,
1057 .probe_chip = mxc_i2c_probe_chip,
1058 .set_bus_speed = mxc_i2c_set_bus_speed,
1059};
1060
1061static const struct udevice_id mxc_i2c_ids[] = {
1062 { .compatible = "fsl,imx21-i2c", },
1063 { .compatible = "fsl,vf610-i2c", .data = I2C_QUIRK_FLAG, },
1064 {}
1065};
1066
1067U_BOOT_DRIVER(i2c_mxc) = {
1068 .name = "i2c_mxc",
1069 .id = UCLASS_I2C,
1070 .of_match = mxc_i2c_ids,
1071 .probe = mxc_i2c_probe,
1072 .priv_auto_alloc_size = sizeof(struct mxc_i2c_bus),
1073 .ops = &mxc_i2c_ops,
Biwen Lic6910322019-12-31 15:33:39 +08001074 .flags = DM_FLAG_PRE_RELOC,
Peng Fan71204e92015-05-15 07:29:12 +08001075};
1076#endif