blob: d3bca065cb7ecb988c74c8c975f3fe6bde8e9116 [file] [log] [blame]
Guenter Roeck200855e2011-07-29 22:21:53 -07001Kernel driver zl6100
2====================
3
4Supported chips:
5 * Intersil / Zilker Labs ZL2004
6 Prefix: 'zl2004'
7 Addresses scanned: -
8 Datasheet: http://www.intersil.com/data/fn/fn6847.pdf
Guenter Roeckbc581e62011-10-01 16:50:36 -07009 * Intersil / Zilker Labs ZL2005
10 Prefix: 'zl2005'
11 Addresses scanned: -
12 Datasheet: http://www.intersil.com/data/fn/fn6848.pdf
Guenter Roeck200855e2011-07-29 22:21:53 -070013 * Intersil / Zilker Labs ZL2006
14 Prefix: 'zl2006'
15 Addresses scanned: -
16 Datasheet: http://www.intersil.com/data/fn/fn6850.pdf
17 * Intersil / Zilker Labs ZL2008
18 Prefix: 'zl2008'
19 Addresses scanned: -
20 Datasheet: http://www.intersil.com/data/fn/fn6859.pdf
21 * Intersil / Zilker Labs ZL2105
22 Prefix: 'zl2105'
23 Addresses scanned: -
24 Datasheet: http://www.intersil.com/data/fn/fn6851.pdf
25 * Intersil / Zilker Labs ZL2106
26 Prefix: 'zl2106'
27 Addresses scanned: -
28 Datasheet: http://www.intersil.com/data/fn/fn6852.pdf
29 * Intersil / Zilker Labs ZL6100
30 Prefix: 'zl6100'
31 Addresses scanned: -
32 Datasheet: http://www.intersil.com/data/fn/fn6876.pdf
33 * Intersil / Zilker Labs ZL6105
34 Prefix: 'zl6105'
35 Addresses scanned: -
36 Datasheet: http://www.intersil.com/data/fn/fn6906.pdf
37
38Author: Guenter Roeck <guenter.roeck@ericsson.com>
39
40
41Description
42-----------
43
44This driver supports hardware montoring for Intersil / Zilker Labs ZL6100 and
45compatible digital DC-DC controllers.
46
47The driver is a client driver to the core PMBus driver. Please see
48Documentation/hwmon/pmbus and Documentation.hwmon/pmbus-core for details
49on PMBus client drivers.
50
51
52Usage Notes
53-----------
54
55This driver does not auto-detect devices. You will have to instantiate the
56devices explicitly. Please see Documentation/i2c/instantiating-devices for
57details.
58
59WARNING: Do not access chip registers using the i2cdump command, and do not use
60any of the i2ctools commands on a command register used to save and restore
61configuration data (0x11, 0x12, 0x15, 0x16, and 0xf4). The chips supported by
62this driver interpret any access to those command registers (including read
63commands) as request to execute the command in question. Unless write accesses
64to those registers are protected, this may result in power loss, board resets,
65and/or Flash corruption. Worst case, your board may turn into a brick.
66
67
68Platform data support
69---------------------
70
71The driver supports standard PMBus driver platform data.
72
73
74Module parameters
75-----------------
76
77delay
78-----
79
80Some Intersil/Zilker Labs DC-DC controllers require a minimum interval between
81I2C bus accesses. According to Intersil, the minimum interval is 2 ms, though
821 ms appears to be sufficient and has not caused any problems in testing.
83The problem is known to affect ZL6100, ZL2105, and ZL2008. It is known not to
84affect ZL2004 and ZL6105. The driver automatically sets the interval to 1 ms
85except for ZL2004 and ZL6105. To enable manual override, the driver provides a
86writeable module parameter, 'delay', which can be used to set the interval to
87a value between 0 and 65,535 microseconds.
88
89
90Sysfs entries
91-------------
92
93The following attributes are supported. Limits are read-write; all other
94attributes are read-only.
95
96in1_label "vin"
97in1_input Measured input voltage.
98in1_min Minimum input voltage.
99in1_max Maximum input voltage.
100in1_lcrit Critical minumum input voltage.
101in1_crit Critical maximum input voltage.
102in1_min_alarm Input voltage low alarm.
103in1_max_alarm Input voltage high alarm.
104in1_lcrit_alarm Input voltage critical low alarm.
105in1_crit_alarm Input voltage critical high alarm.
106
107in2_label "vout1"
108in2_input Measured output voltage.
109in2_lcrit Critical minumum output Voltage.
110in2_crit Critical maximum output voltage.
111in2_lcrit_alarm Critical output voltage critical low alarm.
112in2_crit_alarm Critical output voltage critical high alarm.
113
114curr1_label "iout1"
115curr1_input Measured output current.
116curr1_lcrit Critical minimum output current.
117curr1_crit Critical maximum output current.
118curr1_lcrit_alarm Output current critical low alarm.
119curr1_crit_alarm Output current critical high alarm.
120
121temp[12]_input Measured temperature.
122temp[12]_min Minimum temperature.
123temp[12]_max Maximum temperature.
124temp[12]_lcrit Critical low temperature.
125temp[12]_crit Critical high temperature.
126temp[12]_min_alarm Chip temperature low alarm.
127temp[12]_max_alarm Chip temperature high alarm.
128temp[12]_lcrit_alarm Chip temperature critical low alarm.
129temp[12]_crit_alarm Chip temperature critical high alarm.