aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/devicetree
diff options
context:
space:
mode:
authorEduardo Valentin <eduardo.valentin@ti.com>2013-05-15 11:46:00 -0400
committerZhang Rui <rui.zhang@intel.com>2013-05-27 22:40:37 -0400
commiteb982001dbd8546f273f444868a1031cc78b4250 (patch)
tree08547bb02ed69dec61a69511b66e1ee6ac8e49d1 /Documentation/devicetree
parentc240a539df4e2d50f86e2f31813ff6b7334cd493 (diff)
thermal: introduce TI SoC thermal driver
This patch moves the ti-soc-thermal driver out of the staging tree to the thermal tree. Cc: Grant Likely <grant.likely@linaro.org> Cc: Rob Herring <rob.herring@calxeda.com> Cc: Rob Landley <rob@landley.net> Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Cc: Zhang Rui <rui.zhang@intel.com> Cc: Eduardo Valentin <eduardo.valentin@ti.com> Cc: J Keerthy <j-keerthy@ti.com> Cc: Radhesh Fadnis <radhesh.fadnis@ti.com> Cc: Cyril Roelandt <tipecaml@gmail.com> Cc: devicetree-discuss@lists.ozlabs.org Cc: linux-doc@vger.kernel.org Cc: linux-kernel@vger.kernel.org Cc: devel@driverdev.osuosl.org Cc: linux-pm@vger.kernel.org Signed-off-by: Eduardo Valentin <eduardo.valentin@ti.com> Signed-off-by: Zhang Rui <rui.zhang@intel.com>
Diffstat (limited to 'Documentation/devicetree')
-rw-r--r--Documentation/devicetree/bindings/thermal/ti_soc_thermal.txt60
1 files changed, 60 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/thermal/ti_soc_thermal.txt b/Documentation/devicetree/bindings/thermal/ti_soc_thermal.txt
new file mode 100644
index 000000000000..a4a33d1a0746
--- /dev/null
+++ b/Documentation/devicetree/bindings/thermal/ti_soc_thermal.txt
@@ -0,0 +1,60 @@
1* Texas Instrument OMAP SCM bandgap bindings
2
3In the System Control Module, OMAP supplies a voltage reference
4and a temperature sensor feature that are gathered in the band
5gap voltage and temperature sensor (VBGAPTS) module. The band
6gap provides current and voltage reference for its internal
7circuits and other analog IP blocks. The analog-to-digital
8converter (ADC) produces an output value that is proportional
9to the silicon temperature.
10
11Required properties:
12- compatible : Should be:
13 - "ti,omap4430-bandgap" : for OMAP4430 bandgap
14 - "ti,omap4460-bandgap" : for OMAP4460 bandgap
15 - "ti,omap4470-bandgap" : for OMAP4470 bandgap
16 - "ti,omap5430-bandgap" : for OMAP5430 bandgap
17- interrupts : this entry should indicate which interrupt line
18the talert signal is routed to;
19Specific:
20- ti,tshut-gpio : this entry should be used to inform which GPIO
21line the tshut signal is routed to;
22- regs : this entry must also be specified and it is specific
23to each bandgap version, because the mapping may change from
24soc to soc, apart of depending on available features.
25
26Example:
27OMAP4430:
28bandgap {
29 reg = <0x4a002260 0x4 0x4a00232C 0x4>;
30 compatible = "ti,omap4430-bandgap";
31};
32
33OMAP4460:
34bandgap {
35 reg = <0x4a002260 0x4
36 0x4a00232C 0x4
37 0x4a002378 0x18>;
38 compatible = "ti,omap4460-bandgap";
39 interrupts = <0 126 4>; /* talert */
40 ti,tshut-gpio = <86>;
41};
42
43OMAP4470:
44bandgap {
45 reg = <0x4a002260 0x4
46 0x4a00232C 0x4
47 0x4a002378 0x18>;
48 compatible = "ti,omap4470-bandgap";
49 interrupts = <0 126 4>; /* talert */
50 ti,tshut-gpio = <86>;
51};
52
53OMAP5430:
54bandgap {
55 reg = <0x4a0021e0 0xc
56 0x4a00232c 0xc
57 0x4a002380 0x2c
58 0x4a0023C0 0x3c>;
59 compatible = "ti,omap5430-bandgap";
60};