mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
synced 2026-04-18 19:43:43 -04:00
json-schema versions draft7 and earlier have a weird behavior in that any keywords combined with a '$ref' are ignored (silently). The correct form was to put a '$ref' under an 'allOf'. This behavior is now changed in the 2019-09 json-schema spec and '$ref' can be mixed with other keywords. The json-schema library doesn't yet support this, but the tooling now does a fixup for this and either way works. This has been a constant source of review comments, so let's change this treewide so everyone copies the simpler syntax. Scripted with ruamel.yaml with some manual fixups. Some minor whitespace changes from the script. Signed-off-by: Rob Herring <robh@kernel.org> Acked-by: Maxime Ripard <mripard@kernel.org> Acked-by: Lee Jones <lee.jones@linaro.org> Acked-By: Vinod Koul <vkoul@kernel.org> Acked-by: Mark Brown <broonie@kernel.org> Acked-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Acked-by: Wolfram Sang <wsa@the-dreams.de> # for I2C Reviewed-by: Linus Walleij <linus.walleij@linaro.org> Acked-by: Jonathan Cameron <Jonathan.Cameron@huawei.com> #for-iio Reviewed-by: Stephen Boyd <sboyd@kernel.org> # clock Signed-off-by: Rob Herring <robh@kernel.org>
83 lines
2.3 KiB
YAML
83 lines
2.3 KiB
YAML
# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/hwmon/adt7475.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: ADT7475 hwmon sensor
|
|
|
|
maintainers:
|
|
- Jean Delvare <jdelvare@suse.com>
|
|
|
|
description: |
|
|
The ADT7473, ADT7475, ADT7476, and ADT7490 are thermal monitors and multiple
|
|
PWN fan controllers.
|
|
|
|
They support monitoring and controlling up to four fans (the ADT7490 can only
|
|
control up to three). They support reading a single on chip temperature
|
|
sensor and two off chip temperature sensors (the ADT7490 additionally
|
|
supports measuring up to three current external temperature sensors with
|
|
series resistance cancellation (SRC)).
|
|
|
|
Datasheets:
|
|
https://www.onsemi.com/pub/Collateral/ADT7473-D.PDF
|
|
https://www.onsemi.com/pub/Collateral/ADT7475-D.PDF
|
|
https://www.onsemi.com/pub/Collateral/ADT7476-D.PDF
|
|
https://www.onsemi.com/pub/Collateral/ADT7490-D.PDF
|
|
|
|
Description taken from onsemiconductors specification sheets, with minor
|
|
rephrasing.
|
|
|
|
properties:
|
|
compatible:
|
|
enum:
|
|
- adi,adt7473
|
|
- adi,adt7475
|
|
- adi,adt7476
|
|
- adi,adt7490
|
|
|
|
reg:
|
|
maxItems: 1
|
|
|
|
patternProperties:
|
|
"^adi,bypass-attenuator-in[0-4]$":
|
|
description: |
|
|
Configures bypassing the individual voltage input attenuator. If
|
|
set to 1 the attenuator is bypassed if set to 0 the attenuator is
|
|
not bypassed. If the property is absent then the attenuator
|
|
retains it's configuration from the bios/bootloader.
|
|
$ref: /schemas/types.yaml#/definitions/uint32
|
|
enum: [0, 1]
|
|
|
|
"^adi,pwm-active-state$":
|
|
description: |
|
|
Integer array, represents the active state of the pwm outputs If set to 0
|
|
the pwm uses a logic low output for 100% duty cycle. If set to 1 the pwm
|
|
uses a logic high output for 100% duty cycle.
|
|
$ref: /schemas/types.yaml#/definitions/uint32-array
|
|
minItems: 3
|
|
maxItems: 3
|
|
items:
|
|
enum: [0, 1]
|
|
default: 1
|
|
|
|
required:
|
|
- compatible
|
|
- reg
|
|
|
|
examples:
|
|
- |
|
|
i2c {
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
|
|
hwmon@2e {
|
|
compatible = "adi,adt7476";
|
|
reg = <0x2e>;
|
|
adi,bypass-attenuator-in0 = <1>;
|
|
adi,bypass-attenuator-in1 = <0>;
|
|
adi,pwm-active-state = <1 0 1>;
|
|
};
|
|
};
|
|
|