-
Notifications
You must be signed in to change notification settings - Fork 124
Expand file tree
/
Copy pathstarfive,jh7100-temp.yaml
More file actions
74 lines (59 loc) · 1.43 KB
/
starfive,jh7100-temp.yaml
File metadata and controls
74 lines (59 loc) · 1.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
%YAML 1.2
---
$id: http://devicetree.org/schemas/hwmon/starfive,jh7100-temp.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#
title: StarFive JH7100 Temperature Sensor
maintainers:
- Emil Renner Berthing <kernel@esmil.dk>
description: |
StarFive Technology Co. JH7100 embedded temperature sensor
properties:
compatible:
enum:
- starfive,jh7100-temp
reg:
maxItems: 1
clocks:
minItems: 2
maxItems: 2
clock-names:
items:
- const: "sense"
- const: "bus"
'#thermal-sensor-cells':
const: 0
interrupts:
maxItems: 1
resets:
minItems: 2
maxItems: 2
reset-names:
items:
- const: "sense"
- const: "bus"
required:
- compatible
- reg
- clocks
- clock-names
- interrupts
- resets
- reset-names
additionalProperties: false
examples:
- |
#include <dt-bindings/clock/starfive-jh7100.h>
#include <dt-bindings/reset/starfive-jh7100.h>
tmon: tmon@124a0000 {
compatible = "starfive,jh7100-temp";
reg = <0x124a0000 0x10000>;
clocks = <&clkgen JH7100_CLK_TEMP_SENSE>,
<&clkgen JH7100_CLK_TEMP_APB>;
clock-names = "sense", "bus";
#thermal-sensor-cells = <0>;
interrupts = <122>;
resets = <&rstgen JH7100_RSTN_TEMP_SENSE>,
<&rstgen JH7100_RSTN_TEMP_APB>;
reset-names = "sense", "bus";
};