mmc: sdhci-acpi: Set MMC_CAP_CMD_DURING_TFR for Intel eMMC controllers
[deliverable/linux.git] / drivers / i2c / busses / i2c-octeon.c
1 /*
2 * (C) Copyright 2009-2010
3 * Nokia Siemens Networks, michael.lawnick.ext@nsn.com
4 *
5 * Portions Copyright (C) 2010 - 2016 Cavium, Inc.
6 *
7 * This is a driver for the i2c adapter in Cavium Networks' OCTEON processors.
8 *
9 * This file is licensed under the terms of the GNU General Public
10 * License version 2. This program is licensed "as is" without any
11 * warranty of any kind, whether express or implied.
12 */
13
14 #include <linux/atomic.h>
15 #include <linux/platform_device.h>
16 #include <linux/interrupt.h>
17 #include <linux/kernel.h>
18 #include <linux/module.h>
19 #include <linux/delay.h>
20 #include <linux/sched.h>
21 #include <linux/slab.h>
22 #include <linux/i2c.h>
23 #include <linux/io.h>
24 #include <linux/of.h>
25
26 #include <asm/octeon/octeon.h>
27
28 #define DRV_NAME "i2c-octeon"
29
30 /* Register offsets */
31 #define SW_TWSI 0x00
32 #define TWSI_INT 0x10
33 #define SW_TWSI_EXT 0x18
34
35 /* Controller command patterns */
36 #define SW_TWSI_V BIT_ULL(63) /* Valid bit */
37 #define SW_TWSI_EIA BIT_ULL(61) /* Extended internal address */
38 #define SW_TWSI_R BIT_ULL(56) /* Result or read bit */
39 #define SW_TWSI_SOVR BIT_ULL(55) /* Size override */
40 #define SW_TWSI_SIZE_SHIFT 52
41 #define SW_TWSI_ADDR_SHIFT 40
42 #define SW_TWSI_IA_SHIFT 32 /* Internal address */
43
44 /* Controller opcode word (bits 60:57) */
45 #define SW_TWSI_OP_SHIFT 57
46 #define SW_TWSI_OP_7 (0ULL << SW_TWSI_OP_SHIFT)
47 #define SW_TWSI_OP_7_IA (1ULL << SW_TWSI_OP_SHIFT)
48 #define SW_TWSI_OP_10 (2ULL << SW_TWSI_OP_SHIFT)
49 #define SW_TWSI_OP_10_IA (3ULL << SW_TWSI_OP_SHIFT)
50 #define SW_TWSI_OP_TWSI_CLK (4ULL << SW_TWSI_OP_SHIFT)
51 #define SW_TWSI_OP_EOP (6ULL << SW_TWSI_OP_SHIFT) /* Extended opcode */
52
53 /* Controller extended opcode word (bits 34:32) */
54 #define SW_TWSI_EOP_SHIFT 32
55 #define SW_TWSI_EOP_TWSI_DATA (SW_TWSI_OP_EOP | 1ULL << SW_TWSI_EOP_SHIFT)
56 #define SW_TWSI_EOP_TWSI_CTL (SW_TWSI_OP_EOP | 2ULL << SW_TWSI_EOP_SHIFT)
57 #define SW_TWSI_EOP_TWSI_CLKCTL (SW_TWSI_OP_EOP | 3ULL << SW_TWSI_EOP_SHIFT)
58 #define SW_TWSI_EOP_TWSI_STAT (SW_TWSI_OP_EOP | 3ULL << SW_TWSI_EOP_SHIFT)
59 #define SW_TWSI_EOP_TWSI_RST (SW_TWSI_OP_EOP | 7ULL << SW_TWSI_EOP_SHIFT)
60
61 /* Controller command and status bits */
62 #define TWSI_CTL_CE 0x80 /* High level controller enable */
63 #define TWSI_CTL_ENAB 0x40 /* Bus enable */
64 #define TWSI_CTL_STA 0x20 /* Master-mode start, HW clears when done */
65 #define TWSI_CTL_STP 0x10 /* Master-mode stop, HW clears when done */
66 #define TWSI_CTL_IFLG 0x08 /* HW event, SW writes 0 to ACK */
67 #define TWSI_CTL_AAK 0x04 /* Assert ACK */
68
69 /* Status values */
70 #define STAT_ERROR 0x00
71 #define STAT_START 0x08
72 #define STAT_REP_START 0x10
73 #define STAT_TXADDR_ACK 0x18
74 #define STAT_TXADDR_NAK 0x20
75 #define STAT_TXDATA_ACK 0x28
76 #define STAT_TXDATA_NAK 0x30
77 #define STAT_LOST_ARB_38 0x38
78 #define STAT_RXADDR_ACK 0x40
79 #define STAT_RXADDR_NAK 0x48
80 #define STAT_RXDATA_ACK 0x50
81 #define STAT_RXDATA_NAK 0x58
82 #define STAT_SLAVE_60 0x60
83 #define STAT_LOST_ARB_68 0x68
84 #define STAT_SLAVE_70 0x70
85 #define STAT_LOST_ARB_78 0x78
86 #define STAT_SLAVE_80 0x80
87 #define STAT_SLAVE_88 0x88
88 #define STAT_GENDATA_ACK 0x90
89 #define STAT_GENDATA_NAK 0x98
90 #define STAT_SLAVE_A0 0xA0
91 #define STAT_SLAVE_A8 0xA8
92 #define STAT_LOST_ARB_B0 0xB0
93 #define STAT_SLAVE_LOST 0xB8
94 #define STAT_SLAVE_NAK 0xC0
95 #define STAT_SLAVE_ACK 0xC8
96 #define STAT_AD2W_ACK 0xD0
97 #define STAT_AD2W_NAK 0xD8
98 #define STAT_IDLE 0xF8
99
100 /* TWSI_INT values */
101 #define TWSI_INT_ST_INT BIT_ULL(0)
102 #define TWSI_INT_TS_INT BIT_ULL(1)
103 #define TWSI_INT_CORE_INT BIT_ULL(2)
104 #define TWSI_INT_ST_EN BIT_ULL(4)
105 #define TWSI_INT_TS_EN BIT_ULL(5)
106 #define TWSI_INT_CORE_EN BIT_ULL(6)
107 #define TWSI_INT_SDA_OVR BIT_ULL(8)
108 #define TWSI_INT_SCL_OVR BIT_ULL(9)
109 #define TWSI_INT_SDA BIT_ULL(10)
110 #define TWSI_INT_SCL BIT_ULL(11)
111
112 #define I2C_OCTEON_EVENT_WAIT 80 /* microseconds */
113
114 struct octeon_i2c {
115 wait_queue_head_t queue;
116 struct i2c_adapter adap;
117 int irq;
118 int hlc_irq; /* For cn7890 only */
119 u32 twsi_freq;
120 int sys_freq;
121 void __iomem *twsi_base;
122 struct device *dev;
123 bool hlc_enabled;
124 bool broken_irq_mode;
125 bool broken_irq_check;
126 void (*int_enable)(struct octeon_i2c *);
127 void (*int_disable)(struct octeon_i2c *);
128 void (*hlc_int_enable)(struct octeon_i2c *);
129 void (*hlc_int_disable)(struct octeon_i2c *);
130 atomic_t int_enable_cnt;
131 atomic_t hlc_int_enable_cnt;
132 };
133
134 static void octeon_i2c_writeq_flush(u64 val, void __iomem *addr)
135 {
136 __raw_writeq(val, addr);
137 __raw_readq(addr); /* wait for write to land */
138 }
139
140 /**
141 * octeon_i2c_reg_write - write an I2C core register
142 * @i2c: The struct octeon_i2c
143 * @eop_reg: Register selector
144 * @data: Value to be written
145 *
146 * The I2C core registers are accessed indirectly via the SW_TWSI CSR.
147 */
148 static void octeon_i2c_reg_write(struct octeon_i2c *i2c, u64 eop_reg, u8 data)
149 {
150 u64 tmp;
151
152 __raw_writeq(SW_TWSI_V | eop_reg | data, i2c->twsi_base + SW_TWSI);
153 do {
154 tmp = __raw_readq(i2c->twsi_base + SW_TWSI);
155 } while ((tmp & SW_TWSI_V) != 0);
156 }
157
158 #define octeon_i2c_ctl_write(i2c, val) \
159 octeon_i2c_reg_write(i2c, SW_TWSI_EOP_TWSI_CTL, val)
160 #define octeon_i2c_data_write(i2c, val) \
161 octeon_i2c_reg_write(i2c, SW_TWSI_EOP_TWSI_DATA, val)
162
163 /**
164 * octeon_i2c_reg_read - read lower bits of an I2C core register
165 * @i2c: The struct octeon_i2c
166 * @eop_reg: Register selector
167 *
168 * Returns the data.
169 *
170 * The I2C core registers are accessed indirectly via the SW_TWSI CSR.
171 */
172 static u8 octeon_i2c_reg_read(struct octeon_i2c *i2c, u64 eop_reg)
173 {
174 u64 tmp;
175
176 __raw_writeq(SW_TWSI_V | eop_reg | SW_TWSI_R, i2c->twsi_base + SW_TWSI);
177 do {
178 tmp = __raw_readq(i2c->twsi_base + SW_TWSI);
179 } while ((tmp & SW_TWSI_V) != 0);
180
181 return tmp & 0xFF;
182 }
183
184 #define octeon_i2c_ctl_read(i2c) \
185 octeon_i2c_reg_read(i2c, SW_TWSI_EOP_TWSI_CTL)
186 #define octeon_i2c_data_read(i2c) \
187 octeon_i2c_reg_read(i2c, SW_TWSI_EOP_TWSI_DATA)
188 #define octeon_i2c_stat_read(i2c) \
189 octeon_i2c_reg_read(i2c, SW_TWSI_EOP_TWSI_STAT)
190
191 /**
192 * octeon_i2c_read_int - read the TWSI_INT register
193 * @i2c: The struct octeon_i2c
194 *
195 * Returns the value of the register.
196 */
197 static u64 octeon_i2c_read_int(struct octeon_i2c *i2c)
198 {
199 return __raw_readq(i2c->twsi_base + TWSI_INT);
200 }
201
202 /**
203 * octeon_i2c_write_int - write the TWSI_INT register
204 * @i2c: The struct octeon_i2c
205 * @data: Value to be written
206 */
207 static void octeon_i2c_write_int(struct octeon_i2c *i2c, u64 data)
208 {
209 octeon_i2c_writeq_flush(data, i2c->twsi_base + TWSI_INT);
210 }
211
212 /**
213 * octeon_i2c_int_enable - enable the CORE interrupt
214 * @i2c: The struct octeon_i2c
215 *
216 * The interrupt will be asserted when there is non-STAT_IDLE state in
217 * the SW_TWSI_EOP_TWSI_STAT register.
218 */
219 static void octeon_i2c_int_enable(struct octeon_i2c *i2c)
220 {
221 octeon_i2c_write_int(i2c, TWSI_INT_CORE_EN);
222 }
223
224 /* disable the CORE interrupt */
225 static void octeon_i2c_int_disable(struct octeon_i2c *i2c)
226 {
227 /* clear TS/ST/IFLG events */
228 octeon_i2c_write_int(i2c, 0);
229 }
230
231 /**
232 * octeon_i2c_int_enable78 - enable the CORE interrupt
233 * @i2c: The struct octeon_i2c
234 *
235 * The interrupt will be asserted when there is non-STAT_IDLE state in the
236 * SW_TWSI_EOP_TWSI_STAT register.
237 */
238 static void octeon_i2c_int_enable78(struct octeon_i2c *i2c)
239 {
240 atomic_inc_return(&i2c->int_enable_cnt);
241 enable_irq(i2c->irq);
242 }
243
244 static void __octeon_i2c_irq_disable(atomic_t *cnt, int irq)
245 {
246 int count;
247
248 /*
249 * The interrupt can be disabled in two places, but we only
250 * want to make the disable_irq_nosync() call once, so keep
251 * track with the atomic variable.
252 */
253 count = atomic_dec_if_positive(cnt);
254 if (count >= 0)
255 disable_irq_nosync(irq);
256 }
257
258 /* disable the CORE interrupt */
259 static void octeon_i2c_int_disable78(struct octeon_i2c *i2c)
260 {
261 __octeon_i2c_irq_disable(&i2c->int_enable_cnt, i2c->irq);
262 }
263
264 /**
265 * octeon_i2c_hlc_int_enable78 - enable the ST interrupt
266 * @i2c: The struct octeon_i2c
267 *
268 * The interrupt will be asserted when there is non-STAT_IDLE state in
269 * the SW_TWSI_EOP_TWSI_STAT register.
270 */
271 static void octeon_i2c_hlc_int_enable78(struct octeon_i2c *i2c)
272 {
273 atomic_inc_return(&i2c->hlc_int_enable_cnt);
274 enable_irq(i2c->hlc_irq);
275 }
276
277 /* disable the ST interrupt */
278 static void octeon_i2c_hlc_int_disable78(struct octeon_i2c *i2c)
279 {
280 __octeon_i2c_irq_disable(&i2c->hlc_int_enable_cnt, i2c->hlc_irq);
281 }
282
283 /*
284 * Cleanup low-level state & enable high-level controller.
285 */
286 static void octeon_i2c_hlc_enable(struct octeon_i2c *i2c)
287 {
288 int try = 0;
289 u64 val;
290
291 if (i2c->hlc_enabled)
292 return;
293 i2c->hlc_enabled = true;
294
295 while (1) {
296 val = octeon_i2c_ctl_read(i2c);
297 if (!(val & (TWSI_CTL_STA | TWSI_CTL_STP)))
298 break;
299
300 /* clear IFLG event */
301 if (val & TWSI_CTL_IFLG)
302 octeon_i2c_ctl_write(i2c, TWSI_CTL_ENAB);
303
304 if (try++ > 100) {
305 pr_err("%s: giving up\n", __func__);
306 break;
307 }
308
309 /* spin until any start/stop has finished */
310 udelay(10);
311 }
312 octeon_i2c_ctl_write(i2c, TWSI_CTL_CE | TWSI_CTL_AAK | TWSI_CTL_ENAB);
313 }
314
315 static void octeon_i2c_hlc_disable(struct octeon_i2c *i2c)
316 {
317 if (!i2c->hlc_enabled)
318 return;
319
320 i2c->hlc_enabled = false;
321 octeon_i2c_ctl_write(i2c, TWSI_CTL_ENAB);
322 }
323
324 /* interrupt service routine */
325 static irqreturn_t octeon_i2c_isr(int irq, void *dev_id)
326 {
327 struct octeon_i2c *i2c = dev_id;
328
329 i2c->int_disable(i2c);
330 wake_up(&i2c->queue);
331
332 return IRQ_HANDLED;
333 }
334
335 /* HLC interrupt service routine */
336 static irqreturn_t octeon_i2c_hlc_isr78(int irq, void *dev_id)
337 {
338 struct octeon_i2c *i2c = dev_id;
339
340 i2c->hlc_int_disable(i2c);
341 wake_up(&i2c->queue);
342
343 return IRQ_HANDLED;
344 }
345
346 static bool octeon_i2c_test_iflg(struct octeon_i2c *i2c)
347 {
348 return (octeon_i2c_ctl_read(i2c) & TWSI_CTL_IFLG);
349 }
350
351 static bool octeon_i2c_test_ready(struct octeon_i2c *i2c, bool *first)
352 {
353 if (octeon_i2c_test_iflg(i2c))
354 return true;
355
356 if (*first) {
357 *first = false;
358 return false;
359 }
360
361 /*
362 * IRQ has signaled an event but IFLG hasn't changed.
363 * Sleep and retry once.
364 */
365 usleep_range(I2C_OCTEON_EVENT_WAIT, 2 * I2C_OCTEON_EVENT_WAIT);
366 return octeon_i2c_test_iflg(i2c);
367 }
368
369 /**
370 * octeon_i2c_wait - wait for the IFLG to be set
371 * @i2c: The struct octeon_i2c
372 *
373 * Returns 0 on success, otherwise a negative errno.
374 */
375 static int octeon_i2c_wait(struct octeon_i2c *i2c)
376 {
377 long time_left;
378 bool first = 1;
379
380 /*
381 * Some chip revisions don't assert the irq in the interrupt
382 * controller. So we must poll for the IFLG change.
383 */
384 if (i2c->broken_irq_mode) {
385 u64 end = get_jiffies_64() + i2c->adap.timeout;
386
387 while (!octeon_i2c_test_iflg(i2c) &&
388 time_before64(get_jiffies_64(), end))
389 usleep_range(I2C_OCTEON_EVENT_WAIT / 2, I2C_OCTEON_EVENT_WAIT);
390
391 return octeon_i2c_test_iflg(i2c) ? 0 : -ETIMEDOUT;
392 }
393
394 i2c->int_enable(i2c);
395 time_left = wait_event_timeout(i2c->queue, octeon_i2c_test_ready(i2c, &first),
396 i2c->adap.timeout);
397 i2c->int_disable(i2c);
398
399 if (i2c->broken_irq_check && !time_left &&
400 octeon_i2c_test_iflg(i2c)) {
401 dev_err(i2c->dev, "broken irq connection detected, switching to polling mode.\n");
402 i2c->broken_irq_mode = true;
403 return 0;
404 }
405
406 if (!time_left)
407 return -ETIMEDOUT;
408
409 return 0;
410 }
411
412 static int octeon_i2c_check_status(struct octeon_i2c *i2c, int final_read)
413 {
414 u8 stat = octeon_i2c_stat_read(i2c);
415
416 switch (stat) {
417 /* Everything is fine */
418 case STAT_IDLE:
419 case STAT_AD2W_ACK:
420 case STAT_RXADDR_ACK:
421 case STAT_TXADDR_ACK:
422 case STAT_TXDATA_ACK:
423 return 0;
424
425 /* ACK allowed on pre-terminal bytes only */
426 case STAT_RXDATA_ACK:
427 if (!final_read)
428 return 0;
429 return -EIO;
430
431 /* NAK allowed on terminal byte only */
432 case STAT_RXDATA_NAK:
433 if (final_read)
434 return 0;
435 return -EIO;
436
437 /* Arbitration lost */
438 case STAT_LOST_ARB_38:
439 case STAT_LOST_ARB_68:
440 case STAT_LOST_ARB_78:
441 case STAT_LOST_ARB_B0:
442 return -EAGAIN;
443
444 /* Being addressed as slave, should back off & listen */
445 case STAT_SLAVE_60:
446 case STAT_SLAVE_70:
447 case STAT_GENDATA_ACK:
448 case STAT_GENDATA_NAK:
449 return -EOPNOTSUPP;
450
451 /* Core busy as slave */
452 case STAT_SLAVE_80:
453 case STAT_SLAVE_88:
454 case STAT_SLAVE_A0:
455 case STAT_SLAVE_A8:
456 case STAT_SLAVE_LOST:
457 case STAT_SLAVE_NAK:
458 case STAT_SLAVE_ACK:
459 return -EOPNOTSUPP;
460
461 case STAT_TXDATA_NAK:
462 return -EIO;
463 case STAT_TXADDR_NAK:
464 case STAT_RXADDR_NAK:
465 case STAT_AD2W_NAK:
466 return -ENXIO;
467 default:
468 dev_err(i2c->dev, "unhandled state: %d\n", stat);
469 return -EIO;
470 }
471 }
472
473 static bool octeon_i2c_hlc_test_valid(struct octeon_i2c *i2c)
474 {
475 return (__raw_readq(i2c->twsi_base + SW_TWSI) & SW_TWSI_V) == 0;
476 }
477
478 static bool octeon_i2c_hlc_test_ready(struct octeon_i2c *i2c, bool *first)
479 {
480 /* check if valid bit is cleared */
481 if (octeon_i2c_hlc_test_valid(i2c))
482 return true;
483
484 if (*first) {
485 *first = false;
486 return false;
487 }
488
489 /*
490 * IRQ has signaled an event but valid bit isn't cleared.
491 * Sleep and retry once.
492 */
493 usleep_range(I2C_OCTEON_EVENT_WAIT, 2 * I2C_OCTEON_EVENT_WAIT);
494 return octeon_i2c_hlc_test_valid(i2c);
495 }
496
497 static void octeon_i2c_hlc_int_enable(struct octeon_i2c *i2c)
498 {
499 octeon_i2c_write_int(i2c, TWSI_INT_ST_EN);
500 }
501
502 static void octeon_i2c_hlc_int_clear(struct octeon_i2c *i2c)
503 {
504 /* clear ST/TS events, listen for neither */
505 octeon_i2c_write_int(i2c, TWSI_INT_ST_INT | TWSI_INT_TS_INT);
506 }
507
508 /**
509 * octeon_i2c_hlc_wait - wait for an HLC operation to complete
510 * @i2c: The struct octeon_i2c
511 *
512 * Returns 0 on success, otherwise -ETIMEDOUT.
513 */
514 static int octeon_i2c_hlc_wait(struct octeon_i2c *i2c)
515 {
516 bool first = 1;
517 int time_left;
518
519 /*
520 * Some cn38xx boards don't assert the irq in the interrupt
521 * controller. So we must poll for the valid bit change.
522 */
523 if (i2c->broken_irq_mode) {
524 u64 end = get_jiffies_64() + i2c->adap.timeout;
525
526 while (!octeon_i2c_hlc_test_valid(i2c) &&
527 time_before64(get_jiffies_64(), end))
528 usleep_range(I2C_OCTEON_EVENT_WAIT / 2, I2C_OCTEON_EVENT_WAIT);
529
530 return octeon_i2c_hlc_test_valid(i2c) ? 0 : -ETIMEDOUT;
531 }
532
533 i2c->hlc_int_enable(i2c);
534 time_left = wait_event_timeout(i2c->queue,
535 octeon_i2c_hlc_test_ready(i2c, &first),
536 i2c->adap.timeout);
537 i2c->hlc_int_disable(i2c);
538 if (!time_left)
539 octeon_i2c_hlc_int_clear(i2c);
540
541 if (i2c->broken_irq_check && !time_left &&
542 octeon_i2c_hlc_test_valid(i2c)) {
543 dev_err(i2c->dev, "broken irq connection detected, switching to polling mode.\n");
544 i2c->broken_irq_mode = true;
545 return 0;
546 }
547
548 if (!time_left)
549 return -ETIMEDOUT;
550 return 0;
551 }
552
553 /* high-level-controller pure read of up to 8 bytes */
554 static int octeon_i2c_hlc_read(struct octeon_i2c *i2c, struct i2c_msg *msgs)
555 {
556 int i, j, ret = 0;
557 u64 cmd;
558
559 octeon_i2c_hlc_enable(i2c);
560 octeon_i2c_hlc_int_clear(i2c);
561
562 cmd = SW_TWSI_V | SW_TWSI_R | SW_TWSI_SOVR;
563 /* SIZE */
564 cmd |= (u64)(msgs[0].len - 1) << SW_TWSI_SIZE_SHIFT;
565 /* A */
566 cmd |= (u64)(msgs[0].addr & 0x7full) << SW_TWSI_ADDR_SHIFT;
567
568 if (msgs[0].flags & I2C_M_TEN)
569 cmd |= SW_TWSI_OP_10;
570 else
571 cmd |= SW_TWSI_OP_7;
572
573 octeon_i2c_writeq_flush(cmd, i2c->twsi_base + SW_TWSI);
574 ret = octeon_i2c_hlc_wait(i2c);
575 if (ret)
576 goto err;
577
578 cmd = __raw_readq(i2c->twsi_base + SW_TWSI);
579 if ((cmd & SW_TWSI_R) == 0)
580 return -EAGAIN;
581
582 for (i = 0, j = msgs[0].len - 1; i < msgs[0].len && i < 4; i++, j--)
583 msgs[0].buf[j] = (cmd >> (8 * i)) & 0xff;
584
585 if (msgs[0].len > 4) {
586 cmd = __raw_readq(i2c->twsi_base + SW_TWSI_EXT);
587 for (i = 0; i < msgs[0].len - 4 && i < 4; i++, j--)
588 msgs[0].buf[j] = (cmd >> (8 * i)) & 0xff;
589 }
590
591 err:
592 return ret;
593 }
594
595 /* high-level-controller pure write of up to 8 bytes */
596 static int octeon_i2c_hlc_write(struct octeon_i2c *i2c, struct i2c_msg *msgs)
597 {
598 int i, j, ret = 0;
599 u64 cmd;
600
601 octeon_i2c_hlc_enable(i2c);
602 octeon_i2c_hlc_int_clear(i2c);
603
604 cmd = SW_TWSI_V | SW_TWSI_SOVR;
605 /* SIZE */
606 cmd |= (u64)(msgs[0].len - 1) << SW_TWSI_SIZE_SHIFT;
607 /* A */
608 cmd |= (u64)(msgs[0].addr & 0x7full) << SW_TWSI_ADDR_SHIFT;
609
610 if (msgs[0].flags & I2C_M_TEN)
611 cmd |= SW_TWSI_OP_10;
612 else
613 cmd |= SW_TWSI_OP_7;
614
615 for (i = 0, j = msgs[0].len - 1; i < msgs[0].len && i < 4; i++, j--)
616 cmd |= (u64)msgs[0].buf[j] << (8 * i);
617
618 if (msgs[0].len > 4) {
619 u64 ext = 0;
620
621 for (i = 0; i < msgs[0].len - 4 && i < 4; i++, j--)
622 ext |= (u64)msgs[0].buf[j] << (8 * i);
623 octeon_i2c_writeq_flush(ext, i2c->twsi_base + SW_TWSI_EXT);
624 }
625
626 octeon_i2c_writeq_flush(cmd, i2c->twsi_base + SW_TWSI);
627 ret = octeon_i2c_hlc_wait(i2c);
628 if (ret)
629 goto err;
630
631 cmd = __raw_readq(i2c->twsi_base + SW_TWSI);
632 if ((cmd & SW_TWSI_R) == 0)
633 return -EAGAIN;
634
635 ret = octeon_i2c_check_status(i2c, false);
636
637 err:
638 return ret;
639 }
640
641 /* high-level-controller composite write+read, msg0=addr, msg1=data */
642 static int octeon_i2c_hlc_comp_read(struct octeon_i2c *i2c, struct i2c_msg *msgs)
643 {
644 int i, j, ret = 0;
645 u64 cmd;
646
647 octeon_i2c_hlc_enable(i2c);
648
649 cmd = SW_TWSI_V | SW_TWSI_R | SW_TWSI_SOVR;
650 /* SIZE */
651 cmd |= (u64)(msgs[1].len - 1) << SW_TWSI_SIZE_SHIFT;
652 /* A */
653 cmd |= (u64)(msgs[0].addr & 0x7full) << SW_TWSI_ADDR_SHIFT;
654
655 if (msgs[0].flags & I2C_M_TEN)
656 cmd |= SW_TWSI_OP_10_IA;
657 else
658 cmd |= SW_TWSI_OP_7_IA;
659
660 if (msgs[0].len == 2) {
661 u64 ext = 0;
662
663 cmd |= SW_TWSI_EIA;
664 ext = (u64)msgs[0].buf[0] << SW_TWSI_IA_SHIFT;
665 cmd |= (u64)msgs[0].buf[1] << SW_TWSI_IA_SHIFT;
666 octeon_i2c_writeq_flush(ext, i2c->twsi_base + SW_TWSI_EXT);
667 } else {
668 cmd |= (u64)msgs[0].buf[0] << SW_TWSI_IA_SHIFT;
669 }
670
671 octeon_i2c_hlc_int_clear(i2c);
672 octeon_i2c_writeq_flush(cmd, i2c->twsi_base + SW_TWSI);
673
674 ret = octeon_i2c_hlc_wait(i2c);
675 if (ret)
676 goto err;
677
678 cmd = __raw_readq(i2c->twsi_base + SW_TWSI);
679 if ((cmd & SW_TWSI_R) == 0)
680 return -EAGAIN;
681
682 for (i = 0, j = msgs[1].len - 1; i < msgs[1].len && i < 4; i++, j--)
683 msgs[1].buf[j] = (cmd >> (8 * i)) & 0xff;
684
685 if (msgs[1].len > 4) {
686 cmd = __raw_readq(i2c->twsi_base + SW_TWSI_EXT);
687 for (i = 0; i < msgs[1].len - 4 && i < 4; i++, j--)
688 msgs[1].buf[j] = (cmd >> (8 * i)) & 0xff;
689 }
690
691 err:
692 return ret;
693 }
694
695 /* high-level-controller composite write+write, m[0]len<=2, m[1]len<=8 */
696 static int octeon_i2c_hlc_comp_write(struct octeon_i2c *i2c, struct i2c_msg *msgs)
697 {
698 bool set_ext = false;
699 int i, j, ret = 0;
700 u64 cmd, ext = 0;
701
702 octeon_i2c_hlc_enable(i2c);
703
704 cmd = SW_TWSI_V | SW_TWSI_SOVR;
705 /* SIZE */
706 cmd |= (u64)(msgs[1].len - 1) << SW_TWSI_SIZE_SHIFT;
707 /* A */
708 cmd |= (u64)(msgs[0].addr & 0x7full) << SW_TWSI_ADDR_SHIFT;
709
710 if (msgs[0].flags & I2C_M_TEN)
711 cmd |= SW_TWSI_OP_10_IA;
712 else
713 cmd |= SW_TWSI_OP_7_IA;
714
715 if (msgs[0].len == 2) {
716 cmd |= SW_TWSI_EIA;
717 ext |= (u64)msgs[0].buf[0] << SW_TWSI_IA_SHIFT;
718 set_ext = true;
719 cmd |= (u64)msgs[0].buf[1] << SW_TWSI_IA_SHIFT;
720 } else {
721 cmd |= (u64)msgs[0].buf[0] << SW_TWSI_IA_SHIFT;
722 }
723
724 for (i = 0, j = msgs[1].len - 1; i < msgs[1].len && i < 4; i++, j--)
725 cmd |= (u64)msgs[1].buf[j] << (8 * i);
726
727 if (msgs[1].len > 4) {
728 for (i = 0; i < msgs[1].len - 4 && i < 4; i++, j--)
729 ext |= (u64)msgs[1].buf[j] << (8 * i);
730 set_ext = true;
731 }
732 if (set_ext)
733 octeon_i2c_writeq_flush(ext, i2c->twsi_base + SW_TWSI_EXT);
734
735 octeon_i2c_hlc_int_clear(i2c);
736 octeon_i2c_writeq_flush(cmd, i2c->twsi_base + SW_TWSI);
737
738 ret = octeon_i2c_hlc_wait(i2c);
739 if (ret)
740 goto err;
741
742 cmd = __raw_readq(i2c->twsi_base + SW_TWSI);
743 if ((cmd & SW_TWSI_R) == 0)
744 return -EAGAIN;
745
746 ret = octeon_i2c_check_status(i2c, false);
747
748 err:
749 return ret;
750 }
751
752 /* calculate and set clock divisors */
753 static void octeon_i2c_set_clock(struct octeon_i2c *i2c)
754 {
755 int tclk, thp_base, inc, thp_idx, mdiv_idx, ndiv_idx, foscl, diff;
756 int thp = 0x18, mdiv = 2, ndiv = 0, delta_hz = 1000000;
757
758 for (ndiv_idx = 0; ndiv_idx < 8 && delta_hz != 0; ndiv_idx++) {
759 /*
760 * An mdiv value of less than 2 seems to not work well
761 * with ds1337 RTCs, so we constrain it to larger values.
762 */
763 for (mdiv_idx = 15; mdiv_idx >= 2 && delta_hz != 0; mdiv_idx--) {
764 /*
765 * For given ndiv and mdiv values check the
766 * two closest thp values.
767 */
768 tclk = i2c->twsi_freq * (mdiv_idx + 1) * 10;
769 tclk *= (1 << ndiv_idx);
770 thp_base = (i2c->sys_freq / (tclk * 2)) - 1;
771
772 for (inc = 0; inc <= 1; inc++) {
773 thp_idx = thp_base + inc;
774 if (thp_idx < 5 || thp_idx > 0xff)
775 continue;
776
777 foscl = i2c->sys_freq / (2 * (thp_idx + 1));
778 foscl = foscl / (1 << ndiv_idx);
779 foscl = foscl / (mdiv_idx + 1) / 10;
780 diff = abs(foscl - i2c->twsi_freq);
781 if (diff < delta_hz) {
782 delta_hz = diff;
783 thp = thp_idx;
784 mdiv = mdiv_idx;
785 ndiv = ndiv_idx;
786 }
787 }
788 }
789 }
790 octeon_i2c_reg_write(i2c, SW_TWSI_OP_TWSI_CLK, thp);
791 octeon_i2c_reg_write(i2c, SW_TWSI_EOP_TWSI_CLKCTL, (mdiv << 3) | ndiv);
792 }
793
794 static int octeon_i2c_init_lowlevel(struct octeon_i2c *i2c)
795 {
796 u8 status = 0;
797 int tries;
798
799 /* reset controller */
800 octeon_i2c_reg_write(i2c, SW_TWSI_EOP_TWSI_RST, 0);
801
802 for (tries = 10; tries && status != STAT_IDLE; tries--) {
803 udelay(1);
804 status = octeon_i2c_stat_read(i2c);
805 if (status == STAT_IDLE)
806 break;
807 }
808
809 if (status != STAT_IDLE) {
810 dev_err(i2c->dev, "%s: TWSI_RST failed! (0x%x)\n",
811 __func__, status);
812 return -EIO;
813 }
814
815 /* toggle twice to force both teardowns */
816 octeon_i2c_hlc_enable(i2c);
817 octeon_i2c_hlc_disable(i2c);
818 return 0;
819 }
820
821 static int octeon_i2c_recovery(struct octeon_i2c *i2c)
822 {
823 int ret;
824
825 ret = i2c_recover_bus(&i2c->adap);
826 if (ret)
827 /* recover failed, try hardware re-init */
828 ret = octeon_i2c_init_lowlevel(i2c);
829 return ret;
830 }
831
832 /**
833 * octeon_i2c_start - send START to the bus
834 * @i2c: The struct octeon_i2c
835 *
836 * Returns 0 on success, otherwise a negative errno.
837 */
838 static int octeon_i2c_start(struct octeon_i2c *i2c)
839 {
840 int ret;
841 u8 stat;
842
843 octeon_i2c_hlc_disable(i2c);
844
845 octeon_i2c_ctl_write(i2c, TWSI_CTL_ENAB | TWSI_CTL_STA);
846 ret = octeon_i2c_wait(i2c);
847 if (ret)
848 goto error;
849
850 stat = octeon_i2c_stat_read(i2c);
851 if (stat == STAT_START || stat == STAT_REP_START)
852 /* START successful, bail out */
853 return 0;
854
855 error:
856 /* START failed, try to recover */
857 ret = octeon_i2c_recovery(i2c);
858 return (ret) ? ret : -EAGAIN;
859 }
860
861 /* send STOP to the bus */
862 static void octeon_i2c_stop(struct octeon_i2c *i2c)
863 {
864 octeon_i2c_ctl_write(i2c, TWSI_CTL_ENAB | TWSI_CTL_STP);
865 }
866
867 /**
868 * octeon_i2c_write - send data to the bus via low-level controller
869 * @i2c: The struct octeon_i2c
870 * @target: Target address
871 * @data: Pointer to the data to be sent
872 * @length: Length of the data
873 *
874 * The address is sent over the bus, then the data.
875 *
876 * Returns 0 on success, otherwise a negative errno.
877 */
878 static int octeon_i2c_write(struct octeon_i2c *i2c, int target,
879 const u8 *data, int length)
880 {
881 int i, result;
882
883 octeon_i2c_data_write(i2c, target << 1);
884 octeon_i2c_ctl_write(i2c, TWSI_CTL_ENAB);
885
886 result = octeon_i2c_wait(i2c);
887 if (result)
888 return result;
889
890 for (i = 0; i < length; i++) {
891 result = octeon_i2c_check_status(i2c, false);
892 if (result)
893 return result;
894
895 octeon_i2c_data_write(i2c, data[i]);
896 octeon_i2c_ctl_write(i2c, TWSI_CTL_ENAB);
897
898 result = octeon_i2c_wait(i2c);
899 if (result)
900 return result;
901 }
902
903 return 0;
904 }
905
906 /**
907 * octeon_i2c_read - receive data from the bus via low-level controller
908 * @i2c: The struct octeon_i2c
909 * @target: Target address
910 * @data: Pointer to the location to store the data
911 * @rlength: Length of the data
912 * @recv_len: flag for length byte
913 *
914 * The address is sent over the bus, then the data is read.
915 *
916 * Returns 0 on success, otherwise a negative errno.
917 */
918 static int octeon_i2c_read(struct octeon_i2c *i2c, int target,
919 u8 *data, u16 *rlength, bool recv_len)
920 {
921 int i, result, length = *rlength;
922 bool final_read = false;
923
924 octeon_i2c_data_write(i2c, (target << 1) | 1);
925 octeon_i2c_ctl_write(i2c, TWSI_CTL_ENAB);
926
927 result = octeon_i2c_wait(i2c);
928 if (result)
929 return result;
930
931 /* address OK ? */
932 result = octeon_i2c_check_status(i2c, false);
933 if (result)
934 return result;
935
936 for (i = 0; i < length; i++) {
937 /*
938 * For the last byte to receive TWSI_CTL_AAK must not be set.
939 *
940 * A special case is I2C_M_RECV_LEN where we don't know the
941 * additional length yet. If recv_len is set we assume we're
942 * not reading the final byte and therefore need to set
943 * TWSI_CTL_AAK.
944 */
945 if ((i + 1 == length) && !(recv_len && i == 0))
946 final_read = true;
947
948 /* clear iflg to allow next event */
949 if (final_read)
950 octeon_i2c_ctl_write(i2c, TWSI_CTL_ENAB);
951 else
952 octeon_i2c_ctl_write(i2c, TWSI_CTL_ENAB | TWSI_CTL_AAK);
953
954 result = octeon_i2c_wait(i2c);
955 if (result)
956 return result;
957
958 data[i] = octeon_i2c_data_read(i2c);
959 if (recv_len && i == 0) {
960 if (data[i] > I2C_SMBUS_BLOCK_MAX + 1)
961 return -EPROTO;
962 length += data[i];
963 }
964
965 result = octeon_i2c_check_status(i2c, final_read);
966 if (result)
967 return result;
968 }
969 *rlength = length;
970 return 0;
971 }
972
973 /**
974 * octeon_i2c_xfer - The driver's master_xfer function
975 * @adap: Pointer to the i2c_adapter structure
976 * @msgs: Pointer to the messages to be processed
977 * @num: Length of the MSGS array
978 *
979 * Returns the number of messages processed, or a negative errno on failure.
980 */
981 static int octeon_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg *msgs,
982 int num)
983 {
984 struct octeon_i2c *i2c = i2c_get_adapdata(adap);
985 int i, ret = 0;
986
987 if (num == 1) {
988 if (msgs[0].len > 0 && msgs[0].len <= 8) {
989 if (msgs[0].flags & I2C_M_RD)
990 ret = octeon_i2c_hlc_read(i2c, msgs);
991 else
992 ret = octeon_i2c_hlc_write(i2c, msgs);
993 goto out;
994 }
995 } else if (num == 2) {
996 if ((msgs[0].flags & I2C_M_RD) == 0 &&
997 (msgs[1].flags & I2C_M_RECV_LEN) == 0 &&
998 msgs[0].len > 0 && msgs[0].len <= 2 &&
999 msgs[1].len > 0 && msgs[1].len <= 8 &&
1000 msgs[0].addr == msgs[1].addr) {
1001 if (msgs[1].flags & I2C_M_RD)
1002 ret = octeon_i2c_hlc_comp_read(i2c, msgs);
1003 else
1004 ret = octeon_i2c_hlc_comp_write(i2c, msgs);
1005 goto out;
1006 }
1007 }
1008
1009 for (i = 0; ret == 0 && i < num; i++) {
1010 struct i2c_msg *pmsg = &msgs[i];
1011
1012 /* zero-length messages are not supported */
1013 if (!pmsg->len) {
1014 ret = -EOPNOTSUPP;
1015 break;
1016 }
1017
1018 ret = octeon_i2c_start(i2c);
1019 if (ret)
1020 return ret;
1021
1022 if (pmsg->flags & I2C_M_RD)
1023 ret = octeon_i2c_read(i2c, pmsg->addr, pmsg->buf,
1024 &pmsg->len, pmsg->flags & I2C_M_RECV_LEN);
1025 else
1026 ret = octeon_i2c_write(i2c, pmsg->addr, pmsg->buf,
1027 pmsg->len);
1028 }
1029 octeon_i2c_stop(i2c);
1030 out:
1031 return (ret != 0) ? ret : num;
1032 }
1033
1034 static int octeon_i2c_get_scl(struct i2c_adapter *adap)
1035 {
1036 struct octeon_i2c *i2c = i2c_get_adapdata(adap);
1037 u64 state;
1038
1039 state = octeon_i2c_read_int(i2c);
1040 return state & TWSI_INT_SCL;
1041 }
1042
1043 static void octeon_i2c_set_scl(struct i2c_adapter *adap, int val)
1044 {
1045 struct octeon_i2c *i2c = i2c_get_adapdata(adap);
1046
1047 octeon_i2c_write_int(i2c, TWSI_INT_SCL_OVR);
1048 }
1049
1050 static int octeon_i2c_get_sda(struct i2c_adapter *adap)
1051 {
1052 struct octeon_i2c *i2c = i2c_get_adapdata(adap);
1053 u64 state;
1054
1055 state = octeon_i2c_read_int(i2c);
1056 return state & TWSI_INT_SDA;
1057 }
1058
1059 static void octeon_i2c_prepare_recovery(struct i2c_adapter *adap)
1060 {
1061 struct octeon_i2c *i2c = i2c_get_adapdata(adap);
1062
1063 /*
1064 * The stop resets the state machine, does not _transmit_ STOP unless
1065 * engine was active.
1066 */
1067 octeon_i2c_stop(i2c);
1068
1069 octeon_i2c_hlc_disable(i2c);
1070 octeon_i2c_write_int(i2c, 0);
1071 }
1072
1073 static void octeon_i2c_unprepare_recovery(struct i2c_adapter *adap)
1074 {
1075 struct octeon_i2c *i2c = i2c_get_adapdata(adap);
1076
1077 octeon_i2c_write_int(i2c, 0);
1078 }
1079
1080 static struct i2c_bus_recovery_info octeon_i2c_recovery_info = {
1081 .recover_bus = i2c_generic_scl_recovery,
1082 .get_scl = octeon_i2c_get_scl,
1083 .set_scl = octeon_i2c_set_scl,
1084 .get_sda = octeon_i2c_get_sda,
1085 .prepare_recovery = octeon_i2c_prepare_recovery,
1086 .unprepare_recovery = octeon_i2c_unprepare_recovery,
1087 };
1088
1089 static u32 octeon_i2c_functionality(struct i2c_adapter *adap)
1090 {
1091 return I2C_FUNC_I2C | (I2C_FUNC_SMBUS_EMUL & ~I2C_FUNC_SMBUS_QUICK) |
1092 I2C_FUNC_SMBUS_READ_BLOCK_DATA | I2C_SMBUS_BLOCK_PROC_CALL;
1093 }
1094
1095 static const struct i2c_algorithm octeon_i2c_algo = {
1096 .master_xfer = octeon_i2c_xfer,
1097 .functionality = octeon_i2c_functionality,
1098 };
1099
1100 static struct i2c_adapter octeon_i2c_ops = {
1101 .owner = THIS_MODULE,
1102 .name = "OCTEON adapter",
1103 .algo = &octeon_i2c_algo,
1104 };
1105
1106 static int octeon_i2c_probe(struct platform_device *pdev)
1107 {
1108 struct device_node *node = pdev->dev.of_node;
1109 int irq, result = 0, hlc_irq = 0;
1110 struct resource *res_mem;
1111 struct octeon_i2c *i2c;
1112 bool cn78xx_style;
1113
1114 cn78xx_style = of_device_is_compatible(node, "cavium,octeon-7890-twsi");
1115 if (cn78xx_style) {
1116 hlc_irq = platform_get_irq(pdev, 0);
1117 if (hlc_irq < 0)
1118 return hlc_irq;
1119
1120 irq = platform_get_irq(pdev, 2);
1121 if (irq < 0)
1122 return irq;
1123 } else {
1124 /* All adaptors have an irq. */
1125 irq = platform_get_irq(pdev, 0);
1126 if (irq < 0)
1127 return irq;
1128 }
1129
1130 i2c = devm_kzalloc(&pdev->dev, sizeof(*i2c), GFP_KERNEL);
1131 if (!i2c) {
1132 result = -ENOMEM;
1133 goto out;
1134 }
1135 i2c->dev = &pdev->dev;
1136
1137 res_mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1138 i2c->twsi_base = devm_ioremap_resource(&pdev->dev, res_mem);
1139 if (IS_ERR(i2c->twsi_base)) {
1140 result = PTR_ERR(i2c->twsi_base);
1141 goto out;
1142 }
1143
1144 /*
1145 * "clock-rate" is a legacy binding, the official binding is
1146 * "clock-frequency". Try the official one first and then
1147 * fall back if it doesn't exist.
1148 */
1149 if (of_property_read_u32(node, "clock-frequency", &i2c->twsi_freq) &&
1150 of_property_read_u32(node, "clock-rate", &i2c->twsi_freq)) {
1151 dev_err(i2c->dev,
1152 "no I2C 'clock-rate' or 'clock-frequency' property\n");
1153 result = -ENXIO;
1154 goto out;
1155 }
1156
1157 i2c->sys_freq = octeon_get_io_clock_rate();
1158
1159 init_waitqueue_head(&i2c->queue);
1160
1161 i2c->irq = irq;
1162
1163 if (cn78xx_style) {
1164 i2c->hlc_irq = hlc_irq;
1165
1166 i2c->int_enable = octeon_i2c_int_enable78;
1167 i2c->int_disable = octeon_i2c_int_disable78;
1168 i2c->hlc_int_enable = octeon_i2c_hlc_int_enable78;
1169 i2c->hlc_int_disable = octeon_i2c_hlc_int_disable78;
1170
1171 irq_set_status_flags(i2c->irq, IRQ_NOAUTOEN);
1172 irq_set_status_flags(i2c->hlc_irq, IRQ_NOAUTOEN);
1173
1174 result = devm_request_irq(&pdev->dev, i2c->hlc_irq,
1175 octeon_i2c_hlc_isr78, 0,
1176 DRV_NAME, i2c);
1177 if (result < 0) {
1178 dev_err(i2c->dev, "failed to attach interrupt\n");
1179 goto out;
1180 }
1181 } else {
1182 i2c->int_enable = octeon_i2c_int_enable;
1183 i2c->int_disable = octeon_i2c_int_disable;
1184 i2c->hlc_int_enable = octeon_i2c_hlc_int_enable;
1185 i2c->hlc_int_disable = octeon_i2c_int_disable;
1186 }
1187
1188 result = devm_request_irq(&pdev->dev, i2c->irq,
1189 octeon_i2c_isr, 0, DRV_NAME, i2c);
1190 if (result < 0) {
1191 dev_err(i2c->dev, "failed to attach interrupt\n");
1192 goto out;
1193 }
1194
1195 if (OCTEON_IS_MODEL(OCTEON_CN38XX))
1196 i2c->broken_irq_check = true;
1197
1198 result = octeon_i2c_init_lowlevel(i2c);
1199 if (result) {
1200 dev_err(i2c->dev, "init low level failed\n");
1201 goto out;
1202 }
1203
1204 octeon_i2c_set_clock(i2c);
1205
1206 i2c->adap = octeon_i2c_ops;
1207 i2c->adap.timeout = msecs_to_jiffies(2);
1208 i2c->adap.retries = 5;
1209 i2c->adap.bus_recovery_info = &octeon_i2c_recovery_info;
1210 i2c->adap.dev.parent = &pdev->dev;
1211 i2c->adap.dev.of_node = node;
1212 i2c_set_adapdata(&i2c->adap, i2c);
1213 platform_set_drvdata(pdev, i2c);
1214
1215 result = i2c_add_adapter(&i2c->adap);
1216 if (result < 0) {
1217 dev_err(i2c->dev, "failed to add adapter\n");
1218 goto out;
1219 }
1220 dev_info(i2c->dev, "probed\n");
1221 return 0;
1222
1223 out:
1224 return result;
1225 };
1226
1227 static int octeon_i2c_remove(struct platform_device *pdev)
1228 {
1229 struct octeon_i2c *i2c = platform_get_drvdata(pdev);
1230
1231 i2c_del_adapter(&i2c->adap);
1232 return 0;
1233 };
1234
1235 static const struct of_device_id octeon_i2c_match[] = {
1236 { .compatible = "cavium,octeon-3860-twsi", },
1237 { .compatible = "cavium,octeon-7890-twsi", },
1238 {},
1239 };
1240 MODULE_DEVICE_TABLE(of, octeon_i2c_match);
1241
1242 static struct platform_driver octeon_i2c_driver = {
1243 .probe = octeon_i2c_probe,
1244 .remove = octeon_i2c_remove,
1245 .driver = {
1246 .name = DRV_NAME,
1247 .of_match_table = octeon_i2c_match,
1248 },
1249 };
1250
1251 module_platform_driver(octeon_i2c_driver);
1252
1253 MODULE_AUTHOR("Michael Lawnick <michael.lawnick.ext@nsn.com>");
1254 MODULE_DESCRIPTION("I2C-Bus adapter for Cavium OCTEON processors");
1255 MODULE_LICENSE("GPL");
This page took 0.057883 seconds and 5 git commands to generate.