blob: 2c77234c60e99fbd454d27f31199d00b551fd47c [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Sergey Kubushync74b2102007-08-10 20:26:18 +02002/*
3 * TI DaVinci (TMS320DM644x) I2C driver.
4 *
Vitaly Andrianove8459dc2014-04-04 13:16:52 -04005 * (C) Copyright 2012-2014
6 * Texas Instruments Incorporated, <www.ti.com>
7 * (C) Copyright 2007 Sergey Kubushyn <ksi@koi8.net>
Sergey Kubushync74b2102007-08-10 20:26:18 +02008 * --------------------------------------------------------
9 *
Simon Glass28527092016-11-23 06:34:44 -070010 * NOTE: This driver should be converted to driver model before June 2017.
11 * Please see doc/driver-model/i2c-howto.txt for instructions.
Sergey Kubushync74b2102007-08-10 20:26:18 +020012 */
13
14#include <common.h>
Sergey Kubushync74b2102007-08-10 20:26:18 +020015#include <i2c.h>
Cooper Jr., Franklin70f6f942017-04-20 10:25:43 -050016#include <dm.h>
Sergey Kubushync74b2102007-08-10 20:26:18 +020017#include <asm/arch/hardware.h>
18#include <asm/arch/i2c_defs.h>
Vitaly Andrianove8459dc2014-04-04 13:16:52 -040019#include <asm/io.h>
Karicheri, Muralidharan356d15e2014-04-04 13:16:51 -040020#include "davinci_i2c.h"
Sergey Kubushync74b2102007-08-10 20:26:18 +020021
Cooper Jr., Franklin70f6f942017-04-20 10:25:43 -050022#ifdef CONFIG_DM_I2C
23/* Information about i2c controller */
24struct i2c_bus {
25 int id;
26 uint speed;
27 struct i2c_regs *regs;
28};
29#endif
30
Sergey Kubushync74b2102007-08-10 20:26:18 +020031#define CHECK_NACK() \
32 do {\
33 if (tmp & (I2C_TIMEOUT | I2C_STAT_NACK)) {\
Vitaly Andrianove8459dc2014-04-04 13:16:52 -040034 REG(&(i2c_base->i2c_con)) = 0;\
35 return 1;\
36 } \
Sergey Kubushync74b2102007-08-10 20:26:18 +020037 } while (0)
38
Cooper Jr., Franklin60219102017-04-20 10:25:42 -050039static int _wait_for_bus(struct i2c_regs *i2c_base)
Sergey Kubushync74b2102007-08-10 20:26:18 +020040{
41 int stat, timeout;
42
Vitaly Andrianove8459dc2014-04-04 13:16:52 -040043 REG(&(i2c_base->i2c_stat)) = 0xffff;
Sergey Kubushync74b2102007-08-10 20:26:18 +020044
45 for (timeout = 0; timeout < 10; timeout++) {
Vitaly Andrianove8459dc2014-04-04 13:16:52 -040046 stat = REG(&(i2c_base->i2c_stat));
47 if (!((stat) & I2C_STAT_BB)) {
48 REG(&(i2c_base->i2c_stat)) = 0xffff;
49 return 0;
Sergey Kubushync74b2102007-08-10 20:26:18 +020050 }
51
Vitaly Andrianove8459dc2014-04-04 13:16:52 -040052 REG(&(i2c_base->i2c_stat)) = stat;
Sergey Kubushync74b2102007-08-10 20:26:18 +020053 udelay(50000);
54 }
55
Vitaly Andrianove8459dc2014-04-04 13:16:52 -040056 REG(&(i2c_base->i2c_stat)) = 0xffff;
57 return 1;
Sergey Kubushync74b2102007-08-10 20:26:18 +020058}
59
Cooper Jr., Franklin60219102017-04-20 10:25:42 -050060static int _poll_i2c_irq(struct i2c_regs *i2c_base, int mask)
Sergey Kubushync74b2102007-08-10 20:26:18 +020061{
62 int stat, timeout;
63
64 for (timeout = 0; timeout < 10; timeout++) {
65 udelay(1000);
Vitaly Andrianove8459dc2014-04-04 13:16:52 -040066 stat = REG(&(i2c_base->i2c_stat));
67 if (stat & mask)
68 return stat;
Sergey Kubushync74b2102007-08-10 20:26:18 +020069 }
70
Vitaly Andrianove8459dc2014-04-04 13:16:52 -040071 REG(&(i2c_base->i2c_stat)) = 0xffff;
72 return stat | I2C_TIMEOUT;
Sergey Kubushync74b2102007-08-10 20:26:18 +020073}
74
Cooper Jr., Franklin60219102017-04-20 10:25:42 -050075static void _flush_rx(struct i2c_regs *i2c_base)
Sergey Kubushync74b2102007-08-10 20:26:18 +020076{
Sergey Kubushync74b2102007-08-10 20:26:18 +020077 while (1) {
Vitaly Andrianove8459dc2014-04-04 13:16:52 -040078 if (!(REG(&(i2c_base->i2c_stat)) & I2C_STAT_RRDY))
Sergey Kubushync74b2102007-08-10 20:26:18 +020079 break;
80
Vitaly Andrianove8459dc2014-04-04 13:16:52 -040081 REG(&(i2c_base->i2c_drr));
82 REG(&(i2c_base->i2c_stat)) = I2C_STAT_RRDY;
Sergey Kubushync74b2102007-08-10 20:26:18 +020083 udelay(1000);
84 }
85}
86
Cooper Jr., Franklin60219102017-04-20 10:25:42 -050087static uint _davinci_i2c_setspeed(struct i2c_regs *i2c_base,
88 uint speed)
Sergey Kubushync74b2102007-08-10 20:26:18 +020089{
Vitaly Andrianove8459dc2014-04-04 13:16:52 -040090 uint32_t div, psc;
Sergey Kubushync74b2102007-08-10 20:26:18 +020091
92 psc = 2;
Vitaly Andrianove8459dc2014-04-04 13:16:52 -040093 /* SCLL + SCLH */
94 div = (CONFIG_SYS_HZ_CLOCK / ((psc + 1) * speed)) - 10;
95 REG(&(i2c_base->i2c_psc)) = psc; /* 27MHz / (2 + 1) = 9MHz */
96 REG(&(i2c_base->i2c_scll)) = (div * 50) / 100; /* 50% Duty */
97 REG(&(i2c_base->i2c_sclh)) = div - REG(&(i2c_base->i2c_scll));
Sergey Kubushync74b2102007-08-10 20:26:18 +020098
Vitaly Andrianove8459dc2014-04-04 13:16:52 -040099 return 0;
100}
101
Cooper Jr., Franklin60219102017-04-20 10:25:42 -0500102static void _davinci_i2c_init(struct i2c_regs *i2c_base,
103 uint speed, int slaveadd)
Vitaly Andrianove8459dc2014-04-04 13:16:52 -0400104{
Vitaly Andrianove8459dc2014-04-04 13:16:52 -0400105 if (REG(&(i2c_base->i2c_con)) & I2C_CON_EN) {
106 REG(&(i2c_base->i2c_con)) = 0;
107 udelay(50000);
108 }
109
Cooper Jr., Franklin60219102017-04-20 10:25:42 -0500110 _davinci_i2c_setspeed(i2c_base, speed);
Vitaly Andrianove8459dc2014-04-04 13:16:52 -0400111
112 REG(&(i2c_base->i2c_oa)) = slaveadd;
113 REG(&(i2c_base->i2c_cnt)) = 0;
Sergey Kubushync74b2102007-08-10 20:26:18 +0200114
115 /* Interrupts must be enabled or I2C module won't work */
Vitaly Andrianove8459dc2014-04-04 13:16:52 -0400116 REG(&(i2c_base->i2c_ie)) = I2C_IE_SCD_IE | I2C_IE_XRDY_IE |
Sergey Kubushync74b2102007-08-10 20:26:18 +0200117 I2C_IE_RRDY_IE | I2C_IE_ARDY_IE | I2C_IE_NACK_IE;
118
119 /* Now enable I2C controller (get it out of reset) */
Vitaly Andrianove8459dc2014-04-04 13:16:52 -0400120 REG(&(i2c_base->i2c_con)) = I2C_CON_EN;
Sergey Kubushync74b2102007-08-10 20:26:18 +0200121
122 udelay(1000);
123}
124
Cooper Jr., Franklin60219102017-04-20 10:25:42 -0500125static int _davinci_i2c_read(struct i2c_regs *i2c_base, uint8_t chip,
126 uint32_t addr, int alen, uint8_t *buf, int len)
Heiko Schocher49d6da62011-09-14 19:25:12 +0000127{
Vitaly Andrianove8459dc2014-04-04 13:16:52 -0400128 uint32_t tmp;
Sergey Kubushync74b2102007-08-10 20:26:18 +0200129 int i;
130
131 if ((alen < 0) || (alen > 2)) {
Vitaly Andrianove8459dc2014-04-04 13:16:52 -0400132 printf("%s(): bogus address length %x\n", __func__, alen);
133 return 1;
Sergey Kubushync74b2102007-08-10 20:26:18 +0200134 }
135
Cooper Jr., Franklin60219102017-04-20 10:25:42 -0500136 if (_wait_for_bus(i2c_base))
Vitaly Andrianove8459dc2014-04-04 13:16:52 -0400137 return 1;
Sergey Kubushync74b2102007-08-10 20:26:18 +0200138
139 if (alen != 0) {
140 /* Start address phase */
141 tmp = I2C_CON_EN | I2C_CON_MST | I2C_CON_STT | I2C_CON_TRX;
Vitaly Andrianove8459dc2014-04-04 13:16:52 -0400142 REG(&(i2c_base->i2c_cnt)) = alen;
143 REG(&(i2c_base->i2c_sa)) = chip;
144 REG(&(i2c_base->i2c_con)) = tmp;
Sergey Kubushync74b2102007-08-10 20:26:18 +0200145
Cooper Jr., Franklin60219102017-04-20 10:25:42 -0500146 tmp = _poll_i2c_irq(i2c_base, I2C_STAT_XRDY | I2C_STAT_NACK);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200147
148 CHECK_NACK();
149
150 switch (alen) {
Vitaly Andrianove8459dc2014-04-04 13:16:52 -0400151 case 2:
152 /* Send address MSByte */
153 if (tmp & I2C_STAT_XRDY) {
154 REG(&(i2c_base->i2c_dxr)) = (addr >> 8) & 0xff;
155 } else {
156 REG(&(i2c_base->i2c_con)) = 0;
157 return 1;
158 }
Sergey Kubushync74b2102007-08-10 20:26:18 +0200159
Cooper Jr., Franklin60219102017-04-20 10:25:42 -0500160 tmp = _poll_i2c_irq(i2c_base,
161 I2C_STAT_XRDY | I2C_STAT_NACK);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200162
Vitaly Andrianove8459dc2014-04-04 13:16:52 -0400163 CHECK_NACK();
164 /* No break, fall through */
165 case 1:
166 /* Send address LSByte */
167 if (tmp & I2C_STAT_XRDY) {
168 REG(&(i2c_base->i2c_dxr)) = addr & 0xff;
169 } else {
170 REG(&(i2c_base->i2c_con)) = 0;
171 return 1;
172 }
Sergey Kubushync74b2102007-08-10 20:26:18 +0200173
Cooper Jr., Franklin60219102017-04-20 10:25:42 -0500174 tmp = _poll_i2c_irq(i2c_base, I2C_STAT_XRDY |
175 I2C_STAT_NACK | I2C_STAT_ARDY);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200176
Vitaly Andrianove8459dc2014-04-04 13:16:52 -0400177 CHECK_NACK();
Sergey Kubushync74b2102007-08-10 20:26:18 +0200178
Vitaly Andrianove8459dc2014-04-04 13:16:52 -0400179 if (!(tmp & I2C_STAT_ARDY)) {
180 REG(&(i2c_base->i2c_con)) = 0;
181 return 1;
182 }
Sergey Kubushync74b2102007-08-10 20:26:18 +0200183 }
184 }
185
186 /* Address phase is over, now read 'len' bytes and stop */
187 tmp = I2C_CON_EN | I2C_CON_MST | I2C_CON_STT | I2C_CON_STP;
Vitaly Andrianove8459dc2014-04-04 13:16:52 -0400188 REG(&(i2c_base->i2c_cnt)) = len & 0xffff;
189 REG(&(i2c_base->i2c_sa)) = chip;
190 REG(&(i2c_base->i2c_con)) = tmp;
Sergey Kubushync74b2102007-08-10 20:26:18 +0200191
192 for (i = 0; i < len; i++) {
Cooper Jr., Franklin60219102017-04-20 10:25:42 -0500193 tmp = _poll_i2c_irq(i2c_base, I2C_STAT_RRDY | I2C_STAT_NACK |
Vitaly Andrianove8459dc2014-04-04 13:16:52 -0400194 I2C_STAT_ROVR);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200195
196 CHECK_NACK();
197
198 if (tmp & I2C_STAT_RRDY) {
Vitaly Andrianove8459dc2014-04-04 13:16:52 -0400199 buf[i] = REG(&(i2c_base->i2c_drr));
Sergey Kubushync74b2102007-08-10 20:26:18 +0200200 } else {
Vitaly Andrianove8459dc2014-04-04 13:16:52 -0400201 REG(&(i2c_base->i2c_con)) = 0;
202 return 1;
Sergey Kubushync74b2102007-08-10 20:26:18 +0200203 }
204 }
205
Cooper Jr., Franklin60219102017-04-20 10:25:42 -0500206 tmp = _poll_i2c_irq(i2c_base, I2C_STAT_SCD | I2C_STAT_NACK);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200207
208 CHECK_NACK();
209
210 if (!(tmp & I2C_STAT_SCD)) {
Vitaly Andrianove8459dc2014-04-04 13:16:52 -0400211 REG(&(i2c_base->i2c_con)) = 0;
212 return 1;
Sergey Kubushync74b2102007-08-10 20:26:18 +0200213 }
214
Cooper Jr., Franklin60219102017-04-20 10:25:42 -0500215 _flush_rx(i2c_base);
Vitaly Andrianove8459dc2014-04-04 13:16:52 -0400216 REG(&(i2c_base->i2c_stat)) = 0xffff;
217 REG(&(i2c_base->i2c_cnt)) = 0;
218 REG(&(i2c_base->i2c_con)) = 0;
Sergey Kubushync74b2102007-08-10 20:26:18 +0200219
Vitaly Andrianove8459dc2014-04-04 13:16:52 -0400220 return 0;
Sergey Kubushync74b2102007-08-10 20:26:18 +0200221}
222
Cooper Jr., Franklin60219102017-04-20 10:25:42 -0500223static int _davinci_i2c_write(struct i2c_regs *i2c_base, uint8_t chip,
224 uint32_t addr, int alen, uint8_t *buf, int len)
Sergey Kubushync74b2102007-08-10 20:26:18 +0200225{
Vitaly Andrianove8459dc2014-04-04 13:16:52 -0400226 uint32_t tmp;
Sergey Kubushync74b2102007-08-10 20:26:18 +0200227 int i;
228
229 if ((alen < 0) || (alen > 2)) {
Vitaly Andrianove8459dc2014-04-04 13:16:52 -0400230 printf("%s(): bogus address length %x\n", __func__, alen);
231 return 1;
Sergey Kubushync74b2102007-08-10 20:26:18 +0200232 }
233 if (len < 0) {
Vitaly Andrianove8459dc2014-04-04 13:16:52 -0400234 printf("%s(): bogus length %x\n", __func__, len);
235 return 1;
Sergey Kubushync74b2102007-08-10 20:26:18 +0200236 }
237
Cooper Jr., Franklin60219102017-04-20 10:25:42 -0500238 if (_wait_for_bus(i2c_base))
Vitaly Andrianove8459dc2014-04-04 13:16:52 -0400239 return 1;
Sergey Kubushync74b2102007-08-10 20:26:18 +0200240
241 /* Start address phase */
Vitaly Andrianove8459dc2014-04-04 13:16:52 -0400242 tmp = I2C_CON_EN | I2C_CON_MST | I2C_CON_STT |
243 I2C_CON_TRX | I2C_CON_STP;
244 REG(&(i2c_base->i2c_cnt)) = (alen == 0) ?
245 len & 0xffff : (len & 0xffff) + alen;
246 REG(&(i2c_base->i2c_sa)) = chip;
247 REG(&(i2c_base->i2c_con)) = tmp;
Sergey Kubushync74b2102007-08-10 20:26:18 +0200248
249 switch (alen) {
Vitaly Andrianove8459dc2014-04-04 13:16:52 -0400250 case 2:
251 /* Send address MSByte */
Cooper Jr., Franklin60219102017-04-20 10:25:42 -0500252 tmp = _poll_i2c_irq(i2c_base, I2C_STAT_XRDY | I2C_STAT_NACK);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200253
254 CHECK_NACK();
255
256 if (tmp & I2C_STAT_XRDY) {
Vitaly Andrianove8459dc2014-04-04 13:16:52 -0400257 REG(&(i2c_base->i2c_dxr)) = (addr >> 8) & 0xff;
Sergey Kubushync74b2102007-08-10 20:26:18 +0200258 } else {
Vitaly Andrianove8459dc2014-04-04 13:16:52 -0400259 REG(&(i2c_base->i2c_con)) = 0;
260 return 1;
261 }
262 /* No break, fall through */
263 case 1:
264 /* Send address LSByte */
Cooper Jr., Franklin60219102017-04-20 10:25:42 -0500265 tmp = _poll_i2c_irq(i2c_base, I2C_STAT_XRDY | I2C_STAT_NACK);
Vitaly Andrianove8459dc2014-04-04 13:16:52 -0400266
267 CHECK_NACK();
268
269 if (tmp & I2C_STAT_XRDY) {
270 REG(&(i2c_base->i2c_dxr)) = addr & 0xff;
271 } else {
272 REG(&(i2c_base->i2c_con)) = 0;
273 return 1;
Sergey Kubushync74b2102007-08-10 20:26:18 +0200274 }
275 }
276
Vitaly Andrianove8459dc2014-04-04 13:16:52 -0400277 for (i = 0; i < len; i++) {
Cooper Jr., Franklin60219102017-04-20 10:25:42 -0500278 tmp = _poll_i2c_irq(i2c_base, I2C_STAT_XRDY | I2C_STAT_NACK);
Vitaly Andrianove8459dc2014-04-04 13:16:52 -0400279
280 CHECK_NACK();
281
282 if (tmp & I2C_STAT_XRDY)
283 REG(&(i2c_base->i2c_dxr)) = buf[i];
284 else
285 return 1;
286 }
287
Cooper Jr., Franklin60219102017-04-20 10:25:42 -0500288 tmp = _poll_i2c_irq(i2c_base, I2C_STAT_SCD | I2C_STAT_NACK);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200289
290 CHECK_NACK();
291
292 if (!(tmp & I2C_STAT_SCD)) {
Vitaly Andrianove8459dc2014-04-04 13:16:52 -0400293 REG(&(i2c_base->i2c_con)) = 0;
294 return 1;
Sergey Kubushync74b2102007-08-10 20:26:18 +0200295 }
296
Cooper Jr., Franklin60219102017-04-20 10:25:42 -0500297 _flush_rx(i2c_base);
Vitaly Andrianove8459dc2014-04-04 13:16:52 -0400298 REG(&(i2c_base->i2c_stat)) = 0xffff;
299 REG(&(i2c_base->i2c_cnt)) = 0;
300 REG(&(i2c_base->i2c_con)) = 0;
Sergey Kubushync74b2102007-08-10 20:26:18 +0200301
Vitaly Andrianove8459dc2014-04-04 13:16:52 -0400302 return 0;
Sergey Kubushync74b2102007-08-10 20:26:18 +0200303}
Vitaly Andrianove8459dc2014-04-04 13:16:52 -0400304
Cooper Jr., Franklin60219102017-04-20 10:25:42 -0500305static int _davinci_i2c_probe_chip(struct i2c_regs *i2c_base, uint8_t chip)
306{
307 int rc = 1;
308
309 if (chip == REG(&(i2c_base->i2c_oa)))
310 return rc;
311
312 REG(&(i2c_base->i2c_con)) = 0;
313 if (_wait_for_bus(i2c_base))
314 return 1;
315
316 /* try to read one byte from current (or only) address */
317 REG(&(i2c_base->i2c_cnt)) = 1;
318 REG(&(i2c_base->i2c_sa)) = chip;
319 REG(&(i2c_base->i2c_con)) = (I2C_CON_EN | I2C_CON_MST | I2C_CON_STT |
320 I2C_CON_STP);
321 udelay(50000);
322
323 if (!(REG(&(i2c_base->i2c_stat)) & I2C_STAT_NACK)) {
324 rc = 0;
325 _flush_rx(i2c_base);
326 REG(&(i2c_base->i2c_stat)) = 0xffff;
327 } else {
328 REG(&(i2c_base->i2c_stat)) = 0xffff;
329 REG(&(i2c_base->i2c_con)) |= I2C_CON_STP;
330 udelay(20000);
331 if (_wait_for_bus(i2c_base))
332 return 1;
333 }
334
335 _flush_rx(i2c_base);
336 REG(&(i2c_base->i2c_stat)) = 0xffff;
337 REG(&(i2c_base->i2c_cnt)) = 0;
338 return rc;
339}
340
Cooper Jr., Franklin70f6f942017-04-20 10:25:43 -0500341#ifndef CONFIG_DM_I2C
Vitaly Andrianove8459dc2014-04-04 13:16:52 -0400342static struct i2c_regs *davinci_get_base(struct i2c_adapter *adap)
343{
344 switch (adap->hwadapnr) {
Adam Fordac1d8ac2017-08-11 06:39:13 -0500345#if CONFIG_SYS_I2C_BUS_MAX >= 3
Vitaly Andrianove8459dc2014-04-04 13:16:52 -0400346 case 2:
347 return (struct i2c_regs *)I2C2_BASE;
348#endif
Adam Fordac1d8ac2017-08-11 06:39:13 -0500349#if CONFIG_SYS_I2C_BUS_MAX >= 2
Vitaly Andrianove8459dc2014-04-04 13:16:52 -0400350 case 1:
351 return (struct i2c_regs *)I2C1_BASE;
352#endif
353 case 0:
354 return (struct i2c_regs *)I2C_BASE;
355
356 default:
357 printf("wrong hwadapnr: %d\n", adap->hwadapnr);
358 }
359
360 return NULL;
361}
362
Cooper Jr., Franklin60219102017-04-20 10:25:42 -0500363static uint davinci_i2c_setspeed(struct i2c_adapter *adap, uint speed)
364{
365 struct i2c_regs *i2c_base = davinci_get_base(adap);
366 uint ret;
367
368 adap->speed = speed;
369 ret = _davinci_i2c_setspeed(i2c_base, speed);
370
371 return ret;
372}
373
374static void davinci_i2c_init(struct i2c_adapter *adap, int speed,
375 int slaveadd)
376{
377 struct i2c_regs *i2c_base = davinci_get_base(adap);
378
379 adap->speed = speed;
380 _davinci_i2c_init(i2c_base, speed, slaveadd);
381
382 return;
383}
384
385static int davinci_i2c_read(struct i2c_adapter *adap, uint8_t chip,
386 uint32_t addr, int alen, uint8_t *buf, int len)
387{
388 struct i2c_regs *i2c_base = davinci_get_base(adap);
389 return _davinci_i2c_read(i2c_base, chip, addr, alen, buf, len);
390}
391
392static int davinci_i2c_write(struct i2c_adapter *adap, uint8_t chip,
393 uint32_t addr, int alen, uint8_t *buf, int len)
394{
395 struct i2c_regs *i2c_base = davinci_get_base(adap);
396
397 return _davinci_i2c_write(i2c_base, chip, addr, alen, buf, len);
398}
399
400static int davinci_i2c_probe_chip(struct i2c_adapter *adap, uint8_t chip)
401{
402 struct i2c_regs *i2c_base = davinci_get_base(adap);
403
404 return _davinci_i2c_probe_chip(i2c_base, chip);
405}
406
407U_BOOT_I2C_ADAP_COMPLETE(davinci_0, davinci_i2c_init, davinci_i2c_probe_chip,
Vitaly Andrianove8459dc2014-04-04 13:16:52 -0400408 davinci_i2c_read, davinci_i2c_write,
409 davinci_i2c_setspeed,
410 CONFIG_SYS_DAVINCI_I2C_SPEED,
411 CONFIG_SYS_DAVINCI_I2C_SLAVE,
412 0)
413
Adam Fordac1d8ac2017-08-11 06:39:13 -0500414#if CONFIG_SYS_I2C_BUS_MAX >= 2
Cooper Jr., Franklin60219102017-04-20 10:25:42 -0500415U_BOOT_I2C_ADAP_COMPLETE(davinci_1, davinci_i2c_init, davinci_i2c_probe_chip,
Vitaly Andrianove8459dc2014-04-04 13:16:52 -0400416 davinci_i2c_read, davinci_i2c_write,
417 davinci_i2c_setspeed,
418 CONFIG_SYS_DAVINCI_I2C_SPEED1,
419 CONFIG_SYS_DAVINCI_I2C_SLAVE1,
420 1)
421#endif
422
Adam Fordac1d8ac2017-08-11 06:39:13 -0500423#if CONFIG_SYS_I2C_BUS_MAX >= 3
Cooper Jr., Franklin60219102017-04-20 10:25:42 -0500424U_BOOT_I2C_ADAP_COMPLETE(davinci_2, davinci_i2c_init, davinci_i2c_probe_chip,
Vitaly Andrianove8459dc2014-04-04 13:16:52 -0400425 davinci_i2c_read, davinci_i2c_write,
426 davinci_i2c_setspeed,
427 CONFIG_SYS_DAVINCI_I2C_SPEED2,
428 CONFIG_SYS_DAVINCI_I2C_SLAVE2,
429 2)
430#endif
Cooper Jr., Franklin70f6f942017-04-20 10:25:43 -0500431
432#else /* CONFIG_DM_I2C */
433
434static int davinci_i2c_xfer(struct udevice *bus, struct i2c_msg *msg,
435 int nmsgs)
436{
437 struct i2c_bus *i2c_bus = dev_get_priv(bus);
438 int ret;
439
440 debug("i2c_xfer: %d messages\n", nmsgs);
441 for (; nmsgs > 0; nmsgs--, msg++) {
442 debug("i2c_xfer: chip=0x%x, len=0x%x\n", msg->addr, msg->len);
443 if (msg->flags & I2C_M_RD) {
444 ret = _davinci_i2c_read(i2c_bus->regs, msg->addr,
445 0, 0, msg->buf, msg->len);
446 } else {
447 ret = _davinci_i2c_write(i2c_bus->regs, msg->addr,
448 0, 0, msg->buf, msg->len);
449 }
450 if (ret) {
451 debug("i2c_write: error sending\n");
452 return -EREMOTEIO;
453 }
454 }
455
456 return ret;
457}
458
459static int davinci_i2c_set_speed(struct udevice *dev, uint speed)
460{
461 struct i2c_bus *i2c_bus = dev_get_priv(dev);
462
463 i2c_bus->speed = speed;
464 return _davinci_i2c_setspeed(i2c_bus->regs, speed);
465}
466
467static int davinci_i2c_probe(struct udevice *dev)
468{
469 struct i2c_bus *i2c_bus = dev_get_priv(dev);
470
471 i2c_bus->id = dev->seq;
Simon Glassa821c4a2017-05-17 17:18:05 -0600472 i2c_bus->regs = (struct i2c_regs *)devfdt_get_addr(dev);
Cooper Jr., Franklin70f6f942017-04-20 10:25:43 -0500473
474 i2c_bus->speed = 100000;
475 _davinci_i2c_init(i2c_bus->regs, i2c_bus->speed, 0);
476
477 return 0;
478}
479
480static int davinci_i2c_probe_chip(struct udevice *bus, uint chip_addr,
481 uint chip_flags)
482{
483 struct i2c_bus *i2c_bus = dev_get_priv(bus);
484
485 return _davinci_i2c_probe_chip(i2c_bus->regs, chip_addr);
486}
487
488static const struct dm_i2c_ops davinci_i2c_ops = {
489 .xfer = davinci_i2c_xfer,
490 .probe_chip = davinci_i2c_probe_chip,
491 .set_bus_speed = davinci_i2c_set_speed,
492};
493
494static const struct udevice_id davinci_i2c_ids[] = {
495 { .compatible = "ti,davinci-i2c"},
496 { .compatible = "ti,keystone-i2c"},
497 { }
498};
499
500U_BOOT_DRIVER(i2c_davinci) = {
501 .name = "i2c_davinci",
502 .id = UCLASS_I2C,
503 .of_match = davinci_i2c_ids,
504 .probe = davinci_i2c_probe,
505 .priv_auto_alloc_size = sizeof(struct i2c_bus),
506 .ops = &davinci_i2c_ops,
507};
508
509#endif /* CONFIG_DM_I2C */