blob: 14faf2dc7a4878d3c49e1cde13b902290b0a396e [file] [log] [blame]
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +02001/*
2 * Copyright (C) 2011 Intel Corporation. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the
16 * Free Software Foundation, Inc.,
17 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 */
19
20#ifndef __NET_HCI_H
21#define __NET_HCI_H
22
23#include <linux/skbuff.h>
24
25#include <net/nfc/nfc.h>
26
Eric Lapuyade97f18412012-10-02 18:44:06 +020027struct nfc_phy_ops {
28 int (*write)(void *dev_id, struct sk_buff *skb);
29 int (*enable)(void *dev_id);
30 void (*disable)(void *dev_id);
31};
32
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +020033struct nfc_hci_dev;
34
35struct nfc_hci_ops {
36 int (*open) (struct nfc_hci_dev *hdev);
37 void (*close) (struct nfc_hci_dev *hdev);
38 int (*hci_ready) (struct nfc_hci_dev *hdev);
Waldemar Rymarkiewicz96e32402012-09-20 08:59:10 +020039 /*
40 * xmit must always send the complete buffer before
41 * returning. Returned result must be 0 for success
42 * or negative for failure.
43 */
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +020044 int (*xmit) (struct nfc_hci_dev *hdev, struct sk_buff *skb);
Samuel Ortizfe7c5802012-05-15 15:57:06 +020045 int (*start_poll) (struct nfc_hci_dev *hdev,
46 u32 im_protocols, u32 tm_protocols);
Arron Wangc40d1742012-09-27 17:32:57 +080047 int (*dep_link_up)(struct nfc_hci_dev *hdev, struct nfc_target *target,
48 u8 comm_mode, u8 *gb, size_t gb_len);
49 int (*dep_link_down)(struct nfc_hci_dev *hdev);
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +020050 int (*target_from_gate) (struct nfc_hci_dev *hdev, u8 gate,
51 struct nfc_target *target);
52 int (*complete_target_discovered) (struct nfc_hci_dev *hdev, u8 gate,
53 struct nfc_target *target);
Arron Wange8107622012-09-27 17:32:58 +080054 int (*im_transceive) (struct nfc_hci_dev *hdev,
Eric Lapuyadef3e8fb52012-09-11 10:43:50 +020055 struct nfc_target *target, struct sk_buff *skb,
56 data_exchange_cb_t cb, void *cb_context);
Arron Wange8107622012-09-27 17:32:58 +080057 int (*tm_send)(struct nfc_hci_dev *hdev, struct sk_buff *skb);
Eric Lapuyade1676f752012-05-07 12:31:16 +020058 int (*check_presence)(struct nfc_hci_dev *hdev,
59 struct nfc_target *target);
Eric Lapuyade27c31192012-11-28 15:48:44 +010060 int (*event_received)(struct nfc_hci_dev *hdev, u8 gate, u8 event,
61 struct sk_buff *skb);
Samuel Ortiz390a1bd2012-12-19 19:11:32 +010062 int (*enable_se)(struct nfc_dev *dev, u32 secure_element);
63 int (*disable_se)(struct nfc_dev *dev, u32 secure_element);
Eric Lapuyade9a695d22013-04-29 17:47:42 +020064 int (*fw_upload)(struct nfc_hci_dev *hdev, const char *firmware_name);
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +020065};
66
Eric Lapuyadea10d5952012-06-05 14:42:11 +020067/* Pipes */
68#define NFC_HCI_INVALID_PIPE 0x80
69#define NFC_HCI_LINK_MGMT_PIPE 0x00
70#define NFC_HCI_ADMIN_PIPE 0x01
71
72struct nfc_hci_gate {
73 u8 gate;
74 u8 pipe;
75};
76
77#define NFC_HCI_MAX_CUSTOM_GATES 50
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +020078struct nfc_hci_init_data {
79 u8 gate_count;
Eric Lapuyadea10d5952012-06-05 14:42:11 +020080 struct nfc_hci_gate gates[NFC_HCI_MAX_CUSTOM_GATES];
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +020081 char session_id[9];
82};
83
84typedef int (*xmit) (struct sk_buff *skb, void *cb_data);
85
86#define NFC_HCI_MAX_GATES 256
87
Eric Lapuyadebf71ab82012-12-18 14:15:49 +010088/*
89 * These values can be specified by a driver to indicate it requires some
90 * adaptation of the HCI standard.
91 *
92 * NFC_HCI_QUIRK_SHORT_CLEAR - send HCI_ADM_CLEAR_ALL_PIPE cmd with no params
93 */
94enum {
95 NFC_HCI_QUIRK_SHORT_CLEAR = 0,
96};
97
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +020098struct nfc_hci_dev {
99 struct nfc_dev *ndev;
100
101 u32 max_data_link_payload;
102
Eric Lapuyadef0c91032012-11-26 18:06:27 +0100103 bool shutting_down;
104
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200105 struct mutex msg_tx_mutex;
106
107 struct list_head msg_tx_queue;
108
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200109 struct work_struct msg_tx_work;
110
111 struct timer_list cmd_timer;
112 struct hci_msg *cmd_pending_msg;
113
114 struct sk_buff_head rx_hcp_frags;
115
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200116 struct work_struct msg_rx_work;
117
118 struct sk_buff_head msg_rx_queue;
119
120 struct nfc_hci_ops *ops;
121
Eric Lapuyade412fda52012-09-18 19:45:48 +0200122 struct nfc_llc *llc;
123
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200124 struct nfc_hci_init_data init_data;
125
126 void *clientdata;
127
128 u8 gate2pipe[NFC_HCI_MAX_GATES];
129
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200130 u8 sw_romlib;
131 u8 sw_patch;
132 u8 sw_flashlib_major;
133 u8 sw_flashlib_minor;
134
135 u8 hw_derivative;
136 u8 hw_version;
137 u8 hw_mpw;
138 u8 hw_software;
139 u8 hw_bsid;
Eric Lapuyadef3e8fb52012-09-11 10:43:50 +0200140
141 int async_cb_type;
142 data_exchange_cb_t async_cb;
143 void *async_cb_context;
Arron Wang7e2afc92012-09-27 17:32:54 +0800144
145 u8 *gb;
146 size_t gb_len;
Eric Lapuyadebf71ab82012-12-18 14:15:49 +0100147
148 unsigned long quirks;
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200149};
150
151/* hci device allocation */
152struct nfc_hci_dev *nfc_hci_allocate_device(struct nfc_hci_ops *ops,
153 struct nfc_hci_init_data *init_data,
Eric Lapuyadebf71ab82012-12-18 14:15:49 +0100154 unsigned long quirks,
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200155 u32 protocols,
Samuel Ortiz390a1bd2012-12-19 19:11:32 +0100156 u32 supported_se,
Eric Lapuyade412fda52012-09-18 19:45:48 +0200157 const char *llc_name,
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200158 int tx_headroom,
159 int tx_tailroom,
160 int max_link_payload);
161void nfc_hci_free_device(struct nfc_hci_dev *hdev);
162
163int nfc_hci_register_device(struct nfc_hci_dev *hdev);
164void nfc_hci_unregister_device(struct nfc_hci_dev *hdev);
165
166void nfc_hci_set_clientdata(struct nfc_hci_dev *hdev, void *clientdata);
167void *nfc_hci_get_clientdata(struct nfc_hci_dev *hdev);
168
Eric Lapuyadea9a741a2012-04-30 18:21:51 +0200169void nfc_hci_driver_failure(struct nfc_hci_dev *hdev, int err);
170
Eric Lapuyade84d48192012-10-17 16:50:10 +0200171int nfc_hci_result_to_errno(u8 result);
172
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200173/* Host IDs */
174#define NFC_HCI_HOST_CONTROLLER_ID 0x00
175#define NFC_HCI_TERMINAL_HOST_ID 0x01
176#define NFC_HCI_UICC_HOST_ID 0x02
177
178/* Host Controller Gates and registry indexes */
179#define NFC_HCI_ADMIN_GATE 0x00
180#define NFC_HCI_ADMIN_SESSION_IDENTITY 0x01
181#define NFC_HCI_ADMIN_MAX_PIPE 0x02
182#define NFC_HCI_ADMIN_WHITELIST 0x03
183#define NFC_HCI_ADMIN_HOST_LIST 0x04
184
185#define NFC_HCI_LOOPBACK_GATE 0x04
186
187#define NFC_HCI_ID_MGMT_GATE 0x05
188#define NFC_HCI_ID_MGMT_VERSION_SW 0x01
189#define NFC_HCI_ID_MGMT_VERSION_HW 0x03
190#define NFC_HCI_ID_MGMT_VENDOR_NAME 0x04
191#define NFC_HCI_ID_MGMT_MODEL_ID 0x05
192#define NFC_HCI_ID_MGMT_HCI_VERSION 0x02
193#define NFC_HCI_ID_MGMT_GATES_LIST 0x06
194
195#define NFC_HCI_LINK_MGMT_GATE 0x06
196#define NFC_HCI_LINK_MGMT_REC_ERROR 0x01
197
198#define NFC_HCI_RF_READER_B_GATE 0x11
199#define NFC_HCI_RF_READER_B_PUPI 0x03
200#define NFC_HCI_RF_READER_B_APPLICATION_DATA 0x04
201#define NFC_HCI_RF_READER_B_AFI 0x02
202#define NFC_HCI_RF_READER_B_HIGHER_LAYER_RESPONSE 0x01
203#define NFC_HCI_RF_READER_B_HIGHER_LAYER_DATA 0x05
204
205#define NFC_HCI_RF_READER_A_GATE 0x13
206#define NFC_HCI_RF_READER_A_UID 0x02
207#define NFC_HCI_RF_READER_A_ATQA 0x04
208#define NFC_HCI_RF_READER_A_APPLICATION_DATA 0x05
209#define NFC_HCI_RF_READER_A_SAK 0x03
210#define NFC_HCI_RF_READER_A_FWI_SFGT 0x06
211#define NFC_HCI_RF_READER_A_DATARATE_MAX 0x01
212
213#define NFC_HCI_TYPE_A_SEL_PROT(x) (((x) & 0x60) >> 5)
214#define NFC_HCI_TYPE_A_SEL_PROT_MIFARE 0
215#define NFC_HCI_TYPE_A_SEL_PROT_ISO14443 1
216#define NFC_HCI_TYPE_A_SEL_PROT_DEP 2
217#define NFC_HCI_TYPE_A_SEL_PROT_ISO14443_DEP 3
218
219/* Generic events */
220#define NFC_HCI_EVT_HCI_END_OF_OPERATION 0x01
221#define NFC_HCI_EVT_POST_DATA 0x02
222#define NFC_HCI_EVT_HOT_PLUG 0x03
223
224/* Reader RF gates events */
225#define NFC_HCI_EVT_READER_REQUESTED 0x10
226#define NFC_HCI_EVT_END_OPERATION 0x11
227
228/* Reader Application gate events */
229#define NFC_HCI_EVT_TARGET_DISCOVERED 0x10
230
231/* receiving messages from lower layer */
232void nfc_hci_resp_received(struct nfc_hci_dev *hdev, u8 result,
233 struct sk_buff *skb);
234void nfc_hci_cmd_received(struct nfc_hci_dev *hdev, u8 pipe, u8 cmd,
235 struct sk_buff *skb);
236void nfc_hci_event_received(struct nfc_hci_dev *hdev, u8 pipe, u8 event,
237 struct sk_buff *skb);
238void nfc_hci_recv_frame(struct nfc_hci_dev *hdev, struct sk_buff *skb);
239
240/* connecting to gates and sending hci instructions */
Eric Lapuyadea10d5952012-06-05 14:42:11 +0200241int nfc_hci_connect_gate(struct nfc_hci_dev *hdev, u8 dest_host, u8 dest_gate,
242 u8 pipe);
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200243int nfc_hci_disconnect_gate(struct nfc_hci_dev *hdev, u8 gate);
244int nfc_hci_disconnect_all_gates(struct nfc_hci_dev *hdev);
245int nfc_hci_get_param(struct nfc_hci_dev *hdev, u8 gate, u8 idx,
246 struct sk_buff **skb);
247int nfc_hci_set_param(struct nfc_hci_dev *hdev, u8 gate, u8 idx,
248 const u8 *param, size_t param_len);
249int nfc_hci_send_cmd(struct nfc_hci_dev *hdev, u8 gate, u8 cmd,
250 const u8 *param, size_t param_len, struct sk_buff **skb);
Eric Lapuyadee4c47892012-09-11 10:42:54 +0200251int nfc_hci_send_cmd_async(struct nfc_hci_dev *hdev, u8 gate, u8 cmd,
252 const u8 *param, size_t param_len,
253 data_exchange_cb_t cb, void *cb_context);
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200254int nfc_hci_send_response(struct nfc_hci_dev *hdev, u8 gate, u8 response,
255 const u8 *param, size_t param_len);
256int nfc_hci_send_event(struct nfc_hci_dev *hdev, u8 gate, u8 event,
257 const u8 *param, size_t param_len);
Arron Wangf7a5f6c2012-09-27 17:32:55 +0800258int nfc_hci_target_discovered(struct nfc_hci_dev *hdev, u8 gate);
Eric Lapuyade9c5121a2012-10-23 11:37:43 +0200259u32 nfc_hci_sak_to_protocol(u8 sak);
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200260
261#endif /* __NET_HCI_H */