2 * I2C Link Layer for PN544 HCI based Driver
4 * Copyright (C) 2012 Intel Corporation. All rights reserved.
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms and conditions of the GNU General Public License,
8 * version 2, as published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the
17 * Free Software Foundation, Inc.,
18 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
23 #include <linux/crc-ccitt.h>
24 #include <linux/module.h>
25 #include <linux/i2c.h>
26 #include <linux/gpio.h>
27 #include <linux/miscdevice.h>
28 #include <linux/interrupt.h>
29 #include <linux/delay.h>
30 #include <linux/nfc.h>
31 #include <linux/firmware.h>
32 #include <linux/unaligned/access_ok.h>
33 #include <linux/platform_data/pn544.h>
35 #include <net/nfc/hci.h>
36 #include <net/nfc/llc.h>
37 #include <net/nfc/nfc.h>
41 #define PN544_I2C_FRAME_HEADROOM 1
42 #define PN544_I2C_FRAME_TAILROOM 2
44 /* framing in HCI mode */
45 #define PN544_HCI_I2C_LLC_LEN 1
46 #define PN544_HCI_I2C_LLC_CRC 2
47 #define PN544_HCI_I2C_LLC_LEN_CRC (PN544_HCI_I2C_LLC_LEN + \
48 PN544_HCI_I2C_LLC_CRC)
49 #define PN544_HCI_I2C_LLC_MIN_SIZE (1 + PN544_HCI_I2C_LLC_LEN_CRC)
50 #define PN544_HCI_I2C_LLC_MAX_PAYLOAD 29
51 #define PN544_HCI_I2C_LLC_MAX_SIZE (PN544_HCI_I2C_LLC_LEN_CRC + 1 + \
52 PN544_HCI_I2C_LLC_MAX_PAYLOAD)
54 static struct i2c_device_id pn544_hci_i2c_id_table
[] = {
59 MODULE_DEVICE_TABLE(i2c
, pn544_hci_i2c_id_table
);
61 #define PN544_HCI_I2C_DRIVER_NAME "pn544_hci_i2c"
63 #define PN544_FW_CMD_WRITE 0x08
64 #define PN544_FW_CMD_CHECK 0x06
66 struct pn544_i2c_fw_frame_write
{
74 struct pn544_i2c_fw_frame_check
{
82 struct pn544_i2c_fw_frame_response
{
87 struct pn544_i2c_fw_blob
{
93 #define PN544_FW_CMD_RESULT_TIMEOUT 0x01
94 #define PN544_FW_CMD_RESULT_BAD_CRC 0x02
95 #define PN544_FW_CMD_RESULT_ACCESS_DENIED 0x08
96 #define PN544_FW_CMD_RESULT_PROTOCOL_ERROR 0x0B
97 #define PN544_FW_CMD_RESULT_INVALID_PARAMETER 0x11
98 #define PN544_FW_CMD_RESULT_INVALID_LENGTH 0x18
99 #define PN544_FW_CMD_RESULT_WRITE_FAILED 0x74
101 #define MIN(X, Y) ((X) < (Y) ? (X) : (Y))
103 #define PN544_FW_WRITE_BUFFER_MAX_LEN 0x9f7
104 #define PN544_FW_I2C_MAX_PAYLOAD PN544_HCI_I2C_LLC_MAX_SIZE
105 #define PN544_FW_I2C_WRITE_FRAME_HEADER_LEN 8
106 #define PN544_FW_I2C_WRITE_DATA_MAX_LEN MIN((PN544_FW_I2C_MAX_PAYLOAD -\
107 PN544_FW_I2C_WRITE_FRAME_HEADER_LEN),\
108 PN544_FW_WRITE_BUFFER_MAX_LEN)
110 #define FW_WORK_STATE_IDLE 1
111 #define FW_WORK_STATE_START 2
112 #define FW_WORK_STATE_WAIT_WRITE_ANSWER 3
113 #define FW_WORK_STATE_WAIT_CHECK_ANSWER 4
115 struct pn544_i2c_phy
{
116 struct i2c_client
*i2c_dev
;
117 struct nfc_hci_dev
*hdev
;
119 unsigned int gpio_en
;
120 unsigned int gpio_irq
;
121 unsigned int gpio_fw
;
122 unsigned int en_polarity
;
124 struct work_struct fw_work
;
126 char firmware_name
[NFC_FIRMWARE_NAME_MAXSIZE
+ 1];
127 const struct firmware
*fw
;
128 u32 fw_blob_dest_addr
;
130 const u8
*fw_blob_data
;
138 * < 0 if hardware error occured (e.g. i2c err)
139 * and prevents normal operation.
143 #define I2C_DUMP_SKB(info, skb) \
145 pr_debug("%s:\n", info); \
146 print_hex_dump(KERN_DEBUG, "i2c: ", DUMP_PREFIX_OFFSET, \
147 16, 1, (skb)->data, (skb)->len, 0); \
150 static void pn544_hci_i2c_platform_init(struct pn544_i2c_phy
*phy
)
152 int polarity
, retry
, ret
;
153 char rset_cmd
[] = { 0x05, 0xF9, 0x04, 0x00, 0xC3, 0xE5 };
154 int count
= sizeof(rset_cmd
);
156 nfc_info(&phy
->i2c_dev
->dev
, "Detecting nfc_en polarity\n");
158 /* Disable fw download */
159 gpio_set_value(phy
->gpio_fw
, 0);
161 for (polarity
= 0; polarity
< 2; polarity
++) {
162 phy
->en_polarity
= polarity
;
166 gpio_set_value(phy
->gpio_en
, !phy
->en_polarity
);
167 usleep_range(10000, 15000);
170 gpio_set_value(phy
->gpio_en
, phy
->en_polarity
);
171 usleep_range(10000, 15000);
174 dev_dbg(&phy
->i2c_dev
->dev
, "Sending reset cmd\n");
175 ret
= i2c_master_send(phy
->i2c_dev
, rset_cmd
, count
);
177 nfc_info(&phy
->i2c_dev
->dev
,
178 "nfc_en polarity : active %s\n",
179 (polarity
== 0 ? "low" : "high"));
185 nfc_err(&phy
->i2c_dev
->dev
,
186 "Could not detect nfc_en polarity, fallback to active high\n");
189 gpio_set_value(phy
->gpio_en
, !phy
->en_polarity
);
192 static void pn544_hci_i2c_enable_mode(struct pn544_i2c_phy
*phy
, int run_mode
)
194 gpio_set_value(phy
->gpio_fw
, run_mode
== PN544_FW_MODE
? 1 : 0);
195 gpio_set_value(phy
->gpio_en
, phy
->en_polarity
);
196 usleep_range(10000, 15000);
198 phy
->run_mode
= run_mode
;
201 static int pn544_hci_i2c_enable(void *phy_id
)
203 struct pn544_i2c_phy
*phy
= phy_id
;
205 pr_info("%s\n", __func__
);
207 pn544_hci_i2c_enable_mode(phy
, PN544_HCI_MODE
);
214 static void pn544_hci_i2c_disable(void *phy_id
)
216 struct pn544_i2c_phy
*phy
= phy_id
;
218 gpio_set_value(phy
->gpio_fw
, 0);
219 gpio_set_value(phy
->gpio_en
, !phy
->en_polarity
);
220 usleep_range(10000, 15000);
222 gpio_set_value(phy
->gpio_en
, phy
->en_polarity
);
223 usleep_range(10000, 15000);
225 gpio_set_value(phy
->gpio_en
, !phy
->en_polarity
);
226 usleep_range(10000, 15000);
231 static void pn544_hci_i2c_add_len_crc(struct sk_buff
*skb
)
237 *skb_push(skb
, 1) = len
;
239 crc
= crc_ccitt(0xffff, skb
->data
, skb
->len
);
241 *skb_put(skb
, 1) = crc
& 0xff;
242 *skb_put(skb
, 1) = crc
>> 8;
245 static void pn544_hci_i2c_remove_len_crc(struct sk_buff
*skb
)
247 skb_pull(skb
, PN544_I2C_FRAME_HEADROOM
);
248 skb_trim(skb
, PN544_I2C_FRAME_TAILROOM
);
252 * Writing a frame must not return the number of written bytes.
253 * It must return either zero for success, or <0 for error.
254 * In addition, it must not alter the skb
256 static int pn544_hci_i2c_write(void *phy_id
, struct sk_buff
*skb
)
259 struct pn544_i2c_phy
*phy
= phy_id
;
260 struct i2c_client
*client
= phy
->i2c_dev
;
262 if (phy
->hard_fault
!= 0)
263 return phy
->hard_fault
;
265 usleep_range(3000, 6000);
267 pn544_hci_i2c_add_len_crc(skb
);
269 I2C_DUMP_SKB("i2c frame written", skb
);
271 r
= i2c_master_send(client
, skb
->data
, skb
->len
);
273 if (r
== -EREMOTEIO
) { /* Retry, chip was in standby */
274 usleep_range(6000, 10000);
275 r
= i2c_master_send(client
, skb
->data
, skb
->len
);
285 pn544_hci_i2c_remove_len_crc(skb
);
290 static int check_crc(u8
*buf
, int buflen
)
296 crc
= crc_ccitt(0xffff, buf
, len
- 2);
299 if (buf
[len
- 2] != (crc
& 0xff) || buf
[len
- 1] != (crc
>> 8)) {
300 pr_err("CRC error 0x%x != 0x%x 0x%x\n",
301 crc
, buf
[len
- 1], buf
[len
- 2]);
302 pr_info("%s: BAD CRC\n", __func__
);
303 print_hex_dump(KERN_DEBUG
, "crc: ", DUMP_PREFIX_NONE
,
304 16, 2, buf
, buflen
, false);
311 * Reads an shdlc frame and returns it in a newly allocated sk_buff. Guarantees
312 * that i2c bus will be flushed and that next read will start on a new frame.
313 * returned skb contains only LLC header and payload.
315 * -EREMOTEIO : i2c read error (fatal)
316 * -EBADMSG : frame was incorrect and discarded
317 * -ENOMEM : cannot allocate skb, frame dropped
319 static int pn544_hci_i2c_read(struct pn544_i2c_phy
*phy
, struct sk_buff
**skb
)
323 u8 tmp
[PN544_HCI_I2C_LLC_MAX_SIZE
- 1];
324 struct i2c_client
*client
= phy
->i2c_dev
;
326 r
= i2c_master_recv(client
, &len
, 1);
328 nfc_err(&client
->dev
, "cannot read len byte\n");
332 if ((len
< (PN544_HCI_I2C_LLC_MIN_SIZE
- 1)) ||
333 (len
> (PN544_HCI_I2C_LLC_MAX_SIZE
- 1))) {
334 nfc_err(&client
->dev
, "invalid len byte\n");
339 *skb
= alloc_skb(1 + len
, GFP_KERNEL
);
345 *skb_put(*skb
, 1) = len
;
347 r
= i2c_master_recv(client
, skb_put(*skb
, len
), len
);
353 I2C_DUMP_SKB("i2c frame read", *skb
);
355 r
= check_crc((*skb
)->data
, (*skb
)->len
);
363 skb_trim(*skb
, (*skb
)->len
- 2);
365 usleep_range(3000, 6000);
370 if (i2c_master_recv(client
, tmp
, sizeof(tmp
)) < 0)
373 usleep_range(3000, 6000);
378 static int pn544_hci_i2c_fw_read_status(struct pn544_i2c_phy
*phy
)
381 struct pn544_i2c_fw_frame_response response
;
382 struct i2c_client
*client
= phy
->i2c_dev
;
384 r
= i2c_master_recv(client
, (char *) &response
, sizeof(response
));
385 if (r
!= sizeof(response
)) {
386 nfc_err(&client
->dev
, "cannot read fw status\n");
390 usleep_range(3000, 6000);
392 switch (response
.status
) {
395 case PN544_FW_CMD_RESULT_TIMEOUT
:
397 case PN544_FW_CMD_RESULT_BAD_CRC
:
399 case PN544_FW_CMD_RESULT_ACCESS_DENIED
:
401 case PN544_FW_CMD_RESULT_PROTOCOL_ERROR
:
403 case PN544_FW_CMD_RESULT_INVALID_PARAMETER
:
405 case PN544_FW_CMD_RESULT_INVALID_LENGTH
:
407 case PN544_FW_CMD_RESULT_WRITE_FAILED
:
415 * Reads an shdlc frame from the chip. This is not as straightforward as it
416 * seems. There are cases where we could loose the frame start synchronization.
417 * The frame format is len-data-crc, and corruption can occur anywhere while
418 * transiting on i2c bus, such that we could read an invalid len.
419 * In order to recover synchronization with the next frame, we must be sure
420 * to read the real amount of data without using the len byte. We do this by
421 * assuming the following:
422 * - the chip will always present only one single complete frame on the bus
423 * before triggering the interrupt
424 * - the chip will not present a new frame until we have completely read
425 * the previous one (or until we have handled the interrupt).
426 * The tricky case is when we read a corrupted len that is less than the real
427 * len. We must detect this here in order to determine that we need to flush
428 * the bus. This is the reason why we check the crc here.
430 static irqreturn_t
pn544_hci_i2c_irq_thread_fn(int irq
, void *phy_id
)
432 struct pn544_i2c_phy
*phy
= phy_id
;
433 struct i2c_client
*client
;
434 struct sk_buff
*skb
= NULL
;
437 if (!phy
|| irq
!= phy
->i2c_dev
->irq
) {
442 client
= phy
->i2c_dev
;
443 dev_dbg(&client
->dev
, "IRQ\n");
445 if (phy
->hard_fault
!= 0)
448 if (phy
->run_mode
== PN544_FW_MODE
) {
449 phy
->fw_cmd_result
= pn544_hci_i2c_fw_read_status(phy
);
450 schedule_work(&phy
->fw_work
);
452 r
= pn544_hci_i2c_read(phy
, &skb
);
453 if (r
== -EREMOTEIO
) {
456 nfc_hci_recv_frame(phy
->hdev
, NULL
);
459 } else if ((r
== -ENOMEM
) || (r
== -EBADMSG
)) {
463 nfc_hci_recv_frame(phy
->hdev
, skb
);
468 static struct nfc_phy_ops i2c_phy_ops
= {
469 .write
= pn544_hci_i2c_write
,
470 .enable
= pn544_hci_i2c_enable
,
471 .disable
= pn544_hci_i2c_disable
,
474 static int pn544_hci_i2c_fw_download(void *phy_id
, const char *firmware_name
)
476 struct pn544_i2c_phy
*phy
= phy_id
;
478 pr_info("Starting Firmware Download (%s)\n", firmware_name
);
480 strcpy(phy
->firmware_name
, firmware_name
);
482 phy
->fw_work_state
= FW_WORK_STATE_START
;
484 schedule_work(&phy
->fw_work
);
489 static void pn544_hci_i2c_fw_work_complete(struct pn544_i2c_phy
*phy
,
492 pr_info("Firmware Download Complete, result=%d\n", result
);
494 pn544_hci_i2c_disable(phy
);
496 phy
->fw_work_state
= FW_WORK_STATE_IDLE
;
499 release_firmware(phy
->fw
);
503 nfc_fw_download_done(phy
->hdev
->ndev
, phy
->firmware_name
, (u32
) -result
);
506 static int pn544_hci_i2c_fw_write_cmd(struct i2c_client
*client
, u32 dest_addr
,
507 const u8
*data
, u16 datalen
)
509 u8 frame
[PN544_FW_I2C_MAX_PAYLOAD
];
510 struct pn544_i2c_fw_frame_write
*framep
;
515 if (datalen
> PN544_FW_I2C_WRITE_DATA_MAX_LEN
)
516 datalen
= PN544_FW_I2C_WRITE_DATA_MAX_LEN
;
518 framep
= (struct pn544_i2c_fw_frame_write
*) frame
;
520 params_len
= sizeof(framep
->be_dest_addr
) +
521 sizeof(framep
->be_datalen
) + datalen
;
522 framelen
= params_len
+ sizeof(framep
->cmd
) +
523 sizeof(framep
->be_length
);
525 framep
->cmd
= PN544_FW_CMD_WRITE
;
527 put_unaligned_be16(params_len
, &framep
->be_length
);
529 framep
->be_dest_addr
[0] = (dest_addr
& 0xff0000) >> 16;
530 framep
->be_dest_addr
[1] = (dest_addr
& 0xff00) >> 8;
531 framep
->be_dest_addr
[2] = dest_addr
& 0xff;
533 put_unaligned_be16(datalen
, &framep
->be_datalen
);
535 memcpy(framep
->data
, data
, datalen
);
537 r
= i2c_master_send(client
, frame
, framelen
);
547 static int pn544_hci_i2c_fw_check_cmd(struct i2c_client
*client
, u32 start_addr
,
548 const u8
*data
, u16 datalen
)
550 struct pn544_i2c_fw_frame_check frame
;
554 /* calculate local crc for the data we want to check */
555 crc
= crc_ccitt(0xffff, data
, datalen
);
557 frame
.cmd
= PN544_FW_CMD_CHECK
;
559 put_unaligned_be16(sizeof(frame
.be_start_addr
) +
560 sizeof(frame
.be_datalen
) + sizeof(frame
.be_crc
),
563 /* tell the chip the memory region to which our crc applies */
564 frame
.be_start_addr
[0] = (start_addr
& 0xff0000) >> 16;
565 frame
.be_start_addr
[1] = (start_addr
& 0xff00) >> 8;
566 frame
.be_start_addr
[2] = start_addr
& 0xff;
568 put_unaligned_be16(datalen
, &frame
.be_datalen
);
571 * and give our local crc. Chip will calculate its own crc for the
572 * region and compare with ours.
574 put_unaligned_be16(crc
, &frame
.be_crc
);
576 r
= i2c_master_send(client
, (const char *) &frame
, sizeof(frame
));
578 if (r
== sizeof(frame
))
586 static int pn544_hci_i2c_fw_write_chunk(struct pn544_i2c_phy
*phy
)
590 r
= pn544_hci_i2c_fw_write_cmd(phy
->i2c_dev
,
591 phy
->fw_blob_dest_addr
+ phy
->fw_written
,
592 phy
->fw_blob_data
+ phy
->fw_written
,
593 phy
->fw_blob_size
- phy
->fw_written
);
597 phy
->fw_written
+= r
;
598 phy
->fw_work_state
= FW_WORK_STATE_WAIT_WRITE_ANSWER
;
603 static void pn544_hci_i2c_fw_work(struct work_struct
*work
)
605 struct pn544_i2c_phy
*phy
= container_of(work
, struct pn544_i2c_phy
,
608 struct pn544_i2c_fw_blob
*blob
;
610 switch (phy
->fw_work_state
) {
611 case FW_WORK_STATE_START
:
612 pn544_hci_i2c_enable_mode(phy
, PN544_FW_MODE
);
614 r
= request_firmware(&phy
->fw
, phy
->firmware_name
,
617 goto exit_state_start
;
619 blob
= (struct pn544_i2c_fw_blob
*) phy
->fw
->data
;
620 phy
->fw_blob_size
= get_unaligned_be32(&blob
->be_size
);
621 phy
->fw_blob_dest_addr
= get_unaligned_be32(&blob
->be_destaddr
);
622 phy
->fw_blob_data
= blob
->data
;
625 r
= pn544_hci_i2c_fw_write_chunk(phy
);
629 pn544_hci_i2c_fw_work_complete(phy
, r
);
632 case FW_WORK_STATE_WAIT_WRITE_ANSWER
:
633 r
= phy
->fw_cmd_result
;
635 goto exit_state_wait_write_answer
;
637 if (phy
->fw_written
== phy
->fw_blob_size
) {
638 r
= pn544_hci_i2c_fw_check_cmd(phy
->i2c_dev
,
639 phy
->fw_blob_dest_addr
,
643 goto exit_state_wait_write_answer
;
644 phy
->fw_work_state
= FW_WORK_STATE_WAIT_CHECK_ANSWER
;
648 r
= pn544_hci_i2c_fw_write_chunk(phy
);
650 exit_state_wait_write_answer
:
652 pn544_hci_i2c_fw_work_complete(phy
, r
);
655 case FW_WORK_STATE_WAIT_CHECK_ANSWER
:
656 r
= phy
->fw_cmd_result
;
658 goto exit_state_wait_check_answer
;
660 blob
= (struct pn544_i2c_fw_blob
*) (phy
->fw_blob_data
+
662 phy
->fw_blob_size
= get_unaligned_be32(&blob
->be_size
);
663 if (phy
->fw_blob_size
!= 0) {
664 phy
->fw_blob_dest_addr
=
665 get_unaligned_be32(&blob
->be_destaddr
);
666 phy
->fw_blob_data
= blob
->data
;
669 r
= pn544_hci_i2c_fw_write_chunk(phy
);
672 exit_state_wait_check_answer
:
673 if (r
< 0 || phy
->fw_blob_size
== 0)
674 pn544_hci_i2c_fw_work_complete(phy
, r
);
682 static int pn544_hci_i2c_probe(struct i2c_client
*client
,
683 const struct i2c_device_id
*id
)
685 struct pn544_i2c_phy
*phy
;
686 struct pn544_nfc_platform_data
*pdata
;
689 dev_dbg(&client
->dev
, "%s\n", __func__
);
690 dev_dbg(&client
->dev
, "IRQ: %d\n", client
->irq
);
692 if (!i2c_check_functionality(client
->adapter
, I2C_FUNC_I2C
)) {
693 nfc_err(&client
->dev
, "Need I2C_FUNC_I2C\n");
697 phy
= devm_kzalloc(&client
->dev
, sizeof(struct pn544_i2c_phy
),
700 nfc_err(&client
->dev
,
701 "Cannot allocate memory for pn544 i2c phy.\n");
705 INIT_WORK(&phy
->fw_work
, pn544_hci_i2c_fw_work
);
706 phy
->fw_work_state
= FW_WORK_STATE_IDLE
;
708 phy
->i2c_dev
= client
;
709 i2c_set_clientdata(client
, phy
);
711 pdata
= client
->dev
.platform_data
;
713 nfc_err(&client
->dev
, "No platform data\n");
717 if (pdata
->request_resources
== NULL
) {
718 nfc_err(&client
->dev
, "request_resources() missing\n");
722 r
= pdata
->request_resources(client
);
724 nfc_err(&client
->dev
, "Cannot get platform resources\n");
728 phy
->gpio_en
= pdata
->get_gpio(NFC_GPIO_ENABLE
);
729 phy
->gpio_fw
= pdata
->get_gpio(NFC_GPIO_FW_RESET
);
730 phy
->gpio_irq
= pdata
->get_gpio(NFC_GPIO_IRQ
);
732 pn544_hci_i2c_platform_init(phy
);
734 r
= request_threaded_irq(client
->irq
, NULL
, pn544_hci_i2c_irq_thread_fn
,
735 IRQF_TRIGGER_RISING
| IRQF_ONESHOT
,
736 PN544_HCI_I2C_DRIVER_NAME
, phy
);
738 nfc_err(&client
->dev
, "Unable to register IRQ handler\n");
742 r
= pn544_hci_probe(phy
, &i2c_phy_ops
, LLC_SHDLC_NAME
,
743 PN544_I2C_FRAME_HEADROOM
, PN544_I2C_FRAME_TAILROOM
,
744 PN544_HCI_I2C_LLC_MAX_PAYLOAD
,
745 pn544_hci_i2c_fw_download
, &phy
->hdev
);
752 free_irq(client
->irq
, phy
);
755 if (pdata
->free_resources
!= NULL
)
756 pdata
->free_resources();
761 static int pn544_hci_i2c_remove(struct i2c_client
*client
)
763 struct pn544_i2c_phy
*phy
= i2c_get_clientdata(client
);
764 struct pn544_nfc_platform_data
*pdata
= client
->dev
.platform_data
;
766 dev_dbg(&client
->dev
, "%s\n", __func__
);
768 cancel_work_sync(&phy
->fw_work
);
769 if (phy
->fw_work_state
!= FW_WORK_STATE_IDLE
)
770 pn544_hci_i2c_fw_work_complete(phy
, -ENODEV
);
772 pn544_hci_remove(phy
->hdev
);
775 pn544_hci_i2c_disable(phy
);
777 free_irq(client
->irq
, phy
);
778 if (pdata
->free_resources
)
779 pdata
->free_resources();
784 static struct i2c_driver pn544_hci_i2c_driver
= {
786 .name
= PN544_HCI_I2C_DRIVER_NAME
,
788 .probe
= pn544_hci_i2c_probe
,
789 .id_table
= pn544_hci_i2c_id_table
,
790 .remove
= pn544_hci_i2c_remove
,
793 module_i2c_driver(pn544_hci_i2c_driver
);
795 MODULE_LICENSE("GPL");
796 MODULE_DESCRIPTION(DRIVER_DESC
);