1*ae5de77eSEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause) 2*ae5de77eSEmmanuel Vadot%YAML 1.2 3*ae5de77eSEmmanuel Vadot--- 4*ae5de77eSEmmanuel Vadot$id: http://devicetree.org/schemas/thermal/airoha,en7581-thermal.yaml# 5*ae5de77eSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml# 6*ae5de77eSEmmanuel Vadot 7*ae5de77eSEmmanuel Vadottitle: Airoha EN7581 Thermal Sensor and Monitor 8*ae5de77eSEmmanuel Vadot 9*ae5de77eSEmmanuel Vadotmaintainers: 10*ae5de77eSEmmanuel Vadot - Christian Marangi <ansuelsmth@gmail.com> 11*ae5de77eSEmmanuel Vadot 12*ae5de77eSEmmanuel Vadotproperties: 13*ae5de77eSEmmanuel Vadot compatible: 14*ae5de77eSEmmanuel Vadot const: airoha,en7581-thermal 15*ae5de77eSEmmanuel Vadot 16*ae5de77eSEmmanuel Vadot reg: 17*ae5de77eSEmmanuel Vadot maxItems: 1 18*ae5de77eSEmmanuel Vadot 19*ae5de77eSEmmanuel Vadot interrupts: 20*ae5de77eSEmmanuel Vadot maxItems: 1 21*ae5de77eSEmmanuel Vadot 22*ae5de77eSEmmanuel Vadot airoha,chip-scu: 23*ae5de77eSEmmanuel Vadot description: phandle to the chip SCU syscon 24*ae5de77eSEmmanuel Vadot $ref: /schemas/types.yaml#/definitions/phandle 25*ae5de77eSEmmanuel Vadot 26*ae5de77eSEmmanuel Vadot '#thermal-sensor-cells': 27*ae5de77eSEmmanuel Vadot const: 0 28*ae5de77eSEmmanuel Vadot 29*ae5de77eSEmmanuel Vadotrequired: 30*ae5de77eSEmmanuel Vadot - compatible 31*ae5de77eSEmmanuel Vadot - reg 32*ae5de77eSEmmanuel Vadot - interrupts 33*ae5de77eSEmmanuel Vadot - airoha,chip-scu 34*ae5de77eSEmmanuel Vadot 35*ae5de77eSEmmanuel VadotadditionalProperties: false 36*ae5de77eSEmmanuel Vadot 37*ae5de77eSEmmanuel Vadotexamples: 38*ae5de77eSEmmanuel Vadot - | 39*ae5de77eSEmmanuel Vadot #include <dt-bindings/interrupt-controller/arm-gic.h> 40*ae5de77eSEmmanuel Vadot 41*ae5de77eSEmmanuel Vadot thermal-sensor@1efbd800 { 42*ae5de77eSEmmanuel Vadot compatible = "airoha,en7581-thermal"; 43*ae5de77eSEmmanuel Vadot reg = <0x1efbd000 0xd5c>; 44*ae5de77eSEmmanuel Vadot interrupts = <GIC_SPI 23 IRQ_TYPE_LEVEL_HIGH>; 45*ae5de77eSEmmanuel Vadot airoha,chip-scu = <&chip_scu>; 46*ae5de77eSEmmanuel Vadot 47*ae5de77eSEmmanuel Vadot #thermal-sensor-cells = <0>; 48*ae5de77eSEmmanuel Vadot }; 49