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 | #ifdef CONFIG_DM_I2C |
| 25 | /* Information about i2c controller */ |
| 26 | struct i2c_bus { |
| 27 | int id; |
| 28 | uint speed; |
| 29 | struct i2c_regs *regs; |
| 30 | }; |
| 31 | #endif |
| 32 | |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 33 | #define CHECK_NACK() \ |
| 34 | do {\ |
| 35 | if (tmp & (I2C_TIMEOUT | I2C_STAT_NACK)) {\ |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 36 | REG(&(i2c_base->i2c_con)) = 0;\ |
| 37 | return 1;\ |
| 38 | } \ |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 39 | } while (0) |
| 40 | |
Cooper Jr., Franklin | 6021910 | 2017-04-20 10:25:42 -0500 | [diff] [blame] | 41 | static int _wait_for_bus(struct i2c_regs *i2c_base) |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 42 | { |
| 43 | int stat, timeout; |
| 44 | |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 45 | REG(&(i2c_base->i2c_stat)) = 0xffff; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 46 | |
| 47 | for (timeout = 0; timeout < 10; timeout++) { |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 48 | stat = REG(&(i2c_base->i2c_stat)); |
| 49 | if (!((stat) & I2C_STAT_BB)) { |
| 50 | REG(&(i2c_base->i2c_stat)) = 0xffff; |
| 51 | return 0; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 52 | } |
| 53 | |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 54 | REG(&(i2c_base->i2c_stat)) = stat; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 55 | udelay(50000); |
| 56 | } |
| 57 | |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 58 | REG(&(i2c_base->i2c_stat)) = 0xffff; |
| 59 | return 1; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 60 | } |
| 61 | |
Cooper Jr., Franklin | 6021910 | 2017-04-20 10:25:42 -0500 | [diff] [blame] | 62 | static int _poll_i2c_irq(struct i2c_regs *i2c_base, int mask) |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 63 | { |
| 64 | int stat, timeout; |
| 65 | |
| 66 | for (timeout = 0; timeout < 10; timeout++) { |
| 67 | udelay(1000); |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 68 | stat = REG(&(i2c_base->i2c_stat)); |
| 69 | if (stat & mask) |
| 70 | return stat; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 71 | } |
| 72 | |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 73 | REG(&(i2c_base->i2c_stat)) = 0xffff; |
| 74 | return stat | I2C_TIMEOUT; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 75 | } |
| 76 | |
Cooper Jr., Franklin | 6021910 | 2017-04-20 10:25:42 -0500 | [diff] [blame] | 77 | static void _flush_rx(struct i2c_regs *i2c_base) |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 78 | { |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 79 | while (1) { |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 80 | if (!(REG(&(i2c_base->i2c_stat)) & I2C_STAT_RRDY)) |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 81 | break; |
| 82 | |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 83 | REG(&(i2c_base->i2c_drr)); |
| 84 | REG(&(i2c_base->i2c_stat)) = I2C_STAT_RRDY; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 85 | udelay(1000); |
| 86 | } |
| 87 | } |
| 88 | |
Cooper Jr., Franklin | 6021910 | 2017-04-20 10:25:42 -0500 | [diff] [blame] | 89 | static uint _davinci_i2c_setspeed(struct i2c_regs *i2c_base, |
| 90 | uint speed) |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 91 | { |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 92 | uint32_t div, psc; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 93 | |
| 94 | psc = 2; |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 95 | /* SCLL + SCLH */ |
| 96 | div = (CONFIG_SYS_HZ_CLOCK / ((psc + 1) * speed)) - 10; |
| 97 | REG(&(i2c_base->i2c_psc)) = psc; /* 27MHz / (2 + 1) = 9MHz */ |
| 98 | REG(&(i2c_base->i2c_scll)) = (div * 50) / 100; /* 50% Duty */ |
| 99 | REG(&(i2c_base->i2c_sclh)) = div - REG(&(i2c_base->i2c_scll)); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 100 | |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 101 | return 0; |
| 102 | } |
| 103 | |
Cooper Jr., Franklin | 6021910 | 2017-04-20 10:25:42 -0500 | [diff] [blame] | 104 | static void _davinci_i2c_init(struct i2c_regs *i2c_base, |
| 105 | uint speed, int slaveadd) |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 106 | { |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 107 | if (REG(&(i2c_base->i2c_con)) & I2C_CON_EN) { |
| 108 | REG(&(i2c_base->i2c_con)) = 0; |
| 109 | udelay(50000); |
| 110 | } |
| 111 | |
Cooper Jr., Franklin | 6021910 | 2017-04-20 10:25:42 -0500 | [diff] [blame] | 112 | _davinci_i2c_setspeed(i2c_base, speed); |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 113 | |
| 114 | REG(&(i2c_base->i2c_oa)) = slaveadd; |
| 115 | REG(&(i2c_base->i2c_cnt)) = 0; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 116 | |
| 117 | /* Interrupts must be enabled or I2C module won't work */ |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 118 | 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] | 119 | I2C_IE_RRDY_IE | I2C_IE_ARDY_IE | I2C_IE_NACK_IE; |
| 120 | |
| 121 | /* Now enable I2C controller (get it out of reset) */ |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 122 | REG(&(i2c_base->i2c_con)) = I2C_CON_EN; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 123 | |
| 124 | udelay(1000); |
| 125 | } |
| 126 | |
Cooper Jr., Franklin | 6021910 | 2017-04-20 10:25:42 -0500 | [diff] [blame] | 127 | static int _davinci_i2c_read(struct i2c_regs *i2c_base, uint8_t chip, |
| 128 | uint32_t addr, int alen, uint8_t *buf, int len) |
Heiko Schocher | 49d6da6 | 2011-09-14 19:25:12 +0000 | [diff] [blame] | 129 | { |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 130 | uint32_t tmp; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 131 | int i; |
| 132 | |
| 133 | if ((alen < 0) || (alen > 2)) { |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 134 | printf("%s(): bogus address length %x\n", __func__, alen); |
| 135 | return 1; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 136 | } |
| 137 | |
Cooper Jr., Franklin | 6021910 | 2017-04-20 10:25:42 -0500 | [diff] [blame] | 138 | if (_wait_for_bus(i2c_base)) |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 139 | return 1; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 140 | |
| 141 | if (alen != 0) { |
| 142 | /* Start address phase */ |
| 143 | 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] | 144 | REG(&(i2c_base->i2c_cnt)) = alen; |
| 145 | REG(&(i2c_base->i2c_sa)) = chip; |
| 146 | REG(&(i2c_base->i2c_con)) = tmp; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 147 | |
Cooper Jr., Franklin | 6021910 | 2017-04-20 10:25:42 -0500 | [diff] [blame] | 148 | tmp = _poll_i2c_irq(i2c_base, I2C_STAT_XRDY | I2C_STAT_NACK); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 149 | |
| 150 | CHECK_NACK(); |
| 151 | |
| 152 | switch (alen) { |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 153 | case 2: |
| 154 | /* Send address MSByte */ |
| 155 | if (tmp & I2C_STAT_XRDY) { |
| 156 | REG(&(i2c_base->i2c_dxr)) = (addr >> 8) & 0xff; |
| 157 | } else { |
| 158 | REG(&(i2c_base->i2c_con)) = 0; |
| 159 | return 1; |
| 160 | } |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 161 | |
Cooper Jr., Franklin | 6021910 | 2017-04-20 10:25:42 -0500 | [diff] [blame] | 162 | tmp = _poll_i2c_irq(i2c_base, |
| 163 | I2C_STAT_XRDY | I2C_STAT_NACK); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 164 | |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 165 | CHECK_NACK(); |
| 166 | /* No break, fall through */ |
| 167 | case 1: |
| 168 | /* Send address LSByte */ |
| 169 | if (tmp & I2C_STAT_XRDY) { |
| 170 | REG(&(i2c_base->i2c_dxr)) = addr & 0xff; |
| 171 | } else { |
| 172 | REG(&(i2c_base->i2c_con)) = 0; |
| 173 | return 1; |
| 174 | } |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 175 | |
Cooper Jr., Franklin | 6021910 | 2017-04-20 10:25:42 -0500 | [diff] [blame] | 176 | tmp = _poll_i2c_irq(i2c_base, I2C_STAT_XRDY | |
| 177 | I2C_STAT_NACK | I2C_STAT_ARDY); |
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 | CHECK_NACK(); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 180 | |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 181 | if (!(tmp & I2C_STAT_ARDY)) { |
| 182 | REG(&(i2c_base->i2c_con)) = 0; |
| 183 | return 1; |
| 184 | } |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 185 | } |
| 186 | } |
| 187 | |
| 188 | /* Address phase is over, now read 'len' bytes and stop */ |
| 189 | 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] | 190 | REG(&(i2c_base->i2c_cnt)) = len & 0xffff; |
| 191 | REG(&(i2c_base->i2c_sa)) = chip; |
| 192 | REG(&(i2c_base->i2c_con)) = tmp; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 193 | |
| 194 | for (i = 0; i < len; i++) { |
Cooper Jr., Franklin | 6021910 | 2017-04-20 10:25:42 -0500 | [diff] [blame] | 195 | tmp = _poll_i2c_irq(i2c_base, I2C_STAT_RRDY | I2C_STAT_NACK | |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 196 | I2C_STAT_ROVR); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 197 | |
| 198 | CHECK_NACK(); |
| 199 | |
| 200 | if (tmp & I2C_STAT_RRDY) { |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 201 | buf[i] = REG(&(i2c_base->i2c_drr)); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 202 | } else { |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 203 | REG(&(i2c_base->i2c_con)) = 0; |
| 204 | return 1; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 205 | } |
| 206 | } |
| 207 | |
Cooper Jr., Franklin | 6021910 | 2017-04-20 10:25:42 -0500 | [diff] [blame] | 208 | tmp = _poll_i2c_irq(i2c_base, I2C_STAT_SCD | I2C_STAT_NACK); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 209 | |
| 210 | CHECK_NACK(); |
| 211 | |
| 212 | if (!(tmp & I2C_STAT_SCD)) { |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 213 | REG(&(i2c_base->i2c_con)) = 0; |
| 214 | return 1; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 215 | } |
| 216 | |
Cooper Jr., Franklin | 6021910 | 2017-04-20 10:25:42 -0500 | [diff] [blame] | 217 | _flush_rx(i2c_base); |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 218 | REG(&(i2c_base->i2c_stat)) = 0xffff; |
| 219 | REG(&(i2c_base->i2c_cnt)) = 0; |
| 220 | REG(&(i2c_base->i2c_con)) = 0; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 221 | |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 222 | return 0; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 223 | } |
| 224 | |
Cooper Jr., Franklin | 6021910 | 2017-04-20 10:25:42 -0500 | [diff] [blame] | 225 | static int _davinci_i2c_write(struct i2c_regs *i2c_base, uint8_t chip, |
| 226 | uint32_t addr, int alen, uint8_t *buf, int len) |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 227 | { |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 228 | uint32_t tmp; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 229 | int i; |
| 230 | |
| 231 | if ((alen < 0) || (alen > 2)) { |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 232 | printf("%s(): bogus address length %x\n", __func__, alen); |
| 233 | return 1; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 234 | } |
| 235 | if (len < 0) { |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 236 | printf("%s(): bogus length %x\n", __func__, len); |
| 237 | return 1; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 238 | } |
| 239 | |
Cooper Jr., Franklin | 6021910 | 2017-04-20 10:25:42 -0500 | [diff] [blame] | 240 | if (_wait_for_bus(i2c_base)) |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 241 | return 1; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 242 | |
| 243 | /* Start address phase */ |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 244 | tmp = I2C_CON_EN | I2C_CON_MST | I2C_CON_STT | |
| 245 | I2C_CON_TRX | I2C_CON_STP; |
| 246 | REG(&(i2c_base->i2c_cnt)) = (alen == 0) ? |
| 247 | len & 0xffff : (len & 0xffff) + alen; |
| 248 | REG(&(i2c_base->i2c_sa)) = chip; |
| 249 | REG(&(i2c_base->i2c_con)) = tmp; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 250 | |
| 251 | switch (alen) { |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 252 | case 2: |
| 253 | /* Send address MSByte */ |
Cooper Jr., Franklin | 6021910 | 2017-04-20 10:25:42 -0500 | [diff] [blame] | 254 | tmp = _poll_i2c_irq(i2c_base, I2C_STAT_XRDY | I2C_STAT_NACK); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 255 | |
| 256 | CHECK_NACK(); |
| 257 | |
| 258 | if (tmp & I2C_STAT_XRDY) { |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 259 | REG(&(i2c_base->i2c_dxr)) = (addr >> 8) & 0xff; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 260 | } else { |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 261 | REG(&(i2c_base->i2c_con)) = 0; |
| 262 | return 1; |
| 263 | } |
| 264 | /* No break, fall through */ |
| 265 | case 1: |
| 266 | /* Send address LSByte */ |
Cooper Jr., Franklin | 6021910 | 2017-04-20 10:25:42 -0500 | [diff] [blame] | 267 | tmp = _poll_i2c_irq(i2c_base, I2C_STAT_XRDY | I2C_STAT_NACK); |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 268 | |
| 269 | CHECK_NACK(); |
| 270 | |
| 271 | if (tmp & I2C_STAT_XRDY) { |
| 272 | REG(&(i2c_base->i2c_dxr)) = addr & 0xff; |
| 273 | } else { |
| 274 | REG(&(i2c_base->i2c_con)) = 0; |
| 275 | return 1; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 276 | } |
| 277 | } |
| 278 | |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 279 | for (i = 0; i < len; i++) { |
Cooper Jr., Franklin | 6021910 | 2017-04-20 10:25:42 -0500 | [diff] [blame] | 280 | tmp = _poll_i2c_irq(i2c_base, I2C_STAT_XRDY | I2C_STAT_NACK); |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 281 | |
| 282 | CHECK_NACK(); |
| 283 | |
| 284 | if (tmp & I2C_STAT_XRDY) |
| 285 | REG(&(i2c_base->i2c_dxr)) = buf[i]; |
| 286 | else |
| 287 | return 1; |
| 288 | } |
| 289 | |
Cooper Jr., Franklin | 6021910 | 2017-04-20 10:25:42 -0500 | [diff] [blame] | 290 | tmp = _poll_i2c_irq(i2c_base, I2C_STAT_SCD | I2C_STAT_NACK); |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 291 | |
| 292 | CHECK_NACK(); |
| 293 | |
| 294 | if (!(tmp & I2C_STAT_SCD)) { |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 295 | REG(&(i2c_base->i2c_con)) = 0; |
| 296 | return 1; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 297 | } |
| 298 | |
Cooper Jr., Franklin | 6021910 | 2017-04-20 10:25:42 -0500 | [diff] [blame] | 299 | _flush_rx(i2c_base); |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 300 | REG(&(i2c_base->i2c_stat)) = 0xffff; |
| 301 | REG(&(i2c_base->i2c_cnt)) = 0; |
| 302 | REG(&(i2c_base->i2c_con)) = 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 | return 0; |
Sergey Kubushyn | c74b210 | 2007-08-10 20:26:18 +0200 | [diff] [blame] | 305 | } |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 306 | |
Cooper Jr., Franklin | 6021910 | 2017-04-20 10:25:42 -0500 | [diff] [blame] | 307 | static int _davinci_i2c_probe_chip(struct i2c_regs *i2c_base, uint8_t chip) |
| 308 | { |
| 309 | int rc = 1; |
| 310 | |
| 311 | if (chip == REG(&(i2c_base->i2c_oa))) |
| 312 | return rc; |
| 313 | |
| 314 | REG(&(i2c_base->i2c_con)) = 0; |
| 315 | if (_wait_for_bus(i2c_base)) |
| 316 | return 1; |
| 317 | |
| 318 | /* try to read one byte from current (or only) address */ |
| 319 | REG(&(i2c_base->i2c_cnt)) = 1; |
| 320 | REG(&(i2c_base->i2c_sa)) = chip; |
| 321 | REG(&(i2c_base->i2c_con)) = (I2C_CON_EN | I2C_CON_MST | I2C_CON_STT | |
| 322 | I2C_CON_STP); |
| 323 | udelay(50000); |
| 324 | |
| 325 | if (!(REG(&(i2c_base->i2c_stat)) & I2C_STAT_NACK)) { |
| 326 | rc = 0; |
| 327 | _flush_rx(i2c_base); |
| 328 | REG(&(i2c_base->i2c_stat)) = 0xffff; |
| 329 | } else { |
| 330 | REG(&(i2c_base->i2c_stat)) = 0xffff; |
| 331 | REG(&(i2c_base->i2c_con)) |= I2C_CON_STP; |
| 332 | udelay(20000); |
| 333 | if (_wait_for_bus(i2c_base)) |
| 334 | return 1; |
| 335 | } |
| 336 | |
| 337 | _flush_rx(i2c_base); |
| 338 | REG(&(i2c_base->i2c_stat)) = 0xffff; |
| 339 | REG(&(i2c_base->i2c_cnt)) = 0; |
| 340 | return rc; |
| 341 | } |
| 342 | |
Cooper Jr., Franklin | 70f6f94 | 2017-04-20 10:25:43 -0500 | [diff] [blame] | 343 | #ifndef CONFIG_DM_I2C |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 344 | static struct i2c_regs *davinci_get_base(struct i2c_adapter *adap) |
| 345 | { |
| 346 | switch (adap->hwadapnr) { |
Adam Ford | ac1d8ac | 2017-08-11 06:39:13 -0500 | [diff] [blame] | 347 | #if CONFIG_SYS_I2C_BUS_MAX >= 3 |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 348 | case 2: |
| 349 | return (struct i2c_regs *)I2C2_BASE; |
| 350 | #endif |
Adam Ford | ac1d8ac | 2017-08-11 06:39:13 -0500 | [diff] [blame] | 351 | #if CONFIG_SYS_I2C_BUS_MAX >= 2 |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 352 | case 1: |
| 353 | return (struct i2c_regs *)I2C1_BASE; |
| 354 | #endif |
| 355 | case 0: |
| 356 | return (struct i2c_regs *)I2C_BASE; |
| 357 | |
| 358 | default: |
| 359 | printf("wrong hwadapnr: %d\n", adap->hwadapnr); |
| 360 | } |
| 361 | |
| 362 | return NULL; |
| 363 | } |
| 364 | |
Cooper Jr., Franklin | 6021910 | 2017-04-20 10:25:42 -0500 | [diff] [blame] | 365 | static uint davinci_i2c_setspeed(struct i2c_adapter *adap, uint speed) |
| 366 | { |
| 367 | struct i2c_regs *i2c_base = davinci_get_base(adap); |
| 368 | uint ret; |
| 369 | |
| 370 | adap->speed = speed; |
| 371 | ret = _davinci_i2c_setspeed(i2c_base, speed); |
| 372 | |
| 373 | return ret; |
| 374 | } |
| 375 | |
| 376 | static void davinci_i2c_init(struct i2c_adapter *adap, int speed, |
| 377 | int slaveadd) |
| 378 | { |
| 379 | struct i2c_regs *i2c_base = davinci_get_base(adap); |
| 380 | |
| 381 | adap->speed = speed; |
| 382 | _davinci_i2c_init(i2c_base, speed, slaveadd); |
| 383 | |
| 384 | return; |
| 385 | } |
| 386 | |
| 387 | static int davinci_i2c_read(struct i2c_adapter *adap, uint8_t chip, |
| 388 | uint32_t addr, int alen, uint8_t *buf, int len) |
| 389 | { |
| 390 | struct i2c_regs *i2c_base = davinci_get_base(adap); |
| 391 | return _davinci_i2c_read(i2c_base, chip, addr, alen, buf, len); |
| 392 | } |
| 393 | |
| 394 | static int davinci_i2c_write(struct i2c_adapter *adap, uint8_t chip, |
| 395 | uint32_t addr, int alen, uint8_t *buf, int len) |
| 396 | { |
| 397 | struct i2c_regs *i2c_base = davinci_get_base(adap); |
| 398 | |
| 399 | return _davinci_i2c_write(i2c_base, chip, addr, alen, buf, len); |
| 400 | } |
| 401 | |
| 402 | static int davinci_i2c_probe_chip(struct i2c_adapter *adap, uint8_t chip) |
| 403 | { |
| 404 | struct i2c_regs *i2c_base = davinci_get_base(adap); |
| 405 | |
| 406 | return _davinci_i2c_probe_chip(i2c_base, chip); |
| 407 | } |
| 408 | |
| 409 | U_BOOT_I2C_ADAP_COMPLETE(davinci_0, davinci_i2c_init, davinci_i2c_probe_chip, |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 410 | davinci_i2c_read, davinci_i2c_write, |
| 411 | davinci_i2c_setspeed, |
| 412 | CONFIG_SYS_DAVINCI_I2C_SPEED, |
| 413 | CONFIG_SYS_DAVINCI_I2C_SLAVE, |
| 414 | 0) |
| 415 | |
Adam Ford | ac1d8ac | 2017-08-11 06:39:13 -0500 | [diff] [blame] | 416 | #if CONFIG_SYS_I2C_BUS_MAX >= 2 |
Cooper Jr., Franklin | 6021910 | 2017-04-20 10:25:42 -0500 | [diff] [blame] | 417 | U_BOOT_I2C_ADAP_COMPLETE(davinci_1, davinci_i2c_init, davinci_i2c_probe_chip, |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 418 | davinci_i2c_read, davinci_i2c_write, |
| 419 | davinci_i2c_setspeed, |
| 420 | CONFIG_SYS_DAVINCI_I2C_SPEED1, |
| 421 | CONFIG_SYS_DAVINCI_I2C_SLAVE1, |
| 422 | 1) |
| 423 | #endif |
| 424 | |
Adam Ford | ac1d8ac | 2017-08-11 06:39:13 -0500 | [diff] [blame] | 425 | #if CONFIG_SYS_I2C_BUS_MAX >= 3 |
Cooper Jr., Franklin | 6021910 | 2017-04-20 10:25:42 -0500 | [diff] [blame] | 426 | U_BOOT_I2C_ADAP_COMPLETE(davinci_2, davinci_i2c_init, davinci_i2c_probe_chip, |
Vitaly Andrianov | e8459dc | 2014-04-04 13:16:52 -0400 | [diff] [blame] | 427 | davinci_i2c_read, davinci_i2c_write, |
| 428 | davinci_i2c_setspeed, |
| 429 | CONFIG_SYS_DAVINCI_I2C_SPEED2, |
| 430 | CONFIG_SYS_DAVINCI_I2C_SLAVE2, |
| 431 | 2) |
| 432 | #endif |
Cooper Jr., Franklin | 70f6f94 | 2017-04-20 10:25:43 -0500 | [diff] [blame] | 433 | |
| 434 | #else /* CONFIG_DM_I2C */ |
| 435 | |
| 436 | static int davinci_i2c_xfer(struct udevice *bus, struct i2c_msg *msg, |
| 437 | int nmsgs) |
| 438 | { |
| 439 | struct i2c_bus *i2c_bus = dev_get_priv(bus); |
| 440 | int ret; |
| 441 | |
| 442 | debug("i2c_xfer: %d messages\n", nmsgs); |
| 443 | for (; nmsgs > 0; nmsgs--, msg++) { |
| 444 | debug("i2c_xfer: chip=0x%x, len=0x%x\n", msg->addr, msg->len); |
| 445 | if (msg->flags & I2C_M_RD) { |
| 446 | ret = _davinci_i2c_read(i2c_bus->regs, msg->addr, |
| 447 | 0, 0, msg->buf, msg->len); |
| 448 | } else { |
| 449 | ret = _davinci_i2c_write(i2c_bus->regs, msg->addr, |
| 450 | 0, 0, msg->buf, msg->len); |
| 451 | } |
| 452 | if (ret) { |
| 453 | debug("i2c_write: error sending\n"); |
| 454 | return -EREMOTEIO; |
| 455 | } |
| 456 | } |
| 457 | |
| 458 | return ret; |
| 459 | } |
| 460 | |
| 461 | static int davinci_i2c_set_speed(struct udevice *dev, uint speed) |
| 462 | { |
| 463 | struct i2c_bus *i2c_bus = dev_get_priv(dev); |
| 464 | |
| 465 | i2c_bus->speed = speed; |
| 466 | return _davinci_i2c_setspeed(i2c_bus->regs, speed); |
| 467 | } |
| 468 | |
| 469 | static int davinci_i2c_probe(struct udevice *dev) |
| 470 | { |
| 471 | struct i2c_bus *i2c_bus = dev_get_priv(dev); |
| 472 | |
| 473 | i2c_bus->id = dev->seq; |
Masahiro Yamada | 8613c8d | 2020-07-17 14:36:46 +0900 | [diff] [blame] | 474 | i2c_bus->regs = dev_read_addr_ptr(dev); |
Cooper Jr., Franklin | 70f6f94 | 2017-04-20 10:25:43 -0500 | [diff] [blame] | 475 | |
| 476 | i2c_bus->speed = 100000; |
| 477 | _davinci_i2c_init(i2c_bus->regs, i2c_bus->speed, 0); |
| 478 | |
| 479 | return 0; |
| 480 | } |
| 481 | |
| 482 | static int davinci_i2c_probe_chip(struct udevice *bus, uint chip_addr, |
| 483 | uint chip_flags) |
| 484 | { |
| 485 | struct i2c_bus *i2c_bus = dev_get_priv(bus); |
| 486 | |
| 487 | return _davinci_i2c_probe_chip(i2c_bus->regs, chip_addr); |
| 488 | } |
| 489 | |
| 490 | static const struct dm_i2c_ops davinci_i2c_ops = { |
| 491 | .xfer = davinci_i2c_xfer, |
| 492 | .probe_chip = davinci_i2c_probe_chip, |
| 493 | .set_bus_speed = davinci_i2c_set_speed, |
| 494 | }; |
| 495 | |
| 496 | static const struct udevice_id davinci_i2c_ids[] = { |
| 497 | { .compatible = "ti,davinci-i2c"}, |
| 498 | { .compatible = "ti,keystone-i2c"}, |
| 499 | { } |
| 500 | }; |
| 501 | |
| 502 | U_BOOT_DRIVER(i2c_davinci) = { |
| 503 | .name = "i2c_davinci", |
| 504 | .id = UCLASS_I2C, |
| 505 | .of_match = davinci_i2c_ids, |
| 506 | .probe = davinci_i2c_probe, |
| 507 | .priv_auto_alloc_size = sizeof(struct i2c_bus), |
| 508 | .ops = &davinci_i2c_ops, |
| 509 | }; |
| 510 | |
| 511 | #endif /* CONFIG_DM_I2C */ |