2 * (C) Copyright 2009-2010
3 * Nokia Siemens Networks, michael.lawnick.ext@nsn.com
5 * Portions Copyright (C) 2010, 2011 Cavium Networks, Inc.
7 * This is a driver for the i2c adapter in Cavium Networks' OCTEON processors.
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.
14 #include <linux/platform_device.h>
15 #include <linux/interrupt.h>
16 #include <linux/kernel.h>
17 #include <linux/module.h>
18 #include <linux/of_i2c.h>
19 #include <linux/delay.h>
20 #include <linux/sched.h>
21 #include <linux/slab.h>
22 #include <linux/init.h>
23 #include <linux/i2c.h>
27 #include <asm/octeon/octeon.h>
29 #define DRV_NAME "i2c-octeon"
31 /* The previous out-of-tree version was implicitly version 1.0. */
32 #define DRV_VERSION "2.0"
34 /* register offsets */
38 /* Controller command patterns */
39 #define SW_TWSI_V 0x8000000000000000ull
40 #define SW_TWSI_EOP_TWSI_DATA 0x0C00000100000000ull
41 #define SW_TWSI_EOP_TWSI_CTL 0x0C00000200000000ull
42 #define SW_TWSI_EOP_TWSI_CLKCTL 0x0C00000300000000ull
43 #define SW_TWSI_EOP_TWSI_STAT 0x0C00000300000000ull
44 #define SW_TWSI_EOP_TWSI_RST 0x0C00000700000000ull
45 #define SW_TWSI_OP_TWSI_CLK 0x0800000000000000ull
46 #define SW_TWSI_R 0x0100000000000000ull
48 /* Controller command and status bits */
49 #define TWSI_CTL_CE 0x80
50 #define TWSI_CTL_ENAB 0x40
51 #define TWSI_CTL_STA 0x20
52 #define TWSI_CTL_STP 0x10
53 #define TWSI_CTL_IFLG 0x08
54 #define TWSI_CTL_AAK 0x04
56 /* Some status values */
57 #define STAT_START 0x08
58 #define STAT_RSTART 0x10
59 #define STAT_TXADDR_ACK 0x18
60 #define STAT_TXDATA_ACK 0x28
61 #define STAT_RXADDR_ACK 0x40
62 #define STAT_RXDATA_ACK 0x50
63 #define STAT_IDLE 0xF8
66 wait_queue_head_t queue
;
67 struct i2c_adapter adap
;
71 resource_size_t twsi_phys
;
72 void __iomem
*twsi_base
;
73 resource_size_t regsize
;
78 * octeon_i2c_write_sw - write an I2C core register.
79 * @i2c: The struct octeon_i2c.
80 * @eop_reg: Register selector.
81 * @data: Value to be written.
83 * The I2C core registers are accessed indirectly via the SW_TWSI CSR.
85 static void octeon_i2c_write_sw(struct octeon_i2c
*i2c
,
91 __raw_writeq(SW_TWSI_V
| eop_reg
| data
, i2c
->twsi_base
+ SW_TWSI
);
93 tmp
= __raw_readq(i2c
->twsi_base
+ SW_TWSI
);
94 } while ((tmp
& SW_TWSI_V
) != 0);
98 * octeon_i2c_read_sw - write an I2C core register.
99 * @i2c: The struct octeon_i2c.
100 * @eop_reg: Register selector.
104 * The I2C core registers are accessed indirectly via the SW_TWSI CSR.
106 static u8
octeon_i2c_read_sw(struct octeon_i2c
*i2c
, u64 eop_reg
)
110 __raw_writeq(SW_TWSI_V
| eop_reg
| SW_TWSI_R
, i2c
->twsi_base
+ SW_TWSI
);
112 tmp
= __raw_readq(i2c
->twsi_base
+ SW_TWSI
);
113 } while ((tmp
& SW_TWSI_V
) != 0);
119 * octeon_i2c_write_int - write the TWSI_INT register
120 * @i2c: The struct octeon_i2c.
121 * @data: Value to be written.
123 static void octeon_i2c_write_int(struct octeon_i2c
*i2c
, u64 data
)
125 __raw_writeq(data
, i2c
->twsi_base
+ TWSI_INT
);
126 __raw_readq(i2c
->twsi_base
+ TWSI_INT
);
130 * octeon_i2c_int_enable - enable the TS interrupt.
131 * @i2c: The struct octeon_i2c.
133 * The interrupt will be asserted when there is non-STAT_IDLE state in
134 * the SW_TWSI_EOP_TWSI_STAT register.
136 static void octeon_i2c_int_enable(struct octeon_i2c
*i2c
)
138 octeon_i2c_write_int(i2c
, 0x40);
142 * octeon_i2c_int_disable - disable the TS interrupt.
143 * @i2c: The struct octeon_i2c.
145 static void octeon_i2c_int_disable(struct octeon_i2c
*i2c
)
147 octeon_i2c_write_int(i2c
, 0);
151 * octeon_i2c_unblock - unblock the bus.
152 * @i2c: The struct octeon_i2c.
154 * If there was a reset while a device was driving 0 to bus,
155 * bus is blocked. We toggle it free manually by some clock
156 * cycles and send a stop.
158 static void octeon_i2c_unblock(struct octeon_i2c
*i2c
)
162 dev_dbg(i2c
->dev
, "%s\n", __func__
);
163 for (i
= 0; i
< 9; i
++) {
164 octeon_i2c_write_int(i2c
, 0x0);
166 octeon_i2c_write_int(i2c
, 0x200);
169 octeon_i2c_write_int(i2c
, 0x300);
171 octeon_i2c_write_int(i2c
, 0x100);
173 octeon_i2c_write_int(i2c
, 0x0);
177 * octeon_i2c_isr - the interrupt service routine.
178 * @int: The irq, unused.
179 * @dev_id: Our struct octeon_i2c.
181 static irqreturn_t
octeon_i2c_isr(int irq
, void *dev_id
)
183 struct octeon_i2c
*i2c
= dev_id
;
185 octeon_i2c_int_disable(i2c
);
186 wake_up_interruptible(&i2c
->queue
);
192 static int octeon_i2c_test_iflg(struct octeon_i2c
*i2c
)
194 return (octeon_i2c_read_sw(i2c
, SW_TWSI_EOP_TWSI_CTL
) & TWSI_CTL_IFLG
) != 0;
198 * octeon_i2c_wait - wait for the IFLG to be set.
199 * @i2c: The struct octeon_i2c.
201 * Returns 0 on success, otherwise a negative errno.
203 static int octeon_i2c_wait(struct octeon_i2c
*i2c
)
207 octeon_i2c_int_enable(i2c
);
209 result
= wait_event_interruptible_timeout(i2c
->queue
,
210 octeon_i2c_test_iflg(i2c
),
213 octeon_i2c_int_disable(i2c
);
216 dev_dbg(i2c
->dev
, "%s: wait interrupted\n", __func__
);
218 } else if (result
== 0) {
219 dev_dbg(i2c
->dev
, "%s: timeout\n", __func__
);
227 * octeon_i2c_start - send START to the bus.
228 * @i2c: The struct octeon_i2c.
230 * Returns 0 on success, otherwise a negative errno.
232 static int octeon_i2c_start(struct octeon_i2c
*i2c
)
237 octeon_i2c_write_sw(i2c
, SW_TWSI_EOP_TWSI_CTL
,
238 TWSI_CTL_ENAB
| TWSI_CTL_STA
);
240 result
= octeon_i2c_wait(i2c
);
242 if (octeon_i2c_read_sw(i2c
, SW_TWSI_EOP_TWSI_STAT
) == STAT_IDLE
) {
244 * Controller refused to send start flag May
245 * be a client is holding SDA low - let's try
248 octeon_i2c_unblock(i2c
);
249 octeon_i2c_write_sw(i2c
, SW_TWSI_EOP_TWSI_CTL
,
250 TWSI_CTL_ENAB
| TWSI_CTL_STA
);
252 result
= octeon_i2c_wait(i2c
);
258 data
= octeon_i2c_read_sw(i2c
, SW_TWSI_EOP_TWSI_STAT
);
259 if ((data
!= STAT_START
) && (data
!= STAT_RSTART
)) {
260 dev_err(i2c
->dev
, "%s: bad status (0x%x)\n", __func__
, data
);
268 * octeon_i2c_stop - send STOP to the bus.
269 * @i2c: The struct octeon_i2c.
271 * Returns 0 on success, otherwise a negative errno.
273 static int octeon_i2c_stop(struct octeon_i2c
*i2c
)
277 octeon_i2c_write_sw(i2c
, SW_TWSI_EOP_TWSI_CTL
,
278 TWSI_CTL_ENAB
| TWSI_CTL_STP
);
280 data
= octeon_i2c_read_sw(i2c
, SW_TWSI_EOP_TWSI_STAT
);
282 if (data
!= STAT_IDLE
) {
283 dev_err(i2c
->dev
, "%s: bad status(0x%x)\n", __func__
, data
);
290 * octeon_i2c_write - send data to the bus.
291 * @i2c: The struct octeon_i2c.
292 * @target: Target address.
293 * @data: Pointer to the data to be sent.
294 * @length: Length of the data.
296 * The address is sent over the bus, then the data.
298 * Returns 0 on success, otherwise a negative errno.
300 static int octeon_i2c_write(struct octeon_i2c
*i2c
, int target
,
301 const u8
*data
, int length
)
306 result
= octeon_i2c_start(i2c
);
310 octeon_i2c_write_sw(i2c
, SW_TWSI_EOP_TWSI_DATA
, target
<< 1);
311 octeon_i2c_write_sw(i2c
, SW_TWSI_EOP_TWSI_CTL
, TWSI_CTL_ENAB
);
313 result
= octeon_i2c_wait(i2c
);
317 for (i
= 0; i
< length
; i
++) {
318 tmp
= octeon_i2c_read_sw(i2c
, SW_TWSI_EOP_TWSI_STAT
);
319 if ((tmp
!= STAT_TXADDR_ACK
) && (tmp
!= STAT_TXDATA_ACK
)) {
321 "%s: bad status before write (0x%x)\n",
326 octeon_i2c_write_sw(i2c
, SW_TWSI_EOP_TWSI_DATA
, data
[i
]);
327 octeon_i2c_write_sw(i2c
, SW_TWSI_EOP_TWSI_CTL
, TWSI_CTL_ENAB
);
329 result
= octeon_i2c_wait(i2c
);
338 * octeon_i2c_read - receive data from the bus.
339 * @i2c: The struct octeon_i2c.
340 * @target: Target address.
341 * @data: Pointer to the location to store the datae .
342 * @length: Length of the data.
344 * The address is sent over the bus, then the data is read.
346 * Returns 0 on success, otherwise a negative errno.
348 static int octeon_i2c_read(struct octeon_i2c
*i2c
, int target
,
349 u8
*data
, int length
)
357 result
= octeon_i2c_start(i2c
);
361 octeon_i2c_write_sw(i2c
, SW_TWSI_EOP_TWSI_DATA
, (target
<<1) | 1);
362 octeon_i2c_write_sw(i2c
, SW_TWSI_EOP_TWSI_CTL
, TWSI_CTL_ENAB
);
364 result
= octeon_i2c_wait(i2c
);
368 for (i
= 0; i
< length
; i
++) {
369 tmp
= octeon_i2c_read_sw(i2c
, SW_TWSI_EOP_TWSI_STAT
);
370 if ((tmp
!= STAT_RXDATA_ACK
) && (tmp
!= STAT_RXADDR_ACK
)) {
372 "%s: bad status before read (0x%x)\n",
378 octeon_i2c_write_sw(i2c
, SW_TWSI_EOP_TWSI_CTL
,
379 TWSI_CTL_ENAB
| TWSI_CTL_AAK
);
381 octeon_i2c_write_sw(i2c
, SW_TWSI_EOP_TWSI_CTL
,
384 result
= octeon_i2c_wait(i2c
);
388 data
[i
] = octeon_i2c_read_sw(i2c
, SW_TWSI_EOP_TWSI_DATA
);
394 * octeon_i2c_xfer - The driver's master_xfer function.
395 * @adap: Pointer to the i2c_adapter structure.
396 * @msgs: Pointer to the messages to be processed.
397 * @num: Length of the MSGS array.
399 * Returns the number of messages processed, or a negative errno on
402 static int octeon_i2c_xfer(struct i2c_adapter
*adap
,
403 struct i2c_msg
*msgs
,
406 struct i2c_msg
*pmsg
;
409 struct octeon_i2c
*i2c
= i2c_get_adapdata(adap
);
411 for (i
= 0; ret
== 0 && i
< num
; i
++) {
414 "Doing %s %d byte(s) to/from 0x%02x - %d of %d messages\n",
415 pmsg
->flags
& I2C_M_RD
? "read" : "write",
416 pmsg
->len
, pmsg
->addr
, i
+ 1, num
);
417 if (pmsg
->flags
& I2C_M_RD
)
418 ret
= octeon_i2c_read(i2c
, pmsg
->addr
, pmsg
->buf
,
421 ret
= octeon_i2c_write(i2c
, pmsg
->addr
, pmsg
->buf
,
424 octeon_i2c_stop(i2c
);
426 return (ret
!= 0) ? ret
: num
;
429 static u32
octeon_i2c_functionality(struct i2c_adapter
*adap
)
431 return I2C_FUNC_I2C
| I2C_FUNC_SMBUS_EMUL
;
434 static const struct i2c_algorithm octeon_i2c_algo
= {
435 .master_xfer
= octeon_i2c_xfer
,
436 .functionality
= octeon_i2c_functionality
,
439 static struct i2c_adapter octeon_i2c_ops
= {
440 .owner
= THIS_MODULE
,
441 .name
= "OCTEON adapter",
442 .algo
= &octeon_i2c_algo
,
447 * octeon_i2c_setclock - Calculate and set clock divisors.
449 static int octeon_i2c_setclock(struct octeon_i2c
*i2c
)
451 int tclk
, thp_base
, inc
, thp_idx
, mdiv_idx
, ndiv_idx
, foscl
, diff
;
452 int thp
= 0x18, mdiv
= 2, ndiv
= 0, delta_hz
= 1000000;
454 for (ndiv_idx
= 0; ndiv_idx
< 8 && delta_hz
!= 0; ndiv_idx
++) {
456 * An mdiv value of less than 2 seems to not work well
457 * with ds1337 RTCs, so we constrain it to larger
460 for (mdiv_idx
= 15; mdiv_idx
>= 2 && delta_hz
!= 0; mdiv_idx
--) {
462 * For given ndiv and mdiv values check the
463 * two closest thp values.
465 tclk
= i2c
->twsi_freq
* (mdiv_idx
+ 1) * 10;
466 tclk
*= (1 << ndiv_idx
);
467 thp_base
= (i2c
->sys_freq
/ (tclk
* 2)) - 1;
468 for (inc
= 0; inc
<= 1; inc
++) {
469 thp_idx
= thp_base
+ inc
;
470 if (thp_idx
< 5 || thp_idx
> 0xff)
473 foscl
= i2c
->sys_freq
/ (2 * (thp_idx
+ 1));
474 foscl
= foscl
/ (1 << ndiv_idx
);
475 foscl
= foscl
/ (mdiv_idx
+ 1) / 10;
476 diff
= abs(foscl
- i2c
->twsi_freq
);
477 if (diff
< delta_hz
) {
486 octeon_i2c_write_sw(i2c
, SW_TWSI_OP_TWSI_CLK
, thp
);
487 octeon_i2c_write_sw(i2c
, SW_TWSI_EOP_TWSI_CLKCTL
, (mdiv
<< 3) | ndiv
);
492 static int octeon_i2c_initlowlevel(struct octeon_i2c
*i2c
)
497 /* disable high level controller, enable bus access */
498 octeon_i2c_write_sw(i2c
, SW_TWSI_EOP_TWSI_CTL
, TWSI_CTL_ENAB
);
500 /* reset controller */
501 octeon_i2c_write_sw(i2c
, SW_TWSI_EOP_TWSI_RST
, 0);
503 for (tries
= 10; tries
; tries
--) {
505 status
= octeon_i2c_read_sw(i2c
, SW_TWSI_EOP_TWSI_STAT
);
506 if (status
== STAT_IDLE
)
509 dev_err(i2c
->dev
, "%s: TWSI_RST failed! (0x%x)\n", __func__
, status
);
513 static int octeon_i2c_probe(struct platform_device
*pdev
)
516 struct octeon_i2c
*i2c
;
517 struct resource
*res_mem
;
519 /* All adaptors have an irq. */
520 irq
= platform_get_irq(pdev
, 0);
524 i2c
= devm_kzalloc(&pdev
->dev
, sizeof(*i2c
), GFP_KERNEL
);
526 dev_err(&pdev
->dev
, "kzalloc failed\n");
530 i2c
->dev
= &pdev
->dev
;
532 res_mem
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
534 if (res_mem
== NULL
) {
535 dev_err(i2c
->dev
, "found no memory resource\n");
539 i2c
->twsi_phys
= res_mem
->start
;
540 i2c
->regsize
= resource_size(res_mem
);
543 * "clock-rate" is a legacy binding, the official binding is
544 * "clock-frequency". Try the official one first and then
545 * fall back if it doesn't exist.
547 if (of_property_read_u32(pdev
->dev
.of_node
,
548 "clock-frequency", &i2c
->twsi_freq
) &&
549 of_property_read_u32(pdev
->dev
.of_node
,
550 "clock-rate", &i2c
->twsi_freq
)) {
552 "no I2C 'clock-rate' or 'clock-frequency' property\n");
557 i2c
->sys_freq
= octeon_get_io_clock_rate();
559 if (!devm_request_mem_region(&pdev
->dev
, i2c
->twsi_phys
, i2c
->regsize
,
561 dev_err(i2c
->dev
, "request_mem_region failed\n");
564 i2c
->twsi_base
= devm_ioremap(&pdev
->dev
, i2c
->twsi_phys
, i2c
->regsize
);
566 init_waitqueue_head(&i2c
->queue
);
570 result
= devm_request_irq(&pdev
->dev
, i2c
->irq
,
571 octeon_i2c_isr
, 0, DRV_NAME
, i2c
);
573 dev_err(i2c
->dev
, "failed to attach interrupt\n");
577 result
= octeon_i2c_initlowlevel(i2c
);
579 dev_err(i2c
->dev
, "init low level failed\n");
583 result
= octeon_i2c_setclock(i2c
);
585 dev_err(i2c
->dev
, "clock init failed\n");
589 i2c
->adap
= octeon_i2c_ops
;
590 i2c
->adap
.dev
.parent
= &pdev
->dev
;
591 i2c
->adap
.dev
.of_node
= pdev
->dev
.of_node
;
592 i2c_set_adapdata(&i2c
->adap
, i2c
);
593 platform_set_drvdata(pdev
, i2c
);
595 result
= i2c_add_adapter(&i2c
->adap
);
597 dev_err(i2c
->dev
, "failed to add adapter\n");
600 dev_info(i2c
->dev
, "version %s\n", DRV_VERSION
);
602 of_i2c_register_devices(&i2c
->adap
);
610 static int octeon_i2c_remove(struct platform_device
*pdev
)
612 struct octeon_i2c
*i2c
= platform_get_drvdata(pdev
);
614 i2c_del_adapter(&i2c
->adap
);
618 static struct of_device_id octeon_i2c_match
[] = {
620 .compatible
= "cavium,octeon-3860-twsi",
624 MODULE_DEVICE_TABLE(of
, octeon_i2c_match
);
626 static struct platform_driver octeon_i2c_driver
= {
627 .probe
= octeon_i2c_probe
,
628 .remove
= octeon_i2c_remove
,
630 .owner
= THIS_MODULE
,
632 .of_match_table
= octeon_i2c_match
,
636 module_platform_driver(octeon_i2c_driver
);
638 MODULE_AUTHOR("Michael Lawnick <michael.lawnick.ext@nsn.com>");
639 MODULE_DESCRIPTION("I2C-Bus adapter for Cavium OCTEON processors");
640 MODULE_LICENSE("GPL");
641 MODULE_VERSION(DRV_VERSION
);