| Guenter Roeck | 44f5a40 | 2010-06-28 14:29:03 -0700 | [diff] [blame] | 1 | Kernel driver pmbus | 
|  | 2 | ==================== | 
|  | 3 |  | 
|  | 4 | Supported chips: | 
|  | 5 | * Ericsson BMR45X series | 
|  | 6 | DC/DC Converter | 
|  | 7 | Prefixes: 'bmr450', 'bmr451', 'bmr453', 'bmr454' | 
|  | 8 | Addresses scanned: - | 
|  | 9 | Datasheet: | 
|  | 10 | http://archive.ericsson.net/service/internet/picov/get?DocNo=28701-EN/LZT146395 | 
| Guenter Roeck | e0455e3 | 2011-06-25 15:13:44 -0700 | [diff] [blame] | 11 | * ON Semiconductor ADP4000, NCP4200, NCP4208 | 
|  | 12 | Prefixes: 'adp4000', 'ncp4200', 'ncp4208' | 
|  | 13 | Addresses scanned: - | 
|  | 14 | Datasheets: | 
|  | 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 | 
| Guenter Roeck | bc365a7 | 2011-09-15 10:43:40 -0700 | [diff] [blame^] | 18 | * Lineage Power | 
|  | 19 | Prefixes: 'pdt003', 'pdt006', 'pdt012', 'udt020' | 
|  | 20 | Addresses scanned: - | 
|  | 21 | Datasheets: | 
|  | 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 | 
| Guenter Roeck | 44f5a40 | 2010-06-28 14:29:03 -0700 | [diff] [blame] | 26 | * Generic PMBus devices | 
|  | 27 | Prefix: 'pmbus' | 
|  | 28 | Addresses scanned: - | 
|  | 29 | Datasheet: n.a. | 
|  | 30 |  | 
|  | 31 | Author: Guenter Roeck <guenter.roeck@ericsson.com> | 
|  | 32 |  | 
|  | 33 |  | 
|  | 34 | Description | 
|  | 35 | ----------- | 
|  | 36 |  | 
|  | 37 | This driver supports hardware montoring for various PMBus compliant devices. | 
|  | 38 | It supports voltage, current, power, and temperature sensors as supported | 
|  | 39 | by the device. | 
|  | 40 |  | 
|  | 41 | Each monitored channel has its own high and low limits, plus a critical | 
|  | 42 | limit. | 
|  | 43 |  | 
|  | 44 | Fan support will be added in a later version of this driver. | 
|  | 45 |  | 
|  | 46 |  | 
|  | 47 | Usage Notes | 
|  | 48 | ----------- | 
|  | 49 |  | 
|  | 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. | 
|  | 54 |  | 
|  | 55 | Example: the following will load the driver for an LTC2978 at address 0x60 | 
|  | 56 | on I2C bus #1: | 
|  | 57 | $ modprobe pmbus | 
|  | 58 | $ echo ltc2978 0x60 > /sys/bus/i2c/devices/i2c-1/new_device | 
|  | 59 |  | 
|  | 60 |  | 
|  | 61 | Platform data support | 
|  | 62 | --------------------- | 
|  | 63 |  | 
|  | 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. | 
|  | 67 |  | 
|  | 68 | static struct pmbus_driver_info ds1200_info = { | 
|  | 69 | .pages = 1, | 
|  | 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, | 
|  | 89 | }; | 
|  | 90 |  | 
|  | 91 | static int ds1200_probe(struct i2c_client *client, | 
|  | 92 | const struct i2c_device_id *id) | 
|  | 93 | { | 
|  | 94 | return pmbus_do_probe(client, id, &ds1200_info); | 
|  | 95 | } | 
|  | 96 |  | 
|  | 97 | static int ds1200_remove(struct i2c_client *client) | 
|  | 98 | { | 
|  | 99 | return pmbus_do_remove(client); | 
|  | 100 | } | 
|  | 101 |  | 
|  | 102 | static const struct i2c_device_id ds1200_id[] = { | 
|  | 103 | {"ds1200", 0}, | 
|  | 104 | {} | 
|  | 105 | }; | 
|  | 106 |  | 
|  | 107 | MODULE_DEVICE_TABLE(i2c, ds1200_id); | 
|  | 108 |  | 
|  | 109 | /* This is the driver that will be inserted */ | 
|  | 110 | static struct i2c_driver ds1200_driver = { | 
|  | 111 | .driver = { | 
|  | 112 | .name = "ds1200", | 
|  | 113 | }, | 
|  | 114 | .probe = ds1200_probe, | 
|  | 115 | .remove = ds1200_remove, | 
|  | 116 | .id_table = ds1200_id, | 
|  | 117 | }; | 
|  | 118 |  | 
|  | 119 | static int __init ds1200_init(void) | 
|  | 120 | { | 
|  | 121 | return i2c_add_driver(&ds1200_driver); | 
|  | 122 | } | 
|  | 123 |  | 
|  | 124 | static void __exit ds1200_exit(void) | 
|  | 125 | { | 
|  | 126 | i2c_del_driver(&ds1200_driver); | 
|  | 127 | } | 
|  | 128 |  | 
|  | 129 |  | 
|  | 130 | Sysfs entries | 
|  | 131 | ------------- | 
|  | 132 |  | 
|  | 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 | 
|  | 137 | a given sysfs entry. | 
|  | 138 |  | 
|  | 139 | The following attributes are supported. Limits are read-write; all other | 
|  | 140 | attributes are read-only. | 
|  | 141 |  | 
|  | 142 | inX_input		Measured voltage. From READ_VIN or READ_VOUT register. | 
| Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 143 | inX_min			Minimum Voltage. | 
| Guenter Roeck | 44f5a40 | 2010-06-28 14:29:03 -0700 | [diff] [blame] | 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. | 
| Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 147 | inX_lcrit		Critical minimum Voltage. | 
| Guenter Roeck | 44f5a40 | 2010-06-28 14:29:03 -0700 | [diff] [blame] | 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" | 
|  | 158 |  | 
|  | 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. | 
| Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 162 | currX_lcrit		Critical minimum output current. | 
| Guenter Roeck | 44f5a40 | 2010-06-28 14:29:03 -0700 | [diff] [blame] | 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. | 
| Guenter Roeck | 180b3d8 | 2011-04-18 09:48:58 -0700 | [diff] [blame] | 168 | currX_max_alarm		Current high alarm. | 
|  | 169 | From IIN_OC_WARN_LIMIT or IOUT_OC_WARN_LIMIT status. | 
| Guenter Roeck | 44f5a40 | 2010-06-28 14:29:03 -0700 | [diff] [blame] | 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. | 
| Guenter Roeck | 180b3d8 | 2011-04-18 09:48:58 -0700 | [diff] [blame] | 174 | currX_label		"iin" or "ioutY" | 
| Guenter Roeck | 44f5a40 | 2010-06-28 14:29:03 -0700 | [diff] [blame] | 175 |  | 
|  | 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" | 
|  | 187 |  | 
| Guenter Roeck | 180b3d8 | 2011-04-18 09:48:58 -0700 | [diff] [blame] | 188 | tempX_input		Measured temperature. | 
| Guenter Roeck | 44f5a40 | 2010-06-28 14:29:03 -0700 | [diff] [blame] | 189 | From READ_TEMPERATURE_X register. | 
| Guenter Roeck | 180b3d8 | 2011-04-18 09:48:58 -0700 | [diff] [blame] | 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. | 
| Guenter Roeck | 44f5a40 | 2010-06-28 14:29:03 -0700 | [diff] [blame] | 193 | From UT_FAULT_LIMIT register. | 
| Guenter Roeck | 180b3d8 | 2011-04-18 09:48:58 -0700 | [diff] [blame] | 194 | tempX_crit		Critical high temperature. | 
| Guenter Roeck | 44f5a40 | 2010-06-28 14:29:03 -0700 | [diff] [blame] | 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. |