mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-03 19:24:02 +08:00
b590c51c9b
Add binding for Broadcom STB thermal. Signed-off-by: Brian Norris <computersforpeace@gmail.com> Acked-by: Rob Herring <robh@kernel.org> Signed-off-by: Markus Mayer <mmayer@broadcom.com> Signed-off-by: Eduardo Valentin <edubezval@gmail.com>
21 lines
616 B
Plaintext
21 lines
616 B
Plaintext
* Broadcom STB thermal management
|
|
|
|
Thermal management core, provided by the AVS TMON hardware block.
|
|
|
|
Required properties:
|
|
- compatible: must be "brcm,avs-tmon" and/or "brcm,avs-tmon-bcm7445"
|
|
- reg: address range for the AVS TMON registers
|
|
- interrupts: temperature monitor interrupt, for high/low threshold triggers
|
|
- interrupt-names: should be "tmon"
|
|
- interrupt-parent: the parent interrupt controller
|
|
|
|
Example:
|
|
|
|
thermal@f04d1500 {
|
|
compatible = "brcm,avs-tmon-bcm7445", "brcm,avs-tmon";
|
|
reg = <0xf04d1500 0x28>;
|
|
interrupts = <0x6>;
|
|
interrupt-names = "tmon";
|
|
interrupt-parent = <&avs_host_l2_intc>;
|
|
};
|