NFC: pn533: Fix spacing issues
[deliverable/linux.git] / drivers / nfc / pn533.c
CommitLineData
c46ee386
AAJ
1/*
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>
55eb94f9 31#include <net/nfc/nfc.h>
c46ee386
AAJ
32
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
5c7b0531
SO
41#define SONY_VENDOR_ID 0x054c
42#define PASORI_PRODUCT_ID 0x02e1
43
5c7b0531
SO
44#define PN533_DEVICE_STD 0x1
45#define PN533_DEVICE_PASORI 0x2
46
01d719a2
SO
47#define PN533_ALL_PROTOCOLS (NFC_PROTO_JEWEL_MASK | NFC_PROTO_MIFARE_MASK |\
48 NFC_PROTO_FELICA_MASK | NFC_PROTO_ISO14443_MASK |\
49 NFC_PROTO_NFC_DEP_MASK |\
50 NFC_PROTO_ISO14443_B_MASK)
5c7b0531
SO
51
52#define PN533_NO_TYPE_B_PROTOCOLS (NFC_PROTO_JEWEL_MASK | \
53 NFC_PROTO_MIFARE_MASK | \
54 NFC_PROTO_FELICA_MASK | \
01d719a2 55 NFC_PROTO_ISO14443_MASK | \
5c7b0531
SO
56 NFC_PROTO_NFC_DEP_MASK)
57
c46ee386 58static const struct usb_device_id pn533_table[] = {
5c7b0531
SO
59 { .match_flags = USB_DEVICE_ID_MATCH_DEVICE,
60 .idVendor = PN533_VENDOR_ID,
61 .idProduct = PN533_PRODUCT_ID,
62 .driver_info = PN533_DEVICE_STD,
63 },
64 { .match_flags = USB_DEVICE_ID_MATCH_DEVICE,
65 .idVendor = SCM_VENDOR_ID,
66 .idProduct = SCL3711_PRODUCT_ID,
67 .driver_info = PN533_DEVICE_STD,
68 },
69 { .match_flags = USB_DEVICE_ID_MATCH_DEVICE,
70 .idVendor = SONY_VENDOR_ID,
71 .idProduct = PASORI_PRODUCT_ID,
72 .driver_info = PN533_DEVICE_PASORI,
73 },
c46ee386
AAJ
74 { }
75};
76MODULE_DEVICE_TABLE(usb, pn533_table);
77
6fbbdc16
SO
78/* How much time we spend listening for initiators */
79#define PN533_LISTEN_TIME 2
80
c46ee386 81/* frame definitions */
82dec34d
WR
82#define PN533_NORMAL_FRAME_MAX_LEN 262 /* 6 (PREAMBLE, SOF, LEN, LCS, TFI)
83 254 (DATA)
84 2 (DCS, postamble) */
b1bb290a
WR
85#define PN533_FRAME_HEADER_LEN (sizeof(struct pn533_frame) \
86 + 2) /* data[0] TFI, data[1] CC */
87#define PN533_FRAME_TAIL_LEN 2 /* data[len] DCS, data[len + 1] postamble*/
82dec34d 88
15461aeb
WR
89/*
90 * Max extended frame payload len, excluding TFI and CC
91 * which are already in PN533_FRAME_HEADER_LEN.
92 */
93#define PN533_FRAME_MAX_PAYLOAD_LEN 263
94
c46ee386 95#define PN533_FRAME_SIZE(f) (sizeof(struct pn533_frame) + f->datalen + \
b1bb290a 96 PN533_FRAME_TAIL_LEN)
c46ee386
AAJ
97#define PN533_FRAME_ACK_SIZE (sizeof(struct pn533_frame) + 1)
98#define PN533_FRAME_CHECKSUM(f) (f->data[f->datalen])
99#define PN533_FRAME_POSTAMBLE(f) (f->data[f->datalen + 1])
100
101/* start of frame */
102#define PN533_SOF 0x00FF
103
104/* frame identifier: in/out/error */
105#define PN533_FRAME_IDENTIFIER(f) (f->data[0])
106#define PN533_DIR_OUT 0xD4
107#define PN533_DIR_IN 0xD5
108
109/* PN533 Commands */
110#define PN533_FRAME_CMD(f) (f->data[1])
111#define PN533_FRAME_CMD_PARAMS_PTR(f) (&f->data[2])
112#define PN533_FRAME_CMD_PARAMS_LEN(f) (f->datalen - 2)
113
114#define PN533_CMD_GET_FIRMWARE_VERSION 0x02
115#define PN533_CMD_RF_CONFIGURATION 0x32
116#define PN533_CMD_IN_DATA_EXCHANGE 0x40
5c7b0531 117#define PN533_CMD_IN_COMM_THRU 0x42
c46ee386
AAJ
118#define PN533_CMD_IN_LIST_PASSIVE_TARGET 0x4A
119#define PN533_CMD_IN_ATR 0x50
120#define PN533_CMD_IN_RELEASE 0x52
361f3cb7 121#define PN533_CMD_IN_JUMP_FOR_DEP 0x56
c46ee386 122
ad3823ce 123#define PN533_CMD_TG_INIT_AS_TARGET 0x8c
103b34cf 124#define PN533_CMD_TG_GET_DATA 0x86
dadb06f2 125#define PN533_CMD_TG_SET_DATA 0x8e
aada17ac 126#define PN533_CMD_UNDEF 0xff
ad3823ce 127
c46ee386
AAJ
128#define PN533_CMD_RESPONSE(cmd) (cmd + 1)
129
130/* PN533 Return codes */
131#define PN533_CMD_RET_MASK 0x3F
132#define PN533_CMD_MI_MASK 0x40
133#define PN533_CMD_RET_SUCCESS 0x00
134
135struct pn533;
136
137typedef int (*pn533_cmd_complete_t) (struct pn533 *dev, void *arg,
138 u8 *params, int params_len);
139
aada17ac
WR
140typedef int (*pn533_send_async_complete_t) (struct pn533 *dev, void *arg,
141 struct sk_buff *resp);
142
c46ee386
AAJ
143/* structs for pn533 commands */
144
145/* PN533_CMD_GET_FIRMWARE_VERSION */
146struct pn533_fw_version {
147 u8 ic;
148 u8 ver;
149 u8 rev;
150 u8 support;
151};
152
153/* PN533_CMD_RF_CONFIGURATION */
34a85bfc 154#define PN533_CFGITEM_TIMING 0x02
c46ee386 155#define PN533_CFGITEM_MAX_RETRIES 0x05
5c7b0531 156#define PN533_CFGITEM_PASORI 0x82
c46ee386 157
34a85bfc
SO
158#define PN533_CONFIG_TIMING_102 0xb
159#define PN533_CONFIG_TIMING_204 0xc
160#define PN533_CONFIG_TIMING_409 0xd
161#define PN533_CONFIG_TIMING_819 0xe
162
c46ee386
AAJ
163#define PN533_CONFIG_MAX_RETRIES_NO_RETRY 0x00
164#define PN533_CONFIG_MAX_RETRIES_ENDLESS 0xFF
165
166struct pn533_config_max_retries {
167 u8 mx_rty_atr;
168 u8 mx_rty_psl;
169 u8 mx_rty_passive_act;
170} __packed;
171
34a85bfc
SO
172struct pn533_config_timing {
173 u8 rfu;
174 u8 atr_res_timeout;
175 u8 dep_timeout;
176} __packed;
177
c46ee386
AAJ
178/* PN533_CMD_IN_LIST_PASSIVE_TARGET */
179
180/* felica commands opcode */
181#define PN533_FELICA_OPC_SENSF_REQ 0
182#define PN533_FELICA_OPC_SENSF_RES 1
183/* felica SENSF_REQ parameters */
184#define PN533_FELICA_SENSF_SC_ALL 0xFFFF
185#define PN533_FELICA_SENSF_RC_NO_SYSTEM_CODE 0
186#define PN533_FELICA_SENSF_RC_SYSTEM_CODE 1
187#define PN533_FELICA_SENSF_RC_ADVANCED_PROTOCOL 2
188
189/* type B initiator_data values */
190#define PN533_TYPE_B_AFI_ALL_FAMILIES 0
191#define PN533_TYPE_B_POLL_METHOD_TIMESLOT 0
192#define PN533_TYPE_B_POLL_METHOD_PROBABILISTIC 1
193
194union pn533_cmd_poll_initdata {
195 struct {
196 u8 afi;
197 u8 polling_method;
198 } __packed type_b;
199 struct {
200 u8 opcode;
201 __be16 sc;
202 u8 rc;
203 u8 tsn;
204 } __packed felica;
205};
206
207/* Poll modulations */
208enum {
209 PN533_POLL_MOD_106KBPS_A,
210 PN533_POLL_MOD_212KBPS_FELICA,
211 PN533_POLL_MOD_424KBPS_FELICA,
212 PN533_POLL_MOD_106KBPS_JEWEL,
213 PN533_POLL_MOD_847KBPS_B,
6fbbdc16 214 PN533_LISTEN_MOD,
c46ee386
AAJ
215
216 __PN533_POLL_MOD_AFTER_LAST,
217};
218#define PN533_POLL_MOD_MAX (__PN533_POLL_MOD_AFTER_LAST - 1)
219
220struct pn533_poll_modulations {
221 struct {
222 u8 maxtg;
223 u8 brty;
224 union pn533_cmd_poll_initdata initiator_data;
225 } __packed data;
226 u8 len;
227};
228
229const struct pn533_poll_modulations poll_mod[] = {
230 [PN533_POLL_MOD_106KBPS_A] = {
231 .data = {
232 .maxtg = 1,
233 .brty = 0,
234 },
235 .len = 2,
236 },
237 [PN533_POLL_MOD_212KBPS_FELICA] = {
238 .data = {
239 .maxtg = 1,
240 .brty = 1,
241 .initiator_data.felica = {
242 .opcode = PN533_FELICA_OPC_SENSF_REQ,
243 .sc = PN533_FELICA_SENSF_SC_ALL,
244 .rc = PN533_FELICA_SENSF_RC_NO_SYSTEM_CODE,
245 .tsn = 0,
246 },
247 },
248 .len = 7,
249 },
250 [PN533_POLL_MOD_424KBPS_FELICA] = {
251 .data = {
252 .maxtg = 1,
253 .brty = 2,
254 .initiator_data.felica = {
255 .opcode = PN533_FELICA_OPC_SENSF_REQ,
256 .sc = PN533_FELICA_SENSF_SC_ALL,
257 .rc = PN533_FELICA_SENSF_RC_NO_SYSTEM_CODE,
258 .tsn = 0,
259 },
260 },
261 .len = 7,
262 },
263 [PN533_POLL_MOD_106KBPS_JEWEL] = {
264 .data = {
265 .maxtg = 1,
266 .brty = 4,
267 },
268 .len = 2,
269 },
270 [PN533_POLL_MOD_847KBPS_B] = {
271 .data = {
272 .maxtg = 1,
273 .brty = 8,
274 .initiator_data.type_b = {
275 .afi = PN533_TYPE_B_AFI_ALL_FAMILIES,
276 .polling_method =
277 PN533_TYPE_B_POLL_METHOD_TIMESLOT,
278 },
279 },
280 .len = 3,
281 },
6fbbdc16
SO
282 [PN533_LISTEN_MOD] = {
283 .len = 0,
284 },
c46ee386
AAJ
285};
286
287/* PN533_CMD_IN_ATR */
288
c46ee386
AAJ
289struct pn533_cmd_activate_response {
290 u8 status;
291 u8 nfcid3t[10];
292 u8 didt;
293 u8 bst;
294 u8 brt;
295 u8 to;
296 u8 ppt;
297 /* optional */
298 u8 gt[];
299} __packed;
300
361f3cb7
SO
301struct pn533_cmd_jump_dep_response {
302 u8 status;
303 u8 tg;
304 u8 nfcid3t[10];
305 u8 didt;
306 u8 bst;
307 u8 brt;
308 u8 to;
309 u8 ppt;
310 /* optional */
311 u8 gt[];
312} __packed;
c46ee386 313
ad3823ce
SO
314
315/* PN533_TG_INIT_AS_TARGET */
316#define PN533_INIT_TARGET_PASSIVE 0x1
317#define PN533_INIT_TARGET_DEP 0x2
318
fc40a8c1
SO
319#define PN533_INIT_TARGET_RESP_FRAME_MASK 0x3
320#define PN533_INIT_TARGET_RESP_ACTIVE 0x1
321#define PN533_INIT_TARGET_RESP_DEP 0x4
322
c46ee386
AAJ
323struct pn533 {
324 struct usb_device *udev;
325 struct usb_interface *interface;
326 struct nfc_dev *nfc_dev;
327
328 struct urb *out_urb;
c46ee386
AAJ
329 struct pn533_frame *out_frame;
330
331 struct urb *in_urb;
c46ee386
AAJ
332 struct pn533_frame *in_frame;
333
6ff73fd2
SO
334 struct sk_buff_head resp_q;
335
4849f85e
SO
336 struct workqueue_struct *wq;
337 struct work_struct cmd_work;
5d50b364 338 struct work_struct cmd_complete_work;
6fbbdc16 339 struct work_struct poll_work;
6ff73fd2 340 struct work_struct mi_work;
103b34cf 341 struct work_struct tg_work;
6fbbdc16 342 struct timer_list listen_timer;
4849f85e
SO
343 struct pn533_frame *wq_in_frame;
344 int wq_in_error;
6fbbdc16 345 int cancel_listen;
c46ee386
AAJ
346
347 pn533_cmd_complete_t cmd_complete;
348 void *cmd_complete_arg;
b1e666f5 349 void *cmd_complete_mi_arg;
0201ed03 350 struct mutex cmd_lock;
c46ee386
AAJ
351 u8 cmd;
352
353 struct pn533_poll_modulations *poll_mod_active[PN533_POLL_MOD_MAX + 1];
354 u8 poll_mod_count;
355 u8 poll_mod_curr;
356 u32 poll_protocols;
6fbbdc16
SO
357 u32 listen_protocols;
358
359 u8 *gb;
360 size_t gb_len;
c46ee386
AAJ
361
362 u8 tgt_available_prots;
363 u8 tgt_active_prot;
51ad304c 364 u8 tgt_mode;
5c7b0531
SO
365
366 u32 device_type;
5d50b364
SO
367
368 struct list_head cmd_queue;
369 u8 cmd_pending;
370};
371
372struct pn533_cmd {
373 struct list_head queue;
374 struct pn533_frame *out_frame;
375 struct pn533_frame *in_frame;
376 int in_frame_len;
aada17ac
WR
377 u8 cmd_code;
378 struct sk_buff *req;
379 struct sk_buff *resp;
5d50b364
SO
380 pn533_cmd_complete_t cmd_complete;
381 void *arg;
c46ee386
AAJ
382};
383
384struct pn533_frame {
385 u8 preamble;
386 __be16 start_frame;
387 u8 datalen;
388 u8 datalen_checksum;
389 u8 data[];
390} __packed;
391
392/* The rule: value + checksum = 0 */
393static inline u8 pn533_checksum(u8 value)
394{
395 return ~value + 1;
396}
397
398/* The rule: sum(data elements) + checksum = 0 */
399static u8 pn533_data_checksum(u8 *data, int datalen)
400{
401 u8 sum = 0;
402 int i;
403
404 for (i = 0; i < datalen; i++)
405 sum += data[i];
406
407 return pn533_checksum(sum);
408}
409
410/**
411 * pn533_tx_frame_ack - create a ack frame
412 * @frame: The frame to be set as ack
413 *
414 * Ack is different type of standard frame. As a standard frame, it has
415 * preamble and start_frame. However the checksum of this frame must fail,
416 * i.e. datalen + datalen_checksum must NOT be zero. When the checksum test
417 * fails and datalen = 0 and datalen_checksum = 0xFF, the frame is a ack.
418 * After datalen_checksum field, the postamble is placed.
419 */
420static void pn533_tx_frame_ack(struct pn533_frame *frame)
421{
422 frame->preamble = 0;
423 frame->start_frame = cpu_to_be16(PN533_SOF);
424 frame->datalen = 0;
425 frame->datalen_checksum = 0xFF;
426 /* data[0] is used as postamble */
427 frame->data[0] = 0;
428}
429
430static void pn533_tx_frame_init(struct pn533_frame *frame, u8 cmd)
431{
432 frame->preamble = 0;
433 frame->start_frame = cpu_to_be16(PN533_SOF);
434 PN533_FRAME_IDENTIFIER(frame) = PN533_DIR_OUT;
435 PN533_FRAME_CMD(frame) = cmd;
436 frame->datalen = 2;
437}
438
439static void pn533_tx_frame_finish(struct pn533_frame *frame)
440{
441 frame->datalen_checksum = pn533_checksum(frame->datalen);
442
443 PN533_FRAME_CHECKSUM(frame) =
444 pn533_data_checksum(frame->data, frame->datalen);
445
446 PN533_FRAME_POSTAMBLE(frame) = 0;
447}
448
449static bool pn533_rx_frame_is_valid(struct pn533_frame *frame)
450{
451 u8 checksum;
452
453 if (frame->start_frame != cpu_to_be16(PN533_SOF))
454 return false;
455
456 checksum = pn533_checksum(frame->datalen);
457 if (checksum != frame->datalen_checksum)
458 return false;
459
460 checksum = pn533_data_checksum(frame->data, frame->datalen);
461 if (checksum != PN533_FRAME_CHECKSUM(frame))
462 return false;
463
464 return true;
465}
466
467static bool pn533_rx_frame_is_ack(struct pn533_frame *frame)
468{
469 if (frame->start_frame != cpu_to_be16(PN533_SOF))
470 return false;
471
472 if (frame->datalen != 0 || frame->datalen_checksum != 0xFF)
473 return false;
474
475 return true;
476}
477
478static bool pn533_rx_frame_is_cmd_response(struct pn533_frame *frame, u8 cmd)
479{
480 return (PN533_FRAME_CMD(frame) == PN533_CMD_RESPONSE(cmd));
481}
482
4849f85e
SO
483
484static void pn533_wq_cmd_complete(struct work_struct *work)
c46ee386 485{
5d50b364 486 struct pn533 *dev = container_of(work, struct pn533, cmd_complete_work);
4849f85e 487 struct pn533_frame *in_frame;
c46ee386
AAJ
488 int rc;
489
4849f85e
SO
490 in_frame = dev->wq_in_frame;
491
492 if (dev->wq_in_error)
c46ee386 493 rc = dev->cmd_complete(dev, dev->cmd_complete_arg, NULL,
4849f85e 494 dev->wq_in_error);
c46ee386
AAJ
495 else
496 rc = dev->cmd_complete(dev, dev->cmd_complete_arg,
497 PN533_FRAME_CMD_PARAMS_PTR(in_frame),
498 PN533_FRAME_CMD_PARAMS_LEN(in_frame));
499
500 if (rc != -EINPROGRESS)
5d50b364 501 queue_work(dev->wq, &dev->cmd_work);
c46ee386
AAJ
502}
503
504static void pn533_recv_response(struct urb *urb)
505{
506 struct pn533 *dev = urb->context;
507 struct pn533_frame *in_frame;
508
4849f85e 509 dev->wq_in_frame = NULL;
c46ee386
AAJ
510
511 switch (urb->status) {
512 case 0:
513 /* success */
514 break;
515 case -ECONNRESET:
516 case -ENOENT:
517 case -ESHUTDOWN:
6ca55372
WR
518 nfc_dev_dbg(&dev->interface->dev,
519 "Urb shutting down with status: %d", urb->status);
4849f85e
SO
520 dev->wq_in_error = urb->status;
521 goto sched_wq;
c46ee386 522 default:
6ca55372
WR
523 nfc_dev_err(&dev->interface->dev,
524 "Nonzero urb status received: %d", urb->status);
4849f85e
SO
525 dev->wq_in_error = urb->status;
526 goto sched_wq;
c46ee386
AAJ
527 }
528
529 in_frame = dev->in_urb->transfer_buffer;
530
99e591be
WR
531 print_hex_dump(KERN_DEBUG, "PN533 RX: ", DUMP_PREFIX_NONE, 16, 1,
532 in_frame, PN533_FRAME_SIZE(in_frame), false);
533
c46ee386
AAJ
534 if (!pn533_rx_frame_is_valid(in_frame)) {
535 nfc_dev_err(&dev->interface->dev, "Received an invalid frame");
4849f85e
SO
536 dev->wq_in_error = -EIO;
537 goto sched_wq;
c46ee386
AAJ
538 }
539
540 if (!pn533_rx_frame_is_cmd_response(in_frame, dev->cmd)) {
6ca55372
WR
541 nfc_dev_err(&dev->interface->dev,
542 "It it not the response to the last command");
4849f85e
SO
543 dev->wq_in_error = -EIO;
544 goto sched_wq;
c46ee386
AAJ
545 }
546
547 nfc_dev_dbg(&dev->interface->dev, "Received a valid frame");
4849f85e
SO
548 dev->wq_in_error = 0;
549 dev->wq_in_frame = in_frame;
c46ee386 550
4849f85e 551sched_wq:
5d50b364 552 queue_work(dev->wq, &dev->cmd_complete_work);
c46ee386
AAJ
553}
554
555static int pn533_submit_urb_for_response(struct pn533 *dev, gfp_t flags)
556{
557 dev->in_urb->complete = pn533_recv_response;
558
559 return usb_submit_urb(dev->in_urb, flags);
560}
561
562static void pn533_recv_ack(struct urb *urb)
563{
564 struct pn533 *dev = urb->context;
565 struct pn533_frame *in_frame;
566 int rc;
567
568 switch (urb->status) {
569 case 0:
570 /* success */
571 break;
572 case -ECONNRESET:
573 case -ENOENT:
574 case -ESHUTDOWN:
6ca55372
WR
575 nfc_dev_dbg(&dev->interface->dev,
576 "Urb shutting down with status: %d", urb->status);
4849f85e
SO
577 dev->wq_in_error = urb->status;
578 goto sched_wq;
c46ee386 579 default:
6ca55372
WR
580 nfc_dev_err(&dev->interface->dev,
581 "Nonzero urb status received: %d", urb->status);
4849f85e
SO
582 dev->wq_in_error = urb->status;
583 goto sched_wq;
c46ee386
AAJ
584 }
585
586 in_frame = dev->in_urb->transfer_buffer;
587
588 if (!pn533_rx_frame_is_ack(in_frame)) {
589 nfc_dev_err(&dev->interface->dev, "Received an invalid ack");
4849f85e
SO
590 dev->wq_in_error = -EIO;
591 goto sched_wq;
c46ee386
AAJ
592 }
593
594 nfc_dev_dbg(&dev->interface->dev, "Received a valid ack");
595
596 rc = pn533_submit_urb_for_response(dev, GFP_ATOMIC);
597 if (rc) {
6ca55372
WR
598 nfc_dev_err(&dev->interface->dev,
599 "usb_submit_urb failed with result %d", rc);
4849f85e
SO
600 dev->wq_in_error = rc;
601 goto sched_wq;
c46ee386
AAJ
602 }
603
604 return;
605
4849f85e
SO
606sched_wq:
607 dev->wq_in_frame = NULL;
5d50b364 608 queue_work(dev->wq, &dev->cmd_complete_work);
c46ee386
AAJ
609}
610
611static int pn533_submit_urb_for_ack(struct pn533 *dev, gfp_t flags)
612{
613 dev->in_urb->complete = pn533_recv_ack;
614
615 return usb_submit_urb(dev->in_urb, flags);
616}
617
618static int pn533_send_ack(struct pn533 *dev, gfp_t flags)
619{
620 int rc;
621
622 nfc_dev_dbg(&dev->interface->dev, "%s", __func__);
623
624 pn533_tx_frame_ack(dev->out_frame);
625
626 dev->out_urb->transfer_buffer = dev->out_frame;
627 dev->out_urb->transfer_buffer_length = PN533_FRAME_ACK_SIZE;
628 rc = usb_submit_urb(dev->out_urb, flags);
629
630 return rc;
631}
632
633static int __pn533_send_cmd_frame_async(struct pn533 *dev,
634 struct pn533_frame *out_frame,
635 struct pn533_frame *in_frame,
636 int in_frame_len,
637 pn533_cmd_complete_t cmd_complete,
d94ea4f5 638 void *arg)
c46ee386
AAJ
639{
640 int rc;
641
642 nfc_dev_dbg(&dev->interface->dev, "Sending command 0x%x",
643 PN533_FRAME_CMD(out_frame));
644
645 dev->cmd = PN533_FRAME_CMD(out_frame);
646 dev->cmd_complete = cmd_complete;
647 dev->cmd_complete_arg = arg;
648
649 dev->out_urb->transfer_buffer = out_frame;
650 dev->out_urb->transfer_buffer_length =
651 PN533_FRAME_SIZE(out_frame);
652
653 dev->in_urb->transfer_buffer = in_frame;
654 dev->in_urb->transfer_buffer_length = in_frame_len;
655
99e591be
WR
656 print_hex_dump(KERN_DEBUG, "PN533 TX: ", DUMP_PREFIX_NONE, 16, 1,
657 out_frame, PN533_FRAME_SIZE(out_frame), false);
658
d94ea4f5 659 rc = usb_submit_urb(dev->out_urb, GFP_KERNEL);
c46ee386
AAJ
660 if (rc)
661 return rc;
662
d94ea4f5 663 rc = pn533_submit_urb_for_ack(dev, GFP_KERNEL);
c46ee386
AAJ
664 if (rc)
665 goto error;
666
667 return 0;
668
669error:
670 usb_unlink_urb(dev->out_urb);
671 return rc;
672}
673
aada17ac
WR
674static void pn533_build_cmd_frame(u8 cmd_code, struct sk_buff *skb)
675{
676 struct pn533_frame *frame;
677 /* payload is already there, just update datalen */
678 int payload_len = skb->len;
679
680 skb_push(skb, PN533_FRAME_HEADER_LEN);
681 skb_put(skb, PN533_FRAME_TAIL_LEN);
682
683 frame = (struct pn533_frame *)skb->data;
684
685 pn533_tx_frame_init(frame, cmd_code);
686 frame->datalen += payload_len;
687 pn533_tx_frame_finish(frame);
688}
689
690struct pn533_send_async_complete_arg {
691 pn533_send_async_complete_t complete_cb;
692 void *complete_cb_context;
693 struct sk_buff *resp;
694 struct sk_buff *req;
695};
696
697static int pn533_send_async_complete(struct pn533 *dev, void *_arg, u8 *params,
698 int params_len)
699{
700 struct pn533_send_async_complete_arg *arg = _arg;
701
702 struct sk_buff *req = arg->req;
703 struct sk_buff *resp = arg->resp;
704
705 struct pn533_frame *frame = (struct pn533_frame *)resp->data;
706 int rc;
707
708 dev_kfree_skb(req);
709
710 if (params_len < 0) {
711 nfc_dev_err(&dev->interface->dev,
712 "Error %d when starting as a target",
713 params_len);
714
715 arg->complete_cb(dev, arg->complete_cb_context,
716 ERR_PTR(params_len));
717 rc = params_len;
718 dev_kfree_skb(resp);
719 goto out;
720 }
721
722 skb_put(resp, PN533_FRAME_SIZE(frame));
723 skb_pull(resp, PN533_FRAME_HEADER_LEN);
724 skb_trim(resp, resp->len - PN533_FRAME_TAIL_LEN);
725
726 rc = arg->complete_cb(dev, arg->complete_cb_context, resp);
727
728out:
729 kfree(arg);
730 return rc;
731}
732
733static int __pn533_send_async(struct pn533 *dev, u8 cmd_code,
734 struct sk_buff *req, struct sk_buff *resp,
735 int resp_len,
736 pn533_send_async_complete_t complete_cb,
737 void *complete_cb_context)
738{
739 struct pn533_cmd *cmd;
740 struct pn533_send_async_complete_arg *arg;
741 int rc = 0;
742
743 nfc_dev_dbg(&dev->interface->dev, "%s", __func__);
744
745 arg = kzalloc(sizeof(arg), GFP_KERNEL);
746 if (!arg)
747 return -ENOMEM;
748
749 arg->complete_cb = complete_cb;
750 arg->complete_cb_context = complete_cb_context;
751 arg->resp = resp;
752 arg->req = req;
753
754 pn533_build_cmd_frame(cmd_code, req);
755
756 mutex_lock(&dev->cmd_lock);
757
758 if (!dev->cmd_pending) {
759 rc = __pn533_send_cmd_frame_async(dev,
760 (struct pn533_frame *)req->data,
761 (struct pn533_frame *)resp->data,
762 resp_len, pn533_send_async_complete,
763 arg);
764 if (rc)
765 goto error;
766
767 dev->cmd_pending = 1;
768 goto unlock;
769 }
770
771 nfc_dev_dbg(&dev->interface->dev, "%s Queueing command", __func__);
772
773 cmd = kzalloc(sizeof(struct pn533_cmd), GFP_KERNEL);
774 if (!cmd) {
775 rc = -ENOMEM;
776 goto error;
777 }
778
779 INIT_LIST_HEAD(&cmd->queue);
780 cmd->cmd_code = cmd_code;
781 cmd->req = req;
782 cmd->resp = resp;
783 cmd->arg = arg;
784
785 list_add_tail(&cmd->queue, &dev->cmd_queue);
786
787 goto unlock;
788
789error:
790 kfree(arg);
791unlock:
792 mutex_unlock(&dev->cmd_lock);
793 return rc;
15461aeb
WR
794}
795
796static int pn533_send_data_async(struct pn533 *dev, u8 cmd_code,
797 struct sk_buff *req,
798 pn533_send_async_complete_t complete_cb,
799 void *complete_cb_context)
800{
801 struct sk_buff *resp;
802 int rc;
803 int resp_len = PN533_FRAME_HEADER_LEN +
804 PN533_FRAME_MAX_PAYLOAD_LEN +
805 PN533_FRAME_TAIL_LEN;
806
807 nfc_dev_dbg(&dev->interface->dev, "%s", __func__);
808
809 resp = nfc_alloc_recv_skb(resp_len, GFP_KERNEL);
810 if (!resp)
811 return -ENOMEM;
812
813 rc = __pn533_send_async(dev, cmd_code, req, resp, resp_len, complete_cb,
814 complete_cb_context);
815 if (rc)
816 dev_kfree_skb(resp);
817
818 return rc;
aada17ac
WR
819}
820
821static int pn533_send_cmd_async(struct pn533 *dev, u8 cmd_code,
822 struct sk_buff *req,
823 pn533_send_async_complete_t complete_cb,
824 void *complete_cb_context)
825{
826 struct sk_buff *resp;
827 int rc;
828
829 nfc_dev_dbg(&dev->interface->dev, "%s", __func__);
830
831 resp = alloc_skb(PN533_NORMAL_FRAME_MAX_LEN, GFP_KERNEL);
832 if (!resp)
833 return -ENOMEM;
834
835 rc = __pn533_send_async(dev, cmd_code, req, resp,
836 PN533_NORMAL_FRAME_MAX_LEN,
837 complete_cb, complete_cb_context);
838 if (rc)
839 dev_kfree_skb(resp);
840
841 return rc;
842}
843
b1e666f5
WR
844/*
845 * pn533_send_cmd_direct_async
846 *
847 * The function sends a piority cmd directly to the chip omiting the cmd
848 * queue. It's intended to be used by chaining mechanism of received responses
849 * where the host has to request every single chunk of data before scheduling
850 * next cmd from the queue.
851 */
852static int pn533_send_cmd_direct_async(struct pn533 *dev, u8 cmd_code,
853 struct sk_buff *req,
854 pn533_send_async_complete_t complete_cb,
855 void *complete_cb_context)
856{
857 struct pn533_send_async_complete_arg *arg;
858 struct sk_buff *resp;
859 int rc;
860 int resp_len = PN533_FRAME_HEADER_LEN +
861 PN533_FRAME_MAX_PAYLOAD_LEN +
862 PN533_FRAME_TAIL_LEN;
863
864 nfc_dev_dbg(&dev->interface->dev, "%s", __func__);
865
866 resp = alloc_skb(resp_len, GFP_KERNEL);
867 if (!resp)
868 return -ENOMEM;
869
870 arg = kzalloc(sizeof(arg), GFP_KERNEL);
871 if (!arg) {
872 dev_kfree_skb(resp);
873 return -ENOMEM;
874 }
875
876 arg->complete_cb = complete_cb;
877 arg->complete_cb_context = complete_cb_context;
878 arg->resp = resp;
879 arg->req = req;
880
881 pn533_build_cmd_frame(cmd_code, req);
882
883 rc = __pn533_send_cmd_frame_async(dev, (struct pn533_frame *)req->data,
884 (struct pn533_frame *)resp->data,
885 resp_len, pn533_send_async_complete,
886 arg);
887 if (rc < 0) {
888 dev_kfree_skb(resp);
889 kfree(arg);
890 }
891
892 return rc;
893}
894
5d50b364
SO
895static void pn533_wq_cmd(struct work_struct *work)
896{
897 struct pn533 *dev = container_of(work, struct pn533, cmd_work);
898 struct pn533_cmd *cmd;
899
900 mutex_lock(&dev->cmd_lock);
901
902 if (list_empty(&dev->cmd_queue)) {
903 dev->cmd_pending = 0;
904 mutex_unlock(&dev->cmd_lock);
905 return;
906 }
907
908 cmd = list_first_entry(&dev->cmd_queue, struct pn533_cmd, queue);
909
60ad07ab
SJ
910 list_del(&cmd->queue);
911
5d50b364
SO
912 mutex_unlock(&dev->cmd_lock);
913
aada17ac
WR
914 if (cmd->cmd_code != PN533_CMD_UNDEF)
915 __pn533_send_cmd_frame_async(dev,
916 (struct pn533_frame *)cmd->req->data,
917 (struct pn533_frame *)cmd->resp->data,
918 PN533_NORMAL_FRAME_MAX_LEN,
919 pn533_send_async_complete,
920 cmd->arg);
921 else
922 __pn533_send_cmd_frame_async(dev, cmd->out_frame, cmd->in_frame,
923 cmd->in_frame_len,
924 cmd->cmd_complete, cmd->arg);
5d50b364 925
5d50b364
SO
926 kfree(cmd);
927}
928
c46ee386
AAJ
929static int pn533_send_cmd_frame_async(struct pn533 *dev,
930 struct pn533_frame *out_frame,
931 struct pn533_frame *in_frame,
932 int in_frame_len,
933 pn533_cmd_complete_t cmd_complete,
d94ea4f5 934 void *arg)
c46ee386 935{
5d50b364 936 struct pn533_cmd *cmd;
ee5e8d81 937 int rc = 0;
c46ee386
AAJ
938
939 nfc_dev_dbg(&dev->interface->dev, "%s", __func__);
940
5d50b364 941 mutex_lock(&dev->cmd_lock);
c46ee386 942
5d50b364
SO
943 if (!dev->cmd_pending) {
944 rc = __pn533_send_cmd_frame_async(dev, out_frame, in_frame,
945 in_frame_len, cmd_complete,
d94ea4f5 946 arg);
5d50b364
SO
947 if (!rc)
948 dev->cmd_pending = 1;
949
ee5e8d81 950 goto unlock;
5d50b364
SO
951 }
952
953 nfc_dev_dbg(&dev->interface->dev, "%s Queueing command", __func__);
954
d94ea4f5 955 cmd = kzalloc(sizeof(struct pn533_cmd), GFP_KERNEL);
ee5e8d81
SJ
956 if (!cmd) {
957 rc = -ENOMEM;
958 goto unlock;
959 }
5d50b364
SO
960
961 INIT_LIST_HEAD(&cmd->queue);
962 cmd->out_frame = out_frame;
963 cmd->in_frame = in_frame;
964 cmd->in_frame_len = in_frame_len;
aada17ac 965 cmd->cmd_code = PN533_CMD_UNDEF;
5d50b364
SO
966 cmd->cmd_complete = cmd_complete;
967 cmd->arg = arg;
5d50b364
SO
968
969 list_add_tail(&cmd->queue, &dev->cmd_queue);
c46ee386 970
ee5e8d81 971unlock:
0201ed03 972 mutex_unlock(&dev->cmd_lock);
5d50b364 973
ee5e8d81 974 return rc;
c46ee386
AAJ
975}
976
977struct pn533_sync_cmd_response {
94c5c156 978 struct sk_buff *resp;
c46ee386
AAJ
979 struct completion done;
980};
981
94c5c156
WR
982static int pn533_send_sync_complete(struct pn533 *dev, void *_arg,
983 struct sk_buff *resp)
984{
985 struct pn533_sync_cmd_response *arg = _arg;
986
987 nfc_dev_dbg(&dev->interface->dev, "%s", __func__);
988
989 arg->resp = resp;
990 complete(&arg->done);
991
992 return 0;
993}
994
995/* pn533_send_cmd_sync
996 *
997 * Please note the req parameter is freed inside the function to
998 * limit a number of return value interpretations by the caller.
999 *
1000 * 1. negative in case of error during TX path -> req should be freed
1001 *
1002 * 2. negative in case of error during RX path -> req should not be freed
1003 * as it's been already freed at the begining of RX path by
1004 * async_complete_cb.
1005 *
1006 * 3. valid pointer in case of succesfult RX path
1007 *
1008 * A caller has to check a return value with IS_ERR macro. If the test pass,
1009 * the returned pointer is valid.
1010 *
1011 * */
1012static struct sk_buff *pn533_send_cmd_sync(struct pn533 *dev, u8 cmd_code,
1013 struct sk_buff *req)
1014{
1015 int rc;
1016 struct pn533_sync_cmd_response arg;
1017
1018 nfc_dev_dbg(&dev->interface->dev, "%s", __func__);
1019
1020 init_completion(&arg.done);
1021
1022 rc = pn533_send_cmd_async(dev, cmd_code, req,
1023 pn533_send_sync_complete, &arg);
1024 if (rc) {
1025 dev_kfree_skb(req);
1026 return ERR_PTR(rc);
1027 }
1028
1029 wait_for_completion(&arg.done);
1030
1031 return arg.resp;
1032}
1033
c46ee386
AAJ
1034static void pn533_send_complete(struct urb *urb)
1035{
1036 struct pn533 *dev = urb->context;
1037
1038 nfc_dev_dbg(&dev->interface->dev, "%s", __func__);
1039
1040 switch (urb->status) {
1041 case 0:
1042 /* success */
1043 break;
1044 case -ECONNRESET:
1045 case -ENOENT:
1046 case -ESHUTDOWN:
6ca55372
WR
1047 nfc_dev_dbg(&dev->interface->dev,
1048 "Urb shutting down with status: %d", urb->status);
c46ee386
AAJ
1049 break;
1050 default:
6ca55372
WR
1051 nfc_dev_dbg(&dev->interface->dev,
1052 "Nonzero urb status received: %d", urb->status);
c46ee386
AAJ
1053 }
1054}
1055
d22b2db6
WR
1056static struct sk_buff *pn533_alloc_skb(unsigned int size)
1057{
1058 struct sk_buff *skb;
1059
1060 skb = alloc_skb(PN533_FRAME_HEADER_LEN +
1061 size +
1062 PN533_FRAME_TAIL_LEN, GFP_KERNEL);
1063
1064 if (skb)
1065 skb_reserve(skb, PN533_FRAME_HEADER_LEN);
1066
1067 return skb;
1068}
1069
c46ee386
AAJ
1070struct pn533_target_type_a {
1071 __be16 sens_res;
1072 u8 sel_res;
1073 u8 nfcid_len;
1074 u8 nfcid_data[];
1075} __packed;
1076
1077
1078#define PN533_TYPE_A_SENS_RES_NFCID1(x) ((u8)((be16_to_cpu(x) & 0x00C0) >> 6))
1079#define PN533_TYPE_A_SENS_RES_SSD(x) ((u8)((be16_to_cpu(x) & 0x001F) >> 0))
1080#define PN533_TYPE_A_SENS_RES_PLATCONF(x) ((u8)((be16_to_cpu(x) & 0x0F00) >> 8))
1081
1082#define PN533_TYPE_A_SENS_RES_SSD_JEWEL 0x00
1083#define PN533_TYPE_A_SENS_RES_PLATCONF_JEWEL 0x0C
1084
1085#define PN533_TYPE_A_SEL_PROT(x) (((x) & 0x60) >> 5)
1086#define PN533_TYPE_A_SEL_CASCADE(x) (((x) & 0x04) >> 2)
1087
1088#define PN533_TYPE_A_SEL_PROT_MIFARE 0
1089#define PN533_TYPE_A_SEL_PROT_ISO14443 1
1090#define PN533_TYPE_A_SEL_PROT_DEP 2
1091#define PN533_TYPE_A_SEL_PROT_ISO14443_DEP 3
1092
1093static bool pn533_target_type_a_is_valid(struct pn533_target_type_a *type_a,
1094 int target_data_len)
1095{
1096 u8 ssd;
1097 u8 platconf;
1098
1099 if (target_data_len < sizeof(struct pn533_target_type_a))
1100 return false;
1101
1102 /* The lenght check of nfcid[] and ats[] are not being performed because
1103 the values are not being used */
1104
1105 /* Requirement 4.6.3.3 from NFC Forum Digital Spec */
1106 ssd = PN533_TYPE_A_SENS_RES_SSD(type_a->sens_res);
1107 platconf = PN533_TYPE_A_SENS_RES_PLATCONF(type_a->sens_res);
1108
1109 if ((ssd == PN533_TYPE_A_SENS_RES_SSD_JEWEL &&
1110 platconf != PN533_TYPE_A_SENS_RES_PLATCONF_JEWEL) ||
1111 (ssd != PN533_TYPE_A_SENS_RES_SSD_JEWEL &&
1112 platconf == PN533_TYPE_A_SENS_RES_PLATCONF_JEWEL))
1113 return false;
1114
1115 /* Requirements 4.8.2.1, 4.8.2.3, 4.8.2.5 and 4.8.2.7 from NFC Forum */
1116 if (PN533_TYPE_A_SEL_CASCADE(type_a->sel_res) != 0)
1117 return false;
1118
1119 return true;
1120}
1121
1122static int pn533_target_found_type_a(struct nfc_target *nfc_tgt, u8 *tgt_data,
1123 int tgt_data_len)
1124{
1125 struct pn533_target_type_a *tgt_type_a;
1126
37cf4fc6 1127 tgt_type_a = (struct pn533_target_type_a *)tgt_data;
c46ee386
AAJ
1128
1129 if (!pn533_target_type_a_is_valid(tgt_type_a, tgt_data_len))
1130 return -EPROTO;
1131
1132 switch (PN533_TYPE_A_SEL_PROT(tgt_type_a->sel_res)) {
1133 case PN533_TYPE_A_SEL_PROT_MIFARE:
1134 nfc_tgt->supported_protocols = NFC_PROTO_MIFARE_MASK;
1135 break;
1136 case PN533_TYPE_A_SEL_PROT_ISO14443:
1137 nfc_tgt->supported_protocols = NFC_PROTO_ISO14443_MASK;
1138 break;
1139 case PN533_TYPE_A_SEL_PROT_DEP:
1140 nfc_tgt->supported_protocols = NFC_PROTO_NFC_DEP_MASK;
1141 break;
1142 case PN533_TYPE_A_SEL_PROT_ISO14443_DEP:
1143 nfc_tgt->supported_protocols = NFC_PROTO_ISO14443_MASK |
1144 NFC_PROTO_NFC_DEP_MASK;
1145 break;
1146 }
1147
1148 nfc_tgt->sens_res = be16_to_cpu(tgt_type_a->sens_res);
1149 nfc_tgt->sel_res = tgt_type_a->sel_res;
c3b1e1e8
SO
1150 nfc_tgt->nfcid1_len = tgt_type_a->nfcid_len;
1151 memcpy(nfc_tgt->nfcid1, tgt_type_a->nfcid_data, nfc_tgt->nfcid1_len);
c46ee386
AAJ
1152
1153 return 0;
1154}
1155
1156struct pn533_target_felica {
1157 u8 pol_res;
1158 u8 opcode;
1159 u8 nfcid2[8];
1160 u8 pad[8];
1161 /* optional */
1162 u8 syst_code[];
1163} __packed;
1164
1165#define PN533_FELICA_SENSF_NFCID2_DEP_B1 0x01
1166#define PN533_FELICA_SENSF_NFCID2_DEP_B2 0xFE
1167
1168static bool pn533_target_felica_is_valid(struct pn533_target_felica *felica,
1169 int target_data_len)
1170{
1171 if (target_data_len < sizeof(struct pn533_target_felica))
1172 return false;
1173
1174 if (felica->opcode != PN533_FELICA_OPC_SENSF_RES)
1175 return false;
1176
1177 return true;
1178}
1179
1180static int pn533_target_found_felica(struct nfc_target *nfc_tgt, u8 *tgt_data,
1181 int tgt_data_len)
1182{
1183 struct pn533_target_felica *tgt_felica;
1184
37cf4fc6 1185 tgt_felica = (struct pn533_target_felica *)tgt_data;
c46ee386
AAJ
1186
1187 if (!pn533_target_felica_is_valid(tgt_felica, tgt_data_len))
1188 return -EPROTO;
1189
1190 if (tgt_felica->nfcid2[0] == PN533_FELICA_SENSF_NFCID2_DEP_B1 &&
1191 tgt_felica->nfcid2[1] ==
1192 PN533_FELICA_SENSF_NFCID2_DEP_B2)
1193 nfc_tgt->supported_protocols = NFC_PROTO_NFC_DEP_MASK;
1194 else
1195 nfc_tgt->supported_protocols = NFC_PROTO_FELICA_MASK;
1196
7975754f
SO
1197 memcpy(nfc_tgt->sensf_res, &tgt_felica->opcode, 9);
1198 nfc_tgt->sensf_res_len = 9;
1199
c46ee386
AAJ
1200 return 0;
1201}
1202
1203struct pn533_target_jewel {
1204 __be16 sens_res;
1205 u8 jewelid[4];
1206} __packed;
1207
1208static bool pn533_target_jewel_is_valid(struct pn533_target_jewel *jewel,
1209 int target_data_len)
1210{
1211 u8 ssd;
1212 u8 platconf;
1213
1214 if (target_data_len < sizeof(struct pn533_target_jewel))
1215 return false;
1216
1217 /* Requirement 4.6.3.3 from NFC Forum Digital Spec */
1218 ssd = PN533_TYPE_A_SENS_RES_SSD(jewel->sens_res);
1219 platconf = PN533_TYPE_A_SENS_RES_PLATCONF(jewel->sens_res);
1220
1221 if ((ssd == PN533_TYPE_A_SENS_RES_SSD_JEWEL &&
1222 platconf != PN533_TYPE_A_SENS_RES_PLATCONF_JEWEL) ||
1223 (ssd != PN533_TYPE_A_SENS_RES_SSD_JEWEL &&
1224 platconf == PN533_TYPE_A_SENS_RES_PLATCONF_JEWEL))
1225 return false;
1226
1227 return true;
1228}
1229
1230static int pn533_target_found_jewel(struct nfc_target *nfc_tgt, u8 *tgt_data,
1231 int tgt_data_len)
1232{
1233 struct pn533_target_jewel *tgt_jewel;
1234
37cf4fc6 1235 tgt_jewel = (struct pn533_target_jewel *)tgt_data;
c46ee386
AAJ
1236
1237 if (!pn533_target_jewel_is_valid(tgt_jewel, tgt_data_len))
1238 return -EPROTO;
1239
1240 nfc_tgt->supported_protocols = NFC_PROTO_JEWEL_MASK;
1241 nfc_tgt->sens_res = be16_to_cpu(tgt_jewel->sens_res);
d8dc1072
SO
1242 nfc_tgt->nfcid1_len = 4;
1243 memcpy(nfc_tgt->nfcid1, tgt_jewel->jewelid, nfc_tgt->nfcid1_len);
c46ee386
AAJ
1244
1245 return 0;
1246}
1247
1248struct pn533_type_b_prot_info {
1249 u8 bitrate;
1250 u8 fsci_type;
1251 u8 fwi_adc_fo;
1252} __packed;
1253
1254#define PN533_TYPE_B_PROT_FCSI(x) (((x) & 0xF0) >> 4)
1255#define PN533_TYPE_B_PROT_TYPE(x) (((x) & 0x0F) >> 0)
1256#define PN533_TYPE_B_PROT_TYPE_RFU_MASK 0x8
1257
1258struct pn533_type_b_sens_res {
1259 u8 opcode;
1260 u8 nfcid[4];
1261 u8 appdata[4];
1262 struct pn533_type_b_prot_info prot_info;
1263} __packed;
1264
1265#define PN533_TYPE_B_OPC_SENSB_RES 0x50
1266
1267struct pn533_target_type_b {
1268 struct pn533_type_b_sens_res sensb_res;
1269 u8 attrib_res_len;
1270 u8 attrib_res[];
1271} __packed;
1272
1273static bool pn533_target_type_b_is_valid(struct pn533_target_type_b *type_b,
1274 int target_data_len)
1275{
1276 if (target_data_len < sizeof(struct pn533_target_type_b))
1277 return false;
1278
1279 if (type_b->sensb_res.opcode != PN533_TYPE_B_OPC_SENSB_RES)
1280 return false;
1281
1282 if (PN533_TYPE_B_PROT_TYPE(type_b->sensb_res.prot_info.fsci_type) &
1283 PN533_TYPE_B_PROT_TYPE_RFU_MASK)
1284 return false;
1285
1286 return true;
1287}
1288
1289static int pn533_target_found_type_b(struct nfc_target *nfc_tgt, u8 *tgt_data,
1290 int tgt_data_len)
1291{
1292 struct pn533_target_type_b *tgt_type_b;
1293
37cf4fc6 1294 tgt_type_b = (struct pn533_target_type_b *)tgt_data;
c46ee386
AAJ
1295
1296 if (!pn533_target_type_b_is_valid(tgt_type_b, tgt_data_len))
1297 return -EPROTO;
1298
01d719a2 1299 nfc_tgt->supported_protocols = NFC_PROTO_ISO14443_B_MASK;
c46ee386
AAJ
1300
1301 return 0;
1302}
1303
b5193e5d
WR
1304static int pn533_target_found(struct pn533 *dev, u8 tg, u8 *tgdata,
1305 int tgdata_len)
c46ee386 1306{
c46ee386
AAJ
1307 struct nfc_target nfc_tgt;
1308 int rc;
1309
1310 nfc_dev_dbg(&dev->interface->dev, "%s - modulation=%d", __func__,
b5193e5d 1311 dev->poll_mod_curr);
c46ee386 1312
b5193e5d 1313 if (tg != 1)
c46ee386
AAJ
1314 return -EPROTO;
1315
98b3ac1b
SO
1316 memset(&nfc_tgt, 0, sizeof(struct nfc_target));
1317
c46ee386
AAJ
1318 switch (dev->poll_mod_curr) {
1319 case PN533_POLL_MOD_106KBPS_A:
b5193e5d 1320 rc = pn533_target_found_type_a(&nfc_tgt, tgdata, tgdata_len);
c46ee386
AAJ
1321 break;
1322 case PN533_POLL_MOD_212KBPS_FELICA:
1323 case PN533_POLL_MOD_424KBPS_FELICA:
b5193e5d 1324 rc = pn533_target_found_felica(&nfc_tgt, tgdata, tgdata_len);
c46ee386
AAJ
1325 break;
1326 case PN533_POLL_MOD_106KBPS_JEWEL:
b5193e5d 1327 rc = pn533_target_found_jewel(&nfc_tgt, tgdata, tgdata_len);
c46ee386
AAJ
1328 break;
1329 case PN533_POLL_MOD_847KBPS_B:
b5193e5d 1330 rc = pn533_target_found_type_b(&nfc_tgt, tgdata, tgdata_len);
c46ee386
AAJ
1331 break;
1332 default:
b5193e5d
WR
1333 nfc_dev_err(&dev->interface->dev,
1334 "Unknown current poll modulation");
c46ee386
AAJ
1335 return -EPROTO;
1336 }
1337
1338 if (rc)
1339 return rc;
1340
1341 if (!(nfc_tgt.supported_protocols & dev->poll_protocols)) {
b5193e5d
WR
1342 nfc_dev_dbg(&dev->interface->dev,
1343 "The Tg found doesn't have the desired protocol");
c46ee386
AAJ
1344 return -EAGAIN;
1345 }
1346
b5193e5d
WR
1347 nfc_dev_dbg(&dev->interface->dev,
1348 "Target found - supported protocols: 0x%x",
1349 nfc_tgt.supported_protocols);
c46ee386
AAJ
1350
1351 dev->tgt_available_prots = nfc_tgt.supported_protocols;
1352
1353 nfc_targets_found(dev->nfc_dev, &nfc_tgt, 1);
1354
1355 return 0;
1356}
1357
6fbbdc16
SO
1358static inline void pn533_poll_next_mod(struct pn533 *dev)
1359{
1360 dev->poll_mod_curr = (dev->poll_mod_curr + 1) % dev->poll_mod_count;
1361}
1362
c46ee386
AAJ
1363static void pn533_poll_reset_mod_list(struct pn533 *dev)
1364{
1365 dev->poll_mod_count = 0;
1366}
1367
1368static void pn533_poll_add_mod(struct pn533 *dev, u8 mod_index)
1369{
1370 dev->poll_mod_active[dev->poll_mod_count] =
37cf4fc6 1371 (struct pn533_poll_modulations *)&poll_mod[mod_index];
c46ee386
AAJ
1372 dev->poll_mod_count++;
1373}
1374
6fbbdc16
SO
1375static void pn533_poll_create_mod_list(struct pn533 *dev,
1376 u32 im_protocols, u32 tm_protocols)
c46ee386
AAJ
1377{
1378 pn533_poll_reset_mod_list(dev);
1379
6fbbdc16
SO
1380 if (im_protocols & NFC_PROTO_MIFARE_MASK
1381 || im_protocols & NFC_PROTO_ISO14443_MASK
1382 || im_protocols & NFC_PROTO_NFC_DEP_MASK)
c46ee386
AAJ
1383 pn533_poll_add_mod(dev, PN533_POLL_MOD_106KBPS_A);
1384
6fbbdc16
SO
1385 if (im_protocols & NFC_PROTO_FELICA_MASK
1386 || im_protocols & NFC_PROTO_NFC_DEP_MASK) {
c46ee386
AAJ
1387 pn533_poll_add_mod(dev, PN533_POLL_MOD_212KBPS_FELICA);
1388 pn533_poll_add_mod(dev, PN533_POLL_MOD_424KBPS_FELICA);
1389 }
1390
6fbbdc16 1391 if (im_protocols & NFC_PROTO_JEWEL_MASK)
c46ee386
AAJ
1392 pn533_poll_add_mod(dev, PN533_POLL_MOD_106KBPS_JEWEL);
1393
01d719a2 1394 if (im_protocols & NFC_PROTO_ISO14443_B_MASK)
c46ee386 1395 pn533_poll_add_mod(dev, PN533_POLL_MOD_847KBPS_B);
c46ee386 1396
6fbbdc16
SO
1397 if (tm_protocols)
1398 pn533_poll_add_mod(dev, PN533_LISTEN_MOD);
c46ee386
AAJ
1399}
1400
b5193e5d 1401static int pn533_start_poll_complete(struct pn533 *dev, struct sk_buff *resp)
c46ee386 1402{
b5193e5d
WR
1403 u8 nbtg, tg, *tgdata;
1404 int rc, tgdata_len;
c46ee386
AAJ
1405
1406 nfc_dev_dbg(&dev->interface->dev, "%s", __func__);
1407
b5193e5d
WR
1408 nbtg = resp->data[0];
1409 tg = resp->data[1];
1410 tgdata = &resp->data[2];
1411 tgdata_len = resp->len - 2; /* nbtg + tg */
1412
1413 if (nbtg) {
1414 rc = pn533_target_found(dev, tg, tgdata, tgdata_len);
c46ee386
AAJ
1415
1416 /* We must stop the poll after a valid target found */
6fbbdc16
SO
1417 if (rc == 0) {
1418 pn533_poll_reset_mod_list(dev);
1419 return 0;
1420 }
c46ee386
AAJ
1421 }
1422
6fbbdc16 1423 return -EAGAIN;
c46ee386
AAJ
1424}
1425
b5193e5d 1426static struct sk_buff *pn533_alloc_poll_tg_frame(u8 *gbytes, size_t gbytes_len)
ad3823ce 1427{
b5193e5d
WR
1428 struct sk_buff *skb;
1429 u8 *felica, *nfcid3, *gb;
1430
51d9e803
SO
1431 u8 felica_params[18] = {0x1, 0xfe, /* DEP */
1432 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, /* random */
1433 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
1434 0xff, 0xff}; /* System code */
b5193e5d 1435
51d9e803
SO
1436 u8 mifare_params[6] = {0x1, 0x1, /* SENS_RES */
1437 0x0, 0x0, 0x0,
1438 0x40}; /* SEL_RES for DEP */
ad3823ce 1439
b5193e5d
WR
1440 unsigned int skb_len = 36 + /* mode (1), mifare (6),
1441 felica (18), nfcid3 (10), gb_len (1) */
1442 gbytes_len +
1443 1; /* len Tk*/
ad3823ce 1444
b5193e5d
WR
1445 skb = pn533_alloc_skb(skb_len);
1446 if (!skb)
1447 return NULL;
ad3823ce
SO
1448
1449 /* DEP support only */
b5193e5d
WR
1450 *skb_put(skb, 1) |= PN533_INIT_TARGET_DEP;
1451
1452 /* MIFARE params */
1453 memcpy(skb_put(skb, 6), mifare_params, 6);
51d9e803
SO
1454
1455 /* Felica params */
b5193e5d
WR
1456 felica = skb_put(skb, 18);
1457 memcpy(felica, felica_params, 18);
1458 get_random_bytes(felica + 2, 6);
51d9e803
SO
1459
1460 /* NFCID3 */
b5193e5d
WR
1461 nfcid3 = skb_put(skb, 10);
1462 memset(nfcid3, 0, 10);
1463 memcpy(nfcid3, felica, 8);
51d9e803
SO
1464
1465 /* General bytes */
b5193e5d 1466 *skb_put(skb, 1) = gbytes_len;
51d9e803 1467
b5193e5d
WR
1468 gb = skb_put(skb, gbytes_len);
1469 memcpy(gb, gbytes, gbytes_len);
ad3823ce 1470
b5193e5d
WR
1471 /* Len Tk */
1472 *skb_put(skb, 1) = 0;
51d9e803 1473
b5193e5d 1474 return skb;
ad3823ce
SO
1475}
1476
b1bb290a 1477#define PN533_CMD_DATAEXCH_HEAD_LEN 1
103b34cf
SO
1478#define PN533_CMD_DATAEXCH_DATA_MAXLEN 262
1479static int pn533_tm_get_data_complete(struct pn533 *dev, void *arg,
e4878823 1480 struct sk_buff *resp)
103b34cf 1481{
e4878823 1482 u8 status;
103b34cf
SO
1483
1484 nfc_dev_dbg(&dev->interface->dev, "%s", __func__);
1485
e4878823
WR
1486 if (IS_ERR(resp))
1487 return PTR_ERR(resp);
103b34cf 1488
e4878823
WR
1489 status = resp->data[0];
1490 skb_pull(resp, sizeof(status));
103b34cf 1491
e4878823 1492 if (status != 0) {
103b34cf 1493 nfc_tm_deactivated(dev->nfc_dev);
51ad304c 1494 dev->tgt_mode = 0;
e4878823 1495 dev_kfree_skb(resp);
103b34cf
SO
1496 return 0;
1497 }
1498
e4878823 1499 return nfc_tm_data_received(dev->nfc_dev, resp);
103b34cf
SO
1500}
1501
1502static void pn533_wq_tg_get_data(struct work_struct *work)
1503{
1504 struct pn533 *dev = container_of(work, struct pn533, tg_work);
103b34cf 1505
e4878823
WR
1506 struct sk_buff *skb;
1507 int rc;
103b34cf 1508
e4878823 1509 nfc_dev_dbg(&dev->interface->dev, "%s", __func__);
103b34cf 1510
e4878823
WR
1511 skb = pn533_alloc_skb(0);
1512 if (!skb)
103b34cf
SO
1513 return;
1514
e4878823
WR
1515 rc = pn533_send_data_async(dev, PN533_CMD_TG_GET_DATA, skb,
1516 pn533_tm_get_data_complete, NULL);
103b34cf 1517
e4878823
WR
1518 if (rc < 0)
1519 dev_kfree_skb(skb);
103b34cf
SO
1520
1521 return;
1522}
1523
fc40a8c1 1524#define ATR_REQ_GB_OFFSET 17
b5193e5d 1525static int pn533_init_target_complete(struct pn533 *dev, struct sk_buff *resp)
fe7c5800 1526{
b5193e5d 1527 u8 mode, *cmd, comm_mode = NFC_COMM_PASSIVE, *gb;
fc40a8c1 1528 size_t gb_len;
103b34cf 1529 int rc;
ad3823ce
SO
1530
1531 nfc_dev_dbg(&dev->interface->dev, "%s", __func__);
1532
b5193e5d 1533 if (resp->len < ATR_REQ_GB_OFFSET + 1)
fc40a8c1
SO
1534 return -EINVAL;
1535
b5193e5d
WR
1536 mode = resp->data[0];
1537 cmd = &resp->data[1];
ad3823ce 1538
b5193e5d
WR
1539 nfc_dev_dbg(&dev->interface->dev, "Target mode 0x%x len %d\n",
1540 mode, resp->len);
ad3823ce 1541
b5193e5d
WR
1542 if ((mode & PN533_INIT_TARGET_RESP_FRAME_MASK) ==
1543 PN533_INIT_TARGET_RESP_ACTIVE)
fc40a8c1
SO
1544 comm_mode = NFC_COMM_ACTIVE;
1545
b5193e5d 1546 if ((mode & PN533_INIT_TARGET_RESP_DEP) == 0) /* Only DEP supported */
fc40a8c1
SO
1547 return -EOPNOTSUPP;
1548
b5193e5d
WR
1549 gb = cmd + ATR_REQ_GB_OFFSET;
1550 gb_len = resp->len - (ATR_REQ_GB_OFFSET + 1);
fc40a8c1 1551
103b34cf
SO
1552 rc = nfc_tm_activated(dev->nfc_dev, NFC_PROTO_NFC_DEP_MASK,
1553 comm_mode, gb, gb_len);
1554 if (rc < 0) {
1555 nfc_dev_err(&dev->interface->dev,
1556 "Error when signaling target activation");
1557 return rc;
1558 }
1559
51ad304c 1560 dev->tgt_mode = 1;
103b34cf
SO
1561 queue_work(dev->wq, &dev->tg_work);
1562
1563 return 0;
fe7c5800
SO
1564}
1565
6fbbdc16 1566static void pn533_listen_mode_timer(unsigned long data)
ad3823ce 1567{
37cf4fc6 1568 struct pn533 *dev = (struct pn533 *)data;
6fbbdc16
SO
1569
1570 nfc_dev_dbg(&dev->interface->dev, "Listen mode timeout");
1571
1572 /* An ack will cancel the last issued command (poll) */
1573 pn533_send_ack(dev, GFP_ATOMIC);
1574
1575 dev->cancel_listen = 1;
1576
6fbbdc16
SO
1577 pn533_poll_next_mod(dev);
1578
1579 queue_work(dev->wq, &dev->poll_work);
1580}
1581
1582static int pn533_poll_complete(struct pn533 *dev, void *arg,
b5193e5d 1583 struct sk_buff *resp)
6fbbdc16
SO
1584{
1585 struct pn533_poll_modulations *cur_mod;
ad3823ce
SO
1586 int rc;
1587
6fbbdc16 1588 nfc_dev_dbg(&dev->interface->dev, "%s", __func__);
ad3823ce 1589
b5193e5d
WR
1590 if (IS_ERR(resp)) {
1591 rc = PTR_ERR(resp);
1592
1593 nfc_dev_err(&dev->interface->dev, "%s Poll complete error %d",
1594 __func__, rc);
1595
1596 if (rc == -ENOENT) {
1597 if (dev->poll_mod_count != 0)
1598 return rc;
1599 else
1600 goto stop_poll;
1601 } else if (rc < 0) {
1602 nfc_dev_err(&dev->interface->dev,
1603 "Error %d when running poll", rc);
1604 goto stop_poll;
1605 }
6fbbdc16 1606 }
ad3823ce 1607
6fbbdc16
SO
1608 cur_mod = dev->poll_mod_active[dev->poll_mod_curr];
1609
b5193e5d 1610 if (cur_mod->len == 0) { /* Target mode */
6fbbdc16 1611 del_timer(&dev->listen_timer);
b5193e5d
WR
1612 rc = pn533_init_target_complete(dev, resp);
1613 goto done;
6fbbdc16
SO
1614 }
1615
b5193e5d
WR
1616 /* Initiator mode */
1617 rc = pn533_start_poll_complete(dev, resp);
1618 if (!rc)
1619 goto done;
6fbbdc16 1620
b5193e5d 1621 pn533_poll_next_mod(dev);
6fbbdc16
SO
1622 queue_work(dev->wq, &dev->poll_work);
1623
b5193e5d
WR
1624done:
1625 dev_kfree_skb(resp);
1626 return rc;
6fbbdc16
SO
1627
1628stop_poll:
b5193e5d
WR
1629 nfc_dev_err(&dev->interface->dev, "Polling operation has been stopped");
1630
6fbbdc16
SO
1631 pn533_poll_reset_mod_list(dev);
1632 dev->poll_protocols = 0;
b5193e5d 1633 return rc;
ad3823ce
SO
1634}
1635
b5193e5d
WR
1636static struct sk_buff *pn533_alloc_poll_in_frame(struct pn533_poll_modulations
1637 *mod)
c46ee386 1638{
b5193e5d 1639 struct sk_buff *skb;
c46ee386 1640
b5193e5d
WR
1641 skb = pn533_alloc_skb(mod->len);
1642 if (!skb)
1643 return NULL;
c46ee386 1644
b5193e5d 1645 memcpy(skb_put(skb, mod->len), &mod->data, mod->len);
c46ee386 1646
b5193e5d 1647 return skb;
6fbbdc16 1648}
c46ee386 1649
6fbbdc16
SO
1650static int pn533_send_poll_frame(struct pn533 *dev)
1651{
b5193e5d
WR
1652 struct pn533_poll_modulations *mod;
1653 struct sk_buff *skb;
6fbbdc16 1654 int rc;
b5193e5d 1655 u8 cmd_code;
c46ee386 1656
b5193e5d 1657 mod = dev->poll_mod_active[dev->poll_mod_curr];
c46ee386 1658
b5193e5d
WR
1659 nfc_dev_dbg(&dev->interface->dev, "%s mod len %d\n",
1660 __func__, mod->len);
c46ee386 1661
b5193e5d
WR
1662 if (mod->len == 0) { /* Listen mode */
1663 cmd_code = PN533_CMD_TG_INIT_AS_TARGET;
1664 skb = pn533_alloc_poll_tg_frame(dev->gb, dev->gb_len);
1665 } else { /* Polling mode */
1666 cmd_code = PN533_CMD_IN_LIST_PASSIVE_TARGET;
1667 skb = pn533_alloc_poll_in_frame(mod);
1668 }
1669
1670 if (!skb) {
1671 nfc_dev_err(&dev->interface->dev, "Failed to allocate skb.");
1672 return -ENOMEM;
1673 }
1674
1675 rc = pn533_send_cmd_async(dev, cmd_code, skb, pn533_poll_complete,
1676 NULL);
1677 if (rc < 0) {
1678 dev_kfree_skb(skb);
6fbbdc16 1679 nfc_dev_err(&dev->interface->dev, "Polling loop error %d", rc);
b5193e5d 1680 }
c46ee386 1681
6fbbdc16
SO
1682 return rc;
1683}
1684
1685static void pn533_wq_poll(struct work_struct *work)
1686{
1687 struct pn533 *dev = container_of(work, struct pn533, poll_work);
1688 struct pn533_poll_modulations *cur_mod;
1689 int rc;
1690
1691 cur_mod = dev->poll_mod_active[dev->poll_mod_curr];
1692
1693 nfc_dev_dbg(&dev->interface->dev,
1694 "%s cancel_listen %d modulation len %d",
1695 __func__, dev->cancel_listen, cur_mod->len);
1696
1697 if (dev->cancel_listen == 1) {
1698 dev->cancel_listen = 0;
1699 usb_kill_urb(dev->in_urb);
c46ee386
AAJ
1700 }
1701
6fbbdc16
SO
1702 rc = pn533_send_poll_frame(dev);
1703 if (rc)
1704 return;
c46ee386 1705
6fbbdc16
SO
1706 if (cur_mod->len == 0 && dev->poll_mod_count > 1)
1707 mod_timer(&dev->listen_timer, jiffies + PN533_LISTEN_TIME * HZ);
c46ee386 1708
6fbbdc16 1709 return;
c46ee386
AAJ
1710}
1711
fe7c5800
SO
1712static int pn533_start_poll(struct nfc_dev *nfc_dev,
1713 u32 im_protocols, u32 tm_protocols)
1714{
1715 struct pn533 *dev = nfc_get_drvdata(nfc_dev);
1716
1717 nfc_dev_dbg(&dev->interface->dev,
1718 "%s: im protocols 0x%x tm protocols 0x%x",
1719 __func__, im_protocols, tm_protocols);
1720
1721 if (dev->tgt_active_prot) {
1722 nfc_dev_err(&dev->interface->dev,
1723 "Cannot poll with a target already activated");
1724 return -EBUSY;
1725 }
1726
51ad304c
SO
1727 if (dev->tgt_mode) {
1728 nfc_dev_err(&dev->interface->dev,
1729 "Cannot poll while already being activated");
1730 return -EBUSY;
1731 }
1732
6fbbdc16
SO
1733 if (tm_protocols) {
1734 dev->gb = nfc_get_local_general_bytes(nfc_dev, &dev->gb_len);
1735 if (dev->gb == NULL)
1736 tm_protocols = 0;
1737 }
ad3823ce 1738
6fbbdc16
SO
1739 dev->poll_mod_curr = 0;
1740 pn533_poll_create_mod_list(dev, im_protocols, tm_protocols);
1741 dev->poll_protocols = im_protocols;
1742 dev->listen_protocols = tm_protocols;
ad3823ce 1743
6fbbdc16 1744 return pn533_send_poll_frame(dev);
fe7c5800
SO
1745}
1746
c46ee386
AAJ
1747static void pn533_stop_poll(struct nfc_dev *nfc_dev)
1748{
1749 struct pn533 *dev = nfc_get_drvdata(nfc_dev);
1750
1751 nfc_dev_dbg(&dev->interface->dev, "%s", __func__);
1752
6fbbdc16
SO
1753 del_timer(&dev->listen_timer);
1754
c46ee386 1755 if (!dev->poll_mod_count) {
6ca55372
WR
1756 nfc_dev_dbg(&dev->interface->dev,
1757 "Polling operation was not running");
c46ee386
AAJ
1758 return;
1759 }
1760
1761 /* An ack will cancel the last issued command (poll) */
1762 pn533_send_ack(dev, GFP_KERNEL);
1763
1764 /* prevent pn533_start_poll_complete to issue a new poll meanwhile */
1765 usb_kill_urb(dev->in_urb);
7c2a04a9
SO
1766
1767 pn533_poll_reset_mod_list(dev);
c46ee386
AAJ
1768}
1769
1770static int pn533_activate_target_nfcdep(struct pn533 *dev)
1771{
cb950d93 1772 struct pn533_cmd_activate_response *rsp;
541d920b 1773 u16 gt_len;
c46ee386
AAJ
1774 int rc;
1775
cb950d93
WR
1776 struct sk_buff *skb;
1777 struct sk_buff *resp;
c46ee386 1778
cb950d93 1779 nfc_dev_dbg(&dev->interface->dev, "%s", __func__);
c46ee386 1780
cb950d93
WR
1781 skb = pn533_alloc_skb(sizeof(u8) * 2); /*TG + Next*/
1782 if (!skb)
1783 return -ENOMEM;
c46ee386 1784
cb950d93
WR
1785 *skb_put(skb, sizeof(u8)) = 1; /* TG */
1786 *skb_put(skb, sizeof(u8)) = 0; /* Next */
c46ee386 1787
cb950d93
WR
1788 resp = pn533_send_cmd_sync(dev, PN533_CMD_IN_ATR, skb);
1789 if (IS_ERR(resp))
1790 return PTR_ERR(resp);
c46ee386 1791
37cf4fc6 1792 rsp = (struct pn533_cmd_activate_response *)resp->data;
cb950d93 1793 rc = rsp->status & PN533_CMD_RET_MASK;
c46ee386 1794 if (rc != PN533_CMD_RET_SUCCESS)
cb950d93 1795 dev_kfree_skb(resp);
c46ee386
AAJ
1796 return -EIO;
1797
541d920b 1798 /* ATR_RES general bytes are located at offset 16 */
cb950d93
WR
1799 gt_len = resp->len - 16;
1800 rc = nfc_set_remote_general_bytes(dev->nfc_dev, rsp->gt, gt_len);
541d920b 1801
cb950d93 1802 dev_kfree_skb(resp);
541d920b 1803 return rc;
c46ee386
AAJ
1804}
1805
90099433
EL
1806static int pn533_activate_target(struct nfc_dev *nfc_dev,
1807 struct nfc_target *target, u32 protocol)
c46ee386
AAJ
1808{
1809 struct pn533 *dev = nfc_get_drvdata(nfc_dev);
1810 int rc;
1811
1812 nfc_dev_dbg(&dev->interface->dev, "%s - protocol=%u", __func__,
1813 protocol);
1814
1815 if (dev->poll_mod_count) {
6ca55372
WR
1816 nfc_dev_err(&dev->interface->dev,
1817 "Cannot activate while polling");
c46ee386
AAJ
1818 return -EBUSY;
1819 }
1820
1821 if (dev->tgt_active_prot) {
6ca55372
WR
1822 nfc_dev_err(&dev->interface->dev,
1823 "There is already an active target");
c46ee386
AAJ
1824 return -EBUSY;
1825 }
1826
1827 if (!dev->tgt_available_prots) {
6ca55372
WR
1828 nfc_dev_err(&dev->interface->dev,
1829 "There is no available target to activate");
c46ee386
AAJ
1830 return -EINVAL;
1831 }
1832
1833 if (!(dev->tgt_available_prots & (1 << protocol))) {
6ca55372
WR
1834 nfc_dev_err(&dev->interface->dev,
1835 "Target doesn't support requested proto %u",
1836 protocol);
c46ee386
AAJ
1837 return -EINVAL;
1838 }
1839
1840 if (protocol == NFC_PROTO_NFC_DEP) {
1841 rc = pn533_activate_target_nfcdep(dev);
1842 if (rc) {
6ca55372
WR
1843 nfc_dev_err(&dev->interface->dev,
1844 "Activating target with DEP failed %d", rc);
c46ee386
AAJ
1845 return rc;
1846 }
1847 }
1848
1849 dev->tgt_active_prot = protocol;
1850 dev->tgt_available_prots = 0;
1851
1852 return 0;
1853}
1854
90099433
EL
1855static void pn533_deactivate_target(struct nfc_dev *nfc_dev,
1856 struct nfc_target *target)
c46ee386
AAJ
1857{
1858 struct pn533 *dev = nfc_get_drvdata(nfc_dev);
cb950d93
WR
1859
1860 struct sk_buff *skb;
1861 struct sk_buff *resp;
1862
c46ee386
AAJ
1863 int rc;
1864
1865 nfc_dev_dbg(&dev->interface->dev, "%s", __func__);
1866
1867 if (!dev->tgt_active_prot) {
1868 nfc_dev_err(&dev->interface->dev, "There is no active target");
1869 return;
1870 }
1871
1872 dev->tgt_active_prot = 0;
6ff73fd2
SO
1873 skb_queue_purge(&dev->resp_q);
1874
cb950d93
WR
1875 skb = pn533_alloc_skb(sizeof(u8));
1876 if (!skb)
1877 return;
c46ee386 1878
cb950d93 1879 *skb_put(skb, 1) = 1; /* TG*/
c46ee386 1880
cb950d93
WR
1881 resp = pn533_send_cmd_sync(dev, PN533_CMD_IN_RELEASE, skb);
1882 if (IS_ERR(resp))
c46ee386 1883 return;
c46ee386 1884
cb950d93 1885 rc = resp->data[0] & PN533_CMD_RET_MASK;
c46ee386 1886 if (rc != PN533_CMD_RET_SUCCESS)
6ca55372
WR
1887 nfc_dev_err(&dev->interface->dev,
1888 "Error 0x%x when releasing the target", rc);
c46ee386 1889
cb950d93 1890 dev_kfree_skb(resp);
c46ee386
AAJ
1891 return;
1892}
1893
361f3cb7
SO
1894
1895static int pn533_in_dep_link_up_complete(struct pn533 *dev, void *arg,
13003649 1896 struct sk_buff *resp)
361f3cb7 1897{
13003649 1898 struct pn533_cmd_jump_dep_response *rsp;
361f3cb7
SO
1899 u8 target_gt_len;
1900 int rc;
13003649 1901 u8 active = *(u8 *)arg;
70418e6e
WR
1902
1903 kfree(arg);
361f3cb7 1904
13003649
WR
1905 if (IS_ERR(resp))
1906 return PTR_ERR(resp);
361f3cb7
SO
1907
1908 if (dev->tgt_available_prots &&
1909 !(dev->tgt_available_prots & (1 << NFC_PROTO_NFC_DEP))) {
1910 nfc_dev_err(&dev->interface->dev,
1911 "The target does not support DEP");
13003649
WR
1912 rc = -EINVAL;
1913 goto error;
361f3cb7
SO
1914 }
1915
13003649
WR
1916 rsp = (struct pn533_cmd_jump_dep_response *)resp->data;
1917
1918 rc = rsp->status & PN533_CMD_RET_MASK;
361f3cb7
SO
1919 if (rc != PN533_CMD_RET_SUCCESS) {
1920 nfc_dev_err(&dev->interface->dev,
1921 "Bringing DEP link up failed %d", rc);
13003649 1922 goto error;
361f3cb7
SO
1923 }
1924
1925 if (!dev->tgt_available_prots) {
13003649
WR
1926 struct nfc_target nfc_target;
1927
361f3cb7
SO
1928 nfc_dev_dbg(&dev->interface->dev, "Creating new target");
1929
1930 nfc_target.supported_protocols = NFC_PROTO_NFC_DEP_MASK;
2fbabfa4 1931 nfc_target.nfcid1_len = 10;
13003649 1932 memcpy(nfc_target.nfcid1, rsp->nfcid3t, nfc_target.nfcid1_len);
361f3cb7
SO
1933 rc = nfc_targets_found(dev->nfc_dev, &nfc_target, 1);
1934 if (rc)
13003649 1935 goto error;
361f3cb7
SO
1936
1937 dev->tgt_available_prots = 0;
1938 }
1939
1940 dev->tgt_active_prot = NFC_PROTO_NFC_DEP;
1941
1942 /* ATR_RES general bytes are located at offset 17 */
13003649 1943 target_gt_len = resp->len - 17;
361f3cb7 1944 rc = nfc_set_remote_general_bytes(dev->nfc_dev,
13003649 1945 rsp->gt, target_gt_len);
361f3cb7
SO
1946 if (rc == 0)
1947 rc = nfc_dep_link_is_up(dev->nfc_dev,
13003649
WR
1948 dev->nfc_dev->targets[0].idx,
1949 !active, NFC_RF_INITIATOR);
361f3cb7 1950
13003649
WR
1951error:
1952 dev_kfree_skb(resp);
1953 return rc;
361f3cb7
SO
1954}
1955
41a8ec49
SO
1956static int pn533_mod_to_baud(struct pn533 *dev)
1957{
1958 switch (dev->poll_mod_curr) {
1959 case PN533_POLL_MOD_106KBPS_A:
1960 return 0;
1961 case PN533_POLL_MOD_212KBPS_FELICA:
1962 return 1;
1963 case PN533_POLL_MOD_424KBPS_FELICA:
1964 return 2;
1965 default:
1966 return -EINVAL;
1967 }
1968}
1969
d7f3345d 1970#define PASSIVE_DATA_LEN 5
90099433 1971static int pn533_dep_link_up(struct nfc_dev *nfc_dev, struct nfc_target *target,
37cf4fc6 1972 u8 comm_mode, u8 *gb, size_t gb_len)
361f3cb7
SO
1973{
1974 struct pn533 *dev = nfc_get_drvdata(nfc_dev);
13003649
WR
1975 struct sk_buff *skb;
1976 int rc, baud, skb_len;
1977 u8 *next, *arg;
1978
d7f3345d 1979 u8 passive_data[PASSIVE_DATA_LEN] = {0x00, 0xff, 0xff, 0x00, 0x3};
361f3cb7
SO
1980
1981 nfc_dev_dbg(&dev->interface->dev, "%s", __func__);
1982
361f3cb7
SO
1983 if (dev->poll_mod_count) {
1984 nfc_dev_err(&dev->interface->dev,
1985 "Cannot bring the DEP link up while polling");
1986 return -EBUSY;
1987 }
1988
1989 if (dev->tgt_active_prot) {
1990 nfc_dev_err(&dev->interface->dev,
1991 "There is already an active target");
1992 return -EBUSY;
1993 }
1994
41a8ec49
SO
1995 baud = pn533_mod_to_baud(dev);
1996 if (baud < 0) {
1997 nfc_dev_err(&dev->interface->dev,
1998 "Invalid curr modulation %d", dev->poll_mod_curr);
1999 return baud;
2000 }
2001
13003649 2002 skb_len = 3 + gb_len; /* ActPass + BR + Next */
d7f3345d 2003 if (comm_mode == NFC_COMM_PASSIVE)
13003649 2004 skb_len += PASSIVE_DATA_LEN;
d7f3345d 2005
13003649
WR
2006 skb = pn533_alloc_skb(skb_len);
2007 if (!skb)
361f3cb7
SO
2008 return -ENOMEM;
2009
13003649
WR
2010 *skb_put(skb, 1) = !comm_mode; /* ActPass */
2011 *skb_put(skb, 1) = baud; /* Baud rate */
2012
2013 next = skb_put(skb, 1); /* Next */
2014 *next = 0;
361f3cb7 2015
13003649
WR
2016 if (comm_mode == NFC_COMM_PASSIVE && baud > 0) {
2017 memcpy(skb_put(skb, PASSIVE_DATA_LEN), passive_data,
2018 PASSIVE_DATA_LEN);
2019 *next |= 1;
d7f3345d
SO
2020 }
2021
47807d3d 2022 if (gb != NULL && gb_len > 0) {
13003649
WR
2023 memcpy(skb_put(skb, gb_len), gb, gb_len);
2024 *next |= 4; /* We have some Gi */
361f3cb7 2025 } else {
13003649 2026 *next = 0;
361f3cb7
SO
2027 }
2028
13003649
WR
2029 arg = kmalloc(sizeof(*arg), GFP_KERNEL);
2030 if (!arg) {
2031 dev_kfree_skb(skb);
2032 return -ENOMEM;
2033 }
361f3cb7 2034
13003649 2035 *arg = !comm_mode;
361f3cb7 2036
13003649
WR
2037 rc = pn533_send_cmd_async(dev, PN533_CMD_IN_JUMP_FOR_DEP, skb,
2038 pn533_in_dep_link_up_complete, arg);
2039
2040 if (rc < 0) {
2041 dev_kfree_skb(skb);
2042 kfree(arg);
2043 }
361f3cb7
SO
2044
2045 return rc;
2046}
2047
2048static int pn533_dep_link_down(struct nfc_dev *nfc_dev)
2049{
6fbbdc16
SO
2050 struct pn533 *dev = nfc_get_drvdata(nfc_dev);
2051
2052 pn533_poll_reset_mod_list(dev);
2053
51ad304c
SO
2054 if (dev->tgt_mode || dev->tgt_active_prot) {
2055 pn533_send_ack(dev, GFP_KERNEL);
2056 usb_kill_urb(dev->in_urb);
2057 }
2058
2059 dev->tgt_active_prot = 0;
2060 dev->tgt_mode = 0;
2061
2062 skb_queue_purge(&dev->resp_q);
361f3cb7
SO
2063
2064 return 0;
2065}
2066
c46ee386 2067struct pn533_data_exchange_arg {
c46ee386
AAJ
2068 data_exchange_cb_t cb;
2069 void *cb_context;
2070};
2071
6ff73fd2
SO
2072static struct sk_buff *pn533_build_response(struct pn533 *dev)
2073{
2074 struct sk_buff *skb, *tmp, *t;
2075 unsigned int skb_len = 0, tmp_len = 0;
2076
2077 nfc_dev_dbg(&dev->interface->dev, "%s\n", __func__);
2078
2079 if (skb_queue_empty(&dev->resp_q))
2080 return NULL;
2081
2082 if (skb_queue_len(&dev->resp_q) == 1) {
2083 skb = skb_dequeue(&dev->resp_q);
2084 goto out;
2085 }
2086
2087 skb_queue_walk_safe(&dev->resp_q, tmp, t)
2088 skb_len += tmp->len;
2089
2090 nfc_dev_dbg(&dev->interface->dev, "%s total length %d\n",
2091 __func__, skb_len);
2092
2093 skb = alloc_skb(skb_len, GFP_KERNEL);
2094 if (skb == NULL)
2095 goto out;
2096
2097 skb_put(skb, skb_len);
2098
2099 skb_queue_walk_safe(&dev->resp_q, tmp, t) {
2100 memcpy(skb->data + tmp_len, tmp->data, tmp->len);
2101 tmp_len += tmp->len;
2102 }
2103
2104out:
2105 skb_queue_purge(&dev->resp_q);
2106
2107 return skb;
2108}
2109
c46ee386 2110static int pn533_data_exchange_complete(struct pn533 *dev, void *_arg,
b1e666f5 2111 struct sk_buff *resp)
c46ee386
AAJ
2112{
2113 struct pn533_data_exchange_arg *arg = _arg;
b1e666f5
WR
2114 struct sk_buff *skb;
2115 int rc = 0;
2116 u8 status, ret, mi;
c46ee386
AAJ
2117
2118 nfc_dev_dbg(&dev->interface->dev, "%s", __func__);
2119
b1e666f5
WR
2120 if (IS_ERR(resp)) {
2121 rc = PTR_ERR(resp);
2122 goto _error;
c46ee386
AAJ
2123 }
2124
b1e666f5
WR
2125 status = resp->data[0];
2126 ret = status & PN533_CMD_RET_MASK;
2127 mi = status & PN533_CMD_MI_MASK;
2128
2129 skb_pull(resp, sizeof(status));
c46ee386 2130
b1e666f5
WR
2131 if (ret != PN533_CMD_RET_SUCCESS) {
2132 nfc_dev_err(&dev->interface->dev,
2133 "PN533 reported error %d when exchanging data",
2134 ret);
2135 rc = -EIO;
c46ee386
AAJ
2136 goto error;
2137 }
2138
b1e666f5 2139 skb_queue_tail(&dev->resp_q, resp);
6ff73fd2 2140
b1e666f5
WR
2141 if (mi) {
2142 dev->cmd_complete_mi_arg = arg;
6ff73fd2
SO
2143 queue_work(dev->wq, &dev->mi_work);
2144 return -EINPROGRESS;
c46ee386
AAJ
2145 }
2146
6ff73fd2 2147 skb = pn533_build_response(dev);
b1e666f5 2148 if (!skb)
6ff73fd2 2149 goto error;
c46ee386 2150
6ff73fd2 2151 arg->cb(arg->cb_context, skb, 0);
c46ee386
AAJ
2152 kfree(arg);
2153 return 0;
2154
2155error:
b1e666f5
WR
2156 dev_kfree_skb(resp);
2157_error:
6ff73fd2 2158 skb_queue_purge(&dev->resp_q);
b1e666f5 2159 arg->cb(arg->cb_context, NULL, rc);
c46ee386 2160 kfree(arg);
b1e666f5 2161 return rc;
c46ee386
AAJ
2162}
2163
be9ae4ce
SO
2164static int pn533_transceive(struct nfc_dev *nfc_dev,
2165 struct nfc_target *target, struct sk_buff *skb,
2166 data_exchange_cb_t cb, void *cb_context)
c46ee386
AAJ
2167{
2168 struct pn533 *dev = nfc_get_drvdata(nfc_dev);
b1e666f5 2169 struct pn533_data_exchange_arg *arg = NULL;
c46ee386
AAJ
2170 int rc;
2171
2172 nfc_dev_dbg(&dev->interface->dev, "%s", __func__);
2173
b1e666f5
WR
2174 if (skb->len > PN533_CMD_DATAEXCH_DATA_MAXLEN) {
2175 /* TODO: Implement support to multi-part data exchange */
2176 nfc_dev_err(&dev->interface->dev,
2177 "Data length greater than the max allowed: %d",
2178 PN533_CMD_DATAEXCH_DATA_MAXLEN);
2179 rc = -ENOSYS;
2180 goto error;
2181 }
2182
c46ee386 2183 if (!dev->tgt_active_prot) {
6ca55372
WR
2184 nfc_dev_err(&dev->interface->dev,
2185 "Can't exchange data if there is no active target");
c46ee386
AAJ
2186 rc = -EINVAL;
2187 goto error;
2188 }
2189
b1e666f5 2190 arg = kmalloc(sizeof(*arg), GFP_KERNEL);
c46ee386
AAJ
2191 if (!arg) {
2192 rc = -ENOMEM;
b1e666f5 2193 goto error;
c46ee386
AAJ
2194 }
2195
c46ee386
AAJ
2196 arg->cb = cb;
2197 arg->cb_context = cb_context;
2198
b1e666f5
WR
2199 switch (dev->device_type) {
2200 case PN533_DEVICE_PASORI:
2201 if (dev->tgt_active_prot == NFC_PROTO_FELICA) {
2202 rc = pn533_send_data_async(dev, PN533_CMD_IN_COMM_THRU,
2203 skb,
2204 pn533_data_exchange_complete,
2205 arg);
2206
2207 break;
2208 }
2209 default:
2210 *skb_push(skb, sizeof(u8)) = 1; /*TG*/
2211
2212 rc = pn533_send_data_async(dev, PN533_CMD_IN_DATA_EXCHANGE,
2213 skb, pn533_data_exchange_complete,
2214 arg);
2215
2216 break;
c46ee386
AAJ
2217 }
2218
b1e666f5
WR
2219 if (rc < 0) /* rc from send_async */
2220 goto error;
2221
c46ee386
AAJ
2222 return 0;
2223
c46ee386 2224error:
b1e666f5
WR
2225 kfree(arg);
2226 dev_kfree_skb(skb);
c46ee386
AAJ
2227 return rc;
2228}
2229
dadb06f2 2230static int pn533_tm_send_complete(struct pn533 *dev, void *arg,
e4878823 2231 struct sk_buff *resp)
dadb06f2 2232{
e4878823 2233 u8 status;
5b412fd1 2234
dadb06f2
SO
2235 nfc_dev_dbg(&dev->interface->dev, "%s", __func__);
2236
e4878823
WR
2237 if (IS_ERR(resp))
2238 return PTR_ERR(resp);
5b412fd1 2239
e4878823 2240 status = resp->data[0];
dadb06f2 2241
e4878823 2242 dev_kfree_skb(resp);
dadb06f2 2243
e4878823 2244 if (status != 0) {
dadb06f2
SO
2245 nfc_tm_deactivated(dev->nfc_dev);
2246
51ad304c
SO
2247 dev->tgt_mode = 0;
2248
dadb06f2
SO
2249 return 0;
2250 }
2251
2252 queue_work(dev->wq, &dev->tg_work);
2253
2254 return 0;
2255}
2256
2257static int pn533_tm_send(struct nfc_dev *nfc_dev, struct sk_buff *skb)
2258{
2259 struct pn533 *dev = nfc_get_drvdata(nfc_dev);
dadb06f2
SO
2260 int rc;
2261
2262 nfc_dev_dbg(&dev->interface->dev, "%s", __func__);
2263
e4878823 2264 if (skb->len > PN533_CMD_DATAEXCH_DATA_MAXLEN) {
dadb06f2 2265 nfc_dev_err(&dev->interface->dev,
e4878823
WR
2266 "Data length greater than the max allowed: %d",
2267 PN533_CMD_DATAEXCH_DATA_MAXLEN);
2268 return -ENOSYS;
dadb06f2
SO
2269 }
2270
e4878823
WR
2271 rc = pn533_send_data_async(dev, PN533_CMD_TG_SET_DATA, skb,
2272 pn533_tm_send_complete, NULL);
2273 if (rc < 0)
2274 dev_kfree_skb(skb);
dadb06f2
SO
2275
2276 return rc;
2277}
2278
6ff73fd2
SO
2279static void pn533_wq_mi_recv(struct work_struct *work)
2280{
2281 struct pn533 *dev = container_of(work, struct pn533, mi_work);
b1e666f5
WR
2282
2283 struct sk_buff *skb;
6ff73fd2
SO
2284 int rc;
2285
2286 nfc_dev_dbg(&dev->interface->dev, "%s", __func__);
2287
b1e666f5
WR
2288 skb = pn533_alloc_skb(PN533_CMD_DATAEXCH_HEAD_LEN);
2289 if (!skb)
2290 goto error;
6ff73fd2 2291
b1e666f5
WR
2292 switch (dev->device_type) {
2293 case PN533_DEVICE_PASORI:
2294 if (dev->tgt_active_prot == NFC_PROTO_FELICA) {
2295 rc = pn533_send_cmd_direct_async(dev,
2296 PN533_CMD_IN_COMM_THRU,
2297 skb,
2298 pn533_data_exchange_complete,
2299 dev->cmd_complete_mi_arg);
6ff73fd2 2300
b1e666f5
WR
2301 break;
2302 }
2303 default:
2304 *skb_put(skb, sizeof(u8)) = 1; /*TG*/
6ff73fd2 2305
b1e666f5
WR
2306 rc = pn533_send_cmd_direct_async(dev,
2307 PN533_CMD_IN_DATA_EXCHANGE,
2308 skb,
2309 pn533_data_exchange_complete,
2310 dev->cmd_complete_mi_arg);
b1bb290a 2311
b1e666f5 2312 break;
6ff73fd2
SO
2313 }
2314
b1e666f5 2315 if (rc == 0) /* success */
6ff73fd2
SO
2316 return;
2317
b1e666f5
WR
2318 nfc_dev_err(&dev->interface->dev,
2319 "Error %d when trying to perform data_exchange", rc);
6ff73fd2 2320
b1e666f5
WR
2321 dev_kfree_skb(skb);
2322 kfree(dev->cmd_complete_arg);
6ff73fd2 2323
b1e666f5 2324error:
6ff73fd2 2325 pn533_send_ack(dev, GFP_KERNEL);
5d50b364 2326 queue_work(dev->wq, &dev->cmd_work);
6ff73fd2
SO
2327}
2328
c46ee386
AAJ
2329static int pn533_set_configuration(struct pn533 *dev, u8 cfgitem, u8 *cfgdata,
2330 u8 cfgdata_len)
2331{
cb950d93
WR
2332 struct sk_buff *skb;
2333 struct sk_buff *resp;
2334
2335 int skb_len;
c46ee386
AAJ
2336
2337 nfc_dev_dbg(&dev->interface->dev, "%s", __func__);
2338
cb950d93 2339 skb_len = sizeof(cfgitem) + cfgdata_len; /* cfgitem + cfgdata */
c46ee386 2340
cb950d93
WR
2341 skb = pn533_alloc_skb(skb_len);
2342 if (!skb)
2343 return -ENOMEM;
c46ee386 2344
cb950d93
WR
2345 *skb_put(skb, sizeof(cfgitem)) = cfgitem;
2346 memcpy(skb_put(skb, cfgdata_len), cfgdata, cfgdata_len);
c46ee386 2347
cb950d93
WR
2348 resp = pn533_send_cmd_sync(dev, PN533_CMD_RF_CONFIGURATION, skb);
2349 if (IS_ERR(resp))
2350 return PTR_ERR(resp);
c46ee386 2351
cb950d93
WR
2352 dev_kfree_skb(resp);
2353 return 0;
2354}
2355
2356static int pn533_get_firmware_version(struct pn533 *dev,
2357 struct pn533_fw_version *fv)
2358{
2359 struct sk_buff *skb;
2360 struct sk_buff *resp;
2361
2362 skb = pn533_alloc_skb(0);
2363 if (!skb)
2364 return -ENOMEM;
2365
2366 resp = pn533_send_cmd_sync(dev, PN533_CMD_GET_FIRMWARE_VERSION, skb);
2367 if (IS_ERR(resp))
2368 return PTR_ERR(resp);
2369
2370 fv->ic = resp->data[0];
2371 fv->ver = resp->data[1];
2372 fv->rev = resp->data[2];
2373 fv->support = resp->data[3];
2374
2375 dev_kfree_skb(resp);
2376 return 0;
c46ee386
AAJ
2377}
2378
5c7b0531
SO
2379static int pn533_fw_reset(struct pn533 *dev)
2380{
cb950d93
WR
2381 struct sk_buff *skb;
2382 struct sk_buff *resp;
5c7b0531
SO
2383
2384 nfc_dev_dbg(&dev->interface->dev, "%s", __func__);
2385
cb950d93
WR
2386 skb = pn533_alloc_skb(sizeof(u8));
2387 if (!skb)
2388 return -ENOMEM;
5c7b0531 2389
cb950d93 2390 *skb_put(skb, sizeof(u8)) = 0x1;
5c7b0531 2391
cb950d93
WR
2392 resp = pn533_send_cmd_sync(dev, 0x18, skb);
2393 if (IS_ERR(resp))
2394 return PTR_ERR(resp);
5c7b0531 2395
cb950d93 2396 dev_kfree_skb(resp);
5c7b0531 2397
94c5c156 2398 return 0;
5c7b0531
SO
2399}
2400
2401static struct nfc_ops pn533_nfc_ops = {
8b3fe7b5
IE
2402 .dev_up = NULL,
2403 .dev_down = NULL,
361f3cb7
SO
2404 .dep_link_up = pn533_dep_link_up,
2405 .dep_link_down = pn533_dep_link_down,
c46ee386
AAJ
2406 .start_poll = pn533_start_poll,
2407 .stop_poll = pn533_stop_poll,
2408 .activate_target = pn533_activate_target,
2409 .deactivate_target = pn533_deactivate_target,
be9ae4ce 2410 .im_transceive = pn533_transceive,
dadb06f2 2411 .tm_send = pn533_tm_send,
c46ee386
AAJ
2412};
2413
5c7b0531
SO
2414static int pn533_setup(struct pn533 *dev)
2415{
2416 struct pn533_config_max_retries max_retries;
2417 struct pn533_config_timing timing;
2418 u8 pasori_cfg[3] = {0x08, 0x01, 0x08};
2419 int rc;
2420
2421 switch (dev->device_type) {
2422 case PN533_DEVICE_STD:
2423 max_retries.mx_rty_atr = PN533_CONFIG_MAX_RETRIES_ENDLESS;
2424 max_retries.mx_rty_psl = 2;
2425 max_retries.mx_rty_passive_act =
2426 PN533_CONFIG_MAX_RETRIES_NO_RETRY;
2427
2428 timing.rfu = PN533_CONFIG_TIMING_102;
2429 timing.atr_res_timeout = PN533_CONFIG_TIMING_204;
2430 timing.dep_timeout = PN533_CONFIG_TIMING_409;
2431
2432 break;
2433
2434 case PN533_DEVICE_PASORI:
2435 max_retries.mx_rty_atr = 0x2;
2436 max_retries.mx_rty_psl = 0x1;
2437 max_retries.mx_rty_passive_act =
2438 PN533_CONFIG_MAX_RETRIES_NO_RETRY;
2439
2440 timing.rfu = PN533_CONFIG_TIMING_102;
2441 timing.atr_res_timeout = PN533_CONFIG_TIMING_102;
2442 timing.dep_timeout = PN533_CONFIG_TIMING_204;
2443
2444 break;
2445
2446 default:
2447 nfc_dev_err(&dev->interface->dev, "Unknown device type %d\n",
2448 dev->device_type);
2449 return -EINVAL;
2450 }
2451
2452 rc = pn533_set_configuration(dev, PN533_CFGITEM_MAX_RETRIES,
2453 (u8 *)&max_retries, sizeof(max_retries));
2454 if (rc) {
2455 nfc_dev_err(&dev->interface->dev,
2456 "Error on setting MAX_RETRIES config");
2457 return rc;
2458 }
2459
2460
2461 rc = pn533_set_configuration(dev, PN533_CFGITEM_TIMING,
2462 (u8 *)&timing, sizeof(timing));
2463 if (rc) {
2464 nfc_dev_err(&dev->interface->dev,
2465 "Error on setting RF timings");
2466 return rc;
2467 }
2468
2469 switch (dev->device_type) {
2470 case PN533_DEVICE_STD:
2471 break;
2472
2473 case PN533_DEVICE_PASORI:
2474 pn533_fw_reset(dev);
2475
2476 rc = pn533_set_configuration(dev, PN533_CFGITEM_PASORI,
2477 pasori_cfg, 3);
2478 if (rc) {
2479 nfc_dev_err(&dev->interface->dev,
2480 "Error while settings PASORI config");
2481 return rc;
2482 }
2483
2484 pn533_fw_reset(dev);
2485
2486 break;
2487 }
2488
2489 return 0;
2490}
2491
c46ee386
AAJ
2492static int pn533_probe(struct usb_interface *interface,
2493 const struct usb_device_id *id)
2494{
cb950d93 2495 struct pn533_fw_version fw_ver;
c46ee386
AAJ
2496 struct pn533 *dev;
2497 struct usb_host_interface *iface_desc;
2498 struct usb_endpoint_descriptor *endpoint;
c46ee386
AAJ
2499 int in_endpoint = 0;
2500 int out_endpoint = 0;
2501 int rc = -ENOMEM;
2502 int i;
2503 u32 protocols;
2504
2505 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
2506 if (!dev)
2507 return -ENOMEM;
2508
2509 dev->udev = usb_get_dev(interface_to_usbdev(interface));
2510 dev->interface = interface;
0201ed03 2511 mutex_init(&dev->cmd_lock);
c46ee386
AAJ
2512
2513 iface_desc = interface->cur_altsetting;
2514 for (i = 0; i < iface_desc->desc.bNumEndpoints; ++i) {
2515 endpoint = &iface_desc->endpoint[i].desc;
2516
8d25ca79 2517 if (!in_endpoint && usb_endpoint_is_bulk_in(endpoint))
c46ee386 2518 in_endpoint = endpoint->bEndpointAddress;
c46ee386 2519
8d25ca79 2520 if (!out_endpoint && usb_endpoint_is_bulk_out(endpoint))
c46ee386 2521 out_endpoint = endpoint->bEndpointAddress;
c46ee386
AAJ
2522 }
2523
2524 if (!in_endpoint || !out_endpoint) {
6ca55372
WR
2525 nfc_dev_err(&interface->dev,
2526 "Could not find bulk-in or bulk-out endpoint");
c46ee386
AAJ
2527 rc = -ENODEV;
2528 goto error;
2529 }
2530
82dec34d 2531 dev->in_frame = kmalloc(PN533_NORMAL_FRAME_MAX_LEN, GFP_KERNEL);
c46ee386 2532 dev->in_urb = usb_alloc_urb(0, GFP_KERNEL);
82dec34d 2533 dev->out_frame = kmalloc(PN533_NORMAL_FRAME_MAX_LEN, GFP_KERNEL);
c46ee386
AAJ
2534 dev->out_urb = usb_alloc_urb(0, GFP_KERNEL);
2535
2536 if (!dev->in_frame || !dev->out_frame ||
2537 !dev->in_urb || !dev->out_urb)
2538 goto error;
2539
2540 usb_fill_bulk_urb(dev->in_urb, dev->udev,
2541 usb_rcvbulkpipe(dev->udev, in_endpoint),
2542 NULL, 0, NULL, dev);
2543 usb_fill_bulk_urb(dev->out_urb, dev->udev,
2544 usb_sndbulkpipe(dev->udev, out_endpoint),
2545 NULL, 0,
2546 pn533_send_complete, dev);
2547
5d50b364
SO
2548 INIT_WORK(&dev->cmd_work, pn533_wq_cmd);
2549 INIT_WORK(&dev->cmd_complete_work, pn533_wq_cmd_complete);
6ff73fd2 2550 INIT_WORK(&dev->mi_work, pn533_wq_mi_recv);
103b34cf 2551 INIT_WORK(&dev->tg_work, pn533_wq_tg_get_data);
6fbbdc16 2552 INIT_WORK(&dev->poll_work, pn533_wq_poll);
58637c9b 2553 dev->wq = alloc_ordered_workqueue("pn533", 0);
4849f85e
SO
2554 if (dev->wq == NULL)
2555 goto error;
c46ee386 2556
6fbbdc16
SO
2557 init_timer(&dev->listen_timer);
2558 dev->listen_timer.data = (unsigned long) dev;
2559 dev->listen_timer.function = pn533_listen_mode_timer;
2560
6ff73fd2
SO
2561 skb_queue_head_init(&dev->resp_q);
2562
5d50b364
SO
2563 INIT_LIST_HEAD(&dev->cmd_queue);
2564
c46ee386
AAJ
2565 usb_set_intfdata(interface, dev);
2566
cb950d93
WR
2567 memset(&fw_ver, 0, sizeof(fw_ver));
2568 rc = pn533_get_firmware_version(dev, &fw_ver);
2569 if (rc < 0)
4849f85e 2570 goto destroy_wq;
c46ee386 2571
cb950d93
WR
2572 nfc_dev_info(&dev->interface->dev,
2573 "NXP PN533 firmware ver %d.%d now attached",
2574 fw_ver.ver, fw_ver.rev);
c46ee386 2575
5c7b0531
SO
2576 dev->device_type = id->driver_info;
2577 switch (dev->device_type) {
2578 case PN533_DEVICE_STD:
2579 protocols = PN533_ALL_PROTOCOLS;
2580 break;
2581
2582 case PN533_DEVICE_PASORI:
2583 protocols = PN533_NO_TYPE_B_PROTOCOLS;
2584 break;
2585
2586 default:
2587 nfc_dev_err(&dev->interface->dev, "Unknown device type %d\n",
2588 dev->device_type);
2589 rc = -EINVAL;
2590 goto destroy_wq;
2591 }
c46ee386 2592
e8753043 2593 dev->nfc_dev = nfc_allocate_device(&pn533_nfc_ops, protocols,
b1bb290a 2594 PN533_FRAME_HEADER_LEN +
e8753043 2595 PN533_CMD_DATAEXCH_HEAD_LEN,
b1bb290a 2596 PN533_FRAME_TAIL_LEN);
c46ee386 2597 if (!dev->nfc_dev)
4849f85e 2598 goto destroy_wq;
c46ee386
AAJ
2599
2600 nfc_set_parent_dev(dev->nfc_dev, &interface->dev);
2601 nfc_set_drvdata(dev->nfc_dev, dev);
2602
2603 rc = nfc_register_device(dev->nfc_dev);
2604 if (rc)
2605 goto free_nfc_dev;
2606
5c7b0531
SO
2607 rc = pn533_setup(dev);
2608 if (rc)
34a85bfc 2609 goto unregister_nfc_dev;
34a85bfc 2610
c46ee386
AAJ
2611 return 0;
2612
9f2f8ba1
SO
2613unregister_nfc_dev:
2614 nfc_unregister_device(dev->nfc_dev);
2615
c46ee386
AAJ
2616free_nfc_dev:
2617 nfc_free_device(dev->nfc_dev);
9f2f8ba1 2618
4849f85e
SO
2619destroy_wq:
2620 destroy_workqueue(dev->wq);
c46ee386
AAJ
2621error:
2622 kfree(dev->in_frame);
2623 usb_free_urb(dev->in_urb);
2624 kfree(dev->out_frame);
2625 usb_free_urb(dev->out_urb);
2626 kfree(dev);
2627 return rc;
2628}
2629
2630static void pn533_disconnect(struct usb_interface *interface)
2631{
2632 struct pn533 *dev;
5d50b364 2633 struct pn533_cmd *cmd, *n;
c46ee386
AAJ
2634
2635 dev = usb_get_intfdata(interface);
2636 usb_set_intfdata(interface, NULL);
2637
2638 nfc_unregister_device(dev->nfc_dev);
2639 nfc_free_device(dev->nfc_dev);
2640
2641 usb_kill_urb(dev->in_urb);
2642 usb_kill_urb(dev->out_urb);
2643
4849f85e 2644 destroy_workqueue(dev->wq);
c46ee386 2645
6ff73fd2
SO
2646 skb_queue_purge(&dev->resp_q);
2647
6fbbdc16
SO
2648 del_timer(&dev->listen_timer);
2649
5d50b364
SO
2650 list_for_each_entry_safe(cmd, n, &dev->cmd_queue, queue) {
2651 list_del(&cmd->queue);
2652 kfree(cmd);
2653 }
2654
c46ee386
AAJ
2655 kfree(dev->in_frame);
2656 usb_free_urb(dev->in_urb);
2657 kfree(dev->out_frame);
2658 usb_free_urb(dev->out_urb);
2659 kfree(dev);
2660
276556db 2661 nfc_dev_info(&interface->dev, "NXP PN533 NFC device disconnected");
c46ee386
AAJ
2662}
2663
2664static struct usb_driver pn533_driver = {
2665 .name = "pn533",
2666 .probe = pn533_probe,
2667 .disconnect = pn533_disconnect,
2668 .id_table = pn533_table,
2669};
2670
fe748483 2671module_usb_driver(pn533_driver);
c46ee386
AAJ
2672
2673MODULE_AUTHOR("Lauro Ramos Venancio <lauro.venancio@openbossa.org>,"
2674 " Aloisio Almeida Jr <aloisio.almeida@openbossa.org>");
2675MODULE_DESCRIPTION("PN533 usb driver ver " VERSION);
2676MODULE_VERSION(VERSION);
2677MODULE_LICENSE("GPL");
This page took 0.329626 seconds and 5 git commands to generate.