···11+* STMicroelectronics SAS. ST21NFCB NFC Controller22+33+Required properties:44+- compatible: Should be "st,st21nfcb_i2c".55+- clock-frequency: I²C work frequency.66+- reg: address on the bus77+- interrupt-parent: phandle for the interrupt gpio controller88+- interrupts: GPIO interrupt to which the chip is connected99+- reset-gpios: Output GPIO pin used to reset the ST21NFCB1010+1111+Optional SoC Specific Properties:1212+- pinctrl-names: Contains only one value - "default".1313+- pintctrl-0: Specifies the pin control groups used for this controller.1414+1515+Example (for ARM-based BeagleBoard xM with ST21NFCB on I2C2):1616+1717+&i2c2 {1818+1919+ status = "okay";2020+2121+ st21nfcb: st21nfcb@8 {2222+2323+ compatible = "st,st21nfcb_i2c";2424+2525+ reg = <0x08>;2626+ clock-frequency = <400000>;2727+2828+ interrupt-parent = <&gpio5>;2929+ interrupts = <2 IRQ_TYPE_LEVEL_LOW>;3030+3131+ reset-gpios = <&gpio5 29 GPIO_ACTIVE_HIGH>;3232+ };3333+};