1 /*!***************************************************************************
5 *! DESCRIPTION: implements an interface for IIC/I2C, both directly from other
6 *! kernel modules (i2c_writereg/readreg) and from userspace using
9 *! Nov 30 1998 Torbjorn Eliasson Initial version.
10 *! Bjorn Wesen Elinux kernel version.
11 *! Jan 14 2000 Johan Adolfsson Fixed PB shadow register stuff -
12 *! don't use PB_I2C if DS1302 uses same bits,
14 *| June 23 2003 Pieter Grimmerink Added 'i2c_sendnack'. i2c_readreg now
15 *| generates nack on last received byte,
17 *| i2c_getack changed data level while clock
18 *| was high, causing DS75 to see a stop condition
20 *! ---------------------------------------------------------------------------
22 *! (C) Copyright 1999-2007 Axis Communications AB, LUND, SWEDEN
24 *!***************************************************************************/
26 /****************** INCLUDE FILES SECTION ***********************************/
28 #include <linux/module.h>
29 #include <linux/sched.h>
30 #include <linux/errno.h>
31 #include <linux/kernel.h>
33 #include <linux/string.h>
34 #include <linux/init.h>
35 #include <linux/mutex.h>
37 #include <asm/etraxi2c.h>
39 #include <asm/system.h>
41 #include <asm/delay.h>
45 /****************** I2C DEFINITION SECTION *************************/
49 #define I2C_MAJOR 123 /* LOCAL/EXPERIMENTAL */
50 static DEFINE_MUTEX(i2c_mutex
);
51 static const char i2c_name
[] = "i2c";
53 #define CLOCK_LOW_TIME 8
54 #define CLOCK_HIGH_TIME 8
55 #define START_CONDITION_HOLD_TIME 8
56 #define STOP_CONDITION_HOLD_TIME 8
57 #define ENABLE_OUTPUT 0x01
58 #define ENABLE_INPUT 0x00
59 #define I2C_CLOCK_HIGH 1
60 #define I2C_CLOCK_LOW 0
61 #define I2C_DATA_HIGH 1
62 #define I2C_DATA_LOW 0
67 /* enable or disable output-enable, to select output or input on the i2c bus */
69 #define i2c_dir_out() crisv32_io_set_dir(&cris_i2c_data, crisv32_io_dir_out)
70 #define i2c_dir_in() crisv32_io_set_dir(&cris_i2c_data, crisv32_io_dir_in)
72 /* control the i2c clock and data signals */
74 #define i2c_clk(x) crisv32_io_set(&cris_i2c_clk, x)
75 #define i2c_data(x) crisv32_io_set(&cris_i2c_data, x)
77 /* read a bit from the i2c interface */
79 #define i2c_getbit() crisv32_io_rd(&cris_i2c_data)
81 #define i2c_delay(usecs) udelay(usecs)
83 static DEFINE_SPINLOCK(i2c_lock
); /* Protect directions etc */
85 /****************** VARIABLE SECTION ************************************/
87 static struct crisv32_iopin cris_i2c_clk
;
88 static struct crisv32_iopin cris_i2c_data
;
90 /****************** FUNCTION DEFINITION SECTION *************************/
93 /* generate i2c start condition */
102 i2c_delay(CLOCK_HIGH_TIME
/6);
103 i2c_data(I2C_DATA_HIGH
);
104 i2c_clk(I2C_CLOCK_HIGH
);
105 i2c_delay(CLOCK_HIGH_TIME
);
109 i2c_data(I2C_DATA_LOW
);
110 i2c_delay(START_CONDITION_HOLD_TIME
);
114 i2c_clk(I2C_CLOCK_LOW
);
115 i2c_delay(CLOCK_LOW_TIME
);
118 /* generate i2c stop condition */
128 i2c_clk(I2C_CLOCK_LOW
);
129 i2c_data(I2C_DATA_LOW
);
130 i2c_delay(CLOCK_LOW_TIME
*2);
134 i2c_clk(I2C_CLOCK_HIGH
);
135 i2c_delay(CLOCK_HIGH_TIME
*2);
139 i2c_data(I2C_DATA_HIGH
);
140 i2c_delay(STOP_CONDITION_HOLD_TIME
);
145 /* write a byte to the i2c interface */
148 i2c_outbyte(unsigned char x
)
154 for (i
= 0; i
< 8; i
++) {
156 i2c_data(I2C_DATA_HIGH
);
158 i2c_data(I2C_DATA_LOW
);
161 i2c_delay(CLOCK_LOW_TIME
/2);
162 i2c_clk(I2C_CLOCK_HIGH
);
163 i2c_delay(CLOCK_HIGH_TIME
);
164 i2c_clk(I2C_CLOCK_LOW
);
165 i2c_delay(CLOCK_LOW_TIME
/2);
168 i2c_data(I2C_DATA_LOW
);
169 i2c_delay(CLOCK_LOW_TIME
/2);
177 /* read a byte from the i2c interface */
182 unsigned char aBitByte
= 0;
185 /* Switch off I2C to get bit */
188 i2c_delay(CLOCK_HIGH_TIME
/2);
191 aBitByte
|= i2c_getbit();
195 i2c_delay(CLOCK_LOW_TIME
/2);
197 for (i
= 1; i
< 8; i
++) {
200 i2c_clk(I2C_CLOCK_HIGH
);
201 i2c_delay(CLOCK_HIGH_TIME
);
202 i2c_clk(I2C_CLOCK_LOW
);
203 i2c_delay(CLOCK_LOW_TIME
);
205 /* Switch off I2C to get bit */
208 i2c_delay(CLOCK_HIGH_TIME
/2);
211 aBitByte
|= i2c_getbit();
215 i2c_delay(CLOCK_LOW_TIME
/2);
217 i2c_clk(I2C_CLOCK_HIGH
);
218 i2c_delay(CLOCK_HIGH_TIME
);
221 * we leave the clock low, getbyte is usually followed
222 * by sendack/nack, they assume the clock to be low
224 i2c_clk(I2C_CLOCK_LOW
);
228 /*#---------------------------------------------------------------------------
230 *# FUNCTION NAME: i2c_getack
232 *# DESCRIPTION : checks if ack was received from ic2
234 *#--------------------------------------------------------------------------*/
245 * Release data bus by setting
248 i2c_data(I2C_DATA_HIGH
);
253 i2c_delay(CLOCK_HIGH_TIME
/4);
255 * generate ACK clock pulse
257 i2c_clk(I2C_CLOCK_HIGH
);
260 * Use PORT PB instead of I2C
261 * for input. (I2C not working)
276 i2c_delay(CLOCK_HIGH_TIME
/2);
282 i2c_delay(CLOCK_HIGH_TIME
/2);
284 if (!i2c_getbit()) /* receiver pulld SDA low */
286 i2c_delay(CLOCK_HIGH_TIME
/2);
290 * our clock is high now, make sure data is low
291 * before we enable our output. If we keep data high
292 * and enable output, we would generate a stop condition.
295 i2c_data(I2C_DATA_LOW
);
303 i2c_clk(I2C_CLOCK_LOW
);
304 i2c_delay(CLOCK_HIGH_TIME
/4);
310 * remove ACK clock pulse
312 i2c_data(I2C_DATA_HIGH
);
313 i2c_delay(CLOCK_LOW_TIME
/2);
317 /*#---------------------------------------------------------------------------
319 *# FUNCTION NAME: I2C::sendAck
321 *# DESCRIPTION : Send ACK on received data
323 *#--------------------------------------------------------------------------*/
330 i2c_delay(CLOCK_LOW_TIME
);
335 i2c_data(I2C_DATA_LOW
);
337 * generate clock pulse
339 i2c_delay(CLOCK_HIGH_TIME
/6);
340 i2c_clk(I2C_CLOCK_HIGH
);
341 i2c_delay(CLOCK_HIGH_TIME
);
342 i2c_clk(I2C_CLOCK_LOW
);
343 i2c_delay(CLOCK_LOW_TIME
/6);
347 i2c_data(I2C_DATA_HIGH
);
348 i2c_delay(CLOCK_LOW_TIME
);
353 /*#---------------------------------------------------------------------------
355 *# FUNCTION NAME: i2c_sendnack
357 *# DESCRIPTION : Sends NACK on received data
359 *#--------------------------------------------------------------------------*/
366 i2c_delay(CLOCK_LOW_TIME
);
371 i2c_data(I2C_DATA_HIGH
);
373 * generate clock pulse
375 i2c_delay(CLOCK_HIGH_TIME
/6);
376 i2c_clk(I2C_CLOCK_HIGH
);
377 i2c_delay(CLOCK_HIGH_TIME
);
378 i2c_clk(I2C_CLOCK_LOW
);
379 i2c_delay(CLOCK_LOW_TIME
);
384 /*#---------------------------------------------------------------------------
386 *# FUNCTION NAME: i2c_write
388 *# DESCRIPTION : Writes a value to an I2C device
390 *#--------------------------------------------------------------------------*/
392 i2c_write(unsigned char theSlave
, void *data
, size_t nbytes
)
395 unsigned char bytes_wrote
= 0;
399 spin_lock_irqsave(&i2c_lock
, flags
);
408 i2c_outbyte((theSlave
& 0xfe));
417 for (bytes_wrote
= 0; bytes_wrote
< nbytes
; bytes_wrote
++) {
418 memcpy(&value
, data
+ bytes_wrote
, sizeof value
);
421 * now it's time to wait for ack
431 } while (error
&& cntr
--);
433 i2c_delay(CLOCK_LOW_TIME
);
435 spin_unlock_irqrestore(&i2c_lock
, flags
);
440 /*#---------------------------------------------------------------------------
442 *# FUNCTION NAME: i2c_read
444 *# DESCRIPTION : Reads a value from an I2C device
446 *#--------------------------------------------------------------------------*/
448 i2c_read(unsigned char theSlave
, void *data
, size_t nbytes
)
451 unsigned char bytes_read
= 0;
455 spin_lock_irqsave(&i2c_lock
, flags
);
459 memset(data
, 0, nbytes
);
461 * generate start condition
467 i2c_outbyte((theSlave
| 0x01));
476 for (bytes_read
= 0; bytes_read
< nbytes
; bytes_read
++) {
478 memcpy(data
+ bytes_read
, &b
, sizeof b
);
480 if (bytes_read
< (nbytes
- 1))
484 * last received byte needs to be nacked
492 } while (error
&& cntr
--);
494 spin_unlock_irqrestore(&i2c_lock
, flags
);
499 /*#---------------------------------------------------------------------------
501 *# FUNCTION NAME: i2c_writereg
503 *# DESCRIPTION : Writes a value to an I2C device
505 *#--------------------------------------------------------------------------*/
507 i2c_writereg(unsigned char theSlave
, unsigned char theReg
,
508 unsigned char theValue
)
513 spin_lock_irqsave(&i2c_lock
, flags
);
522 i2c_outbyte((theSlave
& 0xfe));
529 * now select register
534 * now it's time to wait for ack
539 * send register register data
541 i2c_outbyte(theValue
);
543 * now it's time to wait for ack
551 } while(error
&& cntr
--);
553 i2c_delay(CLOCK_LOW_TIME
);
555 spin_unlock_irqrestore(&i2c_lock
, flags
);
560 /*#---------------------------------------------------------------------------
562 *# FUNCTION NAME: i2c_readreg
564 *# DESCRIPTION : Reads a value from the decoder registers.
566 *#--------------------------------------------------------------------------*/
568 i2c_readreg(unsigned char theSlave
, unsigned char theReg
)
574 spin_lock_irqsave(&i2c_lock
, flags
);
579 * generate start condition
586 i2c_outbyte((theSlave
& 0xfe));
593 * now select register
598 * now it's time to wait for ack
603 * repeat start condition
605 i2c_delay(CLOCK_LOW_TIME
);
610 i2c_outbyte(theSlave
| 0x01);
621 * last received byte needs to be nacked
630 } while(error
&& cntr
--);
632 spin_unlock_irqrestore(&i2c_lock
, flags
);
638 i2c_open(struct inode
*inode
, struct file
*filp
)
644 i2c_release(struct inode
*inode
, struct file
*filp
)
649 /* Main device API. ioctl's to write or read to/from i2c registers.
653 i2c_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
656 if(_IOC_TYPE(cmd
) != ETRAXI2C_IOCTYPE
) {
660 switch (_IOC_NR(cmd
)) {
662 /* write to an i2c slave */
663 D(printk("i2cw %d %d %d\n",
668 mutex_lock(&i2c_mutex
);
669 ret
= i2c_writereg(I2C_ARGSLAVE(arg
),
672 mutex_unlock(&i2c_mutex
);
678 /* read from an i2c slave */
679 D(printk("i2cr %d %d ",
682 mutex_lock(&i2c_mutex
);
683 val
= i2c_readreg(I2C_ARGSLAVE(arg
), I2C_ARGREG(arg
));
684 mutex_unlock(&i2c_mutex
);
685 D(printk("= %d\n", val
));
696 static const struct file_operations i2c_fops
= {
697 .owner
= THIS_MODULE
,
698 .unlocked_ioctl
= i2c_ioctl
,
700 .release
= i2c_release
,
701 .llseek
= noop_llseek
,
704 static int __init
i2c_init(void)
707 static int first
= 1;
714 /* Setup and enable the DATA and CLK pins */
716 res
= crisv32_io_get_name(&cris_i2c_data
,
717 CONFIG_ETRAX_V32_I2C_DATA_PORT
);
721 res
= crisv32_io_get_name(&cris_i2c_clk
, CONFIG_ETRAX_V32_I2C_CLK_PORT
);
722 crisv32_io_set_dir(&cris_i2c_clk
, crisv32_io_dir_out
);
728 static int __init
i2c_register(void)
736 /* register char device */
738 res
= register_chrdev(I2C_MAJOR
, i2c_name
, &i2c_fops
);
740 printk(KERN_ERR
"i2c: couldn't get a major number.\n");
745 "I2C driver v2.2, (c) 1999-2007 Axis Communications AB\n");
749 /* this makes sure that i2c_init is called during boot */
750 module_init(i2c_register
);
752 /****************** END OF FILE i2c.c ********************************/