Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/Documentation/devicetree/bindings/hwmon/microchip,sparx5-temp.yaml
53158 views
1
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2
%YAML 1.2
3
---
4
$id: http://devicetree.org/schemas/hwmon/microchip,sparx5-temp.yaml#
5
$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7
title: Microchip Sparx5 Temperature Monitor
8
9
maintainers:
10
- Lars Povlsen <lars.povlsen@microchip.com>
11
12
description: |
13
Microchip Sparx5 embedded temperature monitor
14
15
properties:
16
compatible:
17
oneOf:
18
- const: microchip,sparx5-temp
19
- items:
20
- enum:
21
- microchip,lan9691-temp
22
- const: microchip,sparx5-temp
23
24
reg:
25
maxItems: 1
26
27
clocks:
28
items:
29
- description: System reference clock
30
31
'#thermal-sensor-cells':
32
const: 0
33
34
required:
35
- compatible
36
- reg
37
- clocks
38
39
additionalProperties: false
40
41
examples:
42
- |
43
tmon0: tmon@610508110 {
44
compatible = "microchip,sparx5-temp";
45
reg = <0x10508110 0xc>;
46
#thermal-sensor-cells = <0>;
47
clocks = <&sys_clk>;
48
};
49
50