1 // SPDX-License-Identifier: GPL-2.0+
3 * TI DaVinci (TMS320DM644x) I2C driver.
5 * (C) Copyright 2012-2014
6 * Texas Instruments Incorporated, <www.ti.com>
8 * --------------------------------------------------------
10 * NOTE: This driver should be converted to driver model before June 2017.
11 * Please see doc/driver-model/i2c-howto.rst for instructions.
18 #include <asm/arch/hardware.h>
19 #include <asm/arch/i2c_defs.h>
21 #include <linux/delay.h>
22 #include "davinci_i2c.h"
24 /* Information about i2c controller */
28 struct i2c_regs *regs;
31 #define CHECK_NACK() \
33 if (tmp & (I2C_TIMEOUT | I2C_STAT_NACK)) {\
34 REG(&(i2c_base->i2c_con)) = 0;\
39 static int _wait_for_bus(struct i2c_regs *i2c_base)
43 REG(&(i2c_base->i2c_stat)) = 0xffff;
45 for (timeout = 0; timeout < 10; timeout++) {
46 stat = REG(&(i2c_base->i2c_stat));
47 if (!((stat) & I2C_STAT_BB)) {
48 REG(&(i2c_base->i2c_stat)) = 0xffff;
52 REG(&(i2c_base->i2c_stat)) = stat;
56 REG(&(i2c_base->i2c_stat)) = 0xffff;
60 static int _poll_i2c_irq(struct i2c_regs *i2c_base, int mask)
64 for (timeout = 0; timeout < 10; timeout++) {
66 stat = REG(&(i2c_base->i2c_stat));
71 REG(&(i2c_base->i2c_stat)) = 0xffff;
72 return stat | I2C_TIMEOUT;
75 static void _flush_rx(struct i2c_regs *i2c_base)
78 if (!(REG(&(i2c_base->i2c_stat)) & I2C_STAT_RRDY))
81 REG(&(i2c_base->i2c_drr));
82 REG(&(i2c_base->i2c_stat)) = I2C_STAT_RRDY;
87 static uint _davinci_i2c_setspeed(struct i2c_regs *i2c_base,
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));
102 static void _davinci_i2c_init(struct i2c_regs *i2c_base,
103 uint speed, int slaveadd)
105 if (REG(&(i2c_base->i2c_con)) & I2C_CON_EN) {
106 REG(&(i2c_base->i2c_con)) = 0;
110 _davinci_i2c_setspeed(i2c_base, speed);
112 REG(&(i2c_base->i2c_oa)) = slaveadd;
113 REG(&(i2c_base->i2c_cnt)) = 0;
115 /* Interrupts must be enabled or I2C module won't work */
116 REG(&(i2c_base->i2c_ie)) = I2C_IE_SCD_IE | I2C_IE_XRDY_IE |
117 I2C_IE_RRDY_IE | I2C_IE_ARDY_IE | I2C_IE_NACK_IE;
119 /* Now enable I2C controller (get it out of reset) */
120 REG(&(i2c_base->i2c_con)) = I2C_CON_EN;
125 static int _davinci_i2c_read(struct i2c_regs *i2c_base, uint8_t chip,
126 uint32_t addr, int alen, uint8_t *buf, int len)
131 if ((alen < 0) || (alen > 2)) {
132 printf("%s(): bogus address length %x\n", __func__, alen);
136 if (_wait_for_bus(i2c_base))
140 /* Start address phase */
141 tmp = I2C_CON_EN | I2C_CON_MST | I2C_CON_STT | I2C_CON_TRX;
142 REG(&(i2c_base->i2c_cnt)) = alen;
143 REG(&(i2c_base->i2c_sa)) = chip;
144 REG(&(i2c_base->i2c_con)) = tmp;
146 tmp = _poll_i2c_irq(i2c_base, I2C_STAT_XRDY | I2C_STAT_NACK);
152 /* Send address MSByte */
153 if (tmp & I2C_STAT_XRDY) {
154 REG(&(i2c_base->i2c_dxr)) = (addr >> 8) & 0xff;
156 REG(&(i2c_base->i2c_con)) = 0;
160 tmp = _poll_i2c_irq(i2c_base,
161 I2C_STAT_XRDY | I2C_STAT_NACK);
164 /* No break, fall through */
166 /* Send address LSByte */
167 if (tmp & I2C_STAT_XRDY) {
168 REG(&(i2c_base->i2c_dxr)) = addr & 0xff;
170 REG(&(i2c_base->i2c_con)) = 0;
174 tmp = _poll_i2c_irq(i2c_base, I2C_STAT_XRDY |
175 I2C_STAT_NACK | I2C_STAT_ARDY);
179 if (!(tmp & I2C_STAT_ARDY)) {
180 REG(&(i2c_base->i2c_con)) = 0;
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;
188 REG(&(i2c_base->i2c_cnt)) = len & 0xffff;
189 REG(&(i2c_base->i2c_sa)) = chip;
190 REG(&(i2c_base->i2c_con)) = tmp;
192 for (i = 0; i < len; i++) {
193 tmp = _poll_i2c_irq(i2c_base, I2C_STAT_RRDY | I2C_STAT_NACK |
198 if (tmp & I2C_STAT_RRDY) {
199 buf[i] = REG(&(i2c_base->i2c_drr));
201 REG(&(i2c_base->i2c_con)) = 0;
206 tmp = _poll_i2c_irq(i2c_base, I2C_STAT_SCD | I2C_STAT_NACK);
210 if (!(tmp & I2C_STAT_SCD)) {
211 REG(&(i2c_base->i2c_con)) = 0;
216 REG(&(i2c_base->i2c_stat)) = 0xffff;
217 REG(&(i2c_base->i2c_cnt)) = 0;
218 REG(&(i2c_base->i2c_con)) = 0;
223 static int _davinci_i2c_write(struct i2c_regs *i2c_base, uint8_t chip,
224 uint32_t addr, int alen, uint8_t *buf, int len)
229 if ((alen < 0) || (alen > 2)) {
230 printf("%s(): bogus address length %x\n", __func__, alen);
234 printf("%s(): bogus length %x\n", __func__, len);
238 if (_wait_for_bus(i2c_base))
241 /* Start address phase */
242 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;
251 /* Send address MSByte */
252 tmp = _poll_i2c_irq(i2c_base, I2C_STAT_XRDY | I2C_STAT_NACK);
256 if (tmp & I2C_STAT_XRDY) {
257 REG(&(i2c_base->i2c_dxr)) = (addr >> 8) & 0xff;
259 REG(&(i2c_base->i2c_con)) = 0;
262 /* No break, fall through */
264 /* Send address LSByte */
265 tmp = _poll_i2c_irq(i2c_base, I2C_STAT_XRDY | I2C_STAT_NACK);
269 if (tmp & I2C_STAT_XRDY) {
270 REG(&(i2c_base->i2c_dxr)) = addr & 0xff;
272 REG(&(i2c_base->i2c_con)) = 0;
277 for (i = 0; i < len; i++) {
278 tmp = _poll_i2c_irq(i2c_base, I2C_STAT_XRDY | I2C_STAT_NACK);
282 if (tmp & I2C_STAT_XRDY)
283 REG(&(i2c_base->i2c_dxr)) = buf[i];
288 tmp = _poll_i2c_irq(i2c_base, I2C_STAT_SCD | I2C_STAT_NACK);
292 if (!(tmp & I2C_STAT_SCD)) {
293 REG(&(i2c_base->i2c_con)) = 0;
298 REG(&(i2c_base->i2c_stat)) = 0xffff;
299 REG(&(i2c_base->i2c_cnt)) = 0;
300 REG(&(i2c_base->i2c_con)) = 0;
305 static int _davinci_i2c_probe_chip(struct i2c_regs *i2c_base, uint8_t chip)
309 if (chip == REG(&(i2c_base->i2c_oa)))
312 REG(&(i2c_base->i2c_con)) = 0;
313 if (_wait_for_bus(i2c_base))
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 |
323 if (!(REG(&(i2c_base->i2c_stat)) & I2C_STAT_NACK)) {
326 REG(&(i2c_base->i2c_stat)) = 0xffff;
328 REG(&(i2c_base->i2c_stat)) = 0xffff;
329 REG(&(i2c_base->i2c_con)) |= I2C_CON_STP;
331 if (_wait_for_bus(i2c_base))
336 REG(&(i2c_base->i2c_stat)) = 0xffff;
337 REG(&(i2c_base->i2c_cnt)) = 0;
341 static int davinci_i2c_xfer(struct udevice *bus, struct i2c_msg *msg,
344 struct i2c_bus *i2c_bus = dev_get_priv(bus);
347 debug("i2c_xfer: %d messages\n", nmsgs);
348 for (; nmsgs > 0; nmsgs--, msg++) {
349 debug("i2c_xfer: chip=0x%x, len=0x%x\n", msg->addr, msg->len);
350 if (msg->flags & I2C_M_RD) {
351 ret = _davinci_i2c_read(i2c_bus->regs, msg->addr,
352 0, 0, msg->buf, msg->len);
354 ret = _davinci_i2c_write(i2c_bus->regs, msg->addr,
355 0, 0, msg->buf, msg->len);
358 debug("i2c_write: error sending\n");
366 static int davinci_i2c_set_speed(struct udevice *dev, uint speed)
368 struct i2c_bus *i2c_bus = dev_get_priv(dev);
370 i2c_bus->speed = speed;
371 return _davinci_i2c_setspeed(i2c_bus->regs, speed);
374 static int davinci_i2c_probe(struct udevice *dev)
376 struct i2c_bus *i2c_bus = dev_get_priv(dev);
378 i2c_bus->id = dev_seq(dev);
379 i2c_bus->regs = dev_read_addr_ptr(dev);
381 i2c_bus->speed = 100000;
382 _davinci_i2c_init(i2c_bus->regs, i2c_bus->speed, 0);
387 static int davinci_i2c_probe_chip(struct udevice *bus, uint chip_addr,
390 struct i2c_bus *i2c_bus = dev_get_priv(bus);
392 return _davinci_i2c_probe_chip(i2c_bus->regs, chip_addr);
395 static const struct dm_i2c_ops davinci_i2c_ops = {
396 .xfer = davinci_i2c_xfer,
397 .probe_chip = davinci_i2c_probe_chip,
398 .set_bus_speed = davinci_i2c_set_speed,
401 static const struct udevice_id davinci_i2c_ids[] = {
402 { .compatible = "ti,davinci-i2c"},
403 { .compatible = "ti,keystone-i2c"},
407 U_BOOT_DRIVER(i2c_davinci) = {
408 .name = "i2c_davinci",
410 .of_match = davinci_i2c_ids,
411 .probe = davinci_i2c_probe,
412 .priv_auto = sizeof(struct i2c_bus),
413 .ops = &davinci_i2c_ops,