blob: 3c91515bffb3368bf446cf12b1fd674172ef2a3d [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 Glass401d1c42020-10-30 21:38:53 -060021#include <asm/global_data.h>
Simon Glass336d4612020-02-03 07:36:16 -070022#include <dm/device_compat.h>
Simon Glassc05ed002020-05-10 11:40:11 -060023#include <linux/delay.h>
Masahiro Yamada1221ce42016-09-21 11:28:55 +090024#include <linux/errno.h>
Stefano Babic552a8482017-06-29 10:16:06 +020025#include <asm/mach-imx/mxc_i2c.h>
Peng Fan7d1ee742020-05-01 22:08:35 +080026#include <asm/mach-imx/sys_proto.h>
Troy Kisky24cd7382012-07-19 08:18:03 +000027#include <asm/io.h>
Marek Vasutbf0783d2011-10-26 00:05:44 +000028#include <i2c.h>
Troy Kisky7aa57a02012-07-19 08:18:09 +000029#include <watchdog.h>
Peng Fan71204e92015-05-15 07:29:12 +080030#include <dm.h>
Peng Fane1bed802016-03-11 16:47:50 +080031#include <dm/pinctrl.h>
Peng Fan71204e92015-05-15 07:29:12 +080032#include <fdtdec.h>
Sascha Hauercdace062008-03-26 20:40:49 +010033
York Sundec18612014-02-10 14:02:52 -080034DECLARE_GLOBAL_DATA_PTR;
35
Peng Fan71204e92015-05-15 07:29:12 +080036#define I2C_QUIRK_FLAG (1 << 0)
37
38#define IMX_I2C_REGSHIFT 2
39#define VF610_I2C_REGSHIFT 0
Yuan Yao9d10c2d2016-06-08 18:24:51 +080040
41#define I2C_EARLY_INIT_INDEX 0
42#ifdef CONFIG_SYS_I2C_IFDR_DIV
43#define I2C_IFDR_DIV_CONSERVATIVE CONFIG_SYS_I2C_IFDR_DIV
44#else
45#define I2C_IFDR_DIV_CONSERVATIVE 0x7e
46#endif
47
Peng Fan71204e92015-05-15 07:29:12 +080048/* Register index */
49#define IADR 0
50#define IFDR 1
51#define I2CR 2
52#define I2SR 3
53#define I2DR 4
Sascha Hauercdace062008-03-26 20:40:49 +010054
Sascha Hauercdace062008-03-26 20:40:49 +010055#define I2CR_IIEN (1 << 6)
56#define I2CR_MSTA (1 << 5)
57#define I2CR_MTX (1 << 4)
58#define I2CR_TX_NO_AK (1 << 3)
59#define I2CR_RSTA (1 << 2)
60
61#define I2SR_ICF (1 << 7)
62#define I2SR_IBB (1 << 5)
Troy Kiskyd5383a62012-07-19 08:18:15 +000063#define I2SR_IAL (1 << 4)
Sascha Hauercdace062008-03-26 20:40:49 +010064#define I2SR_IIF (1 << 1)
65#define I2SR_RX_NO_AK (1 << 0)
66
Alison Wang30ea41a2013-06-17 15:30:39 +080067#ifdef I2C_QUIRK_REG
68#define I2CR_IEN (0 << 7)
69#define I2CR_IDIS (1 << 7)
70#define I2SR_IIF_CLEAR (1 << 1)
71#else
72#define I2CR_IEN (1 << 7)
73#define I2CR_IDIS (0 << 7)
74#define I2SR_IIF_CLEAR (0 << 1)
75#endif
76
Alison Wang30ea41a2013-06-17 15:30:39 +080077#ifdef I2C_QUIRK_REG
78static u16 i2c_clk_div[60][2] = {
79 { 20, 0x00 }, { 22, 0x01 }, { 24, 0x02 }, { 26, 0x03 },
80 { 28, 0x04 }, { 30, 0x05 }, { 32, 0x09 }, { 34, 0x06 },
81 { 36, 0x0A }, { 40, 0x07 }, { 44, 0x0C }, { 48, 0x0D },
82 { 52, 0x43 }, { 56, 0x0E }, { 60, 0x45 }, { 64, 0x12 },
83 { 68, 0x0F }, { 72, 0x13 }, { 80, 0x14 }, { 88, 0x15 },
84 { 96, 0x19 }, { 104, 0x16 }, { 112, 0x1A }, { 128, 0x17 },
85 { 136, 0x4F }, { 144, 0x1C }, { 160, 0x1D }, { 176, 0x55 },
86 { 192, 0x1E }, { 208, 0x56 }, { 224, 0x22 }, { 228, 0x24 },
87 { 240, 0x1F }, { 256, 0x23 }, { 288, 0x5C }, { 320, 0x25 },
88 { 384, 0x26 }, { 448, 0x2A }, { 480, 0x27 }, { 512, 0x2B },
89 { 576, 0x2C }, { 640, 0x2D }, { 768, 0x31 }, { 896, 0x32 },
90 { 960, 0x2F }, { 1024, 0x33 }, { 1152, 0x34 }, { 1280, 0x35 },
91 { 1536, 0x36 }, { 1792, 0x3A }, { 1920, 0x37 }, { 2048, 0x3B },
92 { 2304, 0x3C }, { 2560, 0x3D }, { 3072, 0x3E }, { 3584, 0x7A },
93 { 3840, 0x3F }, { 4096, 0x7B }, { 5120, 0x7D }, { 6144, 0x7E },
94};
95#else
Marek Vasutdb841402011-09-22 09:22:12 +000096static u16 i2c_clk_div[50][2] = {
97 { 22, 0x20 }, { 24, 0x21 }, { 26, 0x22 }, { 28, 0x23 },
98 { 30, 0x00 }, { 32, 0x24 }, { 36, 0x25 }, { 40, 0x26 },
99 { 42, 0x03 }, { 44, 0x27 }, { 48, 0x28 }, { 52, 0x05 },
100 { 56, 0x29 }, { 60, 0x06 }, { 64, 0x2A }, { 72, 0x2B },
101 { 80, 0x2C }, { 88, 0x09 }, { 96, 0x2D }, { 104, 0x0A },
102 { 112, 0x2E }, { 128, 0x2F }, { 144, 0x0C }, { 160, 0x30 },
103 { 192, 0x31 }, { 224, 0x32 }, { 240, 0x0F }, { 256, 0x33 },
104 { 288, 0x10 }, { 320, 0x34 }, { 384, 0x35 }, { 448, 0x36 },
105 { 480, 0x13 }, { 512, 0x37 }, { 576, 0x14 }, { 640, 0x38 },
106 { 768, 0x39 }, { 896, 0x3A }, { 960, 0x17 }, { 1024, 0x3B },
107 { 1152, 0x18 }, { 1280, 0x3C }, { 1536, 0x3D }, { 1792, 0x3E },
108 { 1920, 0x1B }, { 2048, 0x3F }, { 2304, 0x1C }, { 2560, 0x1D },
109 { 3072, 0x1E }, { 3840, 0x1F }
110};
Alison Wang30ea41a2013-06-17 15:30:39 +0800111#endif
Sascha Hauercdace062008-03-26 20:40:49 +0100112
tremfac96402013-09-21 18:13:35 +0200113#ifndef CONFIG_SYS_MXC_I2C1_SPEED
114#define CONFIG_SYS_MXC_I2C1_SPEED 100000
115#endif
116#ifndef CONFIG_SYS_MXC_I2C2_SPEED
117#define CONFIG_SYS_MXC_I2C2_SPEED 100000
118#endif
119#ifndef CONFIG_SYS_MXC_I2C3_SPEED
120#define CONFIG_SYS_MXC_I2C3_SPEED 100000
121#endif
York Sunf8cb1012015-03-20 10:20:40 -0700122#ifndef CONFIG_SYS_MXC_I2C4_SPEED
123#define CONFIG_SYS_MXC_I2C4_SPEED 100000
124#endif
tremfac96402013-09-21 18:13:35 +0200125
126#ifndef CONFIG_SYS_MXC_I2C1_SLAVE
127#define CONFIG_SYS_MXC_I2C1_SLAVE 0
128#endif
129#ifndef CONFIG_SYS_MXC_I2C2_SLAVE
130#define CONFIG_SYS_MXC_I2C2_SLAVE 0
131#endif
132#ifndef CONFIG_SYS_MXC_I2C3_SLAVE
133#define CONFIG_SYS_MXC_I2C3_SLAVE 0
134#endif
York Sunf8cb1012015-03-20 10:20:40 -0700135#ifndef CONFIG_SYS_MXC_I2C4_SLAVE
136#define CONFIG_SYS_MXC_I2C4_SLAVE 0
137#endif
tremfac96402013-09-21 18:13:35 +0200138
Marek Vasutdb841402011-09-22 09:22:12 +0000139/*
140 * Calculate and set proper clock divider
141 */
Peng Fan71204e92015-05-15 07:29:12 +0800142static uint8_t i2c_imx_get_clk(struct mxc_i2c_bus *i2c_bus, unsigned int rate)
Stefano Babic1d549ad2011-01-20 07:50:44 +0000143{
Marek Vasutdb841402011-09-22 09:22:12 +0000144 unsigned int i2c_clk_rate;
145 unsigned int div;
Marek Vasutbf0783d2011-10-26 00:05:44 +0000146 u8 clk_div;
Sascha Hauercdace062008-03-26 20:40:49 +0100147
Liu Hui-R64343127cec12011-01-03 22:27:39 +0000148#if defined(CONFIG_MX31)
Stefano Babic1d549ad2011-01-20 07:50:44 +0000149 struct clock_control_regs *sc_regs =
150 (struct clock_control_regs *)CCM_BASE;
Marek Vasutdb841402011-09-22 09:22:12 +0000151
Guennadi Liakhovetskie7de18a2009-02-13 09:23:36 +0100152 /* start the required I2C clock */
Troy Kiskyde6f6042012-04-24 17:33:25 +0000153 writel(readl(&sc_regs->cgr0) | (3 << CONFIG_SYS_I2C_CLK_OFFSET),
Stefano Babic1d549ad2011-01-20 07:50:44 +0000154 &sc_regs->cgr0);
Liu Hui-R64343127cec12011-01-03 22:27:39 +0000155#endif
Guennadi Liakhovetskie7de18a2009-02-13 09:23:36 +0100156
Marek Vasutdb841402011-09-22 09:22:12 +0000157 /* Divider value calculation */
Peng Fan6dba0862019-08-08 01:43:30 +0000158#if CONFIG_IS_ENABLED(CLK)
159 i2c_clk_rate = clk_get_rate(&i2c_bus->per_clk);
160#else
Matthias Weissere7bed5c2012-09-24 02:46:53 +0000161 i2c_clk_rate = mxc_get_clock(MXC_I2C_CLK);
Peng Fan6dba0862019-08-08 01:43:30 +0000162#endif
163
Marek Vasutdb841402011-09-22 09:22:12 +0000164 div = (i2c_clk_rate + rate - 1) / rate;
165 if (div < i2c_clk_div[0][0])
Marek Vasutb567b8f2011-09-27 06:34:11 +0000166 clk_div = 0;
Marek Vasutdb841402011-09-22 09:22:12 +0000167 else if (div > i2c_clk_div[ARRAY_SIZE(i2c_clk_div) - 1][0])
Marek Vasutb567b8f2011-09-27 06:34:11 +0000168 clk_div = ARRAY_SIZE(i2c_clk_div) - 1;
Marek Vasutdb841402011-09-22 09:22:12 +0000169 else
Marek Vasutb567b8f2011-09-27 06:34:11 +0000170 for (clk_div = 0; i2c_clk_div[clk_div][0] < div; clk_div++)
Marek Vasutdb841402011-09-22 09:22:12 +0000171 ;
Sascha Hauercdace062008-03-26 20:40:49 +0100172
Marek Vasutdb841402011-09-22 09:22:12 +0000173 /* Store divider value */
Marek Vasutbf0783d2011-10-26 00:05:44 +0000174 return clk_div;
Marek Vasutdb841402011-09-22 09:22:12 +0000175}
Sascha Hauercdace062008-03-26 20:40:49 +0100176
Marek Vasutdb841402011-09-22 09:22:12 +0000177/*
Troy Kiskye4ff5252012-07-19 08:18:18 +0000178 * Set I2C Bus speed
Marek Vasutdb841402011-09-22 09:22:12 +0000179 */
Peng Fan71204e92015-05-15 07:29:12 +0800180static int bus_i2c_set_bus_speed(struct mxc_i2c_bus *i2c_bus, int speed)
Marek Vasutdb841402011-09-22 09:22:12 +0000181{
Peng Fan71204e92015-05-15 07:29:12 +0800182 ulong base = i2c_bus->base;
183 bool quirk = i2c_bus->driver_data & I2C_QUIRK_FLAG ? true : false;
184 u8 clk_idx = i2c_imx_get_clk(i2c_bus, speed);
Marek Vasutbf0783d2011-10-26 00:05:44 +0000185 u8 idx = i2c_clk_div[clk_idx][1];
Peng Fan71204e92015-05-15 07:29:12 +0800186 int reg_shift = quirk ? VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT;
Marek Vasutbf0783d2011-10-26 00:05:44 +0000187
Heiko Schochere6c8b712015-05-18 10:58:12 +0200188 if (!base)
Simon Glass7c843192017-09-17 16:54:53 -0600189 return -EINVAL;
Heiko Schochere6c8b712015-05-18 10:58:12 +0200190
Marek Vasutbf0783d2011-10-26 00:05:44 +0000191 /* Store divider value */
Peng Fan71204e92015-05-15 07:29:12 +0800192 writeb(idx, base + (IFDR << reg_shift));
Marek Vasutbf0783d2011-10-26 00:05:44 +0000193
Troy Kisky83a1a192012-07-19 08:18:12 +0000194 /* Reset module */
Peng Fan71204e92015-05-15 07:29:12 +0800195 writeb(I2CR_IDIS, base + (I2CR << reg_shift));
196 writeb(0, base + (I2SR << reg_shift));
Marek Vasutb567b8f2011-09-27 06:34:11 +0000197 return 0;
198}
199
Troy Kisky7aa57a02012-07-19 08:18:09 +0000200#define ST_BUS_IDLE (0 | (I2SR_IBB << 8))
201#define ST_BUS_BUSY (I2SR_IBB | (I2SR_IBB << 8))
202#define ST_IIF (I2SR_IIF | (I2SR_IIF << 8))
203
Peng Fan71204e92015-05-15 07:29:12 +0800204static int wait_for_sr_state(struct mxc_i2c_bus *i2c_bus, unsigned state)
Stefano Babic81687212011-01-20 07:51:31 +0000205{
Troy Kisky7aa57a02012-07-19 08:18:09 +0000206 unsigned sr;
207 ulong elapsed;
Peng Fan71204e92015-05-15 07:29:12 +0800208 bool quirk = i2c_bus->driver_data & I2C_QUIRK_FLAG ? true : false;
209 int reg_shift = quirk ? VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT;
210 ulong base = i2c_bus->base;
Troy Kisky7aa57a02012-07-19 08:18:09 +0000211 ulong start_time = get_timer(0);
212 for (;;) {
Peng Fan71204e92015-05-15 07:29:12 +0800213 sr = readb(base + (I2SR << reg_shift));
Troy Kiskyd5383a62012-07-19 08:18:15 +0000214 if (sr & I2SR_IAL) {
Peng Fan71204e92015-05-15 07:29:12 +0800215 if (quirk)
216 writeb(sr | I2SR_IAL, base +
217 (I2SR << reg_shift));
218 else
219 writeb(sr & ~I2SR_IAL, base +
220 (I2SR << reg_shift));
Troy Kiskyd5383a62012-07-19 08:18:15 +0000221 printf("%s: Arbitration lost sr=%x cr=%x state=%x\n",
Peng Fan71204e92015-05-15 07:29:12 +0800222 __func__, sr, readb(base + (I2CR << reg_shift)),
223 state);
Troy Kiskyd5383a62012-07-19 08:18:15 +0000224 return -ERESTART;
225 }
Troy Kisky7aa57a02012-07-19 08:18:09 +0000226 if ((sr & (state >> 8)) == (unsigned char)state)
227 return sr;
228 WATCHDOG_RESET();
229 elapsed = get_timer(start_time);
230 if (elapsed > (CONFIG_SYS_HZ / 10)) /* .1 seconds */
231 break;
Stefano Babic81687212011-01-20 07:51:31 +0000232 }
Troy Kisky7aa57a02012-07-19 08:18:09 +0000233 printf("%s: failed sr=%x cr=%x state=%x\n", __func__,
Peng Fan71204e92015-05-15 07:29:12 +0800234 sr, readb(base + (I2CR << reg_shift)), state);
Troy Kiskycea60b02012-07-19 08:18:04 +0000235 return -ETIMEDOUT;
Stefano Babic81687212011-01-20 07:51:31 +0000236}
237
Peng Fan71204e92015-05-15 07:29:12 +0800238static int tx_byte(struct mxc_i2c_bus *i2c_bus, u8 byte)
Sascha Hauercdace062008-03-26 20:40:49 +0100239{
Troy Kiskycea60b02012-07-19 08:18:04 +0000240 int ret;
Peng Fan71204e92015-05-15 07:29:12 +0800241 int reg_shift = i2c_bus->driver_data & I2C_QUIRK_FLAG ?
242 VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT;
243 ulong base = i2c_bus->base;
Sascha Hauercdace062008-03-26 20:40:49 +0100244
Peng Fan71204e92015-05-15 07:29:12 +0800245 writeb(I2SR_IIF_CLEAR, base + (I2SR << reg_shift));
246 writeb(byte, base + (I2DR << reg_shift));
247
248 ret = wait_for_sr_state(i2c_bus, ST_IIF);
Troy Kiskycea60b02012-07-19 08:18:04 +0000249 if (ret < 0)
250 return ret;
Troy Kiskycea60b02012-07-19 08:18:04 +0000251 if (ret & I2SR_RX_NO_AK)
Simon Glass7c843192017-09-17 16:54:53 -0600252 return -EREMOTEIO;
Troy Kiskycea60b02012-07-19 08:18:04 +0000253 return 0;
Marek Vasutdb841402011-09-22 09:22:12 +0000254}
255
256/*
Peng Fan71204e92015-05-15 07:29:12 +0800257 * Stub implementations for outer i2c slave operations.
258 */
259void __i2c_force_reset_slave(void)
260{
261}
262void i2c_force_reset_slave(void)
263 __attribute__((weak, alias("__i2c_force_reset_slave")));
264
265/*
Troy Kisky90a5b702012-07-19 08:18:13 +0000266 * Stop I2C transaction
Marek Vasutdb841402011-09-22 09:22:12 +0000267 */
Peng Fan71204e92015-05-15 07:29:12 +0800268static void i2c_imx_stop(struct mxc_i2c_bus *i2c_bus)
Sascha Hauercdace062008-03-26 20:40:49 +0100269{
Troy Kisky7aa57a02012-07-19 08:18:09 +0000270 int ret;
Peng Fan71204e92015-05-15 07:29:12 +0800271 int reg_shift = i2c_bus->driver_data & I2C_QUIRK_FLAG ?
272 VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT;
273 ulong base = i2c_bus->base;
274 unsigned int temp = readb(base + (I2CR << reg_shift));
Sascha Hauercdace062008-03-26 20:40:49 +0100275
Troy Kisky1c076db2012-07-19 08:18:02 +0000276 temp &= ~(I2CR_MSTA | I2CR_MTX);
Peng Fan71204e92015-05-15 07:29:12 +0800277 writeb(temp, base + (I2CR << reg_shift));
278 ret = wait_for_sr_state(i2c_bus, ST_BUS_IDLE);
Troy Kisky7aa57a02012-07-19 08:18:09 +0000279 if (ret < 0)
280 printf("%s:trigger stop failed\n", __func__);
Sascha Hauercdace062008-03-26 20:40:49 +0100281}
282
Marek Vasutdb841402011-09-22 09:22:12 +0000283/*
Troy Kiskyb230ddc2012-07-19 08:18:06 +0000284 * Send start signal, chip address and
285 * write register address
Marek Vasutdb841402011-09-22 09:22:12 +0000286 */
Peng Fan71204e92015-05-15 07:29:12 +0800287static int i2c_init_transfer_(struct mxc_i2c_bus *i2c_bus, u8 chip,
288 u32 addr, int alen)
Sascha Hauercdace062008-03-26 20:40:49 +0100289{
Troy Kisky71e9f3c2012-07-19 08:18:11 +0000290 unsigned int temp;
291 int ret;
Peng Fan71204e92015-05-15 07:29:12 +0800292 bool quirk = i2c_bus->driver_data & I2C_QUIRK_FLAG ? true : false;
293 ulong base = i2c_bus->base;
294 int reg_shift = quirk ? VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT;
295
296 /* Reset i2c slave */
297 i2c_force_reset_slave();
Troy Kisky71e9f3c2012-07-19 08:18:11 +0000298
299 /* Enable I2C controller */
Peng Fan71204e92015-05-15 07:29:12 +0800300 if (quirk)
301 ret = readb(base + (I2CR << reg_shift)) & I2CR_IDIS;
302 else
303 ret = !(readb(base + (I2CR << reg_shift)) & I2CR_IEN);
304
305 if (ret) {
306 writeb(I2CR_IEN, base + (I2CR << reg_shift));
Troy Kisky90a5b702012-07-19 08:18:13 +0000307 /* Wait for controller to be stable */
308 udelay(50);
309 }
Peng Fan71204e92015-05-15 07:29:12 +0800310
311 if (readb(base + (IADR << reg_shift)) == (chip << 1))
312 writeb((chip << 1) ^ 2, base + (IADR << reg_shift));
313 writeb(I2SR_IIF_CLEAR, base + (I2SR << reg_shift));
314 ret = wait_for_sr_state(i2c_bus, ST_BUS_IDLE);
Troy Kisky90a5b702012-07-19 08:18:13 +0000315 if (ret < 0)
Troy Kiskya7f1a002012-07-19 08:18:16 +0000316 return ret;
Troy Kisky71e9f3c2012-07-19 08:18:11 +0000317
318 /* Start I2C transaction */
Peng Fan71204e92015-05-15 07:29:12 +0800319 temp = readb(base + (I2CR << reg_shift));
Troy Kisky71e9f3c2012-07-19 08:18:11 +0000320 temp |= I2CR_MSTA;
Peng Fan71204e92015-05-15 07:29:12 +0800321 writeb(temp, base + (I2CR << reg_shift));
Troy Kisky71e9f3c2012-07-19 08:18:11 +0000322
Peng Fan71204e92015-05-15 07:29:12 +0800323 ret = wait_for_sr_state(i2c_bus, ST_BUS_BUSY);
Troy Kisky71e9f3c2012-07-19 08:18:11 +0000324 if (ret < 0)
Troy Kiskya7f1a002012-07-19 08:18:16 +0000325 return ret;
Troy Kiskyb230ddc2012-07-19 08:18:06 +0000326
Troy Kisky71e9f3c2012-07-19 08:18:11 +0000327 temp |= I2CR_MTX | I2CR_TX_NO_AK;
Peng Fan71204e92015-05-15 07:29:12 +0800328 writeb(temp, base + (I2CR << reg_shift));
Troy Kisky71e9f3c2012-07-19 08:18:11 +0000329
Nandor Han2feec4e2017-11-08 15:35:09 +0000330 if (alen >= 0) {
331 /* write slave address */
332 ret = tx_byte(i2c_bus, chip << 1);
Troy Kiskycea60b02012-07-19 08:18:04 +0000333 if (ret < 0)
Troy Kiskya7f1a002012-07-19 08:18:16 +0000334 return ret;
Nandor Han2feec4e2017-11-08 15:35:09 +0000335
336 while (alen--) {
337 ret = tx_byte(i2c_bus, (addr >> (alen * 8)) & 0xff);
338 if (ret < 0)
339 return ret;
340 }
Stefano Babic81687212011-01-20 07:51:31 +0000341 }
Nandor Han2feec4e2017-11-08 15:35:09 +0000342
Troy Kiskyb230ddc2012-07-19 08:18:06 +0000343 return 0;
Troy Kiskya7f1a002012-07-19 08:18:16 +0000344}
345
Biwen Li9c31c532020-07-02 11:13:00 +0800346#if !defined(I2C2_BASE_ADDR)
347#define I2C2_BASE_ADDR 0
348#endif
349
350#if !defined(I2C3_BASE_ADDR)
351#define I2C3_BASE_ADDR 0
352#endif
353
354#if !defined(I2C4_BASE_ADDR)
355#define I2C4_BASE_ADDR 0
356#endif
357
358#if !defined(I2C5_BASE_ADDR)
359#define I2C5_BASE_ADDR 0
360#endif
361
362#if !defined(I2C6_BASE_ADDR)
363#define I2C6_BASE_ADDR 0
364#endif
365
366#if !defined(I2C7_BASE_ADDR)
367#define I2C7_BASE_ADDR 0
368#endif
369
370#if !defined(I2C8_BASE_ADDR)
371#define I2C8_BASE_ADDR 0
372#endif
373
374static struct mxc_i2c_bus mxc_i2c_buses[] = {
375#if defined(CONFIG_ARCH_LS1021A) || defined(CONFIG_VF610) || \
376 defined(CONFIG_FSL_LAYERSCAPE)
377 { 0, I2C1_BASE_ADDR, I2C_QUIRK_FLAG },
378 { 1, I2C2_BASE_ADDR, I2C_QUIRK_FLAG },
379 { 2, I2C3_BASE_ADDR, I2C_QUIRK_FLAG },
380 { 3, I2C4_BASE_ADDR, I2C_QUIRK_FLAG },
381 { 4, I2C5_BASE_ADDR, I2C_QUIRK_FLAG },
382 { 5, I2C6_BASE_ADDR, I2C_QUIRK_FLAG },
383 { 6, I2C7_BASE_ADDR, I2C_QUIRK_FLAG },
384 { 7, I2C8_BASE_ADDR, I2C_QUIRK_FLAG },
385#else
386 { 0, I2C1_BASE_ADDR, 0 },
387 { 1, I2C2_BASE_ADDR, 0 },
388 { 2, I2C3_BASE_ADDR, 0 },
389 { 3, I2C4_BASE_ADDR, 0 },
390 { 4, I2C5_BASE_ADDR, 0 },
391 { 5, I2C6_BASE_ADDR, 0 },
392 { 6, I2C7_BASE_ADDR, 0 },
393 { 7, I2C8_BASE_ADDR, 0 },
394#endif
395};
396
Peng Fan71204e92015-05-15 07:29:12 +0800397#ifndef CONFIG_DM_I2C
398int i2c_idle_bus(struct mxc_i2c_bus *i2c_bus)
399{
400 if (i2c_bus && i2c_bus->idle_bus_fn)
401 return i2c_bus->idle_bus_fn(i2c_bus->idle_bus_data);
402 return 0;
403}
404#else
405/*
Peng Fane1bed802016-03-11 16:47:50 +0800406 * See Linux Documentation/devicetree/bindings/i2c/i2c-imx.txt
407 * "
408 * scl-gpios: specify the gpio related to SCL pin
409 * sda-gpios: specify the gpio related to SDA pin
410 * add pinctrl to configure i2c pins to gpio function for i2c
411 * bus recovery, call it "gpio" state
412 * "
413 *
414 * The i2c_idle_bus is an implementation following Linux Kernel.
Peng Fan71204e92015-05-15 07:29:12 +0800415 */
Peng Fan71204e92015-05-15 07:29:12 +0800416int i2c_idle_bus(struct mxc_i2c_bus *i2c_bus)
Peng Fane1bed802016-03-11 16:47:50 +0800417{
418 struct udevice *bus = i2c_bus->bus;
Lukasz Majewskia40fe212019-04-04 12:35:34 +0200419 struct dm_i2c_bus *i2c = dev_get_uclass_priv(bus);
Peng Fane1bed802016-03-11 16:47:50 +0800420 struct gpio_desc *scl_gpio = &i2c_bus->scl_gpio;
421 struct gpio_desc *sda_gpio = &i2c_bus->sda_gpio;
Lukasz Majewskia40fe212019-04-04 12:35:34 +0200422 int sda, scl, idle_sclks;
Peng Fane1bed802016-03-11 16:47:50 +0800423 int i, ret = 0;
424 ulong elapsed, start_time;
425
426 if (pinctrl_select_state(bus, "gpio")) {
427 dev_dbg(bus, "Can not to switch to use gpio pinmux\n");
428 /*
429 * GPIO pinctrl for i2c force idle is not a must,
430 * but it is strongly recommended to be used.
431 * Because it can help you to recover from bad
432 * i2c bus state. Do not return failure, because
433 * it is not a must.
434 */
435 return 0;
436 }
437
438 dm_gpio_set_dir_flags(scl_gpio, GPIOD_IS_IN);
439 dm_gpio_set_dir_flags(sda_gpio, GPIOD_IS_IN);
440 scl = dm_gpio_get_value(scl_gpio);
441 sda = dm_gpio_get_value(sda_gpio);
442
443 if ((sda & scl) == 1)
444 goto exit; /* Bus is idle already */
445
Lukasz Majewskia40fe212019-04-04 12:35:34 +0200446 /*
447 * In most cases it is just enough to generate 8 + 1 SCLK
448 * clocks to recover I2C slave device from 'stuck' state
449 * (when for example SW reset was performed, in the middle of
450 * I2C transmission).
451 *
452 * However, there are devices which send data in packets of
453 * N bytes (N > 1). In such case we do need N * 8 + 1 SCLK
454 * clocks.
455 */
456 idle_sclks = 8 + 1;
457
458 if (i2c->max_transaction_bytes > 0)
459 idle_sclks = i2c->max_transaction_bytes * 8 + 1;
Peng Fane1bed802016-03-11 16:47:50 +0800460 /* Send high and low on the SCL line */
Lukasz Majewskia40fe212019-04-04 12:35:34 +0200461 for (i = 0; i < idle_sclks; i++) {
Peng Fane1bed802016-03-11 16:47:50 +0800462 dm_gpio_set_dir_flags(scl_gpio, GPIOD_IS_OUT);
463 dm_gpio_set_value(scl_gpio, 0);
464 udelay(50);
465 dm_gpio_set_dir_flags(scl_gpio, GPIOD_IS_IN);
466 udelay(50);
467 }
468 start_time = get_timer(0);
469 for (;;) {
470 dm_gpio_set_dir_flags(scl_gpio, GPIOD_IS_IN);
471 dm_gpio_set_dir_flags(sda_gpio, GPIOD_IS_IN);
472 scl = dm_gpio_get_value(scl_gpio);
473 sda = dm_gpio_get_value(sda_gpio);
474 if ((sda & scl) == 1)
475 break;
476 WATCHDOG_RESET();
477 elapsed = get_timer(start_time);
478 if (elapsed > (CONFIG_SYS_HZ / 5)) { /* .2 seconds */
479 ret = -EBUSY;
480 printf("%s: failed to clear bus, sda=%d scl=%d\n", __func__, sda, scl);
481 break;
482 }
483 }
484
485exit:
486 pinctrl_select_state(bus, "default");
487 return ret;
488}
Peng Fan71204e92015-05-15 07:29:12 +0800489#endif
Biwen Li9c31c532020-07-02 11:13:00 +0800490/*
491 * Early init I2C for prepare read the clk through I2C.
492 */
493void i2c_early_init_f(void)
494{
495 ulong base = mxc_i2c_buses[I2C_EARLY_INIT_INDEX].base;
496 bool quirk = mxc_i2c_buses[I2C_EARLY_INIT_INDEX].driver_data
497 & I2C_QUIRK_FLAG ? true : false;
498 int reg_shift = quirk ? VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT;
499
500 /* Set I2C divider value */
501 writeb(I2C_IFDR_DIV_CONSERVATIVE, base + (IFDR << reg_shift));
502 /* Reset module */
503 writeb(I2CR_IDIS, base + (I2CR << reg_shift));
504 writeb(0, base + (I2SR << reg_shift));
505 /* Enable I2C */
506 writeb(I2CR_IEN, base + (I2CR << reg_shift));
507}
Peng Fan71204e92015-05-15 07:29:12 +0800508
509static int i2c_init_transfer(struct mxc_i2c_bus *i2c_bus, u8 chip,
510 u32 addr, int alen)
Troy Kiskya7f1a002012-07-19 08:18:16 +0000511{
512 int retry;
513 int ret;
Peng Fan71204e92015-05-15 07:29:12 +0800514 int reg_shift = i2c_bus->driver_data & I2C_QUIRK_FLAG ?
515 VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT;
Heiko Schochere6c8b712015-05-18 10:58:12 +0200516
517 if (!i2c_bus->base)
Simon Glass7c843192017-09-17 16:54:53 -0600518 return -EINVAL;
Heiko Schochere6c8b712015-05-18 10:58:12 +0200519
Troy Kiskya7f1a002012-07-19 08:18:16 +0000520 for (retry = 0; retry < 3; retry++) {
Peng Fan71204e92015-05-15 07:29:12 +0800521 ret = i2c_init_transfer_(i2c_bus, chip, addr, alen);
Troy Kiskya7f1a002012-07-19 08:18:16 +0000522 if (ret >= 0)
523 return 0;
Peng Fan71204e92015-05-15 07:29:12 +0800524 i2c_imx_stop(i2c_bus);
Simon Glass7c843192017-09-17 16:54:53 -0600525 if (ret == -EREMOTEIO)
Troy Kiskya7f1a002012-07-19 08:18:16 +0000526 return ret;
527
528 printf("%s: failed for chip 0x%x retry=%d\n", __func__, chip,
529 retry);
530 if (ret != -ERESTART)
Alison Wang30ea41a2013-06-17 15:30:39 +0800531 /* Disable controller */
Peng Fan71204e92015-05-15 07:29:12 +0800532 writeb(I2CR_IDIS, i2c_bus->base + (I2CR << reg_shift));
Troy Kiskya7f1a002012-07-19 08:18:16 +0000533 udelay(100);
Peng Fan71204e92015-05-15 07:29:12 +0800534 if (i2c_idle_bus(i2c_bus) < 0)
Troy Kisky96c19bd2012-07-19 08:18:19 +0000535 break;
Troy Kiskya7f1a002012-07-19 08:18:16 +0000536 }
Peng Fan71204e92015-05-15 07:29:12 +0800537 printf("%s: give up i2c_regs=0x%lx\n", __func__, i2c_bus->base);
Marek Vasutdb841402011-09-22 09:22:12 +0000538 return ret;
Sascha Hauercdace062008-03-26 20:40:49 +0100539}
540
Peng Fan71204e92015-05-15 07:29:12 +0800541
542static int i2c_write_data(struct mxc_i2c_bus *i2c_bus, u8 chip, const u8 *buf,
543 int len)
544{
545 int i, ret = 0;
546
547 debug("i2c_write_data: chip=0x%x, len=0x%x\n", chip, len);
548 debug("write_data: ");
549 /* use rc for counter */
550 for (i = 0; i < len; ++i)
551 debug(" 0x%02x", buf[i]);
552 debug("\n");
553
554 for (i = 0; i < len; i++) {
555 ret = tx_byte(i2c_bus, buf[i]);
556 if (ret < 0) {
557 debug("i2c_write_data(): rc=%d\n", ret);
558 break;
559 }
560 }
561
562 return ret;
563}
564
Trent Piephoc8549332019-04-30 16:08:19 +0000565/* Will generate a STOP after the last byte if "last" is true, i.e. this is the
566 * final message of a transaction. If not, it switches the bus back to TX mode
567 * and does not send a STOP, leaving the bus in a state where a repeated start
568 * and address can be sent for another message.
569 */
Peng Fan71204e92015-05-15 07:29:12 +0800570static int i2c_read_data(struct mxc_i2c_bus *i2c_bus, uchar chip, uchar *buf,
Trent Piephoc8549332019-04-30 16:08:19 +0000571 int len, bool last)
Marek Vasutdb841402011-09-22 09:22:12 +0000572{
Marek Vasutdb841402011-09-22 09:22:12 +0000573 int ret;
574 unsigned int temp;
575 int i;
Peng Fan71204e92015-05-15 07:29:12 +0800576 int reg_shift = i2c_bus->driver_data & I2C_QUIRK_FLAG ?
577 VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT;
578 ulong base = i2c_bus->base;
Marek Vasutdb841402011-09-22 09:22:12 +0000579
Peng Fan71204e92015-05-15 07:29:12 +0800580 debug("i2c_read_data: chip=0x%x, len=0x%x\n", chip, len);
Marek Vasutdb841402011-09-22 09:22:12 +0000581
582 /* setup bus to read data */
Peng Fan71204e92015-05-15 07:29:12 +0800583 temp = readb(base + (I2CR << reg_shift));
Marek Vasutdb841402011-09-22 09:22:12 +0000584 temp &= ~(I2CR_MTX | I2CR_TX_NO_AK);
585 if (len == 1)
586 temp |= I2CR_TX_NO_AK;
Peng Fan71204e92015-05-15 07:29:12 +0800587 writeb(temp, base + (I2CR << reg_shift));
588 writeb(I2SR_IIF_CLEAR, base + (I2SR << reg_shift));
589 /* dummy read to clear ICF */
590 readb(base + (I2DR << reg_shift));
Marek Vasutdb841402011-09-22 09:22:12 +0000591
592 /* read data */
593 for (i = 0; i < len; i++) {
Peng Fan71204e92015-05-15 07:29:12 +0800594 ret = wait_for_sr_state(i2c_bus, ST_IIF);
Troy Kisky7aa57a02012-07-19 08:18:09 +0000595 if (ret < 0) {
Peng Fan71204e92015-05-15 07:29:12 +0800596 debug("i2c_read_data(): ret=%d\n", ret);
597 i2c_imx_stop(i2c_bus);
Marek Vasutdb841402011-09-22 09:22:12 +0000598 return ret;
Troy Kiskyc4330d22012-07-19 08:18:07 +0000599 }
Marek Vasutdb841402011-09-22 09:22:12 +0000600
Marek Vasutdb841402011-09-22 09:22:12 +0000601 if (i == (len - 1)) {
Trent Piephoc8549332019-04-30 16:08:19 +0000602 /* Final byte has already been received by master! When
603 * we read it from I2DR, the master will start another
604 * cycle. We must program it first to send a STOP or
605 * switch to TX to avoid this.
606 */
607 if (last) {
608 i2c_imx_stop(i2c_bus);
609 } else {
610 /* Final read, no stop, switch back to tx */
611 temp = readb(base + (I2CR << reg_shift));
612 temp |= I2CR_MTX | I2CR_TX_NO_AK;
613 writeb(temp, base + (I2CR << reg_shift));
614 }
Marek Vasutdb841402011-09-22 09:22:12 +0000615 } else if (i == (len - 2)) {
Trent Piephoc8549332019-04-30 16:08:19 +0000616 /* Master has already recevied penultimate byte. When
617 * we read it from I2DR, master will start RX of final
618 * byte. We must set TX_NO_AK now so it does not ACK
619 * that final byte.
620 */
Peng Fan71204e92015-05-15 07:29:12 +0800621 temp = readb(base + (I2CR << reg_shift));
Marek Vasutdb841402011-09-22 09:22:12 +0000622 temp |= I2CR_TX_NO_AK;
Peng Fan71204e92015-05-15 07:29:12 +0800623 writeb(temp, base + (I2CR << reg_shift));
Marek Vasutdb841402011-09-22 09:22:12 +0000624 }
Trent Piephoc8549332019-04-30 16:08:19 +0000625
Peng Fan71204e92015-05-15 07:29:12 +0800626 writeb(I2SR_IIF_CLEAR, base + (I2SR << reg_shift));
627 buf[i] = readb(base + (I2DR << reg_shift));
Marek Vasutdb841402011-09-22 09:22:12 +0000628 }
Peng Fan71204e92015-05-15 07:29:12 +0800629
630 /* reuse ret for counter*/
631 for (ret = 0; ret < len; ++ret)
632 debug(" 0x%02x", buf[ret]);
633 debug("\n");
634
Trent Piephoc8549332019-04-30 16:08:19 +0000635 /* It is not clear to me that this is necessary */
636 if (last)
637 i2c_imx_stop(i2c_bus);
Troy Kisky7aa57a02012-07-19 08:18:09 +0000638 return 0;
Marek Vasutdb841402011-09-22 09:22:12 +0000639}
640
Chuanhua Han068cabe2019-07-10 21:00:22 +0800641int __enable_i2c_clk(unsigned char enable, unsigned int i2c_num)
642{
643 return 1;
644}
645
646int enable_i2c_clk(unsigned char enable, unsigned int i2c_num)
647 __attribute__((weak, alias("__enable_i2c_clk")));
648
Peng Fan71204e92015-05-15 07:29:12 +0800649#ifndef CONFIG_DM_I2C
650/*
651 * Read data from I2C device
Trent Piepho6314b3c2019-04-30 16:08:18 +0000652 *
653 * The transactions use the syntax defined in the Linux kernel I2C docs.
654 *
655 * If alen is > 0, then this function will send a transaction of the form:
656 * S Chip Wr [A] Addr [A] S Chip Rd [A] [data] A ... NA P
657 * This is a normal I2C register read: writing the register address, then doing
658 * a repeated start and reading the data.
659 *
660 * If alen == 0, then we get this transaction:
661 * S Chip Wr [A] S Chip Rd [A] [data] A ... NA P
662 * This is somewhat unusual, though valid, transaction. It addresses the chip
663 * in write mode, but doesn't actually write any register address or data, then
664 * does a repeated start and reads data.
665 *
666 * If alen < 0, then we get this transaction:
667 * S Chip Rd [A] [data] A ... NA P
668 * The chip is addressed in read mode and then data is read. No register
669 * address is written first. This is perfectly valid on most devices and
670 * required on some (usually those that don't act like an array of registers).
Peng Fan71204e92015-05-15 07:29:12 +0800671 */
672static int bus_i2c_read(struct mxc_i2c_bus *i2c_bus, u8 chip, u32 addr,
673 int alen, u8 *buf, int len)
674{
675 int ret = 0;
676 u32 temp;
677 int reg_shift = i2c_bus->driver_data & I2C_QUIRK_FLAG ?
678 VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT;
679 ulong base = i2c_bus->base;
680
681 ret = i2c_init_transfer(i2c_bus, chip, addr, alen);
682 if (ret < 0)
683 return ret;
684
Nandor Han2feec4e2017-11-08 15:35:09 +0000685 if (alen >= 0) {
686 temp = readb(base + (I2CR << reg_shift));
687 temp |= I2CR_RSTA;
688 writeb(temp, base + (I2CR << reg_shift));
689 }
Peng Fan71204e92015-05-15 07:29:12 +0800690
691 ret = tx_byte(i2c_bus, (chip << 1) | 1);
692 if (ret < 0) {
693 i2c_imx_stop(i2c_bus);
694 return ret;
695 }
696
Trent Piephoc8549332019-04-30 16:08:19 +0000697 ret = i2c_read_data(i2c_bus, chip, buf, len, true);
Peng Fan71204e92015-05-15 07:29:12 +0800698
699 i2c_imx_stop(i2c_bus);
700 return ret;
701}
702
Marek Vasutdb841402011-09-22 09:22:12 +0000703/*
704 * Write data to I2C device
Trent Piepho6314b3c2019-04-30 16:08:18 +0000705 *
706 * If alen > 0, we get this transaction:
707 * S Chip Wr [A] addr [A] data [A] ... [A] P
708 * An ordinary write register command.
709 *
710 * If alen == 0, then we get this:
711 * S Chip Wr [A] data [A] ... [A] P
712 * This is a simple I2C write.
713 *
714 * If alen < 0, then we get this:
715 * S data [A] ... [A] P
716 * This is most likely NOT something that should be used. It doesn't send the
717 * chip address first, so in effect, the first byte of data will be used as the
718 * address.
Marek Vasutdb841402011-09-22 09:22:12 +0000719 */
Peng Fan71204e92015-05-15 07:29:12 +0800720static int bus_i2c_write(struct mxc_i2c_bus *i2c_bus, u8 chip, u32 addr,
721 int alen, const u8 *buf, int len)
Sascha Hauercdace062008-03-26 20:40:49 +0100722{
Peng Fan71204e92015-05-15 07:29:12 +0800723 int ret = 0;
Sascha Hauercdace062008-03-26 20:40:49 +0100724
Peng Fan71204e92015-05-15 07:29:12 +0800725 ret = i2c_init_transfer(i2c_bus, chip, addr, alen);
Troy Kiskycea60b02012-07-19 08:18:04 +0000726 if (ret < 0)
Marek Vasutdb841402011-09-22 09:22:12 +0000727 return ret;
Sascha Hauercdace062008-03-26 20:40:49 +0100728
Peng Fan71204e92015-05-15 07:29:12 +0800729 ret = i2c_write_data(i2c_bus, chip, buf, len);
730
731 i2c_imx_stop(i2c_bus);
732
Marek Vasutdb841402011-09-22 09:22:12 +0000733 return ret;
Sascha Hauercdace062008-03-26 20:40:49 +0100734}
Troy Kiskycfbb88d2012-07-19 08:18:08 +0000735
Peng Fan71204e92015-05-15 07:29:12 +0800736struct mxc_i2c_bus *i2c_get_base(struct i2c_adapter *adap)
tremfac96402013-09-21 18:13:35 +0200737{
Peng Fan71204e92015-05-15 07:29:12 +0800738 return &mxc_i2c_buses[adap->hwadapnr];
Troy Kisky96c19bd2012-07-19 08:18:19 +0000739}
740
tremfac96402013-09-21 18:13:35 +0200741static int mxc_i2c_read(struct i2c_adapter *adap, uint8_t chip,
742 uint addr, int alen, uint8_t *buffer,
743 int len)
Troy Kisky98153262012-07-19 08:18:20 +0000744{
tremfac96402013-09-21 18:13:35 +0200745 return bus_i2c_read(i2c_get_base(adap), chip, addr, alen, buffer, len);
Troy Kisky98153262012-07-19 08:18:20 +0000746}
747
tremfac96402013-09-21 18:13:35 +0200748static int mxc_i2c_write(struct i2c_adapter *adap, uint8_t chip,
749 uint addr, int alen, uint8_t *buffer,
750 int len)
Troy Kisky98153262012-07-19 08:18:20 +0000751{
tremfac96402013-09-21 18:13:35 +0200752 return bus_i2c_write(i2c_get_base(adap), chip, addr, alen, buffer, len);
Troy Kiskye4ff5252012-07-19 08:18:18 +0000753}
754
Troy Kiskycfbb88d2012-07-19 08:18:08 +0000755/*
756 * Test if a chip at a given address responds (probe the chip)
757 */
tremfac96402013-09-21 18:13:35 +0200758static int mxc_i2c_probe(struct i2c_adapter *adap, uint8_t chip)
Troy Kiskycfbb88d2012-07-19 08:18:08 +0000759{
tremfac96402013-09-21 18:13:35 +0200760 return bus_i2c_write(i2c_get_base(adap), chip, 0, 0, NULL, 0);
Troy Kiskye4ff5252012-07-19 08:18:18 +0000761}
762
Peng Fan71204e92015-05-15 07:29:12 +0800763void bus_i2c_init(int index, int speed, int unused,
764 int (*idle_bus_fn)(void *p), void *idle_bus_data)
765{
766 int ret;
767
768 if (index >= ARRAY_SIZE(mxc_i2c_buses)) {
769 debug("Error i2c index\n");
Troy Kiskye4ff5252012-07-19 08:18:18 +0000770 return;
Troy Kiskye4ff5252012-07-19 08:18:18 +0000771 }
Peng Fan71204e92015-05-15 07:29:12 +0800772
Peng Fan7d1ee742020-05-01 22:08:35 +0800773 if (CONFIG_IS_ENABLED(IMX_MODULE_FUSE)) {
774 if (i2c_fused((ulong)mxc_i2c_buses[index].base)) {
775 printf("SoC fuse indicates I2C@0x%lx is unavailable.\n",
776 (ulong)mxc_i2c_buses[index].base);
777 return;
778 }
779 }
780
Gong Qianyuaee3fdd2015-12-18 17:38:01 +0800781 /*
782 * Warning: Be careful to allow the assignment to a static
783 * variable here. This function could be called while U-Boot is
784 * still running in flash memory. So such assignment is equal
785 * to write data to flash without erasing.
786 */
787 if (idle_bus_fn)
788 mxc_i2c_buses[index].idle_bus_fn = idle_bus_fn;
789 if (idle_bus_data)
790 mxc_i2c_buses[index].idle_bus_data = idle_bus_data;
Peng Fan71204e92015-05-15 07:29:12 +0800791
792 ret = enable_i2c_clk(1, index);
793 if (ret < 0) {
794 debug("I2C-%d clk fail to enable.\n", index);
795 return;
796 }
797
798 bus_i2c_set_bus_speed(&mxc_i2c_buses[index], speed);
Troy Kiskye4ff5252012-07-19 08:18:18 +0000799}
800
Yuan Yao9d10c2d2016-06-08 18:24:51 +0800801
Yuan Yao9d10c2d2016-06-08 18:24:51 +0800802
803/*
Troy Kiskye4ff5252012-07-19 08:18:18 +0000804 * Init I2C Bus
805 */
tremfac96402013-09-21 18:13:35 +0200806static void mxc_i2c_init(struct i2c_adapter *adap, int speed, int slaveaddr)
Troy Kiskye4ff5252012-07-19 08:18:18 +0000807{
Peng Fan71204e92015-05-15 07:29:12 +0800808 bus_i2c_init(adap->hwadapnr, speed, slaveaddr, NULL, NULL);
Troy Kiskye4ff5252012-07-19 08:18:18 +0000809}
810
811/*
812 * Set I2C Speed
813 */
Peng Fan71204e92015-05-15 07:29:12 +0800814static u32 mxc_i2c_set_bus_speed(struct i2c_adapter *adap, uint speed)
Troy Kiskye4ff5252012-07-19 08:18:18 +0000815{
tremfac96402013-09-21 18:13:35 +0200816 return bus_i2c_set_bus_speed(i2c_get_base(adap), speed);
Troy Kiskye4ff5252012-07-19 08:18:18 +0000817}
818
819/*
tremfac96402013-09-21 18:13:35 +0200820 * Register mxc i2c adapters
Troy Kiskye4ff5252012-07-19 08:18:18 +0000821 */
Albert ARIBAUD \\(3ADEV\\)03544c62015-09-21 22:43:38 +0200822#ifdef CONFIG_SYS_I2C_MXC_I2C1
tremfac96402013-09-21 18:13:35 +0200823U_BOOT_I2C_ADAP_COMPLETE(mxc0, mxc_i2c_init, mxc_i2c_probe,
824 mxc_i2c_read, mxc_i2c_write,
825 mxc_i2c_set_bus_speed,
826 CONFIG_SYS_MXC_I2C1_SPEED,
827 CONFIG_SYS_MXC_I2C1_SLAVE, 0)
Albert ARIBAUD \\(3ADEV\\)03544c62015-09-21 22:43:38 +0200828#endif
829
830#ifdef CONFIG_SYS_I2C_MXC_I2C2
tremfac96402013-09-21 18:13:35 +0200831U_BOOT_I2C_ADAP_COMPLETE(mxc1, mxc_i2c_init, mxc_i2c_probe,
832 mxc_i2c_read, mxc_i2c_write,
833 mxc_i2c_set_bus_speed,
834 CONFIG_SYS_MXC_I2C2_SPEED,
835 CONFIG_SYS_MXC_I2C2_SLAVE, 1)
Albert ARIBAUD \\(3ADEV\\)03544c62015-09-21 22:43:38 +0200836#endif
837
York Sunf8cb1012015-03-20 10:20:40 -0700838#ifdef CONFIG_SYS_I2C_MXC_I2C3
tremfac96402013-09-21 18:13:35 +0200839U_BOOT_I2C_ADAP_COMPLETE(mxc2, mxc_i2c_init, mxc_i2c_probe,
840 mxc_i2c_read, mxc_i2c_write,
841 mxc_i2c_set_bus_speed,
842 CONFIG_SYS_MXC_I2C3_SPEED,
843 CONFIG_SYS_MXC_I2C3_SLAVE, 2)
844#endif
Peng Fan71204e92015-05-15 07:29:12 +0800845
York Sunf8cb1012015-03-20 10:20:40 -0700846#ifdef CONFIG_SYS_I2C_MXC_I2C4
847U_BOOT_I2C_ADAP_COMPLETE(mxc3, mxc_i2c_init, mxc_i2c_probe,
848 mxc_i2c_read, mxc_i2c_write,
849 mxc_i2c_set_bus_speed,
850 CONFIG_SYS_MXC_I2C4_SPEED,
851 CONFIG_SYS_MXC_I2C4_SLAVE, 3)
852#endif
Peng Fan71204e92015-05-15 07:29:12 +0800853
Sriram Dashfa452192018-02-06 11:26:31 +0530854#ifdef CONFIG_SYS_I2C_MXC_I2C5
855U_BOOT_I2C_ADAP_COMPLETE(mxc4, mxc_i2c_init, mxc_i2c_probe,
856 mxc_i2c_read, mxc_i2c_write,
857 mxc_i2c_set_bus_speed,
858 CONFIG_SYS_MXC_I2C5_SPEED,
859 CONFIG_SYS_MXC_I2C5_SLAVE, 4)
860#endif
861
862#ifdef CONFIG_SYS_I2C_MXC_I2C6
863U_BOOT_I2C_ADAP_COMPLETE(mxc5, mxc_i2c_init, mxc_i2c_probe,
864 mxc_i2c_read, mxc_i2c_write,
865 mxc_i2c_set_bus_speed,
866 CONFIG_SYS_MXC_I2C6_SPEED,
867 CONFIG_SYS_MXC_I2C6_SLAVE, 5)
868#endif
869
870#ifdef CONFIG_SYS_I2C_MXC_I2C7
871U_BOOT_I2C_ADAP_COMPLETE(mxc6, mxc_i2c_init, mxc_i2c_probe,
872 mxc_i2c_read, mxc_i2c_write,
873 mxc_i2c_set_bus_speed,
874 CONFIG_SYS_MXC_I2C7_SPEED,
875 CONFIG_SYS_MXC_I2C7_SLAVE, 6)
876#endif
877
878#ifdef CONFIG_SYS_I2C_MXC_I2C8
879U_BOOT_I2C_ADAP_COMPLETE(mxc7, mxc_i2c_init, mxc_i2c_probe,
880 mxc_i2c_read, mxc_i2c_write,
881 mxc_i2c_set_bus_speed,
882 CONFIG_SYS_MXC_I2C8_SPEED,
883 CONFIG_SYS_MXC_I2C8_SLAVE, 7)
884#endif
885
Peng Fan71204e92015-05-15 07:29:12 +0800886#else
887
888static int mxc_i2c_set_bus_speed(struct udevice *bus, unsigned int speed)
889{
890 struct mxc_i2c_bus *i2c_bus = dev_get_priv(bus);
891
892 return bus_i2c_set_bus_speed(i2c_bus, speed);
893}
894
895static int mxc_i2c_probe(struct udevice *bus)
896{
897 struct mxc_i2c_bus *i2c_bus = dev_get_priv(bus);
Peng Fane1bed802016-03-11 16:47:50 +0800898 const void *fdt = gd->fdt_blob;
Simon Glasse160f7d2017-01-17 16:52:55 -0700899 int node = dev_of_offset(bus);
Peng Fan71204e92015-05-15 07:29:12 +0800900 fdt_addr_t addr;
Peng Fane1bed802016-03-11 16:47:50 +0800901 int ret, ret2;
Peng Fan71204e92015-05-15 07:29:12 +0800902
903 i2c_bus->driver_data = dev_get_driver_data(bus);
904
Masahiro Yamada25484932020-07-17 14:36:48 +0900905 addr = dev_read_addr(bus);
Peng Fan71204e92015-05-15 07:29:12 +0800906 if (addr == FDT_ADDR_T_NONE)
Simon Glass7c843192017-09-17 16:54:53 -0600907 return -EINVAL;
Peng Fan71204e92015-05-15 07:29:12 +0800908
Peng Fan7d1ee742020-05-01 22:08:35 +0800909 if (CONFIG_IS_ENABLED(IMX_MODULE_FUSE)) {
910 if (i2c_fused((ulong)addr)) {
911 printf("SoC fuse indicates I2C@0x%lx is unavailable.\n",
912 (ulong)addr);
913 return -ENODEV;
914 }
915 }
916
Peng Fan71204e92015-05-15 07:29:12 +0800917 i2c_bus->base = addr;
Simon Glass8b85dfc2020-12-16 21:20:07 -0700918 i2c_bus->index = dev_seq(bus);
Peng Fane1bed802016-03-11 16:47:50 +0800919 i2c_bus->bus = bus;
Peng Fan71204e92015-05-15 07:29:12 +0800920
921 /* Enable clk */
Peng Fan6dba0862019-08-08 01:43:30 +0000922#if CONFIG_IS_ENABLED(CLK)
923 ret = clk_get_by_index(bus, 0, &i2c_bus->per_clk);
924 if (ret) {
925 printf("Failed to get i2c clk\n");
926 return ret;
927 }
928 ret = clk_enable(&i2c_bus->per_clk);
929 if (ret) {
930 printf("Failed to enable i2c clk\n");
931 return ret;
932 }
933#else
Simon Glass8b85dfc2020-12-16 21:20:07 -0700934 ret = enable_i2c_clk(1, dev_seq(bus));
Peng Fan71204e92015-05-15 07:29:12 +0800935 if (ret < 0)
936 return ret;
Peng Fan6dba0862019-08-08 01:43:30 +0000937#endif
Peng Fan71204e92015-05-15 07:29:12 +0800938
Peng Fane1bed802016-03-11 16:47:50 +0800939 /*
940 * See Documentation/devicetree/bindings/i2c/i2c-imx.txt
941 * Use gpio to force bus idle when necessary.
942 */
Simon Glassb02e4042016-10-02 17:59:28 -0600943 ret = fdt_stringlist_search(fdt, node, "pinctrl-names", "gpio");
Peng Fane1bed802016-03-11 16:47:50 +0800944 if (ret < 0) {
Sean Andersonb4f11df2020-09-15 10:44:39 -0400945 debug("i2c bus %d at 0x%2lx, no gpio pinctrl state.\n",
Simon Glass8b85dfc2020-12-16 21:20:07 -0700946 dev_seq(bus), i2c_bus->base);
Peng Fane1bed802016-03-11 16:47:50 +0800947 } else {
Simon Glass150c5af2017-05-30 21:47:09 -0600948 ret = gpio_request_by_name_nodev(offset_to_ofnode(node),
949 "scl-gpios", 0, &i2c_bus->scl_gpio,
950 GPIOD_IS_OUT);
951 ret2 = gpio_request_by_name_nodev(offset_to_ofnode(node),
952 "sda-gpios", 0, &i2c_bus->sda_gpio,
953 GPIOD_IS_OUT);
Peng Fanfb012872017-12-29 15:06:08 +0800954 if (!dm_gpio_is_valid(&i2c_bus->sda_gpio) ||
955 !dm_gpio_is_valid(&i2c_bus->scl_gpio) ||
956 ret || ret2) {
Sean Andersonb4f11df2020-09-15 10:44:39 -0400957 dev_err(bus,
Marc Ferland26c70482020-12-21 09:50:16 -0500958 "i2c bus %d at 0x%2lx, fail to request scl/sda gpio\n",
Simon Glass8b85dfc2020-12-16 21:20:07 -0700959 dev_seq(bus), i2c_bus->base);
Simon Glass7c843192017-09-17 16:54:53 -0600960 return -EINVAL;
Peng Fane1bed802016-03-11 16:47:50 +0800961 }
962 }
963
Peng Fan71204e92015-05-15 07:29:12 +0800964 /*
965 * Pinmux settings are in board file now, until pinmux is supported,
966 * we can set pinmux here in probe function.
967 */
968
969 debug("i2c : controller bus %d at %lu , speed %d: ",
Simon Glass8b85dfc2020-12-16 21:20:07 -0700970 dev_seq(bus), i2c_bus->base,
Peng Fan71204e92015-05-15 07:29:12 +0800971 i2c_bus->speed);
972
973 return 0;
974}
975
Trent Piepho6314b3c2019-04-30 16:08:18 +0000976/* Sends: S Addr Wr [A|NA] P */
Peng Fan71204e92015-05-15 07:29:12 +0800977static int mxc_i2c_probe_chip(struct udevice *bus, u32 chip_addr,
978 u32 chip_flags)
979{
980 int ret;
981 struct mxc_i2c_bus *i2c_bus = dev_get_priv(bus);
982
983 ret = i2c_init_transfer(i2c_bus, chip_addr, 0, 0);
984 if (ret < 0) {
985 debug("%s failed, ret = %d\n", __func__, ret);
986 return ret;
987 }
988
989 i2c_imx_stop(i2c_bus);
990
991 return 0;
992}
993
994static int mxc_i2c_xfer(struct udevice *bus, struct i2c_msg *msg, int nmsgs)
995{
996 struct mxc_i2c_bus *i2c_bus = dev_get_priv(bus);
997 int ret = 0;
998 ulong base = i2c_bus->base;
999 int reg_shift = i2c_bus->driver_data & I2C_QUIRK_FLAG ?
1000 VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT;
Trent Piephoc8549332019-04-30 16:08:19 +00001001 int read_mode;
Peng Fan71204e92015-05-15 07:29:12 +08001002
Trent Piephoc8549332019-04-30 16:08:19 +00001003 /* Here address len is set to -1 to not send any address at first.
1004 * Otherwise i2c_init_transfer will send the chip address with write
1005 * mode set. This is wrong if the 1st message is read.
Peng Fan71204e92015-05-15 07:29:12 +08001006 */
Trent Piephoc8549332019-04-30 16:08:19 +00001007 ret = i2c_init_transfer(i2c_bus, msg->addr, 0, -1);
Peng Fan71204e92015-05-15 07:29:12 +08001008 if (ret < 0) {
1009 debug("i2c_init_transfer error: %d\n", ret);
1010 return ret;
1011 }
1012
Trent Piephoc8549332019-04-30 16:08:19 +00001013 read_mode = -1; /* So it's always different on the first message */
Peng Fan71204e92015-05-15 07:29:12 +08001014 for (; nmsgs > 0; nmsgs--, msg++) {
Trent Piephoc8549332019-04-30 16:08:19 +00001015 const int msg_is_read = !!(msg->flags & I2C_M_RD);
1016
1017 debug("i2c_xfer: chip=0x%x, len=0x%x, dir=%c\n", msg->addr,
1018 msg->len, msg_is_read ? 'R' : 'W');
1019
1020 if (msg_is_read != read_mode) {
1021 /* Send repeated start if not 1st message */
1022 if (read_mode != -1) {
1023 debug("i2c_xfer: [RSTART]\n");
Peng Fan71204e92015-05-15 07:29:12 +08001024 ret = readb(base + (I2CR << reg_shift));
1025 ret |= I2CR_RSTA;
1026 writeb(ret, base + (I2CR << reg_shift));
Peng Fan71204e92015-05-15 07:29:12 +08001027 }
Trent Piephoc8549332019-04-30 16:08:19 +00001028 debug("i2c_xfer: [ADDR %02x | %c]\n", msg->addr,
1029 msg_is_read ? 'R' : 'W');
1030 ret = tx_byte(i2c_bus, (msg->addr << 1) | msg_is_read);
1031 if (ret < 0) {
1032 debug("i2c_xfer: [STOP]\n");
1033 i2c_imx_stop(i2c_bus);
1034 break;
1035 }
1036 read_mode = msg_is_read;
Peng Fan71204e92015-05-15 07:29:12 +08001037 }
Trent Piephoc8549332019-04-30 16:08:19 +00001038
1039 if (msg->flags & I2C_M_RD)
1040 ret = i2c_read_data(i2c_bus, msg->addr, msg->buf,
1041 msg->len, nmsgs == 1 ||
1042 (msg->flags & I2C_M_STOP));
1043 else
1044 ret = i2c_write_data(i2c_bus, msg->addr, msg->buf,
1045 msg->len);
1046
1047 if (ret < 0)
1048 break;
Peng Fan71204e92015-05-15 07:29:12 +08001049 }
1050
1051 if (ret)
1052 debug("i2c_write: error sending\n");
1053
1054 i2c_imx_stop(i2c_bus);
1055
1056 return ret;
1057}
1058
1059static const struct dm_i2c_ops mxc_i2c_ops = {
1060 .xfer = mxc_i2c_xfer,
1061 .probe_chip = mxc_i2c_probe_chip,
1062 .set_bus_speed = mxc_i2c_set_bus_speed,
1063};
1064
1065static const struct udevice_id mxc_i2c_ids[] = {
1066 { .compatible = "fsl,imx21-i2c", },
1067 { .compatible = "fsl,vf610-i2c", .data = I2C_QUIRK_FLAG, },
1068 {}
1069};
1070
1071U_BOOT_DRIVER(i2c_mxc) = {
1072 .name = "i2c_mxc",
1073 .id = UCLASS_I2C,
1074 .of_match = mxc_i2c_ids,
1075 .probe = mxc_i2c_probe,
Simon Glass41575d82020-12-03 16:55:17 -07001076 .priv_auto = sizeof(struct mxc_i2c_bus),
Peng Fan71204e92015-05-15 07:29:12 +08001077 .ops = &mxc_i2c_ops,
Biwen Lic6910322019-12-31 15:33:39 +08001078 .flags = DM_FLAG_PRE_RELOC,
Peng Fan71204e92015-05-15 07:29:12 +08001079};
1080#endif