blob: 38bca897458661aa652e635bc252895fecdad812 [file] [log] [blame]
Heiko Schocher5cd2a242009-07-20 09:59:37 +02001/*
Albert Aribaud04280c42010-08-27 18:26:05 +02002 * Driver for the TWSI (i2c) controller found on the Marvell
3 * orion5x and kirkwood SoC families.
Heiko Schocher5cd2a242009-07-20 09:59:37 +02004 *
Albert ARIBAUD340983d2011-04-22 19:41:02 +02005 * Author: Albert Aribaud <albert.u.boot@aribaud.net>
Albert Aribaud04280c42010-08-27 18:26:05 +02006 * Copyright (c) 2010 Albert Aribaud.
Heiko Schocher5cd2a242009-07-20 09:59:37 +02007 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02008 * SPDX-License-Identifier: GPL-2.0+
Heiko Schocher5cd2a242009-07-20 09:59:37 +02009 */
Albert Aribaud04280c42010-08-27 18:26:05 +020010
Heiko Schocher5cd2a242009-07-20 09:59:37 +020011#include <common.h>
12#include <i2c.h>
Masahiro Yamada56a931c2016-09-21 11:28:55 +090013#include <linux/errno.h>
Heiko Schocher5cd2a242009-07-20 09:59:37 +020014#include <asm/io.h>
mario.six@gdsys.cce841b582016-07-21 11:57:12 +020015#include <linux/compat.h>
mario.six@gdsys.cc355a1272016-07-21 11:57:10 +020016#ifdef CONFIG_DM_I2C
17#include <dm.h>
18#endif
19
20DECLARE_GLOBAL_DATA_PTR;
Heiko Schocher5cd2a242009-07-20 09:59:37 +020021
Albert Aribaud04280c42010-08-27 18:26:05 +020022/*
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +020023 * Include a file that will provide CONFIG_I2C_MVTWSI_BASE*, and possibly other
24 * settings
Albert Aribaud04280c42010-08-27 18:26:05 +020025 */
Heiko Schocher5cd2a242009-07-20 09:59:37 +020026
mario.six@gdsys.cc355a1272016-07-21 11:57:10 +020027#ifndef CONFIG_DM_I2C
Albert Aribaud04280c42010-08-27 18:26:05 +020028#if defined(CONFIG_ORION5X)
29#include <asm/arch/orion5x.h>
Stefan Roeseeb083e52015-12-21 13:56:33 +010030#elif (defined(CONFIG_KIRKWOOD) || defined(CONFIG_ARCH_MVEBU))
Stefan Roesec2437842014-10-22 12:13:06 +020031#include <asm/arch/soc.h>
Jagan Teki68078f72016-10-13 14:19:35 +053032#elif defined(CONFIG_ARCH_SUNXI)
Hans de Goede3352b222014-06-13 22:55:49 +020033#include <asm/arch/i2c.h>
Albert Aribaud04280c42010-08-27 18:26:05 +020034#else
35#error Driver mvtwsi not supported by SoC or board
Heiko Schocher5cd2a242009-07-20 09:59:37 +020036#endif
mario.six@gdsys.cc355a1272016-07-21 11:57:10 +020037#endif /* CONFIG_DM_I2C */
Heiko Schocher5cd2a242009-07-20 09:59:37 +020038
Albert Aribaud04280c42010-08-27 18:26:05 +020039/*
Jernej Skrabec9220d502017-04-27 00:03:36 +020040 * 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 Aribaud04280c42010-08-27 18:26:05 +020048 * TWSI register structure
49 */
Heiko Schocher5cd2a242009-07-20 09:59:37 +020050
Jagan Teki68078f72016-10-13 14:19:35 +053051#ifdef CONFIG_ARCH_SUNXI
Hans de Goede3352b222014-06-13 22:55:49 +020052
Albert Aribaud04280c42010-08-27 18:26:05 +020053struct mvtwsi_registers {
54 u32 slave_address;
Hans de Goede3352b222014-06-13 22:55:49 +020055 u32 xtnd_slave_addr;
Albert Aribaud04280c42010-08-27 18:26:05 +020056 u32 data;
57 u32 control;
Hans de Goede3352b222014-06-13 22:55:49 +020058 u32 status;
59 u32 baudrate;
60 u32 soft_reset;
61};
62
63#else
64
65struct mvtwsi_registers {
66 u32 slave_address;
67 u32 data;
68 u32 control;
Albert Aribaud04280c42010-08-27 18:26:05 +020069 union {
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +020070 u32 status; /* When reading */
71 u32 baudrate; /* When writing */
Albert Aribaud04280c42010-08-27 18:26:05 +020072 };
73 u32 xtnd_slave_addr;
74 u32 reserved[2];
75 u32 soft_reset;
Heiko Schocher5cd2a242009-07-20 09:59:37 +020076};
77
Hans de Goede3352b222014-06-13 22:55:49 +020078#endif
79
mario.six@gdsys.cc355a1272016-07-21 11:57:10 +020080#ifdef CONFIG_DM_I2C
81struct mvtwsi_i2c_dev {
82 /* TWSI Register base for the device */
83 struct mvtwsi_registers *base;
84 /* Number of the device (determined from cell-index property) */
85 int index;
86 /* The I2C slave address for the device */
87 u8 slaveadd;
88 /* The configured I2C speed in Hz */
89 uint speed;
mario.six@gdsys.cce841b582016-07-21 11:57:12 +020090 /* The current length of a clock period (depending on speed) */
91 uint tick;
mario.six@gdsys.cc355a1272016-07-21 11:57:10 +020092};
93#endif /* CONFIG_DM_I2C */
94
Albert Aribaud04280c42010-08-27 18:26:05 +020095/*
mario.six@gdsys.ccf43d3e92016-07-21 11:57:02 +020096 * enum mvtwsi_ctrl_register_fields - Bit masks for flags in the control
97 * register
Albert Aribaud04280c42010-08-27 18:26:05 +020098 */
mario.six@gdsys.ccf43d3e92016-07-21 11:57:02 +020099enum mvtwsi_ctrl_register_fields {
100 /* Acknowledge bit */
101 MVTWSI_CONTROL_ACK = 0x00000004,
102 /* Interrupt flag */
103 MVTWSI_CONTROL_IFLG = 0x00000008,
104 /* Stop bit */
105 MVTWSI_CONTROL_STOP = 0x00000010,
106 /* Start bit */
107 MVTWSI_CONTROL_START = 0x00000020,
108 /* I2C enable */
109 MVTWSI_CONTROL_TWSIEN = 0x00000040,
110 /* Interrupt enable */
111 MVTWSI_CONTROL_INTEN = 0x00000080,
112};
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200113
Albert Aribaud04280c42010-08-27 18:26:05 +0200114/*
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200115 * On sun6i and newer, IFLG is a write-clear bit, which is cleared by writing 1;
116 * on other platforms, it is a normal r/w bit, which is cleared by writing 0.
Hans de Goede6b703e02016-01-14 14:06:25 +0100117 */
118
119#ifdef CONFIG_SUNXI_GEN_SUN6I
120#define MVTWSI_CONTROL_CLEAR_IFLG 0x00000008
121#else
122#define MVTWSI_CONTROL_CLEAR_IFLG 0x00000000
123#endif
124
125/*
mario.six@gdsys.ccf43d3e92016-07-21 11:57:02 +0200126 * enum mvstwsi_status_values - Possible values of I2C controller's status
127 * register
128 *
129 * Only those statuses expected in normal master operation on
130 * non-10-bit-address devices are specified.
131 *
132 * Every status that's unexpected during normal operation (bus errors,
133 * arbitration losses, missing ACKs...) is passed back to the caller as an error
Albert Aribaud04280c42010-08-27 18:26:05 +0200134 * code.
135 */
mario.six@gdsys.ccf43d3e92016-07-21 11:57:02 +0200136enum mvstwsi_status_values {
137 /* START condition transmitted */
138 MVTWSI_STATUS_START = 0x08,
139 /* Repeated START condition transmitted */
140 MVTWSI_STATUS_REPEATED_START = 0x10,
141 /* Address + write bit transmitted, ACK received */
142 MVTWSI_STATUS_ADDR_W_ACK = 0x18,
143 /* Data transmitted, ACK received */
144 MVTWSI_STATUS_DATA_W_ACK = 0x28,
145 /* Address + read bit transmitted, ACK received */
146 MVTWSI_STATUS_ADDR_R_ACK = 0x40,
147 /* Address + read bit transmitted, ACK not received */
148 MVTWSI_STATUS_ADDR_R_NAK = 0x48,
149 /* Data received, ACK transmitted */
150 MVTWSI_STATUS_DATA_R_ACK = 0x50,
151 /* Data received, ACK not transmitted */
152 MVTWSI_STATUS_DATA_R_NAK = 0x58,
153 /* No relevant status */
154 MVTWSI_STATUS_IDLE = 0xF8,
155};
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200156
Albert Aribaud04280c42010-08-27 18:26:05 +0200157/*
mario.six@gdsys.cc1cc2c282016-07-21 11:57:04 +0200158 * enum mvstwsi_ack_flags - Determine whether a read byte should be
159 * acknowledged or not.
160 */
161enum mvtwsi_ack_flags {
162 /* Send NAK after received byte */
163 MVTWSI_READ_NAK = 0,
164 /* Send ACK after received byte */
165 MVTWSI_READ_ACK = 1,
166};
167
mario.six@gdsys.ccefd1fb82016-07-21 11:57:13 +0200168/*
169 * calc_tick() - Calculate the duration of a clock cycle from the I2C speed
170 *
171 * @speed: The speed in Hz to calculate the clock cycle duration for.
172 * @return The duration of a clock cycle in ns.
173 */
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200174inline uint calc_tick(uint speed)
175{
176 /* One tick = the duration of a period at the specified speed in ns (we
177 * add 100 ns to be on the safe side) */
178 return (1000000000u / speed) + 100;
179}
180
mario.six@gdsys.cc355a1272016-07-21 11:57:10 +0200181#ifndef CONFIG_DM_I2C
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200182
mario.six@gdsys.cc1cc2c282016-07-21 11:57:04 +0200183/*
mario.six@gdsys.ccefd1fb82016-07-21 11:57:13 +0200184 * twsi_get_base() - Get controller register base for specified adapter
185 *
186 * @adap: Adapter to get the register base for.
187 * @return Register base for the specified adapter.
Albert Aribaud04280c42010-08-27 18:26:05 +0200188 */
Paul Kocialkowski2fae3e72015-04-10 23:09:51 +0200189static struct mvtwsi_registers *twsi_get_base(struct i2c_adapter *adap)
190{
191 switch (adap->hwadapnr) {
192#ifdef CONFIG_I2C_MVTWSI_BASE0
193 case 0:
mario.six@gdsys.cc2b656eb2016-07-21 11:57:01 +0200194 return (struct mvtwsi_registers *)CONFIG_I2C_MVTWSI_BASE0;
Paul Kocialkowski2fae3e72015-04-10 23:09:51 +0200195#endif
196#ifdef CONFIG_I2C_MVTWSI_BASE1
197 case 1:
mario.six@gdsys.cc2b656eb2016-07-21 11:57:01 +0200198 return (struct mvtwsi_registers *)CONFIG_I2C_MVTWSI_BASE1;
Paul Kocialkowski2fae3e72015-04-10 23:09:51 +0200199#endif
200#ifdef CONFIG_I2C_MVTWSI_BASE2
201 case 2:
mario.six@gdsys.cc2b656eb2016-07-21 11:57:01 +0200202 return (struct mvtwsi_registers *)CONFIG_I2C_MVTWSI_BASE2;
Paul Kocialkowski2fae3e72015-04-10 23:09:51 +0200203#endif
204#ifdef CONFIG_I2C_MVTWSI_BASE3
205 case 3:
mario.six@gdsys.cc2b656eb2016-07-21 11:57:01 +0200206 return (struct mvtwsi_registers *)CONFIG_I2C_MVTWSI_BASE3;
Paul Kocialkowski2fae3e72015-04-10 23:09:51 +0200207#endif
208#ifdef CONFIG_I2C_MVTWSI_BASE4
209 case 4:
mario.six@gdsys.cc2b656eb2016-07-21 11:57:01 +0200210 return (struct mvtwsi_registers *)CONFIG_I2C_MVTWSI_BASE4;
Paul Kocialkowski2fae3e72015-04-10 23:09:51 +0200211#endif
Jelle van der Waa8d3d7c12016-01-14 14:06:26 +0100212#ifdef CONFIG_I2C_MVTWSI_BASE5
213 case 5:
mario.six@gdsys.cc2b656eb2016-07-21 11:57:01 +0200214 return (struct mvtwsi_registers *)CONFIG_I2C_MVTWSI_BASE5;
Jelle van der Waa8d3d7c12016-01-14 14:06:26 +0100215#endif
Paul Kocialkowski2fae3e72015-04-10 23:09:51 +0200216 default:
217 printf("Missing mvtwsi controller %d base\n", adap->hwadapnr);
218 break;
219 }
220
221 return NULL;
222}
mario.six@gdsys.cc355a1272016-07-21 11:57:10 +0200223#endif
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200224
225/*
mario.six@gdsys.ccf43d3e92016-07-21 11:57:02 +0200226 * enum mvtwsi_error_class - types of I2C errors
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200227 */
mario.six@gdsys.ccf43d3e92016-07-21 11:57:02 +0200228enum mvtwsi_error_class {
229 /* The controller returned a different status than expected */
230 MVTWSI_ERROR_WRONG_STATUS = 0x01,
231 /* The controller timed out */
232 MVTWSI_ERROR_TIMEOUT = 0x02,
233};
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200234
mario.six@gdsys.ccf43d3e92016-07-21 11:57:02 +0200235/*
236 * mvtwsi_error() - Build I2C return code from error information
237 *
238 * For debugging purposes, this function packs some information of an occurred
239 * error into a return code. These error codes are returned from I2C API
240 * functions (i2c_{read,write}, dm_i2c_{read,write}, etc.).
241 *
242 * @ec: The error class of the error (enum mvtwsi_error_class).
243 * @lc: The last value of the control register.
244 * @ls: The last value of the status register.
245 * @es: The expected value of the status register.
246 * @return The generated error code.
247 */
248inline uint mvtwsi_error(uint ec, uint lc, uint ls, uint es)
249{
250 return ((ec << 24) & 0xFF000000)
251 | ((lc << 16) & 0x00FF0000)
252 | ((ls << 8) & 0x0000FF00)
253 | (es & 0xFF);
254}
Albert Aribaud04280c42010-08-27 18:26:05 +0200255
256/*
mario.six@gdsys.ccefd1fb82016-07-21 11:57:13 +0200257 * twsi_wait() - Wait for I2C bus interrupt flag and check status, or time out.
258 *
259 * @return Zero if status is as expected, or a non-zero code if either a time
260 * out occurred, or the status was not the expected one.
Albert Aribaud04280c42010-08-27 18:26:05 +0200261 */
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200262static int twsi_wait(struct mvtwsi_registers *twsi, int expected_status,
263 uint tick)
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200264{
Albert Aribaud04280c42010-08-27 18:26:05 +0200265 int control, status;
266 int timeout = 1000;
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200267
Albert Aribaud04280c42010-08-27 18:26:05 +0200268 do {
269 control = readl(&twsi->control);
270 if (control & MVTWSI_CONTROL_IFLG) {
271 status = readl(&twsi->status);
272 if (status == expected_status)
273 return 0;
274 else
mario.six@gdsys.ccf43d3e92016-07-21 11:57:02 +0200275 return mvtwsi_error(
Albert Aribaud04280c42010-08-27 18:26:05 +0200276 MVTWSI_ERROR_WRONG_STATUS,
277 control, status, expected_status);
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200278 }
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200279 ndelay(tick); /* One clock cycle */
Albert Aribaud04280c42010-08-27 18:26:05 +0200280 } while (timeout--);
281 status = readl(&twsi->status);
mario.six@gdsys.ccf43d3e92016-07-21 11:57:02 +0200282 return mvtwsi_error(MVTWSI_ERROR_TIMEOUT, control, status,
283 expected_status);
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200284}
285
Albert Aribaud04280c42010-08-27 18:26:05 +0200286/*
mario.six@gdsys.ccefd1fb82016-07-21 11:57:13 +0200287 * twsi_start() - Assert a START condition on the bus.
288 *
289 * This function is used in both single I2C transactions and inside
290 * back-to-back transactions (repeated starts).
291 *
292 * @twsi: The MVTWSI register structure to use.
293 * @expected_status: The I2C bus status expected to be asserted after the
294 * operation completion.
295 * @tick: The duration of a clock cycle at the current I2C speed.
296 * @return Zero if status is as expected, or a non-zero code if either a time
297 * out occurred or the status was not the expected one.
Albert Aribaud04280c42010-08-27 18:26:05 +0200298 */
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200299static int twsi_start(struct mvtwsi_registers *twsi, int expected_status,
300 uint tick)
Albert Aribaud04280c42010-08-27 18:26:05 +0200301{
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200302 /* Assert START */
mario.six@gdsys.cc1cc2c282016-07-21 11:57:04 +0200303 writel(MVTWSI_CONTROL_TWSIEN | MVTWSI_CONTROL_START |
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200304 MVTWSI_CONTROL_CLEAR_IFLG, &twsi->control);
305 /* Wait for controller to process START */
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200306 return twsi_wait(twsi, expected_status, tick);
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200307}
308
Albert Aribaud04280c42010-08-27 18:26:05 +0200309/*
mario.six@gdsys.ccefd1fb82016-07-21 11:57:13 +0200310 * twsi_send() - Send a byte on the I2C bus.
311 *
312 * The byte may be part of an address byte or data.
313 *
314 * @twsi: The MVTWSI register structure to use.
315 * @byte: The byte to send.
316 * @expected_status: The I2C bus status expected to be asserted after the
317 * operation completion.
318 * @tick: The duration of a clock cycle at the current I2C speed.
319 * @return Zero if status is as expected, or a non-zero code if either a time
320 * out occurred or the status was not the expected one.
Albert Aribaud04280c42010-08-27 18:26:05 +0200321 */
mario.six@gdsys.cc9f7f6892016-07-21 11:57:08 +0200322static int twsi_send(struct mvtwsi_registers *twsi, u8 byte,
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200323 int expected_status, uint tick)
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200324{
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200325 /* Write byte to data register for sending */
Albert Aribaud04280c42010-08-27 18:26:05 +0200326 writel(byte, &twsi->data);
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200327 /* Clear any pending interrupt -- that will cause sending */
mario.six@gdsys.cc1cc2c282016-07-21 11:57:04 +0200328 writel(MVTWSI_CONTROL_TWSIEN | MVTWSI_CONTROL_CLEAR_IFLG,
329 &twsi->control);
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200330 /* Wait for controller to receive byte, and check ACK */
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200331 return twsi_wait(twsi, expected_status, tick);
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200332}
333
Albert Aribaud04280c42010-08-27 18:26:05 +0200334/*
mario.six@gdsys.ccefd1fb82016-07-21 11:57:13 +0200335 * twsi_recv() - Receive a byte on the I2C bus.
336 *
337 * The static variable mvtwsi_control_flags controls whether we ack or nak.
338 *
339 * @twsi: The MVTWSI register structure to use.
340 * @byte: The byte to send.
341 * @ack_flag: Flag that determines whether the received byte should
342 * be acknowledged by the controller or not (sent ACK/NAK).
343 * @tick: The duration of a clock cycle at the current I2C speed.
344 * @return Zero if status is as expected, or a non-zero code if either a time
345 * out occurred or the status was not the expected one.
Albert Aribaud04280c42010-08-27 18:26:05 +0200346 */
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200347static int twsi_recv(struct mvtwsi_registers *twsi, u8 *byte, int ack_flag,
348 uint tick)
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200349{
mario.six@gdsys.cc1cc2c282016-07-21 11:57:04 +0200350 int expected_status, status, control;
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200351
mario.six@gdsys.cc1cc2c282016-07-21 11:57:04 +0200352 /* Compute expected status based on passed ACK flag */
353 expected_status = ack_flag ? MVTWSI_STATUS_DATA_R_ACK :
354 MVTWSI_STATUS_DATA_R_NAK;
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200355 /* Acknowledge *previous state*, and launch receive */
mario.six@gdsys.cc1cc2c282016-07-21 11:57:04 +0200356 control = MVTWSI_CONTROL_TWSIEN;
357 control |= ack_flag == MVTWSI_READ_ACK ? MVTWSI_CONTROL_ACK : 0;
358 writel(control | MVTWSI_CONTROL_CLEAR_IFLG, &twsi->control);
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200359 /* Wait for controller to receive byte, and assert ACK or NAK */
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200360 status = twsi_wait(twsi, expected_status, tick);
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200361 /* If we did receive the expected byte, store it */
Albert Aribaud04280c42010-08-27 18:26:05 +0200362 if (status == 0)
363 *byte = readl(&twsi->data);
Albert Aribaud04280c42010-08-27 18:26:05 +0200364 return status;
365}
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200366
Albert Aribaud04280c42010-08-27 18:26:05 +0200367/*
mario.six@gdsys.ccefd1fb82016-07-21 11:57:13 +0200368 * twsi_stop() - Assert a STOP condition on the bus.
369 *
370 * This function is also used to force the bus back to idle state (SDA =
371 * SCL = 1).
372 *
373 * @twsi: The MVTWSI register structure to use.
374 * @tick: The duration of a clock cycle at the current I2C speed.
375 * @return Zero if the operation succeeded, or a non-zero code if a time out
376 * occurred.
Albert Aribaud04280c42010-08-27 18:26:05 +0200377 */
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200378static int twsi_stop(struct mvtwsi_registers *twsi, uint tick)
Albert Aribaud04280c42010-08-27 18:26:05 +0200379{
380 int control, stop_status;
mario.six@gdsys.ccbdf0f662016-07-21 11:57:05 +0200381 int status = 0;
Albert Aribaud04280c42010-08-27 18:26:05 +0200382 int timeout = 1000;
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200383
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200384 /* Assert STOP */
Albert Aribaud04280c42010-08-27 18:26:05 +0200385 control = MVTWSI_CONTROL_TWSIEN | MVTWSI_CONTROL_STOP;
Hans de Goede6b703e02016-01-14 14:06:25 +0100386 writel(control | MVTWSI_CONTROL_CLEAR_IFLG, &twsi->control);
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200387 /* Wait for IDLE; IFLG won't rise, so we can't use twsi_wait() */
Albert Aribaud04280c42010-08-27 18:26:05 +0200388 do {
389 stop_status = readl(&twsi->status);
390 if (stop_status == MVTWSI_STATUS_IDLE)
391 break;
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200392 ndelay(tick); /* One clock cycle */
Albert Aribaud04280c42010-08-27 18:26:05 +0200393 } while (timeout--);
394 control = readl(&twsi->control);
395 if (stop_status != MVTWSI_STATUS_IDLE)
mario.six@gdsys.ccbdf0f662016-07-21 11:57:05 +0200396 status = mvtwsi_error(MVTWSI_ERROR_TIMEOUT,
397 control, status, MVTWSI_STATUS_IDLE);
Albert Aribaud04280c42010-08-27 18:26:05 +0200398 return status;
399}
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200400
mario.six@gdsys.ccefd1fb82016-07-21 11:57:13 +0200401/*
402 * twsi_calc_freq() - Compute I2C frequency depending on m and n parameters.
403 *
404 * @n: Parameter 'n' for the frequency calculation algorithm.
405 * @m: Parameter 'm' for the frequency calculation algorithm.
406 * @return The I2C frequency corresponding to the passed m and n parameters.
407 */
mario.six@gdsys.cc9e118b32016-07-21 11:57:06 +0200408static uint twsi_calc_freq(const int n, const int m)
Stefan Roesecca56a72015-03-18 09:30:54 +0100409{
Jagan Teki68078f72016-10-13 14:19:35 +0530410#ifdef CONFIG_ARCH_SUNXI
Stefan Roesecca56a72015-03-18 09:30:54 +0100411 return CONFIG_SYS_TCLK / (10 * (m + 1) * (1 << n));
412#else
413 return CONFIG_SYS_TCLK / (10 * (m + 1) * (2 << n));
414#endif
415}
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200416
Albert Aribaud04280c42010-08-27 18:26:05 +0200417/*
mario.six@gdsys.ccefd1fb82016-07-21 11:57:13 +0200418 * twsi_reset() - Reset the I2C controller.
419 *
420 * Resetting the controller also resets the baud rate and slave address, hence
421 * they must be re-established after the reset.
422 *
423 * @twsi: The MVTWSI register structure to use.
Albert Aribaud04280c42010-08-27 18:26:05 +0200424 */
mario.six@gdsys.cc9f7f6892016-07-21 11:57:08 +0200425static void twsi_reset(struct mvtwsi_registers *twsi)
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200426{
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200427 /* Reset controller */
Albert Aribaud04280c42010-08-27 18:26:05 +0200428 writel(0, &twsi->soft_reset);
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200429 /* Wait 2 ms -- this is what the Marvell LSP does */
Albert Aribaud04280c42010-08-27 18:26:05 +0200430 udelay(20000);
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200431}
432
Albert Aribaud04280c42010-08-27 18:26:05 +0200433/*
mario.six@gdsys.ccefd1fb82016-07-21 11:57:13 +0200434 * __twsi_i2c_set_bus_speed() - Set the speed of the I2C controller.
435 *
436 * This function sets baud rate to the highest possible value that does not
437 * exceed the requested rate.
438 *
439 * @twsi: The MVTWSI register structure to use.
440 * @requested_speed: The desired frequency the controller should run at
441 * in Hz.
442 * @return The actual frequency the controller was configured to.
Albert Aribaud04280c42010-08-27 18:26:05 +0200443 */
mario.six@gdsys.cc9f7f6892016-07-21 11:57:08 +0200444static uint __twsi_i2c_set_bus_speed(struct mvtwsi_registers *twsi,
mario.six@gdsys.cca4ac8b72016-07-21 11:57:07 +0200445 uint requested_speed)
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200446{
mario.six@gdsys.cc9e118b32016-07-21 11:57:06 +0200447 uint tmp_speed, highest_speed, n, m;
448 uint baud = 0x44; /* Baud rate after controller reset */
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200449
Albert Aribaud04280c42010-08-27 18:26:05 +0200450 highest_speed = 0;
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200451 /* Successively try m, n combinations, and use the combination
452 * resulting in the largest speed that's not above the requested
453 * speed */
Albert Aribaud04280c42010-08-27 18:26:05 +0200454 for (n = 0; n < 8; n++) {
455 for (m = 0; m < 16; m++) {
Stefan Roesecca56a72015-03-18 09:30:54 +0100456 tmp_speed = twsi_calc_freq(n, m);
mario.six@gdsys.cc2b656eb2016-07-21 11:57:01 +0200457 if ((tmp_speed <= requested_speed) &&
458 (tmp_speed > highest_speed)) {
Albert Aribaud04280c42010-08-27 18:26:05 +0200459 highest_speed = tmp_speed;
460 baud = (m << 3) | n;
461 }
462 }
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200463 }
Hans de Goede9830f1c2014-06-13 22:55:48 +0200464 writel(baud, &twsi->baudrate);
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200465
466 /* Wait for controller for one tick */
467#ifdef CONFIG_DM_I2C
468 ndelay(calc_tick(highest_speed));
469#else
470 ndelay(10000);
471#endif
472 return highest_speed;
Hans de Goede9830f1c2014-06-13 22:55:48 +0200473}
474
mario.six@gdsys.ccefd1fb82016-07-21 11:57:13 +0200475/*
476 * __twsi_i2c_init() - Initialize the I2C controller.
477 *
478 * @twsi: The MVTWSI register structure to use.
479 * @speed: The initial frequency the controller should run at
480 * in Hz.
481 * @slaveadd: The I2C address to be set for the I2C master.
482 * @actual_speed: A output parameter that receives the actual frequency
483 * in Hz the controller was set to by the function.
484 * @return Zero if the operation succeeded, or a non-zero code if a time out
485 * occurred.
486 */
mario.six@gdsys.cc9f7f6892016-07-21 11:57:08 +0200487static void __twsi_i2c_init(struct mvtwsi_registers *twsi, int speed,
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200488 int slaveadd, uint *actual_speed)
Hans de Goede9830f1c2014-06-13 22:55:48 +0200489{
Stefan Mavrodiev6425ebd2018-02-13 09:27:40 +0200490 uint tmp_speed;
491
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200492 /* Reset controller */
mario.six@gdsys.cc9f7f6892016-07-21 11:57:08 +0200493 twsi_reset(twsi);
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200494 /* Set speed */
Stefan Mavrodiev6425ebd2018-02-13 09:27:40 +0200495 tmp_speed = __twsi_i2c_set_bus_speed(twsi, speed);
Heinrich Schuchardt5e0fd542018-01-31 00:57:17 +0100496 if (actual_speed)
Stefan Mavrodiev6425ebd2018-02-13 09:27:40 +0200497 *actual_speed = tmp_speed;
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200498 /* Set slave address; even though we don't use it */
Hans de Goede9830f1c2014-06-13 22:55:48 +0200499 writel(slaveadd, &twsi->slave_address);
500 writel(0, &twsi->xtnd_slave_addr);
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200501 /* Assert STOP, but don't care for the result */
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200502#ifdef CONFIG_DM_I2C
503 (void) twsi_stop(twsi, calc_tick(*actual_speed));
504#else
505 (void) twsi_stop(twsi, 10000);
506#endif
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200507}
508
Albert Aribaud04280c42010-08-27 18:26:05 +0200509/*
mario.six@gdsys.ccefd1fb82016-07-21 11:57:13 +0200510 * i2c_begin() - Start a I2C transaction.
511 *
512 * Begin a I2C transaction with a given expected start status and chip address.
513 * A START is asserted, and the address byte is sent to the I2C controller. The
514 * expected address status will be derived from the direction bit (bit 0) of
515 * the address byte.
516 *
517 * @twsi: The MVTWSI register structure to use.
518 * @expected_start_status: The I2C status the controller is expected to
519 * assert after the address byte was sent.
520 * @addr: The address byte to be sent.
521 * @tick: The duration of a clock cycle at the current
522 * I2C speed.
523 * @return Zero if the operation succeeded, or a non-zero code if a time out or
524 * unexpected I2C status occurred.
Albert Aribaud04280c42010-08-27 18:26:05 +0200525 */
mario.six@gdsys.cc9f7f6892016-07-21 11:57:08 +0200526static int i2c_begin(struct mvtwsi_registers *twsi, int expected_start_status,
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200527 u8 addr, uint tick)
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200528{
Albert Aribaud04280c42010-08-27 18:26:05 +0200529 int status, expected_addr_status;
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200530
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200531 /* Compute the expected address status from the direction bit in
532 * the address byte */
533 if (addr & 1) /* Reading */
Albert Aribaud04280c42010-08-27 18:26:05 +0200534 expected_addr_status = MVTWSI_STATUS_ADDR_R_ACK;
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200535 else /* Writing */
Albert Aribaud04280c42010-08-27 18:26:05 +0200536 expected_addr_status = MVTWSI_STATUS_ADDR_W_ACK;
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200537 /* Assert START */
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200538 status = twsi_start(twsi, expected_start_status, tick);
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200539 /* Send out the address if the start went well */
Albert Aribaud04280c42010-08-27 18:26:05 +0200540 if (status == 0)
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200541 status = twsi_send(twsi, addr, expected_addr_status, tick);
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200542 /* Return 0, or the status of the first failure */
Albert Aribaud04280c42010-08-27 18:26:05 +0200543 return status;
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200544}
545
Albert Aribaud04280c42010-08-27 18:26:05 +0200546/*
mario.six@gdsys.ccefd1fb82016-07-21 11:57:13 +0200547 * __twsi_i2c_probe_chip() - Probe the given I2C chip address.
548 *
549 * This function begins a I2C read transaction, does a dummy read and NAKs; if
550 * the procedure succeeds, the chip is considered to be present.
551 *
552 * @twsi: The MVTWSI register structure to use.
553 * @chip: The chip address to probe.
554 * @tick: The duration of a clock cycle at the current I2C speed.
555 * @return Zero if the operation succeeded, or a non-zero code if a time out or
556 * unexpected I2C status occurred.
Albert Aribaud04280c42010-08-27 18:26:05 +0200557 */
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200558static int __twsi_i2c_probe_chip(struct mvtwsi_registers *twsi, uchar chip,
559 uint tick)
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200560{
Albert Aribaud04280c42010-08-27 18:26:05 +0200561 u8 dummy_byte;
562 int status;
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200563
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200564 /* Begin i2c read */
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200565 status = i2c_begin(twsi, MVTWSI_STATUS_START, (chip << 1) | 1, tick);
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200566 /* Dummy read was accepted: receive byte, but NAK it. */
Albert Aribaud04280c42010-08-27 18:26:05 +0200567 if (status == 0)
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200568 status = twsi_recv(twsi, &dummy_byte, MVTWSI_READ_NAK, tick);
Albert Aribaud04280c42010-08-27 18:26:05 +0200569 /* Stop transaction */
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200570 twsi_stop(twsi, tick);
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200571 /* Return 0, or the status of the first failure */
Albert Aribaud04280c42010-08-27 18:26:05 +0200572 return status;
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200573}
574
Albert Aribaud04280c42010-08-27 18:26:05 +0200575/*
mario.six@gdsys.ccefd1fb82016-07-21 11:57:13 +0200576 * __twsi_i2c_read() - Read data from a I2C chip.
577 *
578 * This function begins a I2C write transaction, and transmits the address
579 * bytes; then begins a I2C read transaction, and receives the data bytes.
Albert Aribaud04280c42010-08-27 18:26:05 +0200580 *
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200581 * NOTE: Some devices want a stop right before the second start, while some
582 * will choke if it is there. Since deciding this is not yet supported in
583 * higher level APIs, we need to make a decision here, and for the moment that
584 * will be a repeated start without a preceding stop.
mario.six@gdsys.ccefd1fb82016-07-21 11:57:13 +0200585 *
586 * @twsi: The MVTWSI register structure to use.
587 * @chip: The chip address to read from.
588 * @addr: The address bytes to send.
589 * @alen: The length of the address bytes in bytes.
590 * @data: The buffer to receive the data read from the chip (has to have
591 * a size of at least 'length' bytes).
592 * @length: The amount of data to be read from the chip in bytes.
593 * @tick: The duration of a clock cycle at the current I2C speed.
594 * @return Zero if the operation succeeded, or a non-zero code if a time out or
595 * unexpected I2C status occurred.
Albert Aribaud04280c42010-08-27 18:26:05 +0200596 */
mario.six@gdsys.cc9f7f6892016-07-21 11:57:08 +0200597static int __twsi_i2c_read(struct mvtwsi_registers *twsi, uchar chip,
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200598 u8 *addr, int alen, uchar *data, int length,
599 uint tick)
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200600{
mario.six@gdsys.ccbdf0f662016-07-21 11:57:05 +0200601 int status = 0;
602 int stop_status;
mario.six@gdsys.cc029a84b2016-07-21 11:57:11 +0200603 int expected_start = MVTWSI_STATUS_START;
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200604
mario.six@gdsys.cc029a84b2016-07-21 11:57:11 +0200605 if (alen > 0) {
606 /* Begin i2c write to send the address bytes */
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200607 status = i2c_begin(twsi, expected_start, (chip << 1), tick);
mario.six@gdsys.cc029a84b2016-07-21 11:57:11 +0200608 /* Send address bytes */
609 while ((status == 0) && alen--)
Stefan Roeseabd7d312016-08-25 15:20:01 +0200610 status = twsi_send(twsi, addr[alen],
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200611 MVTWSI_STATUS_DATA_W_ACK, tick);
mario.six@gdsys.cc029a84b2016-07-21 11:57:11 +0200612 /* Send repeated STARTs after the initial START */
613 expected_start = MVTWSI_STATUS_REPEATED_START;
614 }
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200615 /* Begin i2c read to receive data bytes */
Albert Aribaud04280c42010-08-27 18:26:05 +0200616 if (status == 0)
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200617 status = i2c_begin(twsi, expected_start, (chip << 1) | 1, tick);
mario.six@gdsys.cc1cc2c282016-07-21 11:57:04 +0200618 /* Receive actual data bytes; set NAK if we if we have nothing more to
619 * read */
620 while ((status == 0) && length--)
mario.six@gdsys.cc9f7f6892016-07-21 11:57:08 +0200621 status = twsi_recv(twsi, data++,
mario.six@gdsys.cc1cc2c282016-07-21 11:57:04 +0200622 length > 0 ?
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200623 MVTWSI_READ_ACK : MVTWSI_READ_NAK, tick);
Albert Aribaud04280c42010-08-27 18:26:05 +0200624 /* Stop transaction */
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200625 stop_status = twsi_stop(twsi, tick);
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200626 /* Return 0, or the status of the first failure */
mario.six@gdsys.ccbdf0f662016-07-21 11:57:05 +0200627 return status != 0 ? status : stop_status;
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200628}
629
Albert Aribaud04280c42010-08-27 18:26:05 +0200630/*
mario.six@gdsys.ccefd1fb82016-07-21 11:57:13 +0200631 * __twsi_i2c_write() - Send data to a I2C chip.
632 *
633 * This function begins a I2C write transaction, and transmits the address
634 * bytes; then begins a new I2C write transaction, and sends the data bytes.
635 *
636 * @twsi: The MVTWSI register structure to use.
637 * @chip: The chip address to read from.
638 * @addr: The address bytes to send.
639 * @alen: The length of the address bytes in bytes.
640 * @data: The buffer containing the data to be sent to the chip.
641 * @length: The length of data to be sent to the chip in bytes.
642 * @tick: The duration of a clock cycle at the current I2C speed.
643 * @return Zero if the operation succeeded, or a non-zero code if a time out or
644 * unexpected I2C status occurred.
Albert Aribaud04280c42010-08-27 18:26:05 +0200645 */
mario.six@gdsys.cc9f7f6892016-07-21 11:57:08 +0200646static int __twsi_i2c_write(struct mvtwsi_registers *twsi, uchar chip,
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200647 u8 *addr, int alen, uchar *data, int length,
648 uint tick)
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200649{
mario.six@gdsys.ccbdf0f662016-07-21 11:57:05 +0200650 int status, stop_status;
Albert Aribaud04280c42010-08-27 18:26:05 +0200651
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200652 /* Begin i2c write to send first the address bytes, then the
653 * data bytes */
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200654 status = i2c_begin(twsi, MVTWSI_STATUS_START, (chip << 1), tick);
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200655 /* Send address bytes */
mario.six@gdsys.ccc4eceb52016-07-21 11:57:09 +0200656 while ((status == 0) && (alen-- > 0))
Stefan Roeseabd7d312016-08-25 15:20:01 +0200657 status = twsi_send(twsi, addr[alen], MVTWSI_STATUS_DATA_W_ACK,
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200658 tick);
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200659 /* Send data bytes */
Albert Aribaud04280c42010-08-27 18:26:05 +0200660 while ((status == 0) && (length-- > 0))
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200661 status = twsi_send(twsi, *(data++), MVTWSI_STATUS_DATA_W_ACK,
662 tick);
Albert Aribaud04280c42010-08-27 18:26:05 +0200663 /* Stop transaction */
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200664 stop_status = twsi_stop(twsi, tick);
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200665 /* Return 0, or the status of the first failure */
mario.six@gdsys.ccbdf0f662016-07-21 11:57:05 +0200666 return status != 0 ? status : stop_status;
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200667}
668
mario.six@gdsys.cc355a1272016-07-21 11:57:10 +0200669#ifndef CONFIG_DM_I2C
mario.six@gdsys.cca4ac8b72016-07-21 11:57:07 +0200670static void twsi_i2c_init(struct i2c_adapter *adap, int speed,
671 int slaveadd)
672{
mario.six@gdsys.cc9f7f6892016-07-21 11:57:08 +0200673 struct mvtwsi_registers *twsi = twsi_get_base(adap);
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200674 __twsi_i2c_init(twsi, speed, slaveadd, NULL);
mario.six@gdsys.cca4ac8b72016-07-21 11:57:07 +0200675}
676
677static uint twsi_i2c_set_bus_speed(struct i2c_adapter *adap,
678 uint requested_speed)
679{
mario.six@gdsys.cc9f7f6892016-07-21 11:57:08 +0200680 struct mvtwsi_registers *twsi = twsi_get_base(adap);
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200681 __twsi_i2c_set_bus_speed(twsi, requested_speed);
682 return 0;
mario.six@gdsys.cca4ac8b72016-07-21 11:57:07 +0200683}
684
685static int twsi_i2c_probe(struct i2c_adapter *adap, uchar chip)
686{
mario.six@gdsys.cc9f7f6892016-07-21 11:57:08 +0200687 struct mvtwsi_registers *twsi = twsi_get_base(adap);
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200688 return __twsi_i2c_probe_chip(twsi, chip, 10000);
mario.six@gdsys.cca4ac8b72016-07-21 11:57:07 +0200689}
690
691static int twsi_i2c_read(struct i2c_adapter *adap, uchar chip, uint addr,
692 int alen, uchar *data, int length)
693{
mario.six@gdsys.cc9f7f6892016-07-21 11:57:08 +0200694 struct mvtwsi_registers *twsi = twsi_get_base(adap);
mario.six@gdsys.ccc4eceb52016-07-21 11:57:09 +0200695 u8 addr_bytes[4];
696
697 addr_bytes[0] = (addr >> 0) & 0xFF;
698 addr_bytes[1] = (addr >> 8) & 0xFF;
699 addr_bytes[2] = (addr >> 16) & 0xFF;
700 addr_bytes[3] = (addr >> 24) & 0xFF;
701
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200702 return __twsi_i2c_read(twsi, chip, addr_bytes, alen, data, length,
703 10000);
mario.six@gdsys.cca4ac8b72016-07-21 11:57:07 +0200704}
705
706static int twsi_i2c_write(struct i2c_adapter *adap, uchar chip, uint addr,
707 int alen, uchar *data, int length)
708{
mario.six@gdsys.cc9f7f6892016-07-21 11:57:08 +0200709 struct mvtwsi_registers *twsi = twsi_get_base(adap);
mario.six@gdsys.ccc4eceb52016-07-21 11:57:09 +0200710 u8 addr_bytes[4];
711
712 addr_bytes[0] = (addr >> 0) & 0xFF;
713 addr_bytes[1] = (addr >> 8) & 0xFF;
714 addr_bytes[2] = (addr >> 16) & 0xFF;
715 addr_bytes[3] = (addr >> 24) & 0xFF;
716
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200717 return __twsi_i2c_write(twsi, chip, addr_bytes, alen, data, length,
718 10000);
mario.six@gdsys.cca4ac8b72016-07-21 11:57:07 +0200719}
720
Paul Kocialkowski2fae3e72015-04-10 23:09:51 +0200721#ifdef CONFIG_I2C_MVTWSI_BASE0
Hans de Goede9830f1c2014-06-13 22:55:48 +0200722U_BOOT_I2C_ADAP_COMPLETE(twsi0, twsi_i2c_init, twsi_i2c_probe,
723 twsi_i2c_read, twsi_i2c_write,
724 twsi_i2c_set_bus_speed,
725 CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE, 0)
Paul Kocialkowski2fae3e72015-04-10 23:09:51 +0200726#endif
727#ifdef CONFIG_I2C_MVTWSI_BASE1
728U_BOOT_I2C_ADAP_COMPLETE(twsi1, twsi_i2c_init, twsi_i2c_probe,
729 twsi_i2c_read, twsi_i2c_write,
730 twsi_i2c_set_bus_speed,
731 CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE, 1)
732
733#endif
734#ifdef CONFIG_I2C_MVTWSI_BASE2
735U_BOOT_I2C_ADAP_COMPLETE(twsi2, twsi_i2c_init, twsi_i2c_probe,
736 twsi_i2c_read, twsi_i2c_write,
737 twsi_i2c_set_bus_speed,
738 CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE, 2)
739
740#endif
741#ifdef CONFIG_I2C_MVTWSI_BASE3
742U_BOOT_I2C_ADAP_COMPLETE(twsi3, 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, 3)
746
747#endif
748#ifdef CONFIG_I2C_MVTWSI_BASE4
749U_BOOT_I2C_ADAP_COMPLETE(twsi4, 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, 4)
753
754#endif
Jelle van der Waa8d3d7c12016-01-14 14:06:26 +0100755#ifdef CONFIG_I2C_MVTWSI_BASE5
756U_BOOT_I2C_ADAP_COMPLETE(twsi5, 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, 5)
760
761#endif
mario.six@gdsys.cc355a1272016-07-21 11:57:10 +0200762#else /* CONFIG_DM_I2C */
763
764static int mvtwsi_i2c_probe_chip(struct udevice *bus, u32 chip_addr,
765 u32 chip_flags)
766{
767 struct mvtwsi_i2c_dev *dev = dev_get_priv(bus);
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200768 return __twsi_i2c_probe_chip(dev->base, chip_addr, dev->tick);
mario.six@gdsys.cc355a1272016-07-21 11:57:10 +0200769}
770
771static int mvtwsi_i2c_set_bus_speed(struct udevice *bus, uint speed)
772{
773 struct mvtwsi_i2c_dev *dev = dev_get_priv(bus);
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200774
775 dev->speed = __twsi_i2c_set_bus_speed(dev->base, speed);
776 dev->tick = calc_tick(dev->speed);
777
778 return 0;
mario.six@gdsys.cc355a1272016-07-21 11:57:10 +0200779}
780
781static int mvtwsi_i2c_ofdata_to_platdata(struct udevice *bus)
782{
783 struct mvtwsi_i2c_dev *dev = dev_get_priv(bus);
784
Simon Glassba1dea42017-05-17 17:18:05 -0600785 dev->base = devfdt_get_addr_ptr(bus);
mario.six@gdsys.cc355a1272016-07-21 11:57:10 +0200786
787 if (!dev->base)
788 return -ENOMEM;
789
Simon Glassdd79d6e2017-01-17 16:52:55 -0700790 dev->index = fdtdec_get_int(gd->fdt_blob, dev_of_offset(bus),
mario.six@gdsys.cc355a1272016-07-21 11:57:10 +0200791 "cell-index", -1);
Simon Glassdd79d6e2017-01-17 16:52:55 -0700792 dev->slaveadd = fdtdec_get_int(gd->fdt_blob, dev_of_offset(bus),
mario.six@gdsys.cc355a1272016-07-21 11:57:10 +0200793 "u-boot,i2c-slave-addr", 0x0);
Simon Glassdd79d6e2017-01-17 16:52:55 -0700794 dev->speed = fdtdec_get_int(gd->fdt_blob, dev_of_offset(bus),
mario.six@gdsys.cc355a1272016-07-21 11:57:10 +0200795 "clock-frequency", 100000);
796 return 0;
797}
798
799static int mvtwsi_i2c_probe(struct udevice *bus)
800{
801 struct mvtwsi_i2c_dev *dev = dev_get_priv(bus);
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200802 uint actual_speed;
803
804 __twsi_i2c_init(dev->base, dev->speed, dev->slaveadd, &actual_speed);
805 dev->speed = actual_speed;
806 dev->tick = calc_tick(dev->speed);
mario.six@gdsys.cc355a1272016-07-21 11:57:10 +0200807 return 0;
808}
809
810static int mvtwsi_i2c_xfer(struct udevice *bus, struct i2c_msg *msg, int nmsgs)
811{
812 struct mvtwsi_i2c_dev *dev = dev_get_priv(bus);
813 struct i2c_msg *dmsg, *omsg, dummy;
814
815 memset(&dummy, 0, sizeof(struct i2c_msg));
816
817 /* We expect either two messages (one with an offset and one with the
818 * actual data) or one message (just data or offset/data combined) */
819 if (nmsgs > 2 || nmsgs == 0) {
820 debug("%s: Only one or two messages are supported.", __func__);
821 return -1;
822 }
823
824 omsg = nmsgs == 1 ? &dummy : msg;
825 dmsg = nmsgs == 1 ? msg : msg + 1;
826
827 if (dmsg->flags & I2C_M_RD)
828 return __twsi_i2c_read(dev->base, dmsg->addr, omsg->buf,
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200829 omsg->len, dmsg->buf, dmsg->len,
830 dev->tick);
mario.six@gdsys.cc355a1272016-07-21 11:57:10 +0200831 else
832 return __twsi_i2c_write(dev->base, dmsg->addr, omsg->buf,
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200833 omsg->len, dmsg->buf, dmsg->len,
834 dev->tick);
mario.six@gdsys.cc355a1272016-07-21 11:57:10 +0200835}
836
837static const struct dm_i2c_ops mvtwsi_i2c_ops = {
838 .xfer = mvtwsi_i2c_xfer,
839 .probe_chip = mvtwsi_i2c_probe_chip,
840 .set_bus_speed = mvtwsi_i2c_set_bus_speed,
841};
842
843static const struct udevice_id mvtwsi_i2c_ids[] = {
844 { .compatible = "marvell,mv64xxx-i2c", },
Stefan Roese58e58d82016-09-16 15:07:55 +0200845 { .compatible = "marvell,mv78230-i2c", },
Jernej Skrabec9220d502017-04-27 00:03:36 +0200846 { .compatible = "allwinner,sun6i-a31-i2c", },
mario.six@gdsys.cc355a1272016-07-21 11:57:10 +0200847 { /* sentinel */ }
848};
849
850U_BOOT_DRIVER(i2c_mvtwsi) = {
851 .name = "i2c_mvtwsi",
852 .id = UCLASS_I2C,
853 .of_match = mvtwsi_i2c_ids,
854 .probe = mvtwsi_i2c_probe,
855 .ofdata_to_platdata = mvtwsi_i2c_ofdata_to_platdata,
856 .priv_auto_alloc_size = sizeof(struct mvtwsi_i2c_dev),
857 .ops = &mvtwsi_i2c_ops,
858};
859#endif /* CONFIG_DM_I2C */