mirror of
https://github.com/torvalds/linux.git
synced 2026-04-22 16:53:59 -04:00
Device tree bindings for the vishay VEML6040 RGBW light sensor iio driver Signed-off-by: Arthur Becker <arthur.becker@sentec.com> Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> Link: https://lore.kernel.org/r/20240604-veml6040-v4-2-5a4d59597874@sentec.com Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
46 lines
846 B
YAML
46 lines
846 B
YAML
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/iio/light/vishay,veml6075.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: Vishay VEML6075 UVA/B and VEML6040 RGBW sensors
|
|
|
|
maintainers:
|
|
- Javier Carrasco <javier.carrasco.cruz@gmail.com>
|
|
|
|
description:
|
|
VEML6040 datasheet at https://www.vishay.com/docs/84276/veml6040.pdf
|
|
|
|
properties:
|
|
compatible:
|
|
enum:
|
|
- vishay,veml6040
|
|
- vishay,veml6075
|
|
|
|
reg:
|
|
maxItems: 1
|
|
|
|
vdd-supply: true
|
|
|
|
required:
|
|
- compatible
|
|
- reg
|
|
- vdd-supply
|
|
|
|
additionalProperties: false
|
|
|
|
examples:
|
|
- |
|
|
i2c {
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
|
|
uv-sensor@10 {
|
|
compatible = "vishay,veml6075";
|
|
reg = <0x10>;
|
|
vdd-supply = <&vdd_reg>;
|
|
};
|
|
};
|
|
...
|