erofs: reduntant assignment in __erofs_get_meta_page()
[linux/fpc-iii.git] / Documentation / hwmon / lm70.rst
blobf259bc1fcd91849fb8138a87d9a5d0dcf6b03610
1 Kernel driver lm70
2 ==================
4 Supported chips:
6   * National Semiconductor LM70
8     Datasheet: http://www.national.com/pf/LM/LM70.html
10   * Texas Instruments TMP121/TMP123
12     Information: http://focus.ti.com/docs/prod/folders/print/tmp121.html
14   * Texas Instruments TMP122/TMP124
16     Information: http://www.ti.com/product/tmp122
18   * National Semiconductor LM71
20     Datasheet: http://www.ti.com/product/LM71
22   * National Semiconductor LM74
24     Datasheet: http://www.ti.com/product/LM74
27 Author:
28         Kaiwan N Billimoria <kaiwan@designergraphix.com>
30 Description
31 -----------
33 This driver implements support for the National Semiconductor LM70
34 temperature sensor.
36 The LM70 temperature sensor chip supports a single temperature sensor.
37 It communicates with a host processor (or microcontroller) via an
38 SPI/Microwire Bus interface.
40 Communication with the LM70 is simple: when the temperature is to be sensed,
41 the driver accesses the LM70 using SPI communication: 16 SCLK cycles
42 comprise the MOSI/MISO loop. At the end of the transfer, the 11-bit 2's
43 complement digital temperature (sent via the SIO line), is available in the
44 driver for interpretation. This driver makes use of the kernel's in-core
45 SPI support.
47 As a real (in-tree) example of this "SPI protocol driver" interfacing
48 with a "SPI master controller driver", see drivers/spi/spi_lm70llp.c
49 and its associated documentation.
51 The LM74 and TMP121/TMP122/TMP123/TMP124 are very similar; main difference is
52 13-bit temperature data (0.0625 degrees celsius resolution).
54 The TMP122/TMP124 also feature configurable temperature thresholds.
56 The LM71 is also very similar; main difference is 14-bit temperature
57 data (0.03125 degrees celsius resolution).
59 Thanks to
60 ---------
61 Jean Delvare <jdelvare@suse.de> for mentoring the hwmon-side driver
62 development.