1 /* ------------------------------------------------------------------------- */
2 /* i2c-iop3xx.c i2c driver algorithms for Intel XScale IOP3xx & IXP46x */
3 /* ------------------------------------------------------------------------- */
4 /* Copyright (C) 2003 Peter Milne, D-TACQ Solutions Ltd
5 * <Peter dot Milne at D hyphen TACQ dot com>
7 * With acknowledgements to i2c-algo-ibm_ocp.c by
8 * Ian DaSilva, MontaVista Software, Inc. idasilva@mvista.com
10 * And i2c-algo-pcf.c, which was created by Simon G. Vogl and Hans Berglund:
12 * Copyright (C) 1995-1997 Simon G. Vogl, 1998-2000 Hans Berglund
14 * And which acknowledged Kyösti Mälkki <kmalkki@cc.hut.fi>,
15 * Frodo Looijaard <frodol@dds.nl>, Martin Bailey<mbailey@littlefeet-inc.com>
17 * Major cleanup by Deepak Saxena <dsaxena@plexity.net>, 01/2005:
19 * - Use driver model to pass per-chip info instead of hardcoding and #ifdefs
20 * - Use ioremap/__raw_readl/__raw_writel instead of direct dereference
21 * - Make it work with IXP46x chips
22 * - Cleanup function names, coding style, etc
24 * - writing to slave address causes latchup on iop331.
25 * fix: driver refuses to address self.
27 * This program is free software; you can redistribute it and/or modify
28 * it under the terms of the GNU General Public License as published by
29 * the Free Software Foundation, version 2.
32 #include <linux/interrupt.h>
33 #include <linux/kernel.h>
34 #include <linux/module.h>
35 #include <linux/delay.h>
36 #include <linux/slab.h>
37 #include <linux/init.h>
38 #include <linux/errno.h>
39 #include <linux/platform_device.h>
40 #include <linux/i2c.h>
44 #include "i2c-iop3xx.h"
46 /* global unit counter */
49 static inline unsigned char
50 iic_cook_addr(struct i2c_msg
*msg
)
54 addr
= (msg
->addr
<< 1);
56 if (msg
->flags
& I2C_M_RD
)
63 iop3xx_i2c_reset(struct i2c_algo_iop3xx_data
*iop3xx_adap
)
65 /* Follows devman 9.3 */
66 __raw_writel(IOP3XX_ICR_UNIT_RESET
, iop3xx_adap
->ioaddr
+ CR_OFFSET
);
67 __raw_writel(IOP3XX_ISR_CLEARBITS
, iop3xx_adap
->ioaddr
+ SR_OFFSET
);
68 __raw_writel(0, iop3xx_adap
->ioaddr
+ CR_OFFSET
);
72 iop3xx_i2c_enable(struct i2c_algo_iop3xx_data
*iop3xx_adap
)
74 u32 cr
= IOP3XX_ICR_GCD
| IOP3XX_ICR_SCLEN
| IOP3XX_ICR_UE
;
77 * Every time unit enable is asserted, GPOD needs to be cleared
78 * on IOP3XX to avoid data corruption on the bus.
80 #if defined(CONFIG_ARCH_IOP32X) || defined(CONFIG_ARCH_IOP33X)
81 if (iop3xx_adap
->id
== 0) {
82 gpio_line_set(IOP3XX_GPIO_LINE(7), GPIO_LOW
);
83 gpio_line_set(IOP3XX_GPIO_LINE(6), GPIO_LOW
);
85 gpio_line_set(IOP3XX_GPIO_LINE(5), GPIO_LOW
);
86 gpio_line_set(IOP3XX_GPIO_LINE(4), GPIO_LOW
);
89 /* NB SR bits not same position as CR IE bits :-( */
90 iop3xx_adap
->SR_enabled
=
91 IOP3XX_ISR_ALD
| IOP3XX_ISR_BERRD
|
92 IOP3XX_ISR_RXFULL
| IOP3XX_ISR_TXEMPTY
;
94 cr
|= IOP3XX_ICR_ALD_IE
| IOP3XX_ICR_BERR_IE
|
95 IOP3XX_ICR_RXFULL_IE
| IOP3XX_ICR_TXEMPTY_IE
;
97 __raw_writel(cr
, iop3xx_adap
->ioaddr
+ CR_OFFSET
);
101 iop3xx_i2c_transaction_cleanup(struct i2c_algo_iop3xx_data
*iop3xx_adap
)
103 unsigned long cr
= __raw_readl(iop3xx_adap
->ioaddr
+ CR_OFFSET
);
105 cr
&= ~(IOP3XX_ICR_MSTART
| IOP3XX_ICR_TBYTE
|
106 IOP3XX_ICR_MSTOP
| IOP3XX_ICR_SCLEN
);
108 __raw_writel(cr
, iop3xx_adap
->ioaddr
+ CR_OFFSET
);
112 * NB: the handler has to clear the source of the interrupt!
113 * Then it passes the SR flags of interest to BH via adap data
116 iop3xx_i2c_irq_handler(int this_irq
, void *dev_id
)
118 struct i2c_algo_iop3xx_data
*iop3xx_adap
= dev_id
;
119 u32 sr
= __raw_readl(iop3xx_adap
->ioaddr
+ SR_OFFSET
);
121 if ((sr
&= iop3xx_adap
->SR_enabled
)) {
122 __raw_writel(sr
, iop3xx_adap
->ioaddr
+ SR_OFFSET
);
123 iop3xx_adap
->SR_received
|= sr
;
124 wake_up_interruptible(&iop3xx_adap
->waitq
);
129 /* check all error conditions, clear them , report most important */
131 iop3xx_i2c_error(u32 sr
)
135 if ((sr
& IOP3XX_ISR_BERRD
)) {
136 if ( !rc
) rc
= -I2C_ERR_BERR
;
138 if ((sr
& IOP3XX_ISR_ALD
)) {
139 if ( !rc
) rc
= -I2C_ERR_ALD
;
145 iop3xx_i2c_get_srstat(struct i2c_algo_iop3xx_data
*iop3xx_adap
)
150 spin_lock_irqsave(&iop3xx_adap
->lock
, flags
);
151 sr
= iop3xx_adap
->SR_received
;
152 iop3xx_adap
->SR_received
= 0;
153 spin_unlock_irqrestore(&iop3xx_adap
->lock
, flags
);
159 * sleep until interrupted, then recover and analyse the SR
162 typedef int (* compare_func
)(unsigned test
, unsigned mask
);
163 /* returns 1 on correct comparison */
166 iop3xx_i2c_wait_event(struct i2c_algo_iop3xx_data
*iop3xx_adap
,
167 unsigned flags
, unsigned* status
,
168 compare_func compare
)
176 interrupted
= wait_event_interruptible_timeout (
178 (done
= compare( sr
= iop3xx_i2c_get_srstat(iop3xx_adap
) ,flags
)),
181 if ((rc
= iop3xx_i2c_error(sr
)) < 0) {
184 } else if (!interrupted
) {
196 * Concrete compare_funcs
199 all_bits_clear(unsigned test
, unsigned mask
)
201 return (test
& mask
) == 0;
205 any_bits_set(unsigned test
, unsigned mask
)
207 return (test
& mask
) != 0;
211 iop3xx_i2c_wait_tx_done(struct i2c_algo_iop3xx_data
*iop3xx_adap
, int *status
)
213 return iop3xx_i2c_wait_event(
215 IOP3XX_ISR_TXEMPTY
| IOP3XX_ISR_ALD
| IOP3XX_ISR_BERRD
,
216 status
, any_bits_set
);
220 iop3xx_i2c_wait_rx_done(struct i2c_algo_iop3xx_data
*iop3xx_adap
, int *status
)
222 return iop3xx_i2c_wait_event(
224 IOP3XX_ISR_RXFULL
| IOP3XX_ISR_ALD
| IOP3XX_ISR_BERRD
,
225 status
, any_bits_set
);
229 iop3xx_i2c_wait_idle(struct i2c_algo_iop3xx_data
*iop3xx_adap
, int *status
)
231 return iop3xx_i2c_wait_event(
232 iop3xx_adap
, IOP3XX_ISR_UNITBUSY
, status
, all_bits_clear
);
236 iop3xx_i2c_send_target_addr(struct i2c_algo_iop3xx_data
*iop3xx_adap
,
239 unsigned long cr
= __raw_readl(iop3xx_adap
->ioaddr
+ CR_OFFSET
);
243 /* avoid writing to my slave address (hangs on 80331),
244 * forbidden in Intel developer manual
246 if (msg
->addr
== MYSAR
) {
250 __raw_writel(iic_cook_addr(msg
), iop3xx_adap
->ioaddr
+ DBR_OFFSET
);
252 cr
&= ~(IOP3XX_ICR_MSTOP
| IOP3XX_ICR_NACK
);
253 cr
|= IOP3XX_ICR_MSTART
| IOP3XX_ICR_TBYTE
;
255 __raw_writel(cr
, iop3xx_adap
->ioaddr
+ CR_OFFSET
);
256 rc
= iop3xx_i2c_wait_tx_done(iop3xx_adap
, &status
);
262 iop3xx_i2c_write_byte(struct i2c_algo_iop3xx_data
*iop3xx_adap
, char byte
,
265 unsigned long cr
= __raw_readl(iop3xx_adap
->ioaddr
+ CR_OFFSET
);
269 __raw_writel(byte
, iop3xx_adap
->ioaddr
+ DBR_OFFSET
);
270 cr
&= ~IOP3XX_ICR_MSTART
;
272 cr
|= IOP3XX_ICR_MSTOP
;
274 cr
&= ~IOP3XX_ICR_MSTOP
;
276 cr
|= IOP3XX_ICR_TBYTE
;
277 __raw_writel(cr
, iop3xx_adap
->ioaddr
+ CR_OFFSET
);
278 rc
= iop3xx_i2c_wait_tx_done(iop3xx_adap
, &status
);
284 iop3xx_i2c_read_byte(struct i2c_algo_iop3xx_data
*iop3xx_adap
, char* byte
,
287 unsigned long cr
= __raw_readl(iop3xx_adap
->ioaddr
+ CR_OFFSET
);
291 cr
&= ~IOP3XX_ICR_MSTART
;
294 cr
|= IOP3XX_ICR_MSTOP
| IOP3XX_ICR_NACK
;
296 cr
&= ~(IOP3XX_ICR_MSTOP
| IOP3XX_ICR_NACK
);
298 cr
|= IOP3XX_ICR_TBYTE
;
299 __raw_writel(cr
, iop3xx_adap
->ioaddr
+ CR_OFFSET
);
301 rc
= iop3xx_i2c_wait_rx_done(iop3xx_adap
, &status
);
303 *byte
= __raw_readl(iop3xx_adap
->ioaddr
+ DBR_OFFSET
);
309 iop3xx_i2c_writebytes(struct i2c_adapter
*i2c_adap
, const char *buf
, int count
)
311 struct i2c_algo_iop3xx_data
*iop3xx_adap
= i2c_adap
->algo_data
;
315 for (ii
= 0; rc
== 0 && ii
!= count
; ++ii
)
316 rc
= iop3xx_i2c_write_byte(iop3xx_adap
, buf
[ii
], ii
==count
-1);
321 iop3xx_i2c_readbytes(struct i2c_adapter
*i2c_adap
, char *buf
, int count
)
323 struct i2c_algo_iop3xx_data
*iop3xx_adap
= i2c_adap
->algo_data
;
327 for (ii
= 0; rc
== 0 && ii
!= count
; ++ii
)
328 rc
= iop3xx_i2c_read_byte(iop3xx_adap
, &buf
[ii
], ii
==count
-1);
334 * Description: This function implements combined transactions. Combined
335 * transactions consist of combinations of reading and writing blocks of data.
336 * FROM THE SAME ADDRESS
337 * Each transfer (i.e. a read or a write) is separated by a repeated start
341 iop3xx_i2c_handle_msg(struct i2c_adapter
*i2c_adap
, struct i2c_msg
* pmsg
)
343 struct i2c_algo_iop3xx_data
*iop3xx_adap
= i2c_adap
->algo_data
;
346 rc
= iop3xx_i2c_send_target_addr(iop3xx_adap
, pmsg
);
351 if ((pmsg
->flags
&I2C_M_RD
)) {
352 return iop3xx_i2c_readbytes(i2c_adap
, pmsg
->buf
, pmsg
->len
);
354 return iop3xx_i2c_writebytes(i2c_adap
, pmsg
->buf
, pmsg
->len
);
359 * master_xfer() - main read/write entry
362 iop3xx_i2c_master_xfer(struct i2c_adapter
*i2c_adap
, struct i2c_msg
*msgs
,
365 struct i2c_algo_iop3xx_data
*iop3xx_adap
= i2c_adap
->algo_data
;
370 iop3xx_i2c_wait_idle(iop3xx_adap
, &status
);
371 iop3xx_i2c_reset(iop3xx_adap
);
372 iop3xx_i2c_enable(iop3xx_adap
);
374 for (im
= 0; ret
== 0 && im
!= num
; im
++) {
375 ret
= iop3xx_i2c_handle_msg(i2c_adap
, &msgs
[im
]);
378 iop3xx_i2c_transaction_cleanup(iop3xx_adap
);
387 iop3xx_i2c_func(struct i2c_adapter
*adap
)
389 return I2C_FUNC_I2C
| I2C_FUNC_SMBUS_EMUL
;
392 static const struct i2c_algorithm iop3xx_i2c_algo
= {
393 .master_xfer
= iop3xx_i2c_master_xfer
,
394 .functionality
= iop3xx_i2c_func
,
398 iop3xx_i2c_remove(struct platform_device
*pdev
)
400 struct i2c_adapter
*padapter
= platform_get_drvdata(pdev
);
401 struct i2c_algo_iop3xx_data
*adapter_data
=
402 (struct i2c_algo_iop3xx_data
*)padapter
->algo_data
;
403 struct resource
*res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
404 unsigned long cr
= __raw_readl(adapter_data
->ioaddr
+ CR_OFFSET
);
407 * Disable the actual HW unit
409 cr
&= ~(IOP3XX_ICR_ALD_IE
| IOP3XX_ICR_BERR_IE
|
410 IOP3XX_ICR_RXFULL_IE
| IOP3XX_ICR_TXEMPTY_IE
);
411 __raw_writel(cr
, adapter_data
->ioaddr
+ CR_OFFSET
);
413 iounmap((void __iomem
*)adapter_data
->ioaddr
);
414 release_mem_region(res
->start
, IOP3XX_I2C_IO_SIZE
);
418 platform_set_drvdata(pdev
, NULL
);
424 iop3xx_i2c_probe(struct platform_device
*pdev
)
426 struct resource
*res
;
428 struct i2c_adapter
*new_adapter
;
429 struct i2c_algo_iop3xx_data
*adapter_data
;
431 new_adapter
= kzalloc(sizeof(struct i2c_adapter
), GFP_KERNEL
);
437 adapter_data
= kzalloc(sizeof(struct i2c_algo_iop3xx_data
), GFP_KERNEL
);
443 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
449 if (!request_mem_region(res
->start
, IOP3XX_I2C_IO_SIZE
, pdev
->name
)) {
454 /* set the adapter enumeration # */
455 adapter_data
->id
= i2c_id
++;
457 adapter_data
->ioaddr
= (u32
)ioremap(res
->start
, IOP3XX_I2C_IO_SIZE
);
458 if (!adapter_data
->ioaddr
) {
463 irq
= platform_get_irq(pdev
, 0);
468 ret
= request_irq(irq
, iop3xx_i2c_irq_handler
, 0,
469 pdev
->name
, adapter_data
);
476 memcpy(new_adapter
->name
, pdev
->name
, strlen(pdev
->name
));
477 new_adapter
->owner
= THIS_MODULE
;
478 new_adapter
->class = I2C_CLASS_HWMON
| I2C_CLASS_SPD
;
479 new_adapter
->dev
.parent
= &pdev
->dev
;
480 new_adapter
->nr
= pdev
->id
;
483 * Default values...should these come in from board code?
485 new_adapter
->timeout
= HZ
;
486 new_adapter
->algo
= &iop3xx_i2c_algo
;
488 init_waitqueue_head(&adapter_data
->waitq
);
489 spin_lock_init(&adapter_data
->lock
);
491 iop3xx_i2c_reset(adapter_data
);
492 iop3xx_i2c_enable(adapter_data
);
494 platform_set_drvdata(pdev
, new_adapter
);
495 new_adapter
->algo_data
= adapter_data
;
497 i2c_add_numbered_adapter(new_adapter
);
502 iounmap((void __iomem
*)adapter_data
->ioaddr
);
505 release_mem_region(res
->start
, IOP3XX_I2C_IO_SIZE
);
518 static struct platform_driver iop3xx_i2c_driver
= {
519 .probe
= iop3xx_i2c_probe
,
520 .remove
= iop3xx_i2c_remove
,
522 .owner
= THIS_MODULE
,
523 .name
= "IOP3xx-I2C",
528 i2c_iop3xx_init (void)
530 return platform_driver_register(&iop3xx_i2c_driver
);
534 i2c_iop3xx_exit (void)
536 platform_driver_unregister(&iop3xx_i2c_driver
);
540 module_init (i2c_iop3xx_init
);
541 module_exit (i2c_iop3xx_exit
);
543 MODULE_AUTHOR("D-TACQ Solutions Ltd <www.d-tacq.com>");
544 MODULE_DESCRIPTION("IOP3xx iic algorithm and driver");
545 MODULE_LICENSE("GPL");
546 MODULE_ALIAS("platform:IOP3xx-I2C");