Blame view

Documentation/hwmon/adm1275 2.34 KB
83f7649c5   Guenter Roeck   hwmon: (pmbus) Ad...
1
2
3
4
5
6
7
8
  Kernel driver adm1275
  =====================
  
  Supported chips:
    * Analog Devices ADM1275
      Prefix: 'adm1275'
      Addresses scanned: -
      Datasheet: www.analog.com/static/imported-files/data_sheets/ADM1275.pdf
5cf231a34   Guenter Roeck   hwmon: (pmbus/adm...
9
10
11
12
    * Analog Devices ADM1276
      Prefix: 'adm1276'
      Addresses scanned: -
      Datasheet: www.analog.com/static/imported-files/data_sheets/ADM1276.pdf
83f7649c5   Guenter Roeck   hwmon: (pmbus) Ad...
13
14
15
16
17
18
  
  Author: Guenter Roeck <guenter.roeck@ericsson.com>
  
  
  Description
  -----------
5cf231a34   Guenter Roeck   hwmon: (pmbus/adm...
19
20
  This driver supports hardware montoring for Analog Devices ADM1275 and ADM1276
  Hot-Swap Controller and Digital Power Monitor.
83f7649c5   Guenter Roeck   hwmon: (pmbus) Ad...
21

5cf231a34   Guenter Roeck   hwmon: (pmbus/adm...
22
23
24
25
  ADM1275 and ADM1276 are hot-swap controllers that allow a circuit board to be
  removed from or inserted into a live backplane. They also feature current and
  voltage readback via an integrated 12-bit analog-to-digital converter (ADC),
  accessed using a PMBus interface.
83f7649c5   Guenter Roeck   hwmon: (pmbus) Ad...
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
  
  The driver is a client driver to the core PMBus driver. Please see
  Documentation/hwmon/pmbus for details on PMBus client drivers.
  
  
  Usage Notes
  -----------
  
  This driver does not auto-detect devices. You will have to instantiate the
  devices explicitly. Please see Documentation/i2c/instantiating-devices for
  details.
  
  
  Platform data support
  ---------------------
  
  The driver supports standard PMBus driver platform data. Please see
  Documentation/hwmon/pmbus for details.
  
  
  Sysfs entries
  -------------
c576e30cd   Guenter Roeck   hwmon: (adm1275) ...
48
49
  The following attributes are supported. Limits are read-write, history reset
  attributes are write-only, all other attributes are read-only.
83f7649c5   Guenter Roeck   hwmon: (pmbus) Ad...
50
51
52
  
  in1_label		"vin1" or "vout1" depending on chip variant and
  			configuration.
5cf231a34   Guenter Roeck   hwmon: (pmbus/adm...
53
54
55
56
57
  in1_input		Measured voltage.
  in1_min			Minumum Voltage.
  in1_max			Maximum voltage.
  in1_min_alarm		Voltage low alarm.
  in1_max_alarm		Voltage high alarm.
c576e30cd   Guenter Roeck   hwmon: (adm1275) ...
58
59
  in1_highest		Historical maximum voltage.
  in1_reset_history	Write any value to reset history.
83f7649c5   Guenter Roeck   hwmon: (pmbus) Ad...
60
61
  
  curr1_label		"iout1"
5cf231a34   Guenter Roeck   hwmon: (pmbus/adm...
62
63
64
  curr1_input		Measured current.
  curr1_max		Maximum current.
  curr1_max_alarm		Current high alarm.
c5e676366   Guenter Roeck   hwmon: (pmbus/adm...
65
66
67
68
69
70
71
72
  curr1_lcrit		Critical minimum current. Depending on the chip
  			configuration, either curr1_lcrit or curr1_crit is
  			supported, but not both.
  curr1_lcrit_alarm	Critical current low alarm.
  curr1_crit		Critical maximum current. Depending on the chip
  			configuration, either curr1_lcrit or curr1_crit is
  			supported, but not both.
  curr1_crit_alarm	Critical current high alarm.
c576e30cd   Guenter Roeck   hwmon: (adm1275) ...
73
74
  curr1_highest		Historical maximum current.
  curr1_reset_history	Write any value to reset history.