brintos

brintos / linux-shallow public Read only

0
0
Text · 899 B · da18188 Raw
51 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)2%YAML 1.23---4$id: http://devicetree.org/schemas/input/ti,drv266x.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Texas Instruments - drv266x Haptics driver8 9description: |10  Product Page:11    http://www.ti.com/product/drv266512    http://www.ti.com/product/drv266713 14maintainers:15  - Anshul Dalal <anshulusr@gmail.com>16 17properties:18  compatible:19    enum:20      - ti,drv266521      - ti,drv266722 23  reg:24    maxItems: 125 26  vbat-supply:27    description: Required supply regulator28 29required:30  - compatible31  - reg32  - vbat-supply33 34additionalProperties: false35 36examples:37  - |38    #include <dt-bindings/gpio/gpio.h>39 40 41    i2c {42        #address-cells = <1>;43        #size-cells = <0>;44 45        haptics@59 {46            compatible = "ti,drv2667";47            reg = <0x59>;48            vbat-supply = <&vbat>;49        };50    };51