blob: 6e7d24d727b354684a9e2b9a028d2e57d38a22d3 [file] [log] [blame]
wdenk8ed96042005-01-09 23:16:25 +00001/*
2 * Basic I2C functions
3 *
4 * Copyright (c) 2004 Texas Instruments
5 *
6 * This package is free software; you can redistribute it and/or
7 * modify it under the terms of the license found in the file
8 * named COPYING that should have accompanied this file.
9 *
10 * THIS PACKAGE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
11 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
12 * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
13 *
14 * Author: Jian Zhang jzhang@ti.com, Texas Instruments
15 *
16 * Copyright (c) 2003 Wolfgang Denk, wd@denx.de
17 * Rewritten to fit into the current U-Boot framework
18 *
19 * Adapted for OMAP2420 I2C, r-woodruff2@ti.com
20 *
Lubomir Popov960187f2013-06-01 06:44:38 +000021 * Copyright (c) 2013 Lubomir Popov <lpopov@mm-sol.com>, MM Solutions
22 * New i2c_read, i2c_write and i2c_probe functions, tested on OMAP4
23 * (4430/60/70), OMAP5 (5430) and AM335X (3359); should work on older
24 * OMAPs and derivatives as well. The only anticipated exception would
25 * be the OMAP2420, which shall require driver modification.
26 * - Rewritten i2c_read to operate correctly with all types of chips
27 * (old function could not read consistent data from some I2C slaves).
28 * - Optimized i2c_write.
29 * - New i2c_probe, performs write access vs read. The old probe could
30 * hang the system under certain conditions (e.g. unconfigured pads).
31 * - The read/write/probe functions try to identify unconfigured bus.
32 * - Status functions now read irqstatus_raw as per TRM guidelines
33 * (except for OMAP243X and OMAP34XX).
34 * - Driver now supports up to I2C5 (OMAP5).
Hannes Petermaierd5243352014-02-03 21:22:18 +010035 *
Hannes Schmelzer4c302b92015-05-28 15:41:12 +020036 * Copyright (c) 2014 Hannes Schmelzer <oe5hpm@oevsv.at>, B&R
Hannes Petermaierd5243352014-02-03 21:22:18 +010037 * - Added support for set_speed
38 *
wdenk8ed96042005-01-09 23:16:25 +000039 */
40
41#include <common.h>
Mugunthan V Ndaa69ff2016-07-18 15:11:01 +053042#include <dm.h>
Heiko Schocher6789e842013-10-22 11:03:18 +020043#include <i2c.h>
wdenk289f9322005-01-12 00:15:14 +000044
wdenk8ed96042005-01-09 23:16:25 +000045#include <asm/io.h>
Jean-Jacques Hiblot5f97ae62018-12-07 14:50:42 +010046#include <asm/omap_i2c.h>
wdenk8ed96042005-01-09 23:16:25 +000047
Vignesh Rbca09ce2018-12-07 14:50:41 +010048/*
49 * Provide access to architecture-specific I2C header files for platforms
50 * that are NOT yet solely relying on CONFIG_DM_I2C, CONFIG_OF_CONTROL, and
51 * the defaults provided in 'omap24xx_i2c.h' for all U-Boot stages where I2C
52 * access is desired.
53 */
54#ifndef CONFIG_ARCH_K3
55#include <asm/arch/i2c.h>
56#endif
57
Steve Sakoman938717c2010-06-12 06:42:57 -070058#include "omap24xx_i2c.h"
59
Tom Rinicec487a2012-02-20 18:49:16 +000060#define I2C_TIMEOUT 1000
Steve Sakomand7083952010-07-19 20:31:55 -070061
Lubomir Popov960187f2013-06-01 06:44:38 +000062/* Absolutely safe for status update at 100 kHz I2C: */
63#define I2C_WAIT 200
64
Vignesh Rbca09ce2018-12-07 14:50:41 +010065enum {
Vignesh Rbca09ce2018-12-07 14:50:41 +010066 OMAP_I2C_REV_REG = 0, /* Only on IP V1 (OMAP34XX) */
67 OMAP_I2C_IE_REG, /* Only on IP V1 (OMAP34XX) */
68 OMAP_I2C_STAT_REG,
69 OMAP_I2C_WE_REG,
70 OMAP_I2C_SYSS_REG,
71 OMAP_I2C_BUF_REG,
72 OMAP_I2C_CNT_REG,
73 OMAP_I2C_DATA_REG,
74 OMAP_I2C_SYSC_REG,
75 OMAP_I2C_CON_REG,
76 OMAP_I2C_OA_REG,
77 OMAP_I2C_SA_REG,
78 OMAP_I2C_PSC_REG,
79 OMAP_I2C_SCLL_REG,
80 OMAP_I2C_SCLH_REG,
81 OMAP_I2C_SYSTEST_REG,
82 OMAP_I2C_BUFSTAT_REG,
83 /* Only on IP V2 (OMAP4430, etc.) */
84 OMAP_I2C_IP_V2_REVNB_LO,
85 OMAP_I2C_IP_V2_REVNB_HI,
86 OMAP_I2C_IP_V2_IRQSTATUS_RAW,
87 OMAP_I2C_IP_V2_IRQENABLE_SET,
88 OMAP_I2C_IP_V2_IRQENABLE_CLR,
89};
90
91static const u8 __maybe_unused reg_map_ip_v1[] = {
92 [OMAP_I2C_REV_REG] = 0x00,
93 [OMAP_I2C_IE_REG] = 0x04,
94 [OMAP_I2C_STAT_REG] = 0x08,
95 [OMAP_I2C_WE_REG] = 0x0c,
96 [OMAP_I2C_SYSS_REG] = 0x10,
97 [OMAP_I2C_BUF_REG] = 0x14,
98 [OMAP_I2C_CNT_REG] = 0x18,
99 [OMAP_I2C_DATA_REG] = 0x1c,
100 [OMAP_I2C_SYSC_REG] = 0x20,
101 [OMAP_I2C_CON_REG] = 0x24,
102 [OMAP_I2C_OA_REG] = 0x28,
103 [OMAP_I2C_SA_REG] = 0x2c,
104 [OMAP_I2C_PSC_REG] = 0x30,
105 [OMAP_I2C_SCLL_REG] = 0x34,
106 [OMAP_I2C_SCLH_REG] = 0x38,
107 [OMAP_I2C_SYSTEST_REG] = 0x3c,
108 [OMAP_I2C_BUFSTAT_REG] = 0x40,
109};
110
111static const u8 __maybe_unused reg_map_ip_v2[] = {
112 [OMAP_I2C_STAT_REG] = 0x28,
113 [OMAP_I2C_WE_REG] = 0x34,
114 [OMAP_I2C_SYSS_REG] = 0x90,
115 [OMAP_I2C_BUF_REG] = 0x94,
116 [OMAP_I2C_CNT_REG] = 0x98,
117 [OMAP_I2C_DATA_REG] = 0x9c,
118 [OMAP_I2C_SYSC_REG] = 0x10,
119 [OMAP_I2C_CON_REG] = 0xa4,
120 [OMAP_I2C_OA_REG] = 0xa8,
121 [OMAP_I2C_SA_REG] = 0xac,
122 [OMAP_I2C_PSC_REG] = 0xb0,
123 [OMAP_I2C_SCLL_REG] = 0xb4,
124 [OMAP_I2C_SCLH_REG] = 0xb8,
125 [OMAP_I2C_SYSTEST_REG] = 0xbc,
126 [OMAP_I2C_BUFSTAT_REG] = 0xc0,
127 [OMAP_I2C_IP_V2_REVNB_LO] = 0x00,
128 [OMAP_I2C_IP_V2_REVNB_HI] = 0x04,
129 [OMAP_I2C_IP_V2_IRQSTATUS_RAW] = 0x24,
130 [OMAP_I2C_IP_V2_IRQENABLE_SET] = 0x2c,
131 [OMAP_I2C_IP_V2_IRQENABLE_CLR] = 0x30,
132};
133
Mugunthan V Ndaa69ff2016-07-18 15:11:01 +0530134struct omap_i2c {
135 struct udevice *clk;
Vignesh Rbca09ce2018-12-07 14:50:41 +0100136 int ip_rev;
Mugunthan V Ndaa69ff2016-07-18 15:11:01 +0530137 struct i2c *regs;
138 unsigned int speed;
139 int waitdelay;
140 int clk_id;
141};
142
Vignesh Rbca09ce2018-12-07 14:50:41 +0100143static inline const u8 *omap_i2c_get_ip_reg_map(int ip_rev)
144{
145 switch (ip_rev) {
146 case OMAP_I2C_REV_V1:
147 return reg_map_ip_v1;
148 case OMAP_I2C_REV_V2:
149 /* Fall through... */
150 default:
151 return reg_map_ip_v2;
152 }
153}
154
155static inline void omap_i2c_write_reg(void __iomem *base, int ip_rev,
156 u16 val, int reg)
157{
158 writew(val, base + omap_i2c_get_ip_reg_map(ip_rev)[reg]);
159}
160
161static inline u16 omap_i2c_read_reg(void __iomem *base, int ip_rev, int reg)
162{
163 return readw(base + omap_i2c_get_ip_reg_map(ip_rev)[reg]);
164}
165
Hannes Petermaierd5243352014-02-03 21:22:18 +0100166static int omap24_i2c_findpsc(u32 *pscl, u32 *psch, uint speed)
167{
Lukasz Majewskib52a3fa2017-03-15 16:59:23 +0100168 unsigned long internal_clk = 0, fclk;
169 unsigned int prescaler;
wdenk8ed96042005-01-09 23:16:25 +0000170
Hannes Petermaierd5243352014-02-03 21:22:18 +0100171 /*
Lukasz Majewskib52a3fa2017-03-15 16:59:23 +0100172 * This method is only called for Standard and Fast Mode speeds
173 *
174 * For some TI SoCs it is explicitly written in TRM (e,g, SPRUHZ6G,
175 * page 5685, Table 24-7)
176 * that the internal I2C clock (after prescaler) should be between
177 * 7-12 MHz (at least for Fast Mode (FS)).
178 *
179 * Such approach is used in v4.9 Linux kernel in:
180 * ./drivers/i2c/busses/i2c-omap.c (omap_i2c_init function).
Hannes Petermaierd5243352014-02-03 21:22:18 +0100181 */
Hannes Petermaierd5243352014-02-03 21:22:18 +0100182
Lukasz Majewskib52a3fa2017-03-15 16:59:23 +0100183 speed /= 1000; /* convert speed to kHz */
Hannes Petermaierd5243352014-02-03 21:22:18 +0100184
Lukasz Majewskib52a3fa2017-03-15 16:59:23 +0100185 if (speed > 100)
186 internal_clk = 9600;
187 else
188 internal_clk = 4000;
Hannes Petermaierd5243352014-02-03 21:22:18 +0100189
Lukasz Majewskib52a3fa2017-03-15 16:59:23 +0100190 fclk = I2C_IP_CLK / 1000;
191 prescaler = fclk / internal_clk;
192 prescaler = prescaler - 1;
193
194 if (speed > 100) {
195 unsigned long scl;
196
197 /* Fast mode */
198 scl = internal_clk / speed;
199 *pscl = scl - (scl / 3) - I2C_FASTSPEED_SCLL_TRIM;
200 *psch = (scl / 3) - I2C_FASTSPEED_SCLH_TRIM;
201 } else {
202 /* Standard mode */
203 *pscl = internal_clk / (speed * 2) - I2C_FASTSPEED_SCLL_TRIM;
204 *psch = internal_clk / (speed * 2) - I2C_FASTSPEED_SCLH_TRIM;
Hannes Petermaierd5243352014-02-03 21:22:18 +0100205 }
Lukasz Majewskib52a3fa2017-03-15 16:59:23 +0100206
207 debug("%s: speed [kHz]: %d psc: 0x%x sscl: 0x%x ssch: 0x%x\n",
208 __func__, speed, prescaler, *pscl, *psch);
209
210 if (*pscl <= 0 || *psch <= 0 || prescaler <= 0)
211 return -EINVAL;
212
213 return prescaler;
Hannes Petermaierd5243352014-02-03 21:22:18 +0100214}
Mugunthan V Nbe243e42016-07-18 15:11:00 +0530215
216/*
217 * Wait for the bus to be free by checking the Bus Busy (BB)
218 * bit to become clear
219 */
Vignesh Rbca09ce2018-12-07 14:50:41 +0100220static int wait_for_bb(void __iomem *i2c_base, int ip_rev, int waitdelay)
wdenk8ed96042005-01-09 23:16:25 +0000221{
Mugunthan V Nbe243e42016-07-18 15:11:00 +0530222 int timeout = I2C_TIMEOUT;
Vignesh Rbca09ce2018-12-07 14:50:41 +0100223 int irq_stat_reg;
Mugunthan V Nbe243e42016-07-18 15:11:00 +0530224 u16 stat;
225
Vignesh Rbca09ce2018-12-07 14:50:41 +0100226 irq_stat_reg = (ip_rev == OMAP_I2C_REV_V1) ?
227 OMAP_I2C_STAT_REG : OMAP_I2C_IP_V2_IRQSTATUS_RAW;
228
229 /* clear current interrupts */
230 omap_i2c_write_reg(i2c_base, ip_rev, 0xFFFF, OMAP_I2C_STAT_REG);
231
232 while ((stat = omap_i2c_read_reg(i2c_base, ip_rev, irq_stat_reg) &
Mugunthan V Nbe243e42016-07-18 15:11:00 +0530233 I2C_STAT_BB) && timeout--) {
Vignesh Rbca09ce2018-12-07 14:50:41 +0100234 omap_i2c_write_reg(i2c_base, ip_rev, stat, OMAP_I2C_STAT_REG);
Mugunthan V Nbe243e42016-07-18 15:11:00 +0530235 udelay(waitdelay);
236 }
237
238 if (timeout <= 0) {
Vignesh Rbca09ce2018-12-07 14:50:41 +0100239 printf("Timed out in %s: status=%04x\n", __func__, stat);
Mugunthan V Nbe243e42016-07-18 15:11:00 +0530240 return 1;
241 }
Vignesh Rbca09ce2018-12-07 14:50:41 +0100242
243 /* clear delayed stuff */
244 omap_i2c_write_reg(i2c_base, ip_rev, 0xFFFF, OMAP_I2C_STAT_REG);
Mugunthan V Nbe243e42016-07-18 15:11:00 +0530245 return 0;
246}
247
248/*
249 * Wait for the I2C controller to complete current action
250 * and update status
251 */
Vignesh Rbca09ce2018-12-07 14:50:41 +0100252static u16 wait_for_event(void __iomem *i2c_base, int ip_rev, int waitdelay)
Mugunthan V Nbe243e42016-07-18 15:11:00 +0530253{
254 u16 status;
255 int timeout = I2C_TIMEOUT;
Vignesh Rbca09ce2018-12-07 14:50:41 +0100256 int irq_stat_reg;
Mugunthan V Nbe243e42016-07-18 15:11:00 +0530257
Vignesh Rbca09ce2018-12-07 14:50:41 +0100258 irq_stat_reg = (ip_rev == OMAP_I2C_REV_V1) ?
259 OMAP_I2C_STAT_REG : OMAP_I2C_IP_V2_IRQSTATUS_RAW;
Mugunthan V Nbe243e42016-07-18 15:11:00 +0530260 do {
261 udelay(waitdelay);
Vignesh Rbca09ce2018-12-07 14:50:41 +0100262 status = omap_i2c_read_reg(i2c_base, ip_rev, irq_stat_reg);
Mugunthan V Nbe243e42016-07-18 15:11:00 +0530263 } while (!(status &
264 (I2C_STAT_ROVR | I2C_STAT_XUDF | I2C_STAT_XRDY |
265 I2C_STAT_RRDY | I2C_STAT_ARDY | I2C_STAT_NACK |
266 I2C_STAT_AL)) && timeout--);
267
268 if (timeout <= 0) {
Vignesh Rbca09ce2018-12-07 14:50:41 +0100269 printf("Timed out in %s: status=%04x\n", __func__, status);
Mugunthan V Nbe243e42016-07-18 15:11:00 +0530270 /*
271 * If status is still 0 here, probably the bus pads have
272 * not been configured for I2C, and/or pull-ups are missing.
273 */
274 printf("Check if pads/pull-ups of bus are properly configured\n");
Vignesh Rbca09ce2018-12-07 14:50:41 +0100275 omap_i2c_write_reg(i2c_base, ip_rev, 0xFFFF, OMAP_I2C_STAT_REG);
Mugunthan V Nbe243e42016-07-18 15:11:00 +0530276 status = 0;
277 }
278
279 return status;
280}
281
Vignesh Rbca09ce2018-12-07 14:50:41 +0100282static void flush_fifo(void __iomem *i2c_base, int ip_rev)
Mugunthan V Nbe243e42016-07-18 15:11:00 +0530283{
284 u16 stat;
285
286 /*
287 * note: if you try and read data when its not there or ready
288 * you get a bus error
289 */
290 while (1) {
Vignesh Rbca09ce2018-12-07 14:50:41 +0100291 stat = omap_i2c_read_reg(i2c_base, ip_rev, OMAP_I2C_STAT_REG);
Mugunthan V Nbe243e42016-07-18 15:11:00 +0530292 if (stat == I2C_STAT_RRDY) {
Vignesh Rbca09ce2018-12-07 14:50:41 +0100293 omap_i2c_read_reg(i2c_base, ip_rev, OMAP_I2C_DATA_REG);
294 omap_i2c_write_reg(i2c_base, ip_rev,
295 I2C_STAT_RRDY, OMAP_I2C_STAT_REG);
Mugunthan V Nbe243e42016-07-18 15:11:00 +0530296 udelay(1000);
297 } else
298 break;
299 }
300}
301
Vignesh Rbca09ce2018-12-07 14:50:41 +0100302static int __omap24_i2c_setspeed(void __iomem *i2c_base, int ip_rev, uint speed,
Mugunthan V Nbe243e42016-07-18 15:11:00 +0530303 int *waitdelay)
304{
Hannes Petermaierd5243352014-02-03 21:22:18 +0100305 int psc, fsscll = 0, fssclh = 0;
Tom Rix7f79dfb2009-06-28 12:52:27 -0500306 int hsscll = 0, hssclh = 0;
Hannes Petermaierd5243352014-02-03 21:22:18 +0100307 u32 scll = 0, sclh = 0;
Tom Rix7f79dfb2009-06-28 12:52:27 -0500308
Simon Glass4bef5362020-01-23 11:48:20 -0700309 if (speed >= I2C_SPEED_HIGH_RATE) {
Tom Rix7f79dfb2009-06-28 12:52:27 -0500310 /* High speed */
Hannes Petermaierd5243352014-02-03 21:22:18 +0100311 psc = I2C_IP_CLK / I2C_INTERNAL_SAMPLING_CLK;
312 psc -= 1;
313 if (psc < I2C_PSC_MIN) {
314 printf("Error : I2C unsupported prescaler %d\n", psc);
315 return -1;
316 }
Tom Rix7f79dfb2009-06-28 12:52:27 -0500317
318 /* For first phase of HS mode */
Hannes Petermaierd5243352014-02-03 21:22:18 +0100319 fsscll = I2C_INTERNAL_SAMPLING_CLK / (2 * speed);
320
321 fssclh = fsscll;
Tom Rix7f79dfb2009-06-28 12:52:27 -0500322
323 fsscll -= I2C_HIGHSPEED_PHASE_ONE_SCLL_TRIM;
324 fssclh -= I2C_HIGHSPEED_PHASE_ONE_SCLH_TRIM;
325 if (((fsscll < 0) || (fssclh < 0)) ||
326 ((fsscll > 255) || (fssclh > 255))) {
Andreas Müller49e9b4b2012-01-04 15:26:19 +0000327 puts("Error : I2C initializing first phase clock\n");
Hannes Petermaierd5243352014-02-03 21:22:18 +0100328 return -1;
Tom Rix7f79dfb2009-06-28 12:52:27 -0500329 }
330
331 /* For second phase of HS mode */
332 hsscll = hssclh = I2C_INTERNAL_SAMPLING_CLK / (2 * speed);
333
334 hsscll -= I2C_HIGHSPEED_PHASE_TWO_SCLL_TRIM;
335 hssclh -= I2C_HIGHSPEED_PHASE_TWO_SCLH_TRIM;
336 if (((fsscll < 0) || (fssclh < 0)) ||
337 ((fsscll > 255) || (fssclh > 255))) {
Andreas Müller49e9b4b2012-01-04 15:26:19 +0000338 puts("Error : I2C initializing second phase clock\n");
Hannes Petermaierd5243352014-02-03 21:22:18 +0100339 return -1;
Tom Rix7f79dfb2009-06-28 12:52:27 -0500340 }
341
342 scll = (unsigned int)hsscll << 8 | (unsigned int)fsscll;
343 sclh = (unsigned int)hssclh << 8 | (unsigned int)fssclh;
344
345 } else {
346 /* Standard and fast speed */
Hannes Petermaierd5243352014-02-03 21:22:18 +0100347 psc = omap24_i2c_findpsc(&scll, &sclh, speed);
348 if (0 > psc) {
Andreas Müller49e9b4b2012-01-04 15:26:19 +0000349 puts("Error : I2C initializing clock\n");
Hannes Petermaierd5243352014-02-03 21:22:18 +0100350 return -1;
Tom Rix7f79dfb2009-06-28 12:52:27 -0500351 }
Tom Rix7f79dfb2009-06-28 12:52:27 -0500352 }
wdenk8ed96042005-01-09 23:16:25 +0000353
Vignesh Rbca09ce2018-12-07 14:50:41 +0100354 /* wait for 20 clkperiods */
355 *waitdelay = (10000000 / speed) * 2;
356
357 omap_i2c_write_reg(i2c_base, ip_rev, 0, OMAP_I2C_CON_REG);
358 omap_i2c_write_reg(i2c_base, ip_rev, psc, OMAP_I2C_PSC_REG);
359 omap_i2c_write_reg(i2c_base, ip_rev, scll, OMAP_I2C_SCLL_REG);
360 omap_i2c_write_reg(i2c_base, ip_rev, sclh, OMAP_I2C_SCLH_REG);
361 omap_i2c_write_reg(i2c_base, ip_rev, I2C_CON_EN, OMAP_I2C_CON_REG);
362
363 /* clear all pending status */
364 omap_i2c_write_reg(i2c_base, ip_rev, 0xFFFF, OMAP_I2C_STAT_REG);
Hannes Petermaierd5243352014-02-03 21:22:18 +0100365
366 return 0;
367}
Heiko Schocherf7c10532014-06-30 09:12:09 +0200368
Vignesh Rbca09ce2018-12-07 14:50:41 +0100369static void omap24_i2c_deblock(void __iomem *i2c_base, int ip_rev)
Heiko Schocherf7c10532014-06-30 09:12:09 +0200370{
Heiko Schocherf7c10532014-06-30 09:12:09 +0200371 int i;
372 u16 systest;
373 u16 orgsystest;
374
375 /* set test mode ST_EN = 1 */
Vignesh Rbca09ce2018-12-07 14:50:41 +0100376 orgsystest = omap_i2c_read_reg(i2c_base, ip_rev, OMAP_I2C_SYSTEST_REG);
Heiko Schocherf7c10532014-06-30 09:12:09 +0200377 systest = orgsystest;
Vignesh Rbca09ce2018-12-07 14:50:41 +0100378
Heiko Schocherf7c10532014-06-30 09:12:09 +0200379 /* enable testmode */
380 systest |= I2C_SYSTEST_ST_EN;
Vignesh Rbca09ce2018-12-07 14:50:41 +0100381 omap_i2c_write_reg(i2c_base, ip_rev, systest, OMAP_I2C_SYSTEST_REG);
Heiko Schocherf7c10532014-06-30 09:12:09 +0200382 systest &= ~I2C_SYSTEST_TMODE_MASK;
383 systest |= 3 << I2C_SYSTEST_TMODE_SHIFT;
Vignesh Rbca09ce2018-12-07 14:50:41 +0100384 omap_i2c_write_reg(i2c_base, ip_rev, systest, OMAP_I2C_SYSTEST_REG);
Heiko Schocherf7c10532014-06-30 09:12:09 +0200385
386 /* set SCL, SDA = 1 */
387 systest |= I2C_SYSTEST_SCL_O | I2C_SYSTEST_SDA_O;
Vignesh Rbca09ce2018-12-07 14:50:41 +0100388 omap_i2c_write_reg(i2c_base, ip_rev, systest, OMAP_I2C_SYSTEST_REG);
Heiko Schocherf7c10532014-06-30 09:12:09 +0200389 udelay(10);
390
391 /* toggle scl 9 clocks */
392 for (i = 0; i < 9; i++) {
393 /* SCL = 0 */
394 systest &= ~I2C_SYSTEST_SCL_O;
Vignesh Rbca09ce2018-12-07 14:50:41 +0100395 omap_i2c_write_reg(i2c_base, ip_rev,
396 systest, OMAP_I2C_SYSTEST_REG);
Heiko Schocherf7c10532014-06-30 09:12:09 +0200397 udelay(10);
398 /* SCL = 1 */
399 systest |= I2C_SYSTEST_SCL_O;
Vignesh Rbca09ce2018-12-07 14:50:41 +0100400 omap_i2c_write_reg(i2c_base, ip_rev,
401 systest, OMAP_I2C_SYSTEST_REG);
Heiko Schocherf7c10532014-06-30 09:12:09 +0200402 udelay(10);
403 }
404
405 /* send stop */
406 systest &= ~I2C_SYSTEST_SDA_O;
Vignesh Rbca09ce2018-12-07 14:50:41 +0100407 omap_i2c_write_reg(i2c_base, ip_rev, systest, OMAP_I2C_SYSTEST_REG);
Heiko Schocherf7c10532014-06-30 09:12:09 +0200408 udelay(10);
409 systest |= I2C_SYSTEST_SCL_O | I2C_SYSTEST_SDA_O;
Vignesh Rbca09ce2018-12-07 14:50:41 +0100410 omap_i2c_write_reg(i2c_base, ip_rev, systest, OMAP_I2C_SYSTEST_REG);
Heiko Schocherf7c10532014-06-30 09:12:09 +0200411 udelay(10);
412
413 /* restore original mode */
Vignesh Rbca09ce2018-12-07 14:50:41 +0100414 omap_i2c_write_reg(i2c_base, ip_rev, orgsystest, OMAP_I2C_SYSTEST_REG);
Heiko Schocherf7c10532014-06-30 09:12:09 +0200415}
416
Vignesh Rbca09ce2018-12-07 14:50:41 +0100417static void __omap24_i2c_init(void __iomem *i2c_base, int ip_rev, int speed,
418 int slaveadd, int *waitdelay)
Hannes Petermaierd5243352014-02-03 21:22:18 +0100419{
Hannes Petermaierd5243352014-02-03 21:22:18 +0100420 int timeout = I2C_TIMEOUT;
Heiko Schocherf7c10532014-06-30 09:12:09 +0200421 int deblock = 1;
Hannes Petermaierd5243352014-02-03 21:22:18 +0100422
Heiko Schocherf7c10532014-06-30 09:12:09 +0200423retry:
Vignesh Rbca09ce2018-12-07 14:50:41 +0100424 if (omap_i2c_read_reg(i2c_base, ip_rev, OMAP_I2C_CON_REG) &
425 I2C_CON_EN) {
426 omap_i2c_write_reg(i2c_base, ip_rev, 0, OMAP_I2C_CON_REG);
Michael Jones89677b22011-07-27 14:01:55 -0400427 udelay(50000);
wdenk8ed96042005-01-09 23:16:25 +0000428 }
429
Vignesh Rbca09ce2018-12-07 14:50:41 +0100430 /* for ES2 after soft reset */
431 omap_i2c_write_reg(i2c_base, ip_rev, 0x2, OMAP_I2C_SYSC_REG);
Tom Rinicec487a2012-02-20 18:49:16 +0000432 udelay(1000);
433
Vignesh Rbca09ce2018-12-07 14:50:41 +0100434 omap_i2c_write_reg(i2c_base, ip_rev, I2C_CON_EN, OMAP_I2C_CON_REG);
435 while (!(omap_i2c_read_reg(i2c_base, ip_rev, OMAP_I2C_SYSS_REG) &
436 I2C_SYSS_RDONE) && timeout--) {
Tom Rinicec487a2012-02-20 18:49:16 +0000437 if (timeout <= 0) {
438 puts("ERROR: Timeout in soft-reset\n");
439 return;
440 }
441 udelay(1000);
442 }
443
Vignesh Rbca09ce2018-12-07 14:50:41 +0100444 if (__omap24_i2c_setspeed(i2c_base, ip_rev, speed, waitdelay)) {
Hannes Petermaierd5243352014-02-03 21:22:18 +0100445 printf("ERROR: failed to setup I2C bus-speed!\n");
446 return;
447 }
Tom Rix7f79dfb2009-06-28 12:52:27 -0500448
wdenk8ed96042005-01-09 23:16:25 +0000449 /* own address */
Vignesh Rbca09ce2018-12-07 14:50:41 +0100450 omap_i2c_write_reg(i2c_base, ip_rev, slaveadd, OMAP_I2C_OA_REG);
Hannes Petermaierd5243352014-02-03 21:22:18 +0100451
Vignesh Rbca09ce2018-12-07 14:50:41 +0100452 if (ip_rev == OMAP_I2C_REV_V1) {
453 /*
454 * Have to enable interrupts for OMAP2/3, these IPs don't have
455 * an 'irqstatus_raw' register and we shall have to poll 'stat'
456 */
457 omap_i2c_write_reg(i2c_base, ip_rev, I2C_IE_XRDY_IE |
458 I2C_IE_RRDY_IE | I2C_IE_ARDY_IE |
459 I2C_IE_NACK_IE | I2C_IE_AL_IE,
460 OMAP_I2C_IE_REG);
461 }
462
Michael Jones89677b22011-07-27 14:01:55 -0400463 udelay(1000);
Vignesh Rbca09ce2018-12-07 14:50:41 +0100464 flush_fifo(i2c_base, ip_rev);
465 omap_i2c_write_reg(i2c_base, ip_rev, 0xFFFF, OMAP_I2C_STAT_REG);
Heiko Schocherf7c10532014-06-30 09:12:09 +0200466
467 /* Handle possible failed I2C state */
Vignesh Rbca09ce2018-12-07 14:50:41 +0100468 if (wait_for_bb(i2c_base, ip_rev, *waitdelay))
Heiko Schocherf7c10532014-06-30 09:12:09 +0200469 if (deblock == 1) {
Vignesh Rbca09ce2018-12-07 14:50:41 +0100470 omap24_i2c_deblock(i2c_base, ip_rev);
Heiko Schocherf7c10532014-06-30 09:12:09 +0200471 deblock = 0;
472 goto retry;
473 }
Tom Rinicec487a2012-02-20 18:49:16 +0000474}
475
Lubomir Popov960187f2013-06-01 06:44:38 +0000476/*
477 * i2c_probe: Use write access. Allows to identify addresses that are
478 * write-only (like the config register of dual-port EEPROMs)
479 */
Vignesh Rbca09ce2018-12-07 14:50:41 +0100480static int __omap24_i2c_probe(void __iomem *i2c_base, int ip_rev, int waitdelay,
481 uchar chip)
wdenk8ed96042005-01-09 23:16:25 +0000482{
Tom Rinicec487a2012-02-20 18:49:16 +0000483 u16 status;
wdenk8ed96042005-01-09 23:16:25 +0000484 int res = 1; /* default = fail */
485
Vignesh Rbca09ce2018-12-07 14:50:41 +0100486 if (chip == omap_i2c_read_reg(i2c_base, ip_rev, OMAP_I2C_OA_REG))
wdenk8ed96042005-01-09 23:16:25 +0000487 return res;
wdenk8ed96042005-01-09 23:16:25 +0000488
Lubomir Popov960187f2013-06-01 06:44:38 +0000489 /* Wait until bus is free */
Vignesh Rbca09ce2018-12-07 14:50:41 +0100490 if (wait_for_bb(i2c_base, ip_rev, waitdelay))
Vincent Stehléfebc4cd2012-12-03 05:23:16 +0000491 return res;
wdenk8ed96042005-01-09 23:16:25 +0000492
Lubomir Popov960187f2013-06-01 06:44:38 +0000493 /* No data transfer, slave addr only */
Vignesh Rbca09ce2018-12-07 14:50:41 +0100494 omap_i2c_write_reg(i2c_base, ip_rev, chip, OMAP_I2C_SA_REG);
wdenk8ed96042005-01-09 23:16:25 +0000495
Vignesh Rbca09ce2018-12-07 14:50:41 +0100496 /* Stop bit needed here */
497 omap_i2c_write_reg(i2c_base, ip_rev, I2C_CON_EN | I2C_CON_MST |
498 I2C_CON_STT | I2C_CON_TRX | I2C_CON_STP,
499 OMAP_I2C_CON_REG);
500
501 status = wait_for_event(i2c_base, ip_rev, waitdelay);
Vincent Stehléfebc4cd2012-12-03 05:23:16 +0000502
Lubomir Popov960187f2013-06-01 06:44:38 +0000503 if ((status & ~I2C_STAT_XRDY) == 0 || (status & I2C_STAT_AL)) {
504 /*
505 * With current high-level command implementation, notifying
506 * the user shall flood the console with 127 messages. If
507 * silent exit is desired upon unconfigured bus, remove the
508 * following 'if' section:
509 */
510 if (status == I2C_STAT_XRDY)
Mugunthan V Nbe243e42016-07-18 15:11:00 +0530511 printf("i2c_probe: pads on bus probably not configured (status=0x%x)\n",
512 status);
Vincent Stehléfebc4cd2012-12-03 05:23:16 +0000513
Lubomir Popov960187f2013-06-01 06:44:38 +0000514 goto pr_exit;
Tom Rini168a5ac2012-05-21 06:46:29 +0000515 }
Tom Rinicec487a2012-02-20 18:49:16 +0000516
Lubomir Popov960187f2013-06-01 06:44:38 +0000517 /* Check for ACK (!NAK) */
518 if (!(status & I2C_STAT_NACK)) {
Hannes Petermaierd5243352014-02-03 21:22:18 +0100519 res = 0; /* Device found */
Mugunthan V Nbe243e42016-07-18 15:11:00 +0530520 udelay(waitdelay);/* Required by AM335X in SPL */
Lubomir Popov960187f2013-06-01 06:44:38 +0000521 /* Abort transfer (force idle state) */
Vignesh Rbca09ce2018-12-07 14:50:41 +0100522 omap_i2c_write_reg(i2c_base, ip_rev, I2C_CON_MST | I2C_CON_TRX,
523 OMAP_I2C_CON_REG); /* Reset */
Lubomir Popov960187f2013-06-01 06:44:38 +0000524 udelay(1000);
Vignesh Rbca09ce2018-12-07 14:50:41 +0100525 omap_i2c_write_reg(i2c_base, ip_rev, I2C_CON_EN | I2C_CON_MST |
526 I2C_CON_TRX | I2C_CON_STP,
527 OMAP_I2C_CON_REG); /* STP */
Lubomir Popov960187f2013-06-01 06:44:38 +0000528 }
Vignesh Rbca09ce2018-12-07 14:50:41 +0100529
Lubomir Popov960187f2013-06-01 06:44:38 +0000530pr_exit:
Vignesh Rbca09ce2018-12-07 14:50:41 +0100531 flush_fifo(i2c_base, ip_rev);
532 omap_i2c_write_reg(i2c_base, ip_rev, 0xFFFF, OMAP_I2C_STAT_REG);
wdenk8ed96042005-01-09 23:16:25 +0000533 return res;
534}
535
Lubomir Popov960187f2013-06-01 06:44:38 +0000536/*
537 * i2c_read: Function now uses a single I2C read transaction with bulk transfer
538 * of the requested number of bytes (note that the 'i2c md' command
539 * limits this to 16 bytes anyway). If CONFIG_I2C_REPEATED_START is
540 * defined in the board config header, this transaction shall be with
541 * Repeated Start (Sr) between the address and data phases; otherwise
542 * Stop-Start (P-S) shall be used (some I2C chips do require a P-S).
543 * The address (reg offset) may be 0, 1 or 2 bytes long.
544 * Function now reads correctly from chips that return more than one
545 * byte of data per addressed register (like TI temperature sensors),
546 * or that do not need a register address at all (such as some clock
547 * distributors).
548 */
Vignesh Rbca09ce2018-12-07 14:50:41 +0100549static int __omap24_i2c_read(void __iomem *i2c_base, int ip_rev, int waitdelay,
550 uchar chip, uint addr, int alen, uchar *buffer,
551 int len)
wdenk8ed96042005-01-09 23:16:25 +0000552{
Lubomir Popov960187f2013-06-01 06:44:38 +0000553 int i2c_error = 0;
554 u16 status;
555
556 if (alen < 0) {
557 puts("I2C read: addr len < 0\n");
558 return 1;
559 }
Vignesh Rbca09ce2018-12-07 14:50:41 +0100560
Lubomir Popov960187f2013-06-01 06:44:38 +0000561 if (len < 0) {
562 puts("I2C read: data len < 0\n");
563 return 1;
564 }
Vignesh Rbca09ce2018-12-07 14:50:41 +0100565
Lubomir Popov960187f2013-06-01 06:44:38 +0000566 if (buffer == NULL) {
567 puts("I2C read: NULL pointer passed\n");
568 return 1;
569 }
wdenk8ed96042005-01-09 23:16:25 +0000570
Ilya Yanok55faa582012-06-08 03:12:09 +0000571 if (alen > 2) {
Tom Rinicec487a2012-02-20 18:49:16 +0000572 printf("I2C read: addr len %d not supported\n", alen);
wdenk8ed96042005-01-09 23:16:25 +0000573 return 1;
Tom Rinicec487a2012-02-20 18:49:16 +0000574 }
wdenk8ed96042005-01-09 23:16:25 +0000575
Ilya Yanok55faa582012-06-08 03:12:09 +0000576 if (addr + len > (1 << 16)) {
Tom Rinicec487a2012-02-20 18:49:16 +0000577 puts("I2C read: address out of range\n");
578 return 1;
579 }
580
Guy Thouret32b9b552016-03-11 16:23:41 +0000581#ifdef CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW
582 /*
583 * EEPROM chips that implement "address overflow" are ones
584 * like Catalyst 24WC04/08/16 which has 9/10/11 bits of
585 * address and the extra bits end up in the "chip address"
586 * bit slots. This makes a 24WC08 (1Kbyte) chip look like
587 * four 256 byte chips.
588 *
589 * Note that we consider the length of the address field to
590 * still be one byte because the extra address bits are
591 * hidden in the chip address.
592 */
593 if (alen > 0)
594 chip |= ((addr >> (alen * 8)) &
595 CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW);
596#endif
597
Lubomir Popov960187f2013-06-01 06:44:38 +0000598 /* Wait until bus not busy */
Vignesh Rbca09ce2018-12-07 14:50:41 +0100599 if (wait_for_bb(i2c_base, ip_rev, waitdelay))
Lubomir Popov960187f2013-06-01 06:44:38 +0000600 return 1;
601
602 /* Zero, one or two bytes reg address (offset) */
Vignesh Rbca09ce2018-12-07 14:50:41 +0100603 omap_i2c_write_reg(i2c_base, ip_rev, alen, OMAP_I2C_CNT_REG);
Lubomir Popov960187f2013-06-01 06:44:38 +0000604 /* Set slave address */
Vignesh Rbca09ce2018-12-07 14:50:41 +0100605 omap_i2c_write_reg(i2c_base, ip_rev, chip, OMAP_I2C_SA_REG);
Lubomir Popov960187f2013-06-01 06:44:38 +0000606
607 if (alen) {
608 /* Must write reg offset first */
609#ifdef CONFIG_I2C_REPEATED_START
610 /* No stop bit, use Repeated Start (Sr) */
Vignesh Rbca09ce2018-12-07 14:50:41 +0100611 omap_i2c_write_reg(i2c_base, ip_rev, I2C_CON_EN | I2C_CON_MST |
612 I2C_CON_STT | I2C_CON_TRX, OMAP_I2C_CON_REG);
Lubomir Popov960187f2013-06-01 06:44:38 +0000613#else
614 /* Stop - Start (P-S) */
Vignesh Rbca09ce2018-12-07 14:50:41 +0100615 omap_i2c_write_reg(i2c_base, ip_rev, I2C_CON_EN | I2C_CON_MST |
616 I2C_CON_STT | I2C_CON_STP | I2C_CON_TRX,
617 OMAP_I2C_CON_REG);
Lubomir Popov960187f2013-06-01 06:44:38 +0000618#endif
619 /* Send register offset */
620 while (1) {
Vignesh Rbca09ce2018-12-07 14:50:41 +0100621 status = wait_for_event(i2c_base, ip_rev, waitdelay);
Lubomir Popov960187f2013-06-01 06:44:38 +0000622 /* Try to identify bus that is not padconf'd for I2C */
623 if (status == I2C_STAT_XRDY) {
624 i2c_error = 2;
Mugunthan V Nbe243e42016-07-18 15:11:00 +0530625 printf("i2c_read (addr phase): pads on bus probably not configured (status=0x%x)\n",
626 status);
Lubomir Popov960187f2013-06-01 06:44:38 +0000627 goto rd_exit;
628 }
Hannes Petermaierd5243352014-02-03 21:22:18 +0100629 if (status == 0 || (status & I2C_STAT_NACK)) {
Lubomir Popov960187f2013-06-01 06:44:38 +0000630 i2c_error = 1;
631 printf("i2c_read: error waiting for addr ACK (status=0x%x)\n",
632 status);
633 goto rd_exit;
634 }
635 if (alen) {
636 if (status & I2C_STAT_XRDY) {
Vignesh Rbca09ce2018-12-07 14:50:41 +0100637 u8 addr_byte;
Lubomir Popov960187f2013-06-01 06:44:38 +0000638 alen--;
Vignesh Rbca09ce2018-12-07 14:50:41 +0100639 addr_byte = (addr >> (8 * alen)) & 0xff;
640 omap_i2c_write_reg(i2c_base, ip_rev,
641 addr_byte,
642 OMAP_I2C_DATA_REG);
643 omap_i2c_write_reg(i2c_base, ip_rev,
644 I2C_STAT_XRDY,
645 OMAP_I2C_STAT_REG);
Lubomir Popov960187f2013-06-01 06:44:38 +0000646 }
647 }
648 if (status & I2C_STAT_ARDY) {
Vignesh Rbca09ce2018-12-07 14:50:41 +0100649 omap_i2c_write_reg(i2c_base, ip_rev,
650 I2C_STAT_ARDY,
651 OMAP_I2C_STAT_REG);
Lubomir Popov960187f2013-06-01 06:44:38 +0000652 break;
653 }
654 }
655 }
Vignesh Rbca09ce2018-12-07 14:50:41 +0100656
Lubomir Popov960187f2013-06-01 06:44:38 +0000657 /* Set slave address */
Vignesh Rbca09ce2018-12-07 14:50:41 +0100658 omap_i2c_write_reg(i2c_base, ip_rev, chip, OMAP_I2C_SA_REG);
Lubomir Popov960187f2013-06-01 06:44:38 +0000659 /* Read len bytes from slave */
Vignesh Rbca09ce2018-12-07 14:50:41 +0100660 omap_i2c_write_reg(i2c_base, ip_rev, len, OMAP_I2C_CNT_REG);
Lubomir Popov960187f2013-06-01 06:44:38 +0000661 /* Need stop bit here */
Vignesh Rbca09ce2018-12-07 14:50:41 +0100662 omap_i2c_write_reg(i2c_base, ip_rev, I2C_CON_EN | I2C_CON_MST |
663 I2C_CON_STT | I2C_CON_STP, OMAP_I2C_CON_REG);
Lubomir Popov960187f2013-06-01 06:44:38 +0000664
665 /* Receive data */
666 while (1) {
Vignesh Rbca09ce2018-12-07 14:50:41 +0100667 status = wait_for_event(i2c_base, ip_rev, waitdelay);
Lubomir Popov960187f2013-06-01 06:44:38 +0000668 /*
669 * Try to identify bus that is not padconf'd for I2C. This
670 * state could be left over from previous transactions if
671 * the address phase is skipped due to alen=0.
672 */
673 if (status == I2C_STAT_XRDY) {
674 i2c_error = 2;
Mugunthan V Nbe243e42016-07-18 15:11:00 +0530675 printf("i2c_read (data phase): pads on bus probably not configured (status=0x%x)\n",
676 status);
Lubomir Popov960187f2013-06-01 06:44:38 +0000677 goto rd_exit;
678 }
Hannes Petermaierd5243352014-02-03 21:22:18 +0100679 if (status == 0 || (status & I2C_STAT_NACK)) {
Lubomir Popov960187f2013-06-01 06:44:38 +0000680 i2c_error = 1;
681 goto rd_exit;
682 }
683 if (status & I2C_STAT_RRDY) {
Vignesh Rbca09ce2018-12-07 14:50:41 +0100684 *buffer++ = omap_i2c_read_reg(i2c_base, ip_rev,
685 OMAP_I2C_DATA_REG);
686 omap_i2c_write_reg(i2c_base, ip_rev,
687 I2C_STAT_RRDY, OMAP_I2C_STAT_REG);
Lubomir Popov960187f2013-06-01 06:44:38 +0000688 }
689 if (status & I2C_STAT_ARDY) {
Vignesh Rbca09ce2018-12-07 14:50:41 +0100690 omap_i2c_write_reg(i2c_base, ip_rev,
691 I2C_STAT_ARDY, OMAP_I2C_STAT_REG);
Lubomir Popov960187f2013-06-01 06:44:38 +0000692 break;
wdenk8ed96042005-01-09 23:16:25 +0000693 }
694 }
695
Lubomir Popov960187f2013-06-01 06:44:38 +0000696rd_exit:
Vignesh Rbca09ce2018-12-07 14:50:41 +0100697 flush_fifo(i2c_base, ip_rev);
698 omap_i2c_write_reg(i2c_base, ip_rev, 0xFFFF, OMAP_I2C_STAT_REG);
Lubomir Popov960187f2013-06-01 06:44:38 +0000699 return i2c_error;
wdenk8ed96042005-01-09 23:16:25 +0000700}
701
Lubomir Popov960187f2013-06-01 06:44:38 +0000702/* i2c_write: Address (reg offset) may be 0, 1 or 2 bytes long. */
Vignesh Rbca09ce2018-12-07 14:50:41 +0100703static int __omap24_i2c_write(void __iomem *i2c_base, int ip_rev, int waitdelay,
704 uchar chip, uint addr, int alen, uchar *buffer,
705 int len)
wdenk8ed96042005-01-09 23:16:25 +0000706{
Tom Rinicec487a2012-02-20 18:49:16 +0000707 int i;
708 u16 status;
709 int i2c_error = 0;
Hannes Petermaierd5243352014-02-03 21:22:18 +0100710 int timeout = I2C_TIMEOUT;
Lubomir Popov960187f2013-06-01 06:44:38 +0000711
712 if (alen < 0) {
713 puts("I2C write: addr len < 0\n");
714 return 1;
715 }
716
717 if (len < 0) {
718 puts("I2C write: data len < 0\n");
719 return 1;
720 }
721
722 if (buffer == NULL) {
723 puts("I2C write: NULL pointer passed\n");
724 return 1;
725 }
wdenk8ed96042005-01-09 23:16:25 +0000726
Ilya Yanok55faa582012-06-08 03:12:09 +0000727 if (alen > 2) {
Tom Rinicec487a2012-02-20 18:49:16 +0000728 printf("I2C write: addr len %d not supported\n", alen);
wdenk8ed96042005-01-09 23:16:25 +0000729 return 1;
Tom Rinicec487a2012-02-20 18:49:16 +0000730 }
wdenk8ed96042005-01-09 23:16:25 +0000731
Ilya Yanok55faa582012-06-08 03:12:09 +0000732 if (addr + len > (1 << 16)) {
Tom Rinicec487a2012-02-20 18:49:16 +0000733 printf("I2C write: address 0x%x + 0x%x out of range\n",
Lubomir Popov960187f2013-06-01 06:44:38 +0000734 addr, len);
wdenk8ed96042005-01-09 23:16:25 +0000735 return 1;
736 }
737
Guy Thouret32b9b552016-03-11 16:23:41 +0000738#ifdef CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW
739 /*
740 * EEPROM chips that implement "address overflow" are ones
741 * like Catalyst 24WC04/08/16 which has 9/10/11 bits of
742 * address and the extra bits end up in the "chip address"
743 * bit slots. This makes a 24WC08 (1Kbyte) chip look like
744 * four 256 byte chips.
745 *
746 * Note that we consider the length of the address field to
747 * still be one byte because the extra address bits are
748 * hidden in the chip address.
749 */
750 if (alen > 0)
751 chip |= ((addr >> (alen * 8)) &
752 CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW);
753#endif
754
Lubomir Popov960187f2013-06-01 06:44:38 +0000755 /* Wait until bus not busy */
Vignesh Rbca09ce2018-12-07 14:50:41 +0100756 if (wait_for_bb(i2c_base, ip_rev, waitdelay))
Vincent Stehléfebc4cd2012-12-03 05:23:16 +0000757 return 1;
Michael Jones0607e2b2011-09-04 14:01:55 -0400758
Lubomir Popov960187f2013-06-01 06:44:38 +0000759 /* Start address phase - will write regoffset + len bytes data */
Vignesh Rbca09ce2018-12-07 14:50:41 +0100760 omap_i2c_write_reg(i2c_base, ip_rev, alen + len, OMAP_I2C_CNT_REG);
Lubomir Popov960187f2013-06-01 06:44:38 +0000761 /* Set slave address */
Vignesh Rbca09ce2018-12-07 14:50:41 +0100762 omap_i2c_write_reg(i2c_base, ip_rev, chip, OMAP_I2C_SA_REG);
Lubomir Popov960187f2013-06-01 06:44:38 +0000763 /* Stop bit needed here */
Vignesh Rbca09ce2018-12-07 14:50:41 +0100764 omap_i2c_write_reg(i2c_base, ip_rev, I2C_CON_EN | I2C_CON_MST |
765 I2C_CON_STT | I2C_CON_TRX | I2C_CON_STP,
766 OMAP_I2C_CON_REG);
Michael Jones0607e2b2011-09-04 14:01:55 -0400767
Lubomir Popov960187f2013-06-01 06:44:38 +0000768 while (alen) {
769 /* Must write reg offset (one or two bytes) */
Vignesh Rbca09ce2018-12-07 14:50:41 +0100770 status = wait_for_event(i2c_base, ip_rev, waitdelay);
Lubomir Popov960187f2013-06-01 06:44:38 +0000771 /* Try to identify bus that is not padconf'd for I2C */
772 if (status == I2C_STAT_XRDY) {
773 i2c_error = 2;
Mugunthan V Nbe243e42016-07-18 15:11:00 +0530774 printf("i2c_write: pads on bus probably not configured (status=0x%x)\n",
775 status);
Lubomir Popov960187f2013-06-01 06:44:38 +0000776 goto wr_exit;
777 }
Hannes Petermaierd5243352014-02-03 21:22:18 +0100778 if (status == 0 || (status & I2C_STAT_NACK)) {
Michael Jones0607e2b2011-09-04 14:01:55 -0400779 i2c_error = 1;
Lubomir Popov960187f2013-06-01 06:44:38 +0000780 printf("i2c_write: error waiting for addr ACK (status=0x%x)\n",
781 status);
782 goto wr_exit;
Tom Rinicec487a2012-02-20 18:49:16 +0000783 }
Tom Rinicec487a2012-02-20 18:49:16 +0000784 if (status & I2C_STAT_XRDY) {
Lubomir Popov960187f2013-06-01 06:44:38 +0000785 alen--;
Vignesh Rbca09ce2018-12-07 14:50:41 +0100786 omap_i2c_write_reg(i2c_base, ip_rev,
787 (addr >> (8 * alen)) & 0xff,
788 OMAP_I2C_DATA_REG);
789 omap_i2c_write_reg(i2c_base, ip_rev,
790 I2C_STAT_XRDY, OMAP_I2C_STAT_REG);
Tom Rinicec487a2012-02-20 18:49:16 +0000791 } else {
792 i2c_error = 1;
Lubomir Popov960187f2013-06-01 06:44:38 +0000793 printf("i2c_write: bus not ready for addr Tx (status=0x%x)\n",
794 status);
795 goto wr_exit;
796 }
797 }
Vignesh Rbca09ce2018-12-07 14:50:41 +0100798
Lubomir Popov960187f2013-06-01 06:44:38 +0000799 /* Address phase is over, now write data */
800 for (i = 0; i < len; i++) {
Vignesh Rbca09ce2018-12-07 14:50:41 +0100801 status = wait_for_event(i2c_base, ip_rev, waitdelay);
Hannes Petermaierd5243352014-02-03 21:22:18 +0100802 if (status == 0 || (status & I2C_STAT_NACK)) {
Lubomir Popov960187f2013-06-01 06:44:38 +0000803 i2c_error = 1;
804 printf("i2c_write: error waiting for data ACK (status=0x%x)\n",
805 status);
806 goto wr_exit;
807 }
808 if (status & I2C_STAT_XRDY) {
Vignesh Rbca09ce2018-12-07 14:50:41 +0100809 omap_i2c_write_reg(i2c_base, ip_rev,
810 buffer[i], OMAP_I2C_DATA_REG);
811 omap_i2c_write_reg(i2c_base, ip_rev,
812 I2C_STAT_XRDY, OMAP_I2C_STAT_REG);
Lubomir Popov960187f2013-06-01 06:44:38 +0000813 } else {
814 i2c_error = 1;
815 printf("i2c_write: bus not ready for data Tx (i=%d)\n",
816 i);
817 goto wr_exit;
wdenk8ed96042005-01-09 23:16:25 +0000818 }
819 }
Vignesh Rbca09ce2018-12-07 14:50:41 +0100820
Hannes Petermaierd5243352014-02-03 21:22:18 +0100821 /*
822 * poll ARDY bit for making sure that last byte really has been
823 * transferred on the bus.
824 */
825 do {
Vignesh Rbca09ce2018-12-07 14:50:41 +0100826 status = wait_for_event(i2c_base, ip_rev, waitdelay);
Hannes Petermaierd5243352014-02-03 21:22:18 +0100827 } while (!(status & I2C_STAT_ARDY) && timeout--);
828 if (timeout <= 0)
829 printf("i2c_write: timed out writig last byte!\n");
wdenk8ed96042005-01-09 23:16:25 +0000830
Lubomir Popov960187f2013-06-01 06:44:38 +0000831wr_exit:
Vignesh Rbca09ce2018-12-07 14:50:41 +0100832 flush_fifo(i2c_base, ip_rev);
833 omap_i2c_write_reg(i2c_base, ip_rev, 0xFFFF, OMAP_I2C_STAT_REG);
Tom Rinicec487a2012-02-20 18:49:16 +0000834 return i2c_error;
wdenk8ed96042005-01-09 23:16:25 +0000835}
836
Mugunthan V Ndaa69ff2016-07-18 15:11:01 +0530837#ifndef CONFIG_DM_I2C
Lubomir Popov960187f2013-06-01 06:44:38 +0000838/*
Mugunthan V Nbe243e42016-07-18 15:11:00 +0530839 * The legacy I2C functions. These need to get removed once
840 * all users of this driver are converted to DM.
Lubomir Popov960187f2013-06-01 06:44:38 +0000841 */
Vignesh Rbca09ce2018-12-07 14:50:41 +0100842static void __iomem *omap24_get_base(struct i2c_adapter *adap)
Dirk Behme1d2e96d2009-11-02 20:36:26 +0100843{
Heiko Schocher6789e842013-10-22 11:03:18 +0200844 switch (adap->hwadapnr) {
Lubomir Popov960187f2013-06-01 06:44:38 +0000845 case 0:
Vignesh Rbca09ce2018-12-07 14:50:41 +0100846 return (void __iomem *)I2C_BASE1;
Lubomir Popov960187f2013-06-01 06:44:38 +0000847 break;
848 case 1:
Vignesh Rbca09ce2018-12-07 14:50:41 +0100849 return (void __iomem *)I2C_BASE2;
Lubomir Popov960187f2013-06-01 06:44:38 +0000850 break;
Adam Fordac1d8ac2017-08-11 06:39:13 -0500851#if (CONFIG_SYS_I2C_BUS_MAX > 2)
Lubomir Popov960187f2013-06-01 06:44:38 +0000852 case 2:
Vignesh Rbca09ce2018-12-07 14:50:41 +0100853 return (void __iomem *)I2C_BASE3;
Lubomir Popov960187f2013-06-01 06:44:38 +0000854 break;
Adam Fordac1d8ac2017-08-11 06:39:13 -0500855#if (CONFIG_SYS_I2C_BUS_MAX > 3)
Lubomir Popov960187f2013-06-01 06:44:38 +0000856 case 3:
Vignesh Rbca09ce2018-12-07 14:50:41 +0100857 return (void __iomem *)I2C_BASE4;
Lubomir Popov960187f2013-06-01 06:44:38 +0000858 break;
Adam Fordac1d8ac2017-08-11 06:39:13 -0500859#if (CONFIG_SYS_I2C_BUS_MAX > 4)
Lubomir Popov960187f2013-06-01 06:44:38 +0000860 case 4:
Vignesh Rbca09ce2018-12-07 14:50:41 +0100861 return (void __iomem *)I2C_BASE5;
Lubomir Popov960187f2013-06-01 06:44:38 +0000862 break;
863#endif
864#endif
865#endif
Heiko Schocher6789e842013-10-22 11:03:18 +0200866 default:
867 printf("wrong hwadapnr: %d\n", adap->hwadapnr);
868 break;
Lubomir Popov960187f2013-06-01 06:44:38 +0000869 }
Vignesh Rbca09ce2018-12-07 14:50:41 +0100870
Heiko Schocher6789e842013-10-22 11:03:18 +0200871 return NULL;
Dirk Behme1d2e96d2009-11-02 20:36:26 +0100872}
Steve Sakoman938717c2010-06-12 06:42:57 -0700873
Vignesh Rbca09ce2018-12-07 14:50:41 +0100874static int omap24_get_ip_rev(void)
875{
876#ifdef CONFIG_OMAP34XX
877 return OMAP_I2C_REV_V1;
878#else
879 return OMAP_I2C_REV_V2;
880#endif
881}
Mugunthan V Nbe243e42016-07-18 15:11:00 +0530882
883static int omap24_i2c_read(struct i2c_adapter *adap, uchar chip, uint addr,
884 int alen, uchar *buffer, int len)
885{
Vignesh Rbca09ce2018-12-07 14:50:41 +0100886 void __iomem *i2c_base = omap24_get_base(adap);
887 int ip_rev = omap24_get_ip_rev();
Mugunthan V Nbe243e42016-07-18 15:11:00 +0530888
Vignesh Rbca09ce2018-12-07 14:50:41 +0100889 return __omap24_i2c_read(i2c_base, ip_rev, adap->waitdelay, chip, addr,
Mugunthan V Nbe243e42016-07-18 15:11:00 +0530890 alen, buffer, len);
891}
892
Mugunthan V Nbe243e42016-07-18 15:11:00 +0530893static int omap24_i2c_write(struct i2c_adapter *adap, uchar chip, uint addr,
894 int alen, uchar *buffer, int len)
895{
Vignesh Rbca09ce2018-12-07 14:50:41 +0100896 void __iomem *i2c_base = omap24_get_base(adap);
897 int ip_rev = omap24_get_ip_rev();
Mugunthan V Nbe243e42016-07-18 15:11:00 +0530898
Vignesh Rbca09ce2018-12-07 14:50:41 +0100899 return __omap24_i2c_write(i2c_base, ip_rev, adap->waitdelay, chip, addr,
Mugunthan V Nbe243e42016-07-18 15:11:00 +0530900 alen, buffer, len);
901}
902
903static uint omap24_i2c_setspeed(struct i2c_adapter *adap, uint speed)
904{
Vignesh Rbca09ce2018-12-07 14:50:41 +0100905 void __iomem *i2c_base = omap24_get_base(adap);
906 int ip_rev = omap24_get_ip_rev();
Mugunthan V Nbe243e42016-07-18 15:11:00 +0530907 int ret;
908
Vignesh Rbca09ce2018-12-07 14:50:41 +0100909 ret = __omap24_i2c_setspeed(i2c_base, ip_rev, speed, &adap->waitdelay);
Mugunthan V Nbe243e42016-07-18 15:11:00 +0530910 if (ret) {
Masahiro Yamada9b643e32017-09-16 14:10:41 +0900911 pr_err("%s: set i2c speed failed\n", __func__);
Mugunthan V Nbe243e42016-07-18 15:11:00 +0530912 return ret;
913 }
914
915 adap->speed = speed;
916
917 return 0;
918}
919
920static void omap24_i2c_init(struct i2c_adapter *adap, int speed, int slaveadd)
921{
Vignesh Rbca09ce2018-12-07 14:50:41 +0100922 void __iomem *i2c_base = omap24_get_base(adap);
923 int ip_rev = omap24_get_ip_rev();
Mugunthan V Nbe243e42016-07-18 15:11:00 +0530924
Vignesh Rbca09ce2018-12-07 14:50:41 +0100925 return __omap24_i2c_init(i2c_base, ip_rev, speed, slaveadd,
926 &adap->waitdelay);
Mugunthan V Nbe243e42016-07-18 15:11:00 +0530927}
928
929static int omap24_i2c_probe(struct i2c_adapter *adap, uchar chip)
930{
Vignesh Rbca09ce2018-12-07 14:50:41 +0100931 void __iomem *i2c_base = omap24_get_base(adap);
932 int ip_rev = omap24_get_ip_rev();
Mugunthan V Nbe243e42016-07-18 15:11:00 +0530933
Vignesh Rbca09ce2018-12-07 14:50:41 +0100934 return __omap24_i2c_probe(i2c_base, ip_rev, adap->waitdelay, chip);
Mugunthan V Nbe243e42016-07-18 15:11:00 +0530935}
936
Heiko Schocher6789e842013-10-22 11:03:18 +0200937#if !defined(CONFIG_SYS_OMAP24_I2C_SPEED1)
938#define CONFIG_SYS_OMAP24_I2C_SPEED1 CONFIG_SYS_OMAP24_I2C_SPEED
939#endif
940#if !defined(CONFIG_SYS_OMAP24_I2C_SLAVE1)
941#define CONFIG_SYS_OMAP24_I2C_SLAVE1 CONFIG_SYS_OMAP24_I2C_SLAVE
942#endif
943
944U_BOOT_I2C_ADAP_COMPLETE(omap24_0, omap24_i2c_init, omap24_i2c_probe,
Hannes Petermaierd5243352014-02-03 21:22:18 +0100945 omap24_i2c_read, omap24_i2c_write, omap24_i2c_setspeed,
Heiko Schocher6789e842013-10-22 11:03:18 +0200946 CONFIG_SYS_OMAP24_I2C_SPEED,
947 CONFIG_SYS_OMAP24_I2C_SLAVE,
948 0)
949U_BOOT_I2C_ADAP_COMPLETE(omap24_1, omap24_i2c_init, omap24_i2c_probe,
Hannes Petermaierd5243352014-02-03 21:22:18 +0100950 omap24_i2c_read, omap24_i2c_write, omap24_i2c_setspeed,
Heiko Schocher6789e842013-10-22 11:03:18 +0200951 CONFIG_SYS_OMAP24_I2C_SPEED1,
952 CONFIG_SYS_OMAP24_I2C_SLAVE1,
953 1)
Vignesh Rbca09ce2018-12-07 14:50:41 +0100954
Adam Fordac1d8ac2017-08-11 06:39:13 -0500955#if (CONFIG_SYS_I2C_BUS_MAX > 2)
Heiko Schocher6789e842013-10-22 11:03:18 +0200956#if !defined(CONFIG_SYS_OMAP24_I2C_SPEED2)
957#define CONFIG_SYS_OMAP24_I2C_SPEED2 CONFIG_SYS_OMAP24_I2C_SPEED
958#endif
959#if !defined(CONFIG_SYS_OMAP24_I2C_SLAVE2)
960#define CONFIG_SYS_OMAP24_I2C_SLAVE2 CONFIG_SYS_OMAP24_I2C_SLAVE
961#endif
962
963U_BOOT_I2C_ADAP_COMPLETE(omap24_2, omap24_i2c_init, omap24_i2c_probe,
964 omap24_i2c_read, omap24_i2c_write, NULL,
965 CONFIG_SYS_OMAP24_I2C_SPEED2,
966 CONFIG_SYS_OMAP24_I2C_SLAVE2,
967 2)
Adam Fordac1d8ac2017-08-11 06:39:13 -0500968#if (CONFIG_SYS_I2C_BUS_MAX > 3)
Heiko Schocher6789e842013-10-22 11:03:18 +0200969#if !defined(CONFIG_SYS_OMAP24_I2C_SPEED3)
970#define CONFIG_SYS_OMAP24_I2C_SPEED3 CONFIG_SYS_OMAP24_I2C_SPEED
971#endif
972#if !defined(CONFIG_SYS_OMAP24_I2C_SLAVE3)
973#define CONFIG_SYS_OMAP24_I2C_SLAVE3 CONFIG_SYS_OMAP24_I2C_SLAVE
974#endif
975
976U_BOOT_I2C_ADAP_COMPLETE(omap24_3, omap24_i2c_init, omap24_i2c_probe,
977 omap24_i2c_read, omap24_i2c_write, NULL,
978 CONFIG_SYS_OMAP24_I2C_SPEED3,
979 CONFIG_SYS_OMAP24_I2C_SLAVE3,
980 3)
Adam Fordac1d8ac2017-08-11 06:39:13 -0500981#if (CONFIG_SYS_I2C_BUS_MAX > 4)
Heiko Schocher6789e842013-10-22 11:03:18 +0200982#if !defined(CONFIG_SYS_OMAP24_I2C_SPEED4)
983#define CONFIG_SYS_OMAP24_I2C_SPEED4 CONFIG_SYS_OMAP24_I2C_SPEED
984#endif
985#if !defined(CONFIG_SYS_OMAP24_I2C_SLAVE4)
986#define CONFIG_SYS_OMAP24_I2C_SLAVE4 CONFIG_SYS_OMAP24_I2C_SLAVE
987#endif
988
989U_BOOT_I2C_ADAP_COMPLETE(omap24_4, omap24_i2c_init, omap24_i2c_probe,
990 omap24_i2c_read, omap24_i2c_write, NULL,
991 CONFIG_SYS_OMAP24_I2C_SPEED4,
992 CONFIG_SYS_OMAP24_I2C_SLAVE4,
993 4)
994#endif
995#endif
996#endif
Mugunthan V Ndaa69ff2016-07-18 15:11:01 +0530997
998#else /* CONFIG_DM_I2C */
999
1000static int omap_i2c_xfer(struct udevice *bus, struct i2c_msg *msg, int nmsgs)
1001{
1002 struct omap_i2c *priv = dev_get_priv(bus);
1003 int ret;
1004
1005 debug("i2c_xfer: %d messages\n", nmsgs);
1006 for (; nmsgs > 0; nmsgs--, msg++) {
1007 debug("i2c_xfer: chip=0x%x, len=0x%x\n", msg->addr, msg->len);
1008 if (msg->flags & I2C_M_RD) {
Vignesh Rbca09ce2018-12-07 14:50:41 +01001009 ret = __omap24_i2c_read(priv->regs, priv->ip_rev,
1010 priv->waitdelay,
Mugunthan V Ndaa69ff2016-07-18 15:11:01 +05301011 msg->addr, 0, 0, msg->buf,
1012 msg->len);
1013 } else {
Vignesh Rbca09ce2018-12-07 14:50:41 +01001014 ret = __omap24_i2c_write(priv->regs, priv->ip_rev,
1015 priv->waitdelay,
Mugunthan V Ndaa69ff2016-07-18 15:11:01 +05301016 msg->addr, 0, 0, msg->buf,
1017 msg->len);
1018 }
1019 if (ret) {
1020 debug("i2c_write: error sending\n");
1021 return -EREMOTEIO;
1022 }
1023 }
1024
1025 return 0;
1026}
1027
1028static int omap_i2c_set_bus_speed(struct udevice *bus, unsigned int speed)
1029{
1030 struct omap_i2c *priv = dev_get_priv(bus);
1031
1032 priv->speed = speed;
1033
Vignesh Rbca09ce2018-12-07 14:50:41 +01001034 return __omap24_i2c_setspeed(priv->regs, priv->ip_rev, speed,
1035 &priv->waitdelay);
Mugunthan V Ndaa69ff2016-07-18 15:11:01 +05301036}
1037
1038static int omap_i2c_probe_chip(struct udevice *bus, uint chip_addr,
1039 uint chip_flags)
1040{
1041 struct omap_i2c *priv = dev_get_priv(bus);
1042
Vignesh Rbca09ce2018-12-07 14:50:41 +01001043 return __omap24_i2c_probe(priv->regs, priv->ip_rev, priv->waitdelay,
1044 chip_addr);
Mugunthan V Ndaa69ff2016-07-18 15:11:01 +05301045}
1046
1047static int omap_i2c_probe(struct udevice *bus)
1048{
1049 struct omap_i2c *priv = dev_get_priv(bus);
Jean-Jacques Hiblot5f97ae62018-12-07 14:50:42 +01001050 struct omap_i2c_platdata *plat = dev_get_platdata(bus);
Mugunthan V Ndaa69ff2016-07-18 15:11:01 +05301051
Jean-Jacques Hiblot5f97ae62018-12-07 14:50:42 +01001052 priv->speed = plat->speed;
1053 priv->regs = map_physmem(plat->base, sizeof(void *),
1054 MAP_NOCACHE);
1055 priv->ip_rev = plat->ip_rev;
Vignesh Rbca09ce2018-12-07 14:50:41 +01001056
1057 __omap24_i2c_init(priv->regs, priv->ip_rev, priv->speed, 0,
1058 &priv->waitdelay);
Mugunthan V Ndaa69ff2016-07-18 15:11:01 +05301059
1060 return 0;
1061}
1062
Adam Ford410c5052018-08-20 20:24:35 -05001063#if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
Mugunthan V Ndaa69ff2016-07-18 15:11:01 +05301064static int omap_i2c_ofdata_to_platdata(struct udevice *bus)
1065{
Jean-Jacques Hiblot5f97ae62018-12-07 14:50:42 +01001066 struct omap_i2c_platdata *plat = dev_get_platdata(bus);
Mugunthan V Ndaa69ff2016-07-18 15:11:01 +05301067
Jean-Jacques Hiblot5f97ae62018-12-07 14:50:42 +01001068 plat->base = devfdt_get_addr(bus);
Simon Glassf3d46152020-01-23 11:48:22 -07001069 plat->speed = dev_read_u32_default(bus, "clock-frequency",
1070 I2C_SPEED_STANDARD_RATE);
Jean-Jacques Hiblot5f97ae62018-12-07 14:50:42 +01001071 plat->ip_rev = dev_get_driver_data(bus);
Mugunthan V Ndaa69ff2016-07-18 15:11:01 +05301072
1073 return 0;
1074}
1075
Adam Ford410c5052018-08-20 20:24:35 -05001076static const struct udevice_id omap_i2c_ids[] = {
Vignesh Rbca09ce2018-12-07 14:50:41 +01001077 { .compatible = "ti,omap3-i2c", .data = OMAP_I2C_REV_V1 },
1078 { .compatible = "ti,omap4-i2c", .data = OMAP_I2C_REV_V2 },
Adam Ford410c5052018-08-20 20:24:35 -05001079 { }
1080};
1081#endif
1082
Mugunthan V Ndaa69ff2016-07-18 15:11:01 +05301083static const struct dm_i2c_ops omap_i2c_ops = {
1084 .xfer = omap_i2c_xfer,
1085 .probe_chip = omap_i2c_probe_chip,
1086 .set_bus_speed = omap_i2c_set_bus_speed,
1087};
1088
Mugunthan V Ndaa69ff2016-07-18 15:11:01 +05301089U_BOOT_DRIVER(i2c_omap) = {
1090 .name = "i2c_omap",
1091 .id = UCLASS_I2C,
Adam Ford410c5052018-08-20 20:24:35 -05001092#if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
Mugunthan V Ndaa69ff2016-07-18 15:11:01 +05301093 .of_match = omap_i2c_ids,
1094 .ofdata_to_platdata = omap_i2c_ofdata_to_platdata,
Jean-Jacques Hiblot5f97ae62018-12-07 14:50:42 +01001095 .platdata_auto_alloc_size = sizeof(struct omap_i2c_platdata),
Adam Ford410c5052018-08-20 20:24:35 -05001096#endif
Mugunthan V Ndaa69ff2016-07-18 15:11:01 +05301097 .probe = omap_i2c_probe,
1098 .priv_auto_alloc_size = sizeof(struct omap_i2c),
1099 .ops = &omap_i2c_ops,
Bin Menge0cfc202018-10-24 06:36:31 -07001100#if !CONFIG_IS_ENABLED(OF_CONTROL)
Mugunthan V Ndaa69ff2016-07-18 15:11:01 +05301101 .flags = DM_FLAG_PRE_RELOC,
Bin Menge0cfc202018-10-24 06:36:31 -07001102#endif
Mugunthan V Ndaa69ff2016-07-18 15:11:01 +05301103};
1104
1105#endif /* CONFIG_DM_I2C */