Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Heiko Schocher | 4ce5a72 | 2009-07-20 09:59:37 +0200 | [diff] [blame] | 2 | /* |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 3 | * Driver for the TWSI (i2c) controller found on the Marvell |
| 4 | * orion5x and kirkwood SoC families. |
Heiko Schocher | 4ce5a72 | 2009-07-20 09:59:37 +0200 | [diff] [blame] | 5 | * |
Albert ARIBAUD | 57b4bce | 2011-04-22 19:41:02 +0200 | [diff] [blame] | 6 | * Author: Albert Aribaud <albert.u.boot@aribaud.net> |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 7 | * Copyright (c) 2010 Albert Aribaud. |
Heiko Schocher | 4ce5a72 | 2009-07-20 09:59:37 +0200 | [diff] [blame] | 8 | */ |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 9 | |
Heiko Schocher | 4ce5a72 | 2009-07-20 09:59:37 +0200 | [diff] [blame] | 10 | #include <common.h> |
| 11 | #include <i2c.h> |
Masahiro Yamada | 1221ce4 | 2016-09-21 11:28:55 +0900 | [diff] [blame] | 12 | #include <linux/errno.h> |
Heiko Schocher | 4ce5a72 | 2009-07-20 09:59:37 +0200 | [diff] [blame] | 13 | #include <asm/io.h> |
Baruch Siach | 173ec35 | 2018-06-07 12:38:10 +0300 | [diff] [blame] | 14 | #include <linux/bitops.h> |
mario.six@gdsys.cc | c68c624 | 2016-07-21 11:57:12 +0200 | [diff] [blame] | 15 | #include <linux/compat.h> |
mario.six@gdsys.cc | 14a6ff2 | 2016-07-21 11:57:10 +0200 | [diff] [blame] | 16 | #ifdef CONFIG_DM_I2C |
| 17 | #include <dm.h> |
| 18 | #endif |
| 19 | |
| 20 | DECLARE_GLOBAL_DATA_PTR; |
Heiko Schocher | 4ce5a72 | 2009-07-20 09:59:37 +0200 | [diff] [blame] | 21 | |
Heiko Schocher | 4ce5a72 | 2009-07-20 09:59:37 +0200 | [diff] [blame] | 22 | /* |
mario.six@gdsys.cc | 49c801b | 2016-07-21 11:57:03 +0200 | [diff] [blame] | 23 | * Include a file that will provide CONFIG_I2C_MVTWSI_BASE*, and possibly other |
| 24 | * settings |
Heiko Schocher | 4ce5a72 | 2009-07-20 09:59:37 +0200 | [diff] [blame] | 25 | */ |
| 26 | |
mario.six@gdsys.cc | 14a6ff2 | 2016-07-21 11:57:10 +0200 | [diff] [blame] | 27 | #ifndef CONFIG_DM_I2C |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 28 | #if defined(CONFIG_ORION5X) |
| 29 | #include <asm/arch/orion5x.h> |
Stefan Roese | 81e33f4 | 2015-12-21 13:56:33 +0100 | [diff] [blame] | 30 | #elif (defined(CONFIG_KIRKWOOD) || defined(CONFIG_ARCH_MVEBU)) |
Stefan Roese | 3dc23f7 | 2014-10-22 12:13:06 +0200 | [diff] [blame] | 31 | #include <asm/arch/soc.h> |
Jagan Teki | aec9a0f | 2016-10-13 14:19:35 +0530 | [diff] [blame] | 32 | #elif defined(CONFIG_ARCH_SUNXI) |
Hans de Goede | 6620377 | 2014-06-13 22:55:49 +0200 | [diff] [blame] | 33 | #include <asm/arch/i2c.h> |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 34 | #else |
| 35 | #error Driver mvtwsi not supported by SoC or board |
| 36 | #endif |
mario.six@gdsys.cc | 14a6ff2 | 2016-07-21 11:57:10 +0200 | [diff] [blame] | 37 | #endif /* CONFIG_DM_I2C */ |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 38 | |
| 39 | /* |
Jernej Skrabec | a8f01cc | 2017-04-27 00:03:36 +0200 | [diff] [blame] | 40 | * On SUNXI, we get CONFIG_SYS_TCLK from this include, so we want to |
| 41 | * always have it. |
| 42 | */ |
| 43 | #if defined(CONFIG_DM_I2C) && defined(CONFIG_ARCH_SUNXI) |
| 44 | #include <asm/arch/i2c.h> |
| 45 | #endif |
| 46 | |
| 47 | /* |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 48 | * TWSI register structure |
| 49 | */ |
| 50 | |
Jagan Teki | aec9a0f | 2016-10-13 14:19:35 +0530 | [diff] [blame] | 51 | #ifdef CONFIG_ARCH_SUNXI |
Hans de Goede | 6620377 | 2014-06-13 22:55:49 +0200 | [diff] [blame] | 52 | |
| 53 | struct mvtwsi_registers { |
| 54 | u32 slave_address; |
| 55 | u32 xtnd_slave_addr; |
| 56 | u32 data; |
| 57 | u32 control; |
| 58 | u32 status; |
| 59 | u32 baudrate; |
| 60 | u32 soft_reset; |
Baruch Siach | 173ec35 | 2018-06-07 12:38:10 +0300 | [diff] [blame] | 61 | u32 debug; /* Dummy field for build compatibility with mvebu */ |
Hans de Goede | 6620377 | 2014-06-13 22:55:49 +0200 | [diff] [blame] | 62 | }; |
| 63 | |
| 64 | #else |
| 65 | |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 66 | struct mvtwsi_registers { |
| 67 | u32 slave_address; |
| 68 | u32 data; |
| 69 | u32 control; |
| 70 | union { |
mario.six@gdsys.cc | 49c801b | 2016-07-21 11:57:03 +0200 | [diff] [blame] | 71 | u32 status; /* When reading */ |
| 72 | u32 baudrate; /* When writing */ |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 73 | }; |
| 74 | u32 xtnd_slave_addr; |
Baruch Siach | 173ec35 | 2018-06-07 12:38:10 +0300 | [diff] [blame] | 75 | u32 reserved0[2]; |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 76 | u32 soft_reset; |
Baruch Siach | 173ec35 | 2018-06-07 12:38:10 +0300 | [diff] [blame] | 77 | u32 reserved1[27]; |
| 78 | u32 debug; |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 79 | }; |
| 80 | |
Hans de Goede | 6620377 | 2014-06-13 22:55:49 +0200 | [diff] [blame] | 81 | #endif |
| 82 | |
mario.six@gdsys.cc | 14a6ff2 | 2016-07-21 11:57:10 +0200 | [diff] [blame] | 83 | #ifdef CONFIG_DM_I2C |
| 84 | struct mvtwsi_i2c_dev { |
| 85 | /* TWSI Register base for the device */ |
| 86 | struct mvtwsi_registers *base; |
| 87 | /* Number of the device (determined from cell-index property) */ |
| 88 | int index; |
| 89 | /* The I2C slave address for the device */ |
| 90 | u8 slaveadd; |
| 91 | /* The configured I2C speed in Hz */ |
| 92 | uint speed; |
mario.six@gdsys.cc | c68c624 | 2016-07-21 11:57:12 +0200 | [diff] [blame] | 93 | /* The current length of a clock period (depending on speed) */ |
| 94 | uint tick; |
mario.six@gdsys.cc | 14a6ff2 | 2016-07-21 11:57:10 +0200 | [diff] [blame] | 95 | }; |
| 96 | #endif /* CONFIG_DM_I2C */ |
| 97 | |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 98 | /* |
mario.six@gdsys.cc | dfc3958 | 2016-07-21 11:57:02 +0200 | [diff] [blame] | 99 | * enum mvtwsi_ctrl_register_fields - Bit masks for flags in the control |
| 100 | * register |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 101 | */ |
mario.six@gdsys.cc | dfc3958 | 2016-07-21 11:57:02 +0200 | [diff] [blame] | 102 | enum mvtwsi_ctrl_register_fields { |
| 103 | /* Acknowledge bit */ |
| 104 | MVTWSI_CONTROL_ACK = 0x00000004, |
| 105 | /* Interrupt flag */ |
| 106 | MVTWSI_CONTROL_IFLG = 0x00000008, |
| 107 | /* Stop bit */ |
| 108 | MVTWSI_CONTROL_STOP = 0x00000010, |
| 109 | /* Start bit */ |
| 110 | MVTWSI_CONTROL_START = 0x00000020, |
| 111 | /* I2C enable */ |
| 112 | MVTWSI_CONTROL_TWSIEN = 0x00000040, |
| 113 | /* Interrupt enable */ |
| 114 | MVTWSI_CONTROL_INTEN = 0x00000080, |
| 115 | }; |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 116 | |
| 117 | /* |
mario.six@gdsys.cc | 49c801b | 2016-07-21 11:57:03 +0200 | [diff] [blame] | 118 | * On sun6i and newer, IFLG is a write-clear bit, which is cleared by writing 1; |
| 119 | * on other platforms, it is a normal r/w bit, which is cleared by writing 0. |
Hans de Goede | 904dfbf | 2016-01-14 14:06:25 +0100 | [diff] [blame] | 120 | */ |
| 121 | |
| 122 | #ifdef CONFIG_SUNXI_GEN_SUN6I |
| 123 | #define MVTWSI_CONTROL_CLEAR_IFLG 0x00000008 |
| 124 | #else |
| 125 | #define MVTWSI_CONTROL_CLEAR_IFLG 0x00000000 |
| 126 | #endif |
| 127 | |
| 128 | /* |
mario.six@gdsys.cc | dfc3958 | 2016-07-21 11:57:02 +0200 | [diff] [blame] | 129 | * enum mvstwsi_status_values - Possible values of I2C controller's status |
| 130 | * register |
| 131 | * |
| 132 | * Only those statuses expected in normal master operation on |
| 133 | * non-10-bit-address devices are specified. |
| 134 | * |
| 135 | * Every status that's unexpected during normal operation (bus errors, |
| 136 | * arbitration losses, missing ACKs...) is passed back to the caller as an error |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 137 | * code. |
| 138 | */ |
mario.six@gdsys.cc | dfc3958 | 2016-07-21 11:57:02 +0200 | [diff] [blame] | 139 | enum mvstwsi_status_values { |
| 140 | /* START condition transmitted */ |
| 141 | MVTWSI_STATUS_START = 0x08, |
| 142 | /* Repeated START condition transmitted */ |
| 143 | MVTWSI_STATUS_REPEATED_START = 0x10, |
| 144 | /* Address + write bit transmitted, ACK received */ |
| 145 | MVTWSI_STATUS_ADDR_W_ACK = 0x18, |
| 146 | /* Data transmitted, ACK received */ |
| 147 | MVTWSI_STATUS_DATA_W_ACK = 0x28, |
| 148 | /* Address + read bit transmitted, ACK received */ |
| 149 | MVTWSI_STATUS_ADDR_R_ACK = 0x40, |
| 150 | /* Address + read bit transmitted, ACK not received */ |
| 151 | MVTWSI_STATUS_ADDR_R_NAK = 0x48, |
| 152 | /* Data received, ACK transmitted */ |
| 153 | MVTWSI_STATUS_DATA_R_ACK = 0x50, |
| 154 | /* Data received, ACK not transmitted */ |
| 155 | MVTWSI_STATUS_DATA_R_NAK = 0x58, |
| 156 | /* No relevant status */ |
| 157 | MVTWSI_STATUS_IDLE = 0xF8, |
| 158 | }; |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 159 | |
| 160 | /* |
mario.six@gdsys.cc | 670514f | 2016-07-21 11:57:04 +0200 | [diff] [blame] | 161 | * enum mvstwsi_ack_flags - Determine whether a read byte should be |
| 162 | * acknowledged or not. |
| 163 | */ |
| 164 | enum mvtwsi_ack_flags { |
| 165 | /* Send NAK after received byte */ |
| 166 | MVTWSI_READ_NAK = 0, |
| 167 | /* Send ACK after received byte */ |
| 168 | MVTWSI_READ_ACK = 1, |
| 169 | }; |
| 170 | |
mario.six@gdsys.cc | 6e677ca | 2016-07-21 11:57:13 +0200 | [diff] [blame] | 171 | /* |
| 172 | * calc_tick() - Calculate the duration of a clock cycle from the I2C speed |
| 173 | * |
| 174 | * @speed: The speed in Hz to calculate the clock cycle duration for. |
| 175 | * @return The duration of a clock cycle in ns. |
| 176 | */ |
mario.six@gdsys.cc | c68c624 | 2016-07-21 11:57:12 +0200 | [diff] [blame] | 177 | inline uint calc_tick(uint speed) |
| 178 | { |
| 179 | /* One tick = the duration of a period at the specified speed in ns (we |
| 180 | * add 100 ns to be on the safe side) */ |
| 181 | return (1000000000u / speed) + 100; |
| 182 | } |
| 183 | |
mario.six@gdsys.cc | 14a6ff2 | 2016-07-21 11:57:10 +0200 | [diff] [blame] | 184 | #ifndef CONFIG_DM_I2C |
mario.six@gdsys.cc | c68c624 | 2016-07-21 11:57:12 +0200 | [diff] [blame] | 185 | |
mario.six@gdsys.cc | 670514f | 2016-07-21 11:57:04 +0200 | [diff] [blame] | 186 | /* |
mario.six@gdsys.cc | 6e677ca | 2016-07-21 11:57:13 +0200 | [diff] [blame] | 187 | * twsi_get_base() - Get controller register base for specified adapter |
| 188 | * |
| 189 | * @adap: Adapter to get the register base for. |
| 190 | * @return Register base for the specified adapter. |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 191 | */ |
Paul Kocialkowski | dd82242 | 2015-04-10 23:09:51 +0200 | [diff] [blame] | 192 | static struct mvtwsi_registers *twsi_get_base(struct i2c_adapter *adap) |
| 193 | { |
| 194 | switch (adap->hwadapnr) { |
| 195 | #ifdef CONFIG_I2C_MVTWSI_BASE0 |
| 196 | case 0: |
mario.six@gdsys.cc | 9ec43b0 | 2016-07-21 11:57:01 +0200 | [diff] [blame] | 197 | return (struct mvtwsi_registers *)CONFIG_I2C_MVTWSI_BASE0; |
Paul Kocialkowski | dd82242 | 2015-04-10 23:09:51 +0200 | [diff] [blame] | 198 | #endif |
| 199 | #ifdef CONFIG_I2C_MVTWSI_BASE1 |
| 200 | case 1: |
mario.six@gdsys.cc | 9ec43b0 | 2016-07-21 11:57:01 +0200 | [diff] [blame] | 201 | return (struct mvtwsi_registers *)CONFIG_I2C_MVTWSI_BASE1; |
Paul Kocialkowski | dd82242 | 2015-04-10 23:09:51 +0200 | [diff] [blame] | 202 | #endif |
| 203 | #ifdef CONFIG_I2C_MVTWSI_BASE2 |
| 204 | case 2: |
mario.six@gdsys.cc | 9ec43b0 | 2016-07-21 11:57:01 +0200 | [diff] [blame] | 205 | return (struct mvtwsi_registers *)CONFIG_I2C_MVTWSI_BASE2; |
Paul Kocialkowski | dd82242 | 2015-04-10 23:09:51 +0200 | [diff] [blame] | 206 | #endif |
| 207 | #ifdef CONFIG_I2C_MVTWSI_BASE3 |
| 208 | case 3: |
mario.six@gdsys.cc | 9ec43b0 | 2016-07-21 11:57:01 +0200 | [diff] [blame] | 209 | return (struct mvtwsi_registers *)CONFIG_I2C_MVTWSI_BASE3; |
Paul Kocialkowski | dd82242 | 2015-04-10 23:09:51 +0200 | [diff] [blame] | 210 | #endif |
| 211 | #ifdef CONFIG_I2C_MVTWSI_BASE4 |
| 212 | case 4: |
mario.six@gdsys.cc | 9ec43b0 | 2016-07-21 11:57:01 +0200 | [diff] [blame] | 213 | return (struct mvtwsi_registers *)CONFIG_I2C_MVTWSI_BASE4; |
Paul Kocialkowski | dd82242 | 2015-04-10 23:09:51 +0200 | [diff] [blame] | 214 | #endif |
Jelle van der Waa | 9d08268 | 2016-01-14 14:06:26 +0100 | [diff] [blame] | 215 | #ifdef CONFIG_I2C_MVTWSI_BASE5 |
| 216 | case 5: |
mario.six@gdsys.cc | 9ec43b0 | 2016-07-21 11:57:01 +0200 | [diff] [blame] | 217 | return (struct mvtwsi_registers *)CONFIG_I2C_MVTWSI_BASE5; |
Jelle van der Waa | 9d08268 | 2016-01-14 14:06:26 +0100 | [diff] [blame] | 218 | #endif |
Paul Kocialkowski | dd82242 | 2015-04-10 23:09:51 +0200 | [diff] [blame] | 219 | default: |
| 220 | printf("Missing mvtwsi controller %d base\n", adap->hwadapnr); |
| 221 | break; |
| 222 | } |
| 223 | |
| 224 | return NULL; |
| 225 | } |
mario.six@gdsys.cc | 14a6ff2 | 2016-07-21 11:57:10 +0200 | [diff] [blame] | 226 | #endif |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 227 | |
| 228 | /* |
mario.six@gdsys.cc | dfc3958 | 2016-07-21 11:57:02 +0200 | [diff] [blame] | 229 | * enum mvtwsi_error_class - types of I2C errors |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 230 | */ |
mario.six@gdsys.cc | dfc3958 | 2016-07-21 11:57:02 +0200 | [diff] [blame] | 231 | enum mvtwsi_error_class { |
| 232 | /* The controller returned a different status than expected */ |
| 233 | MVTWSI_ERROR_WRONG_STATUS = 0x01, |
| 234 | /* The controller timed out */ |
| 235 | MVTWSI_ERROR_TIMEOUT = 0x02, |
| 236 | }; |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 237 | |
mario.six@gdsys.cc | dfc3958 | 2016-07-21 11:57:02 +0200 | [diff] [blame] | 238 | /* |
| 239 | * mvtwsi_error() - Build I2C return code from error information |
| 240 | * |
| 241 | * For debugging purposes, this function packs some information of an occurred |
| 242 | * error into a return code. These error codes are returned from I2C API |
| 243 | * functions (i2c_{read,write}, dm_i2c_{read,write}, etc.). |
| 244 | * |
| 245 | * @ec: The error class of the error (enum mvtwsi_error_class). |
| 246 | * @lc: The last value of the control register. |
| 247 | * @ls: The last value of the status register. |
| 248 | * @es: The expected value of the status register. |
| 249 | * @return The generated error code. |
| 250 | */ |
| 251 | inline uint mvtwsi_error(uint ec, uint lc, uint ls, uint es) |
| 252 | { |
| 253 | return ((ec << 24) & 0xFF000000) |
| 254 | | ((lc << 16) & 0x00FF0000) |
| 255 | | ((ls << 8) & 0x0000FF00) |
| 256 | | (es & 0xFF); |
| 257 | } |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 258 | |
| 259 | /* |
mario.six@gdsys.cc | 6e677ca | 2016-07-21 11:57:13 +0200 | [diff] [blame] | 260 | * twsi_wait() - Wait for I2C bus interrupt flag and check status, or time out. |
| 261 | * |
| 262 | * @return Zero if status is as expected, or a non-zero code if either a time |
| 263 | * out occurred, or the status was not the expected one. |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 264 | */ |
mario.six@gdsys.cc | c68c624 | 2016-07-21 11:57:12 +0200 | [diff] [blame] | 265 | static int twsi_wait(struct mvtwsi_registers *twsi, int expected_status, |
| 266 | uint tick) |
Heiko Schocher | 4ce5a72 | 2009-07-20 09:59:37 +0200 | [diff] [blame] | 267 | { |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 268 | int control, status; |
| 269 | int timeout = 1000; |
| 270 | |
| 271 | do { |
| 272 | control = readl(&twsi->control); |
| 273 | if (control & MVTWSI_CONTROL_IFLG) { |
Marek Behún | d50e296 | 2019-05-02 16:53:38 +0200 | [diff] [blame] | 274 | /* |
| 275 | * On Armada 38x it seems that the controller works as |
| 276 | * if it first set the MVTWSI_CONTROL_IFLAG in the |
| 277 | * control register and only after that it changed the |
| 278 | * status register. |
| 279 | * This sometimes caused weird bugs which only appeared |
| 280 | * on selected I2C speeds and even then only sometimes. |
| 281 | * We therefore add here a simple ndealy(100), which |
| 282 | * seems to fix this weird bug. |
| 283 | */ |
| 284 | ndelay(100); |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 285 | status = readl(&twsi->status); |
| 286 | if (status == expected_status) |
| 287 | return 0; |
| 288 | else |
mario.six@gdsys.cc | dfc3958 | 2016-07-21 11:57:02 +0200 | [diff] [blame] | 289 | return mvtwsi_error( |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 290 | MVTWSI_ERROR_WRONG_STATUS, |
| 291 | control, status, expected_status); |
| 292 | } |
mario.six@gdsys.cc | c68c624 | 2016-07-21 11:57:12 +0200 | [diff] [blame] | 293 | ndelay(tick); /* One clock cycle */ |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 294 | } while (timeout--); |
| 295 | status = readl(&twsi->status); |
mario.six@gdsys.cc | dfc3958 | 2016-07-21 11:57:02 +0200 | [diff] [blame] | 296 | return mvtwsi_error(MVTWSI_ERROR_TIMEOUT, control, status, |
| 297 | expected_status); |
Heiko Schocher | 4ce5a72 | 2009-07-20 09:59:37 +0200 | [diff] [blame] | 298 | } |
| 299 | |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 300 | /* |
mario.six@gdsys.cc | 6e677ca | 2016-07-21 11:57:13 +0200 | [diff] [blame] | 301 | * twsi_start() - Assert a START condition on the bus. |
| 302 | * |
| 303 | * This function is used in both single I2C transactions and inside |
| 304 | * back-to-back transactions (repeated starts). |
| 305 | * |
| 306 | * @twsi: The MVTWSI register structure to use. |
| 307 | * @expected_status: The I2C bus status expected to be asserted after the |
| 308 | * operation completion. |
| 309 | * @tick: The duration of a clock cycle at the current I2C speed. |
| 310 | * @return Zero if status is as expected, or a non-zero code if either a time |
| 311 | * out occurred or the status was not the expected one. |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 312 | */ |
mario.six@gdsys.cc | c68c624 | 2016-07-21 11:57:12 +0200 | [diff] [blame] | 313 | static int twsi_start(struct mvtwsi_registers *twsi, int expected_status, |
| 314 | uint tick) |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 315 | { |
mario.six@gdsys.cc | 49c801b | 2016-07-21 11:57:03 +0200 | [diff] [blame] | 316 | /* Assert START */ |
mario.six@gdsys.cc | 670514f | 2016-07-21 11:57:04 +0200 | [diff] [blame] | 317 | writel(MVTWSI_CONTROL_TWSIEN | MVTWSI_CONTROL_START | |
mario.six@gdsys.cc | 49c801b | 2016-07-21 11:57:03 +0200 | [diff] [blame] | 318 | MVTWSI_CONTROL_CLEAR_IFLG, &twsi->control); |
| 319 | /* Wait for controller to process START */ |
mario.six@gdsys.cc | c68c624 | 2016-07-21 11:57:12 +0200 | [diff] [blame] | 320 | return twsi_wait(twsi, expected_status, tick); |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 321 | } |
| 322 | |
| 323 | /* |
mario.six@gdsys.cc | 6e677ca | 2016-07-21 11:57:13 +0200 | [diff] [blame] | 324 | * twsi_send() - Send a byte on the I2C bus. |
| 325 | * |
| 326 | * The byte may be part of an address byte or data. |
| 327 | * |
| 328 | * @twsi: The MVTWSI register structure to use. |
| 329 | * @byte: The byte to send. |
| 330 | * @expected_status: The I2C bus status expected to be asserted after the |
| 331 | * operation completion. |
| 332 | * @tick: The duration of a clock cycle at the current I2C speed. |
| 333 | * @return Zero if status is as expected, or a non-zero code if either a time |
| 334 | * out occurred or the status was not the expected one. |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 335 | */ |
mario.six@gdsys.cc | 3c4db63 | 2016-07-21 11:57:08 +0200 | [diff] [blame] | 336 | static int twsi_send(struct mvtwsi_registers *twsi, u8 byte, |
mario.six@gdsys.cc | c68c624 | 2016-07-21 11:57:12 +0200 | [diff] [blame] | 337 | int expected_status, uint tick) |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 338 | { |
mario.six@gdsys.cc | 49c801b | 2016-07-21 11:57:03 +0200 | [diff] [blame] | 339 | /* Write byte to data register for sending */ |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 340 | writel(byte, &twsi->data); |
mario.six@gdsys.cc | 49c801b | 2016-07-21 11:57:03 +0200 | [diff] [blame] | 341 | /* Clear any pending interrupt -- that will cause sending */ |
mario.six@gdsys.cc | 670514f | 2016-07-21 11:57:04 +0200 | [diff] [blame] | 342 | writel(MVTWSI_CONTROL_TWSIEN | MVTWSI_CONTROL_CLEAR_IFLG, |
| 343 | &twsi->control); |
mario.six@gdsys.cc | 49c801b | 2016-07-21 11:57:03 +0200 | [diff] [blame] | 344 | /* Wait for controller to receive byte, and check ACK */ |
mario.six@gdsys.cc | c68c624 | 2016-07-21 11:57:12 +0200 | [diff] [blame] | 345 | return twsi_wait(twsi, expected_status, tick); |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 346 | } |
| 347 | |
| 348 | /* |
mario.six@gdsys.cc | 6e677ca | 2016-07-21 11:57:13 +0200 | [diff] [blame] | 349 | * twsi_recv() - Receive a byte on the I2C bus. |
| 350 | * |
| 351 | * The static variable mvtwsi_control_flags controls whether we ack or nak. |
| 352 | * |
| 353 | * @twsi: The MVTWSI register structure to use. |
| 354 | * @byte: The byte to send. |
| 355 | * @ack_flag: Flag that determines whether the received byte should |
| 356 | * be acknowledged by the controller or not (sent ACK/NAK). |
| 357 | * @tick: The duration of a clock cycle at the current I2C speed. |
| 358 | * @return Zero if status is as expected, or a non-zero code if either a time |
| 359 | * out occurred or the status was not the expected one. |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 360 | */ |
mario.six@gdsys.cc | c68c624 | 2016-07-21 11:57:12 +0200 | [diff] [blame] | 361 | static int twsi_recv(struct mvtwsi_registers *twsi, u8 *byte, int ack_flag, |
| 362 | uint tick) |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 363 | { |
mario.six@gdsys.cc | 670514f | 2016-07-21 11:57:04 +0200 | [diff] [blame] | 364 | int expected_status, status, control; |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 365 | |
mario.six@gdsys.cc | 670514f | 2016-07-21 11:57:04 +0200 | [diff] [blame] | 366 | /* Compute expected status based on passed ACK flag */ |
| 367 | expected_status = ack_flag ? MVTWSI_STATUS_DATA_R_ACK : |
| 368 | MVTWSI_STATUS_DATA_R_NAK; |
mario.six@gdsys.cc | 49c801b | 2016-07-21 11:57:03 +0200 | [diff] [blame] | 369 | /* Acknowledge *previous state*, and launch receive */ |
mario.six@gdsys.cc | 670514f | 2016-07-21 11:57:04 +0200 | [diff] [blame] | 370 | control = MVTWSI_CONTROL_TWSIEN; |
| 371 | control |= ack_flag == MVTWSI_READ_ACK ? MVTWSI_CONTROL_ACK : 0; |
| 372 | writel(control | MVTWSI_CONTROL_CLEAR_IFLG, &twsi->control); |
mario.six@gdsys.cc | 49c801b | 2016-07-21 11:57:03 +0200 | [diff] [blame] | 373 | /* Wait for controller to receive byte, and assert ACK or NAK */ |
mario.six@gdsys.cc | c68c624 | 2016-07-21 11:57:12 +0200 | [diff] [blame] | 374 | status = twsi_wait(twsi, expected_status, tick); |
mario.six@gdsys.cc | 49c801b | 2016-07-21 11:57:03 +0200 | [diff] [blame] | 375 | /* If we did receive the expected byte, store it */ |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 376 | if (status == 0) |
| 377 | *byte = readl(&twsi->data); |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 378 | return status; |
| 379 | } |
| 380 | |
| 381 | /* |
mario.six@gdsys.cc | 6e677ca | 2016-07-21 11:57:13 +0200 | [diff] [blame] | 382 | * twsi_stop() - Assert a STOP condition on the bus. |
| 383 | * |
| 384 | * This function is also used to force the bus back to idle state (SDA = |
| 385 | * SCL = 1). |
| 386 | * |
| 387 | * @twsi: The MVTWSI register structure to use. |
| 388 | * @tick: The duration of a clock cycle at the current I2C speed. |
| 389 | * @return Zero if the operation succeeded, or a non-zero code if a time out |
| 390 | * occurred. |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 391 | */ |
mario.six@gdsys.cc | c68c624 | 2016-07-21 11:57:12 +0200 | [diff] [blame] | 392 | static int twsi_stop(struct mvtwsi_registers *twsi, uint tick) |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 393 | { |
| 394 | int control, stop_status; |
mario.six@gdsys.cc | 059fce9 | 2016-07-21 11:57:05 +0200 | [diff] [blame] | 395 | int status = 0; |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 396 | int timeout = 1000; |
| 397 | |
mario.six@gdsys.cc | 49c801b | 2016-07-21 11:57:03 +0200 | [diff] [blame] | 398 | /* Assert STOP */ |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 399 | control = MVTWSI_CONTROL_TWSIEN | MVTWSI_CONTROL_STOP; |
Hans de Goede | 904dfbf | 2016-01-14 14:06:25 +0100 | [diff] [blame] | 400 | writel(control | MVTWSI_CONTROL_CLEAR_IFLG, &twsi->control); |
mario.six@gdsys.cc | 49c801b | 2016-07-21 11:57:03 +0200 | [diff] [blame] | 401 | /* Wait for IDLE; IFLG won't rise, so we can't use twsi_wait() */ |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 402 | do { |
| 403 | stop_status = readl(&twsi->status); |
| 404 | if (stop_status == MVTWSI_STATUS_IDLE) |
| 405 | break; |
mario.six@gdsys.cc | c68c624 | 2016-07-21 11:57:12 +0200 | [diff] [blame] | 406 | ndelay(tick); /* One clock cycle */ |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 407 | } while (timeout--); |
| 408 | control = readl(&twsi->control); |
| 409 | if (stop_status != MVTWSI_STATUS_IDLE) |
mario.six@gdsys.cc | 059fce9 | 2016-07-21 11:57:05 +0200 | [diff] [blame] | 410 | status = mvtwsi_error(MVTWSI_ERROR_TIMEOUT, |
| 411 | control, status, MVTWSI_STATUS_IDLE); |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 412 | return status; |
| 413 | } |
| 414 | |
mario.six@gdsys.cc | 6e677ca | 2016-07-21 11:57:13 +0200 | [diff] [blame] | 415 | /* |
| 416 | * twsi_calc_freq() - Compute I2C frequency depending on m and n parameters. |
| 417 | * |
| 418 | * @n: Parameter 'n' for the frequency calculation algorithm. |
| 419 | * @m: Parameter 'm' for the frequency calculation algorithm. |
| 420 | * @return The I2C frequency corresponding to the passed m and n parameters. |
| 421 | */ |
mario.six@gdsys.cc | e075828 | 2016-07-21 11:57:06 +0200 | [diff] [blame] | 422 | static uint twsi_calc_freq(const int n, const int m) |
Stefan Roese | f582a15 | 2015-03-18 09:30:54 +0100 | [diff] [blame] | 423 | { |
Jagan Teki | aec9a0f | 2016-10-13 14:19:35 +0530 | [diff] [blame] | 424 | #ifdef CONFIG_ARCH_SUNXI |
Stefan Roese | f582a15 | 2015-03-18 09:30:54 +0100 | [diff] [blame] | 425 | return CONFIG_SYS_TCLK / (10 * (m + 1) * (1 << n)); |
| 426 | #else |
| 427 | return CONFIG_SYS_TCLK / (10 * (m + 1) * (2 << n)); |
| 428 | #endif |
| 429 | } |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 430 | |
| 431 | /* |
mario.six@gdsys.cc | 6e677ca | 2016-07-21 11:57:13 +0200 | [diff] [blame] | 432 | * twsi_reset() - Reset the I2C controller. |
| 433 | * |
| 434 | * Resetting the controller also resets the baud rate and slave address, hence |
| 435 | * they must be re-established after the reset. |
| 436 | * |
| 437 | * @twsi: The MVTWSI register structure to use. |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 438 | */ |
mario.six@gdsys.cc | 3c4db63 | 2016-07-21 11:57:08 +0200 | [diff] [blame] | 439 | static void twsi_reset(struct mvtwsi_registers *twsi) |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 440 | { |
mario.six@gdsys.cc | 49c801b | 2016-07-21 11:57:03 +0200 | [diff] [blame] | 441 | /* Reset controller */ |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 442 | writel(0, &twsi->soft_reset); |
mario.six@gdsys.cc | 49c801b | 2016-07-21 11:57:03 +0200 | [diff] [blame] | 443 | /* Wait 2 ms -- this is what the Marvell LSP does */ |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 444 | udelay(20000); |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 445 | } |
| 446 | |
| 447 | /* |
mario.six@gdsys.cc | 6e677ca | 2016-07-21 11:57:13 +0200 | [diff] [blame] | 448 | * __twsi_i2c_set_bus_speed() - Set the speed of the I2C controller. |
| 449 | * |
| 450 | * This function sets baud rate to the highest possible value that does not |
| 451 | * exceed the requested rate. |
| 452 | * |
| 453 | * @twsi: The MVTWSI register structure to use. |
| 454 | * @requested_speed: The desired frequency the controller should run at |
| 455 | * in Hz. |
| 456 | * @return The actual frequency the controller was configured to. |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 457 | */ |
mario.six@gdsys.cc | 3c4db63 | 2016-07-21 11:57:08 +0200 | [diff] [blame] | 458 | static uint __twsi_i2c_set_bus_speed(struct mvtwsi_registers *twsi, |
mario.six@gdsys.cc | 61bc02b | 2016-07-21 11:57:07 +0200 | [diff] [blame] | 459 | uint requested_speed) |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 460 | { |
mario.six@gdsys.cc | e075828 | 2016-07-21 11:57:06 +0200 | [diff] [blame] | 461 | uint tmp_speed, highest_speed, n, m; |
| 462 | uint baud = 0x44; /* Baud rate after controller reset */ |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 463 | |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 464 | highest_speed = 0; |
mario.six@gdsys.cc | 49c801b | 2016-07-21 11:57:03 +0200 | [diff] [blame] | 465 | /* Successively try m, n combinations, and use the combination |
| 466 | * resulting in the largest speed that's not above the requested |
| 467 | * speed */ |
Heiko Schocher | 4ce5a72 | 2009-07-20 09:59:37 +0200 | [diff] [blame] | 468 | for (n = 0; n < 8; n++) { |
| 469 | for (m = 0; m < 16; m++) { |
Stefan Roese | f582a15 | 2015-03-18 09:30:54 +0100 | [diff] [blame] | 470 | tmp_speed = twsi_calc_freq(n, m); |
mario.six@gdsys.cc | 9ec43b0 | 2016-07-21 11:57:01 +0200 | [diff] [blame] | 471 | if ((tmp_speed <= requested_speed) && |
| 472 | (tmp_speed > highest_speed)) { |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 473 | highest_speed = tmp_speed; |
| 474 | baud = (m << 3) | n; |
Heiko Schocher | 4ce5a72 | 2009-07-20 09:59:37 +0200 | [diff] [blame] | 475 | } |
| 476 | } |
| 477 | } |
Hans de Goede | 0db2bbd | 2014-06-13 22:55:48 +0200 | [diff] [blame] | 478 | writel(baud, &twsi->baudrate); |
mario.six@gdsys.cc | c68c624 | 2016-07-21 11:57:12 +0200 | [diff] [blame] | 479 | |
| 480 | /* Wait for controller for one tick */ |
| 481 | #ifdef CONFIG_DM_I2C |
| 482 | ndelay(calc_tick(highest_speed)); |
| 483 | #else |
| 484 | ndelay(10000); |
| 485 | #endif |
| 486 | return highest_speed; |
Hans de Goede | 0db2bbd | 2014-06-13 22:55:48 +0200 | [diff] [blame] | 487 | } |
| 488 | |
mario.six@gdsys.cc | 6e677ca | 2016-07-21 11:57:13 +0200 | [diff] [blame] | 489 | /* |
| 490 | * __twsi_i2c_init() - Initialize the I2C controller. |
| 491 | * |
| 492 | * @twsi: The MVTWSI register structure to use. |
| 493 | * @speed: The initial frequency the controller should run at |
| 494 | * in Hz. |
| 495 | * @slaveadd: The I2C address to be set for the I2C master. |
| 496 | * @actual_speed: A output parameter that receives the actual frequency |
| 497 | * in Hz the controller was set to by the function. |
| 498 | * @return Zero if the operation succeeded, or a non-zero code if a time out |
| 499 | * occurred. |
| 500 | */ |
mario.six@gdsys.cc | 3c4db63 | 2016-07-21 11:57:08 +0200 | [diff] [blame] | 501 | static void __twsi_i2c_init(struct mvtwsi_registers *twsi, int speed, |
mario.six@gdsys.cc | c68c624 | 2016-07-21 11:57:12 +0200 | [diff] [blame] | 502 | int slaveadd, uint *actual_speed) |
Hans de Goede | 0db2bbd | 2014-06-13 22:55:48 +0200 | [diff] [blame] | 503 | { |
Stefan Mavrodiev | 004b4cd | 2018-02-13 09:27:40 +0200 | [diff] [blame] | 504 | uint tmp_speed; |
| 505 | |
mario.six@gdsys.cc | 49c801b | 2016-07-21 11:57:03 +0200 | [diff] [blame] | 506 | /* Reset controller */ |
mario.six@gdsys.cc | 3c4db63 | 2016-07-21 11:57:08 +0200 | [diff] [blame] | 507 | twsi_reset(twsi); |
mario.six@gdsys.cc | 49c801b | 2016-07-21 11:57:03 +0200 | [diff] [blame] | 508 | /* Set speed */ |
Stefan Mavrodiev | 004b4cd | 2018-02-13 09:27:40 +0200 | [diff] [blame] | 509 | tmp_speed = __twsi_i2c_set_bus_speed(twsi, speed); |
Heinrich Schuchardt | 8bcf12c | 2018-01-31 00:57:17 +0100 | [diff] [blame] | 510 | if (actual_speed) |
Stefan Mavrodiev | 004b4cd | 2018-02-13 09:27:40 +0200 | [diff] [blame] | 511 | *actual_speed = tmp_speed; |
mario.six@gdsys.cc | 49c801b | 2016-07-21 11:57:03 +0200 | [diff] [blame] | 512 | /* Set slave address; even though we don't use it */ |
Hans de Goede | 0db2bbd | 2014-06-13 22:55:48 +0200 | [diff] [blame] | 513 | writel(slaveadd, &twsi->slave_address); |
| 514 | writel(0, &twsi->xtnd_slave_addr); |
mario.six@gdsys.cc | 49c801b | 2016-07-21 11:57:03 +0200 | [diff] [blame] | 515 | /* Assert STOP, but don't care for the result */ |
mario.six@gdsys.cc | c68c624 | 2016-07-21 11:57:12 +0200 | [diff] [blame] | 516 | #ifdef CONFIG_DM_I2C |
| 517 | (void) twsi_stop(twsi, calc_tick(*actual_speed)); |
| 518 | #else |
| 519 | (void) twsi_stop(twsi, 10000); |
| 520 | #endif |
Heiko Schocher | 4ce5a72 | 2009-07-20 09:59:37 +0200 | [diff] [blame] | 521 | } |
| 522 | |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 523 | /* |
mario.six@gdsys.cc | 6e677ca | 2016-07-21 11:57:13 +0200 | [diff] [blame] | 524 | * i2c_begin() - Start a I2C transaction. |
| 525 | * |
| 526 | * Begin a I2C transaction with a given expected start status and chip address. |
| 527 | * A START is asserted, and the address byte is sent to the I2C controller. The |
| 528 | * expected address status will be derived from the direction bit (bit 0) of |
| 529 | * the address byte. |
| 530 | * |
| 531 | * @twsi: The MVTWSI register structure to use. |
| 532 | * @expected_start_status: The I2C status the controller is expected to |
| 533 | * assert after the address byte was sent. |
| 534 | * @addr: The address byte to be sent. |
| 535 | * @tick: The duration of a clock cycle at the current |
| 536 | * I2C speed. |
| 537 | * @return Zero if the operation succeeded, or a non-zero code if a time out or |
| 538 | * unexpected I2C status occurred. |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 539 | */ |
mario.six@gdsys.cc | 3c4db63 | 2016-07-21 11:57:08 +0200 | [diff] [blame] | 540 | static int i2c_begin(struct mvtwsi_registers *twsi, int expected_start_status, |
mario.six@gdsys.cc | c68c624 | 2016-07-21 11:57:12 +0200 | [diff] [blame] | 541 | u8 addr, uint tick) |
Heiko Schocher | 4ce5a72 | 2009-07-20 09:59:37 +0200 | [diff] [blame] | 542 | { |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 543 | int status, expected_addr_status; |
Heiko Schocher | 4ce5a72 | 2009-07-20 09:59:37 +0200 | [diff] [blame] | 544 | |
mario.six@gdsys.cc | 49c801b | 2016-07-21 11:57:03 +0200 | [diff] [blame] | 545 | /* Compute the expected address status from the direction bit in |
| 546 | * the address byte */ |
| 547 | if (addr & 1) /* Reading */ |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 548 | expected_addr_status = MVTWSI_STATUS_ADDR_R_ACK; |
mario.six@gdsys.cc | 49c801b | 2016-07-21 11:57:03 +0200 | [diff] [blame] | 549 | else /* Writing */ |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 550 | expected_addr_status = MVTWSI_STATUS_ADDR_W_ACK; |
mario.six@gdsys.cc | 49c801b | 2016-07-21 11:57:03 +0200 | [diff] [blame] | 551 | /* Assert START */ |
mario.six@gdsys.cc | c68c624 | 2016-07-21 11:57:12 +0200 | [diff] [blame] | 552 | status = twsi_start(twsi, expected_start_status, tick); |
mario.six@gdsys.cc | 49c801b | 2016-07-21 11:57:03 +0200 | [diff] [blame] | 553 | /* Send out the address if the start went well */ |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 554 | if (status == 0) |
mario.six@gdsys.cc | c68c624 | 2016-07-21 11:57:12 +0200 | [diff] [blame] | 555 | status = twsi_send(twsi, addr, expected_addr_status, tick); |
mario.six@gdsys.cc | 49c801b | 2016-07-21 11:57:03 +0200 | [diff] [blame] | 556 | /* Return 0, or the status of the first failure */ |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 557 | return status; |
Heiko Schocher | 4ce5a72 | 2009-07-20 09:59:37 +0200 | [diff] [blame] | 558 | } |
| 559 | |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 560 | /* |
mario.six@gdsys.cc | 6e677ca | 2016-07-21 11:57:13 +0200 | [diff] [blame] | 561 | * __twsi_i2c_probe_chip() - Probe the given I2C chip address. |
| 562 | * |
| 563 | * This function begins a I2C read transaction, does a dummy read and NAKs; if |
| 564 | * the procedure succeeds, the chip is considered to be present. |
| 565 | * |
| 566 | * @twsi: The MVTWSI register structure to use. |
| 567 | * @chip: The chip address to probe. |
| 568 | * @tick: The duration of a clock cycle at the current I2C speed. |
| 569 | * @return Zero if the operation succeeded, or a non-zero code if a time out or |
| 570 | * unexpected I2C status occurred. |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 571 | */ |
mario.six@gdsys.cc | c68c624 | 2016-07-21 11:57:12 +0200 | [diff] [blame] | 572 | static int __twsi_i2c_probe_chip(struct mvtwsi_registers *twsi, uchar chip, |
| 573 | uint tick) |
Heiko Schocher | 4ce5a72 | 2009-07-20 09:59:37 +0200 | [diff] [blame] | 574 | { |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 575 | u8 dummy_byte; |
| 576 | int status; |
| 577 | |
mario.six@gdsys.cc | 49c801b | 2016-07-21 11:57:03 +0200 | [diff] [blame] | 578 | /* Begin i2c read */ |
mario.six@gdsys.cc | c68c624 | 2016-07-21 11:57:12 +0200 | [diff] [blame] | 579 | status = i2c_begin(twsi, MVTWSI_STATUS_START, (chip << 1) | 1, tick); |
mario.six@gdsys.cc | 49c801b | 2016-07-21 11:57:03 +0200 | [diff] [blame] | 580 | /* Dummy read was accepted: receive byte, but NAK it. */ |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 581 | if (status == 0) |
mario.six@gdsys.cc | c68c624 | 2016-07-21 11:57:12 +0200 | [diff] [blame] | 582 | status = twsi_recv(twsi, &dummy_byte, MVTWSI_READ_NAK, tick); |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 583 | /* Stop transaction */ |
mario.six@gdsys.cc | c68c624 | 2016-07-21 11:57:12 +0200 | [diff] [blame] | 584 | twsi_stop(twsi, tick); |
mario.six@gdsys.cc | 49c801b | 2016-07-21 11:57:03 +0200 | [diff] [blame] | 585 | /* Return 0, or the status of the first failure */ |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 586 | return status; |
| 587 | } |
| 588 | |
| 589 | /* |
mario.six@gdsys.cc | 6e677ca | 2016-07-21 11:57:13 +0200 | [diff] [blame] | 590 | * __twsi_i2c_read() - Read data from a I2C chip. |
| 591 | * |
| 592 | * This function begins a I2C write transaction, and transmits the address |
| 593 | * bytes; then begins a I2C read transaction, and receives the data bytes. |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 594 | * |
mario.six@gdsys.cc | 49c801b | 2016-07-21 11:57:03 +0200 | [diff] [blame] | 595 | * NOTE: Some devices want a stop right before the second start, while some |
| 596 | * will choke if it is there. Since deciding this is not yet supported in |
| 597 | * higher level APIs, we need to make a decision here, and for the moment that |
| 598 | * will be a repeated start without a preceding stop. |
mario.six@gdsys.cc | 6e677ca | 2016-07-21 11:57:13 +0200 | [diff] [blame] | 599 | * |
| 600 | * @twsi: The MVTWSI register structure to use. |
| 601 | * @chip: The chip address to read from. |
| 602 | * @addr: The address bytes to send. |
| 603 | * @alen: The length of the address bytes in bytes. |
| 604 | * @data: The buffer to receive the data read from the chip (has to have |
| 605 | * a size of at least 'length' bytes). |
| 606 | * @length: The amount of data to be read from the chip in bytes. |
| 607 | * @tick: The duration of a clock cycle at the current I2C speed. |
| 608 | * @return Zero if the operation succeeded, or a non-zero code if a time out or |
| 609 | * unexpected I2C status occurred. |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 610 | */ |
mario.six@gdsys.cc | 3c4db63 | 2016-07-21 11:57:08 +0200 | [diff] [blame] | 611 | static int __twsi_i2c_read(struct mvtwsi_registers *twsi, uchar chip, |
mario.six@gdsys.cc | c68c624 | 2016-07-21 11:57:12 +0200 | [diff] [blame] | 612 | u8 *addr, int alen, uchar *data, int length, |
| 613 | uint tick) |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 614 | { |
mario.six@gdsys.cc | 059fce9 | 2016-07-21 11:57:05 +0200 | [diff] [blame] | 615 | int status = 0; |
| 616 | int stop_status; |
mario.six@gdsys.cc | 24f9c6b | 2016-07-21 11:57:11 +0200 | [diff] [blame] | 617 | int expected_start = MVTWSI_STATUS_START; |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 618 | |
mario.six@gdsys.cc | 24f9c6b | 2016-07-21 11:57:11 +0200 | [diff] [blame] | 619 | if (alen > 0) { |
| 620 | /* Begin i2c write to send the address bytes */ |
mario.six@gdsys.cc | c68c624 | 2016-07-21 11:57:12 +0200 | [diff] [blame] | 621 | status = i2c_begin(twsi, expected_start, (chip << 1), tick); |
mario.six@gdsys.cc | 24f9c6b | 2016-07-21 11:57:11 +0200 | [diff] [blame] | 622 | /* Send address bytes */ |
| 623 | while ((status == 0) && alen--) |
Stefan Roese | 03d6cd9 | 2016-08-25 15:20:01 +0200 | [diff] [blame] | 624 | status = twsi_send(twsi, addr[alen], |
mario.six@gdsys.cc | c68c624 | 2016-07-21 11:57:12 +0200 | [diff] [blame] | 625 | MVTWSI_STATUS_DATA_W_ACK, tick); |
mario.six@gdsys.cc | 24f9c6b | 2016-07-21 11:57:11 +0200 | [diff] [blame] | 626 | /* Send repeated STARTs after the initial START */ |
| 627 | expected_start = MVTWSI_STATUS_REPEATED_START; |
| 628 | } |
mario.six@gdsys.cc | 49c801b | 2016-07-21 11:57:03 +0200 | [diff] [blame] | 629 | /* Begin i2c read to receive data bytes */ |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 630 | if (status == 0) |
mario.six@gdsys.cc | c68c624 | 2016-07-21 11:57:12 +0200 | [diff] [blame] | 631 | status = i2c_begin(twsi, expected_start, (chip << 1) | 1, tick); |
mario.six@gdsys.cc | 670514f | 2016-07-21 11:57:04 +0200 | [diff] [blame] | 632 | /* Receive actual data bytes; set NAK if we if we have nothing more to |
| 633 | * read */ |
| 634 | while ((status == 0) && length--) |
mario.six@gdsys.cc | 3c4db63 | 2016-07-21 11:57:08 +0200 | [diff] [blame] | 635 | status = twsi_recv(twsi, data++, |
mario.six@gdsys.cc | 670514f | 2016-07-21 11:57:04 +0200 | [diff] [blame] | 636 | length > 0 ? |
mario.six@gdsys.cc | c68c624 | 2016-07-21 11:57:12 +0200 | [diff] [blame] | 637 | MVTWSI_READ_ACK : MVTWSI_READ_NAK, tick); |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 638 | /* Stop transaction */ |
mario.six@gdsys.cc | c68c624 | 2016-07-21 11:57:12 +0200 | [diff] [blame] | 639 | stop_status = twsi_stop(twsi, tick); |
mario.six@gdsys.cc | 49c801b | 2016-07-21 11:57:03 +0200 | [diff] [blame] | 640 | /* Return 0, or the status of the first failure */ |
mario.six@gdsys.cc | 059fce9 | 2016-07-21 11:57:05 +0200 | [diff] [blame] | 641 | return status != 0 ? status : stop_status; |
Heiko Schocher | 4ce5a72 | 2009-07-20 09:59:37 +0200 | [diff] [blame] | 642 | } |
| 643 | |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 644 | /* |
mario.six@gdsys.cc | 6e677ca | 2016-07-21 11:57:13 +0200 | [diff] [blame] | 645 | * __twsi_i2c_write() - Send data to a I2C chip. |
| 646 | * |
| 647 | * This function begins a I2C write transaction, and transmits the address |
| 648 | * bytes; then begins a new I2C write transaction, and sends the data bytes. |
| 649 | * |
| 650 | * @twsi: The MVTWSI register structure to use. |
| 651 | * @chip: The chip address to read from. |
| 652 | * @addr: The address bytes to send. |
| 653 | * @alen: The length of the address bytes in bytes. |
| 654 | * @data: The buffer containing the data to be sent to the chip. |
| 655 | * @length: The length of data to be sent to the chip in bytes. |
| 656 | * @tick: The duration of a clock cycle at the current I2C speed. |
| 657 | * @return Zero if the operation succeeded, or a non-zero code if a time out or |
| 658 | * unexpected I2C status occurred. |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 659 | */ |
mario.six@gdsys.cc | 3c4db63 | 2016-07-21 11:57:08 +0200 | [diff] [blame] | 660 | static int __twsi_i2c_write(struct mvtwsi_registers *twsi, uchar chip, |
mario.six@gdsys.cc | c68c624 | 2016-07-21 11:57:12 +0200 | [diff] [blame] | 661 | u8 *addr, int alen, uchar *data, int length, |
| 662 | uint tick) |
Heiko Schocher | 4ce5a72 | 2009-07-20 09:59:37 +0200 | [diff] [blame] | 663 | { |
mario.six@gdsys.cc | 059fce9 | 2016-07-21 11:57:05 +0200 | [diff] [blame] | 664 | int status, stop_status; |
Heiko Schocher | 4ce5a72 | 2009-07-20 09:59:37 +0200 | [diff] [blame] | 665 | |
mario.six@gdsys.cc | 49c801b | 2016-07-21 11:57:03 +0200 | [diff] [blame] | 666 | /* Begin i2c write to send first the address bytes, then the |
| 667 | * data bytes */ |
mario.six@gdsys.cc | c68c624 | 2016-07-21 11:57:12 +0200 | [diff] [blame] | 668 | status = i2c_begin(twsi, MVTWSI_STATUS_START, (chip << 1), tick); |
mario.six@gdsys.cc | 49c801b | 2016-07-21 11:57:03 +0200 | [diff] [blame] | 669 | /* Send address bytes */ |
mario.six@gdsys.cc | f8a10ed | 2016-07-21 11:57:09 +0200 | [diff] [blame] | 670 | while ((status == 0) && (alen-- > 0)) |
Stefan Roese | 03d6cd9 | 2016-08-25 15:20:01 +0200 | [diff] [blame] | 671 | status = twsi_send(twsi, addr[alen], MVTWSI_STATUS_DATA_W_ACK, |
mario.six@gdsys.cc | c68c624 | 2016-07-21 11:57:12 +0200 | [diff] [blame] | 672 | tick); |
mario.six@gdsys.cc | 49c801b | 2016-07-21 11:57:03 +0200 | [diff] [blame] | 673 | /* Send data bytes */ |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 674 | while ((status == 0) && (length-- > 0)) |
mario.six@gdsys.cc | c68c624 | 2016-07-21 11:57:12 +0200 | [diff] [blame] | 675 | status = twsi_send(twsi, *(data++), MVTWSI_STATUS_DATA_W_ACK, |
| 676 | tick); |
Albert Aribaud | 306563a | 2010-08-27 18:26:05 +0200 | [diff] [blame] | 677 | /* Stop transaction */ |
mario.six@gdsys.cc | c68c624 | 2016-07-21 11:57:12 +0200 | [diff] [blame] | 678 | stop_status = twsi_stop(twsi, tick); |
mario.six@gdsys.cc | 49c801b | 2016-07-21 11:57:03 +0200 | [diff] [blame] | 679 | /* Return 0, or the status of the first failure */ |
mario.six@gdsys.cc | 059fce9 | 2016-07-21 11:57:05 +0200 | [diff] [blame] | 680 | return status != 0 ? status : stop_status; |
Heiko Schocher | 4ce5a72 | 2009-07-20 09:59:37 +0200 | [diff] [blame] | 681 | } |
| 682 | |
mario.six@gdsys.cc | 14a6ff2 | 2016-07-21 11:57:10 +0200 | [diff] [blame] | 683 | #ifndef CONFIG_DM_I2C |
mario.six@gdsys.cc | 61bc02b | 2016-07-21 11:57:07 +0200 | [diff] [blame] | 684 | static void twsi_i2c_init(struct i2c_adapter *adap, int speed, |
| 685 | int slaveadd) |
| 686 | { |
mario.six@gdsys.cc | 3c4db63 | 2016-07-21 11:57:08 +0200 | [diff] [blame] | 687 | struct mvtwsi_registers *twsi = twsi_get_base(adap); |
mario.six@gdsys.cc | c68c624 | 2016-07-21 11:57:12 +0200 | [diff] [blame] | 688 | __twsi_i2c_init(twsi, speed, slaveadd, NULL); |
mario.six@gdsys.cc | 61bc02b | 2016-07-21 11:57:07 +0200 | [diff] [blame] | 689 | } |
| 690 | |
| 691 | static uint twsi_i2c_set_bus_speed(struct i2c_adapter *adap, |
| 692 | uint requested_speed) |
| 693 | { |
mario.six@gdsys.cc | 3c4db63 | 2016-07-21 11:57:08 +0200 | [diff] [blame] | 694 | struct mvtwsi_registers *twsi = twsi_get_base(adap); |
mario.six@gdsys.cc | c68c624 | 2016-07-21 11:57:12 +0200 | [diff] [blame] | 695 | __twsi_i2c_set_bus_speed(twsi, requested_speed); |
| 696 | return 0; |
mario.six@gdsys.cc | 61bc02b | 2016-07-21 11:57:07 +0200 | [diff] [blame] | 697 | } |
| 698 | |
| 699 | static int twsi_i2c_probe(struct i2c_adapter *adap, uchar chip) |
| 700 | { |
mario.six@gdsys.cc | 3c4db63 | 2016-07-21 11:57:08 +0200 | [diff] [blame] | 701 | struct mvtwsi_registers *twsi = twsi_get_base(adap); |
mario.six@gdsys.cc | c68c624 | 2016-07-21 11:57:12 +0200 | [diff] [blame] | 702 | return __twsi_i2c_probe_chip(twsi, chip, 10000); |
mario.six@gdsys.cc | 61bc02b | 2016-07-21 11:57:07 +0200 | [diff] [blame] | 703 | } |
| 704 | |
| 705 | static int twsi_i2c_read(struct i2c_adapter *adap, uchar chip, uint addr, |
| 706 | int alen, uchar *data, int length) |
| 707 | { |
mario.six@gdsys.cc | 3c4db63 | 2016-07-21 11:57:08 +0200 | [diff] [blame] | 708 | struct mvtwsi_registers *twsi = twsi_get_base(adap); |
mario.six@gdsys.cc | f8a10ed | 2016-07-21 11:57:09 +0200 | [diff] [blame] | 709 | u8 addr_bytes[4]; |
| 710 | |
| 711 | addr_bytes[0] = (addr >> 0) & 0xFF; |
| 712 | addr_bytes[1] = (addr >> 8) & 0xFF; |
| 713 | addr_bytes[2] = (addr >> 16) & 0xFF; |
| 714 | addr_bytes[3] = (addr >> 24) & 0xFF; |
| 715 | |
mario.six@gdsys.cc | c68c624 | 2016-07-21 11:57:12 +0200 | [diff] [blame] | 716 | return __twsi_i2c_read(twsi, chip, addr_bytes, alen, data, length, |
| 717 | 10000); |
mario.six@gdsys.cc | 61bc02b | 2016-07-21 11:57:07 +0200 | [diff] [blame] | 718 | } |
| 719 | |
| 720 | static int twsi_i2c_write(struct i2c_adapter *adap, uchar chip, uint addr, |
| 721 | int alen, uchar *data, int length) |
| 722 | { |
mario.six@gdsys.cc | 3c4db63 | 2016-07-21 11:57:08 +0200 | [diff] [blame] | 723 | struct mvtwsi_registers *twsi = twsi_get_base(adap); |
mario.six@gdsys.cc | f8a10ed | 2016-07-21 11:57:09 +0200 | [diff] [blame] | 724 | u8 addr_bytes[4]; |
| 725 | |
| 726 | addr_bytes[0] = (addr >> 0) & 0xFF; |
| 727 | addr_bytes[1] = (addr >> 8) & 0xFF; |
| 728 | addr_bytes[2] = (addr >> 16) & 0xFF; |
| 729 | addr_bytes[3] = (addr >> 24) & 0xFF; |
| 730 | |
mario.six@gdsys.cc | c68c624 | 2016-07-21 11:57:12 +0200 | [diff] [blame] | 731 | return __twsi_i2c_write(twsi, chip, addr_bytes, alen, data, length, |
| 732 | 10000); |
mario.six@gdsys.cc | 61bc02b | 2016-07-21 11:57:07 +0200 | [diff] [blame] | 733 | } |
| 734 | |
Paul Kocialkowski | dd82242 | 2015-04-10 23:09:51 +0200 | [diff] [blame] | 735 | #ifdef CONFIG_I2C_MVTWSI_BASE0 |
Hans de Goede | 0db2bbd | 2014-06-13 22:55:48 +0200 | [diff] [blame] | 736 | U_BOOT_I2C_ADAP_COMPLETE(twsi0, twsi_i2c_init, twsi_i2c_probe, |
| 737 | twsi_i2c_read, twsi_i2c_write, |
| 738 | twsi_i2c_set_bus_speed, |
| 739 | CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE, 0) |
Paul Kocialkowski | dd82242 | 2015-04-10 23:09:51 +0200 | [diff] [blame] | 740 | #endif |
| 741 | #ifdef CONFIG_I2C_MVTWSI_BASE1 |
| 742 | U_BOOT_I2C_ADAP_COMPLETE(twsi1, twsi_i2c_init, twsi_i2c_probe, |
| 743 | twsi_i2c_read, twsi_i2c_write, |
| 744 | twsi_i2c_set_bus_speed, |
| 745 | CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE, 1) |
| 746 | |
| 747 | #endif |
| 748 | #ifdef CONFIG_I2C_MVTWSI_BASE2 |
| 749 | U_BOOT_I2C_ADAP_COMPLETE(twsi2, twsi_i2c_init, twsi_i2c_probe, |
| 750 | twsi_i2c_read, twsi_i2c_write, |
| 751 | twsi_i2c_set_bus_speed, |
| 752 | CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE, 2) |
| 753 | |
| 754 | #endif |
| 755 | #ifdef CONFIG_I2C_MVTWSI_BASE3 |
| 756 | U_BOOT_I2C_ADAP_COMPLETE(twsi3, twsi_i2c_init, twsi_i2c_probe, |
| 757 | twsi_i2c_read, twsi_i2c_write, |
| 758 | twsi_i2c_set_bus_speed, |
| 759 | CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE, 3) |
| 760 | |
| 761 | #endif |
| 762 | #ifdef CONFIG_I2C_MVTWSI_BASE4 |
| 763 | U_BOOT_I2C_ADAP_COMPLETE(twsi4, twsi_i2c_init, twsi_i2c_probe, |
| 764 | twsi_i2c_read, twsi_i2c_write, |
| 765 | twsi_i2c_set_bus_speed, |
| 766 | CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE, 4) |
| 767 | |
| 768 | #endif |
Jelle van der Waa | 9d08268 | 2016-01-14 14:06:26 +0100 | [diff] [blame] | 769 | #ifdef CONFIG_I2C_MVTWSI_BASE5 |
| 770 | U_BOOT_I2C_ADAP_COMPLETE(twsi5, twsi_i2c_init, twsi_i2c_probe, |
| 771 | twsi_i2c_read, twsi_i2c_write, |
| 772 | twsi_i2c_set_bus_speed, |
| 773 | CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE, 5) |
| 774 | |
| 775 | #endif |
mario.six@gdsys.cc | 14a6ff2 | 2016-07-21 11:57:10 +0200 | [diff] [blame] | 776 | #else /* CONFIG_DM_I2C */ |
| 777 | |
| 778 | static int mvtwsi_i2c_probe_chip(struct udevice *bus, u32 chip_addr, |
| 779 | u32 chip_flags) |
| 780 | { |
| 781 | struct mvtwsi_i2c_dev *dev = dev_get_priv(bus); |
mario.six@gdsys.cc | c68c624 | 2016-07-21 11:57:12 +0200 | [diff] [blame] | 782 | return __twsi_i2c_probe_chip(dev->base, chip_addr, dev->tick); |
mario.six@gdsys.cc | 14a6ff2 | 2016-07-21 11:57:10 +0200 | [diff] [blame] | 783 | } |
| 784 | |
| 785 | static int mvtwsi_i2c_set_bus_speed(struct udevice *bus, uint speed) |
| 786 | { |
| 787 | struct mvtwsi_i2c_dev *dev = dev_get_priv(bus); |
mario.six@gdsys.cc | c68c624 | 2016-07-21 11:57:12 +0200 | [diff] [blame] | 788 | |
| 789 | dev->speed = __twsi_i2c_set_bus_speed(dev->base, speed); |
| 790 | dev->tick = calc_tick(dev->speed); |
| 791 | |
| 792 | return 0; |
mario.six@gdsys.cc | 14a6ff2 | 2016-07-21 11:57:10 +0200 | [diff] [blame] | 793 | } |
| 794 | |
| 795 | static int mvtwsi_i2c_ofdata_to_platdata(struct udevice *bus) |
| 796 | { |
| 797 | struct mvtwsi_i2c_dev *dev = dev_get_priv(bus); |
| 798 | |
Simon Glass | a821c4a | 2017-05-17 17:18:05 -0600 | [diff] [blame] | 799 | dev->base = devfdt_get_addr_ptr(bus); |
mario.six@gdsys.cc | 14a6ff2 | 2016-07-21 11:57:10 +0200 | [diff] [blame] | 800 | |
| 801 | if (!dev->base) |
| 802 | return -ENOMEM; |
| 803 | |
Simon Glass | e160f7d | 2017-01-17 16:52:55 -0700 | [diff] [blame] | 804 | dev->index = fdtdec_get_int(gd->fdt_blob, dev_of_offset(bus), |
mario.six@gdsys.cc | 14a6ff2 | 2016-07-21 11:57:10 +0200 | [diff] [blame] | 805 | "cell-index", -1); |
Simon Glass | e160f7d | 2017-01-17 16:52:55 -0700 | [diff] [blame] | 806 | dev->slaveadd = fdtdec_get_int(gd->fdt_blob, dev_of_offset(bus), |
mario.six@gdsys.cc | 14a6ff2 | 2016-07-21 11:57:10 +0200 | [diff] [blame] | 807 | "u-boot,i2c-slave-addr", 0x0); |
Simon Glass | e160f7d | 2017-01-17 16:52:55 -0700 | [diff] [blame] | 808 | dev->speed = fdtdec_get_int(gd->fdt_blob, dev_of_offset(bus), |
mario.six@gdsys.cc | 14a6ff2 | 2016-07-21 11:57:10 +0200 | [diff] [blame] | 809 | "clock-frequency", 100000); |
| 810 | return 0; |
| 811 | } |
| 812 | |
Baruch Siach | 173ec35 | 2018-06-07 12:38:10 +0300 | [diff] [blame] | 813 | static void twsi_disable_i2c_slave(struct mvtwsi_registers *twsi) |
| 814 | { |
| 815 | clrbits_le32(&twsi->debug, BIT(18)); |
| 816 | } |
| 817 | |
| 818 | static int mvtwsi_i2c_bind(struct udevice *bus) |
| 819 | { |
| 820 | struct mvtwsi_registers *twsi = devfdt_get_addr_ptr(bus); |
| 821 | |
| 822 | /* Disable the hidden slave in i2c0 of these platforms */ |
| 823 | if ((IS_ENABLED(CONFIG_ARMADA_38X) || IS_ENABLED(CONFIG_KIRKWOOD)) |
| 824 | && bus->req_seq == 0) |
| 825 | twsi_disable_i2c_slave(twsi); |
| 826 | |
| 827 | return 0; |
| 828 | } |
| 829 | |
mario.six@gdsys.cc | 14a6ff2 | 2016-07-21 11:57:10 +0200 | [diff] [blame] | 830 | static int mvtwsi_i2c_probe(struct udevice *bus) |
| 831 | { |
| 832 | struct mvtwsi_i2c_dev *dev = dev_get_priv(bus); |
mario.six@gdsys.cc | c68c624 | 2016-07-21 11:57:12 +0200 | [diff] [blame] | 833 | uint actual_speed; |
| 834 | |
| 835 | __twsi_i2c_init(dev->base, dev->speed, dev->slaveadd, &actual_speed); |
| 836 | dev->speed = actual_speed; |
| 837 | dev->tick = calc_tick(dev->speed); |
mario.six@gdsys.cc | 14a6ff2 | 2016-07-21 11:57:10 +0200 | [diff] [blame] | 838 | return 0; |
| 839 | } |
| 840 | |
| 841 | static int mvtwsi_i2c_xfer(struct udevice *bus, struct i2c_msg *msg, int nmsgs) |
| 842 | { |
| 843 | struct mvtwsi_i2c_dev *dev = dev_get_priv(bus); |
| 844 | struct i2c_msg *dmsg, *omsg, dummy; |
| 845 | |
| 846 | memset(&dummy, 0, sizeof(struct i2c_msg)); |
| 847 | |
| 848 | /* We expect either two messages (one with an offset and one with the |
| 849 | * actual data) or one message (just data or offset/data combined) */ |
| 850 | if (nmsgs > 2 || nmsgs == 0) { |
| 851 | debug("%s: Only one or two messages are supported.", __func__); |
| 852 | return -1; |
| 853 | } |
| 854 | |
| 855 | omsg = nmsgs == 1 ? &dummy : msg; |
| 856 | dmsg = nmsgs == 1 ? msg : msg + 1; |
| 857 | |
| 858 | if (dmsg->flags & I2C_M_RD) |
| 859 | return __twsi_i2c_read(dev->base, dmsg->addr, omsg->buf, |
mario.six@gdsys.cc | c68c624 | 2016-07-21 11:57:12 +0200 | [diff] [blame] | 860 | omsg->len, dmsg->buf, dmsg->len, |
| 861 | dev->tick); |
mario.six@gdsys.cc | 14a6ff2 | 2016-07-21 11:57:10 +0200 | [diff] [blame] | 862 | else |
| 863 | return __twsi_i2c_write(dev->base, dmsg->addr, omsg->buf, |
mario.six@gdsys.cc | c68c624 | 2016-07-21 11:57:12 +0200 | [diff] [blame] | 864 | omsg->len, dmsg->buf, dmsg->len, |
| 865 | dev->tick); |
mario.six@gdsys.cc | 14a6ff2 | 2016-07-21 11:57:10 +0200 | [diff] [blame] | 866 | } |
| 867 | |
| 868 | static const struct dm_i2c_ops mvtwsi_i2c_ops = { |
| 869 | .xfer = mvtwsi_i2c_xfer, |
| 870 | .probe_chip = mvtwsi_i2c_probe_chip, |
| 871 | .set_bus_speed = mvtwsi_i2c_set_bus_speed, |
| 872 | }; |
| 873 | |
| 874 | static const struct udevice_id mvtwsi_i2c_ids[] = { |
| 875 | { .compatible = "marvell,mv64xxx-i2c", }, |
Stefan Roese | 87de0eb | 2016-09-16 15:07:55 +0200 | [diff] [blame] | 876 | { .compatible = "marvell,mv78230-i2c", }, |
Jernej Skrabec | a8f01cc | 2017-04-27 00:03:36 +0200 | [diff] [blame] | 877 | { .compatible = "allwinner,sun6i-a31-i2c", }, |
mario.six@gdsys.cc | 14a6ff2 | 2016-07-21 11:57:10 +0200 | [diff] [blame] | 878 | { /* sentinel */ } |
| 879 | }; |
| 880 | |
| 881 | U_BOOT_DRIVER(i2c_mvtwsi) = { |
| 882 | .name = "i2c_mvtwsi", |
| 883 | .id = UCLASS_I2C, |
| 884 | .of_match = mvtwsi_i2c_ids, |
Baruch Siach | 173ec35 | 2018-06-07 12:38:10 +0300 | [diff] [blame] | 885 | .bind = mvtwsi_i2c_bind, |
mario.six@gdsys.cc | 14a6ff2 | 2016-07-21 11:57:10 +0200 | [diff] [blame] | 886 | .probe = mvtwsi_i2c_probe, |
| 887 | .ofdata_to_platdata = mvtwsi_i2c_ofdata_to_platdata, |
| 888 | .priv_auto_alloc_size = sizeof(struct mvtwsi_i2c_dev), |
| 889 | .ops = &mvtwsi_i2c_ops, |
| 890 | }; |
| 891 | #endif /* CONFIG_DM_I2C */ |