5 * Ericsson BMR45X series
7 Prefixes: 'bmr450', 'bmr451', 'bmr453', 'bmr454'
10 http://archive.ericsson.net/service/internet/picov/get?DocNo=28701-EN/LZT146395
11 * ON Semiconductor ADP4000, NCP4200, NCP4208
12 Prefixes: 'adp4000', 'ncp4200', 'ncp4208'
15 http://www.onsemi.com/pub_link/Collateral/ADP4000-D.PDF
16 http://www.onsemi.com/pub_link/Collateral/NCP4200-D.PDF
17 http://www.onsemi.com/pub_link/Collateral/JUNE%202009-%20REV.%200.PDF
19 Prefixes: 'pdt003', 'pdt006', 'pdt012', 'udt020'
22 http://www.lineagepower.com/oem/pdf/PDT003A0X.pdf
23 http://www.lineagepower.com/oem/pdf/PDT006A0X.pdf
24 http://www.lineagepower.com/oem/pdf/PDT012A0X.pdf
25 http://www.lineagepower.com/oem/pdf/UDT020A0X.pdf
26 * Generic PMBus devices
31 Author: Guenter Roeck <guenter.roeck@ericsson.com>
37 This driver supports hardware montoring for various PMBus compliant devices.
38 It supports voltage, current, power, and temperature sensors as supported
41 Each monitored channel has its own high and low limits, plus a critical
44 Fan support will be added in a later version of this driver.
50 This driver does not probe for PMBus devices, since there is no register
51 which can be safely used to identify the chip (The MFG_ID register is not
52 supported by all chips), and since there is no well defined address range for
53 PMBus devices. You will have to instantiate the devices explicitly.
55 Example: the following will load the driver for an LTC2978 at address 0x60
58 $ echo ltc2978 0x60 > /sys/bus/i2c/devices/i2c-1/new_device
64 Support for additional PMBus chips can be added by defining chip parameters in
65 a new chip specific driver file. For example, (untested) code to add support for
66 Emerson DS1200 power modules might look as follows.
68 static struct pmbus_driver_info ds1200_info = {
70 /* Note: All other sensors are in linear mode */
71 .direct[PSC_VOLTAGE_OUT] = true,
72 .direct[PSC_TEMPERATURE] = true,
73 .direct[PSC_CURRENT_OUT] = true,
74 .m[PSC_VOLTAGE_IN] = 1,
75 .b[PSC_VOLTAGE_IN] = 0,
76 .R[PSC_VOLTAGE_IN] = 3,
77 .m[PSC_VOLTAGE_OUT] = 1,
78 .b[PSC_VOLTAGE_OUT] = 0,
79 .R[PSC_VOLTAGE_OUT] = 3,
80 .m[PSC_TEMPERATURE] = 1,
81 .b[PSC_TEMPERATURE] = 0,
82 .R[PSC_TEMPERATURE] = 3,
83 .func[0] = PMBUS_HAVE_VIN | PMBUS_HAVE_IIN | PMBUS_HAVE_STATUS_INPUT
84 | PMBUS_HAVE_VOUT | PMBUS_HAVE_STATUS_VOUT
85 | PMBUS_HAVE_IOUT | PMBUS_HAVE_STATUS_IOUT
86 | PMBUS_HAVE_PIN | PMBUS_HAVE_POUT
87 | PMBUS_HAVE_TEMP | PMBUS_HAVE_STATUS_TEMP
88 | PMBUS_HAVE_FAN12 | PMBUS_HAVE_STATUS_FAN12,
91 static int ds1200_probe(struct i2c_client *client,
92 const struct i2c_device_id *id)
94 return pmbus_do_probe(client, id, &ds1200_info);
97 static int ds1200_remove(struct i2c_client *client)
99 return pmbus_do_remove(client);
102 static const struct i2c_device_id ds1200_id[] = {
107 MODULE_DEVICE_TABLE(i2c, ds1200_id);
109 /* This is the driver that will be inserted */
110 static struct i2c_driver ds1200_driver = {
114 .probe = ds1200_probe,
115 .remove = ds1200_remove,
116 .id_table = ds1200_id,
119 static int __init ds1200_init(void)
121 return i2c_add_driver(&ds1200_driver);
124 static void __exit ds1200_exit(void)
126 i2c_del_driver(&ds1200_driver);
133 When probing the chip, the driver identifies which PMBus registers are
134 supported, and determines available sensors from this information.
135 Attribute files only exist if respective sensors are suported by the chip.
136 Labels are provided to inform the user about the sensor associated with
139 The following attributes are supported. Limits are read-write; all other
140 attributes are read-only.
142 inX_input Measured voltage. From READ_VIN or READ_VOUT register.
143 inX_min Minimum Voltage.
144 From VIN_UV_WARN_LIMIT or VOUT_UV_WARN_LIMIT register.
145 inX_max Maximum voltage.
146 From VIN_OV_WARN_LIMIT or VOUT_OV_WARN_LIMIT register.
147 inX_lcrit Critical minimum Voltage.
148 From VIN_UV_FAULT_LIMIT or VOUT_UV_FAULT_LIMIT register.
149 inX_crit Critical maximum voltage.
150 From VIN_OV_FAULT_LIMIT or VOUT_OV_FAULT_LIMIT register.
151 inX_min_alarm Voltage low alarm. From VOLTAGE_UV_WARNING status.
152 inX_max_alarm Voltage high alarm. From VOLTAGE_OV_WARNING status.
153 inX_lcrit_alarm Voltage critical low alarm.
154 From VOLTAGE_UV_FAULT status.
155 inX_crit_alarm Voltage critical high alarm.
156 From VOLTAGE_OV_FAULT status.
157 inX_label "vin", "vcap", or "voutY"
159 currX_input Measured current. From READ_IIN or READ_IOUT register.
160 currX_max Maximum current.
161 From IIN_OC_WARN_LIMIT or IOUT_OC_WARN_LIMIT register.
162 currX_lcrit Critical minimum output current.
163 From IOUT_UC_FAULT_LIMIT register.
164 currX_crit Critical maximum current.
165 From IIN_OC_FAULT_LIMIT or IOUT_OC_FAULT_LIMIT register.
166 currX_alarm Current high alarm.
167 From IIN_OC_WARNING or IOUT_OC_WARNING status.
168 currX_max_alarm Current high alarm.
169 From IIN_OC_WARN_LIMIT or IOUT_OC_WARN_LIMIT status.
170 currX_lcrit_alarm Output current critical low alarm.
171 From IOUT_UC_FAULT status.
172 currX_crit_alarm Current critical high alarm.
173 From IIN_OC_FAULT or IOUT_OC_FAULT status.
174 currX_label "iin" or "ioutY"
176 powerX_input Measured power. From READ_PIN or READ_POUT register.
177 powerX_cap Output power cap. From POUT_MAX register.
178 powerX_max Power limit. From PIN_OP_WARN_LIMIT or
179 POUT_OP_WARN_LIMIT register.
180 powerX_crit Critical output power limit.
181 From POUT_OP_FAULT_LIMIT register.
182 powerX_alarm Power high alarm.
183 From PIN_OP_WARNING or POUT_OP_WARNING status.
184 powerX_crit_alarm Output power critical high alarm.
185 From POUT_OP_FAULT status.
186 powerX_label "pin" or "poutY"
188 tempX_input Measured temperature.
189 From READ_TEMPERATURE_X register.
190 tempX_min Mimimum temperature. From UT_WARN_LIMIT register.
191 tempX_max Maximum temperature. From OT_WARN_LIMIT register.
192 tempX_lcrit Critical low temperature.
193 From UT_FAULT_LIMIT register.
194 tempX_crit Critical high temperature.
195 From OT_FAULT_LIMIT register.
196 tempX_min_alarm Chip temperature low alarm. Set by comparing
197 READ_TEMPERATURE_X with UT_WARN_LIMIT if
198 TEMP_UT_WARNING status is set.
199 tempX_max_alarm Chip temperature high alarm. Set by comparing
200 READ_TEMPERATURE_X with OT_WARN_LIMIT if
201 TEMP_OT_WARNING status is set.
202 tempX_lcrit_alarm Chip temperature critical low alarm. Set by comparing
203 READ_TEMPERATURE_X with UT_FAULT_LIMIT if
204 TEMP_UT_FAULT status is set.
205 tempX_crit_alarm Chip temperature critical high alarm. Set by comparing
206 READ_TEMPERATURE_X with OT_FAULT_LIMIT if
207 TEMP_OT_FAULT status is set.