]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/i2c/busses/i2c-mv64xxx.c
Merge tag 'kvm-4.14-1' of git://git.kernel.org/pub/scm/virt/kvm/kvm
[mirror_ubuntu-bionic-kernel.git] / drivers / i2c / busses / i2c-mv64xxx.c
CommitLineData
1da177e4 1/*
a0832798
TP
2 * Driver for the i2c controller on the Marvell line of host bridges
3 * (e.g, gt642[46]0, mv643[46]0, mv644[46]0, and Orion SoC family).
1da177e4
LT
4 *
5 * Author: Mark A. Greer <mgreer@mvista.com>
6 *
7 * 2005 (c) MontaVista, Software, Inc. This file is licensed under
8 * the terms of the GNU General Public License version 2. This program
9 * is licensed "as is" without any warranty of any kind, whether express
10 * or implied.
11 */
12#include <linux/kernel.h>
5a0e3ad6 13#include <linux/slab.h>
1da177e4
LT
14#include <linux/module.h>
15#include <linux/spinlock.h>
16#include <linux/i2c.h>
17#include <linux/interrupt.h>
a0832798 18#include <linux/mv643xx_i2c.h>
d052d1be 19#include <linux/platform_device.h>
370136bc 20#include <linux/reset.h>
21782180 21#include <linux/io.h>
b61d1575 22#include <linux/of.h>
004e8ed7 23#include <linux/of_device.h>
b61d1575 24#include <linux/of_irq.h>
b61d1575
AL
25#include <linux/clk.h>
26#include <linux/err.h>
c1d15b68 27#include <linux/delay.h>
1da177e4 28
683e69b8
MR
29#define MV64XXX_I2C_ADDR_ADDR(val) ((val & 0x7f) << 1)
30#define MV64XXX_I2C_BAUD_DIV_N(val) (val & 0x7)
31#define MV64XXX_I2C_BAUD_DIV_M(val) ((val & 0xf) << 3)
32
12598695
TP
33#define MV64XXX_I2C_REG_CONTROL_ACK BIT(2)
34#define MV64XXX_I2C_REG_CONTROL_IFLG BIT(3)
35#define MV64XXX_I2C_REG_CONTROL_STOP BIT(4)
36#define MV64XXX_I2C_REG_CONTROL_START BIT(5)
37#define MV64XXX_I2C_REG_CONTROL_TWSIEN BIT(6)
38#define MV64XXX_I2C_REG_CONTROL_INTEN BIT(7)
1da177e4
LT
39
40/* Ctlr status values */
41#define MV64XXX_I2C_STATUS_BUS_ERR 0x00
42#define MV64XXX_I2C_STATUS_MAST_START 0x08
43#define MV64XXX_I2C_STATUS_MAST_REPEAT_START 0x10
44#define MV64XXX_I2C_STATUS_MAST_WR_ADDR_ACK 0x18
45#define MV64XXX_I2C_STATUS_MAST_WR_ADDR_NO_ACK 0x20
46#define MV64XXX_I2C_STATUS_MAST_WR_ACK 0x28
47#define MV64XXX_I2C_STATUS_MAST_WR_NO_ACK 0x30
48#define MV64XXX_I2C_STATUS_MAST_LOST_ARB 0x38
49#define MV64XXX_I2C_STATUS_MAST_RD_ADDR_ACK 0x40
50#define MV64XXX_I2C_STATUS_MAST_RD_ADDR_NO_ACK 0x48
51#define MV64XXX_I2C_STATUS_MAST_RD_DATA_ACK 0x50
52#define MV64XXX_I2C_STATUS_MAST_RD_DATA_NO_ACK 0x58
53#define MV64XXX_I2C_STATUS_MAST_WR_ADDR_2_ACK 0xd0
54#define MV64XXX_I2C_STATUS_MAST_WR_ADDR_2_NO_ACK 0xd8
55#define MV64XXX_I2C_STATUS_MAST_RD_ADDR_2_ACK 0xe0
56#define MV64XXX_I2C_STATUS_MAST_RD_ADDR_2_NO_ACK 0xe8
57#define MV64XXX_I2C_STATUS_NO_STATUS 0xf8
58
930ab3d4
GC
59/* Register defines (I2C bridge) */
60#define MV64XXX_I2C_REG_TX_DATA_LO 0xc0
61#define MV64XXX_I2C_REG_TX_DATA_HI 0xc4
62#define MV64XXX_I2C_REG_RX_DATA_LO 0xc8
63#define MV64XXX_I2C_REG_RX_DATA_HI 0xcc
64#define MV64XXX_I2C_REG_BRIDGE_CONTROL 0xd0
65#define MV64XXX_I2C_REG_BRIDGE_STATUS 0xd4
66#define MV64XXX_I2C_REG_BRIDGE_INTR_CAUSE 0xd8
67#define MV64XXX_I2C_REG_BRIDGE_INTR_MASK 0xdC
68#define MV64XXX_I2C_REG_BRIDGE_TIMING 0xe0
69
70/* Bridge Control values */
12598695
TP
71#define MV64XXX_I2C_BRIDGE_CONTROL_WR BIT(0)
72#define MV64XXX_I2C_BRIDGE_CONTROL_RD BIT(1)
930ab3d4 73#define MV64XXX_I2C_BRIDGE_CONTROL_ADDR_SHIFT 2
12598695 74#define MV64XXX_I2C_BRIDGE_CONTROL_ADDR_EXT BIT(12)
930ab3d4
GC
75#define MV64XXX_I2C_BRIDGE_CONTROL_TX_SIZE_SHIFT 13
76#define MV64XXX_I2C_BRIDGE_CONTROL_RX_SIZE_SHIFT 16
12598695 77#define MV64XXX_I2C_BRIDGE_CONTROL_ENABLE BIT(19)
00d8689b 78#define MV64XXX_I2C_BRIDGE_CONTROL_REPEATED_START BIT(20)
930ab3d4
GC
79
80/* Bridge Status values */
12598695 81#define MV64XXX_I2C_BRIDGE_STATUS_ERROR BIT(0)
930ab3d4 82
1da177e4
LT
83/* Driver states */
84enum {
85 MV64XXX_I2C_STATE_INVALID,
86 MV64XXX_I2C_STATE_IDLE,
87 MV64XXX_I2C_STATE_WAITING_FOR_START_COND,
eda6bee6 88 MV64XXX_I2C_STATE_WAITING_FOR_RESTART,
1da177e4
LT
89 MV64XXX_I2C_STATE_WAITING_FOR_ADDR_1_ACK,
90 MV64XXX_I2C_STATE_WAITING_FOR_ADDR_2_ACK,
91 MV64XXX_I2C_STATE_WAITING_FOR_SLAVE_ACK,
92 MV64XXX_I2C_STATE_WAITING_FOR_SLAVE_DATA,
1da177e4
LT
93};
94
95/* Driver actions */
96enum {
97 MV64XXX_I2C_ACTION_INVALID,
98 MV64XXX_I2C_ACTION_CONTINUE,
eda6bee6 99 MV64XXX_I2C_ACTION_SEND_RESTART,
1da177e4
LT
100 MV64XXX_I2C_ACTION_SEND_ADDR_1,
101 MV64XXX_I2C_ACTION_SEND_ADDR_2,
102 MV64XXX_I2C_ACTION_SEND_DATA,
103 MV64XXX_I2C_ACTION_RCV_DATA,
104 MV64XXX_I2C_ACTION_RCV_DATA_STOP,
105 MV64XXX_I2C_ACTION_SEND_STOP,
106};
107
004e8ed7
MR
108struct mv64xxx_i2c_regs {
109 u8 addr;
110 u8 ext_addr;
111 u8 data;
112 u8 control;
113 u8 status;
114 u8 clock;
115 u8 soft_reset;
116};
117
1da177e4 118struct mv64xxx_i2c_data {
4243fa0b
RK
119 struct i2c_msg *msgs;
120 int num_msgs;
1da177e4
LT
121 int irq;
122 u32 state;
123 u32 action;
e91c021c 124 u32 aborting;
1da177e4
LT
125 u32 cntl_bits;
126 void __iomem *reg_base;
004e8ed7 127 struct mv64xxx_i2c_regs reg_offsets;
1da177e4
LT
128 u32 addr1;
129 u32 addr2;
130 u32 bytes_left;
131 u32 byte_posn;
eda6bee6 132 u32 send_stop;
1da177e4
LT
133 u32 block;
134 int rc;
135 u32 freq_m;
136 u32 freq_n;
b61d1575 137 struct clk *clk;
1da177e4
LT
138 wait_queue_head_t waitq;
139 spinlock_t lock;
140 struct i2c_msg *msg;
141 struct i2c_adapter adapter;
930ab3d4 142 bool offload_enabled;
c1d15b68
GC
143/* 5us delay in order to avoid repeated start timing violation */
144 bool errata_delay;
370136bc 145 struct reset_control *rstc;
c7dcb1fe 146 bool irq_clear_inverted;
bba61f50
HG
147 /* Clk div is 2 to the power n, not 2 to the power n + 1 */
148 bool clk_n_base_0;
1da177e4
LT
149};
150
004e8ed7
MR
151static struct mv64xxx_i2c_regs mv64xxx_i2c_regs_mv64xxx = {
152 .addr = 0x00,
153 .ext_addr = 0x10,
154 .data = 0x04,
155 .control = 0x08,
156 .status = 0x0c,
157 .clock = 0x0c,
158 .soft_reset = 0x1c,
159};
160
3d66ac7d
MR
161static struct mv64xxx_i2c_regs mv64xxx_i2c_regs_sun4i = {
162 .addr = 0x00,
163 .ext_addr = 0x04,
164 .data = 0x08,
165 .control = 0x0c,
166 .status = 0x10,
167 .clock = 0x14,
168 .soft_reset = 0x18,
169};
170
3420afbc
RK
171static void
172mv64xxx_i2c_prepare_for_io(struct mv64xxx_i2c_data *drv_data,
173 struct i2c_msg *msg)
174{
175 u32 dir = 0;
176
3420afbc
RK
177 drv_data->cntl_bits = MV64XXX_I2C_REG_CONTROL_ACK |
178 MV64XXX_I2C_REG_CONTROL_INTEN | MV64XXX_I2C_REG_CONTROL_TWSIEN;
179
180 if (msg->flags & I2C_M_RD)
181 dir = 1;
182
183 if (msg->flags & I2C_M_TEN) {
184 drv_data->addr1 = 0xf0 | (((u32)msg->addr & 0x300) >> 7) | dir;
185 drv_data->addr2 = (u32)msg->addr & 0xff;
186 } else {
683e69b8 187 drv_data->addr1 = MV64XXX_I2C_ADDR_ADDR((u32)msg->addr) | dir;
3420afbc
RK
188 drv_data->addr2 = 0;
189 }
190}
191
1da177e4
LT
192/*
193 *****************************************************************************
194 *
195 * Finite State Machine & Interrupt Routines
196 *
197 *****************************************************************************
198 */
a07ad1cc
DF
199
200/* Reset hardware and initialize FSM */
201static void
202mv64xxx_i2c_hw_init(struct mv64xxx_i2c_data *drv_data)
203{
930ab3d4
GC
204 if (drv_data->offload_enabled) {
205 writel(0, drv_data->reg_base + MV64XXX_I2C_REG_BRIDGE_CONTROL);
206 writel(0, drv_data->reg_base + MV64XXX_I2C_REG_BRIDGE_TIMING);
207 writel(0, drv_data->reg_base +
208 MV64XXX_I2C_REG_BRIDGE_INTR_CAUSE);
209 writel(0, drv_data->reg_base +
210 MV64XXX_I2C_REG_BRIDGE_INTR_MASK);
211 }
212
004e8ed7 213 writel(0, drv_data->reg_base + drv_data->reg_offsets.soft_reset);
683e69b8 214 writel(MV64XXX_I2C_BAUD_DIV_M(drv_data->freq_m) | MV64XXX_I2C_BAUD_DIV_N(drv_data->freq_n),
004e8ed7
MR
215 drv_data->reg_base + drv_data->reg_offsets.clock);
216 writel(0, drv_data->reg_base + drv_data->reg_offsets.addr);
217 writel(0, drv_data->reg_base + drv_data->reg_offsets.ext_addr);
a07ad1cc 218 writel(MV64XXX_I2C_REG_CONTROL_TWSIEN | MV64XXX_I2C_REG_CONTROL_STOP,
004e8ed7 219 drv_data->reg_base + drv_data->reg_offsets.control);
a07ad1cc
DF
220 drv_data->state = MV64XXX_I2C_STATE_IDLE;
221}
222
1da177e4
LT
223static void
224mv64xxx_i2c_fsm(struct mv64xxx_i2c_data *drv_data, u32 status)
225{
226 /*
227 * If state is idle, then this is likely the remnants of an old
228 * operation that driver has given up on or the user has killed.
229 * If so, issue the stop condition and go to idle.
230 */
231 if (drv_data->state == MV64XXX_I2C_STATE_IDLE) {
232 drv_data->action = MV64XXX_I2C_ACTION_SEND_STOP;
233 return;
234 }
235
1da177e4
LT
236 /* The status from the ctlr [mostly] tells us what to do next */
237 switch (status) {
238 /* Start condition interrupt */
239 case MV64XXX_I2C_STATUS_MAST_START: /* 0x08 */
240 case MV64XXX_I2C_STATUS_MAST_REPEAT_START: /* 0x10 */
241 drv_data->action = MV64XXX_I2C_ACTION_SEND_ADDR_1;
242 drv_data->state = MV64XXX_I2C_STATE_WAITING_FOR_ADDR_1_ACK;
243 break;
244
245 /* Performing a write */
246 case MV64XXX_I2C_STATUS_MAST_WR_ADDR_ACK: /* 0x18 */
247 if (drv_data->msg->flags & I2C_M_TEN) {
248 drv_data->action = MV64XXX_I2C_ACTION_SEND_ADDR_2;
249 drv_data->state =
250 MV64XXX_I2C_STATE_WAITING_FOR_ADDR_2_ACK;
251 break;
252 }
253 /* FALLTHRU */
254 case MV64XXX_I2C_STATUS_MAST_WR_ADDR_2_ACK: /* 0xd0 */
255 case MV64XXX_I2C_STATUS_MAST_WR_ACK: /* 0x28 */
e91c021c
MG
256 if ((drv_data->bytes_left == 0)
257 || (drv_data->aborting
258 && (drv_data->byte_posn != 0))) {
4243fa0b 259 if (drv_data->send_stop || drv_data->aborting) {
eda6bee6
RG
260 drv_data->action = MV64XXX_I2C_ACTION_SEND_STOP;
261 drv_data->state = MV64XXX_I2C_STATE_IDLE;
262 } else {
263 drv_data->action =
264 MV64XXX_I2C_ACTION_SEND_RESTART;
265 drv_data->state =
266 MV64XXX_I2C_STATE_WAITING_FOR_RESTART;
267 }
e91c021c 268 } else {
1da177e4
LT
269 drv_data->action = MV64XXX_I2C_ACTION_SEND_DATA;
270 drv_data->state =
271 MV64XXX_I2C_STATE_WAITING_FOR_SLAVE_ACK;
272 drv_data->bytes_left--;
1da177e4
LT
273 }
274 break;
275
276 /* Performing a read */
277 case MV64XXX_I2C_STATUS_MAST_RD_ADDR_ACK: /* 40 */
278 if (drv_data->msg->flags & I2C_M_TEN) {
279 drv_data->action = MV64XXX_I2C_ACTION_SEND_ADDR_2;
280 drv_data->state =
281 MV64XXX_I2C_STATE_WAITING_FOR_ADDR_2_ACK;
282 break;
283 }
284 /* FALLTHRU */
285 case MV64XXX_I2C_STATUS_MAST_RD_ADDR_2_ACK: /* 0xe0 */
286 if (drv_data->bytes_left == 0) {
287 drv_data->action = MV64XXX_I2C_ACTION_SEND_STOP;
288 drv_data->state = MV64XXX_I2C_STATE_IDLE;
289 break;
290 }
291 /* FALLTHRU */
292 case MV64XXX_I2C_STATUS_MAST_RD_DATA_ACK: /* 0x50 */
293 if (status != MV64XXX_I2C_STATUS_MAST_RD_DATA_ACK)
294 drv_data->action = MV64XXX_I2C_ACTION_CONTINUE;
295 else {
296 drv_data->action = MV64XXX_I2C_ACTION_RCV_DATA;
297 drv_data->bytes_left--;
298 }
299 drv_data->state = MV64XXX_I2C_STATE_WAITING_FOR_SLAVE_DATA;
300
e91c021c 301 if ((drv_data->bytes_left == 1) || drv_data->aborting)
1da177e4
LT
302 drv_data->cntl_bits &= ~MV64XXX_I2C_REG_CONTROL_ACK;
303 break;
304
305 case MV64XXX_I2C_STATUS_MAST_RD_DATA_NO_ACK: /* 0x58 */
306 drv_data->action = MV64XXX_I2C_ACTION_RCV_DATA_STOP;
307 drv_data->state = MV64XXX_I2C_STATE_IDLE;
308 break;
309
310 case MV64XXX_I2C_STATUS_MAST_WR_ADDR_NO_ACK: /* 0x20 */
311 case MV64XXX_I2C_STATUS_MAST_WR_NO_ACK: /* 30 */
312 case MV64XXX_I2C_STATUS_MAST_RD_ADDR_NO_ACK: /* 48 */
313 /* Doesn't seem to be a device at other end */
314 drv_data->action = MV64XXX_I2C_ACTION_SEND_STOP;
315 drv_data->state = MV64XXX_I2C_STATE_IDLE;
6faa3535 316 drv_data->rc = -ENXIO;
1da177e4
LT
317 break;
318
319 default:
320 dev_err(&drv_data->adapter.dev,
321 "mv64xxx_i2c_fsm: Ctlr Error -- state: 0x%x, "
322 "status: 0x%x, addr: 0x%x, flags: 0x%x\n",
323 drv_data->state, status, drv_data->msg->addr,
324 drv_data->msg->flags);
325 drv_data->action = MV64XXX_I2C_ACTION_SEND_STOP;
a07ad1cc 326 mv64xxx_i2c_hw_init(drv_data);
1da177e4
LT
327 drv_data->rc = -EIO;
328 }
329}
330
4c5b38e8
WS
331static void mv64xxx_i2c_send_start(struct mv64xxx_i2c_data *drv_data)
332{
485ecdf1
WS
333 drv_data->msg = drv_data->msgs;
334 drv_data->byte_posn = 0;
335 drv_data->bytes_left = drv_data->msg->len;
336 drv_data->aborting = 0;
337 drv_data->rc = 0;
338
00d8689b
TP
339 mv64xxx_i2c_prepare_for_io(drv_data, drv_data->msgs);
340 writel(drv_data->cntl_bits | MV64XXX_I2C_REG_CONTROL_START,
341 drv_data->reg_base + drv_data->reg_offsets.control);
4c5b38e8
WS
342}
343
1da177e4
LT
344static void
345mv64xxx_i2c_do_action(struct mv64xxx_i2c_data *drv_data)
346{
347 switch(drv_data->action) {
eda6bee6 348 case MV64XXX_I2C_ACTION_SEND_RESTART:
4243fa0b
RK
349 /* We should only get here if we have further messages */
350 BUG_ON(drv_data->num_msgs == 0);
351
4243fa0b
RK
352 drv_data->msgs++;
353 drv_data->num_msgs--;
4c5b38e8 354 mv64xxx_i2c_send_start(drv_data);
4243fa0b 355
c1d15b68
GC
356 if (drv_data->errata_delay)
357 udelay(5);
358
4243fa0b
RK
359 /*
360 * We're never at the start of the message here, and by this
361 * time it's already too late to do any protocol mangling.
362 * Thankfully, do not advertise support for that feature.
363 */
364 drv_data->send_stop = drv_data->num_msgs == 1;
eda6bee6
RG
365 break;
366
1da177e4
LT
367 case MV64XXX_I2C_ACTION_CONTINUE:
368 writel(drv_data->cntl_bits,
004e8ed7 369 drv_data->reg_base + drv_data->reg_offsets.control);
1da177e4
LT
370 break;
371
1da177e4
LT
372 case MV64XXX_I2C_ACTION_SEND_ADDR_1:
373 writel(drv_data->addr1,
004e8ed7 374 drv_data->reg_base + drv_data->reg_offsets.data);
1da177e4 375 writel(drv_data->cntl_bits,
004e8ed7 376 drv_data->reg_base + drv_data->reg_offsets.control);
1da177e4
LT
377 break;
378
379 case MV64XXX_I2C_ACTION_SEND_ADDR_2:
380 writel(drv_data->addr2,
004e8ed7 381 drv_data->reg_base + drv_data->reg_offsets.data);
1da177e4 382 writel(drv_data->cntl_bits,
004e8ed7 383 drv_data->reg_base + drv_data->reg_offsets.control);
1da177e4
LT
384 break;
385
386 case MV64XXX_I2C_ACTION_SEND_DATA:
387 writel(drv_data->msg->buf[drv_data->byte_posn++],
004e8ed7 388 drv_data->reg_base + drv_data->reg_offsets.data);
1da177e4 389 writel(drv_data->cntl_bits,
004e8ed7 390 drv_data->reg_base + drv_data->reg_offsets.control);
1da177e4
LT
391 break;
392
393 case MV64XXX_I2C_ACTION_RCV_DATA:
394 drv_data->msg->buf[drv_data->byte_posn++] =
004e8ed7 395 readl(drv_data->reg_base + drv_data->reg_offsets.data);
1da177e4 396 writel(drv_data->cntl_bits,
004e8ed7 397 drv_data->reg_base + drv_data->reg_offsets.control);
1da177e4
LT
398 break;
399
400 case MV64XXX_I2C_ACTION_RCV_DATA_STOP:
401 drv_data->msg->buf[drv_data->byte_posn++] =
004e8ed7 402 readl(drv_data->reg_base + drv_data->reg_offsets.data);
1da177e4
LT
403 drv_data->cntl_bits &= ~MV64XXX_I2C_REG_CONTROL_INTEN;
404 writel(drv_data->cntl_bits | MV64XXX_I2C_REG_CONTROL_STOP,
004e8ed7 405 drv_data->reg_base + drv_data->reg_offsets.control);
1da177e4 406 drv_data->block = 0;
c1d15b68
GC
407 if (drv_data->errata_delay)
408 udelay(5);
409
d295a86e 410 wake_up(&drv_data->waitq);
1da177e4
LT
411 break;
412
413 case MV64XXX_I2C_ACTION_INVALID:
414 default:
415 dev_err(&drv_data->adapter.dev,
416 "mv64xxx_i2c_do_action: Invalid action: %d\n",
417 drv_data->action);
418 drv_data->rc = -EIO;
930ab3d4 419
1da177e4
LT
420 /* FALLTHRU */
421 case MV64XXX_I2C_ACTION_SEND_STOP:
422 drv_data->cntl_bits &= ~MV64XXX_I2C_REG_CONTROL_INTEN;
423 writel(drv_data->cntl_bits | MV64XXX_I2C_REG_CONTROL_STOP,
004e8ed7 424 drv_data->reg_base + drv_data->reg_offsets.control);
1da177e4 425 drv_data->block = 0;
d295a86e 426 wake_up(&drv_data->waitq);
1da177e4 427 break;
00d8689b
TP
428 }
429}
930ab3d4 430
00d8689b
TP
431static void
432mv64xxx_i2c_read_offload_rx_data(struct mv64xxx_i2c_data *drv_data,
433 struct i2c_msg *msg)
434{
435 u32 buf[2];
436
437 buf[0] = readl(drv_data->reg_base + MV64XXX_I2C_REG_RX_DATA_LO);
438 buf[1] = readl(drv_data->reg_base + MV64XXX_I2C_REG_RX_DATA_HI);
439
440 memcpy(msg->buf, buf, msg->len);
441}
442
443static int
444mv64xxx_i2c_intr_offload(struct mv64xxx_i2c_data *drv_data)
445{
446 u32 cause, status;
447
448 cause = readl(drv_data->reg_base +
449 MV64XXX_I2C_REG_BRIDGE_INTR_CAUSE);
450 if (!cause)
451 return IRQ_NONE;
452
453 status = readl(drv_data->reg_base +
454 MV64XXX_I2C_REG_BRIDGE_STATUS);
455
456 if (status & MV64XXX_I2C_BRIDGE_STATUS_ERROR) {
457 drv_data->rc = -EIO;
458 goto out;
459 }
460
461 drv_data->rc = 0;
462
463 /*
464 * Transaction is a one message read transaction, read data
465 * for this message.
466 */
467 if (drv_data->num_msgs == 1 && drv_data->msgs[0].flags & I2C_M_RD) {
468 mv64xxx_i2c_read_offload_rx_data(drv_data, drv_data->msgs);
469 drv_data->msgs++;
470 drv_data->num_msgs--;
1da177e4 471 }
00d8689b
TP
472 /*
473 * Transaction is a two messages write/read transaction, read
474 * data for the second (read) message.
475 */
476 else if (drv_data->num_msgs == 2 &&
477 !(drv_data->msgs[0].flags & I2C_M_RD) &&
478 drv_data->msgs[1].flags & I2C_M_RD) {
479 mv64xxx_i2c_read_offload_rx_data(drv_data, drv_data->msgs + 1);
480 drv_data->msgs += 2;
481 drv_data->num_msgs -= 2;
482 }
483
484out:
485 writel(0, drv_data->reg_base + MV64XXX_I2C_REG_BRIDGE_CONTROL);
486 writel(0, drv_data->reg_base +
487 MV64XXX_I2C_REG_BRIDGE_INTR_CAUSE);
488 drv_data->block = 0;
489
490 wake_up(&drv_data->waitq);
491
492 return IRQ_HANDLED;
1da177e4
LT
493}
494
b0999cc5 495static irqreturn_t
7d12e780 496mv64xxx_i2c_intr(int irq, void *dev_id)
1da177e4
LT
497{
498 struct mv64xxx_i2c_data *drv_data = dev_id;
499 unsigned long flags;
500 u32 status;
b0999cc5 501 irqreturn_t rc = IRQ_NONE;
1da177e4
LT
502
503 spin_lock_irqsave(&drv_data->lock, flags);
930ab3d4 504
00d8689b
TP
505 if (drv_data->offload_enabled)
506 rc = mv64xxx_i2c_intr_offload(drv_data);
507
004e8ed7 508 while (readl(drv_data->reg_base + drv_data->reg_offsets.control) &
1da177e4 509 MV64XXX_I2C_REG_CONTROL_IFLG) {
004e8ed7 510 status = readl(drv_data->reg_base + drv_data->reg_offsets.status);
1da177e4
LT
511 mv64xxx_i2c_fsm(drv_data, status);
512 mv64xxx_i2c_do_action(drv_data);
c7dcb1fe
MR
513
514 if (drv_data->irq_clear_inverted)
515 writel(drv_data->cntl_bits | MV64XXX_I2C_REG_CONTROL_IFLG,
516 drv_data->reg_base + drv_data->reg_offsets.control);
517
1da177e4
LT
518 rc = IRQ_HANDLED;
519 }
520 spin_unlock_irqrestore(&drv_data->lock, flags);
521
522 return rc;
523}
524
525/*
526 *****************************************************************************
527 *
528 * I2C Msg Execution Routines
529 *
530 *****************************************************************************
531 */
1da177e4
LT
532static void
533mv64xxx_i2c_wait_for_completion(struct mv64xxx_i2c_data *drv_data)
534{
535 long time_left;
536 unsigned long flags;
537 char abort = 0;
538
d295a86e 539 time_left = wait_event_timeout(drv_data->waitq,
8a52c6b4 540 !drv_data->block, drv_data->adapter.timeout);
1da177e4
LT
541
542 spin_lock_irqsave(&drv_data->lock, flags);
543 if (!time_left) { /* Timed out */
544 drv_data->rc = -ETIMEDOUT;
545 abort = 1;
546 } else if (time_left < 0) { /* Interrupted/Error */
547 drv_data->rc = time_left; /* errno value */
548 abort = 1;
549 }
550
551 if (abort && drv_data->block) {
e91c021c 552 drv_data->aborting = 1;
1da177e4
LT
553 spin_unlock_irqrestore(&drv_data->lock, flags);
554
555 time_left = wait_event_timeout(drv_data->waitq,
8a52c6b4 556 !drv_data->block, drv_data->adapter.timeout);
1da177e4 557
e91c021c 558 if ((time_left <= 0) && drv_data->block) {
1da177e4
LT
559 drv_data->state = MV64XXX_I2C_STATE_IDLE;
560 dev_err(&drv_data->adapter.dev,
e91c021c
MG
561 "mv64xxx: I2C bus locked, block: %d, "
562 "time_left: %d\n", drv_data->block,
563 (int)time_left);
a07ad1cc 564 mv64xxx_i2c_hw_init(drv_data);
1da177e4
LT
565 }
566 } else
567 spin_unlock_irqrestore(&drv_data->lock, flags);
568}
569
570static int
eda6bee6 571mv64xxx_i2c_execute_msg(struct mv64xxx_i2c_data *drv_data, struct i2c_msg *msg,
4243fa0b 572 int is_last)
1da177e4
LT
573{
574 unsigned long flags;
575
576 spin_lock_irqsave(&drv_data->lock, flags);
1da177e4 577
79970db2
WS
578 drv_data->state = MV64XXX_I2C_STATE_WAITING_FOR_START_COND;
579
eda6bee6 580 drv_data->send_stop = is_last;
1da177e4 581 drv_data->block = 1;
b0200abe 582 mv64xxx_i2c_send_start(drv_data);
1da177e4
LT
583 spin_unlock_irqrestore(&drv_data->lock, flags);
584
585 mv64xxx_i2c_wait_for_completion(drv_data);
586 return drv_data->rc;
587}
588
00d8689b
TP
589static void
590mv64xxx_i2c_prepare_tx(struct mv64xxx_i2c_data *drv_data)
591{
592 struct i2c_msg *msg = drv_data->msgs;
593 u32 buf[2];
594
595 memcpy(buf, msg->buf, msg->len);
596
597 writel(buf[0], drv_data->reg_base + MV64XXX_I2C_REG_TX_DATA_LO);
598 writel(buf[1], drv_data->reg_base + MV64XXX_I2C_REG_TX_DATA_HI);
599}
600
601static int
602mv64xxx_i2c_offload_xfer(struct mv64xxx_i2c_data *drv_data)
603{
604 struct i2c_msg *msgs = drv_data->msgs;
605 int num = drv_data->num_msgs;
606 unsigned long ctrl_reg;
607 unsigned long flags;
608
609 spin_lock_irqsave(&drv_data->lock, flags);
610
611 /* Build transaction */
612 ctrl_reg = MV64XXX_I2C_BRIDGE_CONTROL_ENABLE |
613 (msgs[0].addr << MV64XXX_I2C_BRIDGE_CONTROL_ADDR_SHIFT);
614
615 if (msgs[0].flags & I2C_M_TEN)
616 ctrl_reg |= MV64XXX_I2C_BRIDGE_CONTROL_ADDR_EXT;
617
618 /* Single write message transaction */
619 if (num == 1 && !(msgs[0].flags & I2C_M_RD)) {
620 size_t len = msgs[0].len - 1;
621
622 ctrl_reg |= MV64XXX_I2C_BRIDGE_CONTROL_WR |
623 (len << MV64XXX_I2C_BRIDGE_CONTROL_TX_SIZE_SHIFT);
624 mv64xxx_i2c_prepare_tx(drv_data);
625 }
626 /* Single read message transaction */
627 else if (num == 1 && msgs[0].flags & I2C_M_RD) {
628 size_t len = msgs[0].len - 1;
629
630 ctrl_reg |= MV64XXX_I2C_BRIDGE_CONTROL_RD |
631 (len << MV64XXX_I2C_BRIDGE_CONTROL_RX_SIZE_SHIFT);
632 }
633 /*
634 * Transaction with one write and one read message. This is
635 * guaranteed by the mv64xx_i2c_can_offload() checks.
636 */
637 else if (num == 2) {
638 size_t lentx = msgs[0].len - 1;
639 size_t lenrx = msgs[1].len - 1;
640
641 ctrl_reg |=
642 MV64XXX_I2C_BRIDGE_CONTROL_RD |
643 MV64XXX_I2C_BRIDGE_CONTROL_WR |
644 (lentx << MV64XXX_I2C_BRIDGE_CONTROL_TX_SIZE_SHIFT) |
645 (lenrx << MV64XXX_I2C_BRIDGE_CONTROL_RX_SIZE_SHIFT) |
646 MV64XXX_I2C_BRIDGE_CONTROL_REPEATED_START;
647 mv64xxx_i2c_prepare_tx(drv_data);
648 }
649
650 /* Execute transaction */
651 drv_data->block = 1;
652 writel(ctrl_reg, drv_data->reg_base + MV64XXX_I2C_REG_BRIDGE_CONTROL);
653 spin_unlock_irqrestore(&drv_data->lock, flags);
654
655 mv64xxx_i2c_wait_for_completion(drv_data);
656
657 return drv_data->rc;
658}
659
660static bool
661mv64xxx_i2c_valid_offload_sz(struct i2c_msg *msg)
662{
663 return msg->len <= 8 && msg->len >= 1;
664}
665
666static bool
667mv64xxx_i2c_can_offload(struct mv64xxx_i2c_data *drv_data)
668{
669 struct i2c_msg *msgs = drv_data->msgs;
670 int num = drv_data->num_msgs;
671
00d8689b
TP
672 if (!drv_data->offload_enabled)
673 return false;
674
675 /*
676 * We can offload a transaction consisting of a single
677 * message, as long as the message has a length between 1 and
678 * 8 bytes.
679 */
680 if (num == 1 && mv64xxx_i2c_valid_offload_sz(msgs))
681 return true;
682
683 /*
684 * We can offload a transaction consisting of two messages, if
685 * the first is a write and a second is a read, and both have
686 * a length between 1 and 8 bytes.
687 */
688 if (num == 2 &&
689 mv64xxx_i2c_valid_offload_sz(msgs) &&
690 mv64xxx_i2c_valid_offload_sz(msgs + 1) &&
691 !(msgs[0].flags & I2C_M_RD) &&
692 msgs[1].flags & I2C_M_RD)
693 return true;
694
695 return false;
696}
697
1da177e4
LT
698/*
699 *****************************************************************************
700 *
701 * I2C Core Support Routines (Interface to higher level I2C code)
702 *
703 *****************************************************************************
704 */
705static u32
706mv64xxx_i2c_functionality(struct i2c_adapter *adap)
707{
708 return I2C_FUNC_I2C | I2C_FUNC_10BIT_ADDR | I2C_FUNC_SMBUS_EMUL;
709}
710
711static int
712mv64xxx_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg msgs[], int num)
713{
714 struct mv64xxx_i2c_data *drv_data = i2c_get_adapdata(adap);
4243fa0b 715 int rc, ret = num;
1da177e4 716
4243fa0b
RK
717 BUG_ON(drv_data->msgs != NULL);
718 drv_data->msgs = msgs;
719 drv_data->num_msgs = num;
720
00d8689b
TP
721 if (mv64xxx_i2c_can_offload(drv_data))
722 rc = mv64xxx_i2c_offload_xfer(drv_data);
723 else
724 rc = mv64xxx_i2c_execute_msg(drv_data, &msgs[0], num == 1);
725
4243fa0b
RK
726 if (rc < 0)
727 ret = rc;
728
729 drv_data->num_msgs = 0;
730 drv_data->msgs = NULL;
1da177e4 731
4243fa0b 732 return ret;
1da177e4
LT
733}
734
8f9082c5 735static const struct i2c_algorithm mv64xxx_i2c_algo = {
1da177e4
LT
736 .master_xfer = mv64xxx_i2c_xfer,
737 .functionality = mv64xxx_i2c_functionality,
738};
739
740/*
741 *****************************************************************************
742 *
743 * Driver Interface & Early Init Routines
744 *
745 *****************************************************************************
746 */
004e8ed7 747static const struct of_device_id mv64xxx_i2c_of_match_table[] = {
5ed9d92f 748 { .compatible = "allwinner,sun4i-a10-i2c", .data = &mv64xxx_i2c_regs_sun4i},
c7dcb1fe 749 { .compatible = "allwinner,sun6i-a31-i2c", .data = &mv64xxx_i2c_regs_sun4i},
004e8ed7 750 { .compatible = "marvell,mv64xxx-i2c", .data = &mv64xxx_i2c_regs_mv64xxx},
930ab3d4 751 { .compatible = "marvell,mv78230-i2c", .data = &mv64xxx_i2c_regs_mv64xxx},
6cf70ae9 752 { .compatible = "marvell,mv78230-a0-i2c", .data = &mv64xxx_i2c_regs_mv64xxx},
004e8ed7
MR
753 {}
754};
755MODULE_DEVICE_TABLE(of, mv64xxx_i2c_of_match_table);
756
b61d1575 757#ifdef CONFIG_OF
0b255e92 758static int
bba61f50
HG
759mv64xxx_calc_freq(struct mv64xxx_i2c_data *drv_data,
760 const int tclk, const int n, const int m)
b61d1575 761{
bba61f50
HG
762 if (drv_data->clk_n_base_0)
763 return tclk / (10 * (m + 1) * (1 << n));
764 else
765 return tclk / (10 * (m + 1) * (2 << n));
b61d1575
AL
766}
767
0b255e92 768static bool
bba61f50
HG
769mv64xxx_find_baud_factors(struct mv64xxx_i2c_data *drv_data,
770 const u32 req_freq, const u32 tclk)
b61d1575
AL
771{
772 int freq, delta, best_delta = INT_MAX;
773 int m, n;
774
775 for (n = 0; n <= 7; n++)
776 for (m = 0; m <= 15; m++) {
bba61f50 777 freq = mv64xxx_calc_freq(drv_data, tclk, n, m);
b61d1575
AL
778 delta = req_freq - freq;
779 if (delta >= 0 && delta < best_delta) {
bba61f50
HG
780 drv_data->freq_m = m;
781 drv_data->freq_n = n;
b61d1575
AL
782 best_delta = delta;
783 }
784 if (best_delta == 0)
785 return true;
786 }
787 if (best_delta == INT_MAX)
788 return false;
789 return true;
790}
791
0b255e92 792static int
b61d1575 793mv64xxx_of_config(struct mv64xxx_i2c_data *drv_data,
004e8ed7 794 struct device *dev)
b61d1575 795{
c1a99467
TR
796 const struct of_device_id *device;
797 struct device_node *np = dev->of_node;
798 u32 bus_freq, tclk;
799 int rc = 0;
800
f3a36fbd
TP
801 /* CLK is mandatory when using DT to describe the i2c bus. We
802 * need to know tclk in order to calculate bus clock
803 * factors.
804 */
b61d1575
AL
805 if (IS_ERR(drv_data->clk)) {
806 rc = -ENODEV;
807 goto out;
808 }
809 tclk = clk_get_rate(drv_data->clk);
4c730a06 810
0ce4bc1d 811 if (of_property_read_u32(np, "clock-frequency", &bus_freq))
4c730a06
GC
812 bus_freq = 100000; /* 100kHz by default */
813
bba61f50
HG
814 if (of_device_is_compatible(np, "allwinner,sun4i-a10-i2c") ||
815 of_device_is_compatible(np, "allwinner,sun6i-a31-i2c"))
816 drv_data->clk_n_base_0 = true;
817
818 if (!mv64xxx_find_baud_factors(drv_data, bus_freq, tclk)) {
b61d1575
AL
819 rc = -EINVAL;
820 goto out;
821 }
b61d1575 822
f2a67d0c 823 drv_data->rstc = devm_reset_control_get_optional(dev, NULL);
370136bc 824 if (IS_ERR(drv_data->rstc)) {
074363a5
PZ
825 rc = PTR_ERR(drv_data->rstc);
826 goto out;
370136bc 827 }
074363a5 828 reset_control_deassert(drv_data->rstc);
370136bc 829
b61d1575
AL
830 /* Its not yet defined how timeouts will be specified in device tree.
831 * So hard code the value to 1 second.
832 */
833 drv_data->adapter.timeout = HZ;
004e8ed7
MR
834
835 device = of_match_device(mv64xxx_i2c_of_match_table, dev);
836 if (!device)
837 return -ENODEV;
838
839 memcpy(&drv_data->reg_offsets, device->data, sizeof(drv_data->reg_offsets));
840
930ab3d4
GC
841 /*
842 * For controllers embedded in new SoCs activate the
c1d15b68 843 * Transaction Generator support and the errata fix.
930ab3d4 844 */
c1d15b68 845 if (of_device_is_compatible(np, "marvell,mv78230-i2c")) {
930ab3d4 846 drv_data->offload_enabled = true;
c1d15b68
GC
847 drv_data->errata_delay = true;
848 }
930ab3d4 849
6cf70ae9
GC
850 if (of_device_is_compatible(np, "marvell,mv78230-a0-i2c")) {
851 drv_data->offload_enabled = false;
852 drv_data->errata_delay = true;
853 }
c7dcb1fe
MR
854
855 if (of_device_is_compatible(np, "allwinner,sun6i-a31-i2c"))
856 drv_data->irq_clear_inverted = true;
857
b61d1575
AL
858out:
859 return rc;
b61d1575
AL
860}
861#else /* CONFIG_OF */
0b255e92 862static int
b61d1575 863mv64xxx_of_config(struct mv64xxx_i2c_data *drv_data,
004e8ed7 864 struct device *dev)
b61d1575
AL
865{
866 return -ENODEV;
867}
868#endif /* CONFIG_OF */
869
0b255e92 870static int
3ae5eaec 871mv64xxx_i2c_probe(struct platform_device *pd)
1da177e4 872{
1da177e4 873 struct mv64xxx_i2c_data *drv_data;
6d4028c6 874 struct mv64xxx_i2c_pdata *pdata = dev_get_platdata(&pd->dev);
16874b07 875 struct resource *r;
1da177e4
LT
876 int rc;
877
b61d1575 878 if ((!pdata && !pd->dev.of_node))
1da177e4
LT
879 return -ENODEV;
880
2c911103
RK
881 drv_data = devm_kzalloc(&pd->dev, sizeof(struct mv64xxx_i2c_data),
882 GFP_KERNEL);
1da177e4
LT
883 if (!drv_data)
884 return -ENOMEM;
885
16874b07
RK
886 r = platform_get_resource(pd, IORESOURCE_MEM, 0);
887 drv_data->reg_base = devm_ioremap_resource(&pd->dev, r);
2c911103
RK
888 if (IS_ERR(drv_data->reg_base))
889 return PTR_ERR(drv_data->reg_base);
1da177e4 890
e91c021c 891 strlcpy(drv_data->adapter.name, MV64XXX_I2C_CTLR_NAME " adapter",
2096b956 892 sizeof(drv_data->adapter.name));
1da177e4
LT
893
894 init_waitqueue_head(&drv_data->waitq);
895 spin_lock_init(&drv_data->lock);
896
b61d1575 897 /* Not all platforms have a clk */
4c5c95f5 898 drv_data->clk = devm_clk_get(&pd->dev, NULL);
9f4d6f16
TP
899 if (IS_ERR(drv_data->clk) && PTR_ERR(drv_data->clk) == -EPROBE_DEFER)
900 return -EPROBE_DEFER;
70719350
TP
901 if (!IS_ERR(drv_data->clk))
902 clk_prepare_enable(drv_data->clk);
f3a36fbd 903
88ad60c2
TP
904 drv_data->irq = platform_get_irq(pd, 0);
905
b61d1575
AL
906 if (pdata) {
907 drv_data->freq_m = pdata->freq_m;
908 drv_data->freq_n = pdata->freq_n;
b61d1575 909 drv_data->adapter.timeout = msecs_to_jiffies(pdata->timeout);
930ab3d4 910 drv_data->offload_enabled = false;
004e8ed7 911 memcpy(&drv_data->reg_offsets, &mv64xxx_i2c_regs_mv64xxx, sizeof(drv_data->reg_offsets));
b61d1575 912 } else if (pd->dev.of_node) {
004e8ed7 913 rc = mv64xxx_of_config(drv_data, &pd->dev);
b61d1575 914 if (rc)
2c911103 915 goto exit_clk;
b61d1575 916 }
48944738 917 if (drv_data->irq < 0) {
88ad60c2 918 rc = drv_data->irq;
370136bc 919 goto exit_reset;
48944738 920 }
b61d1575 921
12a917f6 922 drv_data->adapter.dev.parent = &pd->dev;
1da177e4
LT
923 drv_data->adapter.algo = &mv64xxx_i2c_algo;
924 drv_data->adapter.owner = THIS_MODULE;
8c49086c 925 drv_data->adapter.class = I2C_CLASS_DEPRECATED;
65b22ad9 926 drv_data->adapter.nr = pd->id;
b61d1575 927 drv_data->adapter.dev.of_node = pd->dev.of_node;
3ae5eaec 928 platform_set_drvdata(pd, drv_data);
1da177e4
LT
929 i2c_set_adapdata(&drv_data->adapter, drv_data);
930
3269bb63
MB
931 mv64xxx_i2c_hw_init(drv_data);
932
0c195afb
RK
933 rc = request_irq(drv_data->irq, mv64xxx_i2c_intr, 0,
934 MV64XXX_I2C_CTLR_NAME, drv_data);
935 if (rc) {
dfded4ae 936 dev_err(&drv_data->adapter.dev,
0c195afb
RK
937 "mv64xxx: Can't register intr handler irq%d: %d\n",
938 drv_data->irq, rc);
370136bc 939 goto exit_reset;
65b22ad9 940 } else if ((rc = i2c_add_numbered_adapter(&drv_data->adapter)) != 0) {
dfded4ae
MG
941 dev_err(&drv_data->adapter.dev,
942 "mv64xxx: Can't add i2c adapter, rc: %d\n", -rc);
1da177e4
LT
943 goto exit_free_irq;
944 }
945
1da177e4
LT
946 return 0;
947
2c911103
RK
948exit_free_irq:
949 free_irq(drv_data->irq, drv_data);
370136bc 950exit_reset:
074363a5 951 reset_control_assert(drv_data->rstc);
2c911103 952exit_clk:
b61d1575 953 /* Not all platforms have a clk */
70719350
TP
954 if (!IS_ERR(drv_data->clk))
955 clk_disable_unprepare(drv_data->clk);
f3a36fbd 956
1da177e4
LT
957 return rc;
958}
959
0b255e92 960static int
3ae5eaec 961mv64xxx_i2c_remove(struct platform_device *dev)
1da177e4 962{
3ae5eaec 963 struct mv64xxx_i2c_data *drv_data = platform_get_drvdata(dev);
1da177e4 964
bf51a8c5 965 i2c_del_adapter(&drv_data->adapter);
1da177e4 966 free_irq(drv_data->irq, drv_data);
074363a5 967 reset_control_assert(drv_data->rstc);
b61d1575 968 /* Not all platforms have a clk */
70719350
TP
969 if (!IS_ERR(drv_data->clk))
970 clk_disable_unprepare(drv_data->clk);
1da177e4 971
bf51a8c5 972 return 0;
1da177e4
LT
973}
974
a4f64ae2
GJ
975#ifdef CONFIG_PM
976static int mv64xxx_i2c_resume(struct device *dev)
977{
978 struct platform_device *pdev = to_platform_device(dev);
979 struct mv64xxx_i2c_data *drv_data = platform_get_drvdata(pdev);
980
981 mv64xxx_i2c_hw_init(drv_data);
982
983 return 0;
984}
985
986static const struct dev_pm_ops mv64xxx_i2c_pm = {
987 .resume = mv64xxx_i2c_resume,
988};
989
990#define mv64xxx_i2c_pm_ops (&mv64xxx_i2c_pm)
991#else
992#define mv64xxx_i2c_pm_ops NULL
993#endif
994
3ae5eaec 995static struct platform_driver mv64xxx_i2c_driver = {
1da177e4 996 .probe = mv64xxx_i2c_probe,
0b255e92 997 .remove = mv64xxx_i2c_remove,
3ae5eaec 998 .driver = {
3ae5eaec 999 .name = MV64XXX_I2C_CTLR_NAME,
a4f64ae2 1000 .pm = mv64xxx_i2c_pm_ops,
4e905323 1001 .of_match_table = mv64xxx_i2c_of_match_table,
3ae5eaec 1002 },
1da177e4
LT
1003};
1004
a3664b51 1005module_platform_driver(mv64xxx_i2c_driver);
1da177e4
LT
1006
1007MODULE_AUTHOR("Mark A. Greer <mgreer@mvista.com>");
1008MODULE_DESCRIPTION("Marvell mv64xxx host bridge i2c ctlr driver");
1009MODULE_LICENSE("GPL");