-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
thermal: dt-bindings: add loongson-2 thermal
Add the Loongson-2 thermal binding with DT schema format using json-schema. Signed-off-by: Yinbo Zhu <zhuyinbo@loongson.cn> Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org> Link: https://lore.kernel.org/r/20230817021007.10350-2-zhuyinbo@loongson.cn
- Loading branch information
Yinbo Zhu
authored and
Daniel Lezcano
committed
Aug 17, 2023
1 parent
e7e3a7c
commit 72684d9
Showing
2 changed files
with
45 additions
and
0 deletions.
There are no files selected for viewing
44 changes: 44 additions & 0 deletions
44
Documentation/devicetree/bindings/thermal/loongson,ls2k-thermal.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) | ||
%YAML 1.2 | ||
--- | ||
$id: http://devicetree.org/schemas/thermal/loongson,ls2k-thermal.yaml# | ||
$schema: http://devicetree.org/meta-schemas/core.yaml# | ||
|
||
title: Thermal sensors on Loongson-2 SoCs | ||
|
||
maintainers: | ||
- zhanghongchen <zhanghongchen@loongson.cn> | ||
- Yinbo Zhu <zhuyinbo@loongson.cn> | ||
|
||
properties: | ||
compatible: | ||
oneOf: | ||
- enum: | ||
- loongson,ls2k1000-thermal | ||
- items: | ||
- enum: | ||
- loongson,ls2k2000-thermal | ||
- const: loongson,ls2k1000-thermal | ||
|
||
reg: | ||
maxItems: 1 | ||
|
||
interrupts: | ||
maxItems: 1 | ||
|
||
required: | ||
- compatible | ||
- reg | ||
- interrupts | ||
|
||
additionalProperties: false | ||
|
||
examples: | ||
- | | ||
#include <dt-bindings/interrupt-controller/irq.h> | ||
thermal: thermal-sensor@1fe01500 { | ||
compatible = "loongson,ls2k1000-thermal"; | ||
reg = <0x1fe01500 0x30>; | ||
interrupt-parent = <&liointc0>; | ||
interrupts = <7 IRQ_TYPE_LEVEL_LOW>; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters