i2c.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:27k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* ------------------------------------------------------------------------- */
  2. /*       */
  3. /* i2c.h - definitions for the i2c-bus interface      */
  4. /*       */
  5. /* ------------------------------------------------------------------------- */
  6. /*   Copyright (C) 1995-2000 Simon G. Vogl
  7.     This program is free software; you can redistribute it and/or modify
  8.     it under the terms of the GNU General Public License as published by
  9.     the Free Software Foundation; either version 2 of the License, or
  10.     (at your option) any later version.
  11.     This program is distributed in the hope that it will be useful,
  12.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.     GNU General Public License for more details.
  15.     You should have received a copy of the GNU General Public License
  16.     along with this program; if not, write to the Free Software
  17.     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.      */
  18. /* ------------------------------------------------------------------------- */
  19. /* With some changes from Ky鰏ti M鋖kki <kmalkki@cc.hut.fi> and
  20.    Frodo Looijaard <frodol@dds.nl> */
  21. /* $Id: i2c.h,v 1.68 2003/01/21 08:08:16 kmalkki Exp $ */
  22. #ifndef _LINUX_I2C_H
  23. #define _LINUX_I2C_H
  24. #include <linux/module.h>
  25. #include <linux/types.h>
  26. #include <linux/i2c-id.h>
  27. #include <linux/device.h> /* for struct device */
  28. #include <asm/semaphore.h>
  29. /* --- For i2c-isa ---------------------------------------------------- */
  30. extern void i2c_adapter_dev_release(struct device *dev);
  31. extern struct device_driver i2c_adapter_driver;
  32. extern struct class i2c_adapter_class;
  33. extern struct bus_type i2c_bus_type;
  34. /* --- General options ------------------------------------------------ */
  35. struct i2c_msg;
  36. struct i2c_algorithm;
  37. struct i2c_adapter;
  38. struct i2c_client;
  39. struct i2c_driver;
  40. union i2c_smbus_data;
  41. /*
  42.  * The master routines are the ones normally used to transmit data to devices
  43.  * on a bus (or read from them). Apart from two basic transfer functions to 
  44.  * transmit one message at a time, a more complex version can be used to 
  45.  * transmit an arbitrary number of messages without interruption.
  46.  */
  47. extern int i2c_master_send(struct i2c_client *,const char* ,int);
  48. extern int i2c_master_recv(struct i2c_client *,char* ,int);
  49. /* Transfer num messages.
  50.  */
  51. extern int i2c_transfer(struct i2c_adapter *adap, struct i2c_msg *msgs, int num);
  52. /*
  53.  * Some adapter types (i.e. PCF 8584 based ones) may support slave behaviuor. 
  54.  * This is not tested/implemented yet and will change in the future.
  55.  */
  56. extern int i2c_slave_send(struct i2c_client *,char*,int);
  57. extern int i2c_slave_recv(struct i2c_client *,char*,int);
  58. /* This is the very generalized SMBus access routine. You probably do not
  59.    want to use this, though; one of the functions below may be much easier,
  60.    and probably just as fast. 
  61.    Note that we use i2c_adapter here, because you do not need a specific
  62.    smbus adapter to call this function. */
  63. extern s32 i2c_smbus_xfer (struct i2c_adapter * adapter, u16 addr, 
  64.                            unsigned short flags,
  65.                            char read_write, u8 command, int size,
  66.                            union i2c_smbus_data * data);
  67. /* Now follow the 'nice' access routines. These also document the calling
  68.    conventions of smbus_access. */
  69. extern s32 i2c_smbus_write_quick(struct i2c_client * client, u8 value);
  70. extern s32 i2c_smbus_read_byte(struct i2c_client * client);
  71. extern s32 i2c_smbus_write_byte(struct i2c_client * client, u8 value);
  72. extern s32 i2c_smbus_read_byte_data(struct i2c_client * client, u8 command);
  73. extern s32 i2c_smbus_write_byte_data(struct i2c_client * client,
  74.                                      u8 command, u8 value);
  75. extern s32 i2c_smbus_read_word_data(struct i2c_client * client, u8 command);
  76. extern s32 i2c_smbus_write_word_data(struct i2c_client * client,
  77.                                      u8 command, u16 value);
  78. /* Returns the number of bytes transferred */
  79. extern s32 i2c_smbus_write_block_data(struct i2c_client * client,
  80.       u8 command, u8 length,
  81.       u8 *values);
  82. extern s32 i2c_smbus_read_i2c_block_data(struct i2c_client * client,
  83.  u8 command, u8 *values);
  84. /*
  85.  * A driver is capable of handling one or more physical devices present on
  86.  * I2C adapters. This information is used to inform the driver of adapter
  87.  * events.
  88.  */
  89. struct i2c_driver {
  90. struct module *owner;
  91. char name[32];
  92. int id;
  93. unsigned int class;
  94. unsigned int flags; /* div., see below */
  95. /* Notifies the driver that a new bus has appeared. This routine
  96.  * can be used by the driver to test if the bus meets its conditions
  97.  * & seek for the presence of the chip(s) it supports. If found, it 
  98.  * registers the client(s) that are on the bus to the i2c admin. via
  99.  * i2c_attach_client.
  100.  */
  101. int (*attach_adapter)(struct i2c_adapter *);
  102. int (*detach_adapter)(struct i2c_adapter *);
  103. /* tells the driver that a client is about to be deleted & gives it 
  104.  * the chance to remove its private data. Also, if the client struct
  105.  * has been dynamically allocated by the driver in the function above,
  106.  * it must be freed here.
  107.  */
  108. int (*detach_client)(struct i2c_client *);
  109. /* a ioctl like command that can be used to perform specific functions
  110.  * with the device.
  111.  */
  112. int (*command)(struct i2c_client *client,unsigned int cmd, void *arg);
  113. struct device_driver driver;
  114. struct list_head list;
  115. };
  116. #define to_i2c_driver(d) container_of(d, struct i2c_driver, driver)
  117. #define I2C_NAME_SIZE 50
  118. /*
  119.  * i2c_client identifies a single device (i.e. chip) that is connected to an 
  120.  * i2c bus. The behaviour is defined by the routines of the driver. This
  121.  * function is mainly used for lookup & other admin. functions.
  122.  */
  123. struct i2c_client {
  124. unsigned int flags; /* div., see below */
  125. unsigned short addr; /* chip address - NOTE: 7bit  */
  126. /* addresses are stored in the */
  127. /* _LOWER_ 7 bits */
  128. struct i2c_adapter *adapter; /* the adapter we sit on */
  129. struct i2c_driver *driver; /* and our access routines */
  130. int usage_count; /* How many accesses currently  */
  131. /* to the client */
  132. struct device dev; /* the device structure */
  133. struct list_head list;
  134. char name[I2C_NAME_SIZE];
  135. struct completion released;
  136. };
  137. #define to_i2c_client(d) container_of(d, struct i2c_client, dev)
  138. static inline struct i2c_client *kobj_to_i2c_client(struct kobject *kobj)
  139. {
  140. return to_i2c_client(container_of(kobj, struct device, kobj));
  141. }
  142. static inline void *i2c_get_clientdata (struct i2c_client *dev)
  143. {
  144. return dev_get_drvdata (&dev->dev);
  145. }
  146. static inline void i2c_set_clientdata (struct i2c_client *dev, void *data)
  147. {
  148. dev_set_drvdata (&dev->dev, data);
  149. }
  150. /*
  151.  * The following structs are for those who like to implement new bus drivers:
  152.  * i2c_algorithm is the interface to a class of hardware solutions which can
  153.  * be addressed using the same bus algorithms - i.e. bit-banging or the PCF8584
  154.  * to name two of the most common.
  155.  */
  156. struct i2c_algorithm {
  157. /* If an adapter algorithm can't do I2C-level access, set master_xfer
  158.    to NULL. If an adapter algorithm can do SMBus access, set 
  159.    smbus_xfer. If set to NULL, the SMBus protocol is simulated
  160.    using common I2C messages */
  161. int (*master_xfer)(struct i2c_adapter *adap,struct i2c_msg *msgs, 
  162.                    int num);
  163. int (*smbus_xfer) (struct i2c_adapter *adap, u16 addr, 
  164.                    unsigned short flags, char read_write,
  165.                    u8 command, int size, union i2c_smbus_data * data);
  166. /* --- these optional/future use for some adapter types.*/
  167. int (*slave_send)(struct i2c_adapter *,char*,int);
  168. int (*slave_recv)(struct i2c_adapter *,char*,int);
  169. /* --- ioctl like call to set div. parameters. */
  170. int (*algo_control)(struct i2c_adapter *, unsigned int, unsigned long);
  171. /* To determine what the adapter supports */
  172. u32 (*functionality) (struct i2c_adapter *);
  173. };
  174. /*
  175.  * i2c_adapter is the structure used to identify a physical i2c bus along
  176.  * with the access algorithms necessary to access it.
  177.  */
  178. struct i2c_adapter {
  179. struct module *owner;
  180. unsigned int id;
  181. unsigned int class;
  182. struct i2c_algorithm *algo;/* the algorithm to access the bus */
  183. void *algo_data;
  184. /* --- administration stuff. */
  185. int (*client_register)(struct i2c_client *);
  186. int (*client_unregister)(struct i2c_client *);
  187. /* data fields that are valid for all devices */
  188. struct semaphore bus_lock;
  189. struct semaphore clist_lock;
  190. int timeout;
  191. int retries;
  192. struct device dev; /* the adapter device */
  193. struct class_device class_dev; /* the class device */
  194. int nr;
  195. struct list_head clients;
  196. struct list_head list;
  197. char name[I2C_NAME_SIZE];
  198. struct completion dev_released;
  199. struct completion class_dev_released;
  200. };
  201. #define dev_to_i2c_adapter(d) container_of(d, struct i2c_adapter, dev)
  202. #define class_dev_to_i2c_adapter(d) container_of(d, struct i2c_adapter, class_dev)
  203. static inline void *i2c_get_adapdata (struct i2c_adapter *dev)
  204. {
  205. return dev_get_drvdata (&dev->dev);
  206. }
  207. static inline void i2c_set_adapdata (struct i2c_adapter *dev, void *data)
  208. {
  209. dev_set_drvdata (&dev->dev, data);
  210. }
  211. /*flags for the driver struct: */
  212. #define I2C_DF_NOTIFY 0x01 /* notify on bus (de/a)ttaches  */
  213. #if 0
  214. /* this flag is gone -- there is a (optional) driver->detach_adapter
  215.  * callback now which can be used instead */
  216. # define I2C_DF_DUMMY 0x02
  217. #endif
  218. /*flags for the client struct: */
  219. #define I2C_CLIENT_ALLOW_USE 0x01 /* Client allows access */
  220. #define I2C_CLIENT_ALLOW_MULTIPLE_USE  0x02   /* Allow multiple access-locks */
  221. /* on an i2c_client */
  222. #define I2C_CLIENT_PEC  0x04 /* Use Packet Error Checking */
  223. #define I2C_CLIENT_TEN 0x10 /* we have a ten bit chip address */
  224. /* Must equal I2C_M_TEN below */
  225. /* i2c adapter classes (bitmask) */
  226. #define I2C_CLASS_HWMON (1<<0) /* lm_sensors, ... */
  227. #define I2C_CLASS_TV_ANALOG (1<<1) /* bttv + friends */
  228. #define I2C_CLASS_TV_DIGITAL (1<<2) /* dvb cards */
  229. #define I2C_CLASS_DDC (1<<3) /* i2c-matroxfb ? */
  230. #define I2C_CLASS_CAM_ANALOG (1<<4) /* camera with analog CCD */
  231. #define I2C_CLASS_CAM_DIGITAL (1<<5) /* most webcams */
  232. #define I2C_CLASS_SOUND (1<<6) /* sound devices */
  233. #define I2C_CLASS_ALL (UINT_MAX) /* all of the above */
  234. /* i2c_client_address_data is the struct for holding default client
  235.  * addresses for a driver and for the parameters supplied on the
  236.  * command line
  237.  */
  238. struct i2c_client_address_data {
  239. unsigned short *normal_i2c;
  240. unsigned short *probe;
  241. unsigned short *ignore;
  242. unsigned short **forces;
  243. };
  244. /* Internal numbers to terminate lists */
  245. #define I2C_CLIENT_END 0xfffeU
  246. /* The numbers to use to set I2C bus address */
  247. #define ANY_I2C_BUS 0xffff
  248. #define ANY_I2C_ISA_BUS 9191
  249. /* ----- functions exported by i2c.o */
  250. /* administration...
  251.  */
  252. extern int i2c_add_adapter(struct i2c_adapter *);
  253. extern int i2c_del_adapter(struct i2c_adapter *);
  254. extern int i2c_add_driver(struct i2c_driver *);
  255. extern int i2c_del_driver(struct i2c_driver *);
  256. extern int i2c_attach_client(struct i2c_client *);
  257. extern int i2c_detach_client(struct i2c_client *);
  258. /* New function: This is to get an i2c_client-struct for controlling the 
  259.    client either by using i2c_control-function or having the 
  260.    client-module export functions that can be used with the i2c_client
  261.    -struct. */
  262. extern struct i2c_client *i2c_get_client(int driver_id, int adapter_id, 
  263. struct i2c_client *prev);
  264. /* Should be used with new function
  265.    extern struct i2c_client *i2c_get_client(int,int,struct i2c_client *);
  266.    to make sure that client-struct is valid and that it is okay to access
  267.    the i2c-client. 
  268.    returns -EACCES if client doesn't allow use (default)
  269.    returns -EBUSY if client doesn't allow multiple use (default) and 
  270.    usage_count >0 */
  271. extern int i2c_use_client(struct i2c_client *);
  272. extern int i2c_release_client(struct i2c_client *);
  273. /* call the i2c_client->command() of all attached clients with
  274.  * the given arguments */
  275. extern void i2c_clients_command(struct i2c_adapter *adap,
  276. unsigned int cmd, void *arg);
  277. /* returns -EBUSY if address has been taken, 0 if not. Note that the only
  278.    other place at which this is called is within i2c_attach_client; so
  279.    you can cheat by simply not registering. Not recommended, of course! */
  280. extern int i2c_check_addr (struct i2c_adapter *adapter, int addr);
  281. /* Detect function. It iterates over all possible addresses itself.
  282.  * It will only call found_proc if some client is connected at the
  283.  * specific address (unless a 'force' matched);
  284.  */
  285. extern int i2c_probe(struct i2c_adapter *adapter, 
  286. struct i2c_client_address_data *address_data,
  287. int (*found_proc) (struct i2c_adapter *, int, int));
  288. /* An ioctl like call to set div. parameters of the adapter.
  289.  */
  290. extern int i2c_control(struct i2c_client *,unsigned int, unsigned long);
  291. extern struct i2c_adapter* i2c_get_adapter(int id);
  292. extern void i2c_put_adapter(struct i2c_adapter *adap);
  293. /* Return the functionality mask */
  294. static inline u32 i2c_get_functionality(struct i2c_adapter *adap)
  295. {
  296. return adap->algo->functionality(adap);
  297. }
  298. /* Return 1 if adapter supports everything we need, 0 if not. */
  299. static inline int i2c_check_functionality(struct i2c_adapter *adap, u32 func)
  300. {
  301. return (func & i2c_get_functionality(adap)) == func;
  302. }
  303. /* Return id number for a specific adapter */
  304. static inline int i2c_adapter_id(struct i2c_adapter *adap)
  305. {
  306. return adap->nr;
  307. }
  308. /*
  309.  * I2C Message - used for pure i2c transaction, also from /dev interface
  310.  */
  311. struct i2c_msg {
  312. __u16 addr; /* slave address */
  313.   __u16 flags;
  314. #define I2C_M_TEN 0x10 /* we have a ten bit chip address */
  315. #define I2C_M_RD 0x01
  316. #define I2C_M_NOSTART 0x4000
  317. #define I2C_M_REV_DIR_ADDR 0x2000
  318. #define I2C_M_IGNORE_NAK 0x1000
  319. #define I2C_M_NO_RD_ACK 0x0800
  320.   __u16 len; /* msg length */
  321.   __u8 *buf; /* pointer to msg data */
  322. };
  323. /* To determine what functionality is present */
  324. #define I2C_FUNC_I2C 0x00000001
  325. #define I2C_FUNC_10BIT_ADDR 0x00000002
  326. #define I2C_FUNC_PROTOCOL_MANGLING 0x00000004 /* I2C_M_{REV_DIR_ADDR,NOSTART,..} */
  327. #define I2C_FUNC_SMBUS_HWPEC_CALC 0x00000008 /* SMBus 2.0 */
  328. #define I2C_FUNC_SMBUS_READ_WORD_DATA_PEC  0x00000800 /* SMBus 2.0 */ 
  329. #define I2C_FUNC_SMBUS_WRITE_WORD_DATA_PEC 0x00001000 /* SMBus 2.0 */ 
  330. #define I2C_FUNC_SMBUS_PROC_CALL_PEC 0x00002000 /* SMBus 2.0 */
  331. #define I2C_FUNC_SMBUS_BLOCK_PROC_CALL_PEC 0x00004000 /* SMBus 2.0 */
  332. #define I2C_FUNC_SMBUS_BLOCK_PROC_CALL 0x00008000 /* SMBus 2.0 */
  333. #define I2C_FUNC_SMBUS_QUICK 0x00010000 
  334. #define I2C_FUNC_SMBUS_READ_BYTE 0x00020000 
  335. #define I2C_FUNC_SMBUS_WRITE_BYTE 0x00040000 
  336. #define I2C_FUNC_SMBUS_READ_BYTE_DATA 0x00080000 
  337. #define I2C_FUNC_SMBUS_WRITE_BYTE_DATA 0x00100000 
  338. #define I2C_FUNC_SMBUS_READ_WORD_DATA 0x00200000 
  339. #define I2C_FUNC_SMBUS_WRITE_WORD_DATA 0x00400000 
  340. #define I2C_FUNC_SMBUS_PROC_CALL 0x00800000 
  341. #define I2C_FUNC_SMBUS_READ_BLOCK_DATA 0x01000000 
  342. #define I2C_FUNC_SMBUS_WRITE_BLOCK_DATA 0x02000000 
  343. #define I2C_FUNC_SMBUS_READ_I2C_BLOCK 0x04000000 /* I2C-like block xfer  */
  344. #define I2C_FUNC_SMBUS_WRITE_I2C_BLOCK 0x08000000 /* w/ 1-byte reg. addr. */
  345. #define I2C_FUNC_SMBUS_READ_I2C_BLOCK_2  0x10000000 /* I2C-like block xfer  */
  346. #define I2C_FUNC_SMBUS_WRITE_I2C_BLOCK_2 0x20000000 /* w/ 2-byte reg. addr. */
  347. #define I2C_FUNC_SMBUS_READ_BLOCK_DATA_PEC  0x40000000 /* SMBus 2.0 */
  348. #define I2C_FUNC_SMBUS_WRITE_BLOCK_DATA_PEC 0x80000000 /* SMBus 2.0 */
  349. #define I2C_FUNC_SMBUS_BYTE (I2C_FUNC_SMBUS_READ_BYTE | 
  350.                              I2C_FUNC_SMBUS_WRITE_BYTE)
  351. #define I2C_FUNC_SMBUS_BYTE_DATA (I2C_FUNC_SMBUS_READ_BYTE_DATA | 
  352.                                   I2C_FUNC_SMBUS_WRITE_BYTE_DATA)
  353. #define I2C_FUNC_SMBUS_WORD_DATA (I2C_FUNC_SMBUS_READ_WORD_DATA | 
  354.                                   I2C_FUNC_SMBUS_WRITE_WORD_DATA)
  355. #define I2C_FUNC_SMBUS_BLOCK_DATA (I2C_FUNC_SMBUS_READ_BLOCK_DATA | 
  356.                                    I2C_FUNC_SMBUS_WRITE_BLOCK_DATA)
  357. #define I2C_FUNC_SMBUS_I2C_BLOCK (I2C_FUNC_SMBUS_READ_I2C_BLOCK | 
  358.                                   I2C_FUNC_SMBUS_WRITE_I2C_BLOCK)
  359. #define I2C_FUNC_SMBUS_I2C_BLOCK_2 (I2C_FUNC_SMBUS_READ_I2C_BLOCK_2 | 
  360.                                     I2C_FUNC_SMBUS_WRITE_I2C_BLOCK_2)
  361. #define I2C_FUNC_SMBUS_BLOCK_DATA_PEC (I2C_FUNC_SMBUS_READ_BLOCK_DATA_PEC | 
  362.                                        I2C_FUNC_SMBUS_WRITE_BLOCK_DATA_PEC)
  363. #define I2C_FUNC_SMBUS_WORD_DATA_PEC  (I2C_FUNC_SMBUS_READ_WORD_DATA_PEC | 
  364.                                        I2C_FUNC_SMBUS_WRITE_WORD_DATA_PEC)
  365. #define I2C_FUNC_SMBUS_READ_BYTE_PEC I2C_FUNC_SMBUS_READ_BYTE_DATA
  366. #define I2C_FUNC_SMBUS_WRITE_BYTE_PEC I2C_FUNC_SMBUS_WRITE_BYTE_DATA
  367. #define I2C_FUNC_SMBUS_READ_BYTE_DATA_PEC I2C_FUNC_SMBUS_READ_WORD_DATA
  368. #define I2C_FUNC_SMBUS_WRITE_BYTE_DATA_PEC I2C_FUNC_SMBUS_WRITE_WORD_DATA
  369. #define I2C_FUNC_SMBUS_BYTE_PEC I2C_FUNC_SMBUS_BYTE_DATA
  370. #define I2C_FUNC_SMBUS_BYTE_DATA_PEC I2C_FUNC_SMBUS_WORD_DATA
  371. #define I2C_FUNC_SMBUS_EMUL (I2C_FUNC_SMBUS_QUICK | 
  372.                              I2C_FUNC_SMBUS_BYTE | 
  373.                              I2C_FUNC_SMBUS_BYTE_DATA | 
  374.                              I2C_FUNC_SMBUS_WORD_DATA | 
  375.                              I2C_FUNC_SMBUS_PROC_CALL | 
  376.                              I2C_FUNC_SMBUS_WRITE_BLOCK_DATA | 
  377.                              I2C_FUNC_SMBUS_WRITE_BLOCK_DATA_PEC | 
  378.                              I2C_FUNC_SMBUS_I2C_BLOCK)
  379. /* 
  380.  * Data for SMBus Messages 
  381.  */
  382. #define I2C_SMBUS_BLOCK_MAX 32 /* As specified in SMBus standard */
  383. #define I2C_SMBUS_I2C_BLOCK_MAX 32 /* Not specified but we use same structure */
  384. union i2c_smbus_data {
  385. __u8 byte;
  386. __u16 word;
  387. __u8 block[I2C_SMBUS_BLOCK_MAX + 3]; /* block[0] is used for length */
  388.                           /* one more for read length in block process call */
  389.                                             /* and one more for PEC */
  390. };
  391. /* smbus_access read or write markers */
  392. #define I2C_SMBUS_READ 1
  393. #define I2C_SMBUS_WRITE 0
  394. /* SMBus transaction types (size parameter in the above functions) 
  395.    Note: these no longer correspond to the (arbitrary) PIIX4 internal codes! */
  396. #define I2C_SMBUS_QUICK     0
  397. #define I2C_SMBUS_BYTE     1
  398. #define I2C_SMBUS_BYTE_DATA     2 
  399. #define I2C_SMBUS_WORD_DATA     3
  400. #define I2C_SMBUS_PROC_CALL     4
  401. #define I2C_SMBUS_BLOCK_DATA     5
  402. #define I2C_SMBUS_I2C_BLOCK_DATA    6
  403. #define I2C_SMBUS_BLOCK_PROC_CALL   7 /* SMBus 2.0 */
  404. #define I2C_SMBUS_BLOCK_DATA_PEC    8 /* SMBus 2.0 */
  405. #define I2C_SMBUS_PROC_CALL_PEC     9 /* SMBus 2.0 */
  406. #define I2C_SMBUS_BLOCK_PROC_CALL_PEC  10 /* SMBus 2.0 */
  407. #define I2C_SMBUS_WORD_DATA_PEC    11 /* SMBus 2.0 */
  408. /* ----- commands for the ioctl like i2c_command call:
  409.  * note that additional calls are defined in the algorithm and hw 
  410.  * dependent layers - these can be listed here, or see the 
  411.  * corresponding header files.
  412.  */
  413. /* -> bit-adapter specific ioctls */
  414. #define I2C_RETRIES 0x0701 /* number of times a device address      */
  415. /* should be polled when not            */
  416.                                 /* acknowledging  */
  417. #define I2C_TIMEOUT 0x0702 /* set timeout - call with int  */
  418. /* this is for i2c-dev.c */
  419. #define I2C_SLAVE 0x0703 /* Change slave address */
  420. /* Attn.: Slave address is 7 or 10 bits */
  421. #define I2C_SLAVE_FORCE 0x0706 /* Change slave address */
  422. /* Attn.: Slave address is 7 or 10 bits */
  423. /* This changes the address, even if it */
  424. /* is already taken! */
  425. #define I2C_TENBIT 0x0704 /* 0 for 7 bit addrs, != 0 for 10 bit */
  426. #define I2C_FUNCS 0x0705 /* Get the adapter functionality */
  427. #define I2C_RDWR 0x0707 /* Combined R/W transfer (one stop only)*/
  428. #define I2C_PEC 0x0708 /* != 0 for SMBus PEC                   */
  429. #define I2C_SMBUS 0x0720 /* SMBus-level access */
  430. /* ... algo-bit.c recognizes */
  431. #define I2C_UDELAY 0x0705 /* set delay in microsecs between each */
  432. /* written byte (except address) */
  433. #define I2C_MDELAY 0x0706 /* millisec delay between written bytes */
  434. /* ----- I2C-DEV: char device interface stuff ------------------------- */
  435. #define I2C_MAJOR 89 /* Device major number */
  436. /* These defines are used for probing i2c client addresses */
  437. /* The length of the option lists */
  438. #define I2C_CLIENT_MAX_OPTS 48
  439. /* Default fill of many variables */
  440. #define I2C_CLIENT_DEFAULTS {I2C_CLIENT_END, I2C_CLIENT_END, I2C_CLIENT_END, 
  441.                           I2C_CLIENT_END, I2C_CLIENT_END, I2C_CLIENT_END, 
  442.                           I2C_CLIENT_END, I2C_CLIENT_END, I2C_CLIENT_END, 
  443.                           I2C_CLIENT_END, I2C_CLIENT_END, I2C_CLIENT_END, 
  444.                           I2C_CLIENT_END, I2C_CLIENT_END, I2C_CLIENT_END, 
  445.                           I2C_CLIENT_END, I2C_CLIENT_END, I2C_CLIENT_END, 
  446.                           I2C_CLIENT_END, I2C_CLIENT_END, I2C_CLIENT_END, 
  447.                           I2C_CLIENT_END, I2C_CLIENT_END, I2C_CLIENT_END, 
  448.                           I2C_CLIENT_END, I2C_CLIENT_END, I2C_CLIENT_END, 
  449.                           I2C_CLIENT_END, I2C_CLIENT_END, I2C_CLIENT_END, 
  450.                           I2C_CLIENT_END, I2C_CLIENT_END, I2C_CLIENT_END, 
  451.                           I2C_CLIENT_END, I2C_CLIENT_END, I2C_CLIENT_END, 
  452.                           I2C_CLIENT_END, I2C_CLIENT_END, I2C_CLIENT_END, 
  453.                           I2C_CLIENT_END, I2C_CLIENT_END, I2C_CLIENT_END, 
  454.                           I2C_CLIENT_END, I2C_CLIENT_END, I2C_CLIENT_END, 
  455.                           I2C_CLIENT_END, I2C_CLIENT_END, I2C_CLIENT_END}
  456. /* I2C_CLIENT_MODULE_PARM creates a module parameter, and puts it in the
  457.    module header */
  458. #define I2C_CLIENT_MODULE_PARM(var,desc) 
  459.   static unsigned short var[I2C_CLIENT_MAX_OPTS] = I2C_CLIENT_DEFAULTS; 
  460.   static unsigned int var##_num; 
  461.   module_param_array(var, short, &var##_num, 0); 
  462.   MODULE_PARM_DESC(var,desc)
  463. #define I2C_CLIENT_MODULE_PARM_FORCE(name)
  464. I2C_CLIENT_MODULE_PARM(force_##name,
  465.        "List of adapter,address pairs which are "
  466.        "unquestionably assumed to contain a `"
  467.        # name "' chip")
  468. #define I2C_CLIENT_INSMOD_COMMON
  469. I2C_CLIENT_MODULE_PARM(probe, "List of adapter,address pairs to scan "
  470.        "additionally");
  471. I2C_CLIENT_MODULE_PARM(ignore, "List of adapter,address pairs not to "
  472.        "scan");
  473. static struct i2c_client_address_data addr_data = {
  474. .normal_i2c = normal_i2c,
  475. .probe = probe,
  476. .ignore = ignore,
  477. .forces = forces,
  478. }
  479. /* These are the ones you want to use in your own drivers. Pick the one
  480.    which matches the number of devices the driver differenciates between. */
  481. #define I2C_CLIENT_INSMOD 
  482.   I2C_CLIENT_MODULE_PARM(force, 
  483.                       "List of adapter,address pairs to boldly assume " 
  484.                       "to be present"); 
  485. static unsigned short *forces[] = {
  486. force,
  487. NULL
  488. };
  489. I2C_CLIENT_INSMOD_COMMON
  490. #define I2C_CLIENT_INSMOD_1(chip1)
  491. enum chips { any_chip, chip1 };
  492. I2C_CLIENT_MODULE_PARM(force, "List of adapter,address pairs to "
  493.        "boldly assume to be present");
  494. I2C_CLIENT_MODULE_PARM_FORCE(chip1);
  495. static unsigned short *forces[] = { force, force_##chip1, NULL };
  496. I2C_CLIENT_INSMOD_COMMON
  497. #define I2C_CLIENT_INSMOD_2(chip1, chip2)
  498. enum chips { any_chip, chip1, chip2 };
  499. I2C_CLIENT_MODULE_PARM(force, "List of adapter,address pairs to "
  500.        "boldly assume to be present");
  501. I2C_CLIENT_MODULE_PARM_FORCE(chip1);
  502. I2C_CLIENT_MODULE_PARM_FORCE(chip2);
  503. static unsigned short *forces[] = { force, force_##chip1,
  504.     force_##chip2, NULL };
  505. I2C_CLIENT_INSMOD_COMMON
  506. #define I2C_CLIENT_INSMOD_3(chip1, chip2, chip3)
  507. enum chips { any_chip, chip1, chip2, chip3 };
  508. I2C_CLIENT_MODULE_PARM(force, "List of adapter,address pairs to "
  509.        "boldly assume to be present");
  510. I2C_CLIENT_MODULE_PARM_FORCE(chip1);
  511. I2C_CLIENT_MODULE_PARM_FORCE(chip2);
  512. I2C_CLIENT_MODULE_PARM_FORCE(chip3);
  513. static unsigned short *forces[] = { force, force_##chip1,
  514.     force_##chip2, force_##chip3,
  515.     NULL };
  516. I2C_CLIENT_INSMOD_COMMON
  517. #define I2C_CLIENT_INSMOD_4(chip1, chip2, chip3, chip4)
  518. enum chips { any_chip, chip1, chip2, chip3, chip4 };
  519. I2C_CLIENT_MODULE_PARM(force, "List of adapter,address pairs to "
  520.        "boldly assume to be present");
  521. I2C_CLIENT_MODULE_PARM_FORCE(chip1);
  522. I2C_CLIENT_MODULE_PARM_FORCE(chip2);
  523. I2C_CLIENT_MODULE_PARM_FORCE(chip3);
  524. I2C_CLIENT_MODULE_PARM_FORCE(chip4);
  525. static unsigned short *forces[] = { force, force_##chip1,
  526.     force_##chip2, force_##chip3,
  527.     force_##chip4, NULL};
  528. I2C_CLIENT_INSMOD_COMMON
  529. #define I2C_CLIENT_INSMOD_5(chip1, chip2, chip3, chip4, chip5)
  530. enum chips { any_chip, chip1, chip2, chip3, chip4, chip5 };
  531. I2C_CLIENT_MODULE_PARM(force, "List of adapter,address pairs to "
  532.        "boldly assume to be present");
  533. I2C_CLIENT_MODULE_PARM_FORCE(chip1);
  534. I2C_CLIENT_MODULE_PARM_FORCE(chip2);
  535. I2C_CLIENT_MODULE_PARM_FORCE(chip3);
  536. I2C_CLIENT_MODULE_PARM_FORCE(chip4);
  537. I2C_CLIENT_MODULE_PARM_FORCE(chip5);
  538. static unsigned short *forces[] = { force, force_##chip1,
  539.     force_##chip2, force_##chip3,
  540.     force_##chip4, force_##chip5,
  541.     NULL };
  542. I2C_CLIENT_INSMOD_COMMON
  543. #define I2C_CLIENT_INSMOD_6(chip1, chip2, chip3, chip4, chip5, chip6)
  544. enum chips { any_chip, chip1, chip2, chip3, chip4, chip5, chip6 };
  545. I2C_CLIENT_MODULE_PARM(force, "List of adapter,address pairs to "
  546.        "boldly assume to be present");
  547. I2C_CLIENT_MODULE_PARM_FORCE(chip1);
  548. I2C_CLIENT_MODULE_PARM_FORCE(chip2);
  549. I2C_CLIENT_MODULE_PARM_FORCE(chip3);
  550. I2C_CLIENT_MODULE_PARM_FORCE(chip4);
  551. I2C_CLIENT_MODULE_PARM_FORCE(chip5);
  552. I2C_CLIENT_MODULE_PARM_FORCE(chip6);
  553. static unsigned short *forces[] = { force, force_##chip1,
  554.     force_##chip2, force_##chip3,
  555.     force_##chip4, force_##chip5,
  556.     force_##chip6, NULL };
  557. I2C_CLIENT_INSMOD_COMMON
  558. #define I2C_CLIENT_INSMOD_7(chip1, chip2, chip3, chip4, chip5, chip6, chip7) 
  559. enum chips { any_chip, chip1, chip2, chip3, chip4, chip5, chip6,
  560.      chip7 };
  561. I2C_CLIENT_MODULE_PARM(force, "List of adapter,address pairs to "
  562.        "boldly assume to be present");
  563. I2C_CLIENT_MODULE_PARM_FORCE(chip1);
  564. I2C_CLIENT_MODULE_PARM_FORCE(chip2);
  565. I2C_CLIENT_MODULE_PARM_FORCE(chip3);
  566. I2C_CLIENT_MODULE_PARM_FORCE(chip4);
  567. I2C_CLIENT_MODULE_PARM_FORCE(chip5);
  568. I2C_CLIENT_MODULE_PARM_FORCE(chip6);
  569. I2C_CLIENT_MODULE_PARM_FORCE(chip7);
  570. static unsigned short *forces[] = { force, force_##chip1,
  571.     force_##chip2, force_##chip3,
  572.     force_##chip4, force_##chip5,
  573.     force_##chip6, force_##chip7,
  574.     NULL };
  575. I2C_CLIENT_INSMOD_COMMON
  576. #define I2C_CLIENT_INSMOD_8(chip1, chip2, chip3, chip4, chip5, chip6, chip7, chip8) 
  577. enum chips { any_chip, chip1, chip2, chip3, chip4, chip5, chip6,
  578.      chip7, chip8 };
  579. I2C_CLIENT_MODULE_PARM(force, "List of adapter,address pairs to "
  580.        "boldly assume to be present");
  581. I2C_CLIENT_MODULE_PARM_FORCE(chip1);
  582. I2C_CLIENT_MODULE_PARM_FORCE(chip2);
  583. I2C_CLIENT_MODULE_PARM_FORCE(chip3);
  584. I2C_CLIENT_MODULE_PARM_FORCE(chip4);
  585. I2C_CLIENT_MODULE_PARM_FORCE(chip5);
  586. I2C_CLIENT_MODULE_PARM_FORCE(chip6);
  587. I2C_CLIENT_MODULE_PARM_FORCE(chip7);
  588. I2C_CLIENT_MODULE_PARM_FORCE(chip8);
  589. static unsigned short *forces[] = { force, force_##chip1,
  590.     force_##chip2, force_##chip3,
  591.     force_##chip4, force_##chip5,
  592.     force_##chip6, force_##chip7,
  593.     force_##chip8, NULL };
  594. I2C_CLIENT_INSMOD_COMMON
  595. #endif /* _LINUX_I2C_H */