| R.Marek@sh.cvut.cz | 7f15b66 | 2005-05-26 12:42:19 +0000 | [diff] [blame] | 1 | Kernel driver lm75 | 
|  | 2 | ================== | 
|  | 3 |  | 
|  | 4 | Supported 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/ | 
| Len Sorensen | 05e82fe | 2011-03-21 17:59:36 +0100 | [diff] [blame] | 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/ | 
| R.Marek@sh.cvut.cz | 7f15b66 | 2005-05-26 12:42:19 +0000 | [diff] [blame] | 15 | * Dallas Semiconductor DS75 | 
|  | 16 | Prefix: 'lm75' | 
|  | 17 | Addresses scanned: I2C 0x48 - 0x4f | 
|  | 18 | Datasheet: Publicly available at the Dallas Semiconductor website | 
|  | 19 | http://www.maxim-ic.com/ | 
|  | 20 | * Dallas Semiconductor DS1775 | 
|  | 21 | Prefix: 'lm75' | 
|  | 22 | Addresses scanned: I2C 0x48 - 0x4f | 
|  | 23 | Datasheet: Publicly available at the Dallas Semiconductor website | 
|  | 24 | http://www.maxim-ic.com/ | 
|  | 25 | * Maxim MAX6625, MAX6626 | 
|  | 26 | Prefix: 'lm75' | 
|  | 27 | Addresses scanned: I2C 0x48 - 0x4b | 
|  | 28 | Datasheet: Publicly available at the Maxim website | 
|  | 29 | http://www.maxim-ic.com/ | 
|  | 30 | * Microchip (TelCom) TCN75 | 
|  | 31 | Prefix: 'lm75' | 
|  | 32 | Addresses scanned: I2C 0x48 - 0x4f | 
|  | 33 | Datasheet: Publicly available at the Microchip website | 
|  | 34 | http://www.microchip.com/ | 
| Michael Hennerich | e96f9d8 | 2011-10-13 04:43:31 -0400 | [diff] [blame^] | 35 | * Analog Devices ADT75 | 
|  | 36 | Prefix: 'adt75' | 
|  | 37 | Addresses scanned: I2C 0x48 - 0x4f | 
|  | 38 | Datasheet: Publicly available at the Analog Devices website | 
|  | 39 | http://www.analog.com/adt75 | 
| R.Marek@sh.cvut.cz | 7f15b66 | 2005-05-26 12:42:19 +0000 | [diff] [blame] | 40 |  | 
|  | 41 | Author: Frodo Looijaard <frodol@dds.nl> | 
|  | 42 |  | 
|  | 43 | Description | 
|  | 44 | ----------- | 
|  | 45 |  | 
|  | 46 | The LM75 implements one temperature sensor. Limits can be set through the | 
|  | 47 | Overtemperature Shutdown register and Hysteresis register. Each value can be | 
|  | 48 | set and read to half-degree accuracy. | 
|  | 49 | An alarm is issued (usually to a connected LM78) when the temperature | 
|  | 50 | gets higher then the Overtemperature Shutdown value; it stays on until | 
|  | 51 | the temperature falls below the Hysteresis value. | 
|  | 52 | All temperatures are in degrees Celsius, and are guaranteed within a | 
|  | 53 | range of -55 to +125 degrees. | 
|  | 54 |  | 
|  | 55 | The LM75 only updates its values each 1.5 seconds; reading it more often | 
|  | 56 | will do no harm, but will return 'old' values. | 
|  | 57 |  | 
|  | 58 | The LM75 is usually used in combination with LM78-like chips, to measure | 
|  | 59 | the temperature of the processor(s). | 
|  | 60 |  | 
|  | 61 | The DS75, DS1775, MAX6625, and MAX6626 are supported as well. | 
|  | 62 | They are not distinguished from an LM75. While most of these chips | 
|  | 63 | have three additional bits of accuracy (12 vs. 9 for the LM75), | 
|  | 64 | the additional bits are not supported. Not only that, but these chips will | 
|  | 65 | not be detected if not in 9-bit precision mode (use the force parameter if | 
|  | 66 | needed). | 
|  | 67 |  | 
|  | 68 | The TCN75 is supported as well, and is not distinguished from an LM75. | 
|  | 69 |  | 
|  | 70 | The LM75 is essentially an industry standard; there may be other | 
|  | 71 | LM75 clones not listed here, with or without various enhancements, | 
|  | 72 | that are supported. | 
|  | 73 |  | 
|  | 74 | The LM77 is not supported, contrary to what we pretended for a long time. | 
|  | 75 | Both chips are simply not compatible, value encoding differs. |