diff options
| author | Samuel Ortiz <sameo@linux.intel.com> | 2013-08-27 18:39:48 -0400 |
|---|---|---|
| committer | Samuel Ortiz <sameo@linux.intel.com> | 2013-09-24 20:30:47 -0400 |
| commit | 72b70b6ec4fa7da86a3ac0aacee699b18d94fc3b (patch) | |
| tree | fb9e9e0a29349ca9e294492bad8195e9a84ce931 /include/uapi/linux | |
| parent | b9c0c678f7267831b73e1d73fb30c9b4658e91ec (diff) | |
NFC: Define secure element IO API and commands
In order to send and receive ISO7816 APDUs to and from NFC embedded
secure elements, we define a specific netlink command.
On a typical SE use case, host applications will send very few APDUs
(Less than 10) per transaction. This is why we decided to go for a
simple netlink API. Defining another NFC socket protocol for such low
traffic would have been overengineered.
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Diffstat (limited to 'include/uapi/linux')
| -rw-r--r-- | include/uapi/linux/nfc.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/uapi/linux/nfc.h b/include/uapi/linux/nfc.h index 29bed72a4ac4..6ad6cc03ccd3 100644 --- a/include/uapi/linux/nfc.h +++ b/include/uapi/linux/nfc.h | |||
| @@ -85,6 +85,7 @@ | |||
| 85 | * a specific SE notifies us about the end of a transaction. The parameter | 85 | * a specific SE notifies us about the end of a transaction. The parameter |
| 86 | * for this event is the application ID (AID). | 86 | * for this event is the application ID (AID). |
| 87 | * @NFC_CMD_GET_SE: Dump all discovered secure elements from an NFC controller. | 87 | * @NFC_CMD_GET_SE: Dump all discovered secure elements from an NFC controller. |
| 88 | * @NFC_CMD_SE_IO: Send/Receive APDUs to/from the selected secure element. | ||
| 88 | */ | 89 | */ |
| 89 | enum nfc_commands { | 90 | enum nfc_commands { |
| 90 | NFC_CMD_UNSPEC, | 91 | NFC_CMD_UNSPEC, |
| @@ -114,6 +115,7 @@ enum nfc_commands { | |||
| 114 | NFC_EVENT_SE_CONNECTIVITY, | 115 | NFC_EVENT_SE_CONNECTIVITY, |
| 115 | NFC_EVENT_SE_TRANSACTION, | 116 | NFC_EVENT_SE_TRANSACTION, |
| 116 | NFC_CMD_GET_SE, | 117 | NFC_CMD_GET_SE, |
| 118 | NFC_CMD_SE_IO, | ||
| 117 | /* private: internal use only */ | 119 | /* private: internal use only */ |
| 118 | __NFC_CMD_AFTER_LAST | 120 | __NFC_CMD_AFTER_LAST |
| 119 | }; | 121 | }; |
| @@ -147,6 +149,7 @@ enum nfc_commands { | |||
| 147 | * @NFC_ATTR_SE_INDEX: Secure element index | 149 | * @NFC_ATTR_SE_INDEX: Secure element index |
| 148 | * @NFC_ATTR_SE_TYPE: Secure element type (UICC or EMBEDDED) | 150 | * @NFC_ATTR_SE_TYPE: Secure element type (UICC or EMBEDDED) |
| 149 | * @NFC_ATTR_FIRMWARE_DOWNLOAD_STATUS: Firmware download operation status | 151 | * @NFC_ATTR_FIRMWARE_DOWNLOAD_STATUS: Firmware download operation status |
| 152 | * @NFC_ATTR_APDU: Secure element APDU | ||
| 150 | */ | 153 | */ |
| 151 | enum nfc_attrs { | 154 | enum nfc_attrs { |
| 152 | NFC_ATTR_UNSPEC, | 155 | NFC_ATTR_UNSPEC, |
| @@ -174,6 +177,7 @@ enum nfc_attrs { | |||
| 174 | NFC_ATTR_SE_TYPE, | 177 | NFC_ATTR_SE_TYPE, |
| 175 | NFC_ATTR_SE_AID, | 178 | NFC_ATTR_SE_AID, |
| 176 | NFC_ATTR_FIRMWARE_DOWNLOAD_STATUS, | 179 | NFC_ATTR_FIRMWARE_DOWNLOAD_STATUS, |
| 180 | NFC_ATTR_SE_APDU, | ||
| 177 | /* private: internal use only */ | 181 | /* private: internal use only */ |
| 178 | __NFC_ATTR_AFTER_LAST | 182 | __NFC_ATTR_AFTER_LAST |
| 179 | }; | 183 | }; |
