blob: d312f35f044fd23f8fb06bbc2c286493ee53f1ec [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0
Jon Loeliger7237c032006-10-19 11:02:16 -05002/*
Timur Tabi92477a62009-09-04 16:28:35 -05003 * Copyright 2006,2009 Freescale Semiconductor, Inc.
Jon Loeliger7237c032006-10-19 11:02:16 -05004 *
Heiko Schocher00f792e2012-10-24 13:48:22 +02005 * 2012, Heiko Schocher, DENX Software Engineering, hs@denx.de.
6 * Changes for multibus/multiadapter I2C support.
Jon Loeliger7237c032006-10-19 11:02:16 -05007 */
8
Jon Loeliger7237c032006-10-19 11:02:16 -05009#include <common.h>
Jon Loeliger4d45f692006-10-19 12:02:24 -050010#include <command.h>
Jon Loeliger20476722006-10-20 15:50:15 -050011#include <i2c.h> /* Functional interface */
Simon Glassf7ae49f2020-05-10 11:40:05 -060012#include <log.h>
Simon Glass6887c5b2019-11-14 12:57:26 -070013#include <time.h>
Simon Glass401d1c42020-10-30 21:38:53 -060014#include <asm/global_data.h>
Jon Loeliger7237c032006-10-19 11:02:16 -050015#include <asm/io.h>
Jon Loeliger20476722006-10-20 15:50:15 -050016#include <asm/fsl_i2c.h> /* HW definitions */
Mario Sixe5c762f2018-03-28 14:37:44 +020017#include <clk.h>
mario.six@gdsys.ccdbc82ce2016-04-25 08:31:09 +020018#include <dm.h>
19#include <mapmem.h>
Simon Glassc05ed002020-05-10 11:40:11 -060020#include <linux/delay.h>
Jon Loeliger7237c032006-10-19 11:02:16 -050021
Timur Tabi92477a62009-09-04 16:28:35 -050022/* The maximum number of microseconds we will wait until another master has
23 * released the bus. If not defined in the board header file, then use a
24 * generic value.
25 */
Tom Rini6e7df1d2023-01-10 11:19:45 -050026#ifndef CFG_I2C_MBB_TIMEOUT
27#define CFG_I2C_MBB_TIMEOUT 100000
Timur Tabi92477a62009-09-04 16:28:35 -050028#endif
29
30/* The maximum number of microseconds we will wait for a read or write
31 * operation to complete. If not defined in the board header file, then use a
32 * generic value.
33 */
Tom Rini6e7df1d2023-01-10 11:19:45 -050034#ifndef CFG_I2C_TIMEOUT
35#define CFG_I2C_TIMEOUT 100000
Timur Tabi92477a62009-09-04 16:28:35 -050036#endif
Jon Loeliger7237c032006-10-19 11:02:16 -050037
Joakim Tjernlund1939d962006-11-28 16:17:27 -060038#define I2C_READ_BIT 1
39#define I2C_WRITE_BIT 0
40
Timur Tabid8c82db2008-03-14 17:45:29 -050041DECLARE_GLOBAL_DATA_PTR;
42
Tom Rinibe7dbb62021-12-12 22:12:30 -050043#ifdef CONFIG_M68K
Tom Rini81451a32023-01-10 11:19:30 -050044#define CFG_FSL_I2C_BASE_ADDR CFG_SYS_MBAR
45#else
46#define CFG_FSL_I2C_BASE_ADDR CONFIG_SYS_IMMR
Tom Rinibe7dbb62021-12-12 22:12:30 -050047#endif
48
Igor Opaniuk2147a162021-02-09 13:52:45 +020049#if !CONFIG_IS_ENABLED(DM_I2C)
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +020050static const struct fsl_i2c_base *i2c_base[4] = {
Tom Rini81451a32023-01-10 11:19:30 -050051 (struct fsl_i2c_base *)(CFG_FSL_I2C_BASE_ADDR + CONFIG_SYS_FSL_I2C_OFFSET),
Heiko Schocher00f792e2012-10-24 13:48:22 +020052#ifdef CONFIG_SYS_FSL_I2C2_OFFSET
Tom Rini81451a32023-01-10 11:19:30 -050053 (struct fsl_i2c_base *)(CFG_FSL_I2C_BASE_ADDR + CONFIG_SYS_FSL_I2C2_OFFSET),
Shengzhou Liua17fd102014-07-07 12:17:48 +080054#endif
55#ifdef CONFIG_SYS_FSL_I2C3_OFFSET
Tom Rini81451a32023-01-10 11:19:30 -050056 (struct fsl_i2c_base *)(CFG_FSL_I2C_BASE_ADDR + CONFIG_SYS_FSL_I2C3_OFFSET),
Shengzhou Liua17fd102014-07-07 12:17:48 +080057#endif
58#ifdef CONFIG_SYS_FSL_I2C4_OFFSET
Tom Rini81451a32023-01-10 11:19:30 -050059 (struct fsl_i2c_base *)(CFG_FSL_I2C_BASE_ADDR + CONFIG_SYS_FSL_I2C4_OFFSET)
Timur Tabibe5e6182006-11-03 19:15:00 -060060#endif
61};
mario.six@gdsys.ccdbc82ce2016-04-25 08:31:09 +020062#endif
Jon Loeliger7237c032006-10-19 11:02:16 -050063
Timur Tabid8c82db2008-03-14 17:45:29 -050064/* I2C speed map for a DFSR value of 1 */
65
Tom Rini645cb462017-02-09 15:40:16 -050066#ifdef __M68K__
Timur Tabid8c82db2008-03-14 17:45:29 -050067/*
68 * Map I2C frequency dividers to FDR and DFSR values
69 *
70 * This structure is used to define the elements of a table that maps I2C
71 * frequency divider (I2C clock rate divided by I2C bus speed) to a value to be
72 * programmed into the Frequency Divider Ratio (FDR) and Digital Filter
73 * Sampling Rate (DFSR) registers.
74 *
75 * The actual table should be defined in the board file, and it must be called
76 * fsl_i2c_speed_map[].
77 *
78 * The last entry of the table must have a value of {-1, X}, where X is same
79 * FDR/DFSR values as the second-to-last entry. This guarantees that any
80 * search through the array will always find a match.
81 *
82 * The values of the divider must be in increasing numerical order, i.e.
83 * fsl_i2c_speed_map[x+1].divider > fsl_i2c_speed_map[x].divider.
84 *
85 * For this table, the values are based on a value of 1 for the DFSR
86 * register. See the application note AN2919 "Determining the I2C Frequency
87 * Divider Ratio for SCL"
TsiChung Liew5d9a5ef2008-08-19 00:56:46 +060088 *
89 * ColdFire I2C frequency dividers for FDR values are different from
90 * PowerPC. The protocol to use the I2C module is still the same.
91 * A different table is defined and are based on MCF5xxx user manual.
92 *
Timur Tabid8c82db2008-03-14 17:45:29 -050093 */
94static const struct {
95 unsigned short divider;
Timur Tabid8c82db2008-03-14 17:45:29 -050096 u8 fdr;
97} fsl_i2c_speed_map[] = {
TsiChung Liew5d9a5ef2008-08-19 00:56:46 +060098 {20, 32}, {22, 33}, {24, 34}, {26, 35},
99 {28, 0}, {28, 36}, {30, 1}, {32, 37},
100 {34, 2}, {36, 38}, {40, 3}, {40, 39},
101 {44, 4}, {48, 5}, {48, 40}, {56, 6},
102 {56, 41}, {64, 42}, {68, 7}, {72, 43},
103 {80, 8}, {80, 44}, {88, 9}, {96, 41},
104 {104, 10}, {112, 42}, {128, 11}, {128, 43},
105 {144, 12}, {160, 13}, {160, 48}, {192, 14},
106 {192, 49}, {224, 50}, {240, 15}, {256, 51},
107 {288, 16}, {320, 17}, {320, 52}, {384, 18},
108 {384, 53}, {448, 54}, {480, 19}, {512, 55},
109 {576, 20}, {640, 21}, {640, 56}, {768, 22},
110 {768, 57}, {960, 23}, {896, 58}, {1024, 59},
111 {1152, 24}, {1280, 25}, {1280, 60}, {1536, 26},
112 {1536, 61}, {1792, 62}, {1920, 27}, {2048, 63},
113 {2304, 28}, {2560, 29}, {3072, 30}, {3840, 31},
114 {-1, 31}
Timur Tabid8c82db2008-03-14 17:45:29 -0500115};
Tom Rini645cb462017-02-09 15:40:16 -0500116#endif
Timur Tabid8c82db2008-03-14 17:45:29 -0500117
118/**
119 * Set the I2C bus speed for a given I2C device
120 *
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200121 * @param base: the I2C device registers
Timur Tabid8c82db2008-03-14 17:45:29 -0500122 * @i2c_clk: I2C bus clock frequency
123 * @speed: the desired speed of the bus
124 *
125 * The I2C device must be stopped before calling this function.
126 *
127 * The return value is the actual bus speed that is set.
128 */
Mario Sixa059de12018-01-15 11:08:07 +0100129static uint set_i2c_bus_speed(const struct fsl_i2c_base *base,
130 uint i2c_clk, uint speed)
Timur Tabid8c82db2008-03-14 17:45:29 -0500131{
Mario Sixa059de12018-01-15 11:08:07 +0100132 ushort divider = min(i2c_clk / speed, (uint)USHRT_MAX);
Timur Tabid8c82db2008-03-14 17:45:29 -0500133
134 /*
135 * We want to choose an FDR/DFSR that generates an I2C bus speed that
136 * is equal to or lower than the requested speed. That means that we
137 * want the first divider that is equal to or greater than the
138 * calculated divider.
139 */
Joakim Tjernlund99404202009-09-17 11:07:17 +0200140#ifdef __PPC__
141 u8 dfsr, fdr = 0x31; /* Default if no FDR found */
142 /* a, b and dfsr matches identifiers A,B and C respectively in AN2919 */
Mario Sixa059de12018-01-15 11:08:07 +0100143 ushort a, b, ga, gb;
144 ulong c_div, est_div;
Joakim Tjernlund99404202009-09-17 11:07:17 +0200145
146#ifdef CONFIG_FSL_I2C_CUSTOM_DFSR
147 dfsr = CONFIG_FSL_I2C_CUSTOM_DFSR;
148#else
149 /* Condition 1: dfsr <= 50/T */
150 dfsr = (5 * (i2c_clk / 1000)) / 100000;
151#endif
152#ifdef CONFIG_FSL_I2C_CUSTOM_FDR
153 fdr = CONFIG_FSL_I2C_CUSTOM_FDR;
154 speed = i2c_clk / divider; /* Fake something */
155#else
156 debug("Requested speed:%d, i2c_clk:%d\n", speed, i2c_clk);
157 if (!dfsr)
158 dfsr = 1;
159
160 est_div = ~0;
161 for (ga = 0x4, a = 10; a <= 30; ga++, a += 2) {
162 for (gb = 0; gb < 8; gb++) {
163 b = 16 << gb;
Mario Sixa059de12018-01-15 11:08:07 +0100164 c_div = b * (a + ((3 * dfsr) / b) * 2);
165 if (c_div > divider && c_div < est_div) {
166 ushort bin_gb, bin_ga;
Joakim Tjernlund99404202009-09-17 11:07:17 +0200167
168 est_div = c_div;
169 bin_gb = gb << 2;
170 bin_ga = (ga & 0x3) | ((ga & 0x4) << 3);
171 fdr = bin_gb | bin_ga;
172 speed = i2c_clk / est_div;
Mario Sixa059de12018-01-15 11:08:07 +0100173
174 debug("FDR: 0x%.2x, ", fdr);
175 debug("div: %ld, ", est_div);
176 debug("ga: 0x%x, gb: 0x%x, ", ga, gb);
177 debug("a: %d, b: %d, speed: %d\n", a, b, speed);
178
Joakim Tjernlund99404202009-09-17 11:07:17 +0200179 /* Condition 2 not accounted for */
180 debug("Tr <= %d ns\n",
181 (b - 3 * dfsr) * 1000000 /
182 (i2c_clk / 1000));
183 }
184 }
185 if (a == 20)
186 a += 2;
187 if (a == 24)
188 a += 4;
189 }
Mario Sixa059de12018-01-15 11:08:07 +0100190 debug("divider: %d, est_div: %ld, DFSR: %d\n", divider, est_div, dfsr);
191 debug("FDR: 0x%.2x, speed: %d\n", fdr, speed);
Joakim Tjernlund99404202009-09-17 11:07:17 +0200192#endif
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200193 writeb(dfsr, &base->dfsrr); /* set default filter */
194 writeb(fdr, &base->fdr); /* set bus speed */
Joakim Tjernlund99404202009-09-17 11:07:17 +0200195#else
Mario Sixa059de12018-01-15 11:08:07 +0100196 uint i;
Timur Tabid8c82db2008-03-14 17:45:29 -0500197
198 for (i = 0; i < ARRAY_SIZE(fsl_i2c_speed_map); i++)
199 if (fsl_i2c_speed_map[i].divider >= divider) {
TsiChung Liew5d9a5ef2008-08-19 00:56:46 +0600200 u8 fdr;
Joakim Tjernlund99404202009-09-17 11:07:17 +0200201
Joakim Tjernlundd01ee4d2009-09-17 11:07:16 +0200202 fdr = fsl_i2c_speed_map[i].fdr;
203 speed = i2c_clk / fsl_i2c_speed_map[i].divider;
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200204 writeb(fdr, &base->fdr); /* set bus speed */
Joakim Tjernlundd01ee4d2009-09-17 11:07:16 +0200205
Timur Tabid8c82db2008-03-14 17:45:29 -0500206 break;
207 }
Joakim Tjernlund99404202009-09-17 11:07:17 +0200208#endif
Timur Tabid8c82db2008-03-14 17:45:29 -0500209 return speed;
210}
211
Igor Opaniuk2147a162021-02-09 13:52:45 +0200212#if !CONFIG_IS_ENABLED(DM_I2C)
Mario Sixa059de12018-01-15 11:08:07 +0100213static uint get_i2c_clock(int bus)
Jerry Huangc9a8b252011-10-26 15:29:38 +0000214{
215 if (bus)
Simon Glass609e6ec2012-12-13 20:48:49 +0000216 return gd->arch.i2c2_clk; /* I2C2 clock */
Jerry Huangc9a8b252011-10-26 15:29:38 +0000217 else
Simon Glass609e6ec2012-12-13 20:48:49 +0000218 return gd->arch.i2c1_clk; /* I2C1 clock */
Jerry Huangc9a8b252011-10-26 15:29:38 +0000219}
mario.six@gdsys.ccdbc82ce2016-04-25 08:31:09 +0200220#endif
Jerry Huangc9a8b252011-10-26 15:29:38 +0000221
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200222static int fsl_i2c_fixup(const struct fsl_i2c_base *base)
Chunhe Lanb8ce3342013-08-16 15:10:36 +0800223{
Tom Rini6e7df1d2023-01-10 11:19:45 -0500224 const unsigned long long timeout = usec2ticks(CFG_I2C_MBB_TIMEOUT);
Chunhe Lanb8ce3342013-08-16 15:10:36 +0800225 unsigned long long timeval = 0;
226 int ret = -1;
Mario Sixa059de12018-01-15 11:08:07 +0100227 uint flags = 0;
Chunhe Lan9c3f77e2013-08-16 15:10:37 +0800228
229#ifdef CONFIG_SYS_FSL_ERRATUM_I2C_A004447
Mario Sixa059de12018-01-15 11:08:07 +0100230 uint svr = get_svr();
231
Chunhe Lan9c3f77e2013-08-16 15:10:37 +0800232 if ((SVR_SOC_VER(svr) == SVR_8548 && IS_SVR_REV(svr, 3, 1)) ||
233 (SVR_REV(svr) <= CONFIG_SYS_FSL_A004447_SVR_REV))
234 flags = I2C_CR_BIT6;
235#endif
Chunhe Lanb8ce3342013-08-16 15:10:36 +0800236
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200237 writeb(I2C_CR_MEN | I2C_CR_MSTA, &base->cr);
Chunhe Lanb8ce3342013-08-16 15:10:36 +0800238
239 timeval = get_ticks();
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200240 while (!(readb(&base->sr) & I2C_SR_MBB)) {
Chunhe Lanb8ce3342013-08-16 15:10:36 +0800241 if ((get_ticks() - timeval) > timeout)
242 goto err;
243 }
244
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200245 if (readb(&base->sr) & I2C_SR_MAL) {
Chunhe Lanb8ce3342013-08-16 15:10:36 +0800246 /* SDA is stuck low */
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200247 writeb(0, &base->cr);
Chunhe Lanb8ce3342013-08-16 15:10:36 +0800248 udelay(100);
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200249 writeb(I2C_CR_MSTA | flags, &base->cr);
250 writeb(I2C_CR_MEN | I2C_CR_MSTA | flags, &base->cr);
Chunhe Lanb8ce3342013-08-16 15:10:36 +0800251 }
252
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200253 readb(&base->dr);
Chunhe Lanb8ce3342013-08-16 15:10:36 +0800254
255 timeval = get_ticks();
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200256 while (!(readb(&base->sr) & I2C_SR_MIF)) {
Chunhe Lanb8ce3342013-08-16 15:10:36 +0800257 if ((get_ticks() - timeval) > timeout)
258 goto err;
259 }
260 ret = 0;
261
262err:
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200263 writeb(I2C_CR_MEN | flags, &base->cr);
264 writeb(0, &base->sr);
Chunhe Lanb8ce3342013-08-16 15:10:36 +0800265 udelay(100);
266
267 return ret;
268}
269
mario.six@gdsys.ccecf591e2016-04-25 08:31:08 +0200270static void __i2c_init(const struct fsl_i2c_base *base, int speed, int
271 slaveadd, int i2c_clk, int busnum)
Jon Loeliger7237c032006-10-19 11:02:16 -0500272{
Tom Rini6e7df1d2023-01-10 11:19:45 -0500273 const unsigned long long timeout = usec2ticks(CFG_I2C_MBB_TIMEOUT);
Chunhe Lanb8ce3342013-08-16 15:10:36 +0800274 unsigned long long timeval;
Jon Loeliger7237c032006-10-19 11:02:16 -0500275
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200276 writeb(0, &base->cr); /* stop I2C controller */
Heiko Schocher00f792e2012-10-24 13:48:22 +0200277 udelay(5); /* let it shutdown in peace */
mario.six@gdsys.ccecf591e2016-04-25 08:31:08 +0200278 set_i2c_bus_speed(base, i2c_clk, speed);
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200279 writeb(slaveadd << 1, &base->adr);/* write slave address */
280 writeb(0x0, &base->sr); /* clear status register */
281 writeb(I2C_CR_MEN, &base->cr); /* start I2C controller */
Richard Retanubun26a33502010-04-12 15:08:17 -0400282
Chunhe Lanb8ce3342013-08-16 15:10:36 +0800283 timeval = get_ticks();
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200284 while (readb(&base->sr) & I2C_SR_MBB) {
Chunhe Lanb8ce3342013-08-16 15:10:36 +0800285 if ((get_ticks() - timeval) < timeout)
286 continue;
287
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200288 if (fsl_i2c_fixup(base))
Chunhe Lanb8ce3342013-08-16 15:10:36 +0800289 debug("i2c_init: BUS#%d failed to init\n",
mario.six@gdsys.ccecf591e2016-04-25 08:31:08 +0200290 busnum);
Chunhe Lanb8ce3342013-08-16 15:10:36 +0800291
292 break;
293 }
Jon Loeliger7237c032006-10-19 11:02:16 -0500294}
295
Mario Sixa059de12018-01-15 11:08:07 +0100296static int i2c_wait4bus(const struct fsl_i2c_base *base)
Jon Loeliger7237c032006-10-19 11:02:16 -0500297{
Stefan Roesef2302d42008-08-06 14:05:38 +0200298 unsigned long long timeval = get_ticks();
Tom Rini6e7df1d2023-01-10 11:19:45 -0500299 const unsigned long long timeout = usec2ticks(CFG_I2C_MBB_TIMEOUT);
Jon Loeliger7237c032006-10-19 11:02:16 -0500300
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200301 while (readb(&base->sr) & I2C_SR_MBB) {
Timur Tabi92477a62009-09-04 16:28:35 -0500302 if ((get_ticks() - timeval) > timeout)
Jon Loeliger7237c032006-10-19 11:02:16 -0500303 return -1;
Jon Loeliger7237c032006-10-19 11:02:16 -0500304 }
305
306 return 0;
307}
308
Mario Sixd4f422f2018-01-15 11:08:08 +0100309static int i2c_wait(const struct fsl_i2c_base *base, int write)
Jon Loeliger7237c032006-10-19 11:02:16 -0500310{
311 u32 csr;
Stefan Roesef2302d42008-08-06 14:05:38 +0200312 unsigned long long timeval = get_ticks();
Tom Rini6e7df1d2023-01-10 11:19:45 -0500313 const unsigned long long timeout = usec2ticks(CFG_I2C_TIMEOUT);
Jon Loeliger7237c032006-10-19 11:02:16 -0500314
315 do {
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200316 csr = readb(&base->sr);
Jon Loeliger7237c032006-10-19 11:02:16 -0500317 if (!(csr & I2C_SR_MIF))
318 continue;
Joakim Tjernlund21f4cbb2009-09-17 11:07:15 +0200319 /* Read again to allow register to stabilise */
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200320 csr = readb(&base->sr);
Jon Loeliger7237c032006-10-19 11:02:16 -0500321
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200322 writeb(0x0, &base->sr);
Jon Loeliger7237c032006-10-19 11:02:16 -0500323
324 if (csr & I2C_SR_MAL) {
Mario Sixa059de12018-01-15 11:08:07 +0100325 debug("%s: MAL\n", __func__);
Jon Loeliger7237c032006-10-19 11:02:16 -0500326 return -1;
327 }
328
329 if (!(csr & I2C_SR_MCF)) {
Mario Sixa059de12018-01-15 11:08:07 +0100330 debug("%s: unfinished\n", __func__);
Jon Loeliger7237c032006-10-19 11:02:16 -0500331 return -1;
332 }
333
Joakim Tjernlund1939d962006-11-28 16:17:27 -0600334 if (write == I2C_WRITE_BIT && (csr & I2C_SR_RXAK)) {
Mario Sixa059de12018-01-15 11:08:07 +0100335 debug("%s: No RXACK\n", __func__);
Jon Loeliger7237c032006-10-19 11:02:16 -0500336 return -1;
337 }
338
339 return 0;
Timur Tabi92477a62009-09-04 16:28:35 -0500340 } while ((get_ticks() - timeval) < timeout);
Jon Loeliger7237c032006-10-19 11:02:16 -0500341
Mario Sixa059de12018-01-15 11:08:07 +0100342 debug("%s: timed out\n", __func__);
Jon Loeliger7237c032006-10-19 11:02:16 -0500343 return -1;
344}
345
Mario Sixd4f422f2018-01-15 11:08:08 +0100346static int i2c_write_addr(const struct fsl_i2c_base *base, u8 dev,
347 u8 dir, int rsta)
Jon Loeliger7237c032006-10-19 11:02:16 -0500348{
349 writeb(I2C_CR_MEN | I2C_CR_MSTA | I2C_CR_MTX
350 | (rsta ? I2C_CR_RSTA : 0),
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200351 &base->cr);
Jon Loeliger7237c032006-10-19 11:02:16 -0500352
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200353 writeb((dev << 1) | dir, &base->dr);
Jon Loeliger7237c032006-10-19 11:02:16 -0500354
mario.six@gdsys.ccecf591e2016-04-25 08:31:08 +0200355 if (i2c_wait(base, I2C_WRITE_BIT) < 0)
Jon Loeliger7237c032006-10-19 11:02:16 -0500356 return 0;
357
358 return 1;
359}
360
Mario Sixd4f422f2018-01-15 11:08:08 +0100361static int __i2c_write_data(const struct fsl_i2c_base *base, u8 *data,
362 int length)
Jon Loeliger7237c032006-10-19 11:02:16 -0500363{
364 int i;
365
Jon Loeliger7237c032006-10-19 11:02:16 -0500366 for (i = 0; i < length; i++) {
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200367 writeb(data[i], &base->dr);
Jon Loeliger7237c032006-10-19 11:02:16 -0500368
mario.six@gdsys.ccecf591e2016-04-25 08:31:08 +0200369 if (i2c_wait(base, I2C_WRITE_BIT) < 0)
Jon Loeliger7237c032006-10-19 11:02:16 -0500370 break;
371 }
372
373 return i;
374}
375
Mario Sixd4f422f2018-01-15 11:08:08 +0100376static int __i2c_read_data(const struct fsl_i2c_base *base, u8 *data,
377 int length)
Jon Loeliger7237c032006-10-19 11:02:16 -0500378{
379 int i;
380
381 writeb(I2C_CR_MEN | I2C_CR_MSTA | ((length == 1) ? I2C_CR_TXAK : 0),
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200382 &base->cr);
Jon Loeliger7237c032006-10-19 11:02:16 -0500383
384 /* dummy read */
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200385 readb(&base->dr);
Jon Loeliger7237c032006-10-19 11:02:16 -0500386
387 for (i = 0; i < length; i++) {
mario.six@gdsys.ccecf591e2016-04-25 08:31:08 +0200388 if (i2c_wait(base, I2C_READ_BIT) < 0)
Jon Loeliger7237c032006-10-19 11:02:16 -0500389 break;
390
391 /* Generate ack on last next to last byte */
392 if (i == length - 2)
393 writeb(I2C_CR_MEN | I2C_CR_MSTA | I2C_CR_TXAK,
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200394 &base->cr);
Jon Loeliger7237c032006-10-19 11:02:16 -0500395
Joakim Tjernlundd1c9e5b2009-09-22 13:40:44 +0200396 /* Do not generate stop on last byte */
Jon Loeliger7237c032006-10-19 11:02:16 -0500397 if (i == length - 1)
Joakim Tjernlundd1c9e5b2009-09-22 13:40:44 +0200398 writeb(I2C_CR_MEN | I2C_CR_MSTA | I2C_CR_MTX,
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200399 &base->cr);
Jon Loeliger7237c032006-10-19 11:02:16 -0500400
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200401 data[i] = readb(&base->dr);
Jon Loeliger7237c032006-10-19 11:02:16 -0500402 }
403
404 return i;
405}
406
Mario Sixa059de12018-01-15 11:08:07 +0100407static int __i2c_read(const struct fsl_i2c_base *base, u8 chip_addr, u8 *offset,
408 int olen, u8 *data, int dlen)
Jon Loeliger7237c032006-10-19 11:02:16 -0500409{
mario.six@gdsys.cc2b21e962016-04-25 08:31:02 +0200410 int ret = -1; /* signal error */
Jon Loeliger7237c032006-10-19 11:02:16 -0500411
mario.six@gdsys.ccecf591e2016-04-25 08:31:08 +0200412 if (i2c_wait4bus(base) < 0)
Reinhard Pfaub778c1b2013-06-26 15:55:14 +0200413 return -1;
414
mario.six@gdsys.cc386b2762016-04-25 08:31:03 +0200415 /* Some drivers use offset lengths in excess of 4 bytes. These drivers
416 * adhere to the following convention:
417 * - the offset length is passed as negative (that is, the absolute
418 * value of olen is the actual offset length)
419 * - the offset itself is passed in data, which is overwritten by the
420 * subsequent read operation
Shaveta Leekhaa4057642014-04-24 14:51:23 +0530421 */
mario.six@gdsys.cc2b21e962016-04-25 08:31:02 +0200422 if (olen < 0) {
mario.six@gdsys.ccecf591e2016-04-25 08:31:08 +0200423 if (i2c_write_addr(base, chip_addr, I2C_WRITE_BIT, 0) != 0)
424 ret = __i2c_write_data(base, data, -olen);
Joakim Tjernlundf6f5f702007-01-31 11:04:19 +0100425
mario.six@gdsys.cc03a112a2016-04-25 08:31:04 +0200426 if (ret != -olen)
Shaveta Leekhaa4057642014-04-24 14:51:23 +0530427 return -1;
428
mario.six@gdsys.ccecf591e2016-04-25 08:31:08 +0200429 if (dlen && i2c_write_addr(base, chip_addr,
mario.six@gdsys.cc2b21e962016-04-25 08:31:02 +0200430 I2C_READ_BIT, 1) != 0)
mario.six@gdsys.ccecf591e2016-04-25 08:31:08 +0200431 ret = __i2c_read_data(base, data, dlen);
Shaveta Leekhaa4057642014-04-24 14:51:23 +0530432 } else {
mario.six@gdsys.cc2b21e962016-04-25 08:31:02 +0200433 if ((!dlen || olen > 0) &&
mario.six@gdsys.ccecf591e2016-04-25 08:31:08 +0200434 i2c_write_addr(base, chip_addr, I2C_WRITE_BIT, 0) != 0 &&
435 __i2c_write_data(base, offset, olen) == olen)
mario.six@gdsys.cc2b21e962016-04-25 08:31:02 +0200436 ret = 0; /* No error so far */
Shaveta Leekhaa4057642014-04-24 14:51:23 +0530437
mario.six@gdsys.ccecf591e2016-04-25 08:31:08 +0200438 if (dlen && i2c_write_addr(base, chip_addr, I2C_READ_BIT,
mario.six@gdsys.cc2b21e962016-04-25 08:31:02 +0200439 olen ? 1 : 0) != 0)
mario.six@gdsys.ccecf591e2016-04-25 08:31:08 +0200440 ret = __i2c_read_data(base, data, dlen);
Shaveta Leekhaa4057642014-04-24 14:51:23 +0530441 }
Jon Loeliger7237c032006-10-19 11:02:16 -0500442
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200443 writeb(I2C_CR_MEN, &base->cr);
Jon Loeliger7237c032006-10-19 11:02:16 -0500444
mario.six@gdsys.ccecf591e2016-04-25 08:31:08 +0200445 if (i2c_wait4bus(base)) /* Wait until STOP */
Joakim Tjernlundd1c9e5b2009-09-22 13:40:44 +0200446 debug("i2c_read: wait4bus timed out\n");
447
mario.six@gdsys.cc2b21e962016-04-25 08:31:02 +0200448 if (ret == dlen)
449 return 0;
Jon Loeliger4d45f692006-10-19 12:02:24 -0500450
451 return -1;
Jon Loeliger7237c032006-10-19 11:02:16 -0500452}
453
Mario Sixa059de12018-01-15 11:08:07 +0100454static int __i2c_write(const struct fsl_i2c_base *base, u8 chip_addr,
455 u8 *offset, int olen, u8 *data, int dlen)
Jon Loeliger7237c032006-10-19 11:02:16 -0500456{
mario.six@gdsys.cc2b21e962016-04-25 08:31:02 +0200457 int ret = -1; /* signal error */
Jon Loeliger7237c032006-10-19 11:02:16 -0500458
mario.six@gdsys.ccecf591e2016-04-25 08:31:08 +0200459 if (i2c_wait4bus(base) < 0)
Chunhe Lanb8ce3342013-08-16 15:10:36 +0800460 return -1;
461
mario.six@gdsys.ccecf591e2016-04-25 08:31:08 +0200462 if (i2c_write_addr(base, chip_addr, I2C_WRITE_BIT, 0) != 0 &&
463 __i2c_write_data(base, offset, olen) == olen) {
464 ret = __i2c_write_data(base, data, dlen);
Jon Loeliger4d45f692006-10-19 12:02:24 -0500465 }
Jon Loeliger7237c032006-10-19 11:02:16 -0500466
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200467 writeb(I2C_CR_MEN, &base->cr);
mario.six@gdsys.ccecf591e2016-04-25 08:31:08 +0200468 if (i2c_wait4bus(base)) /* Wait until STOP */
Joakim Tjernlund21f4cbb2009-09-17 11:07:15 +0200469 debug("i2c_write: wait4bus timed out\n");
Jon Loeliger7237c032006-10-19 11:02:16 -0500470
mario.six@gdsys.cc2b21e962016-04-25 08:31:02 +0200471 if (ret == dlen)
472 return 0;
Jon Loeliger4d45f692006-10-19 12:02:24 -0500473
474 return -1;
Jon Loeliger7237c032006-10-19 11:02:16 -0500475}
476
Mario Sixa059de12018-01-15 11:08:07 +0100477static int __i2c_probe_chip(const struct fsl_i2c_base *base, uchar chip)
Jon Loeliger7237c032006-10-19 11:02:16 -0500478{
Mario Sixa059de12018-01-15 11:08:07 +0100479 /* For unknown reason the controller will ACK when
Joakim Tjernlundf6f5f702007-01-31 11:04:19 +0100480 * probing for a slave with the same address, so skip
481 * it.
Jon Loeliger7237c032006-10-19 11:02:16 -0500482 */
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200483 if (chip == (readb(&base->adr) >> 1))
Joakim Tjernlundf6f5f702007-01-31 11:04:19 +0100484 return -1;
Jon Loeliger7237c032006-10-19 11:02:16 -0500485
mario.six@gdsys.ccecf591e2016-04-25 08:31:08 +0200486 return __i2c_read(base, chip, 0, 0, NULL, 0);
Jon Loeliger7237c032006-10-19 11:02:16 -0500487}
488
Mario Sixa059de12018-01-15 11:08:07 +0100489static uint __i2c_set_bus_speed(const struct fsl_i2c_base *base,
490 uint speed, int i2c_clk)
Timur Tabibe5e6182006-11-03 19:15:00 -0600491{
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200492 writeb(0, &base->cr); /* stop controller */
mario.six@gdsys.ccecf591e2016-04-25 08:31:08 +0200493 set_i2c_bus_speed(base, i2c_clk, speed);
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200494 writeb(I2C_CR_MEN, &base->cr); /* start controller */
Timur Tabid8c82db2008-03-14 17:45:29 -0500495
496 return 0;
Timur Tabibe5e6182006-11-03 19:15:00 -0600497}
498
Igor Opaniuk2147a162021-02-09 13:52:45 +0200499#if !CONFIG_IS_ENABLED(DM_I2C)
mario.six@gdsys.ccad7e6572016-04-25 08:31:07 +0200500static void fsl_i2c_init(struct i2c_adapter *adap, int speed, int slaveadd)
501{
mario.six@gdsys.ccecf591e2016-04-25 08:31:08 +0200502 __i2c_init(i2c_base[adap->hwadapnr], speed, slaveadd,
503 get_i2c_clock(adap->hwadapnr), adap->hwadapnr);
mario.six@gdsys.ccad7e6572016-04-25 08:31:07 +0200504}
505
Mario Sixa059de12018-01-15 11:08:07 +0100506static int fsl_i2c_probe_chip(struct i2c_adapter *adap, uchar chip)
mario.six@gdsys.ccad7e6572016-04-25 08:31:07 +0200507{
mario.six@gdsys.ccecf591e2016-04-25 08:31:08 +0200508 return __i2c_probe_chip(i2c_base[adap->hwadapnr], chip);
mario.six@gdsys.ccad7e6572016-04-25 08:31:07 +0200509}
510
Mario Sixa059de12018-01-15 11:08:07 +0100511static int fsl_i2c_read(struct i2c_adapter *adap, u8 chip_addr, uint offset,
512 int olen, u8 *data, int dlen)
mario.six@gdsys.ccad7e6572016-04-25 08:31:07 +0200513{
mario.six@gdsys.ccecf591e2016-04-25 08:31:08 +0200514 u8 *o = (u8 *)&offset;
Mario Sixa059de12018-01-15 11:08:07 +0100515
mario.six@gdsys.ccecf591e2016-04-25 08:31:08 +0200516 return __i2c_read(i2c_base[adap->hwadapnr], chip_addr, &o[4 - olen],
517 olen, data, dlen);
mario.six@gdsys.ccad7e6572016-04-25 08:31:07 +0200518}
519
Mario Sixa059de12018-01-15 11:08:07 +0100520static int fsl_i2c_write(struct i2c_adapter *adap, u8 chip_addr, uint offset,
521 int olen, u8 *data, int dlen)
mario.six@gdsys.ccad7e6572016-04-25 08:31:07 +0200522{
mario.six@gdsys.ccecf591e2016-04-25 08:31:08 +0200523 u8 *o = (u8 *)&offset;
Mario Sixa059de12018-01-15 11:08:07 +0100524
mario.six@gdsys.ccecf591e2016-04-25 08:31:08 +0200525 return __i2c_write(i2c_base[adap->hwadapnr], chip_addr, &o[4 - olen],
526 olen, data, dlen);
mario.six@gdsys.ccad7e6572016-04-25 08:31:07 +0200527}
528
Mario Sixa059de12018-01-15 11:08:07 +0100529static uint fsl_i2c_set_bus_speed(struct i2c_adapter *adap, uint speed)
mario.six@gdsys.ccad7e6572016-04-25 08:31:07 +0200530{
mario.six@gdsys.ccecf591e2016-04-25 08:31:08 +0200531 return __i2c_set_bus_speed(i2c_base[adap->hwadapnr], speed,
532 get_i2c_clock(adap->hwadapnr));
mario.six@gdsys.ccad7e6572016-04-25 08:31:07 +0200533}
534
Heiko Schocher00f792e2012-10-24 13:48:22 +0200535/*
536 * Register fsl i2c adapters
537 */
mario.six@gdsys.cc16579ec2016-04-25 08:31:05 +0200538U_BOOT_I2C_ADAP_COMPLETE(fsl_0, fsl_i2c_init, fsl_i2c_probe_chip, fsl_i2c_read,
Heiko Schocher00f792e2012-10-24 13:48:22 +0200539 fsl_i2c_write, fsl_i2c_set_bus_speed,
Tom Rini6d5d0c92021-08-18 23:12:35 -0400540 CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE,
Heiko Schocher00f792e2012-10-24 13:48:22 +0200541 0)
542#ifdef CONFIG_SYS_FSL_I2C2_OFFSET
mario.six@gdsys.cc16579ec2016-04-25 08:31:05 +0200543U_BOOT_I2C_ADAP_COMPLETE(fsl_1, fsl_i2c_init, fsl_i2c_probe_chip, fsl_i2c_read,
Heiko Schocher00f792e2012-10-24 13:48:22 +0200544 fsl_i2c_write, fsl_i2c_set_bus_speed,
Tom Rini6d5d0c92021-08-18 23:12:35 -0400545 CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE,
Heiko Schocher00f792e2012-10-24 13:48:22 +0200546 1)
Heiko Schocherc1bce4f2009-02-24 11:30:37 +0100547#endif
Shengzhou Liua17fd102014-07-07 12:17:48 +0800548#ifdef CONFIG_SYS_FSL_I2C3_OFFSET
mario.six@gdsys.cc16579ec2016-04-25 08:31:05 +0200549U_BOOT_I2C_ADAP_COMPLETE(fsl_2, fsl_i2c_init, fsl_i2c_probe_chip, fsl_i2c_read,
Shengzhou Liua17fd102014-07-07 12:17:48 +0800550 fsl_i2c_write, fsl_i2c_set_bus_speed,
Tom Rini6d5d0c92021-08-18 23:12:35 -0400551 CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE,
Shengzhou Liua17fd102014-07-07 12:17:48 +0800552 2)
553#endif
554#ifdef CONFIG_SYS_FSL_I2C4_OFFSET
mario.six@gdsys.cc16579ec2016-04-25 08:31:05 +0200555U_BOOT_I2C_ADAP_COMPLETE(fsl_3, fsl_i2c_init, fsl_i2c_probe_chip, fsl_i2c_read,
Shengzhou Liua17fd102014-07-07 12:17:48 +0800556 fsl_i2c_write, fsl_i2c_set_bus_speed,
Tom Rini6d5d0c92021-08-18 23:12:35 -0400557 CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE,
Shengzhou Liua17fd102014-07-07 12:17:48 +0800558 3)
559#endif
mario.six@gdsys.ccdbc82ce2016-04-25 08:31:09 +0200560#else /* CONFIG_DM_I2C */
561static int fsl_i2c_probe_chip(struct udevice *bus, u32 chip_addr,
562 u32 chip_flags)
563{
564 struct fsl_i2c_dev *dev = dev_get_priv(bus);
Mario Sixa059de12018-01-15 11:08:07 +0100565
mario.six@gdsys.ccdbc82ce2016-04-25 08:31:09 +0200566 return __i2c_probe_chip(dev->base, chip_addr);
567}
568
Mario Sixa059de12018-01-15 11:08:07 +0100569static int fsl_i2c_set_bus_speed(struct udevice *bus, uint speed)
mario.six@gdsys.ccdbc82ce2016-04-25 08:31:09 +0200570{
571 struct fsl_i2c_dev *dev = dev_get_priv(bus);
Mario Sixa059de12018-01-15 11:08:07 +0100572
mario.six@gdsys.ccdbc82ce2016-04-25 08:31:09 +0200573 return __i2c_set_bus_speed(dev->base, speed, dev->i2c_clk);
574}
575
Simon Glassd1998a92020-12-03 16:55:21 -0700576static int fsl_i2c_of_to_plat(struct udevice *bus)
mario.six@gdsys.ccdbc82ce2016-04-25 08:31:09 +0200577{
578 struct fsl_i2c_dev *dev = dev_get_priv(bus);
Mario Sixe5c762f2018-03-28 14:37:44 +0200579 struct clk clock;
mario.six@gdsys.ccdbc82ce2016-04-25 08:31:09 +0200580
Mario Sixd9348322018-03-28 14:37:43 +0200581 dev->base = map_sysmem(dev_read_addr(bus), sizeof(struct fsl_i2c_base));
mario.six@gdsys.ccdbc82ce2016-04-25 08:31:09 +0200582
583 if (!dev->base)
584 return -ENOMEM;
585
Mario Six84a4d342018-01-15 11:08:09 +0100586 dev->index = dev_read_u32_default(bus, "cell-index", -1);
587 dev->slaveadd = dev_read_u32_default(bus, "u-boot,i2c-slave-addr",
588 0x7f);
Simon Glassf3d46152020-01-23 11:48:22 -0700589 dev->speed = dev_read_u32_default(bus, "clock-frequency",
590 I2C_SPEED_FAST_RATE);
mario.six@gdsys.ccdbc82ce2016-04-25 08:31:09 +0200591
Mario Sixe5c762f2018-03-28 14:37:44 +0200592 if (!clk_get_by_index(bus, 0, &clock))
593 dev->i2c_clk = clk_get_rate(&clock);
594 else
595 dev->i2c_clk = dev->index ? gd->arch.i2c2_clk :
596 gd->arch.i2c1_clk;
mario.six@gdsys.ccdbc82ce2016-04-25 08:31:09 +0200597
598 return 0;
599}
600
601static int fsl_i2c_probe(struct udevice *bus)
602{
603 struct fsl_i2c_dev *dev = dev_get_priv(bus);
Mario Sixa059de12018-01-15 11:08:07 +0100604
mario.six@gdsys.ccdbc82ce2016-04-25 08:31:09 +0200605 __i2c_init(dev->base, dev->speed, dev->slaveadd, dev->i2c_clk,
606 dev->index);
607 return 0;
608}
609
610static int fsl_i2c_xfer(struct udevice *bus, struct i2c_msg *msg, int nmsgs)
611{
612 struct fsl_i2c_dev *dev = dev_get_priv(bus);
613 struct i2c_msg *dmsg, *omsg, dummy;
614
615 memset(&dummy, 0, sizeof(struct i2c_msg));
616
617 /* We expect either two messages (one with an offset and one with the
Mario Sixa059de12018-01-15 11:08:07 +0100618 * actual data) or one message (just data)
619 */
mario.six@gdsys.ccdbc82ce2016-04-25 08:31:09 +0200620 if (nmsgs > 2 || nmsgs == 0) {
621 debug("%s: Only one or two messages are supported.", __func__);
622 return -1;
623 }
624
625 omsg = nmsgs == 1 ? &dummy : msg;
626 dmsg = nmsgs == 1 ? msg : msg + 1;
627
628 if (dmsg->flags & I2C_M_RD)
629 return __i2c_read(dev->base, dmsg->addr, omsg->buf, omsg->len,
630 dmsg->buf, dmsg->len);
631 else
632 return __i2c_write(dev->base, dmsg->addr, omsg->buf, omsg->len,
633 dmsg->buf, dmsg->len);
634}
635
636static const struct dm_i2c_ops fsl_i2c_ops = {
637 .xfer = fsl_i2c_xfer,
638 .probe_chip = fsl_i2c_probe_chip,
639 .set_bus_speed = fsl_i2c_set_bus_speed,
640};
641
642static const struct udevice_id fsl_i2c_ids[] = {
643 { .compatible = "fsl-i2c", },
644 { /* sentinel */ }
645};
646
647U_BOOT_DRIVER(i2c_fsl) = {
648 .name = "i2c_fsl",
649 .id = UCLASS_I2C,
650 .of_match = fsl_i2c_ids,
651 .probe = fsl_i2c_probe,
Simon Glassd1998a92020-12-03 16:55:21 -0700652 .of_to_plat = fsl_i2c_of_to_plat,
Simon Glass41575d82020-12-03 16:55:17 -0700653 .priv_auto = sizeof(struct fsl_i2c_dev),
mario.six@gdsys.ccdbc82ce2016-04-25 08:31:09 +0200654 .ops = &fsl_i2c_ops,
655};
656
657#endif /* CONFIG_DM_I2C */