Blame view

Documentation/hwmon/ltc2978 3.44 KB
c3ff9a674   Guenter Roeck   hwmon: (pmbus/ltc...
1
2
3
4
5
6
7
8
  Kernel driver ltc2978
  =====================
  
  Supported chips:
    * Linear Technology LTC2978
      Prefix: 'ltc2978'
      Addresses scanned: -
      Datasheet: http://cds.linear.com/docs/Datasheet/2978fa.pdf
ddfb41ca2   Guenter Roeck   hwmon: (pmbus/ltc...
9
10
11
12
    * Linear Technology LTC3880
      Prefix: 'ltc3880'
      Addresses scanned: -
      Datasheet: http://cds.linear.com/docs/Datasheet/3880f.pdf
c3ff9a674   Guenter Roeck   hwmon: (pmbus/ltc...
13
14
15
16
17
18
19
20
  
  Author: Guenter Roeck <guenter.roeck@ericsson.com>
  
  
  Description
  -----------
  
  The LTC2978 is an octal power supply monitor, supervisor, sequencer and
ddfb41ca2   Guenter Roeck   hwmon: (pmbus/ltc...
21
22
  margin controller. The LTC3880 is a dual, PolyPhase DC/DC synchronous
  step-down switching regulator controller.
c3ff9a674   Guenter Roeck   hwmon: (pmbus/ltc...
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
  
  
  Usage Notes
  -----------
  
  This driver does not probe for PMBus devices. You will have to instantiate
  devices explicitly.
  
  Example: the following commands will load the driver for an LTC2978 at address
  0x60 on I2C bus #1:
  
  # modprobe ltc2978
  # echo ltc2978 0x60 > /sys/bus/i2c/devices/i2c-1/new_device
  
  
  Sysfs attributes
  ----------------
  
  in1_label		"vin"
  in1_input		Measured input voltage.
  in1_min			Minimum input voltage.
  in1_max			Maximum input voltage.
  in1_lcrit		Critical minimum input voltage.
  in1_crit		Critical maximum input voltage.
  in1_min_alarm		Input voltage low alarm.
  in1_max_alarm		Input voltage high alarm.
  in1_lcrit_alarm		Input voltage critical low alarm.
  in1_crit_alarm		Input voltage critical high alarm.
ddfb41ca2   Guenter Roeck   hwmon: (pmbus/ltc...
51
  in1_lowest		Lowest input voltage. LTC2978 only.
c3ff9a674   Guenter Roeck   hwmon: (pmbus/ltc...
52
53
54
  in1_highest		Highest input voltage.
  in1_reset_history	Reset history. Writing into this attribute will reset
  			history for all attributes.
ddfb41ca2   Guenter Roeck   hwmon: (pmbus/ltc...
55
  in[2-9]_label		"vout[1-8]". Channels 3 to 9 on LTC2978 only.
c3ff9a674   Guenter Roeck   hwmon: (pmbus/ltc...
56
57
58
59
60
61
62
63
64
  in[2-9]_input		Measured output voltage.
  in[2-9]_min		Minimum output voltage.
  in[2-9]_max		Maximum output voltage.
  in[2-9]_lcrit		Critical minimum output voltage.
  in[2-9]_crit		Critical maximum output voltage.
  in[2-9]_min_alarm	Output voltage low alarm.
  in[2-9]_max_alarm	Output voltage high alarm.
  in[2-9]_lcrit_alarm	Output voltage critical low alarm.
  in[2-9]_crit_alarm	Output voltage critical high alarm.
ddfb41ca2   Guenter Roeck   hwmon: (pmbus/ltc...
65
  in[2-9]_lowest		Lowest output voltage. LTC2978 only.
c3ff9a674   Guenter Roeck   hwmon: (pmbus/ltc...
66
67
68
  in[2-9]_highest		Lowest output voltage.
  in[2-9]_reset_history	Reset history. Writing into this attribute will reset
  			history for all attributes.
ddfb41ca2   Guenter Roeck   hwmon: (pmbus/ltc...
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
  temp[1-3]_input		Measured temperature.
  			On LTC2978, only one temperature measurement is
  			supported and reflects the internal temperature.
  			On LTC3880, temp1 and temp2 report external
  			temperatures, and temp3 reports the internal
  			temperature.
  temp[1-3]_min		Mimimum temperature.
  temp[1-3]_max		Maximum temperature.
  temp[1-3]_lcrit		Critical low temperature.
  temp[1-3]_crit		Critical high temperature.
  temp[1-3]_min_alarm	Chip temperature low alarm.
  temp[1-3]_max_alarm	Chip temperature high alarm.
  temp[1-3]_lcrit_alarm	Chip temperature critical low alarm.
  temp[1-3]_crit_alarm	Chip temperature critical high alarm.
  temp[1-3]_lowest	Lowest measured temperature. LTC2978 only.
  temp[1-3]_highest	Highest measured temperature.
  temp[1-3]_reset_history	Reset history. Writing into this attribute will reset
c3ff9a674   Guenter Roeck   hwmon: (pmbus/ltc...
86
  			history for all attributes.
ddfb41ca2   Guenter Roeck   hwmon: (pmbus/ltc...
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
  
  power[1-2]_label	"pout[1-2]". LTC3880 only.
  power[1-2]_input	Measured power.
  
  curr1_label		"iin". LTC3880 only.
  curr1_input		Measured input current.
  curr1_max		Maximum input current.
  curr1_max_alarm		Input current high alarm.
  
  curr[2-3]_label		"iout[1-2]". LTC3880 only.
  curr[2-3]_input		Measured input current.
  curr[2-3]_max		Maximum input current.
  curr[2-3]_crit		Critical input current.
  curr[2-3]_max_alarm	Input current high alarm.
  curr[2-3]_crit_alarm	Input current critical high alarm.