blob: bd94ad256c59e5b28169edaf6daba8e119b8fe2d [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Heiko Schocher5cd2a242009-07-20 09:59:37 +02002/*
Albert Aribaud04280c42010-08-27 18:26:05 +02003 * Driver for the TWSI (i2c) controller found on the Marvell
4 * orion5x and kirkwood SoC families.
Heiko Schocher5cd2a242009-07-20 09:59:37 +02005 *
Albert ARIBAUD340983d2011-04-22 19:41:02 +02006 * Author: Albert Aribaud <albert.u.boot@aribaud.net>
Albert Aribaud04280c42010-08-27 18:26:05 +02007 * Copyright (c) 2010 Albert Aribaud.
Heiko Schocher5cd2a242009-07-20 09:59:37 +02008 */
Albert Aribaud04280c42010-08-27 18:26:05 +02009
Heiko Schocher5cd2a242009-07-20 09:59:37 +020010#include <common.h>
11#include <i2c.h>
Simon Glass0f2af882020-05-10 11:40:05 -060012#include <log.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>
Baruch Siach91006c72018-06-07 12:38:10 +030015#include <linux/bitops.h>
mario.six@gdsys.cce841b582016-07-21 11:57:12 +020016#include <linux/compat.h>
mario.six@gdsys.cc355a1272016-07-21 11:57:10 +020017#ifdef CONFIG_DM_I2C
18#include <dm.h>
19#endif
20
21DECLARE_GLOBAL_DATA_PTR;
Heiko Schocher5cd2a242009-07-20 09:59:37 +020022
Albert Aribaud04280c42010-08-27 18:26:05 +020023/*
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +020024 * Include a file that will provide CONFIG_I2C_MVTWSI_BASE*, and possibly other
25 * settings
Albert Aribaud04280c42010-08-27 18:26:05 +020026 */
Heiko Schocher5cd2a242009-07-20 09:59:37 +020027
mario.six@gdsys.cc355a1272016-07-21 11:57:10 +020028#ifndef CONFIG_DM_I2C
Trevor Woernerf9953752020-05-06 08:02:38 -040029#if defined(CONFIG_ARCH_ORION5X)
Albert Aribaud04280c42010-08-27 18:26:05 +020030#include <asm/arch/orion5x.h>
Trevor Woernerbb7ab072020-05-06 08:02:40 -040031#elif (defined(CONFIG_ARCH_KIRKWOOD) || defined(CONFIG_ARCH_MVEBU))
Stefan Roesec2437842014-10-22 12:13:06 +020032#include <asm/arch/soc.h>
Jagan Teki68078f72016-10-13 14:19:35 +053033#elif defined(CONFIG_ARCH_SUNXI)
Hans de Goede3352b222014-06-13 22:55:49 +020034#include <asm/arch/i2c.h>
Albert Aribaud04280c42010-08-27 18:26:05 +020035#else
36#error Driver mvtwsi not supported by SoC or board
Heiko Schocher5cd2a242009-07-20 09:59:37 +020037#endif
mario.six@gdsys.cc355a1272016-07-21 11:57:10 +020038#endif /* CONFIG_DM_I2C */
Heiko Schocher5cd2a242009-07-20 09:59:37 +020039
Albert Aribaud04280c42010-08-27 18:26:05 +020040/*
Jernej Skrabec9220d502017-04-27 00:03:36 +020041 * On SUNXI, we get CONFIG_SYS_TCLK from this include, so we want to
42 * always have it.
43 */
44#if defined(CONFIG_DM_I2C) && defined(CONFIG_ARCH_SUNXI)
45#include <asm/arch/i2c.h>
46#endif
47
48/*
Albert Aribaud04280c42010-08-27 18:26:05 +020049 * TWSI register structure
50 */
Heiko Schocher5cd2a242009-07-20 09:59:37 +020051
Jagan Teki68078f72016-10-13 14:19:35 +053052#ifdef CONFIG_ARCH_SUNXI
Hans de Goede3352b222014-06-13 22:55:49 +020053
Albert Aribaud04280c42010-08-27 18:26:05 +020054struct mvtwsi_registers {
55 u32 slave_address;
Hans de Goede3352b222014-06-13 22:55:49 +020056 u32 xtnd_slave_addr;
Albert Aribaud04280c42010-08-27 18:26:05 +020057 u32 data;
58 u32 control;
Hans de Goede3352b222014-06-13 22:55:49 +020059 u32 status;
60 u32 baudrate;
61 u32 soft_reset;
Baruch Siach91006c72018-06-07 12:38:10 +030062 u32 debug; /* Dummy field for build compatibility with mvebu */
Hans de Goede3352b222014-06-13 22:55:49 +020063};
64
65#else
66
67struct mvtwsi_registers {
68 u32 slave_address;
69 u32 data;
70 u32 control;
Albert Aribaud04280c42010-08-27 18:26:05 +020071 union {
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +020072 u32 status; /* When reading */
73 u32 baudrate; /* When writing */
Albert Aribaud04280c42010-08-27 18:26:05 +020074 };
75 u32 xtnd_slave_addr;
Baruch Siach91006c72018-06-07 12:38:10 +030076 u32 reserved0[2];
Albert Aribaud04280c42010-08-27 18:26:05 +020077 u32 soft_reset;
Baruch Siach91006c72018-06-07 12:38:10 +030078 u32 reserved1[27];
79 u32 debug;
Heiko Schocher5cd2a242009-07-20 09:59:37 +020080};
81
Hans de Goede3352b222014-06-13 22:55:49 +020082#endif
83
mario.six@gdsys.cc355a1272016-07-21 11:57:10 +020084#ifdef CONFIG_DM_I2C
85struct mvtwsi_i2c_dev {
86 /* TWSI Register base for the device */
87 struct mvtwsi_registers *base;
88 /* Number of the device (determined from cell-index property) */
89 int index;
90 /* The I2C slave address for the device */
91 u8 slaveadd;
92 /* The configured I2C speed in Hz */
93 uint speed;
mario.six@gdsys.cce841b582016-07-21 11:57:12 +020094 /* The current length of a clock period (depending on speed) */
95 uint tick;
mario.six@gdsys.cc355a1272016-07-21 11:57:10 +020096};
97#endif /* CONFIG_DM_I2C */
98
Albert Aribaud04280c42010-08-27 18:26:05 +020099/*
mario.six@gdsys.ccf43d3e92016-07-21 11:57:02 +0200100 * enum mvtwsi_ctrl_register_fields - Bit masks for flags in the control
101 * register
Albert Aribaud04280c42010-08-27 18:26:05 +0200102 */
mario.six@gdsys.ccf43d3e92016-07-21 11:57:02 +0200103enum mvtwsi_ctrl_register_fields {
104 /* Acknowledge bit */
105 MVTWSI_CONTROL_ACK = 0x00000004,
106 /* Interrupt flag */
107 MVTWSI_CONTROL_IFLG = 0x00000008,
108 /* Stop bit */
109 MVTWSI_CONTROL_STOP = 0x00000010,
110 /* Start bit */
111 MVTWSI_CONTROL_START = 0x00000020,
112 /* I2C enable */
113 MVTWSI_CONTROL_TWSIEN = 0x00000040,
114 /* Interrupt enable */
115 MVTWSI_CONTROL_INTEN = 0x00000080,
116};
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200117
Albert Aribaud04280c42010-08-27 18:26:05 +0200118/*
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200119 * On sun6i and newer, IFLG is a write-clear bit, which is cleared by writing 1;
120 * on other platforms, it is a normal r/w bit, which is cleared by writing 0.
Hans de Goede6b703e02016-01-14 14:06:25 +0100121 */
122
123#ifdef CONFIG_SUNXI_GEN_SUN6I
124#define MVTWSI_CONTROL_CLEAR_IFLG 0x00000008
125#else
126#define MVTWSI_CONTROL_CLEAR_IFLG 0x00000000
127#endif
128
129/*
mario.six@gdsys.ccf43d3e92016-07-21 11:57:02 +0200130 * enum mvstwsi_status_values - Possible values of I2C controller's status
131 * register
132 *
133 * Only those statuses expected in normal master operation on
134 * non-10-bit-address devices are specified.
135 *
136 * Every status that's unexpected during normal operation (bus errors,
137 * arbitration losses, missing ACKs...) is passed back to the caller as an error
Albert Aribaud04280c42010-08-27 18:26:05 +0200138 * code.
139 */
mario.six@gdsys.ccf43d3e92016-07-21 11:57:02 +0200140enum mvstwsi_status_values {
141 /* START condition transmitted */
142 MVTWSI_STATUS_START = 0x08,
143 /* Repeated START condition transmitted */
144 MVTWSI_STATUS_REPEATED_START = 0x10,
145 /* Address + write bit transmitted, ACK received */
146 MVTWSI_STATUS_ADDR_W_ACK = 0x18,
147 /* Data transmitted, ACK received */
148 MVTWSI_STATUS_DATA_W_ACK = 0x28,
149 /* Address + read bit transmitted, ACK received */
150 MVTWSI_STATUS_ADDR_R_ACK = 0x40,
151 /* Address + read bit transmitted, ACK not received */
152 MVTWSI_STATUS_ADDR_R_NAK = 0x48,
153 /* Data received, ACK transmitted */
154 MVTWSI_STATUS_DATA_R_ACK = 0x50,
155 /* Data received, ACK not transmitted */
156 MVTWSI_STATUS_DATA_R_NAK = 0x58,
157 /* No relevant status */
158 MVTWSI_STATUS_IDLE = 0xF8,
159};
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200160
Albert Aribaud04280c42010-08-27 18:26:05 +0200161/*
mario.six@gdsys.cc1cc2c282016-07-21 11:57:04 +0200162 * enum mvstwsi_ack_flags - Determine whether a read byte should be
163 * acknowledged or not.
164 */
165enum mvtwsi_ack_flags {
166 /* Send NAK after received byte */
167 MVTWSI_READ_NAK = 0,
168 /* Send ACK after received byte */
169 MVTWSI_READ_ACK = 1,
170};
171
mario.six@gdsys.ccefd1fb82016-07-21 11:57:13 +0200172/*
173 * calc_tick() - Calculate the duration of a clock cycle from the I2C speed
174 *
175 * @speed: The speed in Hz to calculate the clock cycle duration for.
176 * @return The duration of a clock cycle in ns.
177 */
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200178inline uint calc_tick(uint speed)
179{
180 /* One tick = the duration of a period at the specified speed in ns (we
181 * add 100 ns to be on the safe side) */
182 return (1000000000u / speed) + 100;
183}
184
mario.six@gdsys.cc355a1272016-07-21 11:57:10 +0200185#ifndef CONFIG_DM_I2C
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200186
mario.six@gdsys.cc1cc2c282016-07-21 11:57:04 +0200187/*
mario.six@gdsys.ccefd1fb82016-07-21 11:57:13 +0200188 * twsi_get_base() - Get controller register base for specified adapter
189 *
190 * @adap: Adapter to get the register base for.
191 * @return Register base for the specified adapter.
Albert Aribaud04280c42010-08-27 18:26:05 +0200192 */
Paul Kocialkowski2fae3e72015-04-10 23:09:51 +0200193static struct mvtwsi_registers *twsi_get_base(struct i2c_adapter *adap)
194{
195 switch (adap->hwadapnr) {
196#ifdef CONFIG_I2C_MVTWSI_BASE0
197 case 0:
mario.six@gdsys.cc2b656eb2016-07-21 11:57:01 +0200198 return (struct mvtwsi_registers *)CONFIG_I2C_MVTWSI_BASE0;
Paul Kocialkowski2fae3e72015-04-10 23:09:51 +0200199#endif
200#ifdef CONFIG_I2C_MVTWSI_BASE1
201 case 1:
mario.six@gdsys.cc2b656eb2016-07-21 11:57:01 +0200202 return (struct mvtwsi_registers *)CONFIG_I2C_MVTWSI_BASE1;
Paul Kocialkowski2fae3e72015-04-10 23:09:51 +0200203#endif
204#ifdef CONFIG_I2C_MVTWSI_BASE2
205 case 2:
mario.six@gdsys.cc2b656eb2016-07-21 11:57:01 +0200206 return (struct mvtwsi_registers *)CONFIG_I2C_MVTWSI_BASE2;
Paul Kocialkowski2fae3e72015-04-10 23:09:51 +0200207#endif
208#ifdef CONFIG_I2C_MVTWSI_BASE3
209 case 3:
mario.six@gdsys.cc2b656eb2016-07-21 11:57:01 +0200210 return (struct mvtwsi_registers *)CONFIG_I2C_MVTWSI_BASE3;
Paul Kocialkowski2fae3e72015-04-10 23:09:51 +0200211#endif
212#ifdef CONFIG_I2C_MVTWSI_BASE4
213 case 4:
mario.six@gdsys.cc2b656eb2016-07-21 11:57:01 +0200214 return (struct mvtwsi_registers *)CONFIG_I2C_MVTWSI_BASE4;
Paul Kocialkowski2fae3e72015-04-10 23:09:51 +0200215#endif
Jelle van der Waa8d3d7c12016-01-14 14:06:26 +0100216#ifdef CONFIG_I2C_MVTWSI_BASE5
217 case 5:
mario.six@gdsys.cc2b656eb2016-07-21 11:57:01 +0200218 return (struct mvtwsi_registers *)CONFIG_I2C_MVTWSI_BASE5;
Jelle van der Waa8d3d7c12016-01-14 14:06:26 +0100219#endif
Paul Kocialkowski2fae3e72015-04-10 23:09:51 +0200220 default:
221 printf("Missing mvtwsi controller %d base\n", adap->hwadapnr);
222 break;
223 }
224
225 return NULL;
226}
mario.six@gdsys.cc355a1272016-07-21 11:57:10 +0200227#endif
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200228
229/*
mario.six@gdsys.ccf43d3e92016-07-21 11:57:02 +0200230 * enum mvtwsi_error_class - types of I2C errors
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200231 */
mario.six@gdsys.ccf43d3e92016-07-21 11:57:02 +0200232enum mvtwsi_error_class {
233 /* The controller returned a different status than expected */
234 MVTWSI_ERROR_WRONG_STATUS = 0x01,
235 /* The controller timed out */
236 MVTWSI_ERROR_TIMEOUT = 0x02,
237};
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200238
mario.six@gdsys.ccf43d3e92016-07-21 11:57:02 +0200239/*
240 * mvtwsi_error() - Build I2C return code from error information
241 *
242 * For debugging purposes, this function packs some information of an occurred
243 * error into a return code. These error codes are returned from I2C API
244 * functions (i2c_{read,write}, dm_i2c_{read,write}, etc.).
245 *
246 * @ec: The error class of the error (enum mvtwsi_error_class).
247 * @lc: The last value of the control register.
248 * @ls: The last value of the status register.
249 * @es: The expected value of the status register.
250 * @return The generated error code.
251 */
252inline uint mvtwsi_error(uint ec, uint lc, uint ls, uint es)
253{
254 return ((ec << 24) & 0xFF000000)
255 | ((lc << 16) & 0x00FF0000)
256 | ((ls << 8) & 0x0000FF00)
257 | (es & 0xFF);
258}
Albert Aribaud04280c42010-08-27 18:26:05 +0200259
260/*
mario.six@gdsys.ccefd1fb82016-07-21 11:57:13 +0200261 * twsi_wait() - Wait for I2C bus interrupt flag and check status, or time out.
262 *
263 * @return Zero if status is as expected, or a non-zero code if either a time
264 * out occurred, or the status was not the expected one.
Albert Aribaud04280c42010-08-27 18:26:05 +0200265 */
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200266static int twsi_wait(struct mvtwsi_registers *twsi, int expected_status,
267 uint tick)
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200268{
Albert Aribaud04280c42010-08-27 18:26:05 +0200269 int control, status;
270 int timeout = 1000;
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200271
Albert Aribaud04280c42010-08-27 18:26:05 +0200272 do {
273 control = readl(&twsi->control);
274 if (control & MVTWSI_CONTROL_IFLG) {
Marek Behúnb9739da2019-05-02 16:53:38 +0200275 /*
276 * On Armada 38x it seems that the controller works as
277 * if it first set the MVTWSI_CONTROL_IFLAG in the
278 * control register and only after that it changed the
279 * status register.
280 * This sometimes caused weird bugs which only appeared
281 * on selected I2C speeds and even then only sometimes.
282 * We therefore add here a simple ndealy(100), which
283 * seems to fix this weird bug.
284 */
285 ndelay(100);
Albert Aribaud04280c42010-08-27 18:26:05 +0200286 status = readl(&twsi->status);
287 if (status == expected_status)
288 return 0;
289 else
mario.six@gdsys.ccf43d3e92016-07-21 11:57:02 +0200290 return mvtwsi_error(
Albert Aribaud04280c42010-08-27 18:26:05 +0200291 MVTWSI_ERROR_WRONG_STATUS,
292 control, status, expected_status);
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200293 }
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200294 ndelay(tick); /* One clock cycle */
Albert Aribaud04280c42010-08-27 18:26:05 +0200295 } while (timeout--);
296 status = readl(&twsi->status);
mario.six@gdsys.ccf43d3e92016-07-21 11:57:02 +0200297 return mvtwsi_error(MVTWSI_ERROR_TIMEOUT, control, status,
298 expected_status);
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200299}
300
Albert Aribaud04280c42010-08-27 18:26:05 +0200301/*
mario.six@gdsys.ccefd1fb82016-07-21 11:57:13 +0200302 * twsi_start() - Assert a START condition on the bus.
303 *
304 * This function is used in both single I2C transactions and inside
305 * back-to-back transactions (repeated starts).
306 *
307 * @twsi: The MVTWSI register structure to use.
308 * @expected_status: The I2C bus status expected to be asserted after the
309 * operation completion.
310 * @tick: The duration of a clock cycle at the current I2C speed.
311 * @return Zero if status is as expected, or a non-zero code if either a time
312 * out occurred or the status was not the expected one.
Albert Aribaud04280c42010-08-27 18:26:05 +0200313 */
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200314static int twsi_start(struct mvtwsi_registers *twsi, int expected_status,
315 uint tick)
Albert Aribaud04280c42010-08-27 18:26:05 +0200316{
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200317 /* Assert START */
mario.six@gdsys.cc1cc2c282016-07-21 11:57:04 +0200318 writel(MVTWSI_CONTROL_TWSIEN | MVTWSI_CONTROL_START |
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200319 MVTWSI_CONTROL_CLEAR_IFLG, &twsi->control);
320 /* Wait for controller to process START */
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200321 return twsi_wait(twsi, expected_status, tick);
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200322}
323
Albert Aribaud04280c42010-08-27 18:26:05 +0200324/*
mario.six@gdsys.ccefd1fb82016-07-21 11:57:13 +0200325 * twsi_send() - Send a byte on the I2C bus.
326 *
327 * The byte may be part of an address byte or data.
328 *
329 * @twsi: The MVTWSI register structure to use.
330 * @byte: The byte to send.
331 * @expected_status: The I2C bus status expected to be asserted after the
332 * operation completion.
333 * @tick: The duration of a clock cycle at the current I2C speed.
334 * @return Zero if status is as expected, or a non-zero code if either a time
335 * out occurred or the status was not the expected one.
Albert Aribaud04280c42010-08-27 18:26:05 +0200336 */
mario.six@gdsys.cc9f7f6892016-07-21 11:57:08 +0200337static int twsi_send(struct mvtwsi_registers *twsi, u8 byte,
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200338 int expected_status, uint tick)
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200339{
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200340 /* Write byte to data register for sending */
Albert Aribaud04280c42010-08-27 18:26:05 +0200341 writel(byte, &twsi->data);
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200342 /* Clear any pending interrupt -- that will cause sending */
mario.six@gdsys.cc1cc2c282016-07-21 11:57:04 +0200343 writel(MVTWSI_CONTROL_TWSIEN | MVTWSI_CONTROL_CLEAR_IFLG,
344 &twsi->control);
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200345 /* Wait for controller to receive byte, and check ACK */
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200346 return twsi_wait(twsi, expected_status, tick);
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200347}
348
Albert Aribaud04280c42010-08-27 18:26:05 +0200349/*
mario.six@gdsys.ccefd1fb82016-07-21 11:57:13 +0200350 * twsi_recv() - Receive a byte on the I2C bus.
351 *
352 * The static variable mvtwsi_control_flags controls whether we ack or nak.
353 *
354 * @twsi: The MVTWSI register structure to use.
355 * @byte: The byte to send.
356 * @ack_flag: Flag that determines whether the received byte should
357 * be acknowledged by the controller or not (sent ACK/NAK).
358 * @tick: The duration of a clock cycle at the current I2C speed.
359 * @return Zero if status is as expected, or a non-zero code if either a time
360 * out occurred or the status was not the expected one.
Albert Aribaud04280c42010-08-27 18:26:05 +0200361 */
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200362static int twsi_recv(struct mvtwsi_registers *twsi, u8 *byte, int ack_flag,
363 uint tick)
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200364{
mario.six@gdsys.cc1cc2c282016-07-21 11:57:04 +0200365 int expected_status, status, control;
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200366
mario.six@gdsys.cc1cc2c282016-07-21 11:57:04 +0200367 /* Compute expected status based on passed ACK flag */
368 expected_status = ack_flag ? MVTWSI_STATUS_DATA_R_ACK :
369 MVTWSI_STATUS_DATA_R_NAK;
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200370 /* Acknowledge *previous state*, and launch receive */
mario.six@gdsys.cc1cc2c282016-07-21 11:57:04 +0200371 control = MVTWSI_CONTROL_TWSIEN;
372 control |= ack_flag == MVTWSI_READ_ACK ? MVTWSI_CONTROL_ACK : 0;
373 writel(control | MVTWSI_CONTROL_CLEAR_IFLG, &twsi->control);
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200374 /* Wait for controller to receive byte, and assert ACK or NAK */
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200375 status = twsi_wait(twsi, expected_status, tick);
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200376 /* If we did receive the expected byte, store it */
Albert Aribaud04280c42010-08-27 18:26:05 +0200377 if (status == 0)
378 *byte = readl(&twsi->data);
Albert Aribaud04280c42010-08-27 18:26:05 +0200379 return status;
380}
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200381
Albert Aribaud04280c42010-08-27 18:26:05 +0200382/*
mario.six@gdsys.ccefd1fb82016-07-21 11:57:13 +0200383 * twsi_stop() - Assert a STOP condition on the bus.
384 *
385 * This function is also used to force the bus back to idle state (SDA =
386 * SCL = 1).
387 *
388 * @twsi: The MVTWSI register structure to use.
389 * @tick: The duration of a clock cycle at the current I2C speed.
390 * @return Zero if the operation succeeded, or a non-zero code if a time out
391 * occurred.
Albert Aribaud04280c42010-08-27 18:26:05 +0200392 */
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200393static int twsi_stop(struct mvtwsi_registers *twsi, uint tick)
Albert Aribaud04280c42010-08-27 18:26:05 +0200394{
395 int control, stop_status;
mario.six@gdsys.ccbdf0f662016-07-21 11:57:05 +0200396 int status = 0;
Albert Aribaud04280c42010-08-27 18:26:05 +0200397 int timeout = 1000;
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200398
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200399 /* Assert STOP */
Albert Aribaud04280c42010-08-27 18:26:05 +0200400 control = MVTWSI_CONTROL_TWSIEN | MVTWSI_CONTROL_STOP;
Hans de Goede6b703e02016-01-14 14:06:25 +0100401 writel(control | MVTWSI_CONTROL_CLEAR_IFLG, &twsi->control);
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200402 /* Wait for IDLE; IFLG won't rise, so we can't use twsi_wait() */
Albert Aribaud04280c42010-08-27 18:26:05 +0200403 do {
404 stop_status = readl(&twsi->status);
405 if (stop_status == MVTWSI_STATUS_IDLE)
406 break;
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200407 ndelay(tick); /* One clock cycle */
Albert Aribaud04280c42010-08-27 18:26:05 +0200408 } while (timeout--);
409 control = readl(&twsi->control);
410 if (stop_status != MVTWSI_STATUS_IDLE)
mario.six@gdsys.ccbdf0f662016-07-21 11:57:05 +0200411 status = mvtwsi_error(MVTWSI_ERROR_TIMEOUT,
412 control, status, MVTWSI_STATUS_IDLE);
Albert Aribaud04280c42010-08-27 18:26:05 +0200413 return status;
414}
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200415
mario.six@gdsys.ccefd1fb82016-07-21 11:57:13 +0200416/*
417 * twsi_calc_freq() - Compute I2C frequency depending on m and n parameters.
418 *
419 * @n: Parameter 'n' for the frequency calculation algorithm.
420 * @m: Parameter 'm' for the frequency calculation algorithm.
421 * @return The I2C frequency corresponding to the passed m and n parameters.
422 */
mario.six@gdsys.cc9e118b32016-07-21 11:57:06 +0200423static uint twsi_calc_freq(const int n, const int m)
Stefan Roesecca56a72015-03-18 09:30:54 +0100424{
Jagan Teki68078f72016-10-13 14:19:35 +0530425#ifdef CONFIG_ARCH_SUNXI
Stefan Roesecca56a72015-03-18 09:30:54 +0100426 return CONFIG_SYS_TCLK / (10 * (m + 1) * (1 << n));
427#else
428 return CONFIG_SYS_TCLK / (10 * (m + 1) * (2 << n));
429#endif
430}
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200431
Albert Aribaud04280c42010-08-27 18:26:05 +0200432/*
mario.six@gdsys.ccefd1fb82016-07-21 11:57:13 +0200433 * twsi_reset() - Reset the I2C controller.
434 *
435 * Resetting the controller also resets the baud rate and slave address, hence
436 * they must be re-established after the reset.
437 *
438 * @twsi: The MVTWSI register structure to use.
Albert Aribaud04280c42010-08-27 18:26:05 +0200439 */
mario.six@gdsys.cc9f7f6892016-07-21 11:57:08 +0200440static void twsi_reset(struct mvtwsi_registers *twsi)
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200441{
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200442 /* Reset controller */
Albert Aribaud04280c42010-08-27 18:26:05 +0200443 writel(0, &twsi->soft_reset);
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200444 /* Wait 2 ms -- this is what the Marvell LSP does */
Albert Aribaud04280c42010-08-27 18:26:05 +0200445 udelay(20000);
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200446}
447
Albert Aribaud04280c42010-08-27 18:26:05 +0200448/*
mario.six@gdsys.ccefd1fb82016-07-21 11:57:13 +0200449 * __twsi_i2c_set_bus_speed() - Set the speed of the I2C controller.
450 *
451 * This function sets baud rate to the highest possible value that does not
452 * exceed the requested rate.
453 *
454 * @twsi: The MVTWSI register structure to use.
455 * @requested_speed: The desired frequency the controller should run at
456 * in Hz.
457 * @return The actual frequency the controller was configured to.
Albert Aribaud04280c42010-08-27 18:26:05 +0200458 */
mario.six@gdsys.cc9f7f6892016-07-21 11:57:08 +0200459static uint __twsi_i2c_set_bus_speed(struct mvtwsi_registers *twsi,
mario.six@gdsys.cca4ac8b72016-07-21 11:57:07 +0200460 uint requested_speed)
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200461{
mario.six@gdsys.cc9e118b32016-07-21 11:57:06 +0200462 uint tmp_speed, highest_speed, n, m;
463 uint baud = 0x44; /* Baud rate after controller reset */
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200464
Albert Aribaud04280c42010-08-27 18:26:05 +0200465 highest_speed = 0;
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200466 /* Successively try m, n combinations, and use the combination
467 * resulting in the largest speed that's not above the requested
468 * speed */
Albert Aribaud04280c42010-08-27 18:26:05 +0200469 for (n = 0; n < 8; n++) {
470 for (m = 0; m < 16; m++) {
Stefan Roesecca56a72015-03-18 09:30:54 +0100471 tmp_speed = twsi_calc_freq(n, m);
mario.six@gdsys.cc2b656eb2016-07-21 11:57:01 +0200472 if ((tmp_speed <= requested_speed) &&
473 (tmp_speed > highest_speed)) {
Albert Aribaud04280c42010-08-27 18:26:05 +0200474 highest_speed = tmp_speed;
475 baud = (m << 3) | n;
476 }
477 }
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200478 }
Hans de Goede9830f1c2014-06-13 22:55:48 +0200479 writel(baud, &twsi->baudrate);
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200480
481 /* Wait for controller for one tick */
482#ifdef CONFIG_DM_I2C
483 ndelay(calc_tick(highest_speed));
484#else
485 ndelay(10000);
486#endif
487 return highest_speed;
Hans de Goede9830f1c2014-06-13 22:55:48 +0200488}
489
mario.six@gdsys.ccefd1fb82016-07-21 11:57:13 +0200490/*
491 * __twsi_i2c_init() - Initialize the I2C controller.
492 *
493 * @twsi: The MVTWSI register structure to use.
494 * @speed: The initial frequency the controller should run at
495 * in Hz.
496 * @slaveadd: The I2C address to be set for the I2C master.
497 * @actual_speed: A output parameter that receives the actual frequency
498 * in Hz the controller was set to by the function.
499 * @return Zero if the operation succeeded, or a non-zero code if a time out
500 * occurred.
501 */
mario.six@gdsys.cc9f7f6892016-07-21 11:57:08 +0200502static void __twsi_i2c_init(struct mvtwsi_registers *twsi, int speed,
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200503 int slaveadd, uint *actual_speed)
Hans de Goede9830f1c2014-06-13 22:55:48 +0200504{
Stefan Mavrodiev6425ebd2018-02-13 09:27:40 +0200505 uint tmp_speed;
506
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200507 /* Reset controller */
mario.six@gdsys.cc9f7f6892016-07-21 11:57:08 +0200508 twsi_reset(twsi);
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200509 /* Set speed */
Stefan Mavrodiev6425ebd2018-02-13 09:27:40 +0200510 tmp_speed = __twsi_i2c_set_bus_speed(twsi, speed);
Heinrich Schuchardt5e0fd542018-01-31 00:57:17 +0100511 if (actual_speed)
Stefan Mavrodiev6425ebd2018-02-13 09:27:40 +0200512 *actual_speed = tmp_speed;
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200513 /* Set slave address; even though we don't use it */
Hans de Goede9830f1c2014-06-13 22:55:48 +0200514 writel(slaveadd, &twsi->slave_address);
515 writel(0, &twsi->xtnd_slave_addr);
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200516 /* Assert STOP, but don't care for the result */
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200517#ifdef CONFIG_DM_I2C
518 (void) twsi_stop(twsi, calc_tick(*actual_speed));
519#else
520 (void) twsi_stop(twsi, 10000);
521#endif
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200522}
523
Albert Aribaud04280c42010-08-27 18:26:05 +0200524/*
mario.six@gdsys.ccefd1fb82016-07-21 11:57:13 +0200525 * i2c_begin() - Start a I2C transaction.
526 *
527 * Begin a I2C transaction with a given expected start status and chip address.
528 * A START is asserted, and the address byte is sent to the I2C controller. The
529 * expected address status will be derived from the direction bit (bit 0) of
530 * the address byte.
531 *
532 * @twsi: The MVTWSI register structure to use.
533 * @expected_start_status: The I2C status the controller is expected to
534 * assert after the address byte was sent.
535 * @addr: The address byte to be sent.
536 * @tick: The duration of a clock cycle at the current
537 * I2C speed.
538 * @return Zero if the operation succeeded, or a non-zero code if a time out or
539 * unexpected I2C status occurred.
Albert Aribaud04280c42010-08-27 18:26:05 +0200540 */
mario.six@gdsys.cc9f7f6892016-07-21 11:57:08 +0200541static int i2c_begin(struct mvtwsi_registers *twsi, int expected_start_status,
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200542 u8 addr, uint tick)
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200543{
Albert Aribaud04280c42010-08-27 18:26:05 +0200544 int status, expected_addr_status;
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200545
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200546 /* Compute the expected address status from the direction bit in
547 * the address byte */
548 if (addr & 1) /* Reading */
Albert Aribaud04280c42010-08-27 18:26:05 +0200549 expected_addr_status = MVTWSI_STATUS_ADDR_R_ACK;
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200550 else /* Writing */
Albert Aribaud04280c42010-08-27 18:26:05 +0200551 expected_addr_status = MVTWSI_STATUS_ADDR_W_ACK;
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200552 /* Assert START */
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200553 status = twsi_start(twsi, expected_start_status, tick);
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200554 /* Send out the address if the start went well */
Albert Aribaud04280c42010-08-27 18:26:05 +0200555 if (status == 0)
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200556 status = twsi_send(twsi, addr, expected_addr_status, tick);
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200557 /* Return 0, or the status of the first failure */
Albert Aribaud04280c42010-08-27 18:26:05 +0200558 return status;
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200559}
560
Albert Aribaud04280c42010-08-27 18:26:05 +0200561/*
mario.six@gdsys.ccefd1fb82016-07-21 11:57:13 +0200562 * __twsi_i2c_probe_chip() - Probe the given I2C chip address.
563 *
564 * This function begins a I2C read transaction, does a dummy read and NAKs; if
565 * the procedure succeeds, the chip is considered to be present.
566 *
567 * @twsi: The MVTWSI register structure to use.
568 * @chip: The chip address to probe.
569 * @tick: The duration of a clock cycle at the current I2C speed.
570 * @return Zero if the operation succeeded, or a non-zero code if a time out or
571 * unexpected I2C status occurred.
Albert Aribaud04280c42010-08-27 18:26:05 +0200572 */
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200573static int __twsi_i2c_probe_chip(struct mvtwsi_registers *twsi, uchar chip,
574 uint tick)
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200575{
Albert Aribaud04280c42010-08-27 18:26:05 +0200576 u8 dummy_byte;
577 int status;
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200578
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200579 /* Begin i2c read */
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200580 status = i2c_begin(twsi, MVTWSI_STATUS_START, (chip << 1) | 1, tick);
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200581 /* Dummy read was accepted: receive byte, but NAK it. */
Albert Aribaud04280c42010-08-27 18:26:05 +0200582 if (status == 0)
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200583 status = twsi_recv(twsi, &dummy_byte, MVTWSI_READ_NAK, tick);
Albert Aribaud04280c42010-08-27 18:26:05 +0200584 /* Stop transaction */
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200585 twsi_stop(twsi, tick);
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200586 /* Return 0, or the status of the first failure */
Albert Aribaud04280c42010-08-27 18:26:05 +0200587 return status;
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200588}
589
Albert Aribaud04280c42010-08-27 18:26:05 +0200590/*
mario.six@gdsys.ccefd1fb82016-07-21 11:57:13 +0200591 * __twsi_i2c_read() - Read data from a I2C chip.
592 *
593 * This function begins a I2C write transaction, and transmits the address
594 * bytes; then begins a I2C read transaction, and receives the data bytes.
Albert Aribaud04280c42010-08-27 18:26:05 +0200595 *
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200596 * NOTE: Some devices want a stop right before the second start, while some
597 * will choke if it is there. Since deciding this is not yet supported in
598 * higher level APIs, we need to make a decision here, and for the moment that
599 * will be a repeated start without a preceding stop.
mario.six@gdsys.ccefd1fb82016-07-21 11:57:13 +0200600 *
601 * @twsi: The MVTWSI register structure to use.
602 * @chip: The chip address to read from.
603 * @addr: The address bytes to send.
604 * @alen: The length of the address bytes in bytes.
605 * @data: The buffer to receive the data read from the chip (has to have
606 * a size of at least 'length' bytes).
607 * @length: The amount of data to be read from the chip in bytes.
608 * @tick: The duration of a clock cycle at the current I2C speed.
609 * @return Zero if the operation succeeded, or a non-zero code if a time out or
610 * unexpected I2C status occurred.
Albert Aribaud04280c42010-08-27 18:26:05 +0200611 */
mario.six@gdsys.cc9f7f6892016-07-21 11:57:08 +0200612static int __twsi_i2c_read(struct mvtwsi_registers *twsi, uchar chip,
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200613 u8 *addr, int alen, uchar *data, int length,
614 uint tick)
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200615{
mario.six@gdsys.ccbdf0f662016-07-21 11:57:05 +0200616 int status = 0;
617 int stop_status;
mario.six@gdsys.cc029a84b2016-07-21 11:57:11 +0200618 int expected_start = MVTWSI_STATUS_START;
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200619
mario.six@gdsys.cc029a84b2016-07-21 11:57:11 +0200620 if (alen > 0) {
621 /* Begin i2c write to send the address bytes */
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200622 status = i2c_begin(twsi, expected_start, (chip << 1), tick);
mario.six@gdsys.cc029a84b2016-07-21 11:57:11 +0200623 /* Send address bytes */
624 while ((status == 0) && alen--)
Stefan Roeseabd7d312016-08-25 15:20:01 +0200625 status = twsi_send(twsi, addr[alen],
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200626 MVTWSI_STATUS_DATA_W_ACK, tick);
mario.six@gdsys.cc029a84b2016-07-21 11:57:11 +0200627 /* Send repeated STARTs after the initial START */
628 expected_start = MVTWSI_STATUS_REPEATED_START;
629 }
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200630 /* Begin i2c read to receive data bytes */
Albert Aribaud04280c42010-08-27 18:26:05 +0200631 if (status == 0)
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200632 status = i2c_begin(twsi, expected_start, (chip << 1) | 1, tick);
mario.six@gdsys.cc1cc2c282016-07-21 11:57:04 +0200633 /* Receive actual data bytes; set NAK if we if we have nothing more to
634 * read */
635 while ((status == 0) && length--)
mario.six@gdsys.cc9f7f6892016-07-21 11:57:08 +0200636 status = twsi_recv(twsi, data++,
mario.six@gdsys.cc1cc2c282016-07-21 11:57:04 +0200637 length > 0 ?
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200638 MVTWSI_READ_ACK : MVTWSI_READ_NAK, tick);
Albert Aribaud04280c42010-08-27 18:26:05 +0200639 /* Stop transaction */
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200640 stop_status = twsi_stop(twsi, tick);
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200641 /* Return 0, or the status of the first failure */
mario.six@gdsys.ccbdf0f662016-07-21 11:57:05 +0200642 return status != 0 ? status : stop_status;
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200643}
644
Albert Aribaud04280c42010-08-27 18:26:05 +0200645/*
mario.six@gdsys.ccefd1fb82016-07-21 11:57:13 +0200646 * __twsi_i2c_write() - Send data to a I2C chip.
647 *
648 * This function begins a I2C write transaction, and transmits the address
649 * bytes; then begins a new I2C write transaction, and sends the data bytes.
650 *
651 * @twsi: The MVTWSI register structure to use.
652 * @chip: The chip address to read from.
653 * @addr: The address bytes to send.
654 * @alen: The length of the address bytes in bytes.
655 * @data: The buffer containing the data to be sent to the chip.
656 * @length: The length of data to be sent to the chip in bytes.
657 * @tick: The duration of a clock cycle at the current I2C speed.
658 * @return Zero if the operation succeeded, or a non-zero code if a time out or
659 * unexpected I2C status occurred.
Albert Aribaud04280c42010-08-27 18:26:05 +0200660 */
mario.six@gdsys.cc9f7f6892016-07-21 11:57:08 +0200661static int __twsi_i2c_write(struct mvtwsi_registers *twsi, uchar chip,
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200662 u8 *addr, int alen, uchar *data, int length,
663 uint tick)
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200664{
mario.six@gdsys.ccbdf0f662016-07-21 11:57:05 +0200665 int status, stop_status;
Albert Aribaud04280c42010-08-27 18:26:05 +0200666
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200667 /* Begin i2c write to send first the address bytes, then the
668 * data bytes */
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200669 status = i2c_begin(twsi, MVTWSI_STATUS_START, (chip << 1), tick);
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200670 /* Send address bytes */
mario.six@gdsys.ccc4eceb52016-07-21 11:57:09 +0200671 while ((status == 0) && (alen-- > 0))
Stefan Roeseabd7d312016-08-25 15:20:01 +0200672 status = twsi_send(twsi, addr[alen], MVTWSI_STATUS_DATA_W_ACK,
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200673 tick);
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200674 /* Send data bytes */
Albert Aribaud04280c42010-08-27 18:26:05 +0200675 while ((status == 0) && (length-- > 0))
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200676 status = twsi_send(twsi, *(data++), MVTWSI_STATUS_DATA_W_ACK,
677 tick);
Albert Aribaud04280c42010-08-27 18:26:05 +0200678 /* Stop transaction */
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200679 stop_status = twsi_stop(twsi, tick);
mario.six@gdsys.cc7b0c4312016-07-21 11:57:03 +0200680 /* Return 0, or the status of the first failure */
mario.six@gdsys.ccbdf0f662016-07-21 11:57:05 +0200681 return status != 0 ? status : stop_status;
Heiko Schocher5cd2a242009-07-20 09:59:37 +0200682}
683
mario.six@gdsys.cc355a1272016-07-21 11:57:10 +0200684#ifndef CONFIG_DM_I2C
mario.six@gdsys.cca4ac8b72016-07-21 11:57:07 +0200685static void twsi_i2c_init(struct i2c_adapter *adap, int speed,
686 int slaveadd)
687{
mario.six@gdsys.cc9f7f6892016-07-21 11:57:08 +0200688 struct mvtwsi_registers *twsi = twsi_get_base(adap);
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200689 __twsi_i2c_init(twsi, speed, slaveadd, NULL);
mario.six@gdsys.cca4ac8b72016-07-21 11:57:07 +0200690}
691
692static uint twsi_i2c_set_bus_speed(struct i2c_adapter *adap,
693 uint requested_speed)
694{
mario.six@gdsys.cc9f7f6892016-07-21 11:57:08 +0200695 struct mvtwsi_registers *twsi = twsi_get_base(adap);
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200696 __twsi_i2c_set_bus_speed(twsi, requested_speed);
697 return 0;
mario.six@gdsys.cca4ac8b72016-07-21 11:57:07 +0200698}
699
700static int twsi_i2c_probe(struct i2c_adapter *adap, uchar chip)
701{
mario.six@gdsys.cc9f7f6892016-07-21 11:57:08 +0200702 struct mvtwsi_registers *twsi = twsi_get_base(adap);
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200703 return __twsi_i2c_probe_chip(twsi, chip, 10000);
mario.six@gdsys.cca4ac8b72016-07-21 11:57:07 +0200704}
705
706static int twsi_i2c_read(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_read(twsi, chip, addr_bytes, alen, data, length,
718 10000);
mario.six@gdsys.cca4ac8b72016-07-21 11:57:07 +0200719}
720
721static int twsi_i2c_write(struct i2c_adapter *adap, uchar chip, uint addr,
722 int alen, uchar *data, int length)
723{
mario.six@gdsys.cc9f7f6892016-07-21 11:57:08 +0200724 struct mvtwsi_registers *twsi = twsi_get_base(adap);
mario.six@gdsys.ccc4eceb52016-07-21 11:57:09 +0200725 u8 addr_bytes[4];
726
727 addr_bytes[0] = (addr >> 0) & 0xFF;
728 addr_bytes[1] = (addr >> 8) & 0xFF;
729 addr_bytes[2] = (addr >> 16) & 0xFF;
730 addr_bytes[3] = (addr >> 24) & 0xFF;
731
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200732 return __twsi_i2c_write(twsi, chip, addr_bytes, alen, data, length,
733 10000);
mario.six@gdsys.cca4ac8b72016-07-21 11:57:07 +0200734}
735
Paul Kocialkowski2fae3e72015-04-10 23:09:51 +0200736#ifdef CONFIG_I2C_MVTWSI_BASE0
Hans de Goede9830f1c2014-06-13 22:55:48 +0200737U_BOOT_I2C_ADAP_COMPLETE(twsi0, twsi_i2c_init, twsi_i2c_probe,
738 twsi_i2c_read, twsi_i2c_write,
739 twsi_i2c_set_bus_speed,
740 CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE, 0)
Paul Kocialkowski2fae3e72015-04-10 23:09:51 +0200741#endif
742#ifdef CONFIG_I2C_MVTWSI_BASE1
743U_BOOT_I2C_ADAP_COMPLETE(twsi1, twsi_i2c_init, twsi_i2c_probe,
744 twsi_i2c_read, twsi_i2c_write,
745 twsi_i2c_set_bus_speed,
746 CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE, 1)
747
748#endif
749#ifdef CONFIG_I2C_MVTWSI_BASE2
750U_BOOT_I2C_ADAP_COMPLETE(twsi2, twsi_i2c_init, twsi_i2c_probe,
751 twsi_i2c_read, twsi_i2c_write,
752 twsi_i2c_set_bus_speed,
753 CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE, 2)
754
755#endif
756#ifdef CONFIG_I2C_MVTWSI_BASE3
757U_BOOT_I2C_ADAP_COMPLETE(twsi3, twsi_i2c_init, twsi_i2c_probe,
758 twsi_i2c_read, twsi_i2c_write,
759 twsi_i2c_set_bus_speed,
760 CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE, 3)
761
762#endif
763#ifdef CONFIG_I2C_MVTWSI_BASE4
764U_BOOT_I2C_ADAP_COMPLETE(twsi4, twsi_i2c_init, twsi_i2c_probe,
765 twsi_i2c_read, twsi_i2c_write,
766 twsi_i2c_set_bus_speed,
767 CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE, 4)
768
769#endif
Jelle van der Waa8d3d7c12016-01-14 14:06:26 +0100770#ifdef CONFIG_I2C_MVTWSI_BASE5
771U_BOOT_I2C_ADAP_COMPLETE(twsi5, twsi_i2c_init, twsi_i2c_probe,
772 twsi_i2c_read, twsi_i2c_write,
773 twsi_i2c_set_bus_speed,
774 CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE, 5)
775
776#endif
mario.six@gdsys.cc355a1272016-07-21 11:57:10 +0200777#else /* CONFIG_DM_I2C */
778
779static int mvtwsi_i2c_probe_chip(struct udevice *bus, u32 chip_addr,
780 u32 chip_flags)
781{
782 struct mvtwsi_i2c_dev *dev = dev_get_priv(bus);
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200783 return __twsi_i2c_probe_chip(dev->base, chip_addr, dev->tick);
mario.six@gdsys.cc355a1272016-07-21 11:57:10 +0200784}
785
786static int mvtwsi_i2c_set_bus_speed(struct udevice *bus, uint speed)
787{
788 struct mvtwsi_i2c_dev *dev = dev_get_priv(bus);
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200789
790 dev->speed = __twsi_i2c_set_bus_speed(dev->base, speed);
791 dev->tick = calc_tick(dev->speed);
792
793 return 0;
mario.six@gdsys.cc355a1272016-07-21 11:57:10 +0200794}
795
796static int mvtwsi_i2c_ofdata_to_platdata(struct udevice *bus)
797{
798 struct mvtwsi_i2c_dev *dev = dev_get_priv(bus);
799
Simon Glassba1dea42017-05-17 17:18:05 -0600800 dev->base = devfdt_get_addr_ptr(bus);
mario.six@gdsys.cc355a1272016-07-21 11:57:10 +0200801
802 if (!dev->base)
803 return -ENOMEM;
804
Simon Glassdd79d6e2017-01-17 16:52:55 -0700805 dev->index = fdtdec_get_int(gd->fdt_blob, dev_of_offset(bus),
mario.six@gdsys.cc355a1272016-07-21 11:57:10 +0200806 "cell-index", -1);
Simon Glassdd79d6e2017-01-17 16:52:55 -0700807 dev->slaveadd = fdtdec_get_int(gd->fdt_blob, dev_of_offset(bus),
mario.six@gdsys.cc355a1272016-07-21 11:57:10 +0200808 "u-boot,i2c-slave-addr", 0x0);
Simon Glassf0c99c52020-01-23 11:48:22 -0700809 dev->speed = dev_read_u32_default(bus, "clock-frequency",
810 I2C_SPEED_STANDARD_RATE);
811
mario.six@gdsys.cc355a1272016-07-21 11:57:10 +0200812 return 0;
813}
814
Baruch Siach91006c72018-06-07 12:38:10 +0300815static void twsi_disable_i2c_slave(struct mvtwsi_registers *twsi)
816{
817 clrbits_le32(&twsi->debug, BIT(18));
818}
819
820static int mvtwsi_i2c_bind(struct udevice *bus)
821{
822 struct mvtwsi_registers *twsi = devfdt_get_addr_ptr(bus);
823
824 /* Disable the hidden slave in i2c0 of these platforms */
Trevor Woernerbb7ab072020-05-06 08:02:40 -0400825 if ((IS_ENABLED(CONFIG_ARMADA_38X) || IS_ENABLED(CONFIG_ARCH_KIRKWOOD))
Baruch Siach91006c72018-06-07 12:38:10 +0300826 && bus->req_seq == 0)
827 twsi_disable_i2c_slave(twsi);
828
829 return 0;
830}
831
mario.six@gdsys.cc355a1272016-07-21 11:57:10 +0200832static int mvtwsi_i2c_probe(struct udevice *bus)
833{
834 struct mvtwsi_i2c_dev *dev = dev_get_priv(bus);
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200835 uint actual_speed;
836
837 __twsi_i2c_init(dev->base, dev->speed, dev->slaveadd, &actual_speed);
838 dev->speed = actual_speed;
839 dev->tick = calc_tick(dev->speed);
mario.six@gdsys.cc355a1272016-07-21 11:57:10 +0200840 return 0;
841}
842
843static int mvtwsi_i2c_xfer(struct udevice *bus, struct i2c_msg *msg, int nmsgs)
844{
845 struct mvtwsi_i2c_dev *dev = dev_get_priv(bus);
846 struct i2c_msg *dmsg, *omsg, dummy;
847
848 memset(&dummy, 0, sizeof(struct i2c_msg));
849
850 /* We expect either two messages (one with an offset and one with the
851 * actual data) or one message (just data or offset/data combined) */
852 if (nmsgs > 2 || nmsgs == 0) {
853 debug("%s: Only one or two messages are supported.", __func__);
854 return -1;
855 }
856
857 omsg = nmsgs == 1 ? &dummy : msg;
858 dmsg = nmsgs == 1 ? msg : msg + 1;
859
860 if (dmsg->flags & I2C_M_RD)
861 return __twsi_i2c_read(dev->base, dmsg->addr, omsg->buf,
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200862 omsg->len, dmsg->buf, dmsg->len,
863 dev->tick);
mario.six@gdsys.cc355a1272016-07-21 11:57:10 +0200864 else
865 return __twsi_i2c_write(dev->base, dmsg->addr, omsg->buf,
mario.six@gdsys.cce841b582016-07-21 11:57:12 +0200866 omsg->len, dmsg->buf, dmsg->len,
867 dev->tick);
mario.six@gdsys.cc355a1272016-07-21 11:57:10 +0200868}
869
870static const struct dm_i2c_ops mvtwsi_i2c_ops = {
871 .xfer = mvtwsi_i2c_xfer,
872 .probe_chip = mvtwsi_i2c_probe_chip,
873 .set_bus_speed = mvtwsi_i2c_set_bus_speed,
874};
875
876static const struct udevice_id mvtwsi_i2c_ids[] = {
877 { .compatible = "marvell,mv64xxx-i2c", },
Stefan Roese58e58d82016-09-16 15:07:55 +0200878 { .compatible = "marvell,mv78230-i2c", },
Jernej Skrabec9220d502017-04-27 00:03:36 +0200879 { .compatible = "allwinner,sun6i-a31-i2c", },
mario.six@gdsys.cc355a1272016-07-21 11:57:10 +0200880 { /* sentinel */ }
881};
882
883U_BOOT_DRIVER(i2c_mvtwsi) = {
884 .name = "i2c_mvtwsi",
885 .id = UCLASS_I2C,
886 .of_match = mvtwsi_i2c_ids,
Baruch Siach91006c72018-06-07 12:38:10 +0300887 .bind = mvtwsi_i2c_bind,
mario.six@gdsys.cc355a1272016-07-21 11:57:10 +0200888 .probe = mvtwsi_i2c_probe,
889 .ofdata_to_platdata = mvtwsi_i2c_ofdata_to_platdata,
890 .priv_auto_alloc_size = sizeof(struct mvtwsi_i2c_dev),
891 .ops = &mvtwsi_i2c_ops,
892};
893#endif /* CONFIG_DM_I2C */