ti_soc_thermal.txt 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. * Texas Instrument OMAP SCM bandgap bindings
  2. In the System Control Module, OMAP supplies a voltage reference
  3. and a temperature sensor feature that are gathered in the band
  4. gap voltage and temperature sensor (VBGAPTS) module. The band
  5. gap provides current and voltage reference for its internal
  6. circuits and other analog IP blocks. The analog-to-digital
  7. converter (ADC) produces an output value that is proportional
  8. to the silicon temperature.
  9. Required properties:
  10. - compatible : Should be:
  11. - "ti,omap4430-bandgap" : for OMAP4430 bandgap
  12. - "ti,omap4460-bandgap" : for OMAP4460 bandgap
  13. - "ti,omap4470-bandgap" : for OMAP4470 bandgap
  14. - "ti,omap5430-bandgap" : for OMAP5430 bandgap
  15. - interrupts : this entry should indicate which interrupt line
  16. the talert signal is routed to;
  17. Specific:
  18. - gpios : this entry should be used to inform which GPIO
  19. line the tshut signal is routed to. The informed GPIO will
  20. be treated as an IRQ;
  21. - regs : this entry must also be specified and it is specific
  22. to each bandgap version, because the mapping may change from
  23. soc to soc, apart of depending on available features.
  24. Example:
  25. OMAP4430:
  26. bandgap {
  27. reg = <0x4a002260 0x4 0x4a00232C 0x4>;
  28. compatible = "ti,omap4430-bandgap";
  29. };
  30. OMAP4460:
  31. bandgap {
  32. reg = <0x4a002260 0x4
  33. 0x4a00232C 0x4
  34. 0x4a002378 0x18>;
  35. compatible = "ti,omap4460-bandgap";
  36. interrupts = <0 126 4>; /* talert */
  37. gpios = <&gpio3 22 0>; /* tshut */
  38. };
  39. OMAP4470:
  40. bandgap {
  41. reg = <0x4a002260 0x4
  42. 0x4a00232C 0x4
  43. 0x4a002378 0x18>;
  44. compatible = "ti,omap4470-bandgap";
  45. interrupts = <0 126 4>; /* talert */
  46. gpios = <&gpio3 22 0>; /* tshut */
  47. };
  48. OMAP5430:
  49. bandgap {
  50. reg = <0x4a0021e0 0xc
  51. 0x4a00232c 0xc
  52. 0x4a002380 0x2c
  53. 0x4a0023C0 0x3c>;
  54. compatible = "ti,omap5430-bandgap";
  55. interrupts = <0 126 4>; /* talert */
  56. };
  57. DRA752:
  58. bandgap {
  59. reg = <0x4a0021e0 0xc
  60. 0x4a00232c 0xc
  61. 0x4a002380 0x2c
  62. 0x4a0023C0 0x3c
  63. 0x4a002564 0x8
  64. 0x4a002574 0x50>;
  65. compatible = "ti,dra752-bandgap";
  66. interrupts = <0 126 4>; /* talert */
  67. };