131 lines · plain
1===================2Linux NFC subsystem3===================4 5The Near Field Communication (NFC) subsystem is required to standardize the6NFC device drivers development and to create an unified userspace interface.7 8This document covers the architecture overview, the device driver interface9description and the userspace interface description.10 11Architecture overview12=====================13 14The NFC subsystem is responsible for:15 - NFC adapters management;16 - Polling for targets;17 - Low-level data exchange;18 19The subsystem is divided in some parts. The 'core' is responsible for20providing the device driver interface. On the other side, it is also21responsible for providing an interface to control operations and low-level22data exchange.23 24The control operations are available to userspace via generic netlink.25 26The low-level data exchange interface is provided by the new socket family27PF_NFC. The NFC_SOCKPROTO_RAW performs raw communication with NFC targets.28 29.. code-block:: none30 31 +--------------------------------------+32 | USER SPACE |33 +--------------------------------------+34 ^ ^35 | low-level | control36 | data exchange | operations37 | |38 | v39 | +-----------+40 | AF_NFC | netlink |41 | socket +-----------+42 | raw ^43 | |44 v v45 +---------+ +-----------+46 | rawsock | <--------> | core |47 +---------+ +-----------+48 ^49 |50 v51 +-----------+52 | driver |53 +-----------+54 55Device Driver Interface56=======================57 58When registering on the NFC subsystem, the device driver must inform the core59of the set of supported NFC protocols and the set of ops callbacks. The ops60callbacks that must be implemented are the following:61 62* start_poll - setup the device to poll for targets63* stop_poll - stop on progress polling operation64* activate_target - select and initialize one of the targets found65* deactivate_target - deselect and deinitialize the selected target66* data_exchange - send data and receive the response (transceive operation)67 68Userspace interface69===================70 71The userspace interface is divided in control operations and low-level data72exchange operation.73 74CONTROL OPERATIONS:75 76Generic netlink is used to implement the interface to the control operations.77The operations are composed by commands and events, all listed below:78 79* NFC_CMD_GET_DEVICE - get specific device info or dump the device list80* NFC_CMD_START_POLL - setup a specific device to polling for targets81* NFC_CMD_STOP_POLL - stop the polling operation in a specific device82* NFC_CMD_GET_TARGET - dump the list of targets found by a specific device83 84* NFC_EVENT_DEVICE_ADDED - reports an NFC device addition85* NFC_EVENT_DEVICE_REMOVED - reports an NFC device removal86* NFC_EVENT_TARGETS_FOUND - reports START_POLL results when 1 or more targets87 are found88 89The user must call START_POLL to poll for NFC targets, passing the desired NFC90protocols through NFC_ATTR_PROTOCOLS attribute. The device remains in polling91state until it finds any target. However, the user can stop the polling92operation by calling STOP_POLL command. In this case, it will be checked if93the requester of STOP_POLL is the same of START_POLL.94 95If the polling operation finds one or more targets, the event TARGETS_FOUND is96sent (including the device id). The user must call GET_TARGET to get the list of97all targets found by such device. Each reply message has target attributes with98relevant information such as the supported NFC protocols.99 100All polling operations requested through one netlink socket are stopped when101it's closed.102 103LOW-LEVEL DATA EXCHANGE:104 105The userspace must use PF_NFC sockets to perform any data communication with106targets. All NFC sockets use AF_NFC::107 108 struct sockaddr_nfc {109 sa_family_t sa_family;110 __u32 dev_idx;111 __u32 target_idx;112 __u32 nfc_protocol;113 };114 115To establish a connection with one target, the user must create an116NFC_SOCKPROTO_RAW socket and call the 'connect' syscall with the sockaddr_nfc117struct correctly filled. All information comes from NFC_EVENT_TARGETS_FOUND118netlink event. As a target can support more than one NFC protocol, the user119must inform which protocol it wants to use.120 121Internally, 'connect' will result in an activate_target call to the driver.122When the socket is closed, the target is deactivated.123 124The data format exchanged through the sockets is NFC protocol dependent. For125instance, when communicating with MIFARE tags, the data exchanged are MIFARE126commands and their responses.127 128The first received package is the response to the first sent package and so129on. In order to allow valid "empty" responses, every data received has a NULL130header of 1 byte.131