dev-interface
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:6k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. Usually, i2c devices are controlled by a kernel driver. But it is also
  2. possible to access all devices on an adapter from userspace, through
  3. the /dev interface. You need to load module i2c-dev for this.
  4. Each registered i2c adapter gets a number, counting from 0. You can
  5. examine /proc/bus/i2c to see what number corresponds to which adapter.
  6. I2C device files are character device files with major device number 89
  7. and a minor device number corresponding to the number assigned as 
  8. explained above. They should be called "i2c-%d" (i2c-0, i2c-1, ..., 
  9. i2c-10, ...). All 256 minor device numbers are reserved for i2c.
  10. C example
  11. =========
  12. So let's say you want to access an i2c adapter from a C program. The
  13. first thing to do is `#include <linux/i2c.h>" and "#include <linux/i2c-dev.h>. 
  14. Yes, I know, you should never include kernel header files, but until glibc 
  15. knows about i2c, there is not much choice.
  16. Now, you have to decide which adapter you want to access. You should
  17. inspect /proc/bus/i2c to decide this. Adapter numbers are assigned
  18. somewhat dynamically, so you can not even assume /dev/i2c-0 is the
  19. first adapter.
  20. Next thing, open the device file, as follows:
  21.   int file;
  22.   int adapter_nr = 2; /* probably dynamically determined */
  23.   char filename[20];
  24.   
  25.   sprintf(filename,"/dev/i2c-%d",adapter_nr);
  26.   if ((file = open(filename,O_RDWR)) < 0) {
  27.     /* ERROR HANDLING; you can check errno to see what went wrong */
  28.     exit(1);
  29.   }
  30. When you have opened the device, you must specify with what device
  31. address you want to communicate:
  32.   int addr = 0x40; /* The I2C address */
  33.   if (ioctl(file,I2C_SLAVE,addr) < 0) {
  34.     /* ERROR HANDLING; you can check errno to see what went wrong */
  35.     exit(1);
  36.   }
  37. Well, you are all set up now. You can now use SMBus commands or plain
  38. I2C to communicate with your device. SMBus commands are preferred if
  39. the device supports them. Both are illustrated below.
  40.   __u8 register = 0x10; /* Device register to access */
  41.   __s32 res;
  42.   char buf[10];
  43.   /* Using SMBus commands */
  44.   res = i2c_smbus_read_word_data(file,register);
  45.   if (res < 0) {
  46.     /* ERROR HANDLING: i2c transaction failed */
  47.   } else {
  48.     /* res contains the read word */
  49.   }
  50.   /* Using I2C Write, equivalent of 
  51.            i2c_smbus_write_word_data(file,register,0x6543) */
  52.   buf[0] = register;
  53.   buf[1] = 0x43;
  54.   buf[2] = 0x65;
  55.   if ( write(file,buf,3) != 3) {
  56.     /* ERROR HANDLING: i2c transaction failed */
  57.   }
  58.   /* Using I2C Read, equivalent of i2c_smbus_read_byte(file) */
  59.   if (read(file,buf,1) != 1) {
  60.     /* ERROR HANDLING: i2c transaction failed */
  61.   } else {
  62.     /* buf[0] contains the read byte */
  63.   }
  64. IMPORTANT: because of the use of inline functions, you *have* to use
  65. '-O' or some variation when you compile your program!
  66. Full interface description
  67. ==========================
  68. The following IOCTLs are defined and fully supported 
  69. (see also i2c-dev.h and i2c.h):
  70. ioctl(file,I2C_SLAVE,long addr)
  71.   Change slave address. The address is passed in the 7 lower bits of the
  72.   argument (except for 10 bit addresses, passed in the 10 lower bits in this
  73.   case).
  74. ioctl(file,I2C_TENBIT,long select)
  75.   Selects ten bit addresses if select not equals 0, selects normal 7 bit
  76.   addresses if select equals 0.
  77. ioctl(file,I2C_FUNCS,unsigned long *funcs)
  78.   Gets the adapter functionality and puts it in *funcs.
  79. ioctl(file,I2C_RDWR,struct i2c_ioctl_rdwr_data *msgset)
  80.   Do combined read/write transaction without stop in between.
  81.   The argument is a pointer to a struct i2c_ioctl_rdwr_data {
  82.       struct i2c_msg *msgs;  /* ptr to array of simple messages */
  83.       int nmsgs;             /* number of messages to exchange */
  84.   }
  85.   The msgs[] themselves contain further pointers into data buffers.
  86.   The function will write or read data to or from that buffers depending
  87.   on whether the I2C_M_RD flag is set in a particular message or not.
  88.   The slave address and whether to use ten bit address mode has to be
  89.   set in each message, overriding the values set with the above ioctl's.
  90. Other values are NOT supported at this moment, except for I2C_SMBUS,
  91. which you should never directly call; instead, use the access functions
  92. below.
  93. You can do plain i2c transactions by using read(2) and write(2) calls.
  94. You do not need to pass the address byte; instead, set it through
  95. ioctl I2C_SLAVE before you try to access the device.
  96. You can do SMBus level transactions (see documentation file smbus-protocol 
  97. for details) through the following functions:
  98.   __s32 i2c_smbus_write_quick(int file, __u8 value);
  99.   __s32 i2c_smbus_read_byte(int file);
  100.   __s32 i2c_smbus_write_byte(int file, __u8 value);
  101.   __s32 i2c_smbus_read_byte_data(int file, __u8 command);
  102.   __s32 i2c_smbus_write_byte_data(int file, __u8 command, __u8 value);
  103.   __s32 i2c_smbus_read_word_data(int file, __u8 command);
  104.   __s32 i2c_smbus_write_word_data(int file, __u8 command, __u16 value);
  105.   __s32 i2c_smbus_process_call(int file, __u8 command, __u16 value);
  106.   __s32 i2c_smbus_read_block_data(int file, __u8 command, __u8 *values);
  107.   __s32 i2c_smbus_write_block_data(int file, __u8 command, __u8 length, 
  108.                                    __u8 *values);
  109. All these transactions return -1 on failure; you can read errno to see
  110. what happened. The 'write' transactions return 0 on success; the
  111. 'read' transactions return the read value, except for read_block, which
  112. returns the number of values read. The block buffers need not be longer
  113. than 32 bytes.
  114. The above functions are all macros, that resolve to calls to the
  115. i2c_smbus_access function, that on its turn calls a specific ioctl
  116. with the data in a specific format. Read the source code if you
  117. want to know what happens behind the screens.