Merge branch 'async-scsi-resume' of git://git.kernel.org/pub/scm/linux/kernel/git...
[linux.git] / Documentation / devicetree / bindings / net / nfc / trf7970a.txt
1 * Texas Instruments TRF7970A RFID/NFC/15693 Transceiver
2
3 Required properties:
4 - compatible: Should be "ti,trf7970a".
5 - spi-max-frequency: Maximum SPI frequency (<= 2000000).
6 - interrupt-parent: phandle of parent interrupt handler.
7 - interrupts: A single interrupt specifier.
8 - ti,enable-gpios: Two GPIO entries used for 'EN' and 'EN2' pins on the
9   TRF7970A.
10 - vin-supply: Regulator for supply voltage to VIN pin
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 TRF7970A on SPI1):
17
18 &spi1 {
19         status = "okay";
20
21         nfc@0 {
22                 compatible = "ti,trf7970a";
23                 reg = <0>;
24                 pinctrl-names = "default";
25                 pinctrl-0 = <&trf7970a_default>;
26                 spi-max-frequency = <2000000>;
27                 interrupt-parent = <&gpio2>;
28                 interrupts = <14 0>;
29                 ti,enable-gpios = <&gpio2 2 GPIO_ACTIVE_LOW>,
30                                   <&gpio2 5 GPIO_ACTIVE_LOW>;
31                 vin-supply = <&ldo3_reg>;
32                 status = "okay";
33         };
34 };