1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (c) 2013, Intel Corporation.
5 * MEI Library for mei bus nfc device access
7 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
9 #include <linux/module.h>
10 #include <linux/slab.h>
11 #include <linux/nfc.h>
24 struct mei_nfc_hdr hdr
;
29 struct mei_nfc_reply
{
30 struct mei_nfc_hdr hdr
;
36 struct mei_nfc_if_version
{
37 u8 radio_version_sw
[3];
39 u8 radio_version_hw
[3];
46 struct mei_nfc_connect
{
51 struct mei_nfc_connect_resp
{
61 #define MEI_NFC_CMD_MAINTENANCE 0x00
62 #define MEI_NFC_CMD_HCI_SEND 0x01
63 #define MEI_NFC_CMD_HCI_RECV 0x02
65 #define MEI_NFC_SUBCMD_CONNECT 0x00
66 #define MEI_NFC_SUBCMD_IF_VERSION 0x01
68 #define MEI_NFC_MAX_READ (MEI_NFC_HEADER_SIZE + MEI_NFC_MAX_HCI_PAYLOAD)
70 #define MEI_DUMP_SKB_IN(info, skb) \
72 pr_debug("%s:\n", info); \
73 print_hex_dump_debug("mei in : ", DUMP_PREFIX_OFFSET, \
74 16, 1, (skb)->data, (skb)->len, false); \
77 #define MEI_DUMP_SKB_OUT(info, skb) \
79 pr_debug("%s:\n", info); \
80 print_hex_dump_debug("mei out: ", DUMP_PREFIX_OFFSET, \
81 16, 1, (skb)->data, (skb)->len, false); \
84 #define MEI_DUMP_NFC_HDR(info, _hdr) \
86 pr_debug("%s:\n", info); \
87 pr_debug("cmd=%02d status=%d req_id=%d rsvd=%d size=%d\n", \
88 (_hdr)->cmd, (_hdr)->status, (_hdr)->req_id, \
89 (_hdr)->reserved, (_hdr)->data_size); \
92 static int mei_nfc_if_version(struct nfc_mei_phy
*phy
)
95 struct mei_nfc_cmd cmd
;
96 struct mei_nfc_reply
*reply
= NULL
;
97 struct mei_nfc_if_version
*version
;
98 size_t if_version_length
;
101 memset(&cmd
, 0, sizeof(struct mei_nfc_cmd
));
102 cmd
.hdr
.cmd
= MEI_NFC_CMD_MAINTENANCE
;
103 cmd
.hdr
.data_size
= 1;
104 cmd
.sub_command
= MEI_NFC_SUBCMD_IF_VERSION
;
106 MEI_DUMP_NFC_HDR("version", &cmd
.hdr
);
107 r
= mei_cldev_send(phy
->cldev
, (u8
*)&cmd
, sizeof(struct mei_nfc_cmd
));
109 pr_err("Could not send IF version cmd\n");
113 /* to be sure on the stack we alloc memory */
114 if_version_length
= sizeof(struct mei_nfc_reply
) +
115 sizeof(struct mei_nfc_if_version
);
117 reply
= kzalloc(if_version_length
, GFP_KERNEL
);
121 bytes_recv
= mei_cldev_recv(phy
->cldev
, (u8
*)reply
, if_version_length
);
122 if (bytes_recv
< 0 || bytes_recv
< if_version_length
) {
123 pr_err("Could not read IF version\n");
128 version
= (struct mei_nfc_if_version
*)reply
->data
;
130 phy
->fw_ivn
= version
->fw_ivn
;
131 phy
->vendor_id
= version
->vendor_id
;
132 phy
->radio_type
= version
->radio_type
;
139 static int mei_nfc_connect(struct nfc_mei_phy
*phy
)
141 struct mei_nfc_cmd
*cmd
, *reply
;
142 struct mei_nfc_connect
*connect
;
143 struct mei_nfc_connect_resp
*connect_resp
;
144 size_t connect_length
, connect_resp_length
;
147 connect_length
= sizeof(struct mei_nfc_cmd
) +
148 sizeof(struct mei_nfc_connect
);
150 connect_resp_length
= sizeof(struct mei_nfc_cmd
) +
151 sizeof(struct mei_nfc_connect_resp
);
153 cmd
= kzalloc(connect_length
, GFP_KERNEL
);
156 connect
= (struct mei_nfc_connect
*)cmd
->data
;
158 reply
= kzalloc(connect_resp_length
, GFP_KERNEL
);
164 connect_resp
= (struct mei_nfc_connect_resp
*)reply
->data
;
166 cmd
->hdr
.cmd
= MEI_NFC_CMD_MAINTENANCE
;
167 cmd
->hdr
.data_size
= 3;
168 cmd
->sub_command
= MEI_NFC_SUBCMD_CONNECT
;
169 connect
->fw_ivn
= phy
->fw_ivn
;
170 connect
->vendor_id
= phy
->vendor_id
;
172 MEI_DUMP_NFC_HDR("connect request", &cmd
->hdr
);
173 r
= mei_cldev_send(phy
->cldev
, (u8
*)cmd
, connect_length
);
175 pr_err("Could not send connect cmd %d\n", r
);
179 bytes_recv
= mei_cldev_recv(phy
->cldev
, (u8
*)reply
,
180 connect_resp_length
);
181 if (bytes_recv
< 0) {
183 pr_err("Could not read connect response %d\n", r
);
187 MEI_DUMP_NFC_HDR("connect reply", &reply
->hdr
);
189 pr_info("IVN 0x%x Vendor ID 0x%x\n",
190 connect_resp
->fw_ivn
, connect_resp
->vendor_id
);
192 pr_info("ME FW %d.%d.%d.%d\n",
193 connect_resp
->me_major
, connect_resp
->me_minor
,
194 connect_resp
->me_hotfix
, connect_resp
->me_build
);
205 static int mei_nfc_send(struct nfc_mei_phy
*phy
, const u8
*buf
, size_t length
)
207 struct mei_nfc_hdr
*hdr
;
212 mei_buf
= kzalloc(length
+ MEI_NFC_HEADER_SIZE
, GFP_KERNEL
);
216 hdr
= (struct mei_nfc_hdr
*)mei_buf
;
217 hdr
->cmd
= MEI_NFC_CMD_HCI_SEND
;
219 hdr
->req_id
= phy
->req_id
;
221 hdr
->data_size
= length
;
223 MEI_DUMP_NFC_HDR("send", hdr
);
225 memcpy(mei_buf
+ MEI_NFC_HEADER_SIZE
, buf
, length
);
226 err
= mei_cldev_send(phy
->cldev
, mei_buf
, length
+ MEI_NFC_HEADER_SIZE
);
230 if (!wait_event_interruptible_timeout(phy
->send_wq
,
231 phy
->recv_req_id
== phy
->req_id
, HZ
)) {
232 pr_err("NFC MEI command timeout\n");
243 * Writing a frame must not return the number of written bytes.
244 * It must return either zero for success, or <0 for error.
245 * In addition, it must not alter the skb
247 static int nfc_mei_phy_write(void *phy_id
, struct sk_buff
*skb
)
249 struct nfc_mei_phy
*phy
= phy_id
;
252 MEI_DUMP_SKB_OUT("mei frame sent", skb
);
254 r
= mei_nfc_send(phy
, skb
->data
, skb
->len
);
261 static int mei_nfc_recv(struct nfc_mei_phy
*phy
, u8
*buf
, size_t length
)
263 struct mei_nfc_hdr
*hdr
;
266 received_length
= mei_cldev_recv(phy
->cldev
, buf
, length
);
267 if (received_length
< 0)
268 return received_length
;
270 hdr
= (struct mei_nfc_hdr
*) buf
;
272 MEI_DUMP_NFC_HDR("receive", hdr
);
273 if (hdr
->cmd
== MEI_NFC_CMD_HCI_SEND
) {
274 phy
->recv_req_id
= hdr
->req_id
;
275 wake_up(&phy
->send_wq
);
280 return received_length
;
284 static void nfc_mei_rx_cb(struct mei_cl_device
*cldev
)
286 struct nfc_mei_phy
*phy
= mei_cldev_get_drvdata(cldev
);
293 if (phy
->hard_fault
!= 0)
296 skb
= alloc_skb(MEI_NFC_MAX_READ
, GFP_KERNEL
);
300 reply_size
= mei_nfc_recv(phy
, skb
->data
, MEI_NFC_MAX_READ
);
301 if (reply_size
< MEI_NFC_HEADER_SIZE
) {
306 skb_put(skb
, reply_size
);
307 skb_pull(skb
, MEI_NFC_HEADER_SIZE
);
309 MEI_DUMP_SKB_IN("mei frame read", skb
);
311 nfc_hci_recv_frame(phy
->hdev
, skb
);
314 static int nfc_mei_phy_enable(void *phy_id
)
317 struct nfc_mei_phy
*phy
= phy_id
;
319 if (phy
->powered
== 1)
322 r
= mei_cldev_enable(phy
->cldev
);
324 pr_err("Could not enable device %d\n", r
);
328 r
= mei_nfc_if_version(phy
);
330 pr_err("Could not enable device %d\n", r
);
334 r
= mei_nfc_connect(phy
);
336 pr_err("Could not connect to device %d\n", r
);
340 r
= mei_cldev_register_rx_cb(phy
->cldev
, nfc_mei_rx_cb
);
342 pr_err("Event cb registration failed %d\n", r
);
352 mei_cldev_disable(phy
->cldev
);
356 static void nfc_mei_phy_disable(void *phy_id
)
358 struct nfc_mei_phy
*phy
= phy_id
;
360 mei_cldev_disable(phy
->cldev
);
365 const struct nfc_phy_ops mei_phy_ops
= {
366 .write
= nfc_mei_phy_write
,
367 .enable
= nfc_mei_phy_enable
,
368 .disable
= nfc_mei_phy_disable
,
370 EXPORT_SYMBOL_GPL(mei_phy_ops
);
372 struct nfc_mei_phy
*nfc_mei_phy_alloc(struct mei_cl_device
*cldev
)
374 struct nfc_mei_phy
*phy
;
376 phy
= kzalloc(sizeof(struct nfc_mei_phy
), GFP_KERNEL
);
381 init_waitqueue_head(&phy
->send_wq
);
382 mei_cldev_set_drvdata(cldev
, phy
);
386 EXPORT_SYMBOL_GPL(nfc_mei_phy_alloc
);
388 void nfc_mei_phy_free(struct nfc_mei_phy
*phy
)
390 mei_cldev_disable(phy
->cldev
);
393 EXPORT_SYMBOL_GPL(nfc_mei_phy_free
);
395 MODULE_LICENSE("GPL");
396 MODULE_DESCRIPTION("mei bus NFC device interface");