49 lines · plain
1Kernel driver lm952452=====================3 4Supported chips:5 6 * TI LM952357 8 Addresses scanned: I2C 0x18, 0x29, 0x4c9 10 Datasheet: Publicly available at the TI website11 12 https://www.ti.com/lit/ds/symlink/lm95235.pdf13 14 * TI / National Semiconductor LM9524515 16 Addresses scanned: I2C 0x18, 0x19, 0x29, 0x4c, 0x4d17 18 Datasheet: Publicly available at the TI website19 20 https://www.ti.com/lit/ds/symlink/lm95245.pdf21 22Author: Alexander Stein <alexander.stein@systec-electronic.com>23 24Description25-----------26 27LM95235 and LM95245 are 11-bit digital temperature sensors with a 2-wire System28Management Bus (SMBus) interface and TruTherm technology that can monitor29the temperature of a remote diode as well as its own temperature.30The chips can be used to very accurately monitor the temperature of31external devices such as microprocessors.32 33All temperature values are given in millidegrees Celsius. Local temperature34is given within a range of -127 to +127.875 degrees. Remote temperatures are35given within a range of -127 to +255 degrees. Resolution depends on36temperature input and range.37 38Each sensor has its own critical limit. Additionally, there is a relative39hysteresis value common to both critical limits. To make life easier to40user-space applications, two absolute values are exported, one for each41channel, but these values are of course linked. Only the local hysteresis42can be set from user-space, and the same delta applies to the remote43hysteresis.44 45The lm95245 driver can change its update interval to a fixed set of values.46It will round up to the next selectable interval. See the datasheet for exact47values. Reading sensor values more often will do no harm, but will return48'old' values.49