55 lines
1.1 KiB
YAML
55 lines
1.1 KiB
YAML
|
# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
|
||
|
%YAML 1.2
|
||
|
---
|
||
|
$id: http://devicetree.org/schemas/iio/light/avago,apds9300.yaml#
|
||
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
||
|
|
||
|
title: Avago Gesture/RGB/ALS/Proximity sensors
|
||
|
|
||
|
maintainers:
|
||
|
- Subhajit Ghosh <subhajit.ghosh@tweaklogic.com>
|
||
|
|
||
|
description: |
|
||
|
Datasheet: https://www.avagotech.com/docs/AV02-1077EN
|
||
|
Datasheet: https://www.avagotech.com/docs/AV02-4191EN
|
||
|
Datasheet: https://www.avagotech.com/docs/AV02-4755EN
|
||
|
|
||
|
properties:
|
||
|
compatible:
|
||
|
enum:
|
||
|
- avago,apds9300
|
||
|
- avago,apds9306
|
||
|
- avago,apds9960
|
||
|
|
||
|
reg:
|
||
|
maxItems: 1
|
||
|
|
||
|
interrupts:
|
||
|
maxItems: 1
|
||
|
|
||
|
vdd-supply: true
|
||
|
|
||
|
additionalProperties: false
|
||
|
|
||
|
required:
|
||
|
- compatible
|
||
|
- reg
|
||
|
|
||
|
examples:
|
||
|
- |
|
||
|
#include <dt-bindings/interrupt-controller/irq.h>
|
||
|
|
||
|
i2c {
|
||
|
#address-cells = <1>;
|
||
|
#size-cells = <0>;
|
||
|
|
||
|
light-sensor@39 {
|
||
|
compatible = "avago,apds9300";
|
||
|
reg = <0x39>;
|
||
|
interrupt-parent = <&gpio2>;
|
||
|
interrupts = <29 IRQ_TYPE_LEVEL_LOW>;
|
||
|
vdd-supply = <®ulator_3v3>;
|
||
|
};
|
||
|
};
|
||
|
...
|