blob: c1672ca18e1144051538fbdd19be995d3d07d4ef [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Moritz Fischerfdec2d22015-12-28 09:47:11 -08002/*
3 * Copyright (C) 2015 Moritz Fischer <moritz.fischer@ettus.com>
4 * IP from Cadence (ID T-CS-PE-0007-100, Version R1p10f2)
5 *
6 * This file is based on: drivers/i2c/zynq_i2c.c,
7 * with added driver-model support and code cleanup.
Moritz Fischerfdec2d22015-12-28 09:47:11 -08008 */
9
10#include <common.h>
Simon Glass9d922452017-05-17 17:18:03 -060011#include <dm.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060012#include <log.h>
Simon Glasscd93d622020-05-10 11:40:13 -060013#include <linux/bitops.h>
Simon Glassc05ed002020-05-10 11:40:11 -060014#include <linux/delay.h>
Moritz Fischerfdec2d22015-12-28 09:47:11 -080015#include <linux/types.h>
16#include <linux/io.h>
Masahiro Yamada1221ce42016-09-21 11:28:55 +090017#include <linux/errno.h>
T Karthik Reddy8faa7912021-02-03 03:10:46 -070018#include <dm/device_compat.h>
Moritz Fischerfdec2d22015-12-28 09:47:11 -080019#include <dm/root.h>
20#include <i2c.h>
21#include <fdtdec.h>
22#include <mapmem.h>
Moritz Fischer08c11aa2017-01-16 09:50:46 -080023#include <wait_bit.h>
Tomasz Gorochowikf48ef0d2019-01-03 13:36:33 +010024#include <clk.h>
Moritz Fischerfdec2d22015-12-28 09:47:11 -080025
Moritz Fischerfdec2d22015-12-28 09:47:11 -080026/* i2c register set */
27struct cdns_i2c_regs {
28 u32 control;
29 u32 status;
30 u32 address;
31 u32 data;
32 u32 interrupt_status;
33 u32 transfer_size;
34 u32 slave_mon_pause;
35 u32 time_out;
36 u32 interrupt_mask;
37 u32 interrupt_enable;
38 u32 interrupt_disable;
39};
40
41/* Control register fields */
42#define CDNS_I2C_CONTROL_RW 0x00000001
43#define CDNS_I2C_CONTROL_MS 0x00000002
44#define CDNS_I2C_CONTROL_NEA 0x00000004
45#define CDNS_I2C_CONTROL_ACKEN 0x00000008
46#define CDNS_I2C_CONTROL_HOLD 0x00000010
47#define CDNS_I2C_CONTROL_SLVMON 0x00000020
48#define CDNS_I2C_CONTROL_CLR_FIFO 0x00000040
49#define CDNS_I2C_CONTROL_DIV_B_SHIFT 8
50#define CDNS_I2C_CONTROL_DIV_B_MASK 0x00003F00
51#define CDNS_I2C_CONTROL_DIV_A_SHIFT 14
52#define CDNS_I2C_CONTROL_DIV_A_MASK 0x0000C000
53
54/* Status register values */
55#define CDNS_I2C_STATUS_RXDV 0x00000020
56#define CDNS_I2C_STATUS_TXDV 0x00000040
57#define CDNS_I2C_STATUS_RXOVF 0x00000080
58#define CDNS_I2C_STATUS_BA 0x00000100
59
60/* Interrupt register fields */
61#define CDNS_I2C_INTERRUPT_COMP 0x00000001
62#define CDNS_I2C_INTERRUPT_DATA 0x00000002
63#define CDNS_I2C_INTERRUPT_NACK 0x00000004
64#define CDNS_I2C_INTERRUPT_TO 0x00000008
65#define CDNS_I2C_INTERRUPT_SLVRDY 0x00000010
66#define CDNS_I2C_INTERRUPT_RXOVF 0x00000020
67#define CDNS_I2C_INTERRUPT_TXOVF 0x00000040
68#define CDNS_I2C_INTERRUPT_RXUNF 0x00000080
69#define CDNS_I2C_INTERRUPT_ARBLOST 0x00000200
70
Siva Durga Prasad Paladugu006265d2019-03-07 11:52:48 +010071#define CDNS_I2C_INTERRUPTS_MASK (CDNS_I2C_INTERRUPT_COMP | \
72 CDNS_I2C_INTERRUPT_DATA | \
73 CDNS_I2C_INTERRUPT_NACK | \
74 CDNS_I2C_INTERRUPT_TO | \
75 CDNS_I2C_INTERRUPT_SLVRDY | \
76 CDNS_I2C_INTERRUPT_RXOVF | \
77 CDNS_I2C_INTERRUPT_TXOVF | \
78 CDNS_I2C_INTERRUPT_RXUNF | \
79 CDNS_I2C_INTERRUPT_ARBLOST)
80
Pei Yue Hof536fda2023-02-13 00:02:41 -080081#define CDNS_I2C_FIFO_DEPTH_DEFAULT 16
Moritz Fischerfdec2d22015-12-28 09:47:11 -080082#define CDNS_I2C_TRANSFER_SIZE_MAX 255 /* Controller transfer limit */
Moritz Fischer08c11aa2017-01-16 09:50:46 -080083#define CDNS_I2C_TRANSFER_SIZE (CDNS_I2C_TRANSFER_SIZE_MAX - 3)
84
Moritz Fischer5e429852017-01-16 09:50:44 -080085#define CDNS_I2C_BROKEN_HOLD_BIT BIT(0)
Moritz Fischerfdec2d22015-12-28 09:47:11 -080086
Siva Durga Prasad Paladugubc005122019-03-07 11:52:49 +010087#define CDNS_I2C_ARB_LOST_MAX_RETRIES 10
88
Moritz Fischerfdec2d22015-12-28 09:47:11 -080089#ifdef DEBUG
90static void cdns_i2c_debug_status(struct cdns_i2c_regs *cdns_i2c)
91{
92 int int_status;
93 int status;
94 int_status = readl(&cdns_i2c->interrupt_status);
95
96 status = readl(&cdns_i2c->status);
97 if (int_status || status) {
98 debug("Status: ");
99 if (int_status & CDNS_I2C_INTERRUPT_COMP)
100 debug("COMP ");
101 if (int_status & CDNS_I2C_INTERRUPT_DATA)
102 debug("DATA ");
103 if (int_status & CDNS_I2C_INTERRUPT_NACK)
104 debug("NACK ");
105 if (int_status & CDNS_I2C_INTERRUPT_TO)
106 debug("TO ");
107 if (int_status & CDNS_I2C_INTERRUPT_SLVRDY)
108 debug("SLVRDY ");
109 if (int_status & CDNS_I2C_INTERRUPT_RXOVF)
110 debug("RXOVF ");
111 if (int_status & CDNS_I2C_INTERRUPT_TXOVF)
112 debug("TXOVF ");
113 if (int_status & CDNS_I2C_INTERRUPT_RXUNF)
114 debug("RXUNF ");
115 if (int_status & CDNS_I2C_INTERRUPT_ARBLOST)
116 debug("ARBLOST ");
117 if (status & CDNS_I2C_STATUS_RXDV)
118 debug("RXDV ");
119 if (status & CDNS_I2C_STATUS_TXDV)
120 debug("TXDV ");
121 if (status & CDNS_I2C_STATUS_RXOVF)
122 debug("RXOVF ");
123 if (status & CDNS_I2C_STATUS_BA)
124 debug("BA ");
125 debug("TS%d ", readl(&cdns_i2c->transfer_size));
126 debug("\n");
127 }
128}
129#endif
130
131struct i2c_cdns_bus {
132 int id;
Michal Simekad72e762016-04-14 14:15:49 +0200133 unsigned int input_freq;
Moritz Fischerfdec2d22015-12-28 09:47:11 -0800134 struct cdns_i2c_regs __iomem *regs; /* register base */
Moritz Fischer5e429852017-01-16 09:50:44 -0800135
136 int hold_flag;
137 u32 quirks;
Pei Yue Hof536fda2023-02-13 00:02:41 -0800138 u32 fifo_depth;
Moritz Fischer5e429852017-01-16 09:50:44 -0800139};
140
141struct cdns_i2c_platform_data {
142 u32 quirks;
Moritz Fischerfdec2d22015-12-28 09:47:11 -0800143};
144
Moritz Fischerfdec2d22015-12-28 09:47:11 -0800145/* Wait for an interrupt */
146static u32 cdns_i2c_wait(struct cdns_i2c_regs *cdns_i2c, u32 mask)
147{
148 int timeout, int_status;
149
150 for (timeout = 0; timeout < 100; timeout++) {
Moritz Fischerfdec2d22015-12-28 09:47:11 -0800151 int_status = readl(&cdns_i2c->interrupt_status);
152 if (int_status & mask)
153 break;
Moritz Fischer0ec0c582017-01-16 09:50:45 -0800154 udelay(100);
Moritz Fischerfdec2d22015-12-28 09:47:11 -0800155 }
156
157 /* Clear interrupt status flags */
158 writel(int_status & mask, &cdns_i2c->interrupt_status);
159
160 return int_status & mask;
161}
162
Michal Simekad72e762016-04-14 14:15:49 +0200163#define CDNS_I2C_DIVA_MAX 4
164#define CDNS_I2C_DIVB_MAX 64
165
166static int cdns_i2c_calc_divs(unsigned long *f, unsigned long input_clk,
167 unsigned int *a, unsigned int *b)
168{
169 unsigned long fscl = *f, best_fscl = *f, actual_fscl, temp;
170 unsigned int div_a, div_b, calc_div_a = 0, calc_div_b = 0;
171 unsigned int last_error, current_error;
172
173 /* calculate (divisor_a+1) x (divisor_b+1) */
174 temp = input_clk / (22 * fscl);
175
176 /*
177 * If the calculated value is negative or 0CDNS_I2C_DIVA_MAX,
178 * the fscl input is out of range. Return error.
179 */
180 if (!temp || (temp > (CDNS_I2C_DIVA_MAX * CDNS_I2C_DIVB_MAX)))
181 return -EINVAL;
182
183 last_error = -1;
184 for (div_a = 0; div_a < CDNS_I2C_DIVA_MAX; div_a++) {
185 div_b = DIV_ROUND_UP(input_clk, 22 * fscl * (div_a + 1));
186
187 if ((div_b < 1) || (div_b > CDNS_I2C_DIVB_MAX))
188 continue;
189 div_b--;
190
191 actual_fscl = input_clk / (22 * (div_a + 1) * (div_b + 1));
192
193 if (actual_fscl > fscl)
194 continue;
195
196 current_error = ((actual_fscl > fscl) ? (actual_fscl - fscl) :
197 (fscl - actual_fscl));
198
199 if (last_error > current_error) {
200 calc_div_a = div_a;
201 calc_div_b = div_b;
202 best_fscl = actual_fscl;
203 last_error = current_error;
204 }
205 }
206
207 *a = calc_div_a;
208 *b = calc_div_b;
209 *f = best_fscl;
210
211 return 0;
212}
213
Moritz Fischerfdec2d22015-12-28 09:47:11 -0800214static int cdns_i2c_set_bus_speed(struct udevice *dev, unsigned int speed)
215{
Michal Simek6150be92016-04-14 14:15:48 +0200216 struct i2c_cdns_bus *bus = dev_get_priv(dev);
Michal Simekad72e762016-04-14 14:15:49 +0200217 u32 div_a = 0, div_b = 0;
218 unsigned long speed_p = speed;
219 int ret = 0;
Michal Simek6150be92016-04-14 14:15:48 +0200220
Simon Glassf3d46152020-01-23 11:48:22 -0700221 if (speed > I2C_SPEED_FAST_RATE) {
Michal Simekad72e762016-04-14 14:15:49 +0200222 debug("%s, failed to set clock speed to %u\n", __func__,
223 speed);
Moritz Fischerfdec2d22015-12-28 09:47:11 -0800224 return -EINVAL;
225 }
226
Michal Simekad72e762016-04-14 14:15:49 +0200227 ret = cdns_i2c_calc_divs(&speed_p, bus->input_freq, &div_a, &div_b);
228 if (ret)
229 return ret;
230
231 debug("%s: div_a: %d, div_b: %d, input freq: %d, speed: %d/%ld\n",
232 __func__, div_a, div_b, bus->input_freq, speed, speed_p);
233
234 writel((div_b << CDNS_I2C_CONTROL_DIV_B_SHIFT) |
235 (div_a << CDNS_I2C_CONTROL_DIV_A_SHIFT), &bus->regs->control);
Michal Simek6150be92016-04-14 14:15:48 +0200236
237 /* Enable master mode, ack, and 7-bit addressing */
238 setbits_le32(&bus->regs->control, CDNS_I2C_CONTROL_MS |
239 CDNS_I2C_CONTROL_ACKEN | CDNS_I2C_CONTROL_NEA);
240
Moritz Fischerfdec2d22015-12-28 09:47:11 -0800241 return 0;
242}
243
Siva Durga Prasad Paladugubc005122019-03-07 11:52:49 +0100244static inline u32 is_arbitration_lost(struct cdns_i2c_regs *regs)
245{
246 return (readl(&regs->interrupt_status) & CDNS_I2C_INTERRUPT_ARBLOST);
247}
248
Moritz Fischerfdec2d22015-12-28 09:47:11 -0800249static int cdns_i2c_write_data(struct i2c_cdns_bus *i2c_bus, u32 addr, u8 *data,
Moritz Fischer5e429852017-01-16 09:50:44 -0800250 u32 len)
Moritz Fischerfdec2d22015-12-28 09:47:11 -0800251{
252 u8 *cur_data = data;
Moritz Fischerfdec2d22015-12-28 09:47:11 -0800253 struct cdns_i2c_regs *regs = i2c_bus->regs;
Siva Durga Prasad Paladugubc005122019-03-07 11:52:49 +0100254 u32 ret;
Sai Pavan Boddu94b3f3f2022-03-01 09:16:51 +0100255 bool start = 1;
Moritz Fischerfdec2d22015-12-28 09:47:11 -0800256
Moritz Fischer08c11aa2017-01-16 09:50:46 -0800257 /* Set the controller in Master transmit mode and clear FIFO */
Moritz Fischer5e429852017-01-16 09:50:44 -0800258 setbits_le32(&regs->control, CDNS_I2C_CONTROL_CLR_FIFO);
Moritz Fischerfdec2d22015-12-28 09:47:11 -0800259 clrbits_le32(&regs->control, CDNS_I2C_CONTROL_RW);
260
Sai Pavan Bodduf76f8602022-03-01 09:16:52 +0100261 /*
262 * For sequential data load hold the bus.
Moritz Fischer08c11aa2017-01-16 09:50:46 -0800263 */
Sai Pavan Bodduf76f8602022-03-01 09:16:52 +0100264 if (len > 1)
Moritz Fischer08c11aa2017-01-16 09:50:46 -0800265 setbits_le32(&regs->control, CDNS_I2C_CONTROL_HOLD);
266
267 /* Clear the interrupts in status register */
Siva Durga Prasad Paladugu006265d2019-03-07 11:52:48 +0100268 writel(CDNS_I2C_INTERRUPTS_MASK, &regs->interrupt_status);
Moritz Fischer08c11aa2017-01-16 09:50:46 -0800269
Sai Pavan Bodduf76f8602022-03-01 09:16:52 +0100270 /* In case of Probe (i.e no data), start the transfer */
271 if (!len)
272 writel(addr, &regs->address);
Moritz Fischerfdec2d22015-12-28 09:47:11 -0800273
Siva Durga Prasad Paladugubc005122019-03-07 11:52:49 +0100274 while (len-- && !is_arbitration_lost(regs)) {
Moritz Fischerfdec2d22015-12-28 09:47:11 -0800275 writel(*(cur_data++), &regs->data);
Sai Pavan Boddu94b3f3f2022-03-01 09:16:51 +0100276 /* Trigger write only after loading data */
277 if (start) {
278 writel(addr, &regs->address);
279 start = 0;
280 }
Pei Yue Hof536fda2023-02-13 00:02:41 -0800281 if (len && readl(&regs->transfer_size) == i2c_bus->fifo_depth) {
Siva Durga Prasad Paladugubc005122019-03-07 11:52:49 +0100282 ret = cdns_i2c_wait(regs, CDNS_I2C_INTERRUPT_COMP |
283 CDNS_I2C_INTERRUPT_ARBLOST);
284 if (ret & CDNS_I2C_INTERRUPT_ARBLOST)
285 return -EAGAIN;
286 if (ret & CDNS_I2C_INTERRUPT_COMP)
287 continue;
288 /* Release the bus */
289 clrbits_le32(&regs->control,
290 CDNS_I2C_CONTROL_HOLD);
291 return -ETIMEDOUT;
Moritz Fischerfdec2d22015-12-28 09:47:11 -0800292 }
293 }
294
Siva Durga Prasad Paladugubc005122019-03-07 11:52:49 +0100295 if (len && is_arbitration_lost(regs))
296 return -EAGAIN;
297
Moritz Fischerfdec2d22015-12-28 09:47:11 -0800298 /* All done... release the bus */
Moritz Fischer5e429852017-01-16 09:50:44 -0800299 if (!i2c_bus->hold_flag)
300 clrbits_le32(&regs->control, CDNS_I2C_CONTROL_HOLD);
301
Moritz Fischerfdec2d22015-12-28 09:47:11 -0800302 /* Wait for the address and data to be sent */
Siva Durga Prasad Paladugubc005122019-03-07 11:52:49 +0100303 ret = cdns_i2c_wait(regs, CDNS_I2C_INTERRUPT_COMP |
304 CDNS_I2C_INTERRUPT_ARBLOST);
305 if (!(ret & (CDNS_I2C_INTERRUPT_ARBLOST |
306 CDNS_I2C_INTERRUPT_COMP)))
Moritz Fischerfdec2d22015-12-28 09:47:11 -0800307 return -ETIMEDOUT;
Siva Durga Prasad Paladugubc005122019-03-07 11:52:49 +0100308 if (ret & CDNS_I2C_INTERRUPT_ARBLOST)
309 return -EAGAIN;
310
Moritz Fischerfdec2d22015-12-28 09:47:11 -0800311 return 0;
312}
313
Pei Yue Hof536fda2023-02-13 00:02:41 -0800314static inline bool cdns_is_hold_quirk(struct i2c_cdns_bus *i2c_bus, int hold_quirk,
315 int curr_recv_count)
Moritz Fischerfdec2d22015-12-28 09:47:11 -0800316{
Pei Yue Hof536fda2023-02-13 00:02:41 -0800317 return hold_quirk && (curr_recv_count == i2c_bus->fifo_depth + 1);
Moritz Fischer08c11aa2017-01-16 09:50:46 -0800318}
Moritz Fischerfdec2d22015-12-28 09:47:11 -0800319
Moritz Fischer08c11aa2017-01-16 09:50:46 -0800320static int cdns_i2c_read_data(struct i2c_cdns_bus *i2c_bus, u32 addr, u8 *data,
321 u32 recv_count)
322{
323 u8 *cur_data = data;
Moritz Fischerfdec2d22015-12-28 09:47:11 -0800324 struct cdns_i2c_regs *regs = i2c_bus->regs;
Siva Durga Prasad Paladugu9d59d6f2019-03-14 09:18:37 +0100325 u32 curr_recv_count;
Moritz Fischer08c11aa2017-01-16 09:50:46 -0800326 int updatetx, hold_quirk;
Siva Durga Prasad Paladugubc005122019-03-07 11:52:49 +0100327 u32 ret;
Moritz Fischerfdec2d22015-12-28 09:47:11 -0800328
Moritz Fischer08c11aa2017-01-16 09:50:46 -0800329 curr_recv_count = recv_count;
330
331 /* Check for the message size against the FIFO depth */
Pei Yue Hof536fda2023-02-13 00:02:41 -0800332 if (recv_count > i2c_bus->fifo_depth)
Moritz Fischer08c11aa2017-01-16 09:50:46 -0800333 setbits_le32(&regs->control, CDNS_I2C_CONTROL_HOLD);
334
Moritz Fischerfdec2d22015-12-28 09:47:11 -0800335 setbits_le32(&regs->control, CDNS_I2C_CONTROL_CLR_FIFO |
336 CDNS_I2C_CONTROL_RW);
337
Moritz Fischer08c11aa2017-01-16 09:50:46 -0800338 if (recv_count > CDNS_I2C_TRANSFER_SIZE) {
339 curr_recv_count = CDNS_I2C_TRANSFER_SIZE;
340 writel(curr_recv_count, &regs->transfer_size);
341 } else {
342 writel(recv_count, &regs->transfer_size);
343 }
344
Moritz Fischerfdec2d22015-12-28 09:47:11 -0800345 /* Start reading data */
346 writel(addr, &regs->address);
Moritz Fischerfdec2d22015-12-28 09:47:11 -0800347
Moritz Fischer08c11aa2017-01-16 09:50:46 -0800348 updatetx = recv_count > curr_recv_count;
349
350 hold_quirk = (i2c_bus->quirks & CDNS_I2C_BROKEN_HOLD_BIT) && updatetx;
351
Siva Durga Prasad Paladugubc005122019-03-07 11:52:49 +0100352 while (recv_count && !is_arbitration_lost(regs)) {
Moritz Fischer08c11aa2017-01-16 09:50:46 -0800353 while (readl(&regs->status) & CDNS_I2C_STATUS_RXDV) {
Pei Yue Hof536fda2023-02-13 00:02:41 -0800354 if (recv_count < i2c_bus->fifo_depth &&
Moritz Fischer08c11aa2017-01-16 09:50:46 -0800355 !i2c_bus->hold_flag) {
356 clrbits_le32(&regs->control,
357 CDNS_I2C_CONTROL_HOLD);
358 }
359 *(cur_data)++ = readl(&regs->data);
360 recv_count--;
361 curr_recv_count--;
362
Pei Yue Hof536fda2023-02-13 00:02:41 -0800363 if (cdns_is_hold_quirk(i2c_bus, hold_quirk, curr_recv_count))
Moritz Fischer08c11aa2017-01-16 09:50:46 -0800364 break;
Moritz Fischerfdec2d22015-12-28 09:47:11 -0800365 }
Moritz Fischerfdec2d22015-12-28 09:47:11 -0800366
Pei Yue Hof536fda2023-02-13 00:02:41 -0800367 if (cdns_is_hold_quirk(i2c_bus, hold_quirk, curr_recv_count)) {
Moritz Fischer08c11aa2017-01-16 09:50:46 -0800368 /* wait while fifo is full */
369 while (readl(&regs->transfer_size) !=
Pei Yue Hof536fda2023-02-13 00:02:41 -0800370 (curr_recv_count - i2c_bus->fifo_depth))
Moritz Fischer08c11aa2017-01-16 09:50:46 -0800371 ;
372 /*
373 * Check number of bytes to be received against maximum
374 * transfer size and update register accordingly.
375 */
Pei Yue Hof536fda2023-02-13 00:02:41 -0800376 if ((recv_count - i2c_bus->fifo_depth) >
Moritz Fischer08c11aa2017-01-16 09:50:46 -0800377 CDNS_I2C_TRANSFER_SIZE) {
378 writel(CDNS_I2C_TRANSFER_SIZE,
379 &regs->transfer_size);
380 curr_recv_count = CDNS_I2C_TRANSFER_SIZE +
Pei Yue Hof536fda2023-02-13 00:02:41 -0800381 i2c_bus->fifo_depth;
Moritz Fischer08c11aa2017-01-16 09:50:46 -0800382 } else {
Pei Yue Hof536fda2023-02-13 00:02:41 -0800383 writel(recv_count - i2c_bus->fifo_depth,
Moritz Fischer08c11aa2017-01-16 09:50:46 -0800384 &regs->transfer_size);
385 curr_recv_count = recv_count;
386 }
387 } else if (recv_count && !hold_quirk && !curr_recv_count) {
Moritz Fischer08c11aa2017-01-16 09:50:46 -0800388 if (recv_count > CDNS_I2C_TRANSFER_SIZE) {
389 writel(CDNS_I2C_TRANSFER_SIZE,
390 &regs->transfer_size);
391 curr_recv_count = CDNS_I2C_TRANSFER_SIZE;
392 } else {
393 writel(recv_count, &regs->transfer_size);
394 curr_recv_count = recv_count;
395 }
Sai Pavan Boddu1bc2a792022-03-01 09:16:50 +0100396 writel(addr, &regs->address);
Moritz Fischer08c11aa2017-01-16 09:50:46 -0800397 }
398 }
399
400 /* Wait for the address and data to be sent */
Siva Durga Prasad Paladugubc005122019-03-07 11:52:49 +0100401 ret = cdns_i2c_wait(regs, CDNS_I2C_INTERRUPT_COMP |
402 CDNS_I2C_INTERRUPT_ARBLOST);
403 if (!(ret & (CDNS_I2C_INTERRUPT_ARBLOST |
404 CDNS_I2C_INTERRUPT_COMP)))
Moritz Fischer08c11aa2017-01-16 09:50:46 -0800405 return -ETIMEDOUT;
Siva Durga Prasad Paladugubc005122019-03-07 11:52:49 +0100406 if (ret & CDNS_I2C_INTERRUPT_ARBLOST)
407 return -EAGAIN;
Moritz Fischer08c11aa2017-01-16 09:50:46 -0800408
Moritz Fischerfdec2d22015-12-28 09:47:11 -0800409 return 0;
410}
411
412static int cdns_i2c_xfer(struct udevice *dev, struct i2c_msg *msg,
413 int nmsgs)
414{
415 struct i2c_cdns_bus *i2c_bus = dev_get_priv(dev);
Siva Durga Prasad Paladugubc005122019-03-07 11:52:49 +0100416 int ret = 0;
417 int count;
Moritz Fischer5e429852017-01-16 09:50:44 -0800418 bool hold_quirk;
Siva Durga Prasad Paladugubc005122019-03-07 11:52:49 +0100419 struct i2c_msg *message = msg;
420 int num_msgs = nmsgs;
Moritz Fischer5e429852017-01-16 09:50:44 -0800421
422 hold_quirk = !!(i2c_bus->quirks & CDNS_I2C_BROKEN_HOLD_BIT);
423
424 if (nmsgs > 1) {
425 /*
426 * This controller does not give completion interrupt after a
427 * master receive message if HOLD bit is set (repeated start),
428 * resulting in SW timeout. Hence, if a receive message is
429 * followed by any other message, an error is returned
430 * indicating that this sequence is not supported.
431 */
432 for (count = 0; (count < nmsgs - 1) && hold_quirk; count++) {
433 if (msg[count].flags & I2C_M_RD) {
434 printf("Can't do repeated start after a receive message\n");
435 return -EOPNOTSUPP;
436 }
437 }
438
439 i2c_bus->hold_flag = 1;
440 setbits_le32(&i2c_bus->regs->control, CDNS_I2C_CONTROL_HOLD);
441 } else {
442 i2c_bus->hold_flag = 0;
443 }
Moritz Fischerfdec2d22015-12-28 09:47:11 -0800444
445 debug("i2c_xfer: %d messages\n", nmsgs);
Siva Durga Prasad Paladugubc005122019-03-07 11:52:49 +0100446 for (u8 retry = 0; retry < CDNS_I2C_ARB_LOST_MAX_RETRIES &&
447 nmsgs > 0; nmsgs--, msg++) {
Moritz Fischerfdec2d22015-12-28 09:47:11 -0800448 debug("i2c_xfer: chip=0x%x, len=0x%x\n", msg->addr, msg->len);
449 if (msg->flags & I2C_M_RD) {
450 ret = cdns_i2c_read_data(i2c_bus, msg->addr, msg->buf,
451 msg->len);
452 } else {
453 ret = cdns_i2c_write_data(i2c_bus, msg->addr, msg->buf,
Moritz Fischer5e429852017-01-16 09:50:44 -0800454 msg->len);
Moritz Fischerfdec2d22015-12-28 09:47:11 -0800455 }
Siva Durga Prasad Paladugubc005122019-03-07 11:52:49 +0100456 if (ret == -EAGAIN) {
457 msg = message;
458 nmsgs = num_msgs;
459 retry++;
460 printf("%s,arbitration lost, retrying:%d\n", __func__,
461 retry);
462 continue;
463 }
464
Moritz Fischerfdec2d22015-12-28 09:47:11 -0800465 if (ret) {
466 debug("i2c_write: error sending\n");
467 return -EREMOTEIO;
468 }
469 }
470
Siva Durga Prasad Paladugubc005122019-03-07 11:52:49 +0100471 return ret;
Moritz Fischerfdec2d22015-12-28 09:47:11 -0800472}
473
Simon Glassd1998a92020-12-03 16:55:21 -0700474static int cdns_i2c_of_to_plat(struct udevice *dev)
Michal Simeka13767b2016-04-14 14:15:47 +0200475{
476 struct i2c_cdns_bus *i2c_bus = dev_get_priv(dev);
Moritz Fischer5e429852017-01-16 09:50:44 -0800477 struct cdns_i2c_platform_data *pdata =
478 (struct cdns_i2c_platform_data *)dev_get_driver_data(dev);
Tomasz Gorochowikf48ef0d2019-01-03 13:36:33 +0100479 struct clk clk;
480 int ret;
Michal Simeka13767b2016-04-14 14:15:47 +0200481
Michal Simek84de0f92019-01-18 10:43:39 +0100482 i2c_bus->regs = (struct cdns_i2c_regs *)dev_read_addr(dev);
Michal Simeka13767b2016-04-14 14:15:47 +0200483 if (!i2c_bus->regs)
484 return -ENOMEM;
485
Moritz Fischer5e429852017-01-16 09:50:44 -0800486 if (pdata)
487 i2c_bus->quirks = pdata->quirks;
488
Tomasz Gorochowikf48ef0d2019-01-03 13:36:33 +0100489 ret = clk_get_by_index(dev, 0, &clk);
490 if (ret)
491 return ret;
492
493 i2c_bus->input_freq = clk_get_rate(&clk);
Michal Simekad72e762016-04-14 14:15:49 +0200494
T Karthik Reddy8faa7912021-02-03 03:10:46 -0700495 ret = clk_enable(&clk);
496 if (ret) {
497 dev_err(dev, "failed to enable clock\n");
498 return ret;
499 }
500
Pei Yue Hof536fda2023-02-13 00:02:41 -0800501 /* Update FIFO depth based on device tree entry */
502 i2c_bus->fifo_depth = dev_read_u32_default(dev, "fifo-depth",
503 CDNS_I2C_FIFO_DEPTH_DEFAULT);
504
Michal Simeka13767b2016-04-14 14:15:47 +0200505 return 0;
506}
507
Moritz Fischerfdec2d22015-12-28 09:47:11 -0800508static const struct dm_i2c_ops cdns_i2c_ops = {
509 .xfer = cdns_i2c_xfer,
Moritz Fischerfdec2d22015-12-28 09:47:11 -0800510 .set_bus_speed = cdns_i2c_set_bus_speed,
511};
512
Moritz Fischer5e429852017-01-16 09:50:44 -0800513static const struct cdns_i2c_platform_data r1p10_i2c_def = {
514 .quirks = CDNS_I2C_BROKEN_HOLD_BIT,
515};
516
Moritz Fischerfdec2d22015-12-28 09:47:11 -0800517static const struct udevice_id cdns_i2c_of_match[] = {
Moritz Fischer5e429852017-01-16 09:50:44 -0800518 { .compatible = "cdns,i2c-r1p10", .data = (ulong)&r1p10_i2c_def },
Moritz Fischer50994ab2016-12-22 09:36:10 -0800519 { .compatible = "cdns,i2c-r1p14" },
Moritz Fischerfdec2d22015-12-28 09:47:11 -0800520 { /* end of table */ }
521};
522
523U_BOOT_DRIVER(cdns_i2c) = {
Michal Simek6c0e59f2020-01-07 08:50:34 +0100524 .name = "i2c_cdns",
Moritz Fischerfdec2d22015-12-28 09:47:11 -0800525 .id = UCLASS_I2C,
526 .of_match = cdns_i2c_of_match,
Simon Glassd1998a92020-12-03 16:55:21 -0700527 .of_to_plat = cdns_i2c_of_to_plat,
Simon Glass41575d82020-12-03 16:55:17 -0700528 .priv_auto = sizeof(struct i2c_cdns_bus),
Moritz Fischerfdec2d22015-12-28 09:47:11 -0800529 .ops = &cdns_i2c_ops,
530};