samsung,s3fwrn5.yaml 1.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
%YAML 1.2
---
$id: http://devicetree.org/schemas/net/nfc/samsung,s3fwrn5.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#

title: Samsung S3FWRN5 NCI NFC Controller

maintainers:
  - Krzysztof Kozlowski <krzk@kernel.org>
  - Krzysztof Opasiak <k.opasiak@samsung.com>

properties:
  compatible:
    const: samsung,s3fwrn5-i2c

17 18 19 20 21
  en-gpios:
    maxItems: 1
    description:
      Output GPIO pin used for enabling/disabling the chip

22 23 24 25 26 27
  interrupts:
    maxItems: 1

  reg:
    maxItems: 1

28 29 30 31 32
  wake-gpios:
    maxItems: 1
    description:
      Output GPIO pin used to enter firmware mode and sleep/wakeup control

33 34
  s3fwrn5,en-gpios:
    maxItems: 1
35
    deprecated: true
36
    description:
37
      Use en-gpios
38 39 40

  s3fwrn5,fw-gpios:
    maxItems: 1
41
    deprecated: true
42
    description:
43
      Use wake-gpios
44 45 46 47 48

additionalProperties: false

required:
  - compatible
49
  - en-gpios
50 51
  - interrupts
  - reg
52
  - wake-gpios
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69

examples:
  - |
    #include <dt-bindings/gpio/gpio.h>
    #include <dt-bindings/interrupt-controller/irq.h>

    i2c4 {
        #address-cells = <1>;
        #size-cells = <0>;

        s3fwrn5@27 {
            compatible = "samsung,s3fwrn5-i2c";
            reg = <0x27>;

            interrupt-parent = <&gpa1>;
            interrupts = <3 IRQ_TYPE_LEVEL_HIGH>;

70 71
            en-gpios = <&gpf1 4 GPIO_ACTIVE_HIGH>;
            wake-gpios = <&gpj0 2 GPIO_ACTIVE_HIGH>;
72 73
        };
    };