blob: c3f826d68c7591e4318ecb5754a9312f960a6b1f [file] [log] [blame]
Jon Loeliger7237c032006-10-19 11:02:16 -05001/*
Timur Tabi92477a62009-09-04 16:28:35 -05002 * Copyright 2006,2009 Freescale Semiconductor, Inc.
Jon Loeliger7237c032006-10-19 11:02:16 -05003 *
Heiko Schocher00f792e2012-10-24 13:48:22 +02004 * 2012, Heiko Schocher, DENX Software Engineering, hs@denx.de.
5 * Changes for multibus/multiadapter I2C support.
6 *
Tom Rini5b8031c2016-01-14 22:05:13 -05007 * SPDX-License-Identifier: GPL-2.0
Jon Loeliger7237c032006-10-19 11:02:16 -05008 */
9
Jon Loeliger7237c032006-10-19 11:02:16 -050010#include <common.h>
Jon Loeliger4d45f692006-10-19 12:02:24 -050011#include <command.h>
Jon Loeliger20476722006-10-20 15:50:15 -050012#include <i2c.h> /* Functional interface */
Jon Loeliger7237c032006-10-19 11:02:16 -050013#include <asm/io.h>
Jon Loeliger20476722006-10-20 15:50:15 -050014#include <asm/fsl_i2c.h> /* HW definitions */
mario.six@gdsys.ccdbc82ce2016-04-25 08:31:09 +020015#include <dm.h>
16#include <mapmem.h>
Jon Loeliger7237c032006-10-19 11:02:16 -050017
Timur Tabi92477a62009-09-04 16:28:35 -050018/* The maximum number of microseconds we will wait until another master has
19 * released the bus. If not defined in the board header file, then use a
20 * generic value.
21 */
22#ifndef CONFIG_I2C_MBB_TIMEOUT
23#define CONFIG_I2C_MBB_TIMEOUT 100000
24#endif
25
26/* The maximum number of microseconds we will wait for a read or write
27 * operation to complete. If not defined in the board header file, then use a
28 * generic value.
29 */
30#ifndef CONFIG_I2C_TIMEOUT
Shaveta Leekha6dd38cc2014-11-03 10:43:14 +053031#define CONFIG_I2C_TIMEOUT 100000
Timur Tabi92477a62009-09-04 16:28:35 -050032#endif
Jon Loeliger7237c032006-10-19 11:02:16 -050033
Joakim Tjernlund1939d962006-11-28 16:17:27 -060034#define I2C_READ_BIT 1
35#define I2C_WRITE_BIT 0
36
Timur Tabid8c82db2008-03-14 17:45:29 -050037DECLARE_GLOBAL_DATA_PTR;
38
mario.six@gdsys.ccdbc82ce2016-04-25 08:31:09 +020039#ifndef CONFIG_DM_I2C
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +020040static const struct fsl_i2c_base *i2c_base[4] = {
41 (struct fsl_i2c_base *)(CONFIG_SYS_IMMR + CONFIG_SYS_FSL_I2C_OFFSET),
Heiko Schocher00f792e2012-10-24 13:48:22 +020042#ifdef CONFIG_SYS_FSL_I2C2_OFFSET
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +020043 (struct fsl_i2c_base *)(CONFIG_SYS_IMMR + CONFIG_SYS_FSL_I2C2_OFFSET),
Shengzhou Liua17fd102014-07-07 12:17:48 +080044#endif
45#ifdef CONFIG_SYS_FSL_I2C3_OFFSET
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +020046 (struct fsl_i2c_base *)(CONFIG_SYS_IMMR + CONFIG_SYS_FSL_I2C3_OFFSET),
Shengzhou Liua17fd102014-07-07 12:17:48 +080047#endif
48#ifdef CONFIG_SYS_FSL_I2C4_OFFSET
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +020049 (struct fsl_i2c_base *)(CONFIG_SYS_IMMR + CONFIG_SYS_FSL_I2C4_OFFSET)
Timur Tabibe5e6182006-11-03 19:15:00 -060050#endif
51};
mario.six@gdsys.ccdbc82ce2016-04-25 08:31:09 +020052#endif
Jon Loeliger7237c032006-10-19 11:02:16 -050053
Timur Tabid8c82db2008-03-14 17:45:29 -050054/* I2C speed map for a DFSR value of 1 */
55
56/*
57 * Map I2C frequency dividers to FDR and DFSR values
58 *
59 * This structure is used to define the elements of a table that maps I2C
60 * frequency divider (I2C clock rate divided by I2C bus speed) to a value to be
61 * programmed into the Frequency Divider Ratio (FDR) and Digital Filter
62 * Sampling Rate (DFSR) registers.
63 *
64 * The actual table should be defined in the board file, and it must be called
65 * fsl_i2c_speed_map[].
66 *
67 * The last entry of the table must have a value of {-1, X}, where X is same
68 * FDR/DFSR values as the second-to-last entry. This guarantees that any
69 * search through the array will always find a match.
70 *
71 * The values of the divider must be in increasing numerical order, i.e.
72 * fsl_i2c_speed_map[x+1].divider > fsl_i2c_speed_map[x].divider.
73 *
74 * For this table, the values are based on a value of 1 for the DFSR
75 * register. See the application note AN2919 "Determining the I2C Frequency
76 * Divider Ratio for SCL"
TsiChung Liew5d9a5ef2008-08-19 00:56:46 +060077 *
78 * ColdFire I2C frequency dividers for FDR values are different from
79 * PowerPC. The protocol to use the I2C module is still the same.
80 * A different table is defined and are based on MCF5xxx user manual.
81 *
Timur Tabid8c82db2008-03-14 17:45:29 -050082 */
83static const struct {
84 unsigned short divider;
Timur Tabid8c82db2008-03-14 17:45:29 -050085 u8 fdr;
86} fsl_i2c_speed_map[] = {
Joakim Tjernlund99404202009-09-17 11:07:17 +020087#ifdef __M68K__
TsiChung Liew5d9a5ef2008-08-19 00:56:46 +060088 {20, 32}, {22, 33}, {24, 34}, {26, 35},
89 {28, 0}, {28, 36}, {30, 1}, {32, 37},
90 {34, 2}, {36, 38}, {40, 3}, {40, 39},
91 {44, 4}, {48, 5}, {48, 40}, {56, 6},
92 {56, 41}, {64, 42}, {68, 7}, {72, 43},
93 {80, 8}, {80, 44}, {88, 9}, {96, 41},
94 {104, 10}, {112, 42}, {128, 11}, {128, 43},
95 {144, 12}, {160, 13}, {160, 48}, {192, 14},
96 {192, 49}, {224, 50}, {240, 15}, {256, 51},
97 {288, 16}, {320, 17}, {320, 52}, {384, 18},
98 {384, 53}, {448, 54}, {480, 19}, {512, 55},
99 {576, 20}, {640, 21}, {640, 56}, {768, 22},
100 {768, 57}, {960, 23}, {896, 58}, {1024, 59},
101 {1152, 24}, {1280, 25}, {1280, 60}, {1536, 26},
102 {1536, 61}, {1792, 62}, {1920, 27}, {2048, 63},
103 {2304, 28}, {2560, 29}, {3072, 30}, {3840, 31},
104 {-1, 31}
105#endif
Timur Tabid8c82db2008-03-14 17:45:29 -0500106};
107
108/**
109 * Set the I2C bus speed for a given I2C device
110 *
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200111 * @param base: the I2C device registers
Timur Tabid8c82db2008-03-14 17:45:29 -0500112 * @i2c_clk: I2C bus clock frequency
113 * @speed: the desired speed of the bus
114 *
115 * The I2C device must be stopped before calling this function.
116 *
117 * The return value is the actual bus speed that is set.
118 */
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200119static unsigned int set_i2c_bus_speed(const struct fsl_i2c_base *base,
Timur Tabid8c82db2008-03-14 17:45:29 -0500120 unsigned int i2c_clk, unsigned int speed)
121{
Masahiro Yamadab4141192014-11-07 03:03:31 +0900122 unsigned short divider = min(i2c_clk / speed, (unsigned int)USHRT_MAX);
Timur Tabid8c82db2008-03-14 17:45:29 -0500123
124 /*
125 * We want to choose an FDR/DFSR that generates an I2C bus speed that
126 * is equal to or lower than the requested speed. That means that we
127 * want the first divider that is equal to or greater than the
128 * calculated divider.
129 */
Joakim Tjernlund99404202009-09-17 11:07:17 +0200130#ifdef __PPC__
131 u8 dfsr, fdr = 0x31; /* Default if no FDR found */
132 /* a, b and dfsr matches identifiers A,B and C respectively in AN2919 */
133 unsigned short a, b, ga, gb;
134 unsigned long c_div, est_div;
135
136#ifdef CONFIG_FSL_I2C_CUSTOM_DFSR
137 dfsr = CONFIG_FSL_I2C_CUSTOM_DFSR;
138#else
139 /* Condition 1: dfsr <= 50/T */
140 dfsr = (5 * (i2c_clk / 1000)) / 100000;
141#endif
142#ifdef CONFIG_FSL_I2C_CUSTOM_FDR
143 fdr = CONFIG_FSL_I2C_CUSTOM_FDR;
144 speed = i2c_clk / divider; /* Fake something */
145#else
146 debug("Requested speed:%d, i2c_clk:%d\n", speed, i2c_clk);
147 if (!dfsr)
148 dfsr = 1;
149
150 est_div = ~0;
151 for (ga = 0x4, a = 10; a <= 30; ga++, a += 2) {
152 for (gb = 0; gb < 8; gb++) {
153 b = 16 << gb;
154 c_div = b * (a + ((3*dfsr)/b)*2);
155 if ((c_div > divider) && (c_div < est_div)) {
156 unsigned short bin_gb, bin_ga;
157
158 est_div = c_div;
159 bin_gb = gb << 2;
160 bin_ga = (ga & 0x3) | ((ga & 0x4) << 3);
161 fdr = bin_gb | bin_ga;
162 speed = i2c_clk / est_div;
163 debug("FDR:0x%.2x, div:%ld, ga:0x%x, gb:0x%x, "
164 "a:%d, b:%d, speed:%d\n",
165 fdr, est_div, ga, gb, a, b, speed);
166 /* Condition 2 not accounted for */
167 debug("Tr <= %d ns\n",
168 (b - 3 * dfsr) * 1000000 /
169 (i2c_clk / 1000));
170 }
171 }
172 if (a == 20)
173 a += 2;
174 if (a == 24)
175 a += 4;
176 }
177 debug("divider:%d, est_div:%ld, DFSR:%d\n", divider, est_div, dfsr);
178 debug("FDR:0x%.2x, speed:%d\n", fdr, speed);
179#endif
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200180 writeb(dfsr, &base->dfsrr); /* set default filter */
181 writeb(fdr, &base->fdr); /* set bus speed */
Joakim Tjernlund99404202009-09-17 11:07:17 +0200182#else
183 unsigned int i;
Timur Tabid8c82db2008-03-14 17:45:29 -0500184
185 for (i = 0; i < ARRAY_SIZE(fsl_i2c_speed_map); i++)
186 if (fsl_i2c_speed_map[i].divider >= divider) {
TsiChung Liew5d9a5ef2008-08-19 00:56:46 +0600187 u8 fdr;
Joakim Tjernlund99404202009-09-17 11:07:17 +0200188
Joakim Tjernlundd01ee4d2009-09-17 11:07:16 +0200189 fdr = fsl_i2c_speed_map[i].fdr;
190 speed = i2c_clk / fsl_i2c_speed_map[i].divider;
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200191 writeb(fdr, &base->fdr); /* set bus speed */
Joakim Tjernlundd01ee4d2009-09-17 11:07:16 +0200192
Timur Tabid8c82db2008-03-14 17:45:29 -0500193 break;
194 }
Joakim Tjernlund99404202009-09-17 11:07:17 +0200195#endif
Timur Tabid8c82db2008-03-14 17:45:29 -0500196 return speed;
197}
198
mario.six@gdsys.ccdbc82ce2016-04-25 08:31:09 +0200199#ifndef CONFIG_DM_I2C
Kim Phillips62f730f2012-10-16 14:28:43 +0000200static unsigned int get_i2c_clock(int bus)
Jerry Huangc9a8b252011-10-26 15:29:38 +0000201{
202 if (bus)
Simon Glass609e6ec2012-12-13 20:48:49 +0000203 return gd->arch.i2c2_clk; /* I2C2 clock */
Jerry Huangc9a8b252011-10-26 15:29:38 +0000204 else
Simon Glass609e6ec2012-12-13 20:48:49 +0000205 return gd->arch.i2c1_clk; /* I2C1 clock */
Jerry Huangc9a8b252011-10-26 15:29:38 +0000206}
mario.six@gdsys.ccdbc82ce2016-04-25 08:31:09 +0200207#endif
Jerry Huangc9a8b252011-10-26 15:29:38 +0000208
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200209static int fsl_i2c_fixup(const struct fsl_i2c_base *base)
Chunhe Lanb8ce3342013-08-16 15:10:36 +0800210{
211 const unsigned long long timeout = usec2ticks(CONFIG_I2C_MBB_TIMEOUT);
212 unsigned long long timeval = 0;
213 int ret = -1;
Chunhe Lan9c3f77e2013-08-16 15:10:37 +0800214 unsigned int flags = 0;
215
216#ifdef CONFIG_SYS_FSL_ERRATUM_I2C_A004447
217 unsigned int svr = get_svr();
218 if ((SVR_SOC_VER(svr) == SVR_8548 && IS_SVR_REV(svr, 3, 1)) ||
219 (SVR_REV(svr) <= CONFIG_SYS_FSL_A004447_SVR_REV))
220 flags = I2C_CR_BIT6;
221#endif
Chunhe Lanb8ce3342013-08-16 15:10:36 +0800222
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200223 writeb(I2C_CR_MEN | I2C_CR_MSTA, &base->cr);
Chunhe Lanb8ce3342013-08-16 15:10:36 +0800224
225 timeval = get_ticks();
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200226 while (!(readb(&base->sr) & I2C_SR_MBB)) {
Chunhe Lanb8ce3342013-08-16 15:10:36 +0800227 if ((get_ticks() - timeval) > timeout)
228 goto err;
229 }
230
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200231 if (readb(&base->sr) & I2C_SR_MAL) {
Chunhe Lanb8ce3342013-08-16 15:10:36 +0800232 /* SDA is stuck low */
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200233 writeb(0, &base->cr);
Chunhe Lanb8ce3342013-08-16 15:10:36 +0800234 udelay(100);
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200235 writeb(I2C_CR_MSTA | flags, &base->cr);
236 writeb(I2C_CR_MEN | I2C_CR_MSTA | flags, &base->cr);
Chunhe Lanb8ce3342013-08-16 15:10:36 +0800237 }
238
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200239 readb(&base->dr);
Chunhe Lanb8ce3342013-08-16 15:10:36 +0800240
241 timeval = get_ticks();
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200242 while (!(readb(&base->sr) & I2C_SR_MIF)) {
Chunhe Lanb8ce3342013-08-16 15:10:36 +0800243 if ((get_ticks() - timeval) > timeout)
244 goto err;
245 }
246 ret = 0;
247
248err:
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200249 writeb(I2C_CR_MEN | flags, &base->cr);
250 writeb(0, &base->sr);
Chunhe Lanb8ce3342013-08-16 15:10:36 +0800251 udelay(100);
252
253 return ret;
254}
255
mario.six@gdsys.ccecf591e2016-04-25 08:31:08 +0200256static void __i2c_init(const struct fsl_i2c_base *base, int speed, int
257 slaveadd, int i2c_clk, int busnum)
Jon Loeliger7237c032006-10-19 11:02:16 -0500258{
Chunhe Lanb8ce3342013-08-16 15:10:36 +0800259 const unsigned long long timeout = usec2ticks(CONFIG_I2C_MBB_TIMEOUT);
260 unsigned long long timeval;
Jon Loeliger7237c032006-10-19 11:02:16 -0500261
Heiko Schocher39df00d2009-07-09 12:04:26 +0200262#ifdef CONFIG_SYS_I2C_INIT_BOARD
Richard Retanubun26a33502010-04-12 15:08:17 -0400263 /* Call board specific i2c bus reset routine before accessing the
264 * environment, which might be in a chip on that bus. For details
265 * about this problem see doc/I2C_Edge_Conditions.
266 */
Heiko Schocher39df00d2009-07-09 12:04:26 +0200267 i2c_init_board();
268#endif
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200269 writeb(0, &base->cr); /* stop I2C controller */
Heiko Schocher00f792e2012-10-24 13:48:22 +0200270 udelay(5); /* let it shutdown in peace */
mario.six@gdsys.ccecf591e2016-04-25 08:31:08 +0200271 set_i2c_bus_speed(base, i2c_clk, speed);
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200272 writeb(slaveadd << 1, &base->adr);/* write slave address */
273 writeb(0x0, &base->sr); /* clear status register */
274 writeb(I2C_CR_MEN, &base->cr); /* start I2C controller */
Richard Retanubun26a33502010-04-12 15:08:17 -0400275
Chunhe Lanb8ce3342013-08-16 15:10:36 +0800276 timeval = get_ticks();
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200277 while (readb(&base->sr) & I2C_SR_MBB) {
Chunhe Lanb8ce3342013-08-16 15:10:36 +0800278 if ((get_ticks() - timeval) < timeout)
279 continue;
280
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200281 if (fsl_i2c_fixup(base))
Chunhe Lanb8ce3342013-08-16 15:10:36 +0800282 debug("i2c_init: BUS#%d failed to init\n",
mario.six@gdsys.ccecf591e2016-04-25 08:31:08 +0200283 busnum);
Chunhe Lanb8ce3342013-08-16 15:10:36 +0800284
285 break;
286 }
287
Richard Retanubun26a33502010-04-12 15:08:17 -0400288#ifdef CONFIG_SYS_I2C_BOARD_LATE_INIT
289 /* Call board specific i2c bus reset routine AFTER the bus has been
290 * initialized. Use either this callpoint or i2c_init_board;
291 * which is called before i2c_init operations.
292 * For details about this problem see doc/I2C_Edge_Conditions.
293 */
294 i2c_board_late_init();
295#endif
Jon Loeliger7237c032006-10-19 11:02:16 -0500296}
297
Joakim Tjernlund21f4cbb2009-09-17 11:07:15 +0200298static int
mario.six@gdsys.ccecf591e2016-04-25 08:31:08 +0200299i2c_wait4bus(const struct fsl_i2c_base *base)
Jon Loeliger7237c032006-10-19 11:02:16 -0500300{
Stefan Roesef2302d42008-08-06 14:05:38 +0200301 unsigned long long timeval = get_ticks();
Timur Tabi92477a62009-09-04 16:28:35 -0500302 const unsigned long long timeout = usec2ticks(CONFIG_I2C_MBB_TIMEOUT);
Jon Loeliger7237c032006-10-19 11:02:16 -0500303
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200304 while (readb(&base->sr) & I2C_SR_MBB) {
Timur Tabi92477a62009-09-04 16:28:35 -0500305 if ((get_ticks() - timeval) > timeout)
Jon Loeliger7237c032006-10-19 11:02:16 -0500306 return -1;
Jon Loeliger7237c032006-10-19 11:02:16 -0500307 }
308
309 return 0;
310}
311
mario.six@gdsys.ccecf591e2016-04-25 08:31:08 +0200312static inline int
313i2c_wait(const struct fsl_i2c_base *base, int write)
Jon Loeliger7237c032006-10-19 11:02:16 -0500314{
315 u32 csr;
Stefan Roesef2302d42008-08-06 14:05:38 +0200316 unsigned long long timeval = get_ticks();
Timur Tabi92477a62009-09-04 16:28:35 -0500317 const unsigned long long timeout = usec2ticks(CONFIG_I2C_TIMEOUT);
Jon Loeliger7237c032006-10-19 11:02:16 -0500318
319 do {
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200320 csr = readb(&base->sr);
Jon Loeliger7237c032006-10-19 11:02:16 -0500321 if (!(csr & I2C_SR_MIF))
322 continue;
Joakim Tjernlund21f4cbb2009-09-17 11:07:15 +0200323 /* Read again to allow register to stabilise */
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200324 csr = readb(&base->sr);
Jon Loeliger7237c032006-10-19 11:02:16 -0500325
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200326 writeb(0x0, &base->sr);
Jon Loeliger7237c032006-10-19 11:02:16 -0500327
328 if (csr & I2C_SR_MAL) {
329 debug("i2c_wait: MAL\n");
330 return -1;
331 }
332
333 if (!(csr & I2C_SR_MCF)) {
334 debug("i2c_wait: unfinished\n");
335 return -1;
336 }
337
Joakim Tjernlund1939d962006-11-28 16:17:27 -0600338 if (write == I2C_WRITE_BIT && (csr & I2C_SR_RXAK)) {
Jon Loeliger7237c032006-10-19 11:02:16 -0500339 debug("i2c_wait: No RXACK\n");
340 return -1;
341 }
342
343 return 0;
Timur Tabi92477a62009-09-04 16:28:35 -0500344 } while ((get_ticks() - timeval) < timeout);
Jon Loeliger7237c032006-10-19 11:02:16 -0500345
346 debug("i2c_wait: timed out\n");
347 return -1;
348}
349
mario.six@gdsys.ccecf591e2016-04-25 08:31:08 +0200350static inline int
351i2c_write_addr(const struct fsl_i2c_base *base, u8 dev, u8 dir, int rsta)
Jon Loeliger7237c032006-10-19 11:02:16 -0500352{
353 writeb(I2C_CR_MEN | I2C_CR_MSTA | I2C_CR_MTX
354 | (rsta ? I2C_CR_RSTA : 0),
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200355 &base->cr);
Jon Loeliger7237c032006-10-19 11:02:16 -0500356
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200357 writeb((dev << 1) | dir, &base->dr);
Jon Loeliger7237c032006-10-19 11:02:16 -0500358
mario.six@gdsys.ccecf591e2016-04-25 08:31:08 +0200359 if (i2c_wait(base, I2C_WRITE_BIT) < 0)
Jon Loeliger7237c032006-10-19 11:02:16 -0500360 return 0;
361
362 return 1;
363}
364
mario.six@gdsys.ccecf591e2016-04-25 08:31:08 +0200365static inline int
366__i2c_write_data(const struct fsl_i2c_base *base, u8 *data, int length)
Jon Loeliger7237c032006-10-19 11:02:16 -0500367{
368 int i;
369
Jon Loeliger7237c032006-10-19 11:02:16 -0500370 for (i = 0; i < length; i++) {
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200371 writeb(data[i], &base->dr);
Jon Loeliger7237c032006-10-19 11:02:16 -0500372
mario.six@gdsys.ccecf591e2016-04-25 08:31:08 +0200373 if (i2c_wait(base, I2C_WRITE_BIT) < 0)
Jon Loeliger7237c032006-10-19 11:02:16 -0500374 break;
375 }
376
377 return i;
378}
379
mario.six@gdsys.ccecf591e2016-04-25 08:31:08 +0200380static inline int
381__i2c_read_data(const struct fsl_i2c_base *base, u8 *data, int length)
Jon Loeliger7237c032006-10-19 11:02:16 -0500382{
383 int i;
384
385 writeb(I2C_CR_MEN | I2C_CR_MSTA | ((length == 1) ? I2C_CR_TXAK : 0),
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200386 &base->cr);
Jon Loeliger7237c032006-10-19 11:02:16 -0500387
388 /* dummy read */
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200389 readb(&base->dr);
Jon Loeliger7237c032006-10-19 11:02:16 -0500390
391 for (i = 0; i < length; i++) {
mario.six@gdsys.ccecf591e2016-04-25 08:31:08 +0200392 if (i2c_wait(base, I2C_READ_BIT) < 0)
Jon Loeliger7237c032006-10-19 11:02:16 -0500393 break;
394
395 /* Generate ack on last next to last byte */
396 if (i == length - 2)
397 writeb(I2C_CR_MEN | I2C_CR_MSTA | I2C_CR_TXAK,
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200398 &base->cr);
Jon Loeliger7237c032006-10-19 11:02:16 -0500399
Joakim Tjernlundd1c9e5b2009-09-22 13:40:44 +0200400 /* Do not generate stop on last byte */
Jon Loeliger7237c032006-10-19 11:02:16 -0500401 if (i == length - 1)
Joakim Tjernlundd1c9e5b2009-09-22 13:40:44 +0200402 writeb(I2C_CR_MEN | I2C_CR_MSTA | I2C_CR_MTX,
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200403 &base->cr);
Jon Loeliger7237c032006-10-19 11:02:16 -0500404
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200405 data[i] = readb(&base->dr);
Jon Loeliger7237c032006-10-19 11:02:16 -0500406 }
407
408 return i;
409}
410
Heiko Schocher00f792e2012-10-24 13:48:22 +0200411static int
mario.six@gdsys.ccecf591e2016-04-25 08:31:08 +0200412__i2c_read(const struct fsl_i2c_base *base, u8 chip_addr, u8 *offset, int olen,
mario.six@gdsys.ccad7e6572016-04-25 08:31:07 +0200413 u8 *data, int dlen)
Jon Loeliger7237c032006-10-19 11:02:16 -0500414{
mario.six@gdsys.cc2b21e962016-04-25 08:31:02 +0200415 int ret = -1; /* signal error */
Jon Loeliger7237c032006-10-19 11:02:16 -0500416
mario.six@gdsys.ccecf591e2016-04-25 08:31:08 +0200417 if (i2c_wait4bus(base) < 0)
Reinhard Pfaub778c1b2013-06-26 15:55:14 +0200418 return -1;
419
mario.six@gdsys.cc386b2762016-04-25 08:31:03 +0200420 /* Some drivers use offset lengths in excess of 4 bytes. These drivers
421 * adhere to the following convention:
422 * - the offset length is passed as negative (that is, the absolute
423 * value of olen is the actual offset length)
424 * - the offset itself is passed in data, which is overwritten by the
425 * subsequent read operation
Shaveta Leekhaa4057642014-04-24 14:51:23 +0530426 */
mario.six@gdsys.cc2b21e962016-04-25 08:31:02 +0200427 if (olen < 0) {
mario.six@gdsys.ccecf591e2016-04-25 08:31:08 +0200428 if (i2c_write_addr(base, chip_addr, I2C_WRITE_BIT, 0) != 0)
429 ret = __i2c_write_data(base, data, -olen);
Joakim Tjernlundf6f5f702007-01-31 11:04:19 +0100430
mario.six@gdsys.cc03a112a2016-04-25 08:31:04 +0200431 if (ret != -olen)
Shaveta Leekhaa4057642014-04-24 14:51:23 +0530432 return -1;
433
mario.six@gdsys.ccecf591e2016-04-25 08:31:08 +0200434 if (dlen && i2c_write_addr(base, chip_addr,
mario.six@gdsys.cc2b21e962016-04-25 08:31:02 +0200435 I2C_READ_BIT, 1) != 0)
mario.six@gdsys.ccecf591e2016-04-25 08:31:08 +0200436 ret = __i2c_read_data(base, data, dlen);
Shaveta Leekhaa4057642014-04-24 14:51:23 +0530437 } else {
mario.six@gdsys.cc2b21e962016-04-25 08:31:02 +0200438 if ((!dlen || olen > 0) &&
mario.six@gdsys.ccecf591e2016-04-25 08:31:08 +0200439 i2c_write_addr(base, chip_addr, I2C_WRITE_BIT, 0) != 0 &&
440 __i2c_write_data(base, offset, olen) == olen)
mario.six@gdsys.cc2b21e962016-04-25 08:31:02 +0200441 ret = 0; /* No error so far */
Shaveta Leekhaa4057642014-04-24 14:51:23 +0530442
mario.six@gdsys.ccecf591e2016-04-25 08:31:08 +0200443 if (dlen && i2c_write_addr(base, chip_addr, I2C_READ_BIT,
mario.six@gdsys.cc2b21e962016-04-25 08:31:02 +0200444 olen ? 1 : 0) != 0)
mario.six@gdsys.ccecf591e2016-04-25 08:31:08 +0200445 ret = __i2c_read_data(base, data, dlen);
Shaveta Leekhaa4057642014-04-24 14:51:23 +0530446 }
Jon Loeliger7237c032006-10-19 11:02:16 -0500447
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200448 writeb(I2C_CR_MEN, &base->cr);
Jon Loeliger7237c032006-10-19 11:02:16 -0500449
mario.six@gdsys.ccecf591e2016-04-25 08:31:08 +0200450 if (i2c_wait4bus(base)) /* Wait until STOP */
Joakim Tjernlundd1c9e5b2009-09-22 13:40:44 +0200451 debug("i2c_read: wait4bus timed out\n");
452
mario.six@gdsys.cc2b21e962016-04-25 08:31:02 +0200453 if (ret == dlen)
454 return 0;
Jon Loeliger4d45f692006-10-19 12:02:24 -0500455
456 return -1;
Jon Loeliger7237c032006-10-19 11:02:16 -0500457}
458
Heiko Schocher00f792e2012-10-24 13:48:22 +0200459static int
mario.six@gdsys.ccecf591e2016-04-25 08:31:08 +0200460__i2c_write(const struct fsl_i2c_base *base, u8 chip_addr, u8 *offset, int olen,
mario.six@gdsys.ccad7e6572016-04-25 08:31:07 +0200461 u8 *data, int dlen)
Jon Loeliger7237c032006-10-19 11:02:16 -0500462{
mario.six@gdsys.cc2b21e962016-04-25 08:31:02 +0200463 int ret = -1; /* signal error */
Jon Loeliger7237c032006-10-19 11:02:16 -0500464
mario.six@gdsys.ccecf591e2016-04-25 08:31:08 +0200465 if (i2c_wait4bus(base) < 0)
Chunhe Lanb8ce3342013-08-16 15:10:36 +0800466 return -1;
467
mario.six@gdsys.ccecf591e2016-04-25 08:31:08 +0200468 if (i2c_write_addr(base, chip_addr, I2C_WRITE_BIT, 0) != 0 &&
469 __i2c_write_data(base, offset, olen) == olen) {
470 ret = __i2c_write_data(base, data, dlen);
Jon Loeliger4d45f692006-10-19 12:02:24 -0500471 }
Jon Loeliger7237c032006-10-19 11:02:16 -0500472
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200473 writeb(I2C_CR_MEN, &base->cr);
mario.six@gdsys.ccecf591e2016-04-25 08:31:08 +0200474 if (i2c_wait4bus(base)) /* Wait until STOP */
Joakim Tjernlund21f4cbb2009-09-17 11:07:15 +0200475 debug("i2c_write: wait4bus timed out\n");
Jon Loeliger7237c032006-10-19 11:02:16 -0500476
mario.six@gdsys.cc2b21e962016-04-25 08:31:02 +0200477 if (ret == dlen)
478 return 0;
Jon Loeliger4d45f692006-10-19 12:02:24 -0500479
480 return -1;
Jon Loeliger7237c032006-10-19 11:02:16 -0500481}
482
Heiko Schocher00f792e2012-10-24 13:48:22 +0200483static int
mario.six@gdsys.ccecf591e2016-04-25 08:31:08 +0200484__i2c_probe_chip(const struct fsl_i2c_base *base, uchar chip)
Jon Loeliger7237c032006-10-19 11:02:16 -0500485{
Joakim Tjernlundf6f5f702007-01-31 11:04:19 +0100486 /* For unknow reason the controller will ACK when
487 * probing for a slave with the same address, so skip
488 * it.
Jon Loeliger7237c032006-10-19 11:02:16 -0500489 */
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200490 if (chip == (readb(&base->adr) >> 1))
Joakim Tjernlundf6f5f702007-01-31 11:04:19 +0100491 return -1;
Jon Loeliger7237c032006-10-19 11:02:16 -0500492
mario.six@gdsys.ccecf591e2016-04-25 08:31:08 +0200493 return __i2c_read(base, chip, 0, 0, NULL, 0);
Jon Loeliger7237c032006-10-19 11:02:16 -0500494}
495
mario.six@gdsys.ccecf591e2016-04-25 08:31:08 +0200496static unsigned int __i2c_set_bus_speed(const struct fsl_i2c_base *base,
497 unsigned int speed, int i2c_clk)
Timur Tabibe5e6182006-11-03 19:15:00 -0600498{
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200499 writeb(0, &base->cr); /* stop controller */
mario.six@gdsys.ccecf591e2016-04-25 08:31:08 +0200500 set_i2c_bus_speed(base, i2c_clk, speed);
mario.six@gdsys.ccec2c81c2016-04-25 08:31:01 +0200501 writeb(I2C_CR_MEN, &base->cr); /* start controller */
Timur Tabid8c82db2008-03-14 17:45:29 -0500502
503 return 0;
Timur Tabibe5e6182006-11-03 19:15:00 -0600504}
505
mario.six@gdsys.ccdbc82ce2016-04-25 08:31:09 +0200506#ifndef CONFIG_DM_I2C
mario.six@gdsys.ccad7e6572016-04-25 08:31:07 +0200507static void fsl_i2c_init(struct i2c_adapter *adap, int speed, int slaveadd)
508{
mario.six@gdsys.ccecf591e2016-04-25 08:31:08 +0200509 __i2c_init(i2c_base[adap->hwadapnr], speed, slaveadd,
510 get_i2c_clock(adap->hwadapnr), adap->hwadapnr);
mario.six@gdsys.ccad7e6572016-04-25 08:31:07 +0200511}
512
513static int
514fsl_i2c_probe_chip(struct i2c_adapter *adap, uchar chip)
515{
mario.six@gdsys.ccecf591e2016-04-25 08:31:08 +0200516 return __i2c_probe_chip(i2c_base[adap->hwadapnr], chip);
mario.six@gdsys.ccad7e6572016-04-25 08:31:07 +0200517}
518
519static int
520fsl_i2c_read(struct i2c_adapter *adap, u8 chip_addr, uint offset, int olen,
521 u8 *data, int dlen)
522{
mario.six@gdsys.ccecf591e2016-04-25 08:31:08 +0200523 u8 *o = (u8 *)&offset;
524 return __i2c_read(i2c_base[adap->hwadapnr], chip_addr, &o[4 - olen],
525 olen, data, dlen);
mario.six@gdsys.ccad7e6572016-04-25 08:31:07 +0200526}
527
528static int
529fsl_i2c_write(struct i2c_adapter *adap, u8 chip_addr, uint offset, int olen,
530 u8 *data, int dlen)
531{
mario.six@gdsys.ccecf591e2016-04-25 08:31:08 +0200532 u8 *o = (u8 *)&offset;
533 return __i2c_write(i2c_base[adap->hwadapnr], chip_addr, &o[4 - olen],
534 olen, data, dlen);
mario.six@gdsys.ccad7e6572016-04-25 08:31:07 +0200535}
536
537static unsigned int fsl_i2c_set_bus_speed(struct i2c_adapter *adap,
538 unsigned int speed)
539{
mario.six@gdsys.ccecf591e2016-04-25 08:31:08 +0200540 return __i2c_set_bus_speed(i2c_base[adap->hwadapnr], speed,
541 get_i2c_clock(adap->hwadapnr));
mario.six@gdsys.ccad7e6572016-04-25 08:31:07 +0200542}
543
Heiko Schocher00f792e2012-10-24 13:48:22 +0200544/*
545 * Register fsl i2c adapters
546 */
mario.six@gdsys.cc16579ec2016-04-25 08:31:05 +0200547U_BOOT_I2C_ADAP_COMPLETE(fsl_0, fsl_i2c_init, fsl_i2c_probe_chip, fsl_i2c_read,
Heiko Schocher00f792e2012-10-24 13:48:22 +0200548 fsl_i2c_write, fsl_i2c_set_bus_speed,
549 CONFIG_SYS_FSL_I2C_SPEED, CONFIG_SYS_FSL_I2C_SLAVE,
550 0)
551#ifdef CONFIG_SYS_FSL_I2C2_OFFSET
mario.six@gdsys.cc16579ec2016-04-25 08:31:05 +0200552U_BOOT_I2C_ADAP_COMPLETE(fsl_1, fsl_i2c_init, fsl_i2c_probe_chip, fsl_i2c_read,
Heiko Schocher00f792e2012-10-24 13:48:22 +0200553 fsl_i2c_write, fsl_i2c_set_bus_speed,
554 CONFIG_SYS_FSL_I2C2_SPEED, CONFIG_SYS_FSL_I2C2_SLAVE,
555 1)
Heiko Schocherc1bce4f2009-02-24 11:30:37 +0100556#endif
Shengzhou Liua17fd102014-07-07 12:17:48 +0800557#ifdef CONFIG_SYS_FSL_I2C3_OFFSET
mario.six@gdsys.cc16579ec2016-04-25 08:31:05 +0200558U_BOOT_I2C_ADAP_COMPLETE(fsl_2, fsl_i2c_init, fsl_i2c_probe_chip, fsl_i2c_read,
Shengzhou Liua17fd102014-07-07 12:17:48 +0800559 fsl_i2c_write, fsl_i2c_set_bus_speed,
560 CONFIG_SYS_FSL_I2C3_SPEED, CONFIG_SYS_FSL_I2C3_SLAVE,
561 2)
562#endif
563#ifdef CONFIG_SYS_FSL_I2C4_OFFSET
mario.six@gdsys.cc16579ec2016-04-25 08:31:05 +0200564U_BOOT_I2C_ADAP_COMPLETE(fsl_3, fsl_i2c_init, fsl_i2c_probe_chip, fsl_i2c_read,
Shengzhou Liua17fd102014-07-07 12:17:48 +0800565 fsl_i2c_write, fsl_i2c_set_bus_speed,
566 CONFIG_SYS_FSL_I2C4_SPEED, CONFIG_SYS_FSL_I2C4_SLAVE,
567 3)
568#endif
mario.six@gdsys.ccdbc82ce2016-04-25 08:31:09 +0200569#else /* CONFIG_DM_I2C */
570static int fsl_i2c_probe_chip(struct udevice *bus, u32 chip_addr,
571 u32 chip_flags)
572{
573 struct fsl_i2c_dev *dev = dev_get_priv(bus);
574 return __i2c_probe_chip(dev->base, chip_addr);
575}
576
577static int fsl_i2c_set_bus_speed(struct udevice *bus, unsigned int speed)
578{
579 struct fsl_i2c_dev *dev = dev_get_priv(bus);
580 return __i2c_set_bus_speed(dev->base, speed, dev->i2c_clk);
581}
582
583static int fsl_i2c_ofdata_to_platdata(struct udevice *bus)
584{
585 struct fsl_i2c_dev *dev = dev_get_priv(bus);
mario.six@gdsys.cc27059c32016-05-23 10:12:11 +0200586 fdt_addr_t addr;
587 fdt_size_t size;
mario.six@gdsys.ccdbc82ce2016-04-25 08:31:09 +0200588
mario.six@gdsys.cc27059c32016-05-23 10:12:11 +0200589 addr = fdtdec_get_addr_size_auto_noparent(gd->fdt_blob, bus->of_offset,
Stephen Warren6e06acb2016-08-05 09:47:51 -0600590 "reg", 0, &size, false);
mario.six@gdsys.ccdbc82ce2016-04-25 08:31:09 +0200591
592 dev->base = map_sysmem(CONFIG_SYS_IMMR + addr, size);
593
594 if (!dev->base)
595 return -ENOMEM;
596
597 dev->index = fdtdec_get_int(gd->fdt_blob, bus->of_offset,
598 "cell-index", -1);
599 dev->slaveadd = fdtdec_get_int(gd->fdt_blob, bus->of_offset,
600 "u-boot,i2c-slave-addr", 0x7f);
601 dev->speed = fdtdec_get_int(gd->fdt_blob, bus->of_offset,
602 "clock-frequency", 400000);
603
604 dev->i2c_clk = dev->index ? gd->arch.i2c2_clk : gd->arch.i2c1_clk;
605
606 return 0;
607}
608
609static int fsl_i2c_probe(struct udevice *bus)
610{
611 struct fsl_i2c_dev *dev = dev_get_priv(bus);
612 __i2c_init(dev->base, dev->speed, dev->slaveadd, dev->i2c_clk,
613 dev->index);
614 return 0;
615}
616
617static int fsl_i2c_xfer(struct udevice *bus, struct i2c_msg *msg, int nmsgs)
618{
619 struct fsl_i2c_dev *dev = dev_get_priv(bus);
620 struct i2c_msg *dmsg, *omsg, dummy;
621
622 memset(&dummy, 0, sizeof(struct i2c_msg));
623
624 /* We expect either two messages (one with an offset and one with the
625 * actucal data) or one message (just data) */
626 if (nmsgs > 2 || nmsgs == 0) {
627 debug("%s: Only one or two messages are supported.", __func__);
628 return -1;
629 }
630
631 omsg = nmsgs == 1 ? &dummy : msg;
632 dmsg = nmsgs == 1 ? msg : msg + 1;
633
634 if (dmsg->flags & I2C_M_RD)
635 return __i2c_read(dev->base, dmsg->addr, omsg->buf, omsg->len,
636 dmsg->buf, dmsg->len);
637 else
638 return __i2c_write(dev->base, dmsg->addr, omsg->buf, omsg->len,
639 dmsg->buf, dmsg->len);
640}
641
642static const struct dm_i2c_ops fsl_i2c_ops = {
643 .xfer = fsl_i2c_xfer,
644 .probe_chip = fsl_i2c_probe_chip,
645 .set_bus_speed = fsl_i2c_set_bus_speed,
646};
647
648static const struct udevice_id fsl_i2c_ids[] = {
649 { .compatible = "fsl-i2c", },
650 { /* sentinel */ }
651};
652
653U_BOOT_DRIVER(i2c_fsl) = {
654 .name = "i2c_fsl",
655 .id = UCLASS_I2C,
656 .of_match = fsl_i2c_ids,
657 .probe = fsl_i2c_probe,
658 .ofdata_to_platdata = fsl_i2c_ofdata_to_platdata,
659 .priv_auto_alloc_size = sizeof(struct fsl_i2c_dev),
660 .ops = &fsl_i2c_ops,
661};
662
663#endif /* CONFIG_DM_I2C */