summaryrefslogtreecommitdiff
path: root/Documentation/devicetree/bindings/net/nfc/pn544.txt
diff options
context:
space:
mode:
authorDavid Heidelberg <david@ixit.cz>2021-10-17 19:02:10 +0300
committerRob Herring <robh@kernel.org>2021-10-28 15:27:26 +0300
commit243dde59a039e099ce3384e5cada95a61ebefa2c (patch)
tree934c6c0976b62f69681a401e2f466ee2a6d3a9a6 /Documentation/devicetree/bindings/net/nfc/pn544.txt
parent28ead0a4e444d728b5ba14b688aa1e27996862a0 (diff)
downloadlinux-243dde59a039e099ce3384e5cada95a61ebefa2c.tar.xz
dt-bindings: net: nfc: nxp,pn544: Convert txt bindings to yaml
Convert bindings for NXP PN544 NFC driver to YAML syntax. Signed-off-by: David Heidelberg <david@ixit.cz> Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com> Link: https://lore.kernel.org/r/20211017160210.85543-1-david@ixit.cz Signed-off-by: Rob Herring <robh@kernel.org>
Diffstat (limited to 'Documentation/devicetree/bindings/net/nfc/pn544.txt')
-rw-r--r--Documentation/devicetree/bindings/net/nfc/pn544.txt33
1 files changed, 0 insertions, 33 deletions
diff --git a/Documentation/devicetree/bindings/net/nfc/pn544.txt b/Documentation/devicetree/bindings/net/nfc/pn544.txt
deleted file mode 100644
index 2bd82562ce8e..000000000000
--- a/Documentation/devicetree/bindings/net/nfc/pn544.txt
+++ /dev/null
@@ -1,33 +0,0 @@
-* NXP Semiconductors PN544 NFC Controller
-
-Required properties:
-- compatible: Should be "nxp,pn544-i2c".
-- clock-frequency: I²C work frequency.
-- reg: address on the bus
-- interrupts: GPIO interrupt to which the chip is connected
-- enable-gpios: Output GPIO pin used for enabling/disabling the PN544
-- firmware-gpios: Output GPIO pin used to enter firmware download mode
-
-Optional SoC Specific Properties:
-- pinctrl-names: Contains only one value - "default".
-- pintctrl-0: Specifies the pin control groups used for this controller.
-
-Example (for ARM-based BeagleBone with PN544 on I2C2):
-
-&i2c2 {
-
-
- pn544: pn544@28 {
-
- compatible = "nxp,pn544-i2c";
-
- reg = <0x28>;
- clock-frequency = <400000>;
-
- interrupt-parent = <&gpio1>;
- interrupts = <17 IRQ_TYPE_LEVEL_HIGH>;
-
- enable-gpios = <&gpio3 21 GPIO_ACTIVE_HIGH>;
- firmware-gpios = <&gpio3 19 GPIO_ACTIVE_HIGH>;
- };
-};