The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/contrib/device-tree/Bindings/net/nfc/st-nci-i2c.txt

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 * STMicroelectronics SAS. ST NCI NFC Controller
    2 
    3 Required properties:
    4 - compatible: Should be "st,st21nfcb-i2c" or "st,st21nfcc-i2c".
    5 - clock-frequency: I²C work frequency.
    6 - reg: address on the bus
    7 - interrupts: GPIO interrupt to which the chip is connected
    8 - reset-gpios: Output GPIO pin used to reset the ST21NFCB
    9 
   10 Optional SoC Specific Properties:
   11 - pinctrl-names: Contains only one value - "default".
   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
   14 controller.
   15 - uicc-present: Specifies that the uicc swp signal can be physically
   16 connected to the nfc controller.
   17 
   18 Example (for ARM-based BeagleBoard xM with ST21NFCB on I2C2):
   19 
   20 &i2c2 {
   21 
   22 
   23         st21nfcb: st21nfcb@8 {
   24 
   25                 compatible = "st,st21nfcb-i2c";
   26 
   27                 reg = <0x08>;
   28                 clock-frequency = <400000>;
   29 
   30                 interrupt-parent = <&gpio5>;
   31                 interrupts = <2 IRQ_TYPE_LEVEL_HIGH>;
   32 
   33                 reset-gpios = <&gpio5 29 GPIO_ACTIVE_HIGH>;
   34 
   35                 ese-present;
   36                 uicc-present;
   37         };
   38 };

Cache object: adc6a398b7623841443506d811d70895


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.