| 
									
										
										
										
											2011-07-01 19:31:34 -03:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright (C) 2011 Instituto Nokia de Tecnologia | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Authors: | 
					
						
							|  |  |  |  *    Lauro Ramos Venancio <lauro.venancio@openbossa.org> | 
					
						
							|  |  |  |  *    Aloisio Almeida Jr <aloisio.almeida@openbossa.org> | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2012-12-05 21:12:25 -03:00
										 |  |  |  * Permission to use, copy, modify, and/or distribute this software for any | 
					
						
							|  |  |  |  * purpose with or without fee is hereby granted, provided that the above | 
					
						
							|  |  |  |  * copyright notice and this permission notice appear in all copies. | 
					
						
							| 
									
										
										
										
											2011-07-01 19:31:34 -03:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2012-12-05 21:12:25 -03:00
										 |  |  |  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | 
					
						
							|  |  |  |  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | 
					
						
							|  |  |  |  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | 
					
						
							|  |  |  |  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | 
					
						
							|  |  |  |  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | 
					
						
							|  |  |  |  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | 
					
						
							|  |  |  |  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 
					
						
							| 
									
										
										
										
											2011-07-01 19:31:34 -03:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef __LINUX_NFC_H
 | 
					
						
							|  |  |  | #define __LINUX_NFC_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-01 19:31:36 -03:00
										 |  |  | #include <linux/types.h>
 | 
					
						
							|  |  |  | #include <linux/socket.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-01 19:31:34 -03:00
										 |  |  | #define NFC_GENL_NAME "nfc"
 | 
					
						
							|  |  |  | #define NFC_GENL_VERSION 1
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define NFC_GENL_MCAST_EVENT_NAME "events"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * enum nfc_commands - supported nfc commands | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @NFC_CMD_UNSPEC: unspecified command | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @NFC_CMD_GET_DEVICE: request information about a device (requires | 
					
						
							|  |  |  |  *	%NFC_ATTR_DEVICE_INDEX) or dump request to get a list of all nfc devices | 
					
						
							| 
									
										
										
										
											2011-09-18 11:19:33 +03:00
										 |  |  |  * @NFC_CMD_DEV_UP: turn on the nfc device | 
					
						
							|  |  |  |  *	(requires %NFC_ATTR_DEVICE_INDEX) | 
					
						
							|  |  |  |  * @NFC_CMD_DEV_DOWN: turn off the nfc device | 
					
						
							|  |  |  |  *	(requires %NFC_ATTR_DEVICE_INDEX) | 
					
						
							| 
									
										
										
										
											2011-07-01 19:31:34 -03:00
										 |  |  |  * @NFC_CMD_START_POLL: start polling for targets using the given protocols | 
					
						
							|  |  |  |  *	(requires %NFC_ATTR_DEVICE_INDEX and %NFC_ATTR_PROTOCOLS) | 
					
						
							|  |  |  |  * @NFC_CMD_STOP_POLL: stop polling for targets (requires | 
					
						
							|  |  |  |  *	%NFC_ATTR_DEVICE_INDEX) | 
					
						
							|  |  |  |  * @NFC_CMD_GET_TARGET: dump all targets found by the previous poll (requires | 
					
						
							|  |  |  |  *	%NFC_ATTR_DEVICE_INDEX) | 
					
						
							|  |  |  |  * @NFC_EVENT_TARGETS_FOUND: event emitted when a new target is found | 
					
						
							|  |  |  |  *	(it sends %NFC_ATTR_DEVICE_INDEX) | 
					
						
							|  |  |  |  * @NFC_EVENT_DEVICE_ADDED: event emitted when a new device is registred | 
					
						
							|  |  |  |  *	(it sends %NFC_ATTR_DEVICE_NAME, %NFC_ATTR_DEVICE_INDEX and | 
					
						
							|  |  |  |  *	%NFC_ATTR_PROTOCOLS) | 
					
						
							|  |  |  |  * @NFC_EVENT_DEVICE_REMOVED: event emitted when a device is removed | 
					
						
							|  |  |  |  *	(it sends %NFC_ATTR_DEVICE_INDEX) | 
					
						
							| 
									
										
										
										
											2012-06-01 13:21:13 +02:00
										 |  |  |  * @NFC_EVENT_TM_ACTIVATED: event emitted when the adapter is activated in | 
					
						
							|  |  |  |  *      target mode. | 
					
						
							|  |  |  |  * @NFC_EVENT_DEVICE_DEACTIVATED: event emitted when the adapter is deactivated | 
					
						
							|  |  |  |  *      from target mode. | 
					
						
							| 
									
										
										
										
											2012-10-17 14:43:39 +02:00
										 |  |  |  * @NFC_CMD_LLC_GET_PARAMS: request LTO, RW, and MIUX parameters for a device | 
					
						
							|  |  |  |  * @NFC_CMD_LLC_SET_PARAMS: set one or more of LTO, RW, and MIUX parameters for | 
					
						
							|  |  |  |  *	a device. LTO must be set before the link is up otherwise -EINPROGRESS | 
					
						
							|  |  |  |  *	is returned. RW and MIUX can be set at anytime and will be passed in | 
					
						
							|  |  |  |  *	subsequent CONNECT and CC messages. | 
					
						
							|  |  |  |  *	If one of the passed parameters is wrong none is set and -EINVAL is | 
					
						
							|  |  |  |  *	returned. | 
					
						
							| 
									
										
										
										
											2012-12-19 19:11:32 +01:00
										 |  |  |  * @NFC_CMD_ENABLE_SE: Enable the physical link to a specific secure element. | 
					
						
							|  |  |  |  *	Once enabled a secure element will handle card emulation mode, i.e. | 
					
						
							|  |  |  |  *	starting a poll from a device which has a secure element enabled means | 
					
						
							|  |  |  |  *	we want to do SE based card emulation. | 
					
						
							|  |  |  |  * @NFC_CMD_DISABLE_SE: Disable the physical link to a specific secure element. | 
					
						
							| 
									
										
										
										
											2013-07-31 01:19:43 +02:00
										 |  |  |  * @NFC_CMD_FW_DOWNLOAD: Request to Load/flash firmware, or event to inform | 
					
						
							|  |  |  |  *	that some firmware was loaded | 
					
						
							| 
									
										
										
										
											2013-06-25 12:42:54 +02:00
										 |  |  |  * @NFC_EVENT_SE_ADDED: Event emitted when a new secure element is discovered. | 
					
						
							|  |  |  |  *	This typically will be sent whenever a new NFC controller with either | 
					
						
							|  |  |  |  *	an embedded SE or an UICC one connected to it through SWP. | 
					
						
							|  |  |  |  * @NFC_EVENT_SE_REMOVED: Event emitted when a secure element is removed from | 
					
						
							|  |  |  |  *	the system, as a consequence of e.g. an NFC controller being unplugged. | 
					
						
							| 
									
										
										
										
											2013-06-25 16:22:08 +02:00
										 |  |  |  * @NFC_EVENT_SE_CONNECTIVITY: This event is emitted whenever a secure element | 
					
						
							|  |  |  |  *	is requesting connectivity access. For example a UICC SE may need to | 
					
						
							|  |  |  |  *	talk with a sleeping modem and will notify this need by sending this | 
					
						
							|  |  |  |  *	event. It is then up to userspace to decide if it will wake the modem | 
					
						
							|  |  |  |  *	up or not. | 
					
						
							|  |  |  |  * @NFC_EVENT_SE_TRANSACTION: This event is sent when an application running on | 
					
						
							|  |  |  |  *	a specific SE notifies us about the end of a transaction. The parameter | 
					
						
							|  |  |  |  *	for this event is the application ID (AID). | 
					
						
							| 
									
										
										
										
											2013-07-24 18:10:50 +02:00
										 |  |  |  * @NFC_CMD_GET_SE: Dump all discovered secure elements from an NFC controller. | 
					
						
							| 
									
										
										
										
											2013-08-28 00:39:48 +02:00
										 |  |  |  * @NFC_CMD_SE_IO: Send/Receive APDUs to/from the selected secure element. | 
					
						
							| 
									
										
										
										
											2011-07-01 19:31:34 -03:00
										 |  |  |  */ | 
					
						
							|  |  |  | enum nfc_commands { | 
					
						
							|  |  |  | 	NFC_CMD_UNSPEC, | 
					
						
							|  |  |  | 	NFC_CMD_GET_DEVICE, | 
					
						
							| 
									
										
										
										
											2011-09-18 11:19:33 +03:00
										 |  |  | 	NFC_CMD_DEV_UP, | 
					
						
							|  |  |  | 	NFC_CMD_DEV_DOWN, | 
					
						
							| 
									
										
										
										
											2011-12-14 16:43:09 +01:00
										 |  |  | 	NFC_CMD_DEP_LINK_UP, | 
					
						
							|  |  |  | 	NFC_CMD_DEP_LINK_DOWN, | 
					
						
							| 
									
										
										
										
											2011-07-01 19:31:34 -03:00
										 |  |  | 	NFC_CMD_START_POLL, | 
					
						
							|  |  |  | 	NFC_CMD_STOP_POLL, | 
					
						
							|  |  |  | 	NFC_CMD_GET_TARGET, | 
					
						
							|  |  |  | 	NFC_EVENT_TARGETS_FOUND, | 
					
						
							|  |  |  | 	NFC_EVENT_DEVICE_ADDED, | 
					
						
							|  |  |  | 	NFC_EVENT_DEVICE_REMOVED, | 
					
						
							| 
									
										
										
										
											2012-04-10 19:43:04 +02:00
										 |  |  | 	NFC_EVENT_TARGET_LOST, | 
					
						
							| 
									
										
										
										
											2012-06-01 13:21:13 +02:00
										 |  |  | 	NFC_EVENT_TM_ACTIVATED, | 
					
						
							|  |  |  | 	NFC_EVENT_TM_DEACTIVATED, | 
					
						
							| 
									
										
										
										
											2012-10-17 14:43:39 +02:00
										 |  |  | 	NFC_CMD_LLC_GET_PARAMS, | 
					
						
							|  |  |  | 	NFC_CMD_LLC_SET_PARAMS, | 
					
						
							| 
									
										
										
										
											2012-12-19 19:11:32 +01:00
										 |  |  | 	NFC_CMD_ENABLE_SE, | 
					
						
							|  |  |  | 	NFC_CMD_DISABLE_SE, | 
					
						
							| 
									
										
										
										
											2013-02-15 10:43:06 +01:00
										 |  |  | 	NFC_CMD_LLC_SDREQ, | 
					
						
							|  |  |  | 	NFC_EVENT_LLC_SDRES, | 
					
						
							| 
									
										
										
										
											2013-07-31 01:19:43 +02:00
										 |  |  | 	NFC_CMD_FW_DOWNLOAD, | 
					
						
							| 
									
										
										
										
											2013-05-10 15:47:37 +02:00
										 |  |  | 	NFC_EVENT_SE_ADDED, | 
					
						
							|  |  |  | 	NFC_EVENT_SE_REMOVED, | 
					
						
							| 
									
										
										
										
											2013-06-25 16:22:08 +02:00
										 |  |  | 	NFC_EVENT_SE_CONNECTIVITY, | 
					
						
							|  |  |  | 	NFC_EVENT_SE_TRANSACTION, | 
					
						
							| 
									
										
										
										
											2013-07-24 18:10:50 +02:00
										 |  |  | 	NFC_CMD_GET_SE, | 
					
						
							| 
									
										
										
										
											2013-08-28 00:39:48 +02:00
										 |  |  | 	NFC_CMD_SE_IO, | 
					
						
							| 
									
										
										
										
											2011-07-01 19:31:34 -03:00
										 |  |  | /* private: internal use only */ | 
					
						
							|  |  |  | 	__NFC_CMD_AFTER_LAST | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | #define NFC_CMD_MAX (__NFC_CMD_AFTER_LAST - 1)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * enum nfc_attrs - supported nfc attributes | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @NFC_ATTR_UNSPEC: unspecified attribute | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @NFC_ATTR_DEVICE_INDEX: index of nfc device | 
					
						
							|  |  |  |  * @NFC_ATTR_DEVICE_NAME: device name, max 8 chars | 
					
						
							|  |  |  |  * @NFC_ATTR_PROTOCOLS: nfc protocols - bitwise or-ed combination from | 
					
						
							|  |  |  |  *	NFC_PROTO_*_MASK constants | 
					
						
							|  |  |  |  * @NFC_ATTR_TARGET_INDEX: index of the nfc target | 
					
						
							|  |  |  |  * @NFC_ATTR_TARGET_SENS_RES: NFC-A targets extra information such as NFCID | 
					
						
							|  |  |  |  * @NFC_ATTR_TARGET_SEL_RES: NFC-A targets extra information (useful if the | 
					
						
							|  |  |  |  *	target is not NFC-Forum compliant) | 
					
						
							| 
									
										
										
										
											2011-12-22 11:51:54 +02:00
										 |  |  |  * @NFC_ATTR_TARGET_NFCID1: NFC-A targets identifier, max 10 bytes | 
					
						
							| 
									
										
										
										
											2012-01-17 11:06:43 +02:00
										 |  |  |  * @NFC_ATTR_TARGET_SENSB_RES: NFC-B targets extra information, max 12 bytes | 
					
						
							|  |  |  |  * @NFC_ATTR_TARGET_SENSF_RES: NFC-F targets extra information, max 18 bytes | 
					
						
							| 
									
										
										
										
											2011-12-14 16:43:09 +01:00
										 |  |  |  * @NFC_ATTR_COMM_MODE: Passive or active mode | 
					
						
							|  |  |  |  * @NFC_ATTR_RF_MODE: Initiator or target | 
					
						
							| 
									
										
										
										
											2012-05-15 15:57:06 +02:00
										 |  |  |  * @NFC_ATTR_IM_PROTOCOLS: Initiator mode protocols to poll for | 
					
						
							|  |  |  |  * @NFC_ATTR_TM_PROTOCOLS: Target mode protocols to listen for | 
					
						
							| 
									
										
										
										
											2012-10-17 14:43:39 +02:00
										 |  |  |  * @NFC_ATTR_LLC_PARAM_LTO: Link TimeOut parameter | 
					
						
							|  |  |  |  * @NFC_ATTR_LLC_PARAM_RW: Receive Window size parameter | 
					
						
							|  |  |  |  * @NFC_ATTR_LLC_PARAM_MIUX: MIU eXtension parameter | 
					
						
							| 
									
										
										
										
											2012-12-19 19:11:32 +01:00
										 |  |  |  * @NFC_ATTR_SE: Available Secure Elements | 
					
						
							| 
									
										
										
										
											2013-04-29 17:13:27 +02:00
										 |  |  |  * @NFC_ATTR_FIRMWARE_NAME: Free format firmware version | 
					
						
							| 
									
										
										
										
											2013-05-10 15:47:37 +02:00
										 |  |  |  * @NFC_ATTR_SE_INDEX: Secure element index | 
					
						
							|  |  |  |  * @NFC_ATTR_SE_TYPE: Secure element type (UICC or EMBEDDED) | 
					
						
							| 
									
										
										
										
											2013-07-19 14:57:55 +02:00
										 |  |  |  * @NFC_ATTR_FIRMWARE_DOWNLOAD_STATUS: Firmware download operation status | 
					
						
							| 
									
										
										
										
											2013-08-28 00:39:48 +02:00
										 |  |  |  * @NFC_ATTR_APDU: Secure element APDU | 
					
						
							| 
									
										
										
										
											2014-01-14 17:52:09 -07:00
										 |  |  |  * @NFC_ATTR_TARGET_ISO15693_DSFID: ISO 15693 Data Storage Format Identifier | 
					
						
							|  |  |  |  * @NFC_ATTR_TARGET_ISO15693_UID: ISO 15693 Unique Identifier | 
					
						
							| 
									
										
										
										
											2011-07-01 19:31:34 -03:00
										 |  |  |  */ | 
					
						
							|  |  |  | enum nfc_attrs { | 
					
						
							|  |  |  | 	NFC_ATTR_UNSPEC, | 
					
						
							|  |  |  | 	NFC_ATTR_DEVICE_INDEX, | 
					
						
							|  |  |  | 	NFC_ATTR_DEVICE_NAME, | 
					
						
							|  |  |  | 	NFC_ATTR_PROTOCOLS, | 
					
						
							|  |  |  | 	NFC_ATTR_TARGET_INDEX, | 
					
						
							|  |  |  | 	NFC_ATTR_TARGET_SENS_RES, | 
					
						
							|  |  |  | 	NFC_ATTR_TARGET_SEL_RES, | 
					
						
							| 
									
										
										
										
											2011-12-22 11:51:54 +02:00
										 |  |  | 	NFC_ATTR_TARGET_NFCID1, | 
					
						
							| 
									
										
										
										
											2012-01-17 11:06:43 +02:00
										 |  |  | 	NFC_ATTR_TARGET_SENSB_RES, | 
					
						
							|  |  |  | 	NFC_ATTR_TARGET_SENSF_RES, | 
					
						
							| 
									
										
										
										
											2011-12-14 16:43:09 +01:00
										 |  |  | 	NFC_ATTR_COMM_MODE, | 
					
						
							|  |  |  | 	NFC_ATTR_RF_MODE, | 
					
						
							| 
									
										
										
										
											2012-03-05 01:03:34 +01:00
										 |  |  | 	NFC_ATTR_DEVICE_POWERED, | 
					
						
							| 
									
										
										
										
											2012-05-15 15:57:06 +02:00
										 |  |  | 	NFC_ATTR_IM_PROTOCOLS, | 
					
						
							|  |  |  | 	NFC_ATTR_TM_PROTOCOLS, | 
					
						
							| 
									
										
										
										
											2012-10-17 14:43:39 +02:00
										 |  |  | 	NFC_ATTR_LLC_PARAM_LTO, | 
					
						
							|  |  |  | 	NFC_ATTR_LLC_PARAM_RW, | 
					
						
							|  |  |  | 	NFC_ATTR_LLC_PARAM_MIUX, | 
					
						
							| 
									
										
										
										
											2012-12-19 19:11:32 +01:00
										 |  |  | 	NFC_ATTR_SE, | 
					
						
							| 
									
										
										
										
											2013-02-15 10:43:06 +01:00
										 |  |  | 	NFC_ATTR_LLC_SDP, | 
					
						
							| 
									
										
										
										
											2013-04-29 17:13:27 +02:00
										 |  |  | 	NFC_ATTR_FIRMWARE_NAME, | 
					
						
							| 
									
										
										
										
											2013-05-10 15:47:37 +02:00
										 |  |  | 	NFC_ATTR_SE_INDEX, | 
					
						
							|  |  |  | 	NFC_ATTR_SE_TYPE, | 
					
						
							| 
									
										
										
										
											2013-06-25 16:22:08 +02:00
										 |  |  | 	NFC_ATTR_SE_AID, | 
					
						
							| 
									
										
										
										
											2013-07-19 14:57:55 +02:00
										 |  |  | 	NFC_ATTR_FIRMWARE_DOWNLOAD_STATUS, | 
					
						
							| 
									
										
										
										
											2013-08-28 00:39:48 +02:00
										 |  |  | 	NFC_ATTR_SE_APDU, | 
					
						
							| 
									
										
										
										
											2014-01-14 17:52:09 -07:00
										 |  |  | 	NFC_ATTR_TARGET_ISO15693_DSFID, | 
					
						
							|  |  |  | 	NFC_ATTR_TARGET_ISO15693_UID, | 
					
						
							| 
									
										
										
										
											2011-07-01 19:31:34 -03:00
										 |  |  | /* private: internal use only */ | 
					
						
							|  |  |  | 	__NFC_ATTR_AFTER_LAST | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | #define NFC_ATTR_MAX (__NFC_ATTR_AFTER_LAST - 1)
 | 
					
						
							| 
									
										
										
										
											2013-02-15 10:43:06 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | enum nfc_sdp_attr { | 
					
						
							|  |  |  | 	NFC_SDP_ATTR_UNSPEC, | 
					
						
							|  |  |  | 	NFC_SDP_ATTR_URI, | 
					
						
							|  |  |  | 	NFC_SDP_ATTR_SAP, | 
					
						
							|  |  |  | /* private: internal use only */ | 
					
						
							|  |  |  | 	__NFC_SDP_ATTR_AFTER_LAST | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | #define NFC_SDP_ATTR_MAX (__NFC_SDP_ATTR_AFTER_LAST - 1)
 | 
					
						
							| 
									
										
										
										
											2011-07-01 19:31:34 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define NFC_DEVICE_NAME_MAXSIZE 8
 | 
					
						
							| 
									
										
										
										
											2012-01-17 11:06:43 +02:00
										 |  |  | #define NFC_NFCID1_MAXSIZE 10
 | 
					
						
							| 
									
										
										
										
											2013-05-27 15:29:11 +02:00
										 |  |  | #define NFC_NFCID2_MAXSIZE 8
 | 
					
						
							|  |  |  | #define NFC_NFCID3_MAXSIZE 10
 | 
					
						
							| 
									
										
										
										
											2012-01-17 11:06:43 +02:00
										 |  |  | #define NFC_SENSB_RES_MAXSIZE 12
 | 
					
						
							|  |  |  | #define NFC_SENSF_RES_MAXSIZE 18
 | 
					
						
							| 
									
										
										
										
											2012-06-01 13:21:13 +02:00
										 |  |  | #define NFC_GB_MAXSIZE        48
 | 
					
						
							| 
									
										
										
										
											2013-04-29 17:13:27 +02:00
										 |  |  | #define NFC_FIRMWARE_NAME_MAXSIZE 32
 | 
					
						
							| 
									
										
										
										
											2014-01-14 17:52:09 -07:00
										 |  |  | #define NFC_ISO15693_UID_MAXSIZE 8
 | 
					
						
							| 
									
										
										
										
											2011-07-01 19:31:34 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* NFC protocols */ | 
					
						
							|  |  |  | #define NFC_PROTO_JEWEL		1
 | 
					
						
							|  |  |  | #define NFC_PROTO_MIFARE	2
 | 
					
						
							|  |  |  | #define NFC_PROTO_FELICA	3
 | 
					
						
							|  |  |  | #define NFC_PROTO_ISO14443	4
 | 
					
						
							|  |  |  | #define NFC_PROTO_NFC_DEP	5
 | 
					
						
							| 
									
										
										
										
											2012-07-04 00:14:04 +02:00
										 |  |  | #define NFC_PROTO_ISO14443_B	6
 | 
					
						
							| 
									
										
										
										
											2014-01-14 17:52:09 -07:00
										 |  |  | #define NFC_PROTO_ISO15693	7
 | 
					
						
							| 
									
										
										
										
											2011-07-01 19:31:34 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-14 17:52:09 -07:00
										 |  |  | #define NFC_PROTO_MAX		8
 | 
					
						
							| 
									
										
										
										
											2011-07-01 19:31:34 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-14 16:43:09 +01:00
										 |  |  | /* NFC communication modes */ | 
					
						
							|  |  |  | #define NFC_COMM_ACTIVE  0
 | 
					
						
							|  |  |  | #define NFC_COMM_PASSIVE 1
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* NFC RF modes */ | 
					
						
							|  |  |  | #define NFC_RF_INITIATOR 0
 | 
					
						
							|  |  |  | #define NFC_RF_TARGET    1
 | 
					
						
							| 
									
										
										
										
											2012-05-31 00:02:26 +02:00
										 |  |  | #define NFC_RF_NONE      2
 | 
					
						
							| 
									
										
										
										
											2011-12-14 16:43:09 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-01 19:31:34 -03:00
										 |  |  | /* NFC protocols masks used in bitsets */ | 
					
						
							| 
									
										
										
										
											2012-07-04 00:14:04 +02:00
										 |  |  | #define NFC_PROTO_JEWEL_MASK      (1 << NFC_PROTO_JEWEL)
 | 
					
						
							|  |  |  | #define NFC_PROTO_MIFARE_MASK     (1 << NFC_PROTO_MIFARE)
 | 
					
						
							|  |  |  | #define NFC_PROTO_FELICA_MASK	  (1 << NFC_PROTO_FELICA)
 | 
					
						
							|  |  |  | #define NFC_PROTO_ISO14443_MASK	  (1 << NFC_PROTO_ISO14443)
 | 
					
						
							|  |  |  | #define NFC_PROTO_NFC_DEP_MASK	  (1 << NFC_PROTO_NFC_DEP)
 | 
					
						
							|  |  |  | #define NFC_PROTO_ISO14443_B_MASK (1 << NFC_PROTO_ISO14443_B)
 | 
					
						
							| 
									
										
										
										
											2014-01-14 17:52:09 -07:00
										 |  |  | #define NFC_PROTO_ISO15693_MASK	  (1 << NFC_PROTO_ISO15693)
 | 
					
						
							| 
									
										
										
										
											2011-07-01 19:31:34 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-19 19:11:32 +01:00
										 |  |  | /* NFC Secure Elements */ | 
					
						
							|  |  |  | #define NFC_SE_UICC     0x1
 | 
					
						
							|  |  |  | #define NFC_SE_EMBEDDED 0x2
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-10 15:28:38 +02:00
										 |  |  | #define NFC_SE_DISABLED 0x0
 | 
					
						
							|  |  |  | #define NFC_SE_ENABLED  0x1
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-01 19:31:36 -03:00
										 |  |  | struct sockaddr_nfc { | 
					
						
							|  |  |  | 	sa_family_t sa_family; | 
					
						
							|  |  |  | 	__u32 dev_idx; | 
					
						
							|  |  |  | 	__u32 target_idx; | 
					
						
							|  |  |  | 	__u32 nfc_protocol; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-14 16:43:12 +01:00
										 |  |  | #define NFC_LLCP_MAX_SERVICE_NAME 63
 | 
					
						
							|  |  |  | struct sockaddr_nfc_llcp { | 
					
						
							|  |  |  | 	sa_family_t sa_family; | 
					
						
							|  |  |  | 	__u32 dev_idx; | 
					
						
							|  |  |  | 	__u32 target_idx; | 
					
						
							|  |  |  | 	__u32 nfc_protocol; | 
					
						
							|  |  |  | 	__u8 dsap; /* Destination SAP, if known */ | 
					
						
							|  |  |  | 	__u8 ssap; /* Source SAP to be bound to */ | 
					
						
							|  |  |  | 	char service_name[NFC_LLCP_MAX_SERVICE_NAME]; /* Service name URI */; | 
					
						
							|  |  |  | 	size_t service_name_len; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-01 19:31:35 -03:00
										 |  |  | /* NFC socket protocols */ | 
					
						
							| 
									
										
										
										
											2011-07-01 19:31:36 -03:00
										 |  |  | #define NFC_SOCKPROTO_RAW	0
 | 
					
						
							| 
									
										
										
										
											2011-12-14 16:43:12 +01:00
										 |  |  | #define NFC_SOCKPROTO_LLCP	1
 | 
					
						
							|  |  |  | #define NFC_SOCKPROTO_MAX	2
 | 
					
						
							| 
									
										
										
										
											2011-07-01 19:31:35 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-19 15:47:11 +02:00
										 |  |  | #define NFC_HEADER_SIZE 1
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-26 18:16:44 +02:00
										 |  |  | /**
 | 
					
						
							|  |  |  |  * Pseudo-header info for raw socket packets | 
					
						
							|  |  |  |  * First byte is the adapter index | 
					
						
							|  |  |  |  * Second byte contains flags | 
					
						
							|  |  |  |  *  - 0x01 - Direction (0=RX, 1=TX) | 
					
						
							| 
									
										
										
										
											2014-05-05 19:43:31 +09:00
										 |  |  |  *  - 0x02-0x04 - Payload type (000=LLCP, 001=NCI, 010=HCI, 011=Digital, | 
					
						
							|  |  |  |  *                              100=Proprietary) | 
					
						
							|  |  |  |  *  - 0x05-0x80 - Reserved | 
					
						
							| 
									
										
										
										
											2012-09-26 18:16:44 +02:00
										 |  |  |  **/ | 
					
						
							| 
									
										
										
										
											2014-05-05 19:43:31 +09:00
										 |  |  | #define NFC_RAW_HEADER_SIZE	2
 | 
					
						
							|  |  |  | #define NFC_DIRECTION_RX		0x00
 | 
					
						
							|  |  |  | #define NFC_DIRECTION_TX		0x01
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define RAW_PAYLOAD_LLCP 0
 | 
					
						
							|  |  |  | #define RAW_PAYLOAD_NCI	1
 | 
					
						
							|  |  |  | #define RAW_PAYLOAD_HCI	2
 | 
					
						
							|  |  |  | #define RAW_PAYLOAD_DIGITAL	3
 | 
					
						
							|  |  |  | #define RAW_PAYLOAD_PROPRIETARY	4
 | 
					
						
							| 
									
										
										
										
											2012-09-26 18:16:44 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-22 10:53:25 +01:00
										 |  |  | /* socket option names */ | 
					
						
							| 
									
										
										
										
											2013-04-02 10:25:16 +02:00
										 |  |  | #define NFC_LLCP_RW		0
 | 
					
						
							|  |  |  | #define NFC_LLCP_MIUX		1
 | 
					
						
							|  |  |  | #define NFC_LLCP_REMOTE_MIU	2
 | 
					
						
							|  |  |  | #define NFC_LLCP_REMOTE_LTO	3
 | 
					
						
							|  |  |  | #define NFC_LLCP_REMOTE_RW	4
 | 
					
						
							| 
									
										
										
										
											2013-02-22 10:53:25 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-01 19:31:34 -03:00
										 |  |  | #endif /*__LINUX_NFC_H */
 |