Commit 45bdaf5f authored by Jonathan Cameron's avatar Jonathan Cameron
Browse files

dt-bindings:iio:accel:kionix,kxcjk1013: txt to yaml format conversion.



Very simple binding hence a straight forward conversion.

Signed-off-by: default avatarJonathan Cameron <Jonathan.Cameron@huawei.com>
Reviewed-by: default avatarRob Herring <robh@kernel.org>
Cc: Dmitry Osipenko <digetx@gmail.com>
Cc: Robert Yang <decatf@gmail.com>
Link: https://lore.kernel.org/r/20201031184854.745828-42-jic23@kernel.org
parent 333beb45
Loading
Loading
Loading
Loading
+0 −24
Original line number Diff line number Diff line
Kionix KXCJK-1013 Accelerometer device tree bindings

Required properties:

- compatible: Must be one of:
    "kionix,kxcjk1013"
    "kionix,kxcj91008"
    "kionix,kxtj21009"
    "kionix,kxtf9"
 - reg: i2c slave address

Optional properties:

  - mount-matrix: an optional 3x3 mounting rotation matrix

Example:

kxtf9@f {
	compatible = "kionix,kxtf9";
	reg = <0x0F>;
	mount-matrix =	"0", "1", "0",
			"1", "0", "0",
			"0", "0", "1";
};
+46 −0
Original line number Diff line number Diff line
# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
%YAML 1.2
---
$id: http://devicetree.org/schemas/iio/accel/kionix,kxcjk1013.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#

title: Kionix KXCJK-1013 Accelerometer

maintainers:
  - Robert Yang <decatf@gmail.com>

properties:
  compatible:
    enum:
      - kionix,kxcjk1013
      - kionix,kxcj91008
      - kionix,kxtj21009
      - kionix,kxtf9

  reg:
    maxItems: 1

  mount-matrix:
    description: an optional 3x3 mounting rotation matrix.

required:
  - compatible
  - reg

additionalProperties: false

examples:
  - |
    i2c {
        #address-cells = <1>;
        #size-cells = <0>;

        accel@f {
            compatible = "kionix,kxtf9";
            reg = <0x0F>;
            mount-matrix = "0", "1", "0",
                           "1", "0", "0",
                           "0", "0", "1";
        };
    };
...