mirror of
https://github.com/torvalds/linux.git
synced 2026-04-18 14:53:58 -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>
85 lines
1.8 KiB
YAML
85 lines
1.8 KiB
YAML
# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/iio/light/tsl2772.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: AMS/TAOS Ambient Light Sensor (ALS) and Proximity Detector
|
|
|
|
maintainers:
|
|
- Brian Masney <masneyb@onstation.org>
|
|
|
|
description: |
|
|
Ambient light sensing and proximity detection with an i2c interface.
|
|
https://ams.com/documents/20143/36005/TSL2772_DS000181_2-00.pdf
|
|
|
|
properties:
|
|
compatible:
|
|
enum:
|
|
- amstaos,tsl2571
|
|
- amstaos,tsl2671
|
|
- amstaos,tmd2671
|
|
- amstaos,tsl2771
|
|
- amstaos,tmd2771
|
|
- amstaos,tsl2572
|
|
- amstaos,tsl2672
|
|
- amstaos,tmd2672
|
|
- amstaos,tsl2772
|
|
- amstaos,tmd2772
|
|
- avago,apds9930
|
|
|
|
reg:
|
|
maxItems: 1
|
|
|
|
amstaos,proximity-diodes:
|
|
description: Proximity diodes to enable
|
|
$ref: /schemas/types.yaml#/definitions/uint32-array
|
|
minItems: 1
|
|
maxItems: 2
|
|
items:
|
|
minimum: 0
|
|
maximum: 1
|
|
|
|
interrupts:
|
|
maxItems: 1
|
|
|
|
led-max-microamp:
|
|
description: Current for the proximity LED
|
|
enum:
|
|
- 13000
|
|
- 25000
|
|
- 50000
|
|
- 100000
|
|
|
|
vdd-supply:
|
|
description: Regulator that provides power to the sensor
|
|
|
|
vddio-supply:
|
|
description: Regulator that provides power to the bus
|
|
|
|
required:
|
|
- compatible
|
|
- reg
|
|
|
|
additionalProperties: false
|
|
|
|
examples:
|
|
- |
|
|
#include <dt-bindings/interrupt-controller/irq.h>
|
|
|
|
i2c {
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
|
|
sensor@39 {
|
|
compatible = "amstaos,tsl2772";
|
|
reg = <0x39>;
|
|
interrupts-extended = <&msmgpio 61 IRQ_TYPE_EDGE_FALLING>;
|
|
vdd-supply = <&pm8941_l17>;
|
|
vddio-supply = <&pm8941_lvs1>;
|
|
amstaos,proximity-diodes = <0>;
|
|
led-max-microamp = <100000>;
|
|
};
|
|
};
|
|
...
|