4569820881
Cleanup bindings dropping the last remaining unneeded quotes. With this, the check for this can be enabled in yamllint. Acked-by: Miquel Raynal <miquel.raynal@bootlin.com> # for mtd Acked-by: Sudeep Holla <sudeep.holla@arm.com> Reviewed-by: Linus Walleij <linus.walleij@linaro.org> Acked-by: Mark Brown <broonie@kernel.org> Acked-by: Wolfram Sang <wsa@kernel.org> # for AT24/I2C Acked-by: Guenter Roeck <linux@roeck-us.net> Acked-by: Ulf Hansson <ulf.hansson@linaro.org> # For MMC Acked-by: Geert Uytterhoeven <geert+renesas@glider.be> Link: https://lore.kernel.org/r/20230823183749.2609013-1-robh@kernel.org Signed-off-by: Rob Herring <robh@kernel.org>
71 lines
1.4 KiB
YAML
71 lines
1.4 KiB
YAML
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/hwmon/starfive,jh71x0-temp.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: StarFive JH71x0 Temperature Sensor
|
|
|
|
maintainers:
|
|
- Emil Renner Berthing <kernel@esmil.dk>
|
|
|
|
description: |
|
|
StarFive Technology Co. JH71x0 embedded temperature sensor
|
|
|
|
properties:
|
|
compatible:
|
|
enum:
|
|
- starfive,jh7100-temp
|
|
- starfive,jh7110-temp
|
|
|
|
reg:
|
|
maxItems: 1
|
|
|
|
clocks:
|
|
minItems: 2
|
|
maxItems: 2
|
|
|
|
clock-names:
|
|
items:
|
|
- const: sense
|
|
- const: bus
|
|
|
|
'#thermal-sensor-cells':
|
|
const: 0
|
|
|
|
resets:
|
|
minItems: 2
|
|
maxItems: 2
|
|
|
|
reset-names:
|
|
items:
|
|
- const: sense
|
|
- const: bus
|
|
|
|
required:
|
|
- compatible
|
|
- reg
|
|
- clocks
|
|
- clock-names
|
|
- resets
|
|
- reset-names
|
|
|
|
additionalProperties: false
|
|
|
|
examples:
|
|
- |
|
|
#include <dt-bindings/clock/starfive-jh7100.h>
|
|
#include <dt-bindings/reset/starfive-jh7100.h>
|
|
|
|
temperature-sensor@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>;
|
|
resets = <&rstgen JH7100_RSTN_TEMP_SENSE>,
|
|
<&rstgen JH7100_RSTN_TEMP_APB>;
|
|
reset-names = "sense", "bus";
|
|
};
|