Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 2 | /* |
| 3 | * TI DaVinci (TMS320DM644x) I2C driver. |
| 4 | * |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 5 | * (C) Copyright 2012-2014 |
| 6 | * Texas Instruments Incorporated, <www.ti.com> |
| 7 | * (C) Copyright 2007 Sergey Kubushyn <ksi@koi8.net> |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 8 | * -------------------------------------------------------- |
| 9 | * |
Simon Glass | 2852709 | 2016-11-23 06:34:44 -0700 | [diff] [blame] | 10 | * NOTE: This driver should be converted to driver model before June 2017. |
Heinrich Schuchardt | 2799a69 | 2020-02-25 21:35:39 +0100 | [diff] [blame] | 11 | * Please see doc/driver-model/i2c-howto.rst for instructions. |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 12 | */ |
| 13 | |
| 14 | #include <common.h> |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 15 | #include <i2c.h> |
Cooper Jr., Franklin | 70f6f94 | 2017-04-20 10:25:43 -0500 | [diff] [blame] | 16 | #include <dm.h> |
Simon Glass | f7ae49f | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 17 | #include <log.h> |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 18 | #include <asm/arch/hardware.h> |
| 19 | #include <asm/arch/i2c_defs.h> |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 20 | #include <asm/io.h> |
Simon Glass | c05ed00 | 2020-05-10 11:40:11 -0600 | [diff] [blame] | 21 | #include <linux/delay.h> |
Karicheri, Muralidharan | 356d15e | 2014-04-04 13:16:51 -0400 | [diff] [blame] | 22 | #include "davinci_i2c.h" |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 23 | |
Cooper Jr., Franklin | 70f6f94 | 2017-04-20 10:25:43 -0500 | [diff] [blame] | 24 | /* Information about i2c controller */ |
| 25 | struct i2c_bus { |
| 26 | int id; |
| 27 | uint speed; |
| 28 | struct i2c_regs *regs; |
| 29 | }; |
Cooper Jr., Franklin | 70f6f94 | 2017-04-20 10:25:43 -0500 | [diff] [blame] | 30 | |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 31 | #define CHECK_NACK() \ |
| 32 | do {\ |
| 33 | if (tmp & (I2C_TIMEOUT | I2C_STAT_NACK)) {\ |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 34 | REG(&(i2c_base->i2c_con)) = 0;\ |
| 35 | return 1;\ |
| 36 | } \ |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 37 | } while (0) |
| 38 | |
Cooper Jr., Franklin | 6021910 | 2017-04-20 10:25:42 -0500 | [diff] [blame] | 39 | static int _wait_for_bus(struct i2c_regs *i2c_base) |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 40 | { |
| 41 | int stat, timeout; |
| 42 | |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 43 | REG(&(i2c_base->i2c_stat)) = 0xffff; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 44 | |
| 45 | for (timeout = 0; timeout < 10; timeout++) { |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 46 | stat = REG(&(i2c_base->i2c_stat)); |
| 47 | if (!((stat) & I2C_STAT_BB)) { |
| 48 | REG(&(i2c_base->i2c_stat)) = 0xffff; |
| 49 | return 0; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 50 | } |
| 51 | |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 52 | REG(&(i2c_base->i2c_stat)) = stat; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 53 | udelay(50000); |
| 54 | } |
| 55 | |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 56 | REG(&(i2c_base->i2c_stat)) = 0xffff; |
| 57 | return 1; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 58 | } |
| 59 | |
Cooper Jr., Franklin | 6021910 | 2017-04-20 10:25:42 -0500 | [diff] [blame] | 60 | static int _poll_i2c_irq(struct i2c_regs *i2c_base, int mask) |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 61 | { |
| 62 | int stat, timeout; |
| 63 | |
| 64 | for (timeout = 0; timeout < 10; timeout++) { |
| 65 | udelay(1000); |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 66 | stat = REG(&(i2c_base->i2c_stat)); |
| 67 | if (stat & mask) |
| 68 | return stat; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 69 | } |
| 70 | |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 71 | REG(&(i2c_base->i2c_stat)) = 0xffff; |
| 72 | return stat | I2C_TIMEOUT; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 73 | } |
| 74 | |
Cooper Jr., Franklin | 6021910 | 2017-04-20 10:25:42 -0500 | [diff] [blame] | 75 | static void _flush_rx(struct i2c_regs *i2c_base) |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 76 | { |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 77 | while (1) { |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 78 | if (!(REG(&(i2c_base->i2c_stat)) & I2C_STAT_RRDY)) |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 79 | break; |
| 80 | |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 81 | REG(&(i2c_base->i2c_drr)); |
| 82 | REG(&(i2c_base->i2c_stat)) = I2C_STAT_RRDY; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 83 | udelay(1000); |
| 84 | } |
| 85 | } |
| 86 | |
Cooper Jr., Franklin | 6021910 | 2017-04-20 10:25:42 -0500 | [diff] [blame] | 87 | static uint _davinci_i2c_setspeed(struct i2c_regs *i2c_base, |
| 88 | uint speed) |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 89 | { |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 90 | uint32_t div, psc; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 91 | |
| 92 | psc = 2; |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 93 | /* SCLL + SCLH */ |
Tom Rini | 65cc0e2 | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 94 | div = (CFG_SYS_HZ_CLOCK / ((psc + 1) * speed)) - 10; |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 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 Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 98 | |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 99 | return 0; |
| 100 | } |
| 101 | |
Cooper Jr., Franklin | 6021910 | 2017-04-20 10:25:42 -0500 | [diff] [blame] | 102 | static void _davinci_i2c_init(struct i2c_regs *i2c_base, |
| 103 | uint speed, int slaveadd) |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 104 | { |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 105 | if (REG(&(i2c_base->i2c_con)) & I2C_CON_EN) { |
| 106 | REG(&(i2c_base->i2c_con)) = 0; |
| 107 | udelay(50000); |
| 108 | } |
| 109 | |
Cooper Jr., Franklin | 6021910 | 2017-04-20 10:25:42 -0500 | [diff] [blame] | 110 | _davinci_i2c_setspeed(i2c_base, speed); |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 111 | |
| 112 | REG(&(i2c_base->i2c_oa)) = slaveadd; |
| 113 | REG(&(i2c_base->i2c_cnt)) = 0; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 114 | |
| 115 | /* Interrupts must be enabled or I2C module won't work */ |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 116 | REG(&(i2c_base->i2c_ie)) = I2C_IE_SCD_IE | I2C_IE_XRDY_IE | |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 117 | I2C_IE_RRDY_IE | I2C_IE_ARDY_IE | I2C_IE_NACK_IE; |
| 118 | |
| 119 | /* Now enable I2C controller (get it out of reset) */ |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 120 | REG(&(i2c_base->i2c_con)) = I2C_CON_EN; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 121 | |
| 122 | udelay(1000); |
| 123 | } |
| 124 | |
Cooper Jr., Franklin | 6021910 | 2017-04-20 10:25:42 -0500 | [diff] [blame] | 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) |
Heiko Schocher | 49d6da6 | 2011-09-14 19:25:12 +0000 | [diff] [blame] | 127 | { |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 128 | uint32_t tmp; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 129 | int i; |
| 130 | |
| 131 | if ((alen < 0) || (alen > 2)) { |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 132 | printf("%s(): bogus address length %x\n", __func__, alen); |
| 133 | return 1; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 134 | } |
| 135 | |
Cooper Jr., Franklin | 6021910 | 2017-04-20 10:25:42 -0500 | [diff] [blame] | 136 | if (_wait_for_bus(i2c_base)) |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 137 | return 1; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 138 | |
| 139 | if (alen != 0) { |
| 140 | /* Start address phase */ |
| 141 | tmp = I2C_CON_EN | I2C_CON_MST | I2C_CON_STT | I2C_CON_TRX; |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 142 | REG(&(i2c_base->i2c_cnt)) = alen; |
| 143 | REG(&(i2c_base->i2c_sa)) = chip; |
| 144 | REG(&(i2c_base->i2c_con)) = tmp; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 145 | |
Cooper Jr., Franklin | 6021910 | 2017-04-20 10:25:42 -0500 | [diff] [blame] | 146 | tmp = _poll_i2c_irq(i2c_base, I2C_STAT_XRDY | I2C_STAT_NACK); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 147 | |
| 148 | CHECK_NACK(); |
| 149 | |
| 150 | switch (alen) { |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 151 | 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 Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 159 | |
Cooper Jr., Franklin | 6021910 | 2017-04-20 10:25:42 -0500 | [diff] [blame] | 160 | tmp = _poll_i2c_irq(i2c_base, |
| 161 | I2C_STAT_XRDY | I2C_STAT_NACK); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 162 | |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 163 | 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 Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 173 | |
Cooper Jr., Franklin | 6021910 | 2017-04-20 10:25:42 -0500 | [diff] [blame] | 174 | tmp = _poll_i2c_irq(i2c_base, I2C_STAT_XRDY | |
| 175 | I2C_STAT_NACK | I2C_STAT_ARDY); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 176 | |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 177 | CHECK_NACK(); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 178 | |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 179 | if (!(tmp & I2C_STAT_ARDY)) { |
| 180 | REG(&(i2c_base->i2c_con)) = 0; |
| 181 | return 1; |
| 182 | } |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 183 | } |
| 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 Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 188 | REG(&(i2c_base->i2c_cnt)) = len & 0xffff; |
| 189 | REG(&(i2c_base->i2c_sa)) = chip; |
| 190 | REG(&(i2c_base->i2c_con)) = tmp; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 191 | |
| 192 | for (i = 0; i < len; i++) { |
Cooper Jr., Franklin | 6021910 | 2017-04-20 10:25:42 -0500 | [diff] [blame] | 193 | tmp = _poll_i2c_irq(i2c_base, I2C_STAT_RRDY | I2C_STAT_NACK | |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 194 | I2C_STAT_ROVR); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 195 | |
| 196 | CHECK_NACK(); |
| 197 | |
| 198 | if (tmp & I2C_STAT_RRDY) { |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 199 | buf[i] = REG(&(i2c_base->i2c_drr)); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 200 | } else { |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 201 | REG(&(i2c_base->i2c_con)) = 0; |
| 202 | return 1; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 203 | } |
| 204 | } |
| 205 | |
Cooper Jr., Franklin | 6021910 | 2017-04-20 10:25:42 -0500 | [diff] [blame] | 206 | tmp = _poll_i2c_irq(i2c_base, I2C_STAT_SCD | I2C_STAT_NACK); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 207 | |
| 208 | CHECK_NACK(); |
| 209 | |
| 210 | if (!(tmp & I2C_STAT_SCD)) { |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 211 | REG(&(i2c_base->i2c_con)) = 0; |
| 212 | return 1; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 213 | } |
| 214 | |
Cooper Jr., Franklin | 6021910 | 2017-04-20 10:25:42 -0500 | [diff] [blame] | 215 | _flush_rx(i2c_base); |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 216 | REG(&(i2c_base->i2c_stat)) = 0xffff; |
| 217 | REG(&(i2c_base->i2c_cnt)) = 0; |
| 218 | REG(&(i2c_base->i2c_con)) = 0; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 219 | |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 220 | return 0; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 221 | } |
| 222 | |
Cooper Jr., Franklin | 6021910 | 2017-04-20 10:25:42 -0500 | [diff] [blame] | 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) |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 225 | { |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 226 | uint32_t tmp; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 227 | int i; |
| 228 | |
| 229 | if ((alen < 0) || (alen > 2)) { |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 230 | printf("%s(): bogus address length %x\n", __func__, alen); |
| 231 | return 1; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 232 | } |
| 233 | if (len < 0) { |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 234 | printf("%s(): bogus length %x\n", __func__, len); |
| 235 | return 1; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 236 | } |
| 237 | |
Cooper Jr., Franklin | 6021910 | 2017-04-20 10:25:42 -0500 | [diff] [blame] | 238 | if (_wait_for_bus(i2c_base)) |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 239 | return 1; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 240 | |
| 241 | /* Start address phase */ |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 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; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 248 | |
| 249 | switch (alen) { |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 250 | case 2: |
| 251 | /* Send address MSByte */ |
Cooper Jr., Franklin | 6021910 | 2017-04-20 10:25:42 -0500 | [diff] [blame] | 252 | tmp = _poll_i2c_irq(i2c_base, I2C_STAT_XRDY | I2C_STAT_NACK); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 253 | |
| 254 | CHECK_NACK(); |
| 255 | |
| 256 | if (tmp & I2C_STAT_XRDY) { |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 257 | REG(&(i2c_base->i2c_dxr)) = (addr >> 8) & 0xff; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 258 | } else { |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 259 | REG(&(i2c_base->i2c_con)) = 0; |
| 260 | return 1; |
| 261 | } |
| 262 | /* No break, fall through */ |
| 263 | case 1: |
| 264 | /* Send address LSByte */ |
Cooper Jr., Franklin | 6021910 | 2017-04-20 10:25:42 -0500 | [diff] [blame] | 265 | tmp = _poll_i2c_irq(i2c_base, I2C_STAT_XRDY | I2C_STAT_NACK); |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 266 | |
| 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 Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 274 | } |
| 275 | } |
| 276 | |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 277 | for (i = 0; i < len; i++) { |
Cooper Jr., Franklin | 6021910 | 2017-04-20 10:25:42 -0500 | [diff] [blame] | 278 | tmp = _poll_i2c_irq(i2c_base, I2C_STAT_XRDY | I2C_STAT_NACK); |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 279 | |
| 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., Franklin | 6021910 | 2017-04-20 10:25:42 -0500 | [diff] [blame] | 288 | tmp = _poll_i2c_irq(i2c_base, I2C_STAT_SCD | I2C_STAT_NACK); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 289 | |
| 290 | CHECK_NACK(); |
| 291 | |
| 292 | if (!(tmp & I2C_STAT_SCD)) { |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 293 | REG(&(i2c_base->i2c_con)) = 0; |
| 294 | return 1; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 295 | } |
| 296 | |
Cooper Jr., Franklin | 6021910 | 2017-04-20 10:25:42 -0500 | [diff] [blame] | 297 | _flush_rx(i2c_base); |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 298 | REG(&(i2c_base->i2c_stat)) = 0xffff; |
| 299 | REG(&(i2c_base->i2c_cnt)) = 0; |
| 300 | REG(&(i2c_base->i2c_con)) = 0; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 301 | |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 302 | return 0; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 303 | } |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 304 | |
Cooper Jr., Franklin | 6021910 | 2017-04-20 10:25:42 -0500 | [diff] [blame] | 305 | static 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., Franklin | 70f6f94 | 2017-04-20 10:25:43 -0500 | [diff] [blame] | 341 | static int davinci_i2c_xfer(struct udevice *bus, struct i2c_msg *msg, |
| 342 | int nmsgs) |
| 343 | { |
| 344 | struct i2c_bus *i2c_bus = dev_get_priv(bus); |
| 345 | int ret; |
| 346 | |
| 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); |
| 353 | } else { |
| 354 | ret = _davinci_i2c_write(i2c_bus->regs, msg->addr, |
| 355 | 0, 0, msg->buf, msg->len); |
| 356 | } |
| 357 | if (ret) { |
| 358 | debug("i2c_write: error sending\n"); |
| 359 | return -EREMOTEIO; |
| 360 | } |
| 361 | } |
| 362 | |
| 363 | return ret; |
| 364 | } |
| 365 | |
| 366 | static int davinci_i2c_set_speed(struct udevice *dev, uint speed) |
| 367 | { |
| 368 | struct i2c_bus *i2c_bus = dev_get_priv(dev); |
| 369 | |
| 370 | i2c_bus->speed = speed; |
| 371 | return _davinci_i2c_setspeed(i2c_bus->regs, speed); |
| 372 | } |
| 373 | |
| 374 | static int davinci_i2c_probe(struct udevice *dev) |
| 375 | { |
| 376 | struct i2c_bus *i2c_bus = dev_get_priv(dev); |
| 377 | |
Simon Glass | 8b85dfc | 2020-12-16 21:20:07 -0700 | [diff] [blame] | 378 | i2c_bus->id = dev_seq(dev); |
Masahiro Yamada | 8613c8d | 2020-07-17 14:36:46 +0900 | [diff] [blame] | 379 | i2c_bus->regs = dev_read_addr_ptr(dev); |
Cooper Jr., Franklin | 70f6f94 | 2017-04-20 10:25:43 -0500 | [diff] [blame] | 380 | |
| 381 | i2c_bus->speed = 100000; |
| 382 | _davinci_i2c_init(i2c_bus->regs, i2c_bus->speed, 0); |
| 383 | |
| 384 | return 0; |
| 385 | } |
| 386 | |
| 387 | static int davinci_i2c_probe_chip(struct udevice *bus, uint chip_addr, |
| 388 | uint chip_flags) |
| 389 | { |
| 390 | struct i2c_bus *i2c_bus = dev_get_priv(bus); |
| 391 | |
| 392 | return _davinci_i2c_probe_chip(i2c_bus->regs, chip_addr); |
| 393 | } |
| 394 | |
| 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, |
| 399 | }; |
| 400 | |
| 401 | static const struct udevice_id davinci_i2c_ids[] = { |
| 402 | { .compatible = "ti,davinci-i2c"}, |
| 403 | { .compatible = "ti,keystone-i2c"}, |
| 404 | { } |
| 405 | }; |
| 406 | |
| 407 | U_BOOT_DRIVER(i2c_davinci) = { |
| 408 | .name = "i2c_davinci", |
| 409 | .id = UCLASS_I2C, |
| 410 | .of_match = davinci_i2c_ids, |
| 411 | .probe = davinci_i2c_probe, |
Simon Glass | 41575d8 | 2020-12-03 16:55:17 -0700 | [diff] [blame] | 412 | .priv_auto = sizeof(struct i2c_bus), |
Cooper Jr., Franklin | 70f6f94 | 2017-04-20 10:25:43 -0500 | [diff] [blame] | 413 | .ops = &davinci_i2c_ops, |
| 414 | }; |