i2c-dev-user.h 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330
  1. /*
  2. i2c-dev.h - i2c-bus driver, char device interface
  3. Copyright (C) 1995-97 Simon G. Vogl
  4. Copyright (C) 1998-99 Frodo Looijaard <frodol@dds.nl>
  5. This program is free software; you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation; either version 2 of the License, or
  8. (at your option) any later version.
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with this program; if not, write to the Free Software
  15. Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  16. MA 02110-1301 USA.
  17. */
  18. #ifndef _LINUX_I2C_DEV_H
  19. #define _LINUX_I2C_DEV_H
  20. #include <linux/types.h>
  21. #include <sys/ioctl.h>
  22. #include <stddef.h>
  23. /* -- i2c.h -- */
  24. /*
  25. * I2C Message - used for pure i2c transaction, also from /dev interface
  26. */
  27. struct i2c_msg {
  28. __u16 addr; /* slave address */
  29. unsigned short flags;
  30. #define I2C_M_TEN 0x10 /* we have a ten bit chip address */
  31. #define I2C_M_RD 0x01
  32. #define I2C_M_NOSTART 0x4000
  33. #define I2C_M_REV_DIR_ADDR 0x2000
  34. #define I2C_M_IGNORE_NAK 0x1000
  35. #define I2C_M_NO_RD_ACK 0x0800
  36. short len; /* msg length */
  37. char *buf; /* pointer to msg data */
  38. };
  39. /* To determine what functionality is present */
  40. #define I2C_FUNC_I2C 0x00000001
  41. #define I2C_FUNC_10BIT_ADDR 0x00000002
  42. #define I2C_FUNC_PROTOCOL_MANGLING 0x00000004 /* I2C_M_{REV_DIR_ADDR,NOSTART,..} */
  43. #define I2C_FUNC_SMBUS_PEC 0x00000008
  44. #define I2C_FUNC_SMBUS_BLOCK_PROC_CALL 0x00008000 /* SMBus 2.0 */
  45. #define I2C_FUNC_SMBUS_QUICK 0x00010000
  46. #define I2C_FUNC_SMBUS_READ_BYTE 0x00020000
  47. #define I2C_FUNC_SMBUS_WRITE_BYTE 0x00040000
  48. #define I2C_FUNC_SMBUS_READ_BYTE_DATA 0x00080000
  49. #define I2C_FUNC_SMBUS_WRITE_BYTE_DATA 0x00100000
  50. #define I2C_FUNC_SMBUS_READ_WORD_DATA 0x00200000
  51. #define I2C_FUNC_SMBUS_WRITE_WORD_DATA 0x00400000
  52. #define I2C_FUNC_SMBUS_PROC_CALL 0x00800000
  53. #define I2C_FUNC_SMBUS_READ_BLOCK_DATA 0x01000000
  54. #define I2C_FUNC_SMBUS_WRITE_BLOCK_DATA 0x02000000
  55. #define I2C_FUNC_SMBUS_READ_I2C_BLOCK 0x04000000 /* I2C-like block xfer */
  56. #define I2C_FUNC_SMBUS_WRITE_I2C_BLOCK 0x08000000 /* w/ 1-byte reg. addr. */
  57. #define I2C_FUNC_SMBUS_BYTE (I2C_FUNC_SMBUS_READ_BYTE | \
  58. I2C_FUNC_SMBUS_WRITE_BYTE)
  59. #define I2C_FUNC_SMBUS_BYTE_DATA (I2C_FUNC_SMBUS_READ_BYTE_DATA | \
  60. I2C_FUNC_SMBUS_WRITE_BYTE_DATA)
  61. #define I2C_FUNC_SMBUS_WORD_DATA (I2C_FUNC_SMBUS_READ_WORD_DATA | \
  62. I2C_FUNC_SMBUS_WRITE_WORD_DATA)
  63. #define I2C_FUNC_SMBUS_BLOCK_DATA (I2C_FUNC_SMBUS_READ_BLOCK_DATA | \
  64. I2C_FUNC_SMBUS_WRITE_BLOCK_DATA)
  65. #define I2C_FUNC_SMBUS_I2C_BLOCK (I2C_FUNC_SMBUS_READ_I2C_BLOCK | \
  66. I2C_FUNC_SMBUS_WRITE_I2C_BLOCK)
  67. /* Old name, for compatibility */
  68. #define I2C_FUNC_SMBUS_HWPEC_CALC I2C_FUNC_SMBUS_PEC
  69. /*
  70. * Data for SMBus Messages
  71. */
  72. #define I2C_SMBUS_BLOCK_MAX 32 /* As specified in SMBus standard */
  73. #define I2C_SMBUS_I2C_BLOCK_MAX 32 /* Not specified but we use same structure */
  74. union i2c_smbus_data {
  75. __u8 byte;
  76. __u16 word;
  77. __u8 block[I2C_SMBUS_BLOCK_MAX + 2]; /* block[0] is used for length */
  78. /* and one more for PEC */
  79. };
  80. /* smbus_access read or write markers */
  81. #define I2C_SMBUS_READ 1
  82. #define I2C_SMBUS_WRITE 0
  83. /* SMBus transaction types (size parameter in the above functions)
  84. Note: these no longer correspond to the (arbitrary) PIIX4 internal codes! */
  85. #define I2C_SMBUS_QUICK 0
  86. #define I2C_SMBUS_BYTE 1
  87. #define I2C_SMBUS_BYTE_DATA 2
  88. #define I2C_SMBUS_WORD_DATA 3
  89. #define I2C_SMBUS_PROC_CALL 4
  90. #define I2C_SMBUS_BLOCK_DATA 5
  91. #define I2C_SMBUS_I2C_BLOCK_BROKEN 6
  92. #define I2C_SMBUS_BLOCK_PROC_CALL 7 /* SMBus 2.0 */
  93. #define I2C_SMBUS_I2C_BLOCK_DATA 8
  94. /* /dev/i2c-X ioctl commands. The ioctl's parameter is always an
  95. * unsigned long, except for:
  96. * - I2C_FUNCS, takes pointer to an unsigned long
  97. * - I2C_RDWR, takes pointer to struct i2c_rdwr_ioctl_data
  98. * - I2C_SMBUS, takes pointer to struct i2c_smbus_ioctl_data
  99. */
  100. #define I2C_RETRIES 0x0701 /* number of times a device address should
  101. be polled when not acknowledging */
  102. #define I2C_TIMEOUT 0x0702 /* set timeout in units of 10 ms */
  103. /* NOTE: Slave address is 7 or 10 bits, but 10-bit addresses
  104. * are NOT supported! (due to code brokenness)
  105. */
  106. #define I2C_SLAVE 0x0703 /* Use this slave address */
  107. #define I2C_SLAVE_FORCE 0x0706 /* Use this slave address, even if it
  108. is already in use by a driver! */
  109. #define I2C_TENBIT 0x0704 /* 0 for 7 bit addrs, != 0 for 10 bit */
  110. #define I2C_FUNCS 0x0705 /* Get the adapter functionality mask */
  111. #define I2C_RDWR 0x0707 /* Combined R/W transfer (one STOP only) */
  112. #define I2C_PEC 0x0708 /* != 0 to use PEC with SMBus */
  113. #define I2C_SMBUS 0x0720 /* SMBus transfer */
  114. /* This is the structure as used in the I2C_SMBUS ioctl call */
  115. struct i2c_smbus_ioctl_data {
  116. __u8 read_write;
  117. __u8 command;
  118. __u32 size;
  119. union i2c_smbus_data *data;
  120. };
  121. /* This is the structure as used in the I2C_RDWR ioctl call */
  122. struct i2c_rdwr_ioctl_data {
  123. struct i2c_msg *msgs; /* pointers to i2c_msgs */
  124. __u32 nmsgs; /* number of i2c_msgs */
  125. };
  126. #define I2C_RDRW_IOCTL_MAX_MSGS 42
  127. static inline __s32 i2c_smbus_access(int file, char read_write, __u8 command,
  128. int size, union i2c_smbus_data *data)
  129. {
  130. struct i2c_smbus_ioctl_data args;
  131. args.read_write = read_write;
  132. args.command = command;
  133. args.size = size;
  134. args.data = data;
  135. return ioctl(file,I2C_SMBUS,&args);
  136. }
  137. static inline __s32 i2c_smbus_write_quick(int file, __u8 value)
  138. {
  139. return i2c_smbus_access(file,value,0,I2C_SMBUS_QUICK,NULL);
  140. }
  141. static inline __s32 i2c_smbus_read_byte(int file)
  142. {
  143. union i2c_smbus_data data;
  144. if (i2c_smbus_access(file,I2C_SMBUS_READ,0,I2C_SMBUS_BYTE,&data))
  145. return -1;
  146. else
  147. return 0x0FF & data.byte;
  148. }
  149. static inline __s32 i2c_smbus_write_byte(int file, __u8 value)
  150. {
  151. return i2c_smbus_access(file,I2C_SMBUS_WRITE,value,
  152. I2C_SMBUS_BYTE,NULL);
  153. }
  154. static inline __s32 i2c_smbus_read_byte_data(int file, __u8 command)
  155. {
  156. union i2c_smbus_data data;
  157. if (i2c_smbus_access(file,I2C_SMBUS_READ,command,
  158. I2C_SMBUS_BYTE_DATA,&data))
  159. return -1;
  160. else
  161. return 0x0FF & data.byte;
  162. }
  163. static inline __s32 i2c_smbus_write_byte_data(int file, __u8 command,
  164. __u8 value)
  165. {
  166. union i2c_smbus_data data;
  167. data.byte = value;
  168. return i2c_smbus_access(file,I2C_SMBUS_WRITE,command,
  169. I2C_SMBUS_BYTE_DATA, &data);
  170. }
  171. static inline __s32 i2c_smbus_read_word_data(int file, __u8 command)
  172. {
  173. union i2c_smbus_data data;
  174. if (i2c_smbus_access(file,I2C_SMBUS_READ,command,
  175. I2C_SMBUS_WORD_DATA,&data))
  176. return -1;
  177. else
  178. return 0x0FFFF & data.word;
  179. }
  180. static inline __s32 i2c_smbus_write_word_data(int file, __u8 command,
  181. __u16 value)
  182. {
  183. union i2c_smbus_data data;
  184. data.word = value;
  185. return i2c_smbus_access(file,I2C_SMBUS_WRITE,command,
  186. I2C_SMBUS_WORD_DATA, &data);
  187. }
  188. static inline __s32 i2c_smbus_process_call(int file, __u8 command, __u16 value)
  189. {
  190. union i2c_smbus_data data;
  191. data.word = value;
  192. if (i2c_smbus_access(file,I2C_SMBUS_WRITE,command,
  193. I2C_SMBUS_PROC_CALL,&data))
  194. return -1;
  195. else
  196. return 0x0FFFF & data.word;
  197. }
  198. /* Returns the number of read bytes */
  199. static inline __s32 i2c_smbus_read_block_data(int file, __u8 command,
  200. __u8 *values)
  201. {
  202. union i2c_smbus_data data;
  203. int i;
  204. if (i2c_smbus_access(file,I2C_SMBUS_READ,command,
  205. I2C_SMBUS_BLOCK_DATA,&data))
  206. return -1;
  207. else {
  208. for (i = 1; i <= data.block[0]; i++)
  209. values[i-1] = data.block[i];
  210. return data.block[0];
  211. }
  212. }
  213. static inline __s32 i2c_smbus_write_block_data(int file, __u8 command,
  214. __u8 length, const __u8 *values)
  215. {
  216. union i2c_smbus_data data;
  217. int i;
  218. if (length > 32)
  219. length = 32;
  220. for (i = 1; i <= length; i++)
  221. data.block[i] = values[i-1];
  222. data.block[0] = length;
  223. return i2c_smbus_access(file,I2C_SMBUS_WRITE,command,
  224. I2C_SMBUS_BLOCK_DATA, &data);
  225. }
  226. /* Returns the number of read bytes */
  227. /* Until kernel 2.6.22, the length is hardcoded to 32 bytes. If you
  228. ask for less than 32 bytes, your code will only work with kernels
  229. 2.6.23 and later. */
  230. static inline __s32 i2c_smbus_read_i2c_block_data(int file, __u8 command,
  231. __u8 length, __u8 *values)
  232. {
  233. union i2c_smbus_data data;
  234. int i;
  235. if (length > 32)
  236. length = 32;
  237. data.block[0] = length;
  238. if (i2c_smbus_access(file,I2C_SMBUS_READ,command,
  239. length == 32 ? I2C_SMBUS_I2C_BLOCK_BROKEN :
  240. I2C_SMBUS_I2C_BLOCK_DATA,&data))
  241. return -1;
  242. else {
  243. for (i = 1; i <= data.block[0]; i++)
  244. values[i-1] = data.block[i];
  245. return data.block[0];
  246. }
  247. }
  248. static inline __s32 i2c_smbus_write_i2c_block_data(int file, __u8 command,
  249. __u8 length,
  250. const __u8 *values)
  251. {
  252. union i2c_smbus_data data;
  253. int i;
  254. if (length > 32)
  255. length = 32;
  256. for (i = 1; i <= length; i++)
  257. data.block[i] = values[i-1];
  258. data.block[0] = length;
  259. return i2c_smbus_access(file,I2C_SMBUS_WRITE,command,
  260. I2C_SMBUS_I2C_BLOCK_BROKEN, &data);
  261. }
  262. /* Returns the number of read bytes */
  263. static inline __s32 i2c_smbus_block_process_call(int file, __u8 command,
  264. __u8 length, __u8 *values)
  265. {
  266. union i2c_smbus_data data;
  267. int i;
  268. if (length > 32)
  269. length = 32;
  270. for (i = 1; i <= length; i++)
  271. data.block[i] = values[i-1];
  272. data.block[0] = length;
  273. if (i2c_smbus_access(file,I2C_SMBUS_WRITE,command,
  274. I2C_SMBUS_BLOCK_PROC_CALL,&data))
  275. return -1;
  276. else {
  277. for (i = 1; i <= data.block[0]; i++)
  278. values[i-1] = data.block[i];
  279. return data.block[0];
  280. }
  281. }
  282. #endif /* _LINUX_I2C_DEV_H */