mirror of
https://github.com/torvalds/linux.git
synced 2026-04-18 14:53:58 -04:00
Document LAN969x hwmon temperature sensor compatible. Signed-off-by: Robert Marko <robert.marko@sartura.hr> Acked-by: Conor Dooley <conor.dooley@microchip.com> Link: https://lore.kernel.org/r/20251215163820.1584926-15-robert.marko@sartura.hr Signed-off-by: Guenter Roeck <linux@roeck-us.net>
49 lines
954 B
YAML
49 lines
954 B
YAML
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/hwmon/microchip,sparx5-temp.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: Microchip Sparx5 Temperature Monitor
|
|
|
|
maintainers:
|
|
- Lars Povlsen <lars.povlsen@microchip.com>
|
|
|
|
description: |
|
|
Microchip Sparx5 embedded temperature monitor
|
|
|
|
properties:
|
|
compatible:
|
|
oneOf:
|
|
- const: microchip,sparx5-temp
|
|
- items:
|
|
- enum:
|
|
- microchip,lan9691-temp
|
|
- const: microchip,sparx5-temp
|
|
|
|
reg:
|
|
maxItems: 1
|
|
|
|
clocks:
|
|
items:
|
|
- description: System reference clock
|
|
|
|
'#thermal-sensor-cells':
|
|
const: 0
|
|
|
|
required:
|
|
- compatible
|
|
- reg
|
|
- clocks
|
|
|
|
additionalProperties: false
|
|
|
|
examples:
|
|
- |
|
|
tmon0: tmon@610508110 {
|
|
compatible = "microchip,sparx5-temp";
|
|
reg = <0x10508110 0xc>;
|
|
#thermal-sensor-cells = <0>;
|
|
clocks = <&sys_clk>;
|
|
};
|