i2c-proc.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:18k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.     sensors.h - Part of lm_sensors, Linux kernel modules for hardware
  3.                 monitoring
  4.     Copyright (c) 1998, 1999  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., 675 Mass Ave, Cambridge, MA 02139, USA.
  16. */
  17. #ifndef SENSORS_SENSORS_H
  18. #define SENSORS_SENSORS_H
  19. #ifdef __KERNEL__
  20. /* Next two must be included before sysctl.h can be included, in 2.0 kernels */
  21. #include <linux/types.h>
  22. #include <linux/fs.h>
  23. #include <linux/sysctl.h>
  24. /* The type of callback functions used in sensors_{proc,sysctl}_real */
  25. typedef void (*i2c_real_callback) (struct i2c_client * client,
  26.        int operation, int ctl_name,
  27.        int *nrels_mag, long *results);
  28. /* Values for the operation field in the above function type */
  29. #define SENSORS_PROC_REAL_INFO 1
  30. #define SENSORS_PROC_REAL_READ 2
  31. #define SENSORS_PROC_REAL_WRITE 3
  32. /* These funcion reads or writes a 'real' value (encoded by the combination
  33.    of an integer and a magnitude, the last is the power of ten the value
  34.    should be divided with) to a /proc/sys directory. To use these functions,
  35.    you must (before registering the ctl_table) set the extra2 field to the
  36.    client, and the extra1 field to a function of the form:
  37.       void func(struct i2c_client *client, int operation, int ctl_name,
  38.                 int *nrels_mag, long *results)
  39.    This last function can be called for three values of operation. If
  40.    operation equals SENSORS_PROC_REAL_INFO, the magnitude should be returned
  41.    in nrels_mag. If operation equals SENSORS_PROC_REAL_READ, values should
  42.    be read into results. nrels_mag should return the number of elements
  43.    read; the maximum number is put in it on entry. Finally, if operation
  44.    equals SENSORS_PROC_REAL_WRITE, the values in results should be
  45.    written to the chip. nrels_mag contains on entry the number of elements
  46.    found.
  47.    In all cases, client points to the client we wish to interact with,
  48.    and ctl_name is the SYSCTL id of the file we are accessing. */
  49. extern int i2c_sysctl_real(ctl_table * table, int *name, int nlen,
  50.        void *oldval, size_t * oldlenp,
  51.        void *newval, size_t newlen,
  52.        void **context);
  53. extern int i2c_proc_real(ctl_table * ctl, int write, struct file *filp,
  54.      void *buffer, size_t * lenp);
  55. /* These rather complex functions must be called when you want to add or
  56.    delete an entry in /proc/sys/dev/sensors/chips (not yet implemented). It
  57.    also creates a new directory within /proc/sys/dev/sensors/.
  58.    ctl_template should be a template of the newly created directory. It is
  59.    copied in memory. The extra2 field of each file is set to point to client.
  60.    If any driver wants subdirectories within the newly created directory,
  61.    these functions must be updated! */
  62. extern int i2c_register_entry(struct i2c_client *client,
  63.   const char *prefix,
  64.   ctl_table * ctl_template,
  65.   struct module *controlling_mod);
  66. extern void i2c_deregister_entry(int id);
  67. /* A structure containing detect information.
  68.    Force variables overrule all other variables; they force a detection on
  69.    that place. If a specific chip is given, the module blindly assumes this
  70.    chip type is present; if a general force (kind == 0) is given, the module
  71.    will still try to figure out what type of chip is present. This is useful
  72.    if for some reasons the detect for SMBus or ISA address space filled
  73.    fails.
  74.    probe: insmod parameter. Initialize this list with SENSORS_I2C_END values.
  75.      A list of pairs. The first value is a bus number (SENSORS_ISA_BUS for
  76.      the ISA bus, -1 for any I2C bus), the second is the address. 
  77.    kind: The kind of chip. 0 equals any chip.
  78. */
  79. struct i2c_force_data {
  80. unsigned short *force;
  81. unsigned short kind;
  82. };
  83. /* A structure containing the detect information.
  84.    normal_i2c: filled in by the module writer. Terminated by SENSORS_I2C_END.
  85.      A list of I2C addresses which should normally be examined.
  86.    normal_i2c_range: filled in by the module writer. Terminated by 
  87.      SENSORS_I2C_END
  88.      A list of pairs of I2C addresses, each pair being an inclusive range of
  89.      addresses which should normally be examined.
  90.    normal_isa: filled in by the module writer. Terminated by SENSORS_ISA_END.
  91.      A list of ISA addresses which should normally be examined.
  92.    normal_isa_range: filled in by the module writer. Terminated by 
  93.      SENSORS_ISA_END
  94.      A list of triples. The first two elements are ISA addresses, being an
  95.      range of addresses which should normally be examined. The third is the
  96.      modulo parameter: only addresses which are 0 module this value relative
  97.      to the first address of the range are actually considered.
  98.    probe: insmod parameter. Initialize this list with SENSORS_I2C_END values.
  99.      A list of pairs. The first value is a bus number (SENSORS_ISA_BUS for
  100.      the ISA bus, -1 for any I2C bus), the second is the address. These
  101.      addresses are also probed, as if they were in the 'normal' list.
  102.    probe_range: insmod parameter. Initialize this list with SENSORS_I2C_END 
  103.      values.
  104.      A list of triples. The first value is a bus number (SENSORS_ISA_BUS for
  105.      the ISA bus, -1 for any I2C bus), the second and third are addresses. 
  106.      These form an inclusive range of addresses that are also probed, as
  107.      if they were in the 'normal' list.
  108.    ignore: insmod parameter. Initialize this list with SENSORS_I2C_END values.
  109.      A list of pairs. The first value is a bus number (SENSORS_ISA_BUS for
  110.      the ISA bus, -1 for any I2C bus), the second is the I2C address. These
  111.      addresses are never probed. This parameter overrules 'normal' and 
  112.      'probe', but not the 'force' lists.
  113.    ignore_range: insmod parameter. Initialize this list with SENSORS_I2C_END 
  114.       values.
  115.      A list of triples. The first value is a bus number (SENSORS_ISA_BUS for
  116.      the ISA bus, -1 for any I2C bus), the second and third are addresses. 
  117.      These form an inclusive range of I2C addresses that are never probed.
  118.      This parameter overrules 'normal' and 'probe', but not the 'force' lists.
  119.    force_data: insmod parameters. A list, ending with an element of which
  120.      the force field is NULL.
  121. */
  122. struct i2c_address_data {
  123. unsigned short *normal_i2c;
  124. unsigned short *normal_i2c_range;
  125. unsigned int *normal_isa;
  126. unsigned int *normal_isa_range;
  127. unsigned short *probe;
  128. unsigned short *probe_range;
  129. unsigned short *ignore;
  130. unsigned short *ignore_range;
  131. struct i2c_force_data *forces;
  132. };
  133. /* Internal numbers to terminate lists */
  134. #define SENSORS_I2C_END 0xfffe
  135. #define SENSORS_ISA_END 0xfffefffe
  136. /* The numbers to use to set an ISA or I2C bus address */
  137. #define SENSORS_ISA_BUS 9191
  138. #define SENSORS_ANY_I2C_BUS 0xffff
  139. /* The length of the option lists */
  140. #define SENSORS_MAX_OPTS 48
  141. /* Default fill of many variables */
  142. #define SENSORS_DEFAULTS {SENSORS_I2C_END, SENSORS_I2C_END, SENSORS_I2C_END, 
  143.                           SENSORS_I2C_END, SENSORS_I2C_END, SENSORS_I2C_END, 
  144.                           SENSORS_I2C_END, SENSORS_I2C_END, SENSORS_I2C_END, 
  145.                           SENSORS_I2C_END, SENSORS_I2C_END, SENSORS_I2C_END, 
  146.                           SENSORS_I2C_END, SENSORS_I2C_END, SENSORS_I2C_END, 
  147.                           SENSORS_I2C_END, SENSORS_I2C_END, SENSORS_I2C_END, 
  148.                           SENSORS_I2C_END, SENSORS_I2C_END, SENSORS_I2C_END, 
  149.                           SENSORS_I2C_END, SENSORS_I2C_END, SENSORS_I2C_END, 
  150.                           SENSORS_I2C_END, SENSORS_I2C_END, SENSORS_I2C_END, 
  151.                           SENSORS_I2C_END, SENSORS_I2C_END, SENSORS_I2C_END, 
  152.                           SENSORS_I2C_END, SENSORS_I2C_END, SENSORS_I2C_END, 
  153.                           SENSORS_I2C_END, SENSORS_I2C_END, SENSORS_I2C_END, 
  154.                           SENSORS_I2C_END, SENSORS_I2C_END, SENSORS_I2C_END, 
  155.                           SENSORS_I2C_END, SENSORS_I2C_END, SENSORS_I2C_END, 
  156.                           SENSORS_I2C_END, SENSORS_I2C_END, SENSORS_I2C_END, 
  157.                           SENSORS_I2C_END, SENSORS_I2C_END, SENSORS_I2C_END}
  158. /* This is ugly. We need to evaluate SENSORS_MAX_OPTS before it is 
  159.    stringified */
  160. #define SENSORS_MODPARM_AUX1(x) "1-" #x "h"
  161. #define SENSORS_MODPARM_AUX(x) SENSORS_MODPARM_AUX1(x)
  162. #define SENSORS_MODPARM SENSORS_MODPARM_AUX(SENSORS_MAX_OPTS)
  163. /* SENSORS_MODULE_PARM creates a module parameter, and puts it in the
  164.    module header */
  165. #define SENSORS_MODULE_PARM(var,desc) 
  166.   static unsigned short var[SENSORS_MAX_OPTS] = SENSORS_DEFAULTS; 
  167.   MODULE_PARM(var,SENSORS_MODPARM); 
  168.   MODULE_PARM_DESC(var,desc)
  169. /* SENSORS_MODULE_PARM creates a 'force_*' module parameter, and puts it in
  170.    the module header */
  171. #define SENSORS_MODULE_PARM_FORCE(name) 
  172.   SENSORS_MODULE_PARM(force_ ## name, 
  173.                       "List of adapter,address pairs which are unquestionably" 
  174.                       " assumed to contain a `" # name "' chip")
  175. /* This defines several insmod variables, and the addr_data structure */
  176. #define SENSORS_INSMOD 
  177.   SENSORS_MODULE_PARM(probe, 
  178.                       "List of adapter,address pairs to scan additionally"); 
  179.   SENSORS_MODULE_PARM(probe_range, 
  180.                       "List of adapter,start-addr,end-addr triples to scan " 
  181.                       "additionally"); 
  182.   SENSORS_MODULE_PARM(ignore, 
  183.                       "List of adapter,address pairs not to scan"); 
  184.   SENSORS_MODULE_PARM(ignore_range, 
  185.                       "List of adapter,start-addr,end-addr triples not to " 
  186.                       "scan"); 
  187.   static struct i2c_address_data addr_data = 
  188.                                        {normal_i2c, normal_i2c_range, 
  189.                                         normal_isa, normal_isa_range, 
  190.                                         probe, probe_range, 
  191.                                         ignore, ignore_range, 
  192.                                         forces}
  193. /* The following functions create an enum with the chip names as elements. 
  194.    The first element of the enum is any_chip. These are the only macros
  195.    a module will want to use. */
  196. #define SENSORS_INSMOD_0 
  197.   enum chips { any_chip }; 
  198.   SENSORS_MODULE_PARM(force, 
  199.                       "List of adapter,address pairs to boldly assume " 
  200.                       "to be present"); 
  201.   static struct i2c_force_data forces[] = {{force,any_chip},{NULL}}; 
  202.   SENSORS_INSMOD
  203. #define SENSORS_INSMOD_1(chip1) 
  204.   enum chips { any_chip, chip1 }; 
  205.   SENSORS_MODULE_PARM(force, 
  206.                       "List of adapter,address pairs to boldly assume " 
  207.                       "to be present"); 
  208.   SENSORS_MODULE_PARM_FORCE(chip1); 
  209.   static struct i2c_force_data forces[] = {{force,any_chip},
  210.                                                  {force_ ## chip1,chip1}, 
  211.                                                  {NULL}}; 
  212.   SENSORS_INSMOD
  213. #define SENSORS_INSMOD_2(chip1,chip2) 
  214.   enum chips { any_chip, chip1, chip2 }; 
  215.   SENSORS_MODULE_PARM(force, 
  216.                       "List of adapter,address pairs to boldly assume " 
  217.                       "to be present"); 
  218.   SENSORS_MODULE_PARM_FORCE(chip1); 
  219.   SENSORS_MODULE_PARM_FORCE(chip2); 
  220.   static struct i2c_force_data forces[] = {{force,any_chip}, 
  221.                                                  {force_ ## chip1,chip1}, 
  222.                                                  {force_ ## chip2,chip2}, 
  223.                                                  {NULL}}; 
  224.   SENSORS_INSMOD
  225. #define SENSORS_INSMOD_3(chip1,chip2,chip3) 
  226.   enum chips { any_chip, chip1, chip2, chip3 }; 
  227.   SENSORS_MODULE_PARM(force, 
  228.                       "List of adapter,address pairs to boldly assume " 
  229.                       "to be present"); 
  230.   SENSORS_MODULE_PARM_FORCE(chip1); 
  231.   SENSORS_MODULE_PARM_FORCE(chip2); 
  232.   SENSORS_MODULE_PARM_FORCE(chip3); 
  233.   static struct i2c_force_data forces[] = {{force,any_chip}, 
  234.                                                  {force_ ## chip1,chip1}, 
  235.                                                  {force_ ## chip2,chip2}, 
  236.                                                  {force_ ## chip3,chip3}, 
  237.                                                  {NULL}}; 
  238.   SENSORS_INSMOD
  239. #define SENSORS_INSMOD_4(chip1,chip2,chip3,chip4) 
  240.   enum chips { any_chip, chip1, chip2, chip3, chip4 }; 
  241.   SENSORS_MODULE_PARM(force, 
  242.                       "List of adapter,address pairs to boldly assume " 
  243.                       "to be present"); 
  244.   SENSORS_MODULE_PARM_FORCE(chip1); 
  245.   SENSORS_MODULE_PARM_FORCE(chip2); 
  246.   SENSORS_MODULE_PARM_FORCE(chip3); 
  247.   SENSORS_MODULE_PARM_FORCE(chip4); 
  248.   static struct i2c_force_data forces[] = {{force,any_chip}, 
  249.                                                  {force_ ## chip1,chip1}, 
  250.                                                  {force_ ## chip2,chip2}, 
  251.                                                  {force_ ## chip3,chip3}, 
  252.                                                  {force_ ## chip4,chip4}, 
  253.                                                  {NULL}}; 
  254.   SENSORS_INSMOD
  255. #define SENSORS_INSMOD_5(chip1,chip2,chip3,chip4,chip5) 
  256.   enum chips { any_chip, chip1, chip2, chip3, chip4, chip5 }; 
  257.   SENSORS_MODULE_PARM(force, 
  258.                       "List of adapter,address pairs to boldly assume " 
  259.                       "to be present"); 
  260.   SENSORS_MODULE_PARM_FORCE(chip1); 
  261.   SENSORS_MODULE_PARM_FORCE(chip2); 
  262.   SENSORS_MODULE_PARM_FORCE(chip3); 
  263.   SENSORS_MODULE_PARM_FORCE(chip4); 
  264.   SENSORS_MODULE_PARM_FORCE(chip5); 
  265.   static struct i2c_force_data forces[] = {{force,any_chip}, 
  266.                                                  {force_ ## chip1,chip1}, 
  267.                                                  {force_ ## chip2,chip2}, 
  268.                                                  {force_ ## chip3,chip3}, 
  269.                                                  {force_ ## chip4,chip4}, 
  270.                                                  {force_ ## chip5,chip5}, 
  271.                                                  {NULL}}; 
  272.   SENSORS_INSMOD
  273. #define SENSORS_INSMOD_6(chip1,chip2,chip3,chip4,chip5,chip6) 
  274.   enum chips { any_chip, chip1, chip2, chip3, chip4, chip5, chip6 }; 
  275.   SENSORS_MODULE_PARM(force, 
  276.                       "List of adapter,address pairs to boldly assume " 
  277.                       "to be present"); 
  278.   SENSORS_MODULE_PARM_FORCE(chip1); 
  279.   SENSORS_MODULE_PARM_FORCE(chip2); 
  280.   SENSORS_MODULE_PARM_FORCE(chip3); 
  281.   SENSORS_MODULE_PARM_FORCE(chip4); 
  282.   SENSORS_MODULE_PARM_FORCE(chip5); 
  283.   SENSORS_MODULE_PARM_FORCE(chip6); 
  284.   static struct i2c_force_data forces[] = {{force,any_chip}, 
  285.                                                  {force_ ## chip1,chip1}, 
  286.                                                  {force_ ## chip2,chip2}, 
  287.                                                  {force_ ## chip3,chip3}, 
  288.                                                  {force_ ## chip4,chip4}, 
  289.                                                  {force_ ## chip5,chip5}, 
  290.                                                  {force_ ## chip6,chip6}, 
  291.                                                  {NULL}}; 
  292.   SENSORS_INSMOD
  293. #define SENSORS_INSMOD_7(chip1,chip2,chip3,chip4,chip5,chip6,chip7) 
  294.   enum chips { any_chip, chip1, chip2, chip3, chip4, chip5, chip6, chip7 }; 
  295.   SENSORS_MODULE_PARM(force, 
  296.                       "List of adapter,address pairs to boldly assume " 
  297.                       "to be present"); 
  298.   SENSORS_MODULE_PARM_FORCE(chip1); 
  299.   SENSORS_MODULE_PARM_FORCE(chip2); 
  300.   SENSORS_MODULE_PARM_FORCE(chip3); 
  301.   SENSORS_MODULE_PARM_FORCE(chip4); 
  302.   SENSORS_MODULE_PARM_FORCE(chip5); 
  303.   SENSORS_MODULE_PARM_FORCE(chip6); 
  304.   SENSORS_MODULE_PARM_FORCE(chip7); 
  305.   static struct i2c_force_data forces[] = {{force,any_chip}, 
  306.                                                  {force_ ## chip1,chip1}, 
  307.                                                  {force_ ## chip2,chip2}, 
  308.                                                  {force_ ## chip3,chip3}, 
  309.                                                  {force_ ## chip4,chip4}, 
  310.                                                  {force_ ## chip5,chip5}, 
  311.                                                  {force_ ## chip6,chip6}, 
  312.                                                  {force_ ## chip7,chip7}, 
  313.                                                  {NULL}}; 
  314.   SENSORS_INSMOD
  315. typedef int i2c_found_addr_proc(struct i2c_adapter *adapter,
  316.     int addr, unsigned short flags,
  317.     int kind);
  318. /* Detect function. It iterates over all possible addresses itself. For
  319.    SMBus addresses, it will only call found_proc if some client is connected
  320.    to the SMBus (unless a 'force' matched); for ISA detections, this is not
  321.    done. */
  322. extern int i2c_detect(struct i2c_adapter *adapter,
  323.   struct i2c_address_data *address_data,
  324.   i2c_found_addr_proc * found_proc);
  325. /* This macro is used to scale user-input to sensible values in almost all
  326.    chip drivers. */
  327. extern inline int SENSORS_LIMIT(long value, long low, long high)
  328. {
  329. if (value < low)
  330. return low;
  331. else if (value > high)
  332. return high;
  333. else
  334. return value;
  335. }
  336. #endif /* def __KERNEL__ */
  337. /* The maximum length of the prefix */
  338. #define SENSORS_PREFIX_MAX 20
  339. /* Sysctl IDs */
  340. #ifdef DEV_HWMON
  341. #define DEV_SENSORS DEV_HWMON
  342. #else /* ndef DEV_HWMOM */
  343. #define DEV_SENSORS 2 /* The id of the lm_sensors directory within the
  344.    dev table */
  345. #endif /* def DEV_HWMON */
  346. #define SENSORS_CHIPS 1
  347. struct i2c_chips_data {
  348. int sysctl_id;
  349. char name[SENSORS_PREFIX_MAX + 13];
  350. };
  351. #endif /* def SENSORS_SENSORS_H */