Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide
[sfrench/cifs-2.6.git] / Documentation / devicetree / bindings / net / nfc / nxp-nci.txt
1 * NXP Semiconductors NXP NCI NFC Controllers
2
3 Required properties:
4 - compatible: Should be "nxp,nxp-nci-i2c".
5 - clock-frequency: I²C work frequency.
6 - reg: address on the bus
7 - interrupt-parent: phandle for the interrupt gpio controller
8 - interrupts: GPIO interrupt to which the chip is connected
9 - enable-gpios: Output GPIO pin used for enabling/disabling the chip
10 - firmware-gpios: Output GPIO pin used to enter firmware download mode
11
12 Optional SoC Specific Properties:
13 - pinctrl-names: Contains only one value - "default".
14 - pintctrl-0: Specifies the pin control groups used for this controller.
15
16 Example (for ARM-based BeagleBone with NPC100 NFC controller on I2C2):
17
18 &i2c2 {
19
20
21         npc100: npc100@29 {
22
23                 compatible = "nxp,nxp-nci-i2c";
24
25                 reg = <0x29>;
26                 clock-frequency = <100000>;
27
28                 interrupt-parent = <&gpio1>;
29                 interrupts = <29 GPIO_ACTIVE_HIGH>;
30
31                 enable-gpios = <&gpio0 30 GPIO_ACTIVE_HIGH>;
32                 firmware-gpios = <&gpio0 31 GPIO_ACTIVE_HIGH>;
33         };
34 };