xref: /freebsd/sys/contrib/device-tree/Bindings/net/nfc/nxp,nci.yaml (revision c9ccf3a32da427475985b85d7df023ccfb138c27)
18cc087a1SEmmanuel Vadot# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
28cc087a1SEmmanuel Vadot%YAML 1.2
38cc087a1SEmmanuel Vadot---
48cc087a1SEmmanuel Vadot$id: http://devicetree.org/schemas/net/nfc/nxp,nci.yaml#
58cc087a1SEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
68cc087a1SEmmanuel Vadot
78cc087a1SEmmanuel Vadottitle: NXP Semiconductors NCI NFC controller
88cc087a1SEmmanuel Vadot
98cc087a1SEmmanuel Vadotmaintainers:
108cc087a1SEmmanuel Vadot  - Charles Gorand <charles.gorand@effinnov.com>
11*c9ccf3a3SEmmanuel Vadot  - Krzysztof Kozlowski <krzk@kernel.org>
128cc087a1SEmmanuel Vadot
138cc087a1SEmmanuel Vadotproperties:
148cc087a1SEmmanuel Vadot  compatible:
158cc087a1SEmmanuel Vadot    oneOf:
168cc087a1SEmmanuel Vadot      - const: nxp,nxp-nci-i2c
178cc087a1SEmmanuel Vadot      - items:
188cc087a1SEmmanuel Vadot          - const: nxp,pn547
198cc087a1SEmmanuel Vadot          - const: nxp,nxp-nci-i2c
208cc087a1SEmmanuel Vadot
218cc087a1SEmmanuel Vadot  enable-gpios:
228cc087a1SEmmanuel Vadot    description: Output GPIO pin used for enabling/disabling the controller
238cc087a1SEmmanuel Vadot
248cc087a1SEmmanuel Vadot  firmware-gpios:
258cc087a1SEmmanuel Vadot    description: Output GPIO pin used to enter firmware download mode
268cc087a1SEmmanuel Vadot
278cc087a1SEmmanuel Vadot  interrupts:
288cc087a1SEmmanuel Vadot    maxItems: 1
298cc087a1SEmmanuel Vadot
308cc087a1SEmmanuel Vadot  reg:
318cc087a1SEmmanuel Vadot    maxItems: 1
328cc087a1SEmmanuel Vadot
338cc087a1SEmmanuel Vadotrequired:
348cc087a1SEmmanuel Vadot  - compatible
358cc087a1SEmmanuel Vadot  - enable-gpios
368cc087a1SEmmanuel Vadot  - interrupts
378cc087a1SEmmanuel Vadot  - reg
388cc087a1SEmmanuel Vadot
398cc087a1SEmmanuel VadotadditionalProperties: false
408cc087a1SEmmanuel Vadot
418cc087a1SEmmanuel Vadotexamples:
428cc087a1SEmmanuel Vadot  - |
438cc087a1SEmmanuel Vadot    #include <dt-bindings/gpio/gpio.h>
448cc087a1SEmmanuel Vadot    #include <dt-bindings/interrupt-controller/irq.h>
458cc087a1SEmmanuel Vadot
468cc087a1SEmmanuel Vadot    i2c {
478cc087a1SEmmanuel Vadot        #address-cells = <1>;
488cc087a1SEmmanuel Vadot        #size-cells = <0>;
498cc087a1SEmmanuel Vadot
508cc087a1SEmmanuel Vadot        nfc@29 {
518cc087a1SEmmanuel Vadot            compatible = "nxp,nxp-nci-i2c";
528cc087a1SEmmanuel Vadot
538cc087a1SEmmanuel Vadot            reg = <0x29>;
548cc087a1SEmmanuel Vadot
558cc087a1SEmmanuel Vadot            interrupt-parent = <&gpio1>;
568cc087a1SEmmanuel Vadot            interrupts = <29 IRQ_TYPE_LEVEL_HIGH>;
578cc087a1SEmmanuel Vadot
588cc087a1SEmmanuel Vadot            enable-gpios = <&gpio0 30 GPIO_ACTIVE_HIGH>;
598cc087a1SEmmanuel Vadot            firmware-gpios = <&gpio0 31 GPIO_ACTIVE_HIGH>;
608cc087a1SEmmanuel Vadot        };
618cc087a1SEmmanuel Vadot    };
62