Blame view

Documentation/hwmon/pcf8591 3.22 KB
7f15b6646   Rudolf Marek   [PATCH] I2C: docu...
1
2
3
4
  Kernel driver pcf8591
  =====================
  
  Supported chips:
afc31875f   Jean Delvare   hwmon: (pcf8591) ...
5
    * Philips/NXP PCF8591
7f15b6646   Rudolf Marek   [PATCH] I2C: docu...
6
      Prefix: 'pcf8591'
6dfee8539   Jean Delvare   hwmon: (pcf8591) ...
7
      Addresses scanned: none
afc31875f   Jean Delvare   hwmon: (pcf8591) ...
8
9
      Datasheet: Publicly available at the NXP website
                 http://www.nxp.com/pip/PCF8591_6.html
7f15b6646   Rudolf Marek   [PATCH] I2C: docu...
10
11
12
13
14
15
16
17
18
  
  Authors:
          Aurelien Jarno <aurelien@aurel32.net>
          valuable contributions by Jan M. Sendler <sendler@sendler.de>,
          Jean Delvare <khali@linux-fr.org>
  
  
  Description
  -----------
afc31875f   Jean Delvare   hwmon: (pcf8591) ...
19

7f15b6646   Rudolf Marek   [PATCH] I2C: docu...
20
  The PCF8591 is an 8-bit A/D and D/A converter (4 analog inputs and one
afc31875f   Jean Delvare   hwmon: (pcf8591) ...
21
22
  analog output) for the I2C bus produced by Philips Semiconductors (now NXP).
  It is designed to provide a byte I2C interface to up to 4 separate devices.
7f15b6646   Rudolf Marek   [PATCH] I2C: docu...
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
  
  The PCF8591 has 4 analog inputs programmable as single-ended or
  differential inputs :
  - mode 0 : four single ended inputs
          Pins AIN0 to AIN3 are single ended inputs for channels 0 to 3
  
  - mode 1 : three differential inputs
          Pins AIN3 is the common negative differential input
          Pins AIN0 to AIN2 are positive differential inputs for channels 0 to 2
  
  - mode 2 : single ended and differential mixed
          Pins AIN0 and AIN1 are single ended inputs for channels 0 and 1
          Pins AIN2 is the positive differential input for channel 3
          Pins AIN3 is the negative differential input for channel 3
  
  - mode 3 : two differential inputs
          Pins AIN0 is the positive differential input for channel 0
          Pins AIN1 is the negative differential input for channel 0
          Pins AIN2 is the positive differential input for channel 1
          Pins AIN3 is the negative differential input for channel 1
  
  See the datasheet for details.
  
  Module parameters
  -----------------
  
  * input_mode int
  
      Analog input mode:
           0 = four single ended inputs
           1 = three differential inputs
           2 = single ended and differential mixed
           3 = two differential inputs
  
  
  Accessing PCF8591 via /sys interface
  -------------------------------------
6dfee8539   Jean Delvare   hwmon: (pcf8591) ...
60
61
62
63
64
  The PCF8591 is plainly impossible to detect! Thus the driver won't even
  try. You have to explicitly instantiate the device at the relevant
  address (in the interval [0x48..0x4f]) either through platform data, or
  using the sysfs interface. See Documentation/i2c/instantiating-devices
  for details.
7f15b6646   Rudolf Marek   [PATCH] I2C: docu...
65

6dfee8539   Jean Delvare   hwmon: (pcf8591) ...
66
  Directories are being created for each instantiated PCF8591:
7f15b6646   Rudolf Marek   [PATCH] I2C: docu...
67

afc31875f   Jean Delvare   hwmon: (pcf8591) ...
68
  /sys/bus/i2c/devices/<0>-<1>/
6dfee8539   Jean Delvare   hwmon: (pcf8591) ...
69
  where <0> is the bus the chip is connected to (e. g. i2c-0)
7f15b6646   Rudolf Marek   [PATCH] I2C: docu...
70
71
72
  and <1> the chip address ([48..4f])
  
  Inside these directories, there are such files:
afc31875f   Jean Delvare   hwmon: (pcf8591) ...
73
  in0_input, in1_input, in2_input, in3_input, out0_enable, out0_output, name
7f15b6646   Rudolf Marek   [PATCH] I2C: docu...
74
75
  
  Name contains chip name.
afc31875f   Jean Delvare   hwmon: (pcf8591) ...
76
77
78
79
80
  The in0_input, in1_input, in2_input and in3_input files are RO. Reading gives
  the value of the corresponding channel. Depending on the current analog inputs
  configuration, files in2_input and in3_input may not exist. Values range
  from 0 to 255 for single ended inputs and -128 to +127 for differential inputs
  (8-bit ADC).
7f15b6646   Rudolf Marek   [PATCH] I2C: docu...
81
82
83
84
85
86
87
88
  
  The out0_enable file is RW. Reading gives "1" for analog output enabled and
  "0" for analog output disabled. Writing accepts "0" and "1" accordingly.
  
  The out0_output file is RW. Writing a number between 0 and 255 (8-bit DAC), send
  the value to the digital-to-analog converter. Note that a voltage will
  only appears on AOUT pin if aout0_enable equals 1. Reading returns the last
  value written.