writing-clients
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:31k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. This is a small guide for those who want to write kernel drivers for I2C
  2. or SMBus devices.
  3. To set up a driver, you need to do several things. Some are optional, and
  4. some things can be done slightly or completely different. Use this as a
  5. guide, not as a rule book!
  6. General remarks
  7. ===============
  8. Try to keep the kernel namespace as clean as possible. The best way to
  9. do this is to use a unique prefix for all global symbols. This is 
  10. especially important for exported symbols, but it is a good idea to do
  11. it for non-exported symbols too. We will use the prefix `foo_' in this
  12. tutorial, and `FOO_' for preprocessor variables.
  13. The driver structure
  14. ====================
  15. Usually, you will implement a single driver structure, and instantiate
  16. all clients from it. Remember, a driver structure contains general access 
  17. routines, a client structure specific information like the actual I2C
  18. address.
  19.   struct i2c_driver foo_driver
  20.   {  
  21.     /* name           */  "Foo version 2.3 and later driver",
  22.     /* id             */  I2C_DRIVERID_FOO,
  23.     /* flags          */  I2C_DF_NOTIFY,
  24.     /* attach_adapter */  &foo_attach_adapter,
  25.     /* detach_client  */  &foo_detach_client,
  26.     /* command        */  &foo_command,   /* May be NULL */
  27.     /* inc_use        */  &foo_inc_use,   /* May be NULL */
  28.     /* dec_use        */  &foo_dec_use    /* May be NULL */
  29.   }
  30.  
  31. The name can be chosen freely, and may be upto 40 characters long. Please
  32. use something descriptive here.
  33. The id should be a unique ID. The range 0xf000 to 0xffff is reserved for
  34. local use, and you can use one of those until you start distributing the
  35. driver. Before you do that, contact the i2c authors to get your own ID(s).
  36. Don't worry about the flags field; just put I2C_DF_NOTIFY into it. This
  37. means that your driver will be notified when new adapters are found.
  38. This is almost always what you want.
  39. All other fields are for call-back functions which will be explained 
  40. below.
  41. Module usage count
  42. ==================
  43. If your driver can also be compiled as a module, there are moments at 
  44. which the module can not be removed from memory. For example, when you
  45. are doing a lengthy transaction, or when you create a /proc directory,
  46. and some process has entered that directory (this last case is the
  47. main reason why these call-backs were introduced).
  48. To increase or decrease the module usage count, you can use the
  49. MOD_{INC,DEC}_USE_COUNT macros. They must be called from the module
  50. which needs to get its usage count changed; that is why each driver
  51. module has to implement its own callback.
  52.   void foo_inc_use (struct i2c_client *client)
  53.   {
  54.   #ifdef MODULE
  55.     MOD_INC_USE_COUNT;
  56.   #endif
  57.   }
  58.   void foo_dec_use (struct i2c_client *client)
  59.   {
  60.   #ifdef MODULE
  61.     MOD_DEC_USE_COUNT;
  62.   #endif
  63.   }
  64. Do not call these call-back functions directly; instead, use one of the
  65. following functions defined in i2c.h:
  66.   void i2c_inc_use_client(struct i2c_client *);
  67.   void i2c_dec_use_client(struct i2c_client *);
  68. You should *not* increase the module count just because a device is
  69. detected and a client created. This would make it impossible to remove
  70. an adapter driver! 
  71. Extra client data
  72. =================
  73. The client structure has a special `data' field that can point to any
  74. structure at all. You can use this to keep client-specific data. You
  75. do not always need this, but especially for `sensors' drivers, it can
  76. be very useful.
  77. An example structure is below.
  78.   struct foo_data {
  79.     struct semaphore lock; /* For ISA access in `sensors' drivers. */
  80.     int sysctl_id;         /* To keep the /proc directory entry for 
  81.                               `sensors' drivers. */
  82.     enum chips type;       /* To keep the chips type for `sensors' drivers. */
  83.    
  84.     /* Because the i2c bus is slow, it is often useful to cache the read
  85.        information of a chip for some time (for example, 1 or 2 seconds).
  86.        It depends of course on the device whether this is really worthwhile
  87.        or even sensible. */
  88.     struct semaphore update_lock; /* When we are reading lots of information,
  89.                                      another process should not update the
  90.                                      below information */
  91.     char valid;                   /* != 0 if the following fields are valid. */
  92.     unsigned long last_updated;   /* In jiffies */
  93.     /* Add the read information here too */
  94.   };
  95. Accessing the client
  96. ====================
  97. Let's say we have a valid client structure. At some time, we will need
  98. to gather information from the client, or write new information to the
  99. client. How we will export this information to user-space is less 
  100. important at this moment (perhaps we do not need to do this at all for
  101. some obscure clients). But we need generic reading and writing routines.
  102. I have found it useful to define foo_read and foo_write function for this.
  103. For some cases, it will be easier to call the i2c functions directly,
  104. but many chips have some kind of register-value idea that can easily
  105. be encapsulated. Also, some chips have both ISA and I2C interfaces, and
  106. it useful to abstract from this (only for `sensors' drivers).
  107. The below functions are simple examples, and should not be copied
  108. literally.
  109.   int foo_read_value(struct i2c_client *client, u8 reg)
  110.   {
  111.     if (reg < 0x10) /* byte-sized register */
  112.       return i2c_smbus_read_byte_data(client,reg);
  113.     else /* word-sized register */
  114.       return i2c_smbus_read_word_data(client,reg);
  115.   }
  116.   int foo_write_value(struct i2c_client *client, u8 reg, u16 value)
  117.   {
  118.     if (reg == 0x10) /* Impossible to write - driver error! */ {
  119.       return -1;
  120.     else if (reg < 0x10) /* byte-sized register */
  121.       return i2c_smbus_write_byte_data(client,reg,value);
  122.     else /* word-sized register */
  123.       return i2c_smbus_write_word_data(client,reg,value);
  124.   }
  125. For sensors code, you may have to cope with ISA registers too. Something
  126. like the below often works. Note the locking! 
  127.   int foo_read_value(struct i2c_client *client, u8 reg)
  128.   {
  129.     int res;
  130.     if (i2c_is_isa_client(client)) {
  131.       down(&(((struct foo_data *) (client->data)) -> lock));
  132.       outb_p(reg,client->addr + FOO_ADDR_REG_OFFSET);
  133.       res = inb_p(client->addr + FOO_DATA_REG_OFFSET);
  134.       up(&(((struct foo_data *) (client->data)) -> lock));
  135.       return res;
  136.     } else
  137.       return i2c_smbus_read_byte_data(client,reg);
  138.   }
  139. Writing is done the same way.
  140. Probing and attaching
  141. =====================
  142. Most i2c devices can be present on several i2c addresses; for some this
  143. is determined in hardware (by soldering some chip pins to Vcc or Ground),
  144. for others this can be changed in software (by writing to specific client
  145. registers). Some devices are usually on a specific address, but not always;
  146. and some are even more tricky. So you will probably need to scan several
  147. i2c addresses for your clients, and do some sort of detection to see
  148. whether it is actually a device supported by your driver.
  149. To give the user a maximum of possibilities, some default module parameters
  150. are defined to help determine what addresses are scanned. Several macros
  151. are defined in i2c.h to help you support them, as well as a generic
  152. detection algorithm.
  153. You do not have to use this parameter interface; but don't try to use
  154. function i2c_probe() (or i2c_detect()) if you don't.
  155. NOTE: If you want to write a `sensors' driver, the interface is slightly
  156.       different! See below.
  157. Probing classes (i2c)
  158. ---------------------
  159. All parameters are given as lists of unsigned 16-bit integers. Lists are
  160. terminated by I2C_CLIENT_END.
  161. The following lists are used internally:
  162.   normal_i2c: filled in by the module writer. 
  163.      A list of I2C addresses which should normally be examined.
  164.    normal_i2c_range: filled in by the module writer.
  165.      A list of pairs of I2C addresses, each pair being an inclusive range of
  166.      addresses which should normally be examined.
  167.    probe: insmod parameter. 
  168.      A list of pairs. The first value is a bus number (-1 for any I2C bus), 
  169.      the second is the address. These addresses are also probed, as if they 
  170.      were in the 'normal' list.
  171.    probe_range: insmod parameter. 
  172.      A list of triples. The first value is a bus number (-1 for any I2C bus), 
  173.      the second and third are addresses.  These form an inclusive range of 
  174.      addresses that are also probed, as if they were in the 'normal' list.
  175.    ignore: insmod parameter.
  176.      A list of pairs. The first value is a bus number (-1 for any I2C bus), 
  177.      the second is the I2C address. These addresses are never probed. 
  178.      This parameter overrules 'normal' and 'probe', but not the 'force' lists.
  179.    ignore_range: insmod parameter. 
  180.      A list of triples. The first value is a bus number (-1 for any I2C bus), 
  181.      the second and third are addresses. These form an inclusive range of 
  182.      I2C addresses that are never probed.
  183.      This parameter overrules 'normal' and 'probe', but not the 'force' lists.
  184.    force: insmod parameter. 
  185.      A list of pairs. The first value is a bus number (-1 for any I2C bus),
  186.      the second is the I2C address. A device is blindly assumed to be on
  187.      the given address, no probing is done. 
  188. Fortunately, as a module writer, you just have to define the `normal' 
  189. and/or `normal_range' parameters. The complete declaration could look
  190. like this:
  191.   /* Scan 0x20 to 0x2f, 0x37, and 0x40 to 0x4f */
  192.   static unsigned short normal_i2c[] = { 0x37,I2C_CLIENT_END }; 
  193.   static unsigned short normal_i2c_range[] = { 0x20, 0x2f, 0x40, 0x4f, 
  194.                                                I2C_CLIENT_END };
  195.   /* Magic definition of all other variables and things */
  196.   I2C_CLIENT_INSMOD;
  197. Note that you *have* to call the two defined variables `normal_i2c' and
  198. `normal_i2c_range', without any prefix!
  199. Probing classes (sensors)
  200. -------------------------
  201. If you write a `sensors' driver, you use a slightly different interface.
  202. As well as I2C addresses, we have to cope with ISA addresses. Also, we
  203. use a enum of chip types. Don't forget to include `sensors.h'.
  204. The following lists are used internally. They are all lists of integers.
  205.    normal_i2c: filled in by the module writer. Terminated by SENSORS_I2C_END.
  206.      A list of I2C addresses which should normally be examined.
  207.    normal_i2c_range: filled in by the module writer. Terminated by 
  208.      SENSORS_I2C_END
  209.      A list of pairs of I2C addresses, each pair being an inclusive range of
  210.      addresses which should normally be examined.
  211.    normal_isa: filled in by the module writer. Terminated by SENSORS_ISA_END.
  212.      A list of ISA addresses which should normally be examined.
  213.    normal_isa_range: filled in by the module writer. Terminated by 
  214.      SENSORS_ISA_END
  215.      A list of triples. The first two elements are ISA addresses, being an
  216.      range of addresses which should normally be examined. The third is the
  217.      modulo parameter: only addresses which are 0 module this value relative
  218.      to the first address of the range are actually considered.
  219.    probe: insmod parameter. Initialize this list with SENSORS_I2C_END values.
  220.      A list of pairs. The first value is a bus number (SENSORS_ISA_BUS for
  221.      the ISA bus, -1 for any I2C bus), the second is the address. These
  222.      addresses are also probed, as if they were in the 'normal' list.
  223.    probe_range: insmod parameter. Initialize this list with SENSORS_I2C_END 
  224.      values.
  225.      A list of triples. The first value is a bus number (SENSORS_ISA_BUS for
  226.      the ISA bus, -1 for any I2C bus), the second and third are addresses. 
  227.      These form an inclusive range of addresses that are also probed, as
  228.      if they were in the 'normal' list.
  229.    ignore: insmod parameter. Initialize this list with SENSORS_I2C_END values.
  230.      A list of pairs. The first value is a bus number (SENSORS_ISA_BUS for
  231.      the ISA bus, -1 for any I2C bus), the second is the I2C address. These
  232.      addresses are never probed. This parameter overrules 'normal' and 
  233.      'probe', but not the 'force' lists.
  234.    ignore_range: insmod parameter. Initialize this list with SENSORS_I2C_END 
  235.       values.
  236.      A list of triples. The first value is a bus number (SENSORS_ISA_BUS for
  237.      the ISA bus, -1 for any I2C bus), the second and third are addresses. 
  238.      These form an inclusive range of I2C addresses that are never probed.
  239.      This parameter overrules 'normal' and 'probe', but not the 'force' lists.
  240. Also used is a list of pointers to sensors_force_data structures:
  241.    force_data: insmod parameters. A list, ending with an element of which
  242.      the force field is NULL.
  243.      Each element contains the type of chip and a list of pairs.
  244.      The first value is a bus number (SENSORS_ISA_BUS for the ISA bus, 
  245.      -1 for any I2C bus), the second is the address. 
  246.      These are automatically translated to insmod variables of the form
  247.      force_foo.
  248. So we have a generic insmod variabled `force', and chip-specific variables
  249. `force_CHIPNAME'.
  250. Fortunately, as a module writer, you just have to define the `normal' 
  251. and/or `normal_range' parameters, and define what chip names are used. 
  252. The complete declaration could look like this:
  253.   /* Scan i2c addresses 0x20 to 0x2f, 0x37, and 0x40 to 0x4f
  254.   static unsigned short normal_i2c[] = {0x37,SENSORS_I2C_END};
  255.   static unsigned short normal_i2c_range[] = {0x20,0x2f,0x40,0x4f,
  256.                                               SENSORS_I2C_END};
  257.   /* Scan ISA address 0x290 */
  258.   static unsigned int normal_isa[] = {0x0290,SENSORS_ISA_END};
  259.   static unsigned int normal_isa_range[] = {SENSORS_ISA_END};
  260.   /* Define chips foo and bar, as well as all module parameters and things */
  261.   SENSORS_INSMOD_2(foo,bar);
  262. If you have one chip, you use macro SENSORS_INSMOD_1(chip), if you have 2
  263. you use macro SENSORS_INSMOD_2(chip1,chip2), etc. If you do not want to
  264. bother with chip types, you can use SENSORS_INSMOD_0.
  265. A enum is automatically defined as follows:
  266.   enum chips { any_chip, chip1, chip2, ... }
  267. Attaching to an adapter
  268. -----------------------
  269. Whenever a new adapter is inserted, or for all adapters if the driver is
  270. being registered, the callback attach_adapter() is called. Now is the
  271. time to determine what devices are present on the adapter, and to register
  272. a client for each of them.
  273. The attach_adapter callback is really easy: we just call the generic
  274. detection function. This function will scan the bus for us, using the
  275. information as defined in the lists explained above. If a device is
  276. detected at a specific address, another callback is called.
  277.   int foo_attach_adapter(struct i2c_adapter *adapter)
  278.   {
  279.     return i2c_probe(adapter,&addr_data,&foo_detect_client);
  280.   }
  281. For `sensors' drivers, use the i2c_detect function instead:
  282.   
  283.   int foo_attach_adapter(struct i2c_adapter *adapter)
  284.   { 
  285.     return i2c_detect(adapter,&addr_data,&foo_detect_client);
  286.   }
  287. Remember, structure `addr_data' is defined by the macros explained above,
  288. so you do not have to define it yourself.
  289. The i2c_probe or i2c_detect function will call the foo_detect_client
  290. function only for those i2c addresses that actually have a device on
  291. them (unless a `force' parameter was used). In addition, addresses that
  292. are already in use (by some other registered client) are skipped.
  293. The detect client function
  294. --------------------------
  295. The detect client function is called by i2c_probe or i2c_detect.
  296. The `kind' parameter contains 0 if this call is due to a `force'
  297. parameter, and 0 otherwise (for i2c_detect, it contains 0 if
  298. this call is due to the generic `force' parameter, and the chip type
  299. number if it is due to a specific `force' parameter).
  300. Below, some things are only needed if this is a `sensors' driver. Those
  301. parts are between /* SENSORS ONLY START */ and /* SENSORS ONLY END */
  302. markers. 
  303. This function should only return an error (any value != 0) if there is
  304. some reason why no more detection should be done anymore. If the
  305. detection just fails for this address, return 0.
  306. For now, you can ignore the `flags' parameter. It is there for future use.
  307.   /* Unique ID allocation */
  308.   static int foo_id = 0;
  309.   int foo_detect_client(struct i2c_adapter *adapter, int address, 
  310.                         unsigned short flags, int kind)
  311.   {
  312.     int err = 0;
  313.     int i;
  314.     struct i2c_client *new_client;
  315.     struct foo_data *data;
  316.     const char *client_name = ""; /* For non-`sensors' drivers, put the real
  317.                                      name here! */
  318.    
  319.     /* Let's see whether this adapter can support what we need.
  320.        Please substitute the things you need here! 
  321.        For `sensors' drivers, add `! is_isa &&' to the if statement */
  322.     if (!i2c_check_functionality(adapter,I2C_FUNC_SMBUS_WORD_DATA |
  323.                                         I2C_FUNC_SMBUS_WRITE_BYTE))
  324.        goto ERROR0;
  325.     /* SENSORS ONLY START */
  326.     const char *type_name = "";
  327.     int is_isa = i2c_is_isa_adapter(adapter);
  328.     if (is_isa) {
  329.       /* If this client can't be on the ISA bus at all, we can stop now
  330.          (call `goto ERROR0'). But for kicks, we will assume it is all
  331.          right. */
  332.       /* Discard immediately if this ISA range is already used */
  333.       if (check_region(address,FOO_EXTENT))
  334.         goto ERROR0;
  335.       /* Probe whether there is anything on this address.
  336.          Some example code is below, but you will have to adapt this
  337.          for your own driver */
  338.       if (kind < 0) /* Only if no force parameter was used */ {
  339.         /* We may need long timeouts at least for some chips. */
  340.         #define REALLY_SLOW_IO
  341.         i = inb_p(address + 1);
  342.         if (inb_p(address + 2) != i)
  343.           goto ERROR0;
  344.         if (inb_p(address + 3) != i)
  345.           goto ERROR0;
  346.         if (inb_p(address + 7) != i)
  347.           goto ERROR0;
  348.         #undef REALLY_SLOW_IO
  349.         /* Let's just hope nothing breaks here */
  350.         i = inb_p(address + 5) & 0x7f;
  351.         outb_p(~i & 0x7f,address+5);
  352.         if ((inb_p(address + 5) & 0x7f) != (~i & 0x7f)) {
  353.           outb_p(i,address+5);
  354.           return 0;
  355.         }
  356.       }
  357.     }
  358.     /* SENSORS ONLY END */
  359.     /* OK. For now, we presume we have a valid client. We now create the
  360.        client structure, even though we cannot fill it completely yet.
  361.        But it allows us to access several i2c functions safely */
  362.     
  363.     /* Note that we reserve some space for foo_data too. If you don't
  364.        need it, remove it. We do it here to help to lessen memory
  365.        fragmentation. */
  366.     if (! (new_client = kmalloc(sizeof(struct i2c_client)) + 
  367.                                 sizeof(struct foo_data),
  368.                                 GFP_KERNEL)) {
  369.       err = -ENOMEM;
  370.       goto ERROR0;
  371.     }
  372.     /* This is tricky, but it will set the data to the right value. */
  373.     client->data = new_client + 1;
  374.     data = (struct foo_data *) (client->data);
  375.     new_client->addr = address;
  376.     new_client->data = data;
  377.     new_client->adapter = adapter;
  378.     new_client->driver = &foo_driver;
  379.     new_client->flags = 0;
  380.     /* Now, we do the remaining detection. If no `force' parameter is used. */
  381.     /* First, the generic detection (if any), that is skipped if any force
  382.        parameter was used. */
  383.     if (kind < 0) {
  384.       /* The below is of course bogus */
  385.       if (foo_read(new_client,FOO_REG_GENERIC) != FOO_GENERIC_VALUE)
  386.          goto ERROR1;
  387.     }
  388.     /* SENSORS ONLY START */
  389.     /* Next, specific detection. This is especially important for `sensors'
  390.        devices. */
  391.     /* Determine the chip type. Not needed if a `force_CHIPTYPE' parameter
  392.        was used. */
  393.     if (kind <= 0) {
  394.       i = foo_read(new_client,FOO_REG_CHIPTYPE);
  395.       if (i == FOO_TYPE_1) 
  396.         kind = chip1; /* As defined in the enum */
  397.       else if (i == FOO_TYPE_2)
  398.         kind = chip2;
  399.       else {
  400.         printk("foo: Ignoring 'force' parameter for unknown chip at "
  401.                "adapter %d, address 0x%02xn",i2c_adapter_id(adapter),address);
  402.         goto ERROR1;
  403.       }
  404.     }
  405.     /* Now set the type and chip names */
  406.     if (kind == chip1) {
  407.       type_name = "chip1"; /* For /proc entry */
  408.       client_name = "CHIP 1";
  409.     } else if (kind == chip2) {
  410.       type_name = "chip2"; /* For /proc entry */
  411.       client_name = "CHIP 2";
  412.     }
  413.    
  414.     /* Reserve the ISA region */
  415.     if (is_isa)
  416.       request_region(address,FOO_EXTENT,type_name);
  417.     /* SENSORS ONLY END */
  418.     /* Fill in the remaining client fields. */
  419.     strcpy(new_client->name,client_name);
  420.     /* SENSORS ONLY BEGIN */
  421.     data->type = kind;
  422.     /* SENSORS ONLY END */
  423.     new_client->id = foo_id++; /* Automatically unique */
  424.     data->valid = 0; /* Only if you use this field */
  425.     init_MUTEX(&data->update_lock); /* Only if you use this field */
  426.     /* Any other initializations in data must be done here too. */
  427.     /* Tell the i2c layer a new client has arrived */
  428.     if ((err = i2c_attach_client(new_client)))
  429.       goto ERROR3;
  430.     /* SENSORS ONLY BEGIN */
  431.     /* Register a new directory entry with module sensors. See below for
  432.        the `template' structure. */
  433.     if ((i = i2c_register_entry(new_client, type_name,
  434.                                     foo_dir_table_template,THIS_MODULE)) < 0) {
  435.       err = i;
  436.       goto ERROR4;
  437.     }
  438.     data->sysctl_id = i;
  439.     /* SENSORS ONLY END */
  440.     /* This function can write default values to the client registers, if
  441.        needed. */
  442.     foo_init_client(new_client);
  443.     return 0;
  444.     /* OK, this is not exactly good programming practice, usually. But it is
  445.        very code-efficient in this case. */
  446.     ERROR4:
  447.       i2c_detach_client(new_client);
  448.     ERROR3:
  449.     ERROR2:
  450.     /* SENSORS ONLY START */
  451.       if (is_isa)
  452.         release_region(address,FOO_EXTENT);
  453.     /* SENSORS ONLY END */
  454.     ERROR1:
  455.       kfree(new_client);
  456.     ERROR0:
  457.       return err;
  458.   }
  459. Removing the client
  460. ===================
  461. The detach_client call back function is called when a client should be
  462. removed. It may actually fail, but only when panicking. This code is
  463. much simpler than the attachment code, fortunately!
  464.   int foo_detach_client(struct i2c_client *client)
  465.   {
  466.     int err,i;
  467.     /* SENSORS ONLY START */
  468.     /* Deregister with the `i2c-proc' module. */
  469.     i2c_deregister_entry(((struct lm78_data *)(client->data))->sysctl_id);
  470.     /* SENSORS ONLY END */
  471.     /* Try to detach the client from i2c space */
  472.     if ((err = i2c_detach_client(client))) {
  473.       printk("foo.o: Client deregistration failed, client not detached.n");
  474.       return err;
  475.     }
  476.     /* SENSORS ONLY START */
  477.     if i2c_is_isa_client(client)
  478.       release_region(client->addr,LM78_EXTENT);
  479.     /* SENSORS ONLY END */
  480.     kfree(client); /* Frees client data too, if allocated at the same time */
  481.     return 0;
  482.   }
  483. Initializing the module or kernel
  484. =================================
  485. When the kernel is booted, or when your foo driver module is inserted, 
  486. you have to do some initializing. Fortunately, just attaching (registering)
  487. the driver module is usually enough.
  488.   /* Keep track of how far we got in the initialization process. If several
  489.      things have to initialized, and we fail halfway, only those things
  490.      have to be cleaned up! */
  491.   static int __initdata foo_initialized = 0;
  492.   int __init foo_init(void)
  493.   {
  494.     int res;
  495.     printk("foo version %s (%s)n",FOO_VERSION,FOO_DATE);
  496.     
  497.     if ((res = i2c_add_driver(&foo_driver))) {
  498.       printk("foo: Driver registration failed, module not inserted.n");
  499.       foo_cleanup();
  500.       return res;
  501.     }
  502.     foo_initialized ++;
  503.     return 0;
  504.   }
  505.   int __init foo_cleanup(void)
  506.   {
  507.     int res;
  508.     if (foo_initialized == 1) {
  509.       if ((res = i2c_del_driver(&foo_driver))) {
  510.         printk("foo: Driver registration failed, module not removed.n");
  511.         return res;
  512.       }
  513.       foo_initialized --;
  514.     }
  515.     return 0;
  516.   }
  517.   #ifdef MODULE
  518.   /* Substitute your own name and email address */
  519.   MODULE_AUTHOR("Frodo Looijaard <frodol@dds.nl>"
  520.   MODULE_DESCRIPTION("Driver for Barf Inc. Foo I2C devices");
  521.   int init_module(void)
  522.   {
  523.     return foo_init();
  524.   }
  525.   int cleanup_module(void)
  526.   {
  527.     return foo_cleanup();
  528.   }
  529.   #endif /* def MODULE */
  530. Note that some functions are marked by `__init', and some data structures
  531. by `__init_data'. If this driver is compiled as part of the kernel (instead
  532. of as a module), those functions and structures can be removed after
  533. kernel booting is completed.
  534. Command function
  535. ================
  536. A generic ioctl-like function call back is supported. You will seldom
  537. need this. You may even set it to NULL.
  538.   /* No commands defined */
  539.   int foo_command(struct i2c_client *client, unsigned int cmd, void *arg)
  540.   {
  541.     return 0;
  542.   }
  543. Sending and receiving
  544. =====================
  545. If you want to communicate with your device, there are several functions
  546. to do this. You can find all of them in i2c.h.
  547. If you can choose between plain i2c communication and SMBus level
  548. communication, please use the last. All adapters understand SMBus level
  549. commands, but only some of them understand plain i2c!
  550. Plain i2c communication
  551. -----------------------
  552.   extern int i2c_master_send(struct i2c_client *,const char* ,int);
  553.   extern int i2c_master_recv(struct i2c_client *,char* ,int);
  554. These routines read and write some bytes from/to a client. The client
  555. contains the i2c address, so you do not have to include it. The second
  556. parameter contains the bytes the read/write, the third the length of the
  557. buffer. Returned is the actual number of bytes read/written.
  558.   
  559.   extern int i2c_transfer(struct i2c_adapter *adap, struct i2c_msg msg[],
  560.                           int num);
  561. This sends a series of messages. Each message can be a read or write,
  562. and they can be mixed in any way. The transactions are combined: no
  563. stop bit is sent between transaction. The i2c_msg structure contains
  564. for each message the client address, the number of bytes of the message
  565. and the message data itself.
  566. You can read the file `i2c-protocol' for more information about the
  567. actual i2c protocol.
  568. SMBus communication
  569. -------------------
  570.   extern s32 i2c_smbus_xfer (struct i2c_adapter * adapter, u16 addr, 
  571.                              unsigned short flags,
  572.                              char read_write, u8 command, int size,
  573.                              union i2c_smbus_data * data);
  574.   This is the generic SMBus function. All functions below are implemented
  575.   in terms of it. Never use this function directly!
  576.   extern s32 i2c_smbus_write_quick(struct i2c_client * client, u8 value);
  577.   extern s32 i2c_smbus_read_byte(struct i2c_client * client);
  578.   extern s32 i2c_smbus_write_byte(struct i2c_client * client, u8 value);
  579.   extern s32 i2c_smbus_read_byte_data(struct i2c_client * client, u8 command);
  580.   extern s32 i2c_smbus_write_byte_data(struct i2c_client * client,
  581.                                        u8 command, u8 value);
  582.   extern s32 i2c_smbus_read_word_data(struct i2c_client * client, u8 command);
  583.   extern s32 i2c_smbus_write_word_data(struct i2c_client * client,
  584.                                        u8 command, u16 value);
  585.   extern s32 i2c_smbus_process_call(struct i2c_client * client,
  586.                                     u8 command, u16 value);
  587.   extern s32 i2c_smbus_read_block_data(struct i2c_client * client,
  588.                                        u8 command, u8 *values);
  589.   extern s32 i2c_smbus_write_block_data(struct i2c_client * client,
  590.                                         u8 command, u8 length,
  591.                                         u8 *values);
  592. All these transactions return -1 on failure. The 'write' transactions 
  593. return 0 on success; the 'read' transactions return the read value, except 
  594. for read_block, which returns the number of values read. The block buffers 
  595. need not be longer than 32 bytes.
  596. You can read the file `smbus-protocol' for more information about the
  597. actual SMBus protocol.
  598. General purpose routines
  599. ========================
  600. Below all general purpose routines are listed, that were not mentioned
  601. before.
  602.   /* This call returns a unique low identifier for each registered adapter,
  603.    * or -1 if the adapter was not registered.
  604.    */
  605.   extern int i2c_adapter_id(struct i2c_adapter *adap);
  606. The sensors sysctl/proc interface
  607. =================================
  608. This section only applies if you write `sensors' drivers.
  609. Each sensors driver creates a directory in /proc/sys/dev/sensors for each
  610. registered client. The directory is called something like foo-i2c-4-65.
  611. The sensors module helps you to do this as easily as possible.
  612. The template
  613. ------------
  614. You will need to define a ctl_table template. This template will automatically
  615. be copied to a newly allocated structure and filled in where necessary when
  616. you call sensors_register_entry.
  617. First, I will give an example definition.
  618.   static ctl_table foo_dir_table_template[] = {
  619.     { FOO_SYSCTL_FUNC1, "func1", NULL, 0, 0644, NULL, &i2c_proc_real,
  620.       &i2c_sysctl_real,NULL,&foo_func },
  621.     { FOO_SYSCTL_FUNC2, "func2", NULL, 0, 0644, NULL, &i2c_proc_real,
  622.       &i2c_sysctl_real,NULL,&foo_func },
  623.     { FOO_SYSCTL_DATA, "data", NULL, 0, 0644, NULL, &i2c_proc_real,
  624.       &i2c_sysctl_real,NULL,&foo_data },
  625.     { 0 }
  626.   };
  627. In the above example, three entries are defined. They can either be
  628. accessed through the /proc interface, in the /proc/sys/dev/sensors/*
  629. directories, as files named func1, func2 and data, or alternatively 
  630. through the sysctl interface, in the appropriate table, with identifiers
  631. FOO_SYSCTL_FUNC1, FOO_SYSCTL_FUNC2 and FOO_SYSCTL_DATA.
  632. The third, sixth and ninth parameters should always be NULL, and the
  633. fourth should always be 0. The fifth is the mode of the /proc file;
  634. 0644 is safe, as the file will be owned by root:root. 
  635. The seventh and eighth parameters should be &i2c_proc_real and
  636. &i2c_sysctl_real if you want to export lists of reals (scaled
  637. integers). You can also use your own function for them, as usual.
  638. Finally, the last parameter is the call-back to gather the data
  639. (see below) if you use the *_proc_real functions. 
  640. Gathering the data
  641. ------------------
  642. The call back functions (foo_func and foo_data in the above example)
  643. can be called in several ways; the operation parameter determines
  644. what should be done:
  645.   * If operation == SENSORS_PROC_REAL_INFO, you must return the
  646.     magnitude (scaling) in nrels_mag;
  647.   * If operation == SENSORS_PROC_REAL_READ, you must read information
  648.     from the chip and return it in results. The number of integers
  649.     to display should be put in nrels_mag;
  650.   * If operation == SENSORS_PROC_REAL_WRITE, you must write the
  651.     supplied information to the chip. nrels_mag will contain the number
  652.     of integers, results the integers themselves.
  653. The *_proc_real functions will display the elements as reals for the
  654. /proc interface. If you set the magnitude to 2, and supply 345 for
  655. SENSORS_PROC_REAL_READ, it would display 3.45; and if the user would
  656. write 45.6 to the /proc file, it would be returned as 4560 for
  657. SENSORS_PROC_REAL_WRITE. A magnitude may even be negative!
  658. An example function:
  659.   /* FOO_FROM_REG and FOO_TO_REG translate between scaled values and
  660.      register values. Note the use of the read cache. */
  661.   void foo_in(struct i2c_client *client, int operation, int ctl_name, 
  662.               int *nrels_mag, long *results)
  663.   {
  664.     struct foo_data *data = client->data;
  665.     int nr = ctl_name - FOO_SYSCTL_FUNC1; /* reduce to 0 upwards */
  666.     
  667.     if (operation == SENSORS_PROC_REAL_INFO)
  668.       *nrels_mag = 2;
  669.     else if (operation == SENSORS_PROC_REAL_READ) {
  670.       /* Update the readings cache (if necessary) */
  671.       foo_update_client(client);
  672.       /* Get the readings from the cache */
  673.       results[0] = FOO_FROM_REG(data->foo_func_base[nr]);
  674.       results[1] = FOO_FROM_REG(data->foo_func_more[nr]);
  675.       results[2] = FOO_FROM_REG(data->foo_func_readonly[nr]);
  676.       *nrels_mag = 2;
  677.     } else if (operation == SENSORS_PROC_REAL_WRITE) {
  678.       if (*nrels_mag >= 1) {
  679.         /* Update the cache */
  680.         data->foo_base[nr] = FOO_TO_REG(results[0]);
  681.         /* Update the chip */
  682.         foo_write_value(client,FOO_REG_FUNC_BASE(nr),data->foo_base[nr]);
  683.       }
  684.       if (*nrels_mag >= 2) {
  685.         /* Update the cache */
  686.         data->foo_more[nr] = FOO_TO_REG(results[1]);
  687.         /* Update the chip */
  688.         foo_write_value(client,FOO_REG_FUNC_MORE(nr),data->foo_more[nr]);
  689.       }
  690.     }
  691.   }