blob: 37786ff18c3691055fb5beb6253b6d2542c5cc83 [file] [log] [blame]
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -03001/*
2 * Copyright (C) 2011 Instituto Nokia de Tecnologia
3 *
4 * Authors:
5 * Lauro Ramos Venancio <lauro.venancio@openbossa.org>
6 * Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the
20 * Free Software Foundation, Inc.,
21 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22 */
23
24#include <linux/device.h>
25#include <linux/kernel.h>
26#include <linux/module.h>
27#include <linux/slab.h>
28#include <linux/usb.h>
29#include <linux/nfc.h>
30#include <linux/netdevice.h>
Ilan Elias55eb94f2011-09-18 11:19:34 +030031#include <net/nfc/nfc.h>
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -030032
33#define VERSION "0.1"
34
35#define PN533_VENDOR_ID 0x4CC
36#define PN533_PRODUCT_ID 0x2533
37
38#define SCM_VENDOR_ID 0x4E6
39#define SCL3711_PRODUCT_ID 0x5591
40
Samuel Ortiz5c7b0532012-07-02 20:04:01 +020041#define SONY_VENDOR_ID 0x054c
42#define PASORI_PRODUCT_ID 0x02e1
43
44#define PN533_QUIRKS_TYPE_A BIT(0)
45#define PN533_QUIRKS_TYPE_F BIT(1)
46#define PN533_QUIRKS_DEP BIT(2)
47#define PN533_QUIRKS_RAW_EXCHANGE BIT(3)
48
49#define PN533_DEVICE_STD 0x1
50#define PN533_DEVICE_PASORI 0x2
51
52#define PN533_ALL_PROTOCOLS (NFC_PROTO_JEWEL_MASK | NFC_PROTO_MIFARE_MASK \
53 | NFC_PROTO_FELICA_MASK | NFC_PROTO_ISO14443_MASK \
54 | NFC_PROTO_NFC_DEP_MASK)
55
56#define PN533_NO_TYPE_B_PROTOCOLS (NFC_PROTO_JEWEL_MASK | \
57 NFC_PROTO_MIFARE_MASK | \
58 NFC_PROTO_FELICA_MASK | \
59 NFC_PROTO_NFC_DEP_MASK)
60
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -030061static const struct usb_device_id pn533_table[] = {
Samuel Ortiz5c7b0532012-07-02 20:04:01 +020062 { .match_flags = USB_DEVICE_ID_MATCH_DEVICE,
63 .idVendor = PN533_VENDOR_ID,
64 .idProduct = PN533_PRODUCT_ID,
65 .driver_info = PN533_DEVICE_STD,
66 },
67 { .match_flags = USB_DEVICE_ID_MATCH_DEVICE,
68 .idVendor = SCM_VENDOR_ID,
69 .idProduct = SCL3711_PRODUCT_ID,
70 .driver_info = PN533_DEVICE_STD,
71 },
72 { .match_flags = USB_DEVICE_ID_MATCH_DEVICE,
73 .idVendor = SONY_VENDOR_ID,
74 .idProduct = PASORI_PRODUCT_ID,
75 .driver_info = PN533_DEVICE_PASORI,
76 },
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -030077 { }
78};
79MODULE_DEVICE_TABLE(usb, pn533_table);
80
Samuel Ortiz6fbbdc12012-05-30 17:20:25 +020081/* How much time we spend listening for initiators */
82#define PN533_LISTEN_TIME 2
83
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -030084/* frame definitions */
85#define PN533_FRAME_TAIL_SIZE 2
86#define PN533_FRAME_SIZE(f) (sizeof(struct pn533_frame) + f->datalen + \
87 PN533_FRAME_TAIL_SIZE)
88#define PN533_FRAME_ACK_SIZE (sizeof(struct pn533_frame) + 1)
89#define PN533_FRAME_CHECKSUM(f) (f->data[f->datalen])
90#define PN533_FRAME_POSTAMBLE(f) (f->data[f->datalen + 1])
91
92/* start of frame */
93#define PN533_SOF 0x00FF
94
95/* frame identifier: in/out/error */
96#define PN533_FRAME_IDENTIFIER(f) (f->data[0])
97#define PN533_DIR_OUT 0xD4
98#define PN533_DIR_IN 0xD5
99
100/* PN533 Commands */
101#define PN533_FRAME_CMD(f) (f->data[1])
102#define PN533_FRAME_CMD_PARAMS_PTR(f) (&f->data[2])
103#define PN533_FRAME_CMD_PARAMS_LEN(f) (f->datalen - 2)
104
105#define PN533_CMD_GET_FIRMWARE_VERSION 0x02
106#define PN533_CMD_RF_CONFIGURATION 0x32
107#define PN533_CMD_IN_DATA_EXCHANGE 0x40
Samuel Ortiz5c7b0532012-07-02 20:04:01 +0200108#define PN533_CMD_IN_COMM_THRU 0x42
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -0300109#define PN533_CMD_IN_LIST_PASSIVE_TARGET 0x4A
110#define PN533_CMD_IN_ATR 0x50
111#define PN533_CMD_IN_RELEASE 0x52
Samuel Ortiz361f3cb2011-12-14 16:43:11 +0100112#define PN533_CMD_IN_JUMP_FOR_DEP 0x56
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -0300113
Samuel Ortizad3823c2012-05-30 23:54:55 +0200114#define PN533_CMD_TG_INIT_AS_TARGET 0x8c
Samuel Ortiz103b34c2012-05-31 00:07:51 +0200115#define PN533_CMD_TG_GET_DATA 0x86
Samuel Ortizdadb06f2012-05-31 00:09:11 +0200116#define PN533_CMD_TG_SET_DATA 0x8e
Samuel Ortizad3823c2012-05-30 23:54:55 +0200117
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -0300118#define PN533_CMD_RESPONSE(cmd) (cmd + 1)
119
120/* PN533 Return codes */
121#define PN533_CMD_RET_MASK 0x3F
122#define PN533_CMD_MI_MASK 0x40
123#define PN533_CMD_RET_SUCCESS 0x00
124
Samuel Ortiz103b34c2012-05-31 00:07:51 +0200125/* PN533 status codes */
126#define PN533_STATUS_TARGET_RELEASED 0x29
127
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -0300128struct pn533;
129
130typedef int (*pn533_cmd_complete_t) (struct pn533 *dev, void *arg,
131 u8 *params, int params_len);
132
133/* structs for pn533 commands */
134
135/* PN533_CMD_GET_FIRMWARE_VERSION */
136struct pn533_fw_version {
137 u8 ic;
138 u8 ver;
139 u8 rev;
140 u8 support;
141};
142
143/* PN533_CMD_RF_CONFIGURATION */
Samuel Ortiz34a85bf2012-05-29 21:34:08 +0200144#define PN533_CFGITEM_TIMING 0x02
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -0300145#define PN533_CFGITEM_MAX_RETRIES 0x05
Samuel Ortiz5c7b0532012-07-02 20:04:01 +0200146#define PN533_CFGITEM_PASORI 0x82
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -0300147
Samuel Ortiz34a85bf2012-05-29 21:34:08 +0200148#define PN533_CONFIG_TIMING_102 0xb
149#define PN533_CONFIG_TIMING_204 0xc
150#define PN533_CONFIG_TIMING_409 0xd
151#define PN533_CONFIG_TIMING_819 0xe
152
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -0300153#define PN533_CONFIG_MAX_RETRIES_NO_RETRY 0x00
154#define PN533_CONFIG_MAX_RETRIES_ENDLESS 0xFF
155
156struct pn533_config_max_retries {
157 u8 mx_rty_atr;
158 u8 mx_rty_psl;
159 u8 mx_rty_passive_act;
160} __packed;
161
Samuel Ortiz34a85bf2012-05-29 21:34:08 +0200162struct pn533_config_timing {
163 u8 rfu;
164 u8 atr_res_timeout;
165 u8 dep_timeout;
166} __packed;
167
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -0300168/* PN533_CMD_IN_LIST_PASSIVE_TARGET */
169
170/* felica commands opcode */
171#define PN533_FELICA_OPC_SENSF_REQ 0
172#define PN533_FELICA_OPC_SENSF_RES 1
173/* felica SENSF_REQ parameters */
174#define PN533_FELICA_SENSF_SC_ALL 0xFFFF
175#define PN533_FELICA_SENSF_RC_NO_SYSTEM_CODE 0
176#define PN533_FELICA_SENSF_RC_SYSTEM_CODE 1
177#define PN533_FELICA_SENSF_RC_ADVANCED_PROTOCOL 2
178
179/* type B initiator_data values */
180#define PN533_TYPE_B_AFI_ALL_FAMILIES 0
181#define PN533_TYPE_B_POLL_METHOD_TIMESLOT 0
182#define PN533_TYPE_B_POLL_METHOD_PROBABILISTIC 1
183
184union pn533_cmd_poll_initdata {
185 struct {
186 u8 afi;
187 u8 polling_method;
188 } __packed type_b;
189 struct {
190 u8 opcode;
191 __be16 sc;
192 u8 rc;
193 u8 tsn;
194 } __packed felica;
195};
196
197/* Poll modulations */
198enum {
199 PN533_POLL_MOD_106KBPS_A,
200 PN533_POLL_MOD_212KBPS_FELICA,
201 PN533_POLL_MOD_424KBPS_FELICA,
202 PN533_POLL_MOD_106KBPS_JEWEL,
203 PN533_POLL_MOD_847KBPS_B,
Samuel Ortiz6fbbdc12012-05-30 17:20:25 +0200204 PN533_LISTEN_MOD,
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -0300205
206 __PN533_POLL_MOD_AFTER_LAST,
207};
208#define PN533_POLL_MOD_MAX (__PN533_POLL_MOD_AFTER_LAST - 1)
209
210struct pn533_poll_modulations {
211 struct {
212 u8 maxtg;
213 u8 brty;
214 union pn533_cmd_poll_initdata initiator_data;
215 } __packed data;
216 u8 len;
217};
218
219const struct pn533_poll_modulations poll_mod[] = {
220 [PN533_POLL_MOD_106KBPS_A] = {
221 .data = {
222 .maxtg = 1,
223 .brty = 0,
224 },
225 .len = 2,
226 },
227 [PN533_POLL_MOD_212KBPS_FELICA] = {
228 .data = {
229 .maxtg = 1,
230 .brty = 1,
231 .initiator_data.felica = {
232 .opcode = PN533_FELICA_OPC_SENSF_REQ,
233 .sc = PN533_FELICA_SENSF_SC_ALL,
234 .rc = PN533_FELICA_SENSF_RC_NO_SYSTEM_CODE,
235 .tsn = 0,
236 },
237 },
238 .len = 7,
239 },
240 [PN533_POLL_MOD_424KBPS_FELICA] = {
241 .data = {
242 .maxtg = 1,
243 .brty = 2,
244 .initiator_data.felica = {
245 .opcode = PN533_FELICA_OPC_SENSF_REQ,
246 .sc = PN533_FELICA_SENSF_SC_ALL,
247 .rc = PN533_FELICA_SENSF_RC_NO_SYSTEM_CODE,
248 .tsn = 0,
249 },
250 },
251 .len = 7,
252 },
253 [PN533_POLL_MOD_106KBPS_JEWEL] = {
254 .data = {
255 .maxtg = 1,
256 .brty = 4,
257 },
258 .len = 2,
259 },
260 [PN533_POLL_MOD_847KBPS_B] = {
261 .data = {
262 .maxtg = 1,
263 .brty = 8,
264 .initiator_data.type_b = {
265 .afi = PN533_TYPE_B_AFI_ALL_FAMILIES,
266 .polling_method =
267 PN533_TYPE_B_POLL_METHOD_TIMESLOT,
268 },
269 },
270 .len = 3,
271 },
Samuel Ortiz6fbbdc12012-05-30 17:20:25 +0200272 [PN533_LISTEN_MOD] = {
273 .len = 0,
274 },
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -0300275};
276
277/* PN533_CMD_IN_ATR */
278
279struct pn533_cmd_activate_param {
280 u8 tg;
281 u8 next;
282} __packed;
283
284struct pn533_cmd_activate_response {
285 u8 status;
286 u8 nfcid3t[10];
287 u8 didt;
288 u8 bst;
289 u8 brt;
290 u8 to;
291 u8 ppt;
292 /* optional */
293 u8 gt[];
294} __packed;
295
Samuel Ortiz361f3cb2011-12-14 16:43:11 +0100296/* PN533_CMD_IN_JUMP_FOR_DEP */
297struct pn533_cmd_jump_dep {
298 u8 active;
299 u8 baud;
300 u8 next;
Samuel Ortizd7f33452012-05-29 21:45:21 +0200301 u8 data[];
Samuel Ortiz361f3cb2011-12-14 16:43:11 +0100302} __packed;
303
304struct pn533_cmd_jump_dep_response {
305 u8 status;
306 u8 tg;
307 u8 nfcid3t[10];
308 u8 didt;
309 u8 bst;
310 u8 brt;
311 u8 to;
312 u8 ppt;
313 /* optional */
314 u8 gt[];
315} __packed;
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -0300316
Samuel Ortizad3823c2012-05-30 23:54:55 +0200317
318/* PN533_TG_INIT_AS_TARGET */
319#define PN533_INIT_TARGET_PASSIVE 0x1
320#define PN533_INIT_TARGET_DEP 0x2
321
Samuel Ortizfc40a8c2012-06-01 13:21:13 +0200322#define PN533_INIT_TARGET_RESP_FRAME_MASK 0x3
323#define PN533_INIT_TARGET_RESP_ACTIVE 0x1
324#define PN533_INIT_TARGET_RESP_DEP 0x4
325
Samuel Ortizad3823c2012-05-30 23:54:55 +0200326struct pn533_cmd_init_target {
327 u8 mode;
328 u8 mifare[6];
329 u8 felica[18];
330 u8 nfcid3[10];
331 u8 gb_len;
332 u8 gb[];
333} __packed;
334
335struct pn533_cmd_init_target_response {
336 u8 mode;
337 u8 cmd[];
338} __packed;
339
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -0300340struct pn533 {
341 struct usb_device *udev;
342 struct usb_interface *interface;
343 struct nfc_dev *nfc_dev;
344
345 struct urb *out_urb;
346 int out_maxlen;
347 struct pn533_frame *out_frame;
348
349 struct urb *in_urb;
350 int in_maxlen;
351 struct pn533_frame *in_frame;
352
Samuel Ortiz6ff73fd2012-04-10 19:43:18 +0200353 struct sk_buff_head resp_q;
354
Samuel Ortiz4849f852012-04-10 19:43:17 +0200355 struct workqueue_struct *wq;
356 struct work_struct cmd_work;
Samuel Ortiz6fbbdc12012-05-30 17:20:25 +0200357 struct work_struct poll_work;
Samuel Ortiz6ff73fd2012-04-10 19:43:18 +0200358 struct work_struct mi_work;
Samuel Ortiz103b34c2012-05-31 00:07:51 +0200359 struct work_struct tg_work;
Samuel Ortiz6fbbdc12012-05-30 17:20:25 +0200360 struct timer_list listen_timer;
Samuel Ortiz4849f852012-04-10 19:43:17 +0200361 struct pn533_frame *wq_in_frame;
362 int wq_in_error;
Samuel Ortiz6fbbdc12012-05-30 17:20:25 +0200363 int cancel_listen;
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -0300364
365 pn533_cmd_complete_t cmd_complete;
366 void *cmd_complete_arg;
Samuel Ortiz0201ed02012-05-31 17:56:46 +0200367 struct mutex cmd_lock;
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -0300368 u8 cmd;
369
370 struct pn533_poll_modulations *poll_mod_active[PN533_POLL_MOD_MAX + 1];
371 u8 poll_mod_count;
372 u8 poll_mod_curr;
373 u32 poll_protocols;
Samuel Ortiz6fbbdc12012-05-30 17:20:25 +0200374 u32 listen_protocols;
375
376 u8 *gb;
377 size_t gb_len;
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -0300378
379 u8 tgt_available_prots;
380 u8 tgt_active_prot;
Samuel Ortiz51ad3042012-05-31 20:01:32 +0200381 u8 tgt_mode;
Samuel Ortiz5c7b0532012-07-02 20:04:01 +0200382
383 u32 device_type;
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -0300384};
385
386struct pn533_frame {
387 u8 preamble;
388 __be16 start_frame;
389 u8 datalen;
390 u8 datalen_checksum;
391 u8 data[];
392} __packed;
393
394/* The rule: value + checksum = 0 */
395static inline u8 pn533_checksum(u8 value)
396{
397 return ~value + 1;
398}
399
400/* The rule: sum(data elements) + checksum = 0 */
401static u8 pn533_data_checksum(u8 *data, int datalen)
402{
403 u8 sum = 0;
404 int i;
405
406 for (i = 0; i < datalen; i++)
407 sum += data[i];
408
409 return pn533_checksum(sum);
410}
411
412/**
413 * pn533_tx_frame_ack - create a ack frame
414 * @frame: The frame to be set as ack
415 *
416 * Ack is different type of standard frame. As a standard frame, it has
417 * preamble and start_frame. However the checksum of this frame must fail,
418 * i.e. datalen + datalen_checksum must NOT be zero. When the checksum test
419 * fails and datalen = 0 and datalen_checksum = 0xFF, the frame is a ack.
420 * After datalen_checksum field, the postamble is placed.
421 */
422static void pn533_tx_frame_ack(struct pn533_frame *frame)
423{
424 frame->preamble = 0;
425 frame->start_frame = cpu_to_be16(PN533_SOF);
426 frame->datalen = 0;
427 frame->datalen_checksum = 0xFF;
428 /* data[0] is used as postamble */
429 frame->data[0] = 0;
430}
431
432static void pn533_tx_frame_init(struct pn533_frame *frame, u8 cmd)
433{
434 frame->preamble = 0;
435 frame->start_frame = cpu_to_be16(PN533_SOF);
436 PN533_FRAME_IDENTIFIER(frame) = PN533_DIR_OUT;
437 PN533_FRAME_CMD(frame) = cmd;
438 frame->datalen = 2;
439}
440
441static void pn533_tx_frame_finish(struct pn533_frame *frame)
442{
443 frame->datalen_checksum = pn533_checksum(frame->datalen);
444
445 PN533_FRAME_CHECKSUM(frame) =
446 pn533_data_checksum(frame->data, frame->datalen);
447
448 PN533_FRAME_POSTAMBLE(frame) = 0;
449}
450
451static bool pn533_rx_frame_is_valid(struct pn533_frame *frame)
452{
453 u8 checksum;
454
455 if (frame->start_frame != cpu_to_be16(PN533_SOF))
456 return false;
457
458 checksum = pn533_checksum(frame->datalen);
459 if (checksum != frame->datalen_checksum)
460 return false;
461
462 checksum = pn533_data_checksum(frame->data, frame->datalen);
463 if (checksum != PN533_FRAME_CHECKSUM(frame))
464 return false;
465
466 return true;
467}
468
469static bool pn533_rx_frame_is_ack(struct pn533_frame *frame)
470{
471 if (frame->start_frame != cpu_to_be16(PN533_SOF))
472 return false;
473
474 if (frame->datalen != 0 || frame->datalen_checksum != 0xFF)
475 return false;
476
477 return true;
478}
479
480static bool pn533_rx_frame_is_cmd_response(struct pn533_frame *frame, u8 cmd)
481{
482 return (PN533_FRAME_CMD(frame) == PN533_CMD_RESPONSE(cmd));
483}
484
Samuel Ortiz4849f852012-04-10 19:43:17 +0200485
486static void pn533_wq_cmd_complete(struct work_struct *work)
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -0300487{
Samuel Ortiz4849f852012-04-10 19:43:17 +0200488 struct pn533 *dev = container_of(work, struct pn533, cmd_work);
489 struct pn533_frame *in_frame;
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -0300490 int rc;
491
Samuel Ortiz4849f852012-04-10 19:43:17 +0200492 in_frame = dev->wq_in_frame;
493
494 if (dev->wq_in_error)
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -0300495 rc = dev->cmd_complete(dev, dev->cmd_complete_arg, NULL,
Samuel Ortiz4849f852012-04-10 19:43:17 +0200496 dev->wq_in_error);
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -0300497 else
498 rc = dev->cmd_complete(dev, dev->cmd_complete_arg,
499 PN533_FRAME_CMD_PARAMS_PTR(in_frame),
500 PN533_FRAME_CMD_PARAMS_LEN(in_frame));
501
502 if (rc != -EINPROGRESS)
Samuel Ortiz0201ed02012-05-31 17:56:46 +0200503 mutex_unlock(&dev->cmd_lock);
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -0300504}
505
506static void pn533_recv_response(struct urb *urb)
507{
508 struct pn533 *dev = urb->context;
509 struct pn533_frame *in_frame;
510
Samuel Ortiz4849f852012-04-10 19:43:17 +0200511 dev->wq_in_frame = NULL;
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -0300512
513 switch (urb->status) {
514 case 0:
515 /* success */
516 break;
517 case -ECONNRESET:
518 case -ENOENT:
519 case -ESHUTDOWN:
520 nfc_dev_dbg(&dev->interface->dev, "Urb shutting down with"
521 " status: %d", urb->status);
Samuel Ortiz4849f852012-04-10 19:43:17 +0200522 dev->wq_in_error = urb->status;
523 goto sched_wq;
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -0300524 default:
525 nfc_dev_err(&dev->interface->dev, "Nonzero urb status received:"
526 " %d", urb->status);
Samuel Ortiz4849f852012-04-10 19:43:17 +0200527 dev->wq_in_error = urb->status;
528 goto sched_wq;
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -0300529 }
530
531 in_frame = dev->in_urb->transfer_buffer;
532
533 if (!pn533_rx_frame_is_valid(in_frame)) {
534 nfc_dev_err(&dev->interface->dev, "Received an invalid frame");
Samuel Ortiz4849f852012-04-10 19:43:17 +0200535 dev->wq_in_error = -EIO;
536 goto sched_wq;
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -0300537 }
538
539 if (!pn533_rx_frame_is_cmd_response(in_frame, dev->cmd)) {
540 nfc_dev_err(&dev->interface->dev, "The received frame is not "
541 "response to the last command");
Samuel Ortiz4849f852012-04-10 19:43:17 +0200542 dev->wq_in_error = -EIO;
543 goto sched_wq;
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -0300544 }
545
546 nfc_dev_dbg(&dev->interface->dev, "Received a valid frame");
Samuel Ortiz4849f852012-04-10 19:43:17 +0200547 dev->wq_in_error = 0;
548 dev->wq_in_frame = in_frame;
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -0300549
Samuel Ortiz4849f852012-04-10 19:43:17 +0200550sched_wq:
551 queue_work(dev->wq, &dev->cmd_work);
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -0300552}
553
554static int pn533_submit_urb_for_response(struct pn533 *dev, gfp_t flags)
555{
556 dev->in_urb->complete = pn533_recv_response;
557
558 return usb_submit_urb(dev->in_urb, flags);
559}
560
561static void pn533_recv_ack(struct urb *urb)
562{
563 struct pn533 *dev = urb->context;
564 struct pn533_frame *in_frame;
565 int rc;
566
567 switch (urb->status) {
568 case 0:
569 /* success */
570 break;
571 case -ECONNRESET:
572 case -ENOENT:
573 case -ESHUTDOWN:
574 nfc_dev_dbg(&dev->interface->dev, "Urb shutting down with"
575 " status: %d", urb->status);
Samuel Ortiz4849f852012-04-10 19:43:17 +0200576 dev->wq_in_error = urb->status;
577 goto sched_wq;
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -0300578 default:
579 nfc_dev_err(&dev->interface->dev, "Nonzero urb status received:"
580 " %d", urb->status);
Samuel Ortiz4849f852012-04-10 19:43:17 +0200581 dev->wq_in_error = urb->status;
582 goto sched_wq;
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -0300583 }
584
585 in_frame = dev->in_urb->transfer_buffer;
586
587 if (!pn533_rx_frame_is_ack(in_frame)) {
588 nfc_dev_err(&dev->interface->dev, "Received an invalid ack");
Samuel Ortiz4849f852012-04-10 19:43:17 +0200589 dev->wq_in_error = -EIO;
590 goto sched_wq;
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -0300591 }
592
593 nfc_dev_dbg(&dev->interface->dev, "Received a valid ack");
594
595 rc = pn533_submit_urb_for_response(dev, GFP_ATOMIC);
596 if (rc) {
597 nfc_dev_err(&dev->interface->dev, "usb_submit_urb failed with"
598 " result %d", rc);
Samuel Ortiz4849f852012-04-10 19:43:17 +0200599 dev->wq_in_error = rc;
600 goto sched_wq;
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -0300601 }
602
603 return;
604
Samuel Ortiz4849f852012-04-10 19:43:17 +0200605sched_wq:
606 dev->wq_in_frame = NULL;
607 queue_work(dev->wq, &dev->cmd_work);
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -0300608}
609
610static int pn533_submit_urb_for_ack(struct pn533 *dev, gfp_t flags)
611{
612 dev->in_urb->complete = pn533_recv_ack;
613
614 return usb_submit_urb(dev->in_urb, flags);
615}
616
617static int pn533_send_ack(struct pn533 *dev, gfp_t flags)
618{
619 int rc;
620
621 nfc_dev_dbg(&dev->interface->dev, "%s", __func__);
622
623 pn533_tx_frame_ack(dev->out_frame);
624
625 dev->out_urb->transfer_buffer = dev->out_frame;
626 dev->out_urb->transfer_buffer_length = PN533_FRAME_ACK_SIZE;
627 rc = usb_submit_urb(dev->out_urb, flags);
628
629 return rc;
630}
631
632static int __pn533_send_cmd_frame_async(struct pn533 *dev,
633 struct pn533_frame *out_frame,
634 struct pn533_frame *in_frame,
635 int in_frame_len,
636 pn533_cmd_complete_t cmd_complete,
637 void *arg, gfp_t flags)
638{
639 int rc;
640
641 nfc_dev_dbg(&dev->interface->dev, "Sending command 0x%x",
642 PN533_FRAME_CMD(out_frame));
643
644 dev->cmd = PN533_FRAME_CMD(out_frame);
645 dev->cmd_complete = cmd_complete;
646 dev->cmd_complete_arg = arg;
647
648 dev->out_urb->transfer_buffer = out_frame;
649 dev->out_urb->transfer_buffer_length =
650 PN533_FRAME_SIZE(out_frame);
651
652 dev->in_urb->transfer_buffer = in_frame;
653 dev->in_urb->transfer_buffer_length = in_frame_len;
654
655 rc = usb_submit_urb(dev->out_urb, flags);
656 if (rc)
657 return rc;
658
659 rc = pn533_submit_urb_for_ack(dev, flags);
660 if (rc)
661 goto error;
662
663 return 0;
664
665error:
666 usb_unlink_urb(dev->out_urb);
667 return rc;
668}
669
670static int pn533_send_cmd_frame_async(struct pn533 *dev,
671 struct pn533_frame *out_frame,
672 struct pn533_frame *in_frame,
673 int in_frame_len,
674 pn533_cmd_complete_t cmd_complete,
675 void *arg, gfp_t flags)
676{
677 int rc;
678
679 nfc_dev_dbg(&dev->interface->dev, "%s", __func__);
680
Samuel Ortiz0201ed02012-05-31 17:56:46 +0200681 if (!mutex_trylock(&dev->cmd_lock))
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -0300682 return -EBUSY;
683
684 rc = __pn533_send_cmd_frame_async(dev, out_frame, in_frame,
685 in_frame_len, cmd_complete, arg, flags);
686 if (rc)
687 goto error;
688
689 return 0;
690error:
Samuel Ortiz0201ed02012-05-31 17:56:46 +0200691 mutex_unlock(&dev->cmd_lock);
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -0300692 return rc;
693}
694
695struct pn533_sync_cmd_response {
696 int rc;
697 struct completion done;
698};
699
700static int pn533_sync_cmd_complete(struct pn533 *dev, void *_arg,
701 u8 *params, int params_len)
702{
703 struct pn533_sync_cmd_response *arg = _arg;
704
705 nfc_dev_dbg(&dev->interface->dev, "%s", __func__);
706
707 arg->rc = 0;
708
709 if (params_len < 0) /* error */
710 arg->rc = params_len;
711
712 complete(&arg->done);
713
714 return 0;
715}
716
717static int pn533_send_cmd_frame_sync(struct pn533 *dev,
718 struct pn533_frame *out_frame,
719 struct pn533_frame *in_frame,
720 int in_frame_len)
721{
722 int rc;
723 struct pn533_sync_cmd_response arg;
724
725 nfc_dev_dbg(&dev->interface->dev, "%s", __func__);
726
727 init_completion(&arg.done);
728
729 rc = pn533_send_cmd_frame_async(dev, out_frame, in_frame, in_frame_len,
730 pn533_sync_cmd_complete, &arg, GFP_KERNEL);
731 if (rc)
732 return rc;
733
734 wait_for_completion(&arg.done);
735
736 return arg.rc;
737}
738
739static void pn533_send_complete(struct urb *urb)
740{
741 struct pn533 *dev = urb->context;
742
743 nfc_dev_dbg(&dev->interface->dev, "%s", __func__);
744
745 switch (urb->status) {
746 case 0:
747 /* success */
748 break;
749 case -ECONNRESET:
750 case -ENOENT:
751 case -ESHUTDOWN:
752 nfc_dev_dbg(&dev->interface->dev, "Urb shutting down with"
753 " status: %d", urb->status);
754 break;
755 default:
756 nfc_dev_dbg(&dev->interface->dev, "Nonzero urb status received:"
757 " %d", urb->status);
758 }
759}
760
761struct pn533_target_type_a {
762 __be16 sens_res;
763 u8 sel_res;
764 u8 nfcid_len;
765 u8 nfcid_data[];
766} __packed;
767
768
769#define PN533_TYPE_A_SENS_RES_NFCID1(x) ((u8)((be16_to_cpu(x) & 0x00C0) >> 6))
770#define PN533_TYPE_A_SENS_RES_SSD(x) ((u8)((be16_to_cpu(x) & 0x001F) >> 0))
771#define PN533_TYPE_A_SENS_RES_PLATCONF(x) ((u8)((be16_to_cpu(x) & 0x0F00) >> 8))
772
773#define PN533_TYPE_A_SENS_RES_SSD_JEWEL 0x00
774#define PN533_TYPE_A_SENS_RES_PLATCONF_JEWEL 0x0C
775
776#define PN533_TYPE_A_SEL_PROT(x) (((x) & 0x60) >> 5)
777#define PN533_TYPE_A_SEL_CASCADE(x) (((x) & 0x04) >> 2)
778
779#define PN533_TYPE_A_SEL_PROT_MIFARE 0
780#define PN533_TYPE_A_SEL_PROT_ISO14443 1
781#define PN533_TYPE_A_SEL_PROT_DEP 2
782#define PN533_TYPE_A_SEL_PROT_ISO14443_DEP 3
783
784static bool pn533_target_type_a_is_valid(struct pn533_target_type_a *type_a,
785 int target_data_len)
786{
787 u8 ssd;
788 u8 platconf;
789
790 if (target_data_len < sizeof(struct pn533_target_type_a))
791 return false;
792
793 /* The lenght check of nfcid[] and ats[] are not being performed because
794 the values are not being used */
795
796 /* Requirement 4.6.3.3 from NFC Forum Digital Spec */
797 ssd = PN533_TYPE_A_SENS_RES_SSD(type_a->sens_res);
798 platconf = PN533_TYPE_A_SENS_RES_PLATCONF(type_a->sens_res);
799
800 if ((ssd == PN533_TYPE_A_SENS_RES_SSD_JEWEL &&
801 platconf != PN533_TYPE_A_SENS_RES_PLATCONF_JEWEL) ||
802 (ssd != PN533_TYPE_A_SENS_RES_SSD_JEWEL &&
803 platconf == PN533_TYPE_A_SENS_RES_PLATCONF_JEWEL))
804 return false;
805
806 /* Requirements 4.8.2.1, 4.8.2.3, 4.8.2.5 and 4.8.2.7 from NFC Forum */
807 if (PN533_TYPE_A_SEL_CASCADE(type_a->sel_res) != 0)
808 return false;
809
810 return true;
811}
812
813static int pn533_target_found_type_a(struct nfc_target *nfc_tgt, u8 *tgt_data,
814 int tgt_data_len)
815{
816 struct pn533_target_type_a *tgt_type_a;
817
818 tgt_type_a = (struct pn533_target_type_a *) tgt_data;
819
820 if (!pn533_target_type_a_is_valid(tgt_type_a, tgt_data_len))
821 return -EPROTO;
822
823 switch (PN533_TYPE_A_SEL_PROT(tgt_type_a->sel_res)) {
824 case PN533_TYPE_A_SEL_PROT_MIFARE:
825 nfc_tgt->supported_protocols = NFC_PROTO_MIFARE_MASK;
826 break;
827 case PN533_TYPE_A_SEL_PROT_ISO14443:
828 nfc_tgt->supported_protocols = NFC_PROTO_ISO14443_MASK;
829 break;
830 case PN533_TYPE_A_SEL_PROT_DEP:
831 nfc_tgt->supported_protocols = NFC_PROTO_NFC_DEP_MASK;
832 break;
833 case PN533_TYPE_A_SEL_PROT_ISO14443_DEP:
834 nfc_tgt->supported_protocols = NFC_PROTO_ISO14443_MASK |
835 NFC_PROTO_NFC_DEP_MASK;
836 break;
837 }
838
839 nfc_tgt->sens_res = be16_to_cpu(tgt_type_a->sens_res);
840 nfc_tgt->sel_res = tgt_type_a->sel_res;
Samuel Ortizc3b1e1e2012-03-05 01:03:33 +0100841 nfc_tgt->nfcid1_len = tgt_type_a->nfcid_len;
842 memcpy(nfc_tgt->nfcid1, tgt_type_a->nfcid_data, nfc_tgt->nfcid1_len);
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -0300843
844 return 0;
845}
846
847struct pn533_target_felica {
848 u8 pol_res;
849 u8 opcode;
850 u8 nfcid2[8];
851 u8 pad[8];
852 /* optional */
853 u8 syst_code[];
854} __packed;
855
856#define PN533_FELICA_SENSF_NFCID2_DEP_B1 0x01
857#define PN533_FELICA_SENSF_NFCID2_DEP_B2 0xFE
858
859static bool pn533_target_felica_is_valid(struct pn533_target_felica *felica,
860 int target_data_len)
861{
862 if (target_data_len < sizeof(struct pn533_target_felica))
863 return false;
864
865 if (felica->opcode != PN533_FELICA_OPC_SENSF_RES)
866 return false;
867
868 return true;
869}
870
871static int pn533_target_found_felica(struct nfc_target *nfc_tgt, u8 *tgt_data,
872 int tgt_data_len)
873{
874 struct pn533_target_felica *tgt_felica;
875
876 tgt_felica = (struct pn533_target_felica *) tgt_data;
877
878 if (!pn533_target_felica_is_valid(tgt_felica, tgt_data_len))
879 return -EPROTO;
880
881 if (tgt_felica->nfcid2[0] == PN533_FELICA_SENSF_NFCID2_DEP_B1 &&
882 tgt_felica->nfcid2[1] ==
883 PN533_FELICA_SENSF_NFCID2_DEP_B2)
884 nfc_tgt->supported_protocols = NFC_PROTO_NFC_DEP_MASK;
885 else
886 nfc_tgt->supported_protocols = NFC_PROTO_FELICA_MASK;
887
Samuel Ortiz79757542012-03-05 01:03:45 +0100888 memcpy(nfc_tgt->sensf_res, &tgt_felica->opcode, 9);
889 nfc_tgt->sensf_res_len = 9;
890
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -0300891 return 0;
892}
893
894struct pn533_target_jewel {
895 __be16 sens_res;
896 u8 jewelid[4];
897} __packed;
898
899static bool pn533_target_jewel_is_valid(struct pn533_target_jewel *jewel,
900 int target_data_len)
901{
902 u8 ssd;
903 u8 platconf;
904
905 if (target_data_len < sizeof(struct pn533_target_jewel))
906 return false;
907
908 /* Requirement 4.6.3.3 from NFC Forum Digital Spec */
909 ssd = PN533_TYPE_A_SENS_RES_SSD(jewel->sens_res);
910 platconf = PN533_TYPE_A_SENS_RES_PLATCONF(jewel->sens_res);
911
912 if ((ssd == PN533_TYPE_A_SENS_RES_SSD_JEWEL &&
913 platconf != PN533_TYPE_A_SENS_RES_PLATCONF_JEWEL) ||
914 (ssd != PN533_TYPE_A_SENS_RES_SSD_JEWEL &&
915 platconf == PN533_TYPE_A_SENS_RES_PLATCONF_JEWEL))
916 return false;
917
918 return true;
919}
920
921static int pn533_target_found_jewel(struct nfc_target *nfc_tgt, u8 *tgt_data,
922 int tgt_data_len)
923{
924 struct pn533_target_jewel *tgt_jewel;
925
926 tgt_jewel = (struct pn533_target_jewel *) tgt_data;
927
928 if (!pn533_target_jewel_is_valid(tgt_jewel, tgt_data_len))
929 return -EPROTO;
930
931 nfc_tgt->supported_protocols = NFC_PROTO_JEWEL_MASK;
932 nfc_tgt->sens_res = be16_to_cpu(tgt_jewel->sens_res);
Samuel Ortizd8dc1072012-03-05 01:03:46 +0100933 nfc_tgt->nfcid1_len = 4;
934 memcpy(nfc_tgt->nfcid1, tgt_jewel->jewelid, nfc_tgt->nfcid1_len);
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -0300935
936 return 0;
937}
938
939struct pn533_type_b_prot_info {
940 u8 bitrate;
941 u8 fsci_type;
942 u8 fwi_adc_fo;
943} __packed;
944
945#define PN533_TYPE_B_PROT_FCSI(x) (((x) & 0xF0) >> 4)
946#define PN533_TYPE_B_PROT_TYPE(x) (((x) & 0x0F) >> 0)
947#define PN533_TYPE_B_PROT_TYPE_RFU_MASK 0x8
948
949struct pn533_type_b_sens_res {
950 u8 opcode;
951 u8 nfcid[4];
952 u8 appdata[4];
953 struct pn533_type_b_prot_info prot_info;
954} __packed;
955
956#define PN533_TYPE_B_OPC_SENSB_RES 0x50
957
958struct pn533_target_type_b {
959 struct pn533_type_b_sens_res sensb_res;
960 u8 attrib_res_len;
961 u8 attrib_res[];
962} __packed;
963
964static bool pn533_target_type_b_is_valid(struct pn533_target_type_b *type_b,
965 int target_data_len)
966{
967 if (target_data_len < sizeof(struct pn533_target_type_b))
968 return false;
969
970 if (type_b->sensb_res.opcode != PN533_TYPE_B_OPC_SENSB_RES)
971 return false;
972
973 if (PN533_TYPE_B_PROT_TYPE(type_b->sensb_res.prot_info.fsci_type) &
974 PN533_TYPE_B_PROT_TYPE_RFU_MASK)
975 return false;
976
977 return true;
978}
979
980static int pn533_target_found_type_b(struct nfc_target *nfc_tgt, u8 *tgt_data,
981 int tgt_data_len)
982{
983 struct pn533_target_type_b *tgt_type_b;
984
985 tgt_type_b = (struct pn533_target_type_b *) tgt_data;
986
987 if (!pn533_target_type_b_is_valid(tgt_type_b, tgt_data_len))
988 return -EPROTO;
989
990 nfc_tgt->supported_protocols = NFC_PROTO_ISO14443_MASK;
991
992 return 0;
993}
994
995struct pn533_poll_response {
996 u8 nbtg;
997 u8 tg;
998 u8 target_data[];
999} __packed;
1000
1001static int pn533_target_found(struct pn533 *dev,
1002 struct pn533_poll_response *resp, int resp_len)
1003{
1004 int target_data_len;
1005 struct nfc_target nfc_tgt;
1006 int rc;
1007
1008 nfc_dev_dbg(&dev->interface->dev, "%s - modulation=%d", __func__,
1009 dev->poll_mod_curr);
1010
1011 if (resp->tg != 1)
1012 return -EPROTO;
1013
Samuel Ortiz98b3ac12012-03-05 01:03:39 +01001014 memset(&nfc_tgt, 0, sizeof(struct nfc_target));
1015
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -03001016 target_data_len = resp_len - sizeof(struct pn533_poll_response);
1017
1018 switch (dev->poll_mod_curr) {
1019 case PN533_POLL_MOD_106KBPS_A:
1020 rc = pn533_target_found_type_a(&nfc_tgt, resp->target_data,
1021 target_data_len);
1022 break;
1023 case PN533_POLL_MOD_212KBPS_FELICA:
1024 case PN533_POLL_MOD_424KBPS_FELICA:
1025 rc = pn533_target_found_felica(&nfc_tgt, resp->target_data,
1026 target_data_len);
1027 break;
1028 case PN533_POLL_MOD_106KBPS_JEWEL:
1029 rc = pn533_target_found_jewel(&nfc_tgt, resp->target_data,
1030 target_data_len);
1031 break;
1032 case PN533_POLL_MOD_847KBPS_B:
1033 rc = pn533_target_found_type_b(&nfc_tgt, resp->target_data,
1034 target_data_len);
1035 break;
1036 default:
1037 nfc_dev_err(&dev->interface->dev, "Unknown current poll"
1038 " modulation");
1039 return -EPROTO;
1040 }
1041
1042 if (rc)
1043 return rc;
1044
1045 if (!(nfc_tgt.supported_protocols & dev->poll_protocols)) {
1046 nfc_dev_dbg(&dev->interface->dev, "The target found does not"
1047 " have the desired protocol");
1048 return -EAGAIN;
1049 }
1050
1051 nfc_dev_dbg(&dev->interface->dev, "Target found - supported protocols: "
1052 "0x%x", nfc_tgt.supported_protocols);
1053
1054 dev->tgt_available_prots = nfc_tgt.supported_protocols;
1055
1056 nfc_targets_found(dev->nfc_dev, &nfc_tgt, 1);
1057
1058 return 0;
1059}
1060
Samuel Ortiz6fbbdc12012-05-30 17:20:25 +02001061static inline void pn533_poll_next_mod(struct pn533 *dev)
1062{
1063 dev->poll_mod_curr = (dev->poll_mod_curr + 1) % dev->poll_mod_count;
1064}
1065
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -03001066static void pn533_poll_reset_mod_list(struct pn533 *dev)
1067{
1068 dev->poll_mod_count = 0;
1069}
1070
1071static void pn533_poll_add_mod(struct pn533 *dev, u8 mod_index)
1072{
1073 dev->poll_mod_active[dev->poll_mod_count] =
1074 (struct pn533_poll_modulations *) &poll_mod[mod_index];
1075 dev->poll_mod_count++;
1076}
1077
Samuel Ortiz6fbbdc12012-05-30 17:20:25 +02001078static void pn533_poll_create_mod_list(struct pn533 *dev,
1079 u32 im_protocols, u32 tm_protocols)
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -03001080{
1081 pn533_poll_reset_mod_list(dev);
1082
Samuel Ortiz6fbbdc12012-05-30 17:20:25 +02001083 if (im_protocols & NFC_PROTO_MIFARE_MASK
1084 || im_protocols & NFC_PROTO_ISO14443_MASK
1085 || im_protocols & NFC_PROTO_NFC_DEP_MASK)
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -03001086 pn533_poll_add_mod(dev, PN533_POLL_MOD_106KBPS_A);
1087
Samuel Ortiz6fbbdc12012-05-30 17:20:25 +02001088 if (im_protocols & NFC_PROTO_FELICA_MASK
1089 || im_protocols & NFC_PROTO_NFC_DEP_MASK) {
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -03001090 pn533_poll_add_mod(dev, PN533_POLL_MOD_212KBPS_FELICA);
1091 pn533_poll_add_mod(dev, PN533_POLL_MOD_424KBPS_FELICA);
1092 }
1093
Samuel Ortiz6fbbdc12012-05-30 17:20:25 +02001094 if (im_protocols & NFC_PROTO_JEWEL_MASK)
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -03001095 pn533_poll_add_mod(dev, PN533_POLL_MOD_106KBPS_JEWEL);
1096
Samuel Ortiz6fbbdc12012-05-30 17:20:25 +02001097 if (im_protocols & NFC_PROTO_ISO14443_MASK)
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -03001098 pn533_poll_add_mod(dev, PN533_POLL_MOD_847KBPS_B);
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -03001099
Samuel Ortiz6fbbdc12012-05-30 17:20:25 +02001100 if (tm_protocols)
1101 pn533_poll_add_mod(dev, PN533_LISTEN_MOD);
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -03001102}
1103
1104static int pn533_start_poll_complete(struct pn533 *dev, void *arg,
Samuel Ortiz6fbbdc12012-05-30 17:20:25 +02001105 u8 *params, int params_len)
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -03001106{
1107 struct pn533_poll_response *resp;
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -03001108 int rc;
1109
1110 nfc_dev_dbg(&dev->interface->dev, "%s", __func__);
1111
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -03001112 resp = (struct pn533_poll_response *) params;
1113 if (resp->nbtg) {
1114 rc = pn533_target_found(dev, resp, params_len);
1115
1116 /* We must stop the poll after a valid target found */
Samuel Ortiz6fbbdc12012-05-30 17:20:25 +02001117 if (rc == 0) {
1118 pn533_poll_reset_mod_list(dev);
1119 return 0;
1120 }
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -03001121 }
1122
Samuel Ortiz6fbbdc12012-05-30 17:20:25 +02001123 return -EAGAIN;
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -03001124}
1125
Samuel Ortizad3823c2012-05-30 23:54:55 +02001126static int pn533_init_target_frame(struct pn533_frame *frame,
1127 u8 *gb, size_t gb_len)
1128{
1129 struct pn533_cmd_init_target *cmd;
1130 size_t cmd_len;
Samuel Ortiz51d9e802012-05-30 01:48:46 +02001131 u8 felica_params[18] = {0x1, 0xfe, /* DEP */
1132 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, /* random */
1133 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
1134 0xff, 0xff}; /* System code */
1135 u8 mifare_params[6] = {0x1, 0x1, /* SENS_RES */
1136 0x0, 0x0, 0x0,
1137 0x40}; /* SEL_RES for DEP */
Samuel Ortizad3823c2012-05-30 23:54:55 +02001138
1139 cmd_len = sizeof(struct pn533_cmd_init_target) + gb_len + 1;
1140 cmd = kzalloc(cmd_len, GFP_KERNEL);
1141 if (cmd == NULL)
1142 return -ENOMEM;
1143
1144 pn533_tx_frame_init(frame, PN533_CMD_TG_INIT_AS_TARGET);
1145
1146 /* DEP support only */
1147 cmd->mode |= PN533_INIT_TARGET_DEP;
Samuel Ortiz51d9e802012-05-30 01:48:46 +02001148
1149 /* Felica params */
1150 memcpy(cmd->felica, felica_params, 18);
1151 get_random_bytes(cmd->felica + 2, 6);
1152
1153 /* NFCID3 */
1154 memset(cmd->nfcid3, 0, 10);
1155 memcpy(cmd->nfcid3, cmd->felica, 8);
1156
1157 /* MIFARE params */
1158 memcpy(cmd->mifare, mifare_params, 6);
1159
1160 /* General bytes */
Samuel Ortizad3823c2012-05-30 23:54:55 +02001161 cmd->gb_len = gb_len;
1162 memcpy(cmd->gb, gb, gb_len);
Samuel Ortiz51d9e802012-05-30 01:48:46 +02001163
Samuel Ortizad3823c2012-05-30 23:54:55 +02001164 /* Len Tk */
1165 cmd->gb[gb_len] = 0;
1166
1167 memcpy(PN533_FRAME_CMD_PARAMS_PTR(frame), cmd, cmd_len);
Samuel Ortiz51d9e802012-05-30 01:48:46 +02001168
Samuel Ortizad3823c2012-05-30 23:54:55 +02001169 frame->datalen += cmd_len;
1170
1171 pn533_tx_frame_finish(frame);
1172
Samuel Ortiz51d9e802012-05-30 01:48:46 +02001173 kfree(cmd);
1174
Samuel Ortizad3823c2012-05-30 23:54:55 +02001175 return 0;
1176}
1177
Samuel Ortiz103b34c2012-05-31 00:07:51 +02001178#define PN533_CMD_DATAEXCH_HEAD_LEN (sizeof(struct pn533_frame) + 3)
1179#define PN533_CMD_DATAEXCH_DATA_MAXLEN 262
1180static int pn533_tm_get_data_complete(struct pn533 *dev, void *arg,
1181 u8 *params, int params_len)
1182{
1183 struct sk_buff *skb_resp = arg;
1184 struct pn533_frame *in_frame = (struct pn533_frame *) skb_resp->data;
1185
1186 nfc_dev_dbg(&dev->interface->dev, "%s", __func__);
1187
1188 if (params_len < 0) {
1189 nfc_dev_err(&dev->interface->dev,
1190 "Error %d when starting as a target",
1191 params_len);
1192
1193 return params_len;
1194 }
1195
1196 if (params_len > 0 && params[0] != 0) {
1197 nfc_tm_deactivated(dev->nfc_dev);
1198
Samuel Ortiz51ad3042012-05-31 20:01:32 +02001199 dev->tgt_mode = 0;
1200
Samuel Ortiz103b34c2012-05-31 00:07:51 +02001201 kfree_skb(skb_resp);
1202 return 0;
1203 }
1204
1205 skb_put(skb_resp, PN533_FRAME_SIZE(in_frame));
1206 skb_pull(skb_resp, PN533_CMD_DATAEXCH_HEAD_LEN);
1207 skb_trim(skb_resp, skb_resp->len - PN533_FRAME_TAIL_SIZE);
1208
1209 return nfc_tm_data_received(dev->nfc_dev, skb_resp);
1210}
1211
1212static void pn533_wq_tg_get_data(struct work_struct *work)
1213{
1214 struct pn533 *dev = container_of(work, struct pn533, tg_work);
1215 struct pn533_frame *in_frame;
1216 struct sk_buff *skb_resp;
1217 size_t skb_resp_len;
1218
1219 nfc_dev_dbg(&dev->interface->dev, "%s", __func__);
1220
1221 skb_resp_len = PN533_CMD_DATAEXCH_HEAD_LEN +
1222 PN533_CMD_DATAEXCH_DATA_MAXLEN +
1223 PN533_FRAME_TAIL_SIZE;
1224
1225 skb_resp = nfc_alloc_recv_skb(skb_resp_len, GFP_KERNEL);
1226 if (!skb_resp)
1227 return;
1228
1229 in_frame = (struct pn533_frame *)skb_resp->data;
1230
1231 pn533_tx_frame_init(dev->out_frame, PN533_CMD_TG_GET_DATA);
1232 pn533_tx_frame_finish(dev->out_frame);
1233
1234 pn533_send_cmd_frame_async(dev, dev->out_frame, in_frame,
1235 skb_resp_len,
1236 pn533_tm_get_data_complete,
1237 skb_resp, GFP_KERNEL);
1238
1239 return;
1240}
1241
Samuel Ortizfc40a8c2012-06-01 13:21:13 +02001242#define ATR_REQ_GB_OFFSET 17
Samuel Ortizad3823c2012-05-30 23:54:55 +02001243static int pn533_init_target_complete(struct pn533 *dev, void *arg,
1244 u8 *params, int params_len)
1245{
1246 struct pn533_cmd_init_target_response *resp;
Samuel Ortizfc40a8c2012-06-01 13:21:13 +02001247 u8 frame, comm_mode = NFC_COMM_PASSIVE, *gb;
1248 size_t gb_len;
Samuel Ortiz103b34c2012-05-31 00:07:51 +02001249 int rc;
Samuel Ortizad3823c2012-05-30 23:54:55 +02001250
1251 nfc_dev_dbg(&dev->interface->dev, "%s", __func__);
1252
1253 if (params_len < 0) {
1254 nfc_dev_err(&dev->interface->dev,
1255 "Error %d when starting as a target",
1256 params_len);
1257
1258 return params_len;
1259 }
1260
Samuel Ortizfc40a8c2012-06-01 13:21:13 +02001261 if (params_len < ATR_REQ_GB_OFFSET + 1)
1262 return -EINVAL;
1263
Samuel Ortizad3823c2012-05-30 23:54:55 +02001264 resp = (struct pn533_cmd_init_target_response *) params;
1265
Samuel Ortizfc40a8c2012-06-01 13:21:13 +02001266 nfc_dev_dbg(&dev->interface->dev, "Target mode 0x%x param len %d\n",
1267 resp->mode, params_len);
Samuel Ortizad3823c2012-05-30 23:54:55 +02001268
Samuel Ortizfc40a8c2012-06-01 13:21:13 +02001269 frame = resp->mode & PN533_INIT_TARGET_RESP_FRAME_MASK;
1270 if (frame == PN533_INIT_TARGET_RESP_ACTIVE)
1271 comm_mode = NFC_COMM_ACTIVE;
1272
1273 /* Again, only DEP */
1274 if ((resp->mode & PN533_INIT_TARGET_RESP_DEP) == 0)
1275 return -EOPNOTSUPP;
1276
1277 gb = resp->cmd + ATR_REQ_GB_OFFSET;
1278 gb_len = params_len - (ATR_REQ_GB_OFFSET + 1);
1279
Samuel Ortiz103b34c2012-05-31 00:07:51 +02001280 rc = nfc_tm_activated(dev->nfc_dev, NFC_PROTO_NFC_DEP_MASK,
1281 comm_mode, gb, gb_len);
1282 if (rc < 0) {
1283 nfc_dev_err(&dev->interface->dev,
1284 "Error when signaling target activation");
1285 return rc;
1286 }
1287
Samuel Ortiz51ad3042012-05-31 20:01:32 +02001288 dev->tgt_mode = 1;
1289
Samuel Ortiz103b34c2012-05-31 00:07:51 +02001290 queue_work(dev->wq, &dev->tg_work);
1291
1292 return 0;
Samuel Ortizad3823c2012-05-30 23:54:55 +02001293}
1294
Samuel Ortiz6fbbdc12012-05-30 17:20:25 +02001295static void pn533_listen_mode_timer(unsigned long data)
Samuel Ortizfe7c5802012-05-15 15:57:06 +02001296{
Samuel Ortiz6fbbdc12012-05-30 17:20:25 +02001297 struct pn533 *dev = (struct pn533 *) data;
1298
1299 nfc_dev_dbg(&dev->interface->dev, "Listen mode timeout");
1300
1301 /* An ack will cancel the last issued command (poll) */
1302 pn533_send_ack(dev, GFP_ATOMIC);
1303
1304 dev->cancel_listen = 1;
1305
Samuel Ortiz0201ed02012-05-31 17:56:46 +02001306 mutex_unlock(&dev->cmd_lock);
Samuel Ortiz6fbbdc12012-05-30 17:20:25 +02001307
1308 pn533_poll_next_mod(dev);
1309
1310 queue_work(dev->wq, &dev->poll_work);
1311}
1312
1313static int pn533_poll_complete(struct pn533 *dev, void *arg,
1314 u8 *params, int params_len)
1315{
1316 struct pn533_poll_modulations *cur_mod;
Samuel Ortizad3823c2012-05-30 23:54:55 +02001317 int rc;
1318
Samuel Ortiz6fbbdc12012-05-30 17:20:25 +02001319 nfc_dev_dbg(&dev->interface->dev, "%s", __func__);
1320
1321 if (params_len == -ENOENT) {
1322 if (dev->poll_mod_count != 0)
1323 return 0;
1324
1325 nfc_dev_err(&dev->interface->dev,
1326 "Polling operation has been stopped");
1327
1328 goto stop_poll;
1329 }
1330
1331 if (params_len < 0) {
1332 nfc_dev_err(&dev->interface->dev,
1333 "Error %d when running poll", params_len);
1334
1335 goto stop_poll;
1336 }
1337
1338 cur_mod = dev->poll_mod_active[dev->poll_mod_curr];
1339
1340 if (cur_mod->len == 0) {
1341 del_timer(&dev->listen_timer);
1342
1343 return pn533_init_target_complete(dev, arg, params, params_len);
1344 } else {
1345 rc = pn533_start_poll_complete(dev, arg, params, params_len);
1346 if (!rc)
1347 return rc;
1348 }
1349
1350 pn533_poll_next_mod(dev);
1351
1352 queue_work(dev->wq, &dev->poll_work);
1353
1354 return 0;
1355
1356stop_poll:
Samuel Ortizad3823c2012-05-30 23:54:55 +02001357 pn533_poll_reset_mod_list(dev);
Samuel Ortiz6fbbdc12012-05-30 17:20:25 +02001358 dev->poll_protocols = 0;
1359 return 0;
1360}
Samuel Ortizad3823c2012-05-30 23:54:55 +02001361
Samuel Ortiz6fbbdc12012-05-30 17:20:25 +02001362static void pn533_build_poll_frame(struct pn533 *dev,
1363 struct pn533_frame *frame,
1364 struct pn533_poll_modulations *mod)
1365{
1366 nfc_dev_dbg(&dev->interface->dev, "mod len %d\n", mod->len);
Samuel Ortizad3823c2012-05-30 23:54:55 +02001367
Samuel Ortiz6fbbdc12012-05-30 17:20:25 +02001368 if (mod->len == 0) {
1369 /* Listen mode */
1370 pn533_init_target_frame(frame, dev->gb, dev->gb_len);
1371 } else {
1372 /* Polling mode */
1373 pn533_tx_frame_init(frame, PN533_CMD_IN_LIST_PASSIVE_TARGET);
1374
1375 memcpy(PN533_FRAME_CMD_PARAMS_PTR(frame), &mod->data, mod->len);
1376 frame->datalen += mod->len;
1377
1378 pn533_tx_frame_finish(frame);
1379 }
1380}
1381
1382static int pn533_send_poll_frame(struct pn533 *dev)
1383{
1384 struct pn533_poll_modulations *cur_mod;
1385 int rc;
1386
1387 cur_mod = dev->poll_mod_active[dev->poll_mod_curr];
1388
1389 pn533_build_poll_frame(dev, dev->out_frame, cur_mod);
Samuel Ortizad3823c2012-05-30 23:54:55 +02001390
1391 rc = pn533_send_cmd_frame_async(dev, dev->out_frame, dev->in_frame,
Samuel Ortiz6fbbdc12012-05-30 17:20:25 +02001392 dev->in_maxlen, pn533_poll_complete,
1393 NULL, GFP_KERNEL);
Samuel Ortizad3823c2012-05-30 23:54:55 +02001394 if (rc)
Samuel Ortiz6fbbdc12012-05-30 17:20:25 +02001395 nfc_dev_err(&dev->interface->dev, "Polling loop error %d", rc);
Samuel Ortizad3823c2012-05-30 23:54:55 +02001396
1397 return rc;
Samuel Ortizfe7c5802012-05-15 15:57:06 +02001398}
1399
Samuel Ortiz6fbbdc12012-05-30 17:20:25 +02001400static void pn533_wq_poll(struct work_struct *work)
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -03001401{
Samuel Ortiz6fbbdc12012-05-30 17:20:25 +02001402 struct pn533 *dev = container_of(work, struct pn533, poll_work);
1403 struct pn533_poll_modulations *cur_mod;
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -03001404 int rc;
1405
Samuel Ortiz6fbbdc12012-05-30 17:20:25 +02001406 cur_mod = dev->poll_mod_active[dev->poll_mod_curr];
1407
1408 nfc_dev_dbg(&dev->interface->dev,
1409 "%s cancel_listen %d modulation len %d",
1410 __func__, dev->cancel_listen, cur_mod->len);
1411
1412 if (dev->cancel_listen == 1) {
1413 dev->cancel_listen = 0;
1414 usb_kill_urb(dev->in_urb);
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -03001415 }
1416
Samuel Ortiz6fbbdc12012-05-30 17:20:25 +02001417 rc = pn533_send_poll_frame(dev);
1418 if (rc)
1419 return;
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -03001420
Samuel Ortiz6fbbdc12012-05-30 17:20:25 +02001421 if (cur_mod->len == 0 && dev->poll_mod_count > 1)
1422 mod_timer(&dev->listen_timer, jiffies + PN533_LISTEN_TIME * HZ);
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -03001423
Samuel Ortiz6fbbdc12012-05-30 17:20:25 +02001424 return;
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -03001425}
1426
Samuel Ortizfe7c5802012-05-15 15:57:06 +02001427static int pn533_start_poll(struct nfc_dev *nfc_dev,
1428 u32 im_protocols, u32 tm_protocols)
1429{
1430 struct pn533 *dev = nfc_get_drvdata(nfc_dev);
1431
1432 nfc_dev_dbg(&dev->interface->dev,
1433 "%s: im protocols 0x%x tm protocols 0x%x",
1434 __func__, im_protocols, tm_protocols);
1435
1436 if (dev->tgt_active_prot) {
1437 nfc_dev_err(&dev->interface->dev,
1438 "Cannot poll with a target already activated");
1439 return -EBUSY;
1440 }
1441
Samuel Ortiz51ad3042012-05-31 20:01:32 +02001442 if (dev->tgt_mode) {
1443 nfc_dev_err(&dev->interface->dev,
1444 "Cannot poll while already being activated");
1445 return -EBUSY;
1446 }
1447
Samuel Ortiz6fbbdc12012-05-30 17:20:25 +02001448 if (tm_protocols) {
1449 dev->gb = nfc_get_local_general_bytes(nfc_dev, &dev->gb_len);
1450 if (dev->gb == NULL)
1451 tm_protocols = 0;
1452 }
Samuel Ortizad3823c2012-05-30 23:54:55 +02001453
Samuel Ortiz6fbbdc12012-05-30 17:20:25 +02001454 dev->poll_mod_curr = 0;
1455 pn533_poll_create_mod_list(dev, im_protocols, tm_protocols);
1456 dev->poll_protocols = im_protocols;
1457 dev->listen_protocols = tm_protocols;
Samuel Ortizad3823c2012-05-30 23:54:55 +02001458
Samuel Ortiz6fbbdc12012-05-30 17:20:25 +02001459 return pn533_send_poll_frame(dev);
Samuel Ortizfe7c5802012-05-15 15:57:06 +02001460}
1461
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -03001462static void pn533_stop_poll(struct nfc_dev *nfc_dev)
1463{
1464 struct pn533 *dev = nfc_get_drvdata(nfc_dev);
1465
1466 nfc_dev_dbg(&dev->interface->dev, "%s", __func__);
1467
Samuel Ortiz6fbbdc12012-05-30 17:20:25 +02001468 del_timer(&dev->listen_timer);
1469
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -03001470 if (!dev->poll_mod_count) {
1471 nfc_dev_dbg(&dev->interface->dev, "Polling operation was not"
1472 " running");
1473 return;
1474 }
1475
1476 /* An ack will cancel the last issued command (poll) */
1477 pn533_send_ack(dev, GFP_KERNEL);
1478
1479 /* prevent pn533_start_poll_complete to issue a new poll meanwhile */
1480 usb_kill_urb(dev->in_urb);
Samuel Ortiz7c2a04a932012-05-21 16:20:01 +02001481
1482 pn533_poll_reset_mod_list(dev);
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -03001483}
1484
1485static int pn533_activate_target_nfcdep(struct pn533 *dev)
1486{
1487 struct pn533_cmd_activate_param param;
1488 struct pn533_cmd_activate_response *resp;
Samuel Ortiz541d9202011-12-14 16:43:10 +01001489 u16 gt_len;
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -03001490 int rc;
1491
1492 nfc_dev_dbg(&dev->interface->dev, "%s", __func__);
1493
1494 pn533_tx_frame_init(dev->out_frame, PN533_CMD_IN_ATR);
1495
1496 param.tg = 1;
1497 param.next = 0;
1498 memcpy(PN533_FRAME_CMD_PARAMS_PTR(dev->out_frame), &param,
1499 sizeof(struct pn533_cmd_activate_param));
1500 dev->out_frame->datalen += sizeof(struct pn533_cmd_activate_param);
1501
1502 pn533_tx_frame_finish(dev->out_frame);
1503
1504 rc = pn533_send_cmd_frame_sync(dev, dev->out_frame, dev->in_frame,
1505 dev->in_maxlen);
1506 if (rc)
1507 return rc;
1508
1509 resp = (struct pn533_cmd_activate_response *)
1510 PN533_FRAME_CMD_PARAMS_PTR(dev->in_frame);
1511 rc = resp->status & PN533_CMD_RET_MASK;
1512 if (rc != PN533_CMD_RET_SUCCESS)
1513 return -EIO;
1514
Samuel Ortiz541d9202011-12-14 16:43:10 +01001515 /* ATR_RES general bytes are located at offset 16 */
1516 gt_len = PN533_FRAME_CMD_PARAMS_LEN(dev->in_frame) - 16;
1517 rc = nfc_set_remote_general_bytes(dev->nfc_dev, resp->gt, gt_len);
1518
1519 return rc;
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -03001520}
1521
Eric Lapuyade90099432012-05-07 12:31:13 +02001522static int pn533_activate_target(struct nfc_dev *nfc_dev,
1523 struct nfc_target *target, u32 protocol)
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -03001524{
1525 struct pn533 *dev = nfc_get_drvdata(nfc_dev);
1526 int rc;
1527
1528 nfc_dev_dbg(&dev->interface->dev, "%s - protocol=%u", __func__,
1529 protocol);
1530
1531 if (dev->poll_mod_count) {
1532 nfc_dev_err(&dev->interface->dev, "Cannot activate while"
1533 " polling");
1534 return -EBUSY;
1535 }
1536
1537 if (dev->tgt_active_prot) {
1538 nfc_dev_err(&dev->interface->dev, "There is already an active"
1539 " target");
1540 return -EBUSY;
1541 }
1542
1543 if (!dev->tgt_available_prots) {
1544 nfc_dev_err(&dev->interface->dev, "There is no available target"
1545 " to activate");
1546 return -EINVAL;
1547 }
1548
1549 if (!(dev->tgt_available_prots & (1 << protocol))) {
1550 nfc_dev_err(&dev->interface->dev, "The target does not support"
1551 " the requested protocol %u", protocol);
1552 return -EINVAL;
1553 }
1554
1555 if (protocol == NFC_PROTO_NFC_DEP) {
1556 rc = pn533_activate_target_nfcdep(dev);
1557 if (rc) {
1558 nfc_dev_err(&dev->interface->dev, "Error %d when"
1559 " activating target with"
1560 " NFC_DEP protocol", rc);
1561 return rc;
1562 }
1563 }
1564
1565 dev->tgt_active_prot = protocol;
1566 dev->tgt_available_prots = 0;
1567
1568 return 0;
1569}
1570
Eric Lapuyade90099432012-05-07 12:31:13 +02001571static void pn533_deactivate_target(struct nfc_dev *nfc_dev,
1572 struct nfc_target *target)
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -03001573{
1574 struct pn533 *dev = nfc_get_drvdata(nfc_dev);
1575 u8 tg;
1576 u8 status;
1577 int rc;
1578
1579 nfc_dev_dbg(&dev->interface->dev, "%s", __func__);
1580
1581 if (!dev->tgt_active_prot) {
1582 nfc_dev_err(&dev->interface->dev, "There is no active target");
1583 return;
1584 }
1585
1586 dev->tgt_active_prot = 0;
1587
Samuel Ortiz6ff73fd2012-04-10 19:43:18 +02001588 skb_queue_purge(&dev->resp_q);
1589
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -03001590 pn533_tx_frame_init(dev->out_frame, PN533_CMD_IN_RELEASE);
1591
1592 tg = 1;
1593 memcpy(PN533_FRAME_CMD_PARAMS_PTR(dev->out_frame), &tg, sizeof(u8));
1594 dev->out_frame->datalen += sizeof(u8);
1595
1596 pn533_tx_frame_finish(dev->out_frame);
1597
1598 rc = pn533_send_cmd_frame_sync(dev, dev->out_frame, dev->in_frame,
1599 dev->in_maxlen);
1600 if (rc) {
1601 nfc_dev_err(&dev->interface->dev, "Error when sending release"
1602 " command to the controller");
1603 return;
1604 }
1605
1606 status = PN533_FRAME_CMD_PARAMS_PTR(dev->in_frame)[0];
1607 rc = status & PN533_CMD_RET_MASK;
1608 if (rc != PN533_CMD_RET_SUCCESS)
1609 nfc_dev_err(&dev->interface->dev, "Error 0x%x when releasing"
1610 " the target", rc);
1611
1612 return;
1613}
1614
Samuel Ortiz361f3cb2011-12-14 16:43:11 +01001615
1616static int pn533_in_dep_link_up_complete(struct pn533 *dev, void *arg,
1617 u8 *params, int params_len)
1618{
1619 struct pn533_cmd_jump_dep *cmd;
1620 struct pn533_cmd_jump_dep_response *resp;
1621 struct nfc_target nfc_target;
1622 u8 target_gt_len;
1623 int rc;
1624
1625 if (params_len == -ENOENT) {
1626 nfc_dev_dbg(&dev->interface->dev, "");
1627 return 0;
1628 }
1629
1630 if (params_len < 0) {
1631 nfc_dev_err(&dev->interface->dev,
1632 "Error %d when bringing DEP link up",
1633 params_len);
1634 return 0;
1635 }
1636
1637 if (dev->tgt_available_prots &&
1638 !(dev->tgt_available_prots & (1 << NFC_PROTO_NFC_DEP))) {
1639 nfc_dev_err(&dev->interface->dev,
1640 "The target does not support DEP");
1641 return -EINVAL;
1642 }
1643
1644 resp = (struct pn533_cmd_jump_dep_response *) params;
1645 cmd = (struct pn533_cmd_jump_dep *) arg;
1646 rc = resp->status & PN533_CMD_RET_MASK;
1647 if (rc != PN533_CMD_RET_SUCCESS) {
1648 nfc_dev_err(&dev->interface->dev,
1649 "Bringing DEP link up failed %d", rc);
1650 return 0;
1651 }
1652
1653 if (!dev->tgt_available_prots) {
1654 nfc_dev_dbg(&dev->interface->dev, "Creating new target");
1655
1656 nfc_target.supported_protocols = NFC_PROTO_NFC_DEP_MASK;
Samuel Ortiz2fbabfa2012-03-05 01:03:47 +01001657 nfc_target.nfcid1_len = 10;
1658 memcpy(nfc_target.nfcid1, resp->nfcid3t, nfc_target.nfcid1_len);
Samuel Ortiz361f3cb2011-12-14 16:43:11 +01001659 rc = nfc_targets_found(dev->nfc_dev, &nfc_target, 1);
1660 if (rc)
1661 return 0;
1662
1663 dev->tgt_available_prots = 0;
1664 }
1665
1666 dev->tgt_active_prot = NFC_PROTO_NFC_DEP;
1667
1668 /* ATR_RES general bytes are located at offset 17 */
1669 target_gt_len = PN533_FRAME_CMD_PARAMS_LEN(dev->in_frame) - 17;
1670 rc = nfc_set_remote_general_bytes(dev->nfc_dev,
1671 resp->gt, target_gt_len);
1672 if (rc == 0)
1673 rc = nfc_dep_link_is_up(dev->nfc_dev,
1674 dev->nfc_dev->targets[0].idx,
1675 !cmd->active, NFC_RF_INITIATOR);
1676
1677 return 0;
1678}
1679
Samuel Ortiz41a8ec42012-05-31 17:44:44 +02001680static int pn533_mod_to_baud(struct pn533 *dev)
1681{
1682 switch (dev->poll_mod_curr) {
1683 case PN533_POLL_MOD_106KBPS_A:
1684 return 0;
1685 case PN533_POLL_MOD_212KBPS_FELICA:
1686 return 1;
1687 case PN533_POLL_MOD_424KBPS_FELICA:
1688 return 2;
1689 default:
1690 return -EINVAL;
1691 }
1692}
1693
Samuel Ortizd7f33452012-05-29 21:45:21 +02001694#define PASSIVE_DATA_LEN 5
Eric Lapuyade90099432012-05-07 12:31:13 +02001695static int pn533_dep_link_up(struct nfc_dev *nfc_dev, struct nfc_target *target,
Samuel Ortiz47807d32012-03-05 01:03:50 +01001696 u8 comm_mode, u8* gb, size_t gb_len)
Samuel Ortiz361f3cb2011-12-14 16:43:11 +01001697{
1698 struct pn533 *dev = nfc_get_drvdata(nfc_dev);
1699 struct pn533_cmd_jump_dep *cmd;
Samuel Ortizd7f33452012-05-29 21:45:21 +02001700 u8 cmd_len, *data_ptr;
1701 u8 passive_data[PASSIVE_DATA_LEN] = {0x00, 0xff, 0xff, 0x00, 0x3};
Samuel Ortiz41a8ec42012-05-31 17:44:44 +02001702 int rc, baud;
Samuel Ortiz361f3cb2011-12-14 16:43:11 +01001703
1704 nfc_dev_dbg(&dev->interface->dev, "%s", __func__);
1705
Samuel Ortiz361f3cb2011-12-14 16:43:11 +01001706 if (dev->poll_mod_count) {
1707 nfc_dev_err(&dev->interface->dev,
1708 "Cannot bring the DEP link up while polling");
1709 return -EBUSY;
1710 }
1711
1712 if (dev->tgt_active_prot) {
1713 nfc_dev_err(&dev->interface->dev,
1714 "There is already an active target");
1715 return -EBUSY;
1716 }
1717
Samuel Ortiz41a8ec42012-05-31 17:44:44 +02001718 baud = pn533_mod_to_baud(dev);
1719 if (baud < 0) {
1720 nfc_dev_err(&dev->interface->dev,
1721 "Invalid curr modulation %d", dev->poll_mod_curr);
1722 return baud;
1723 }
1724
Samuel Ortiz47807d32012-03-05 01:03:50 +01001725 cmd_len = sizeof(struct pn533_cmd_jump_dep) + gb_len;
Samuel Ortizd7f33452012-05-29 21:45:21 +02001726 if (comm_mode == NFC_COMM_PASSIVE)
1727 cmd_len += PASSIVE_DATA_LEN;
1728
Samuel Ortiz361f3cb2011-12-14 16:43:11 +01001729 cmd = kzalloc(cmd_len, GFP_KERNEL);
1730 if (cmd == NULL)
1731 return -ENOMEM;
1732
1733 pn533_tx_frame_init(dev->out_frame, PN533_CMD_IN_JUMP_FOR_DEP);
1734
1735 cmd->active = !comm_mode;
Samuel Ortizd7f33452012-05-29 21:45:21 +02001736 cmd->next = 0;
Samuel Ortiz41a8ec42012-05-31 17:44:44 +02001737 cmd->baud = baud;
Samuel Ortizd7f33452012-05-29 21:45:21 +02001738 data_ptr = cmd->data;
1739 if (comm_mode == NFC_COMM_PASSIVE && cmd->baud > 0) {
1740 memcpy(data_ptr, passive_data, PASSIVE_DATA_LEN);
1741 cmd->next |= 1;
1742 data_ptr += PASSIVE_DATA_LEN;
1743 }
1744
Samuel Ortiz47807d32012-03-05 01:03:50 +01001745 if (gb != NULL && gb_len > 0) {
Samuel Ortizd7f33452012-05-29 21:45:21 +02001746 cmd->next |= 4; /* We have some Gi */
1747 memcpy(data_ptr, gb, gb_len);
Samuel Ortiz361f3cb2011-12-14 16:43:11 +01001748 } else {
1749 cmd->next = 0;
1750 }
1751
1752 memcpy(PN533_FRAME_CMD_PARAMS_PTR(dev->out_frame), cmd, cmd_len);
1753 dev->out_frame->datalen += cmd_len;
1754
1755 pn533_tx_frame_finish(dev->out_frame);
1756
1757 rc = pn533_send_cmd_frame_async(dev, dev->out_frame, dev->in_frame,
1758 dev->in_maxlen, pn533_in_dep_link_up_complete,
1759 cmd, GFP_KERNEL);
1760 if (rc)
1761 goto out;
1762
1763
1764out:
1765 kfree(cmd);
1766
1767 return rc;
1768}
1769
1770static int pn533_dep_link_down(struct nfc_dev *nfc_dev)
1771{
Samuel Ortiz6fbbdc12012-05-30 17:20:25 +02001772 struct pn533 *dev = nfc_get_drvdata(nfc_dev);
1773
1774 pn533_poll_reset_mod_list(dev);
1775
Samuel Ortiz51ad3042012-05-31 20:01:32 +02001776 if (dev->tgt_mode || dev->tgt_active_prot) {
1777 pn533_send_ack(dev, GFP_KERNEL);
1778 usb_kill_urb(dev->in_urb);
1779 }
1780
1781 dev->tgt_active_prot = 0;
1782 dev->tgt_mode = 0;
1783
1784 skb_queue_purge(&dev->resp_q);
Samuel Ortiz361f3cb2011-12-14 16:43:11 +01001785
1786 return 0;
1787}
1788
Samuel Ortizdadb06f2012-05-31 00:09:11 +02001789static int pn533_build_tx_frame(struct pn533 *dev, struct sk_buff *skb,
1790 bool target)
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -03001791{
1792 int payload_len = skb->len;
1793 struct pn533_frame *out_frame;
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -03001794 u8 tg;
1795
1796 nfc_dev_dbg(&dev->interface->dev, "%s - Sending %d bytes", __func__,
1797 payload_len);
1798
1799 if (payload_len > PN533_CMD_DATAEXCH_DATA_MAXLEN) {
1800 /* TODO: Implement support to multi-part data exchange */
1801 nfc_dev_err(&dev->interface->dev, "Data length greater than the"
1802 " max allowed: %d",
1803 PN533_CMD_DATAEXCH_DATA_MAXLEN);
1804 return -ENOSYS;
1805 }
1806
Samuel Ortizdadb06f2012-05-31 00:09:11 +02001807 if (target == true) {
Samuel Ortiz5c7b0532012-07-02 20:04:01 +02001808 switch (dev->device_type) {
1809 case PN533_DEVICE_STD:
1810 skb_push(skb, PN533_CMD_DATAEXCH_HEAD_LEN);
1811 out_frame = (struct pn533_frame *) skb->data;
1812 pn533_tx_frame_init(out_frame,
1813 PN533_CMD_IN_DATA_EXCHANGE);
1814 tg = 1;
1815 memcpy(PN533_FRAME_CMD_PARAMS_PTR(out_frame),
1816 &tg, sizeof(u8));
1817 out_frame->datalen += sizeof(u8);
1818 break;
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -03001819
Samuel Ortiz5c7b0532012-07-02 20:04:01 +02001820 case PN533_DEVICE_PASORI:
1821 skb_push(skb, PN533_CMD_DATAEXCH_HEAD_LEN - 1);
1822 out_frame = (struct pn533_frame *) skb->data;
1823 pn533_tx_frame_init(out_frame, PN533_CMD_IN_COMM_THRU);
1824
1825 break;
1826
1827 default:
1828 nfc_dev_err(&dev->interface->dev,
1829 "Unknown device type %d", dev->device_type);
1830 return -EINVAL;
1831 }
1832
Samuel Ortizdadb06f2012-05-31 00:09:11 +02001833 } else {
1834 skb_push(skb, PN533_CMD_DATAEXCH_HEAD_LEN - 1);
1835 out_frame = (struct pn533_frame *) skb->data;
1836 pn533_tx_frame_init(out_frame, PN533_CMD_TG_SET_DATA);
1837 }
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -03001838
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -03001839
1840 /* The data is already in the out_frame, just update the datalen */
1841 out_frame->datalen += payload_len;
1842
1843 pn533_tx_frame_finish(out_frame);
1844 skb_put(skb, PN533_FRAME_TAIL_SIZE);
1845
1846 return 0;
1847}
1848
1849struct pn533_data_exchange_arg {
1850 struct sk_buff *skb_resp;
1851 struct sk_buff *skb_out;
1852 data_exchange_cb_t cb;
1853 void *cb_context;
1854};
1855
Samuel Ortiz6ff73fd2012-04-10 19:43:18 +02001856static struct sk_buff *pn533_build_response(struct pn533 *dev)
1857{
1858 struct sk_buff *skb, *tmp, *t;
1859 unsigned int skb_len = 0, tmp_len = 0;
1860
1861 nfc_dev_dbg(&dev->interface->dev, "%s\n", __func__);
1862
1863 if (skb_queue_empty(&dev->resp_q))
1864 return NULL;
1865
1866 if (skb_queue_len(&dev->resp_q) == 1) {
1867 skb = skb_dequeue(&dev->resp_q);
1868 goto out;
1869 }
1870
1871 skb_queue_walk_safe(&dev->resp_q, tmp, t)
1872 skb_len += tmp->len;
1873
1874 nfc_dev_dbg(&dev->interface->dev, "%s total length %d\n",
1875 __func__, skb_len);
1876
1877 skb = alloc_skb(skb_len, GFP_KERNEL);
1878 if (skb == NULL)
1879 goto out;
1880
1881 skb_put(skb, skb_len);
1882
1883 skb_queue_walk_safe(&dev->resp_q, tmp, t) {
1884 memcpy(skb->data + tmp_len, tmp->data, tmp->len);
1885 tmp_len += tmp->len;
1886 }
1887
1888out:
1889 skb_queue_purge(&dev->resp_q);
1890
1891 return skb;
1892}
1893
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -03001894static int pn533_data_exchange_complete(struct pn533 *dev, void *_arg,
1895 u8 *params, int params_len)
1896{
1897 struct pn533_data_exchange_arg *arg = _arg;
Samuel Ortiz6ff73fd2012-04-10 19:43:18 +02001898 struct sk_buff *skb = NULL, *skb_resp = arg->skb_resp;
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -03001899 struct pn533_frame *in_frame = (struct pn533_frame *) skb_resp->data;
1900 int err = 0;
1901 u8 status;
1902 u8 cmd_ret;
1903
1904 nfc_dev_dbg(&dev->interface->dev, "%s", __func__);
1905
Samuel Ortiz6ff73fd2012-04-10 19:43:18 +02001906 dev_kfree_skb(arg->skb_out);
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -03001907
1908 if (params_len < 0) { /* error */
1909 err = params_len;
1910 goto error;
1911 }
1912
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -03001913 status = params[0];
1914
1915 cmd_ret = status & PN533_CMD_RET_MASK;
1916 if (cmd_ret != PN533_CMD_RET_SUCCESS) {
1917 nfc_dev_err(&dev->interface->dev, "PN533 reported error %d when"
1918 " exchanging data", cmd_ret);
1919 err = -EIO;
1920 goto error;
1921 }
1922
Samuel Ortiz6ff73fd2012-04-10 19:43:18 +02001923 skb_put(skb_resp, PN533_FRAME_SIZE(in_frame));
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -03001924 skb_pull(skb_resp, PN533_CMD_DATAEXCH_HEAD_LEN);
1925 skb_trim(skb_resp, skb_resp->len - PN533_FRAME_TAIL_SIZE);
Samuel Ortiz6ff73fd2012-04-10 19:43:18 +02001926 skb_queue_tail(&dev->resp_q, skb_resp);
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -03001927
Samuel Ortiz6ff73fd2012-04-10 19:43:18 +02001928 if (status & PN533_CMD_MI_MASK) {
1929 queue_work(dev->wq, &dev->mi_work);
1930 return -EINPROGRESS;
1931 }
1932
1933 skb = pn533_build_response(dev);
1934 if (skb == NULL)
1935 goto error;
1936
1937 arg->cb(arg->cb_context, skb, 0);
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -03001938 kfree(arg);
1939 return 0;
1940
1941error:
Samuel Ortiz6ff73fd2012-04-10 19:43:18 +02001942 skb_queue_purge(&dev->resp_q);
1943 dev_kfree_skb(skb_resp);
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -03001944 arg->cb(arg->cb_context, NULL, err);
1945 kfree(arg);
1946 return 0;
1947}
1948
Samuel Ortizbe9ae4c2012-05-16 15:55:48 +02001949static int pn533_transceive(struct nfc_dev *nfc_dev,
1950 struct nfc_target *target, struct sk_buff *skb,
1951 data_exchange_cb_t cb, void *cb_context)
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -03001952{
1953 struct pn533 *dev = nfc_get_drvdata(nfc_dev);
1954 struct pn533_frame *out_frame, *in_frame;
1955 struct pn533_data_exchange_arg *arg;
1956 struct sk_buff *skb_resp;
1957 int skb_resp_len;
1958 int rc;
1959
1960 nfc_dev_dbg(&dev->interface->dev, "%s", __func__);
1961
1962 if (!dev->tgt_active_prot) {
1963 nfc_dev_err(&dev->interface->dev, "Cannot exchange data if"
1964 " there is no active target");
1965 rc = -EINVAL;
1966 goto error;
1967 }
1968
Samuel Ortizdadb06f2012-05-31 00:09:11 +02001969 rc = pn533_build_tx_frame(dev, skb, true);
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -03001970 if (rc)
1971 goto error;
1972
1973 skb_resp_len = PN533_CMD_DATAEXCH_HEAD_LEN +
1974 PN533_CMD_DATAEXCH_DATA_MAXLEN +
1975 PN533_FRAME_TAIL_SIZE;
1976
Samuel Ortiz7c7cd3b2011-12-14 16:43:06 +01001977 skb_resp = nfc_alloc_recv_skb(skb_resp_len, GFP_KERNEL);
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -03001978 if (!skb_resp) {
1979 rc = -ENOMEM;
1980 goto error;
1981 }
1982
1983 in_frame = (struct pn533_frame *) skb_resp->data;
1984 out_frame = (struct pn533_frame *) skb->data;
1985
1986 arg = kmalloc(sizeof(struct pn533_data_exchange_arg), GFP_KERNEL);
1987 if (!arg) {
1988 rc = -ENOMEM;
1989 goto free_skb_resp;
1990 }
1991
1992 arg->skb_resp = skb_resp;
1993 arg->skb_out = skb;
1994 arg->cb = cb;
1995 arg->cb_context = cb_context;
1996
1997 rc = pn533_send_cmd_frame_async(dev, out_frame, in_frame, skb_resp_len,
1998 pn533_data_exchange_complete, arg,
1999 GFP_KERNEL);
2000 if (rc) {
2001 nfc_dev_err(&dev->interface->dev, "Error %d when trying to"
2002 " perform data_exchange", rc);
2003 goto free_arg;
2004 }
2005
2006 return 0;
2007
2008free_arg:
2009 kfree(arg);
2010free_skb_resp:
2011 kfree_skb(skb_resp);
2012error:
2013 kfree_skb(skb);
2014 return rc;
2015}
2016
Samuel Ortizdadb06f2012-05-31 00:09:11 +02002017static int pn533_tm_send_complete(struct pn533 *dev, void *arg,
2018 u8 *params, int params_len)
2019{
2020 nfc_dev_dbg(&dev->interface->dev, "%s", __func__);
2021
2022 if (params_len < 0) {
2023 nfc_dev_err(&dev->interface->dev,
2024 "Error %d when sending data",
2025 params_len);
2026
2027 return params_len;
2028 }
2029
2030 if (params_len > 0 && params[0] != 0) {
2031 nfc_tm_deactivated(dev->nfc_dev);
2032
Samuel Ortiz51ad3042012-05-31 20:01:32 +02002033 dev->tgt_mode = 0;
2034
Samuel Ortizdadb06f2012-05-31 00:09:11 +02002035 return 0;
2036 }
2037
2038 queue_work(dev->wq, &dev->tg_work);
2039
2040 return 0;
2041}
2042
2043static int pn533_tm_send(struct nfc_dev *nfc_dev, struct sk_buff *skb)
2044{
2045 struct pn533 *dev = nfc_get_drvdata(nfc_dev);
2046 struct pn533_frame *out_frame;
2047 int rc;
2048
2049 nfc_dev_dbg(&dev->interface->dev, "%s", __func__);
2050
2051 rc = pn533_build_tx_frame(dev, skb, false);
2052 if (rc)
2053 goto error;
2054
2055 out_frame = (struct pn533_frame *) skb->data;
2056
2057 rc = pn533_send_cmd_frame_async(dev, out_frame, dev->in_frame,
2058 dev->in_maxlen, pn533_tm_send_complete,
2059 NULL, GFP_KERNEL);
2060 if (rc) {
2061 nfc_dev_err(&dev->interface->dev,
2062 "Error %d when trying to send data", rc);
2063 goto error;
2064 }
2065
2066 return 0;
2067
2068error:
2069 kfree_skb(skb);
2070
2071 return rc;
2072}
2073
Samuel Ortiz6ff73fd2012-04-10 19:43:18 +02002074static void pn533_wq_mi_recv(struct work_struct *work)
2075{
2076 struct pn533 *dev = container_of(work, struct pn533, mi_work);
2077 struct sk_buff *skb_cmd;
2078 struct pn533_data_exchange_arg *arg = dev->cmd_complete_arg;
2079 struct pn533_frame *out_frame, *in_frame;
2080 struct sk_buff *skb_resp;
2081 int skb_resp_len;
2082 int rc;
2083
2084 nfc_dev_dbg(&dev->interface->dev, "%s", __func__);
2085
2086 /* This is a zero payload size skb */
2087 skb_cmd = alloc_skb(PN533_CMD_DATAEXCH_HEAD_LEN + PN533_FRAME_TAIL_SIZE,
2088 GFP_KERNEL);
2089 if (skb_cmd == NULL)
2090 goto error_cmd;
2091
2092 skb_reserve(skb_cmd, PN533_CMD_DATAEXCH_HEAD_LEN);
2093
Samuel Ortizdadb06f2012-05-31 00:09:11 +02002094 rc = pn533_build_tx_frame(dev, skb_cmd, true);
Samuel Ortiz6ff73fd2012-04-10 19:43:18 +02002095 if (rc)
2096 goto error_frame;
2097
2098 skb_resp_len = PN533_CMD_DATAEXCH_HEAD_LEN +
2099 PN533_CMD_DATAEXCH_DATA_MAXLEN +
2100 PN533_FRAME_TAIL_SIZE;
2101 skb_resp = alloc_skb(skb_resp_len, GFP_KERNEL);
2102 if (!skb_resp) {
2103 rc = -ENOMEM;
2104 goto error_frame;
2105 }
2106
2107 in_frame = (struct pn533_frame *) skb_resp->data;
2108 out_frame = (struct pn533_frame *) skb_cmd->data;
2109
2110 arg->skb_resp = skb_resp;
2111 arg->skb_out = skb_cmd;
2112
2113 rc = __pn533_send_cmd_frame_async(dev, out_frame, in_frame,
2114 skb_resp_len,
2115 pn533_data_exchange_complete,
2116 dev->cmd_complete_arg, GFP_KERNEL);
2117 if (!rc)
2118 return;
2119
2120 nfc_dev_err(&dev->interface->dev, "Error %d when trying to"
2121 " perform data_exchange", rc);
2122
2123 kfree_skb(skb_resp);
2124
2125error_frame:
2126 kfree_skb(skb_cmd);
2127
2128error_cmd:
2129 pn533_send_ack(dev, GFP_KERNEL);
2130
2131 kfree(arg);
2132
Samuel Ortiz0201ed02012-05-31 17:56:46 +02002133 mutex_unlock(&dev->cmd_lock);
Samuel Ortiz6ff73fd2012-04-10 19:43:18 +02002134}
2135
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -03002136static int pn533_set_configuration(struct pn533 *dev, u8 cfgitem, u8 *cfgdata,
2137 u8 cfgdata_len)
2138{
2139 int rc;
2140 u8 *params;
2141
2142 nfc_dev_dbg(&dev->interface->dev, "%s", __func__);
2143
2144 pn533_tx_frame_init(dev->out_frame, PN533_CMD_RF_CONFIGURATION);
2145
2146 params = PN533_FRAME_CMD_PARAMS_PTR(dev->out_frame);
2147 params[0] = cfgitem;
2148 memcpy(&params[1], cfgdata, cfgdata_len);
2149 dev->out_frame->datalen += (1 + cfgdata_len);
2150
2151 pn533_tx_frame_finish(dev->out_frame);
2152
2153 rc = pn533_send_cmd_frame_sync(dev, dev->out_frame, dev->in_frame,
2154 dev->in_maxlen);
2155
2156 return rc;
2157}
2158
Samuel Ortiz5c7b0532012-07-02 20:04:01 +02002159static int pn533_fw_reset(struct pn533 *dev)
2160{
2161 int rc;
2162 u8 *params;
2163
2164 nfc_dev_dbg(&dev->interface->dev, "%s", __func__);
2165
2166 pn533_tx_frame_init(dev->out_frame, 0x18);
2167
2168 params = PN533_FRAME_CMD_PARAMS_PTR(dev->out_frame);
2169 params[0] = 0x1;
2170 dev->out_frame->datalen += 1;
2171
2172 pn533_tx_frame_finish(dev->out_frame);
2173
2174 rc = pn533_send_cmd_frame_sync(dev, dev->out_frame, dev->in_frame,
2175 dev->in_maxlen);
2176
2177 return rc;
2178}
2179
2180static struct nfc_ops pn533_nfc_ops = {
Ilan Elias8b3fe7b2011-09-18 11:19:33 +03002181 .dev_up = NULL,
2182 .dev_down = NULL,
Samuel Ortiz361f3cb2011-12-14 16:43:11 +01002183 .dep_link_up = pn533_dep_link_up,
2184 .dep_link_down = pn533_dep_link_down,
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -03002185 .start_poll = pn533_start_poll,
2186 .stop_poll = pn533_stop_poll,
2187 .activate_target = pn533_activate_target,
2188 .deactivate_target = pn533_deactivate_target,
Samuel Ortizbe9ae4c2012-05-16 15:55:48 +02002189 .im_transceive = pn533_transceive,
Samuel Ortizdadb06f2012-05-31 00:09:11 +02002190 .tm_send = pn533_tm_send,
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -03002191};
2192
Samuel Ortiz5c7b0532012-07-02 20:04:01 +02002193static int pn533_setup(struct pn533 *dev)
2194{
2195 struct pn533_config_max_retries max_retries;
2196 struct pn533_config_timing timing;
2197 u8 pasori_cfg[3] = {0x08, 0x01, 0x08};
2198 int rc;
2199
2200 switch (dev->device_type) {
2201 case PN533_DEVICE_STD:
2202 max_retries.mx_rty_atr = PN533_CONFIG_MAX_RETRIES_ENDLESS;
2203 max_retries.mx_rty_psl = 2;
2204 max_retries.mx_rty_passive_act =
2205 PN533_CONFIG_MAX_RETRIES_NO_RETRY;
2206
2207 timing.rfu = PN533_CONFIG_TIMING_102;
2208 timing.atr_res_timeout = PN533_CONFIG_TIMING_204;
2209 timing.dep_timeout = PN533_CONFIG_TIMING_409;
2210
2211 break;
2212
2213 case PN533_DEVICE_PASORI:
2214 max_retries.mx_rty_atr = 0x2;
2215 max_retries.mx_rty_psl = 0x1;
2216 max_retries.mx_rty_passive_act =
2217 PN533_CONFIG_MAX_RETRIES_NO_RETRY;
2218
2219 timing.rfu = PN533_CONFIG_TIMING_102;
2220 timing.atr_res_timeout = PN533_CONFIG_TIMING_102;
2221 timing.dep_timeout = PN533_CONFIG_TIMING_204;
2222
2223 break;
2224
2225 default:
2226 nfc_dev_err(&dev->interface->dev, "Unknown device type %d\n",
2227 dev->device_type);
2228 return -EINVAL;
2229 }
2230
2231 rc = pn533_set_configuration(dev, PN533_CFGITEM_MAX_RETRIES,
2232 (u8 *)&max_retries, sizeof(max_retries));
2233 if (rc) {
2234 nfc_dev_err(&dev->interface->dev,
2235 "Error on setting MAX_RETRIES config");
2236 return rc;
2237 }
2238
2239
2240 rc = pn533_set_configuration(dev, PN533_CFGITEM_TIMING,
2241 (u8 *)&timing, sizeof(timing));
2242 if (rc) {
2243 nfc_dev_err(&dev->interface->dev,
2244 "Error on setting RF timings");
2245 return rc;
2246 }
2247
2248 switch (dev->device_type) {
2249 case PN533_DEVICE_STD:
2250 break;
2251
2252 case PN533_DEVICE_PASORI:
2253 pn533_fw_reset(dev);
2254
2255 rc = pn533_set_configuration(dev, PN533_CFGITEM_PASORI,
2256 pasori_cfg, 3);
2257 if (rc) {
2258 nfc_dev_err(&dev->interface->dev,
2259 "Error while settings PASORI config");
2260 return rc;
2261 }
2262
2263 pn533_fw_reset(dev);
2264
2265 break;
2266 }
2267
2268 return 0;
2269}
2270
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -03002271static int pn533_probe(struct usb_interface *interface,
2272 const struct usb_device_id *id)
2273{
2274 struct pn533_fw_version *fw_ver;
2275 struct pn533 *dev;
2276 struct usb_host_interface *iface_desc;
2277 struct usb_endpoint_descriptor *endpoint;
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -03002278 int in_endpoint = 0;
2279 int out_endpoint = 0;
2280 int rc = -ENOMEM;
2281 int i;
2282 u32 protocols;
2283
2284 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
2285 if (!dev)
2286 return -ENOMEM;
2287
2288 dev->udev = usb_get_dev(interface_to_usbdev(interface));
2289 dev->interface = interface;
Samuel Ortiz0201ed02012-05-31 17:56:46 +02002290 mutex_init(&dev->cmd_lock);
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -03002291
2292 iface_desc = interface->cur_altsetting;
2293 for (i = 0; i < iface_desc->desc.bNumEndpoints; ++i) {
2294 endpoint = &iface_desc->endpoint[i].desc;
2295
2296 if (!in_endpoint && usb_endpoint_is_bulk_in(endpoint)) {
2297 dev->in_maxlen = le16_to_cpu(endpoint->wMaxPacketSize);
2298 in_endpoint = endpoint->bEndpointAddress;
2299 }
2300
2301 if (!out_endpoint && usb_endpoint_is_bulk_out(endpoint)) {
2302 dev->out_maxlen =
2303 le16_to_cpu(endpoint->wMaxPacketSize);
2304 out_endpoint = endpoint->bEndpointAddress;
2305 }
2306 }
2307
2308 if (!in_endpoint || !out_endpoint) {
2309 nfc_dev_err(&interface->dev, "Could not find bulk-in or"
2310 " bulk-out endpoint");
2311 rc = -ENODEV;
2312 goto error;
2313 }
2314
2315 dev->in_frame = kmalloc(dev->in_maxlen, GFP_KERNEL);
2316 dev->in_urb = usb_alloc_urb(0, GFP_KERNEL);
2317 dev->out_frame = kmalloc(dev->out_maxlen, GFP_KERNEL);
2318 dev->out_urb = usb_alloc_urb(0, GFP_KERNEL);
2319
2320 if (!dev->in_frame || !dev->out_frame ||
2321 !dev->in_urb || !dev->out_urb)
2322 goto error;
2323
2324 usb_fill_bulk_urb(dev->in_urb, dev->udev,
2325 usb_rcvbulkpipe(dev->udev, in_endpoint),
2326 NULL, 0, NULL, dev);
2327 usb_fill_bulk_urb(dev->out_urb, dev->udev,
2328 usb_sndbulkpipe(dev->udev, out_endpoint),
2329 NULL, 0,
2330 pn533_send_complete, dev);
2331
Samuel Ortiz4849f852012-04-10 19:43:17 +02002332 INIT_WORK(&dev->cmd_work, pn533_wq_cmd_complete);
Samuel Ortiz6ff73fd2012-04-10 19:43:18 +02002333 INIT_WORK(&dev->mi_work, pn533_wq_mi_recv);
Samuel Ortiz103b34c2012-05-31 00:07:51 +02002334 INIT_WORK(&dev->tg_work, pn533_wq_tg_get_data);
Samuel Ortiz6fbbdc12012-05-30 17:20:25 +02002335 INIT_WORK(&dev->poll_work, pn533_wq_poll);
Samuel Ortiz6ff73fd2012-04-10 19:43:18 +02002336 dev->wq = alloc_workqueue("pn533",
2337 WQ_NON_REENTRANT | WQ_UNBOUND | WQ_MEM_RECLAIM,
2338 1);
Samuel Ortiz4849f852012-04-10 19:43:17 +02002339 if (dev->wq == NULL)
2340 goto error;
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -03002341
Samuel Ortiz6fbbdc12012-05-30 17:20:25 +02002342 init_timer(&dev->listen_timer);
2343 dev->listen_timer.data = (unsigned long) dev;
2344 dev->listen_timer.function = pn533_listen_mode_timer;
2345
Samuel Ortiz6ff73fd2012-04-10 19:43:18 +02002346 skb_queue_head_init(&dev->resp_q);
2347
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -03002348 usb_set_intfdata(interface, dev);
2349
2350 pn533_tx_frame_init(dev->out_frame, PN533_CMD_GET_FIRMWARE_VERSION);
2351 pn533_tx_frame_finish(dev->out_frame);
2352
2353 rc = pn533_send_cmd_frame_sync(dev, dev->out_frame, dev->in_frame,
2354 dev->in_maxlen);
2355 if (rc)
Samuel Ortiz4849f852012-04-10 19:43:17 +02002356 goto destroy_wq;
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -03002357
2358 fw_ver = (struct pn533_fw_version *)
2359 PN533_FRAME_CMD_PARAMS_PTR(dev->in_frame);
2360 nfc_dev_info(&dev->interface->dev, "NXP PN533 firmware ver %d.%d now"
2361 " attached", fw_ver->ver, fw_ver->rev);
2362
Samuel Ortiz5c7b0532012-07-02 20:04:01 +02002363 dev->device_type = id->driver_info;
2364 switch (dev->device_type) {
2365 case PN533_DEVICE_STD:
2366 protocols = PN533_ALL_PROTOCOLS;
2367 break;
2368
2369 case PN533_DEVICE_PASORI:
2370 protocols = PN533_NO_TYPE_B_PROTOCOLS;
2371 break;
2372
2373 default:
2374 nfc_dev_err(&dev->interface->dev, "Unknown device type %d\n",
2375 dev->device_type);
2376 rc = -EINVAL;
2377 goto destroy_wq;
2378 }
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -03002379
Samuel Ortize8753042011-08-19 15:47:11 +02002380 dev->nfc_dev = nfc_allocate_device(&pn533_nfc_ops, protocols,
2381 PN533_CMD_DATAEXCH_HEAD_LEN,
2382 PN533_FRAME_TAIL_SIZE);
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -03002383 if (!dev->nfc_dev)
Samuel Ortiz4849f852012-04-10 19:43:17 +02002384 goto destroy_wq;
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -03002385
2386 nfc_set_parent_dev(dev->nfc_dev, &interface->dev);
2387 nfc_set_drvdata(dev->nfc_dev, dev);
2388
2389 rc = nfc_register_device(dev->nfc_dev);
2390 if (rc)
2391 goto free_nfc_dev;
2392
Samuel Ortiz5c7b0532012-07-02 20:04:01 +02002393 rc = pn533_setup(dev);
2394 if (rc)
Samuel Ortiz9f2f8ba2012-05-29 21:28:58 +02002395 goto unregister_nfc_dev;
Samuel Ortiz34a85bf2012-05-29 21:34:08 +02002396
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -03002397 return 0;
2398
Samuel Ortiz9f2f8ba2012-05-29 21:28:58 +02002399unregister_nfc_dev:
2400 nfc_unregister_device(dev->nfc_dev);
2401
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -03002402free_nfc_dev:
2403 nfc_free_device(dev->nfc_dev);
Samuel Ortiz9f2f8ba2012-05-29 21:28:58 +02002404
Samuel Ortiz4849f852012-04-10 19:43:17 +02002405destroy_wq:
2406 destroy_workqueue(dev->wq);
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -03002407error:
2408 kfree(dev->in_frame);
2409 usb_free_urb(dev->in_urb);
2410 kfree(dev->out_frame);
2411 usb_free_urb(dev->out_urb);
2412 kfree(dev);
2413 return rc;
2414}
2415
2416static void pn533_disconnect(struct usb_interface *interface)
2417{
2418 struct pn533 *dev;
2419
2420 dev = usb_get_intfdata(interface);
2421 usb_set_intfdata(interface, NULL);
2422
2423 nfc_unregister_device(dev->nfc_dev);
2424 nfc_free_device(dev->nfc_dev);
2425
2426 usb_kill_urb(dev->in_urb);
2427 usb_kill_urb(dev->out_urb);
2428
Samuel Ortiz4849f852012-04-10 19:43:17 +02002429 destroy_workqueue(dev->wq);
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -03002430
Samuel Ortiz6ff73fd2012-04-10 19:43:18 +02002431 skb_queue_purge(&dev->resp_q);
2432
Samuel Ortiz6fbbdc12012-05-30 17:20:25 +02002433 del_timer(&dev->listen_timer);
2434
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -03002435 kfree(dev->in_frame);
2436 usb_free_urb(dev->in_urb);
2437 kfree(dev->out_frame);
2438 usb_free_urb(dev->out_urb);
2439 kfree(dev);
2440
Dan Carpenter276556d2011-07-08 10:21:15 +03002441 nfc_dev_info(&interface->dev, "NXP PN533 NFC device disconnected");
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -03002442}
2443
2444static struct usb_driver pn533_driver = {
2445 .name = "pn533",
2446 .probe = pn533_probe,
2447 .disconnect = pn533_disconnect,
2448 .id_table = pn533_table,
2449};
2450
Greg Kroah-Hartmanfe748482011-11-18 09:52:10 -08002451module_usb_driver(pn533_driver);
Aloisio Almeida Jrc46ee382011-07-01 19:31:37 -03002452
2453MODULE_AUTHOR("Lauro Ramos Venancio <lauro.venancio@openbossa.org>,"
2454 " Aloisio Almeida Jr <aloisio.almeida@openbossa.org>");
2455MODULE_DESCRIPTION("PN533 usb driver ver " VERSION);
2456MODULE_VERSION(VERSION);
2457MODULE_LICENSE("GPL");