blob: e900072950cb8cf5635e4a106389e34bd5df21f1 [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
27struct nfc_hci_dev;
28
29struct nfc_hci_ops {
30 int (*open) (struct nfc_hci_dev *hdev);
31 void (*close) (struct nfc_hci_dev *hdev);
32 int (*hci_ready) (struct nfc_hci_dev *hdev);
Waldemar Rymarkiewicz96e32402012-09-20 08:59:10 +020033 /*
34 * xmit must always send the complete buffer before
35 * returning. Returned result must be 0 for success
36 * or negative for failure.
37 */
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +020038 int (*xmit) (struct nfc_hci_dev *hdev, struct sk_buff *skb);
Samuel Ortizfe7c5802012-05-15 15:57:06 +020039 int (*start_poll) (struct nfc_hci_dev *hdev,
40 u32 im_protocols, u32 tm_protocols);
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +020041 int (*target_from_gate) (struct nfc_hci_dev *hdev, u8 gate,
42 struct nfc_target *target);
43 int (*complete_target_discovered) (struct nfc_hci_dev *hdev, u8 gate,
44 struct nfc_target *target);
45 int (*data_exchange) (struct nfc_hci_dev *hdev,
Eric Lapuyadef3e8fb52012-09-11 10:43:50 +020046 struct nfc_target *target, struct sk_buff *skb,
47 data_exchange_cb_t cb, void *cb_context);
Eric Lapuyade1676f752012-05-07 12:31:16 +020048 int (*check_presence)(struct nfc_hci_dev *hdev,
49 struct nfc_target *target);
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +020050};
51
Eric Lapuyadea10d5952012-06-05 14:42:11 +020052/* Pipes */
53#define NFC_HCI_INVALID_PIPE 0x80
54#define NFC_HCI_LINK_MGMT_PIPE 0x00
55#define NFC_HCI_ADMIN_PIPE 0x01
56
57struct nfc_hci_gate {
58 u8 gate;
59 u8 pipe;
60};
61
62#define NFC_HCI_MAX_CUSTOM_GATES 50
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +020063struct nfc_hci_init_data {
64 u8 gate_count;
Eric Lapuyadea10d5952012-06-05 14:42:11 +020065 struct nfc_hci_gate gates[NFC_HCI_MAX_CUSTOM_GATES];
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +020066 char session_id[9];
67};
68
69typedef int (*xmit) (struct sk_buff *skb, void *cb_data);
70
71#define NFC_HCI_MAX_GATES 256
72
73struct nfc_hci_dev {
74 struct nfc_dev *ndev;
75
76 u32 max_data_link_payload;
77
78 struct mutex msg_tx_mutex;
79
80 struct list_head msg_tx_queue;
81
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +020082 struct work_struct msg_tx_work;
83
84 struct timer_list cmd_timer;
85 struct hci_msg *cmd_pending_msg;
86
87 struct sk_buff_head rx_hcp_frags;
88
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +020089 struct work_struct msg_rx_work;
90
91 struct sk_buff_head msg_rx_queue;
92
93 struct nfc_hci_ops *ops;
94
Eric Lapuyade412fda52012-09-18 19:45:48 +020095 struct nfc_llc *llc;
96
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +020097 struct nfc_hci_init_data init_data;
98
99 void *clientdata;
100
101 u8 gate2pipe[NFC_HCI_MAX_GATES];
102
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200103 u8 sw_romlib;
104 u8 sw_patch;
105 u8 sw_flashlib_major;
106 u8 sw_flashlib_minor;
107
108 u8 hw_derivative;
109 u8 hw_version;
110 u8 hw_mpw;
111 u8 hw_software;
112 u8 hw_bsid;
Eric Lapuyadef3e8fb52012-09-11 10:43:50 +0200113
114 int async_cb_type;
115 data_exchange_cb_t async_cb;
116 void *async_cb_context;
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200117};
118
119/* hci device allocation */
120struct nfc_hci_dev *nfc_hci_allocate_device(struct nfc_hci_ops *ops,
121 struct nfc_hci_init_data *init_data,
122 u32 protocols,
Eric Lapuyade412fda52012-09-18 19:45:48 +0200123 const char *llc_name,
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200124 int tx_headroom,
125 int tx_tailroom,
126 int max_link_payload);
127void nfc_hci_free_device(struct nfc_hci_dev *hdev);
128
129int nfc_hci_register_device(struct nfc_hci_dev *hdev);
130void nfc_hci_unregister_device(struct nfc_hci_dev *hdev);
131
132void nfc_hci_set_clientdata(struct nfc_hci_dev *hdev, void *clientdata);
133void *nfc_hci_get_clientdata(struct nfc_hci_dev *hdev);
134
Eric Lapuyadea9a741a2012-04-30 18:21:51 +0200135void nfc_hci_driver_failure(struct nfc_hci_dev *hdev, int err);
136
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200137/* Host IDs */
138#define NFC_HCI_HOST_CONTROLLER_ID 0x00
139#define NFC_HCI_TERMINAL_HOST_ID 0x01
140#define NFC_HCI_UICC_HOST_ID 0x02
141
142/* Host Controller Gates and registry indexes */
143#define NFC_HCI_ADMIN_GATE 0x00
144#define NFC_HCI_ADMIN_SESSION_IDENTITY 0x01
145#define NFC_HCI_ADMIN_MAX_PIPE 0x02
146#define NFC_HCI_ADMIN_WHITELIST 0x03
147#define NFC_HCI_ADMIN_HOST_LIST 0x04
148
149#define NFC_HCI_LOOPBACK_GATE 0x04
150
151#define NFC_HCI_ID_MGMT_GATE 0x05
152#define NFC_HCI_ID_MGMT_VERSION_SW 0x01
153#define NFC_HCI_ID_MGMT_VERSION_HW 0x03
154#define NFC_HCI_ID_MGMT_VENDOR_NAME 0x04
155#define NFC_HCI_ID_MGMT_MODEL_ID 0x05
156#define NFC_HCI_ID_MGMT_HCI_VERSION 0x02
157#define NFC_HCI_ID_MGMT_GATES_LIST 0x06
158
159#define NFC_HCI_LINK_MGMT_GATE 0x06
160#define NFC_HCI_LINK_MGMT_REC_ERROR 0x01
161
162#define NFC_HCI_RF_READER_B_GATE 0x11
163#define NFC_HCI_RF_READER_B_PUPI 0x03
164#define NFC_HCI_RF_READER_B_APPLICATION_DATA 0x04
165#define NFC_HCI_RF_READER_B_AFI 0x02
166#define NFC_HCI_RF_READER_B_HIGHER_LAYER_RESPONSE 0x01
167#define NFC_HCI_RF_READER_B_HIGHER_LAYER_DATA 0x05
168
169#define NFC_HCI_RF_READER_A_GATE 0x13
170#define NFC_HCI_RF_READER_A_UID 0x02
171#define NFC_HCI_RF_READER_A_ATQA 0x04
172#define NFC_HCI_RF_READER_A_APPLICATION_DATA 0x05
173#define NFC_HCI_RF_READER_A_SAK 0x03
174#define NFC_HCI_RF_READER_A_FWI_SFGT 0x06
175#define NFC_HCI_RF_READER_A_DATARATE_MAX 0x01
176
177#define NFC_HCI_TYPE_A_SEL_PROT(x) (((x) & 0x60) >> 5)
178#define NFC_HCI_TYPE_A_SEL_PROT_MIFARE 0
179#define NFC_HCI_TYPE_A_SEL_PROT_ISO14443 1
180#define NFC_HCI_TYPE_A_SEL_PROT_DEP 2
181#define NFC_HCI_TYPE_A_SEL_PROT_ISO14443_DEP 3
182
183/* Generic events */
184#define NFC_HCI_EVT_HCI_END_OF_OPERATION 0x01
185#define NFC_HCI_EVT_POST_DATA 0x02
186#define NFC_HCI_EVT_HOT_PLUG 0x03
187
188/* Reader RF gates events */
189#define NFC_HCI_EVT_READER_REQUESTED 0x10
190#define NFC_HCI_EVT_END_OPERATION 0x11
191
192/* Reader Application gate events */
193#define NFC_HCI_EVT_TARGET_DISCOVERED 0x10
194
195/* receiving messages from lower layer */
196void nfc_hci_resp_received(struct nfc_hci_dev *hdev, u8 result,
197 struct sk_buff *skb);
198void nfc_hci_cmd_received(struct nfc_hci_dev *hdev, u8 pipe, u8 cmd,
199 struct sk_buff *skb);
200void nfc_hci_event_received(struct nfc_hci_dev *hdev, u8 pipe, u8 event,
201 struct sk_buff *skb);
202void nfc_hci_recv_frame(struct nfc_hci_dev *hdev, struct sk_buff *skb);
203
204/* connecting to gates and sending hci instructions */
Eric Lapuyadea10d5952012-06-05 14:42:11 +0200205int nfc_hci_connect_gate(struct nfc_hci_dev *hdev, u8 dest_host, u8 dest_gate,
206 u8 pipe);
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200207int nfc_hci_disconnect_gate(struct nfc_hci_dev *hdev, u8 gate);
208int nfc_hci_disconnect_all_gates(struct nfc_hci_dev *hdev);
209int nfc_hci_get_param(struct nfc_hci_dev *hdev, u8 gate, u8 idx,
210 struct sk_buff **skb);
211int nfc_hci_set_param(struct nfc_hci_dev *hdev, u8 gate, u8 idx,
212 const u8 *param, size_t param_len);
213int nfc_hci_send_cmd(struct nfc_hci_dev *hdev, u8 gate, u8 cmd,
214 const u8 *param, size_t param_len, struct sk_buff **skb);
Eric Lapuyadee4c47892012-09-11 10:42:54 +0200215int nfc_hci_send_cmd_async(struct nfc_hci_dev *hdev, u8 gate, u8 cmd,
216 const u8 *param, size_t param_len,
217 data_exchange_cb_t cb, void *cb_context);
Eric Lapuyade8b8d2e02012-04-10 19:43:06 +0200218int nfc_hci_send_response(struct nfc_hci_dev *hdev, u8 gate, u8 response,
219 const u8 *param, size_t param_len);
220int nfc_hci_send_event(struct nfc_hci_dev *hdev, u8 gate, u8 event,
221 const u8 *param, size_t param_len);
222
223#endif /* __NET_HCI_H */