]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/blame - Documentation/hwmon/lm75
Merge tag 'driver-core-4.21-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git...
[mirror_ubuntu-eoan-kernel.git] / Documentation / hwmon / lm75
CommitLineData
7f15b664
RM
1Kernel driver lm75
2==================
3
4Supported chips:
5 * National Semiconductor LM75
6 Prefix: 'lm75'
7 Addresses scanned: I2C 0x48 - 0x4f
8 Datasheet: Publicly available at the National Semiconductor website
9 http://www.national.com/
05e82fe4
LS
10 * National Semiconductor LM75A
11 Prefix: 'lm75a'
12 Addresses scanned: I2C 0x48 - 0x4f
13 Datasheet: Publicly available at the National Semiconductor website
14 http://www.national.com/
3fbc81e3
JD
15 * Dallas Semiconductor (now Maxim) DS75, DS1775, DS7505
16 Prefixes: 'ds75', 'ds1775', 'ds7505'
426343ef 17 Addresses scanned: none
3fbc81e3
JD
18 Datasheet: Publicly available at the Maxim website
19 http://www.maximintegrated.com/
a54ca77a
KY
20 * Maxim MAX6625, MAX6626, MAX31725, MAX31726
21 Prefixes: 'max6625', 'max6626', 'max31725', 'max31726'
426343ef 22 Addresses scanned: none
7f15b664
RM
23 Datasheet: Publicly available at the Maxim website
24 http://www.maxim-ic.com/
25 * Microchip (TelCom) TCN75
25eba81b 26 Prefix: 'tcn75'
426343ef
JD
27 Addresses scanned: none
28 Datasheet: Publicly available at the Microchip website
29 http://www.microchip.com/
30 * Microchip MCP9800, MCP9801, MCP9802, MCP9803
31 Prefix: 'mcp980x'
32 Addresses scanned: none
7f15b664
RM
33 Datasheet: Publicly available at the Microchip website
34 http://www.microchip.com/
e96f9d89
MH
35 * Analog Devices ADT75
36 Prefix: 'adt75'
426343ef 37 Addresses scanned: none
e96f9d89
MH
38 Datasheet: Publicly available at the Analog Devices website
39 http://www.analog.com/adt75
426343ef
JD
40 * ST Microelectronics STDS75
41 Prefix: 'stds75'
42 Addresses scanned: none
43 Datasheet: Publicly available at the ST website
44 http://www.st.com/internet/analog/product/121769.jsp
2e9a41bb
JT
45 * ST Microelectronics STLM75
46 Prefix: 'stlm75'
47 Addresses scanned: none
48 Datasheet: Publicly available at the ST website
49 https://www.st.com/resource/en/datasheet/stlm75.pdf
9c32e815
BG
50 * Texas Instruments TMP100, TMP101, TMP105, TMP112, TMP75, TMP75C, TMP175, TMP275
51 Prefixes: 'tmp100', 'tmp101', 'tmp105', 'tmp112', 'tmp175', 'tmp75', 'tmp75c', 'tmp275'
426343ef
JD
52 Addresses scanned: none
53 Datasheet: Publicly available at the Texas Instruments website
54 http://www.ti.com/product/tmp100
55 http://www.ti.com/product/tmp101
56 http://www.ti.com/product/tmp105
c83959f8 57 http://www.ti.com/product/tmp112
426343ef 58 http://www.ti.com/product/tmp75
9c32e815 59 http://www.ti.com/product/tmp75c
426343ef
JD
60 http://www.ti.com/product/tmp175
61 http://www.ti.com/product/tmp275
799fc602
MT
62 * NXP LM75B
63 Prefix: 'lm75b'
64 Addresses scanned: none
65 Datasheet: Publicly available at the NXP website
66 http://www.nxp.com/documents/data_sheet/LM75B.pdf
7f15b664
RM
67
68Author: Frodo Looijaard <frodol@dds.nl>
69
70Description
71-----------
72
73The LM75 implements one temperature sensor. Limits can be set through the
74Overtemperature Shutdown register and Hysteresis register. Each value can be
75set and read to half-degree accuracy.
76An alarm is issued (usually to a connected LM78) when the temperature
77gets higher then the Overtemperature Shutdown value; it stays on until
78the temperature falls below the Hysteresis value.
79All temperatures are in degrees Celsius, and are guaranteed within a
80range of -55 to +125 degrees.
81
0cd2c72d
JD
82The driver caches the values for a period varying between 1 second for the
83slowest chips and 125 ms for the fastest chips; reading it more often
7f15b664
RM
84will do no harm, but will return 'old' values.
85
426343ef
JD
86The original LM75 was typically used in combination with LM78-like chips
87on PC motherboards, to measure the temperature of the processor(s). Clones
88are now used in various embedded designs.
7f15b664
RM
89
90The LM75 is essentially an industry standard; there may be other
91LM75 clones not listed here, with or without various enhancements,
426343ef
JD
92that are supported. The clones are not detected by the driver, unless
93they reproduce the exact register tricks of the original LM75, and must
a54ca77a 94therefore be instantiated explicitly. Higher resolution up to 16-bit
0cd2c72d 95is supported by this driver, other specific enhancements are not.
7f15b664
RM
96
97The LM77 is not supported, contrary to what we pretended for a long time.
98Both chips are simply not compatible, value encoding differs.