3 * Intel Management Engine Interface (Intel MEI) Linux driver
4 * Copyright (c) 2003-2013, Intel Corporation.
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 it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
17 #include <linux/kernel.h>
18 #include <linux/sched.h>
19 #include <linux/module.h>
20 #include <linux/moduleparam.h>
21 #include <linux/device.h>
22 #include <linux/slab.h>
24 #include <linux/mei_cl_bus.h>
39 struct mei_nfc_reply
{
50 struct mei_nfc_if_version
{
51 u8 radio_version_sw
[3];
53 u8 radio_version_hw
[3];
60 struct mei_nfc_connect
{
65 struct mei_nfc_connect_resp
{
74 struct mei_nfc_hci_hdr
{
82 #define MEI_NFC_CMD_MAINTENANCE 0x00
83 #define MEI_NFC_CMD_HCI_SEND 0x01
84 #define MEI_NFC_CMD_HCI_RECV 0x02
86 #define MEI_NFC_SUBCMD_CONNECT 0x00
87 #define MEI_NFC_SUBCMD_IF_VERSION 0x01
89 #define MEI_NFC_HEADER_SIZE 10
92 * struct mei_nfc_dev - NFC mei device
94 * @cl: NFC host client
95 * @cl_info: NFC info host client
96 * @init_work: perform connection to the info client
97 * @send_wq: send completion wait queue
98 * @fw_ivn: NFC Interface Version Number
99 * @vendor_id: NFC manufacturer ID
100 * @radio_type: NFC radio type
101 * @bus_name: bus name
103 * @req_id: message counter
104 * @recv_req_id: reception message counter
108 struct mei_cl
*cl_info
;
109 struct work_struct init_work
;
110 wait_queue_head_t send_wq
;
120 /* UUIDs for NFC F/W clients */
121 const uuid_le mei_nfc_guid
= UUID_LE(0x0bb17a78, 0x2a8e, 0x4c50,
122 0x94, 0xd4, 0x50, 0x26,
123 0x67, 0x23, 0x77, 0x5c);
125 static const uuid_le mei_nfc_info_guid
= UUID_LE(0xd2de1625, 0x382d, 0x417d,
126 0x48, 0xa4, 0xef, 0xab,
127 0xba, 0x8a, 0x12, 0x06);
130 #define MEI_NFC_VENDOR_INSIDE 0x00
131 #define MEI_NFC_VENDOR_NXP 0x01
134 #define MEI_NFC_VENDOR_INSIDE_UREAD 0x00
135 #define MEI_NFC_VENDOR_NXP_PN544 0x01
137 static void mei_nfc_free(struct mei_nfc_dev
*ndev
)
143 list_del(&ndev
->cl
->device_link
);
144 mei_cl_unlink(ndev
->cl
);
149 list_del(&ndev
->cl_info
->device_link
);
150 mei_cl_unlink(ndev
->cl_info
);
151 kfree(ndev
->cl_info
);
157 static int mei_nfc_build_bus_name(struct mei_nfc_dev
*ndev
)
159 struct mei_device
*dev
;
166 switch (ndev
->vendor_id
) {
167 case MEI_NFC_VENDOR_INSIDE
:
168 switch (ndev
->radio_type
) {
169 case MEI_NFC_VENDOR_INSIDE_UREAD
:
170 ndev
->bus_name
= "microread";
174 dev_err(dev
->dev
, "Unknown radio type 0x%x\n",
180 case MEI_NFC_VENDOR_NXP
:
181 switch (ndev
->radio_type
) {
182 case MEI_NFC_VENDOR_NXP_PN544
:
183 ndev
->bus_name
= "pn544";
186 dev_err(dev
->dev
, "Unknown radio type 0x%x\n",
193 dev_err(dev
->dev
, "Unknown vendor ID 0x%x\n",
202 static int mei_nfc_connect(struct mei_nfc_dev
*ndev
)
204 struct mei_device
*dev
;
206 struct mei_nfc_cmd
*cmd
, *reply
;
207 struct mei_nfc_connect
*connect
;
208 struct mei_nfc_connect_resp
*connect_resp
;
209 size_t connect_length
, connect_resp_length
;
215 connect_length
= sizeof(struct mei_nfc_cmd
) +
216 sizeof(struct mei_nfc_connect
);
218 connect_resp_length
= sizeof(struct mei_nfc_cmd
) +
219 sizeof(struct mei_nfc_connect_resp
);
221 cmd
= kzalloc(connect_length
, GFP_KERNEL
);
224 connect
= (struct mei_nfc_connect
*)cmd
->data
;
226 reply
= kzalloc(connect_resp_length
, GFP_KERNEL
);
232 connect_resp
= (struct mei_nfc_connect_resp
*)reply
->data
;
234 cmd
->command
= MEI_NFC_CMD_MAINTENANCE
;
236 cmd
->sub_command
= MEI_NFC_SUBCMD_CONNECT
;
237 connect
->fw_ivn
= ndev
->fw_ivn
;
238 connect
->vendor_id
= ndev
->vendor_id
;
240 ret
= __mei_cl_send(cl
, (u8
*)cmd
, connect_length
);
242 dev_err(dev
->dev
, "Could not send connect cmd\n");
246 bytes_recv
= __mei_cl_recv(cl
, (u8
*)reply
, connect_resp_length
);
247 if (bytes_recv
< 0) {
248 dev_err(dev
->dev
, "Could not read connect response\n");
253 dev_info(dev
->dev
, "IVN 0x%x Vendor ID 0x%x\n",
254 connect_resp
->fw_ivn
, connect_resp
->vendor_id
);
256 dev_info(dev
->dev
, "ME FW %d.%d.%d.%d\n",
257 connect_resp
->me_major
, connect_resp
->me_minor
,
258 connect_resp
->me_hotfix
, connect_resp
->me_build
);
269 static int mei_nfc_if_version(struct mei_nfc_dev
*ndev
)
271 struct mei_device
*dev
;
274 struct mei_nfc_cmd cmd
;
275 struct mei_nfc_reply
*reply
= NULL
;
276 struct mei_nfc_if_version
*version
;
277 size_t if_version_length
;
283 memset(&cmd
, 0, sizeof(struct mei_nfc_cmd
));
284 cmd
.command
= MEI_NFC_CMD_MAINTENANCE
;
286 cmd
.sub_command
= MEI_NFC_SUBCMD_IF_VERSION
;
288 ret
= __mei_cl_send(cl
, (u8
*)&cmd
, sizeof(struct mei_nfc_cmd
));
290 dev_err(dev
->dev
, "Could not send IF version cmd\n");
294 /* to be sure on the stack we alloc memory */
295 if_version_length
= sizeof(struct mei_nfc_reply
) +
296 sizeof(struct mei_nfc_if_version
);
298 reply
= kzalloc(if_version_length
, GFP_KERNEL
);
302 bytes_recv
= __mei_cl_recv(cl
, (u8
*)reply
, if_version_length
);
303 if (bytes_recv
< 0 || bytes_recv
< sizeof(struct mei_nfc_reply
)) {
304 dev_err(dev
->dev
, "Could not read IF version\n");
309 version
= (struct mei_nfc_if_version
*)reply
->data
;
311 ndev
->fw_ivn
= version
->fw_ivn
;
312 ndev
->vendor_id
= version
->vendor_id
;
313 ndev
->radio_type
= version
->radio_type
;
320 static int mei_nfc_enable(struct mei_cl_device
*cldev
)
322 struct mei_device
*dev
;
323 struct mei_nfc_dev
*ndev
;
326 ndev
= (struct mei_nfc_dev
*)cldev
->priv_data
;
329 ret
= mei_nfc_connect(ndev
);
331 dev_err(dev
->dev
, "Could not connect to NFC");
338 static int mei_nfc_disable(struct mei_cl_device
*cldev
)
343 static int mei_nfc_send(struct mei_cl_device
*cldev
, u8
*buf
, size_t length
)
345 struct mei_device
*dev
;
346 struct mei_nfc_dev
*ndev
;
347 struct mei_nfc_hci_hdr
*hdr
;
351 ndev
= (struct mei_nfc_dev
*) cldev
->priv_data
;
355 mei_buf
= kzalloc(length
+ MEI_NFC_HEADER_SIZE
, GFP_KERNEL
);
359 hdr
= (struct mei_nfc_hci_hdr
*) mei_buf
;
360 hdr
->cmd
= MEI_NFC_CMD_HCI_SEND
;
362 hdr
->req_id
= ndev
->req_id
;
364 hdr
->data_size
= length
;
366 memcpy(mei_buf
+ MEI_NFC_HEADER_SIZE
, buf
, length
);
367 err
= __mei_cl_send(ndev
->cl
, mei_buf
, length
+ MEI_NFC_HEADER_SIZE
);
371 if (!wait_event_interruptible_timeout(ndev
->send_wq
,
372 ndev
->recv_req_id
== ndev
->req_id
, HZ
)) {
373 dev_err(dev
->dev
, "NFC MEI command timeout\n");
383 static int mei_nfc_recv(struct mei_cl_device
*cldev
, u8
*buf
, size_t length
)
385 struct mei_nfc_dev
*ndev
;
386 struct mei_nfc_hci_hdr
*hci_hdr
;
389 ndev
= (struct mei_nfc_dev
*)cldev
->priv_data
;
391 received_length
= __mei_cl_recv(ndev
->cl
, buf
, length
);
392 if (received_length
< 0)
393 return received_length
;
395 hci_hdr
= (struct mei_nfc_hci_hdr
*) buf
;
397 if (hci_hdr
->cmd
== MEI_NFC_CMD_HCI_SEND
) {
398 ndev
->recv_req_id
= hci_hdr
->req_id
;
399 wake_up(&ndev
->send_wq
);
404 return received_length
;
407 static struct mei_cl_ops nfc_ops
= {
408 .enable
= mei_nfc_enable
,
409 .disable
= mei_nfc_disable
,
410 .send
= mei_nfc_send
,
411 .recv
= mei_nfc_recv
,
414 static void mei_nfc_init(struct work_struct
*work
)
416 struct mei_device
*dev
;
417 struct mei_cl_device
*cldev
;
418 struct mei_nfc_dev
*ndev
;
419 struct mei_cl
*cl_info
;
421 ndev
= container_of(work
, struct mei_nfc_dev
, init_work
);
423 cl_info
= ndev
->cl_info
;
426 mutex_lock(&dev
->device_lock
);
428 if (mei_cl_connect(cl_info
, NULL
) < 0) {
429 mutex_unlock(&dev
->device_lock
);
430 dev_err(dev
->dev
, "Could not connect to the NFC INFO ME client");
435 mutex_unlock(&dev
->device_lock
);
437 if (mei_nfc_if_version(ndev
) < 0) {
438 dev_err(dev
->dev
, "Could not get the NFC interface version");
443 dev_info(dev
->dev
, "NFC MEI VERSION: IVN 0x%x Vendor ID 0x%x Type 0x%x\n",
444 ndev
->fw_ivn
, ndev
->vendor_id
, ndev
->radio_type
);
446 mutex_lock(&dev
->device_lock
);
448 if (mei_cl_disconnect(cl_info
) < 0) {
449 mutex_unlock(&dev
->device_lock
);
450 dev_err(dev
->dev
, "Could not disconnect the NFC INFO ME client");
455 mutex_unlock(&dev
->device_lock
);
457 if (mei_nfc_build_bus_name(ndev
) < 0) {
458 dev_err(dev
->dev
, "Could not build the bus ID name\n");
462 cldev
= mei_cl_add_device(dev
, mei_nfc_guid
, ndev
->bus_name
, &nfc_ops
);
464 dev_err(dev
->dev
, "Could not add the NFC device to the MEI bus\n");
469 cldev
->priv_data
= ndev
;
475 mutex_lock(&dev
->device_lock
);
477 mutex_unlock(&dev
->device_lock
);
482 int mei_nfc_host_init(struct mei_device
*dev
)
484 struct mei_nfc_dev
*ndev
;
485 struct mei_cl
*cl_info
, *cl
;
486 struct mei_me_client
*me_cl
= NULL
;
490 /* in case of internal reset bail out
491 * as the device is already setup
493 cl
= mei_cl_bus_find_cl_by_uuid(dev
, mei_nfc_guid
);
497 ndev
= kzalloc(sizeof(struct mei_nfc_dev
), GFP_KERNEL
);
503 /* check for valid client id */
504 me_cl
= mei_me_cl_by_uuid(dev
, &mei_nfc_info_guid
);
506 dev_info(dev
->dev
, "nfc: failed to find the client\n");
511 cl_info
= mei_cl_alloc_linked(dev
, MEI_HOST_CLIENT_ID_ANY
);
512 if (IS_ERR(cl_info
)) {
513 ret
= PTR_ERR(cl_info
);
517 cl_info
->me_client_id
= me_cl
->client_id
;
518 cl_info
->cl_uuid
= me_cl
->props
.protocol_name
;
519 mei_me_cl_put(me_cl
);
522 list_add_tail(&cl_info
->device_link
, &dev
->device_list
);
524 ndev
->cl_info
= cl_info
;
526 /* check for valid client id */
527 me_cl
= mei_me_cl_by_uuid(dev
, &mei_nfc_guid
);
529 dev_info(dev
->dev
, "nfc: failed to find the client\n");
534 cl
= mei_cl_alloc_linked(dev
, MEI_HOST_CLIENT_ID_ANY
);
540 cl
->me_client_id
= me_cl
->client_id
;
541 cl
->cl_uuid
= me_cl
->props
.protocol_name
;
542 mei_me_cl_put(me_cl
);
545 list_add_tail(&cl
->device_link
, &dev
->device_list
);
551 INIT_WORK(&ndev
->init_work
, mei_nfc_init
);
552 init_waitqueue_head(&ndev
->send_wq
);
553 schedule_work(&ndev
->init_work
);
558 mei_me_cl_put(me_cl
);
564 void mei_nfc_host_exit(struct mei_device
*dev
)
566 struct mei_nfc_dev
*ndev
;
568 struct mei_cl_device
*cldev
;
570 cl
= mei_cl_bus_find_cl_by_uuid(dev
, mei_nfc_guid
);
578 ndev
= (struct mei_nfc_dev
*)cldev
->priv_data
;
580 cancel_work_sync(&ndev
->init_work
);
582 cldev
->priv_data
= NULL
;
584 mutex_lock(&dev
->device_lock
);
585 /* Need to remove the device here
586 * since mei_nfc_free will unlink the clients
588 mei_cl_remove_device(cldev
);
590 mutex_unlock(&dev
->device_lock
);