| 
									
										
										
										
											2012-04-10 19:43:06 +02:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright (C) 2011  Intel Corporation. All rights reserved. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is free software; you can redistribute it and/or modify | 
					
						
							|  |  |  |  * it under the terms of the GNU General Public License as published by | 
					
						
							|  |  |  |  * the Free Software Foundation; either version 2 of the License, or | 
					
						
							|  |  |  |  * (at your option) any later version. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 
					
						
							|  |  |  |  * GNU General Public License for more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * You should have received a copy of the GNU General Public License | 
					
						
							|  |  |  |  * along with this program; if not, write to the | 
					
						
							|  |  |  |  * Free Software Foundation, Inc., | 
					
						
							|  |  |  |  * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef __NET_HCI_H
 | 
					
						
							|  |  |  | #define __NET_HCI_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <linux/skbuff.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <net/nfc/nfc.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-02 18:44:06 +02:00
										 |  |  | struct nfc_phy_ops { | 
					
						
							|  |  |  | 	int (*write)(void *dev_id, struct sk_buff *skb); | 
					
						
							|  |  |  | 	int (*enable)(void *dev_id); | 
					
						
							|  |  |  | 	void (*disable)(void *dev_id); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-10 19:43:06 +02:00
										 |  |  | struct nfc_hci_dev; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct nfc_hci_ops { | 
					
						
							|  |  |  | 	int (*open) (struct nfc_hci_dev *hdev); | 
					
						
							|  |  |  | 	void (*close) (struct nfc_hci_dev *hdev); | 
					
						
							|  |  |  | 	int (*hci_ready) (struct nfc_hci_dev *hdev); | 
					
						
							| 
									
										
										
										
											2012-09-20 08:59:10 +02:00
										 |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * xmit must always send the complete buffer before | 
					
						
							|  |  |  | 	 * returning. Returned result must be 0 for success | 
					
						
							|  |  |  | 	 * or negative for failure. | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2012-04-10 19:43:06 +02:00
										 |  |  | 	int (*xmit) (struct nfc_hci_dev *hdev, struct sk_buff *skb); | 
					
						
							| 
									
										
										
										
											2012-05-15 15:57:06 +02:00
										 |  |  | 	int (*start_poll) (struct nfc_hci_dev *hdev, | 
					
						
							|  |  |  | 			   u32 im_protocols, u32 tm_protocols); | 
					
						
							| 
									
										
										
										
											2012-09-27 17:32:57 +08:00
										 |  |  | 	int (*dep_link_up)(struct nfc_hci_dev *hdev, struct nfc_target *target, | 
					
						
							|  |  |  | 			   u8 comm_mode, u8 *gb, size_t gb_len); | 
					
						
							|  |  |  | 	int (*dep_link_down)(struct nfc_hci_dev *hdev); | 
					
						
							| 
									
										
										
										
											2012-04-10 19:43:06 +02:00
										 |  |  | 	int (*target_from_gate) (struct nfc_hci_dev *hdev, u8 gate, | 
					
						
							|  |  |  | 				 struct nfc_target *target); | 
					
						
							|  |  |  | 	int (*complete_target_discovered) (struct nfc_hci_dev *hdev, u8 gate, | 
					
						
							|  |  |  | 					   struct nfc_target *target); | 
					
						
							| 
									
										
										
										
											2012-09-27 17:32:58 +08:00
										 |  |  | 	int (*im_transceive) (struct nfc_hci_dev *hdev, | 
					
						
							| 
									
										
										
										
											2012-09-11 10:43:50 +02:00
										 |  |  | 			      struct nfc_target *target, struct sk_buff *skb, | 
					
						
							|  |  |  | 			      data_exchange_cb_t cb, void *cb_context); | 
					
						
							| 
									
										
										
										
											2012-09-27 17:32:58 +08:00
										 |  |  | 	int (*tm_send)(struct nfc_hci_dev *hdev, struct sk_buff *skb); | 
					
						
							| 
									
										
										
										
											2012-05-07 12:31:16 +02:00
										 |  |  | 	int (*check_presence)(struct nfc_hci_dev *hdev, | 
					
						
							|  |  |  | 			      struct nfc_target *target); | 
					
						
							| 
									
										
										
										
											2012-11-28 15:48:44 +01:00
										 |  |  | 	int (*event_received)(struct nfc_hci_dev *hdev, u8 gate, u8 event, | 
					
						
							|  |  |  | 			      struct sk_buff *skb); | 
					
						
							| 
									
										
										
										
											2012-12-19 19:11:32 +01:00
										 |  |  | 	int (*enable_se)(struct nfc_dev *dev, u32 secure_element); | 
					
						
							|  |  |  | 	int (*disable_se)(struct nfc_dev *dev, u32 secure_element); | 
					
						
							| 
									
										
										
										
											2012-04-10 19:43:06 +02:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-05 14:42:11 +02:00
										 |  |  | /* Pipes */ | 
					
						
							|  |  |  | #define NFC_HCI_INVALID_PIPE	0x80
 | 
					
						
							|  |  |  | #define NFC_HCI_LINK_MGMT_PIPE	0x00
 | 
					
						
							|  |  |  | #define NFC_HCI_ADMIN_PIPE	0x01
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct nfc_hci_gate { | 
					
						
							|  |  |  | 	u8 gate; | 
					
						
							|  |  |  | 	u8 pipe; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define NFC_HCI_MAX_CUSTOM_GATES	50
 | 
					
						
							| 
									
										
										
										
											2012-04-10 19:43:06 +02:00
										 |  |  | struct nfc_hci_init_data { | 
					
						
							|  |  |  | 	u8 gate_count; | 
					
						
							| 
									
										
										
										
											2012-06-05 14:42:11 +02:00
										 |  |  | 	struct nfc_hci_gate gates[NFC_HCI_MAX_CUSTOM_GATES]; | 
					
						
							| 
									
										
										
										
											2012-04-10 19:43:06 +02:00
										 |  |  | 	char session_id[9]; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef int (*xmit) (struct sk_buff *skb, void *cb_data); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define NFC_HCI_MAX_GATES		256
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-18 14:15:49 +01:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * These values can be specified by a driver to indicate it requires some | 
					
						
							|  |  |  |  * adaptation of the HCI standard. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * NFC_HCI_QUIRK_SHORT_CLEAR - send HCI_ADM_CLEAR_ALL_PIPE cmd with no params | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | enum { | 
					
						
							|  |  |  | 	NFC_HCI_QUIRK_SHORT_CLEAR	= 0, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-10 19:43:06 +02:00
										 |  |  | struct nfc_hci_dev { | 
					
						
							|  |  |  | 	struct nfc_dev *ndev; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	u32 max_data_link_payload; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-26 18:06:27 +01:00
										 |  |  | 	bool shutting_down; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-10 19:43:06 +02:00
										 |  |  | 	struct mutex msg_tx_mutex; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	struct list_head msg_tx_queue; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	struct work_struct msg_tx_work; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	struct timer_list cmd_timer; | 
					
						
							|  |  |  | 	struct hci_msg *cmd_pending_msg; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	struct sk_buff_head rx_hcp_frags; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	struct work_struct msg_rx_work; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	struct sk_buff_head msg_rx_queue; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	struct nfc_hci_ops *ops; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-18 19:45:48 +02:00
										 |  |  | 	struct nfc_llc *llc; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-10 19:43:06 +02:00
										 |  |  | 	struct nfc_hci_init_data init_data; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	void *clientdata; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	u8 gate2pipe[NFC_HCI_MAX_GATES]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	u8 sw_romlib; | 
					
						
							|  |  |  | 	u8 sw_patch; | 
					
						
							|  |  |  | 	u8 sw_flashlib_major; | 
					
						
							|  |  |  | 	u8 sw_flashlib_minor; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	u8 hw_derivative; | 
					
						
							|  |  |  | 	u8 hw_version; | 
					
						
							|  |  |  | 	u8 hw_mpw; | 
					
						
							|  |  |  | 	u8 hw_software; | 
					
						
							|  |  |  | 	u8 hw_bsid; | 
					
						
							| 
									
										
										
										
											2012-09-11 10:43:50 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	int async_cb_type; | 
					
						
							|  |  |  | 	data_exchange_cb_t async_cb; | 
					
						
							|  |  |  | 	void *async_cb_context; | 
					
						
							| 
									
										
										
										
											2012-09-27 17:32:54 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	u8 *gb; | 
					
						
							|  |  |  | 	size_t gb_len; | 
					
						
							| 
									
										
										
										
											2012-12-18 14:15:49 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	unsigned long quirks; | 
					
						
							| 
									
										
										
										
											2012-04-10 19:43:06 +02:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* hci device allocation */ | 
					
						
							|  |  |  | struct nfc_hci_dev *nfc_hci_allocate_device(struct nfc_hci_ops *ops, | 
					
						
							|  |  |  | 					    struct nfc_hci_init_data *init_data, | 
					
						
							| 
									
										
										
										
											2012-12-18 14:15:49 +01:00
										 |  |  | 					    unsigned long quirks, | 
					
						
							| 
									
										
										
										
											2012-04-10 19:43:06 +02:00
										 |  |  | 					    u32 protocols, | 
					
						
							| 
									
										
										
										
											2012-12-19 19:11:32 +01:00
										 |  |  | 					    u32 supported_se, | 
					
						
							| 
									
										
										
										
											2012-09-18 19:45:48 +02:00
										 |  |  | 					    const char *llc_name, | 
					
						
							| 
									
										
										
										
											2012-04-10 19:43:06 +02:00
										 |  |  | 					    int tx_headroom, | 
					
						
							|  |  |  | 					    int tx_tailroom, | 
					
						
							|  |  |  | 					    int max_link_payload); | 
					
						
							|  |  |  | void nfc_hci_free_device(struct nfc_hci_dev *hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int nfc_hci_register_device(struct nfc_hci_dev *hdev); | 
					
						
							|  |  |  | void nfc_hci_unregister_device(struct nfc_hci_dev *hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void nfc_hci_set_clientdata(struct nfc_hci_dev *hdev, void *clientdata); | 
					
						
							|  |  |  | void *nfc_hci_get_clientdata(struct nfc_hci_dev *hdev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-30 18:21:51 +02:00
										 |  |  | void nfc_hci_driver_failure(struct nfc_hci_dev *hdev, int err); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-17 16:50:10 +02:00
										 |  |  | int nfc_hci_result_to_errno(u8 result); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-10 19:43:06 +02:00
										 |  |  | /* Host IDs */ | 
					
						
							|  |  |  | #define NFC_HCI_HOST_CONTROLLER_ID	0x00
 | 
					
						
							|  |  |  | #define NFC_HCI_TERMINAL_HOST_ID	0x01
 | 
					
						
							|  |  |  | #define NFC_HCI_UICC_HOST_ID		0x02
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Host Controller Gates and registry indexes */ | 
					
						
							|  |  |  | #define NFC_HCI_ADMIN_GATE 0x00
 | 
					
						
							|  |  |  | #define NFC_HCI_ADMIN_SESSION_IDENTITY	0x01
 | 
					
						
							|  |  |  | #define NFC_HCI_ADMIN_MAX_PIPE		0x02
 | 
					
						
							|  |  |  | #define NFC_HCI_ADMIN_WHITELIST		0x03
 | 
					
						
							|  |  |  | #define NFC_HCI_ADMIN_HOST_LIST		0x04
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define NFC_HCI_LOOPBACK_GATE		0x04
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define NFC_HCI_ID_MGMT_GATE		0x05
 | 
					
						
							|  |  |  | #define NFC_HCI_ID_MGMT_VERSION_SW	0x01
 | 
					
						
							|  |  |  | #define NFC_HCI_ID_MGMT_VERSION_HW	0x03
 | 
					
						
							|  |  |  | #define NFC_HCI_ID_MGMT_VENDOR_NAME	0x04
 | 
					
						
							|  |  |  | #define NFC_HCI_ID_MGMT_MODEL_ID	0x05
 | 
					
						
							|  |  |  | #define NFC_HCI_ID_MGMT_HCI_VERSION	0x02
 | 
					
						
							|  |  |  | #define NFC_HCI_ID_MGMT_GATES_LIST	0x06
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define NFC_HCI_LINK_MGMT_GATE		0x06
 | 
					
						
							|  |  |  | #define NFC_HCI_LINK_MGMT_REC_ERROR	0x01
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define NFC_HCI_RF_READER_B_GATE			0x11
 | 
					
						
							|  |  |  | #define NFC_HCI_RF_READER_B_PUPI			0x03
 | 
					
						
							|  |  |  | #define NFC_HCI_RF_READER_B_APPLICATION_DATA		0x04
 | 
					
						
							|  |  |  | #define NFC_HCI_RF_READER_B_AFI				0x02
 | 
					
						
							|  |  |  | #define NFC_HCI_RF_READER_B_HIGHER_LAYER_RESPONSE	0x01
 | 
					
						
							|  |  |  | #define NFC_HCI_RF_READER_B_HIGHER_LAYER_DATA		0x05
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define NFC_HCI_RF_READER_A_GATE		0x13
 | 
					
						
							|  |  |  | #define NFC_HCI_RF_READER_A_UID			0x02
 | 
					
						
							|  |  |  | #define NFC_HCI_RF_READER_A_ATQA		0x04
 | 
					
						
							|  |  |  | #define NFC_HCI_RF_READER_A_APPLICATION_DATA	0x05
 | 
					
						
							|  |  |  | #define NFC_HCI_RF_READER_A_SAK			0x03
 | 
					
						
							|  |  |  | #define NFC_HCI_RF_READER_A_FWI_SFGT		0x06
 | 
					
						
							|  |  |  | #define NFC_HCI_RF_READER_A_DATARATE_MAX	0x01
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define NFC_HCI_TYPE_A_SEL_PROT(x)		(((x) & 0x60) >> 5)
 | 
					
						
							|  |  |  | #define NFC_HCI_TYPE_A_SEL_PROT_MIFARE		0
 | 
					
						
							|  |  |  | #define NFC_HCI_TYPE_A_SEL_PROT_ISO14443	1
 | 
					
						
							|  |  |  | #define NFC_HCI_TYPE_A_SEL_PROT_DEP		2
 | 
					
						
							|  |  |  | #define NFC_HCI_TYPE_A_SEL_PROT_ISO14443_DEP	3
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Generic events */ | 
					
						
							|  |  |  | #define NFC_HCI_EVT_HCI_END_OF_OPERATION	0x01
 | 
					
						
							|  |  |  | #define NFC_HCI_EVT_POST_DATA			0x02
 | 
					
						
							|  |  |  | #define NFC_HCI_EVT_HOT_PLUG			0x03
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Reader RF gates events */ | 
					
						
							|  |  |  | #define NFC_HCI_EVT_READER_REQUESTED	0x10
 | 
					
						
							|  |  |  | #define NFC_HCI_EVT_END_OPERATION	0x11
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Reader Application gate events */ | 
					
						
							|  |  |  | #define NFC_HCI_EVT_TARGET_DISCOVERED	0x10
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* receiving messages from lower layer */ | 
					
						
							|  |  |  | void nfc_hci_resp_received(struct nfc_hci_dev *hdev, u8 result, | 
					
						
							|  |  |  | 			   struct sk_buff *skb); | 
					
						
							|  |  |  | void nfc_hci_cmd_received(struct nfc_hci_dev *hdev, u8 pipe, u8 cmd, | 
					
						
							|  |  |  | 			  struct sk_buff *skb); | 
					
						
							|  |  |  | void nfc_hci_event_received(struct nfc_hci_dev *hdev, u8 pipe, u8 event, | 
					
						
							|  |  |  | 			    struct sk_buff *skb); | 
					
						
							|  |  |  | void nfc_hci_recv_frame(struct nfc_hci_dev *hdev, struct sk_buff *skb); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* connecting to gates and sending hci instructions */ | 
					
						
							| 
									
										
										
										
											2012-06-05 14:42:11 +02:00
										 |  |  | int nfc_hci_connect_gate(struct nfc_hci_dev *hdev, u8 dest_host, u8 dest_gate, | 
					
						
							|  |  |  | 			 u8 pipe); | 
					
						
							| 
									
										
										
										
											2012-04-10 19:43:06 +02:00
										 |  |  | int nfc_hci_disconnect_gate(struct nfc_hci_dev *hdev, u8 gate); | 
					
						
							|  |  |  | int nfc_hci_disconnect_all_gates(struct nfc_hci_dev *hdev); | 
					
						
							|  |  |  | int nfc_hci_get_param(struct nfc_hci_dev *hdev, u8 gate, u8 idx, | 
					
						
							|  |  |  | 		      struct sk_buff **skb); | 
					
						
							|  |  |  | int nfc_hci_set_param(struct nfc_hci_dev *hdev, u8 gate, u8 idx, | 
					
						
							|  |  |  | 		      const u8 *param, size_t param_len); | 
					
						
							|  |  |  | int nfc_hci_send_cmd(struct nfc_hci_dev *hdev, u8 gate, u8 cmd, | 
					
						
							|  |  |  | 		     const u8 *param, size_t param_len, struct sk_buff **skb); | 
					
						
							| 
									
										
										
										
											2012-09-11 10:42:54 +02:00
										 |  |  | int nfc_hci_send_cmd_async(struct nfc_hci_dev *hdev, u8 gate, u8 cmd, | 
					
						
							|  |  |  | 			   const u8 *param, size_t param_len, | 
					
						
							|  |  |  | 			   data_exchange_cb_t cb, void *cb_context); | 
					
						
							| 
									
										
										
										
											2012-04-10 19:43:06 +02:00
										 |  |  | int nfc_hci_send_response(struct nfc_hci_dev *hdev, u8 gate, u8 response, | 
					
						
							|  |  |  | 			  const u8 *param, size_t param_len); | 
					
						
							|  |  |  | int nfc_hci_send_event(struct nfc_hci_dev *hdev, u8 gate, u8 event, | 
					
						
							|  |  |  | 		       const u8 *param, size_t param_len); | 
					
						
							| 
									
										
										
										
											2012-09-27 17:32:55 +08:00
										 |  |  | int nfc_hci_target_discovered(struct nfc_hci_dev *hdev, u8 gate); | 
					
						
							| 
									
										
										
										
											2012-10-23 11:37:43 +02:00
										 |  |  | u32 nfc_hci_sak_to_protocol(u8 sak); | 
					
						
							| 
									
										
										
										
											2012-04-10 19:43:06 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | #endif /* __NET_HCI_H */
 |