mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-22 20:23:57 +08:00
68f0c8c923
Add support for Texas Instruments TMP122/124 which are nearly identical to their TMP121/123 except that they also support programmable temperature thresholds. Signed-off-by: Florian Fainelli <f.fainelli@gmail.com> Signed-off-by: Guenter Roeck <linux@roeck-us.net>
23 lines
369 B
Plaintext
23 lines
369 B
Plaintext
* LM70/TMP121/LM71/LM74 thermometer.
|
|
|
|
Required properties:
|
|
- compatible: one of
|
|
"ti,lm70"
|
|
"ti,tmp121"
|
|
"ti,tmp122"
|
|
"ti,lm71"
|
|
"ti,lm74"
|
|
|
|
See Documentation/devicetree/bindings/spi/spi-bus.txt for more required and
|
|
optional properties.
|
|
|
|
Example:
|
|
|
|
spi_master {
|
|
temperature-sensor@0 {
|
|
compatible = "ti,lm70";
|
|
reg = <0>;
|
|
spi-max-frequency = <1000000>;
|
|
};
|
|
};
|