brintos

brintos / linux-shallow public Read only

0
0
Text · 1016 B · 951a3a2 Raw
55 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)2%YAML 1.23---4$id: http://devicetree.org/schemas/iio/accel/kionix,kxcjk1013.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Kionix KXCJK-1013 Accelerometer8 9maintainers:10  - Robert Yang <decatf@gmail.com>11 12properties:13  compatible:14    enum:15      - kionix,kxcjk101316      - kionix,kxcj9100817      - kionix,kxtj2100918      - kionix,kxtf919      - kionix,kx022-102020      - kionix,kx023-102521 22  reg:23    maxItems: 124 25  interrupts:26    maxItems: 127 28  vdd-supply: true29  vddio-supply: true30 31  mount-matrix:32    description: an optional 3x3 mounting rotation matrix.33 34required:35  - compatible36  - reg37 38additionalProperties: false39 40examples:41  - |42    i2c {43        #address-cells = <1>;44        #size-cells = <0>;45 46        accel@f {47            compatible = "kionix,kxtf9";48            reg = <0xf>;49            mount-matrix = "0", "1", "0",50                           "1", "0", "0",51                           "0", "0", "1";52        };53    };54...55