aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/devicetree/bindings/net/nfc
diff options
context:
space:
mode:
authorChristophe Ricard <christophe.ricard@gmail.com>2015-10-25 17:54:39 -0400
committerSamuel Ortiz <sameo@linux.intel.com>2015-10-26 22:55:10 -0400
commit3648dc6d27f648b8e3ce9b48874627a833d53c3a (patch)
tree196aee67d701a3856d0ca3bfed0d43f1de20d0c6 /Documentation/devicetree/bindings/net/nfc
parentbe73c2cbc857a4a3424c0e3cdd70002d5a27a756 (diff)
NFC: st-nci: Add ese-present/uicc-present dts properties
In order to align with st21nfca, dts configuration properties ese_present and uicc_present are made available in st-nci driver. So far, in early development firmware, because nci_nfcee_mode_set(DISABLE) was not supported we had to try to enable it during the secure element discovery phase. After several trials on commercial and qualified firmware it appears that nci_nfcee_mode_set(ENABLE) and nci_nfcee_mode_set(DISABLE) are properly supported. Such feature also help us to eventually save some time (~5ms) when only one secure element is connected. Acked-by: Rob Herring <robh@kernel.org> Signed-off-by: Christophe Ricard <christophe-h.ricard@st.com> Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Diffstat (limited to 'Documentation/devicetree/bindings/net/nfc')
-rw-r--r--Documentation/devicetree/bindings/net/nfc/st-nci-i2c.txt7
-rw-r--r--Documentation/devicetree/bindings/net/nfc/st-nci-spi.txt9
2 files changed, 15 insertions, 1 deletions
diff --git a/Documentation/devicetree/bindings/net/nfc/st-nci-i2c.txt b/Documentation/devicetree/bindings/net/nfc/st-nci-i2c.txt
index d707588ed734..263732e8879f 100644
--- a/Documentation/devicetree/bindings/net/nfc/st-nci-i2c.txt
+++ b/Documentation/devicetree/bindings/net/nfc/st-nci-i2c.txt
@@ -11,6 +11,10 @@ Required properties:
11Optional SoC Specific Properties: 11Optional SoC Specific Properties:
12- pinctrl-names: Contains only one value - "default". 12- pinctrl-names: Contains only one value - "default".
13- pintctrl-0: Specifies the pin control groups used for this controller. 13- pintctrl-0: Specifies the pin control groups used for this controller.
14- ese-present: Specifies that an ese is physically connected to the nfc
15controller.
16- uicc-present: Specifies that the uicc swp signal can be physically
17connected to the nfc controller.
14 18
15Example (for ARM-based BeagleBoard xM with ST21NFCB on I2C2): 19Example (for ARM-based BeagleBoard xM with ST21NFCB on I2C2):
16 20
@@ -29,5 +33,8 @@ Example (for ARM-based BeagleBoard xM with ST21NFCB on I2C2):
29 interrupts = <2 IRQ_TYPE_LEVEL_HIGH>; 33 interrupts = <2 IRQ_TYPE_LEVEL_HIGH>;
30 34
31 reset-gpios = <&gpio5 29 GPIO_ACTIVE_HIGH>; 35 reset-gpios = <&gpio5 29 GPIO_ACTIVE_HIGH>;
36
37 ese-present;
38 uicc-present;
32 }; 39 };
33}; 40};
diff --git a/Documentation/devicetree/bindings/net/nfc/st-nci-spi.txt b/Documentation/devicetree/bindings/net/nfc/st-nci-spi.txt
index 525681b6dc39..711ca85a363d 100644
--- a/Documentation/devicetree/bindings/net/nfc/st-nci-spi.txt
+++ b/Documentation/devicetree/bindings/net/nfc/st-nci-spi.txt
@@ -2,7 +2,7 @@
2 2
3Required properties: 3Required properties:
4- compatible: Should be "st,st21nfcb-spi" 4- compatible: Should be "st,st21nfcb-spi"
5- spi-max-frequency: Maximum SPI frequency (<= 10000000). 5- spi-max-frequency: Maximum SPI frequency (<= 4000000).
6- interrupt-parent: phandle for the interrupt gpio controller 6- interrupt-parent: phandle for the interrupt gpio controller
7- interrupts: GPIO interrupt to which the chip is connected 7- interrupts: GPIO interrupt to which the chip is connected
8- reset-gpios: Output GPIO pin used to reset the ST21NFCB 8- reset-gpios: Output GPIO pin used to reset the ST21NFCB
@@ -10,6 +10,10 @@ Required properties:
10Optional SoC Specific Properties: 10Optional SoC Specific Properties:
11- pinctrl-names: Contains only one value - "default". 11- pinctrl-names: Contains only one value - "default".
12- pintctrl-0: Specifies the pin control groups used for this controller. 12- pintctrl-0: Specifies the pin control groups used for this controller.
13- ese-present: Specifies that an ese is physically connected to the nfc
14controller.
15- uicc-present: Specifies that the uicc swp signal can be physically
16connected to the nfc controller.
13 17
14Example (for ARM-based BeagleBoard xM with ST21NFCB on SPI4): 18Example (for ARM-based BeagleBoard xM with ST21NFCB on SPI4):
15 19
@@ -27,5 +31,8 @@ Example (for ARM-based BeagleBoard xM with ST21NFCB on SPI4):
27 interrupts = <2 IRQ_TYPE_EDGE_RISING>; 31 interrupts = <2 IRQ_TYPE_EDGE_RISING>;
28 32
29 reset-gpios = <&gpio5 29 GPIO_ACTIVE_HIGH>; 33 reset-gpios = <&gpio5 29 GPIO_ACTIVE_HIGH>;
34
35 ese-present;
36 uicc-present;
30 }; 37 };
31}; 38};