1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (c) 2013-2023, Intel Corporation. All rights reserved.
4 * Intel Management Engine Interface (Intel MEI) Linux driver
7 #include <linux/kernel.h>
8 #include <linux/sched.h>
9 #include <linux/module.h>
10 #include <linux/device.h>
11 #include <linux/slab.h>
13 #include <linux/mei.h>
14 #include <linux/mei_cl_bus.h>
20 #define MEI_UUID_NFC_INFO UUID_LE(0xd2de1625, 0x382d, 0x417d, \
21 0x48, 0xa4, 0xef, 0xab, 0xba, 0x8a, 0x12, 0x06)
23 static const uuid_le mei_nfc_info_guid
= MEI_UUID_NFC_INFO
;
25 #define MEI_UUID_NFC_HCI UUID_LE(0x0bb17a78, 0x2a8e, 0x4c50, \
26 0x94, 0xd4, 0x50, 0x26, 0x67, 0x23, 0x77, 0x5c)
28 #define MEI_UUID_WD UUID_LE(0x05B79A6F, 0x4628, 0x4D7F, \
29 0x89, 0x9D, 0xA9, 0x15, 0x14, 0xCB, 0x32, 0xAB)
31 #define MEI_UUID_MKHIF_FIX UUID_LE(0x55213584, 0x9a29, 0x4916, \
32 0xba, 0xdf, 0xf, 0xb7, 0xed, 0x68, 0x2a, 0xeb)
34 #define MEI_UUID_IGSC_MKHI UUID_LE(0xE2C2AFA2, 0x3817, 0x4D19, \
35 0x9D, 0x95, 0x06, 0xB1, 0x6B, 0x58, 0x8A, 0x5D)
37 #define MEI_UUID_IGSC_MKHI_FIX UUID_LE(0x46E0C1FB, 0xA546, 0x414F, \
38 0x91, 0x70, 0xB7, 0xF4, 0x6D, 0x57, 0xB4, 0xAD)
40 #define MEI_UUID_HDCP UUID_LE(0xB638AB7E, 0x94E2, 0x4EA2, \
41 0xA5, 0x52, 0xD1, 0xC5, 0x4B, 0x62, 0x7F, 0x04)
43 #define MEI_UUID_PAVP UUID_LE(0xfbf6fcf1, 0x96cf, 0x4e2e, 0xA6, \
44 0xa6, 0x1b, 0xab, 0x8c, 0xbe, 0x36, 0xb1)
46 #define MEI_UUID_ANY NULL_UUID_LE
49 * number_of_connections - determine whether an client be on the bus
50 * according number of connections
51 * We support only clients:
52 * 1. with single connection
53 * 2. and fixed clients (max_number_of_connections == 0)
55 * @cldev: me clients device
57 static void number_of_connections(struct mei_cl_device
*cldev
)
59 if (cldev
->me_cl
->props
.max_number_of_connections
> 1)
64 * blacklist - blacklist a client from the bus
66 * @cldev: me clients device
68 static void blacklist(struct mei_cl_device
*cldev
)
74 * whitelist - forcefully whitelist client
76 * @cldev: me clients device
78 static void whitelist(struct mei_cl_device
*cldev
)
83 #define MKHI_SEND_MAX_TIMEOUT_MSEC 4000
85 #define OSTYPE_LINUX 2
95 struct mkhi_fw_ver_block
{
104 struct mkhi_fw_ver_block ver
[MEI_MAX_FW_VER_BLOCKS
];
107 #define MKHI_OSVER_BUF_LEN (sizeof(struct mkhi_msg_hdr) + \
108 sizeof(struct mkhi_fwcaps) + \
109 sizeof(struct mei_os_ver))
110 static int mei_osver(struct mei_cl_device
*cldev
)
112 const size_t size
= MKHI_OSVER_BUF_LEN
;
113 u8 buf
[MKHI_OSVER_BUF_LEN
];
114 struct mkhi_msg
*req
;
115 struct mkhi_fwcaps
*fwcaps
;
116 struct mei_os_ver
*os_ver
;
117 unsigned int mode
= MEI_CL_IO_TX_BLOCKING
| MEI_CL_IO_TX_INTERNAL
;
119 memset(buf
, 0, size
);
121 req
= (struct mkhi_msg
*)buf
;
122 req
->hdr
.group_id
= MKHI_FWCAPS_GROUP_ID
;
123 req
->hdr
.command
= MKHI_FWCAPS_SET_OS_VER_APP_RULE_CMD
;
125 fwcaps
= (struct mkhi_fwcaps
*)req
->data
;
127 fwcaps
->id
.rule_type
= 0x0;
128 fwcaps
->id
.feature_id
= MKHI_FEATURE_PTT
;
129 fwcaps
->len
= sizeof(*os_ver
);
130 os_ver
= (struct mei_os_ver
*)fwcaps
->data
;
131 os_ver
->os_type
= OSTYPE_LINUX
;
133 return __mei_cl_send_timeout(cldev
->cl
, buf
, size
, 0, mode
, MKHI_SEND_MAX_TIMEOUT_MSEC
);
136 #define MKHI_FWVER_BUF_LEN (sizeof(struct mkhi_msg_hdr) + \
137 sizeof(struct mkhi_fw_ver))
138 #define MKHI_FWVER_LEN(__num) (sizeof(struct mkhi_msg_hdr) + \
139 sizeof(struct mkhi_fw_ver_block) * (__num))
140 static int mei_fwver(struct mei_cl_device
*cldev
)
142 u8 buf
[MKHI_FWVER_BUF_LEN
];
144 struct mkhi_msg
*rsp
;
145 struct mkhi_fw_ver
*fwver
;
146 int bytes_recv
, ret
, i
;
148 memset(buf
, 0, sizeof(buf
));
150 req
.hdr
.group_id
= MKHI_GEN_GROUP_ID
;
151 req
.hdr
.command
= MKHI_GEN_GET_FW_VERSION_CMD
;
153 ret
= __mei_cl_send_timeout(cldev
->cl
, (u8
*)&req
, sizeof(req
), 0,
154 MEI_CL_IO_TX_BLOCKING
, MKHI_SEND_MAX_TIMEOUT_MSEC
);
156 dev_info(&cldev
->dev
, "Could not send ReqFWVersion cmd ret = %d\n", ret
);
161 bytes_recv
= __mei_cl_recv(cldev
->cl
, buf
, sizeof(buf
), NULL
, 0,
162 cldev
->bus
->timeouts
.mkhi_recv
);
163 if (bytes_recv
< 0 || (size_t)bytes_recv
< MKHI_FWVER_LEN(1)) {
165 * Should be at least one version block,
166 * error out if nothing found
168 dev_info(&cldev
->dev
, "Could not read FW version ret = %d\n", bytes_recv
);
172 rsp
= (struct mkhi_msg
*)buf
;
173 fwver
= (struct mkhi_fw_ver
*)rsp
->data
;
174 memset(cldev
->bus
->fw_ver
, 0, sizeof(cldev
->bus
->fw_ver
));
175 for (i
= 0; i
< MEI_MAX_FW_VER_BLOCKS
; i
++) {
176 if ((size_t)bytes_recv
< MKHI_FWVER_LEN(i
+ 1))
178 dev_dbg(&cldev
->dev
, "FW version%d %d:%d.%d.%d.%d\n",
179 i
, fwver
->ver
[i
].platform
,
180 fwver
->ver
[i
].major
, fwver
->ver
[i
].minor
,
181 fwver
->ver
[i
].hotfix
, fwver
->ver
[i
].buildno
);
183 cldev
->bus
->fw_ver
[i
].platform
= fwver
->ver
[i
].platform
;
184 cldev
->bus
->fw_ver
[i
].major
= fwver
->ver
[i
].major
;
185 cldev
->bus
->fw_ver
[i
].minor
= fwver
->ver
[i
].minor
;
186 cldev
->bus
->fw_ver
[i
].hotfix
= fwver
->ver
[i
].hotfix
;
187 cldev
->bus
->fw_ver
[i
].buildno
= fwver
->ver
[i
].buildno
;
189 cldev
->bus
->fw_ver_received
= 1;
194 #define GFX_MEMORY_READY_TIMEOUT 200 /* timeout in milliseconds */
196 static int mei_gfx_memory_ready(struct mei_cl_device
*cldev
)
198 struct mkhi_gfx_mem_ready req
= {0};
199 unsigned int mode
= MEI_CL_IO_TX_INTERNAL
| MEI_CL_IO_TX_BLOCKING
;
201 req
.hdr
.group_id
= MKHI_GROUP_ID_GFX
;
202 req
.hdr
.command
= MKHI_GFX_MEMORY_READY_CMD_REQ
;
203 req
.flags
= MKHI_GFX_MEM_READY_PXP_ALLOWED
;
205 dev_dbg(&cldev
->dev
, "Sending memory ready command\n");
206 return __mei_cl_send_timeout(cldev
->cl
, (u8
*)&req
, sizeof(req
), 0,
207 mode
, GFX_MEMORY_READY_TIMEOUT
);
210 static void mei_mkhi_fix(struct mei_cl_device
*cldev
)
214 /* No need to enable the client if nothing is needed from it */
215 if (!cldev
->bus
->fw_f_fw_ver_supported
&&
216 !cldev
->bus
->hbm_f_os_supported
)
219 ret
= mei_cldev_enable(cldev
);
223 if (cldev
->bus
->fw_f_fw_ver_supported
) {
224 ret
= mei_fwver(cldev
);
226 dev_info(&cldev
->dev
, "FW version command failed %d\n",
230 if (cldev
->bus
->hbm_f_os_supported
) {
231 ret
= mei_osver(cldev
);
233 dev_info(&cldev
->dev
, "OS version command failed %d\n",
236 mei_cldev_disable(cldev
);
239 static void mei_gsc_mkhi_ver(struct mei_cl_device
*cldev
)
244 * No need to enable the client if nothing is needed from it.
245 * No need to fill in version if it is already filled in by the fix address client.
247 if (!cldev
->bus
->fw_f_fw_ver_supported
|| cldev
->bus
->fw_ver_received
)
250 ret
= mei_cldev_enable(cldev
);
254 ret
= mei_fwver(cldev
);
256 dev_info(&cldev
->dev
, "FW version command failed %d\n", ret
);
257 mei_cldev_disable(cldev
);
260 static void mei_gsc_mkhi_fix_ver(struct mei_cl_device
*cldev
)
264 /* No need to enable the client if nothing is needed from it */
265 if (!cldev
->bus
->fw_f_fw_ver_supported
&&
266 cldev
->bus
->pxp_mode
!= MEI_DEV_PXP_INIT
)
269 ret
= mei_cldev_enable(cldev
);
273 if (cldev
->bus
->pxp_mode
== MEI_DEV_PXP_INIT
) {
274 ret
= mei_gfx_memory_ready(cldev
);
276 dev_err(&cldev
->dev
, "memory ready command failed %d\n", ret
);
278 dev_dbg(&cldev
->dev
, "memory ready command sent\n");
279 cldev
->bus
->pxp_mode
= MEI_DEV_PXP_SETUP
;
281 /* we go to reset after that */
285 ret
= mei_fwver(cldev
);
287 dev_info(&cldev
->dev
, "FW version command failed %d\n",
290 mei_cldev_disable(cldev
);
294 * mei_wd - wd client on the bus, change protocol version
295 * as the API has changed.
297 * @cldev: me clients device
299 #if IS_ENABLED(CONFIG_INTEL_MEI_ME)
300 #include <linux/pci.h>
301 #include "hw-me-regs.h"
302 static void mei_wd(struct mei_cl_device
*cldev
)
304 struct pci_dev
*pdev
= to_pci_dev(cldev
->dev
.parent
);
306 if (pdev
->device
== MEI_DEV_ID_WPT_LP
||
307 pdev
->device
== MEI_DEV_ID_SPT
||
308 pdev
->device
== MEI_DEV_ID_SPT_H
)
309 cldev
->me_cl
->props
.protocol_version
= 0x2;
314 static inline void mei_wd(struct mei_cl_device
*cldev
) {}
315 #endif /* CONFIG_INTEL_MEI_ME */
327 struct mei_nfc_reply
{
338 struct mei_nfc_if_version
{
339 u8 radio_version_sw
[3];
341 u8 radio_version_hw
[3];
349 #define MEI_NFC_CMD_MAINTENANCE 0x00
350 #define MEI_NFC_SUBCMD_IF_VERSION 0x01
353 #define MEI_NFC_VENDOR_INSIDE 0x00
354 #define MEI_NFC_VENDOR_NXP 0x01
357 #define MEI_NFC_VENDOR_INSIDE_UREAD 0x00
358 #define MEI_NFC_VENDOR_NXP_PN544 0x01
361 * mei_nfc_if_version - get NFC interface version
363 * @cl: host client (nfc info)
364 * @ver: NFC interface version to be filled in
366 * Return: 0 on success; < 0 otherwise
368 static int mei_nfc_if_version(struct mei_cl
*cl
,
369 struct mei_nfc_if_version
*ver
)
371 struct mei_device
*bus
;
372 struct mei_nfc_cmd cmd
= {
373 .command
= MEI_NFC_CMD_MAINTENANCE
,
375 .sub_command
= MEI_NFC_SUBCMD_IF_VERSION
,
377 struct mei_nfc_reply
*reply
= NULL
;
378 size_t if_version_length
;
384 WARN_ON(mutex_is_locked(&bus
->device_lock
));
386 ret
= __mei_cl_send(cl
, (u8
*)&cmd
, sizeof(cmd
), 0,
387 MEI_CL_IO_TX_BLOCKING
);
389 dev_err(bus
->dev
, "Could not send IF version cmd ret = %d\n", ret
);
393 /* to be sure on the stack we alloc memory */
394 if_version_length
= sizeof(*reply
) + sizeof(*ver
);
396 reply
= kzalloc(if_version_length
, GFP_KERNEL
);
401 bytes_recv
= __mei_cl_recv(cl
, (u8
*)reply
, if_version_length
, &vtag
,
403 if (bytes_recv
< 0 || (size_t)bytes_recv
< if_version_length
) {
404 dev_err(bus
->dev
, "Could not read IF version ret = %d\n", bytes_recv
);
409 memcpy(ver
, reply
->data
, sizeof(*ver
));
411 dev_info(bus
->dev
, "NFC MEI VERSION: IVN 0x%x Vendor ID 0x%x Type 0x%x\n",
412 ver
->fw_ivn
, ver
->vendor_id
, ver
->radio_type
);
420 * mei_nfc_radio_name - derive nfc radio name from the interface version
422 * @ver: NFC radio version
424 * Return: radio name string
426 static const char *mei_nfc_radio_name(struct mei_nfc_if_version
*ver
)
429 if (ver
->vendor_id
== MEI_NFC_VENDOR_INSIDE
) {
430 if (ver
->radio_type
== MEI_NFC_VENDOR_INSIDE_UREAD
)
434 if (ver
->vendor_id
== MEI_NFC_VENDOR_NXP
) {
435 if (ver
->radio_type
== MEI_NFC_VENDOR_NXP_PN544
)
443 * mei_nfc - The nfc fixup function. The function retrieves nfc radio
444 * name and set is as device attribute so we can load
445 * the proper device driver for it
447 * @cldev: me client device (nfc)
449 static void mei_nfc(struct mei_cl_device
*cldev
)
451 struct mei_device
*bus
;
453 struct mei_me_client
*me_cl
= NULL
;
454 struct mei_nfc_if_version ver
;
455 const char *radio_name
= NULL
;
460 mutex_lock(&bus
->device_lock
);
461 /* we need to connect to INFO GUID */
462 cl
= mei_cl_alloc_linked(bus
);
466 dev_err(bus
->dev
, "nfc hook alloc failed %d\n", ret
);
470 me_cl
= mei_me_cl_by_uuid(bus
, &mei_nfc_info_guid
);
473 dev_err(bus
->dev
, "Cannot find nfc info %d\n", ret
);
477 ret
= mei_cl_connect(cl
, me_cl
, NULL
);
479 dev_err(&cldev
->dev
, "Can't connect to the NFC INFO ME ret = %d\n",
484 mutex_unlock(&bus
->device_lock
);
486 ret
= mei_nfc_if_version(cl
, &ver
);
490 radio_name
= mei_nfc_radio_name(&ver
);
494 dev_err(&cldev
->dev
, "Can't get the NFC interface version ret = %d\n",
499 dev_dbg(bus
->dev
, "nfc radio %s\n", radio_name
);
500 strscpy(cldev
->name
, radio_name
, sizeof(cldev
->name
));
503 mutex_lock(&bus
->device_lock
);
504 if (mei_cl_disconnect(cl
) < 0)
505 dev_err(bus
->dev
, "Can't disconnect the NFC INFO ME\n");
507 mei_cl_flush_queues(cl
, NULL
);
511 mutex_unlock(&bus
->device_lock
);
512 mei_me_cl_put(me_cl
);
518 dev_dbg(bus
->dev
, "end of fixup match = %d\n", cldev
->do_match
);
522 * vt_support - enable on bus clients with vtag support
524 * @cldev: me clients device
526 static void vt_support(struct mei_cl_device
*cldev
)
528 if (cldev
->me_cl
->props
.vt_supported
== 1)
533 * pxp_is_ready - enable bus client if pxp is ready
535 * @cldev: me clients device
537 static void pxp_is_ready(struct mei_cl_device
*cldev
)
539 struct mei_device
*bus
= cldev
->bus
;
541 switch (bus
->pxp_mode
) {
542 case MEI_DEV_PXP_READY
:
543 case MEI_DEV_PXP_DEFAULT
:
552 #define MEI_FIXUP(_uuid, _hook) { _uuid, _hook }
554 static struct mei_fixup
{
557 void (*hook
)(struct mei_cl_device
*cldev
);
559 MEI_FIXUP(MEI_UUID_ANY
, number_of_connections
),
560 MEI_FIXUP(MEI_UUID_NFC_INFO
, blacklist
),
561 MEI_FIXUP(MEI_UUID_NFC_HCI
, mei_nfc
),
562 MEI_FIXUP(MEI_UUID_WD
, mei_wd
),
563 MEI_FIXUP(MEI_UUID_MKHIF_FIX
, mei_mkhi_fix
),
564 MEI_FIXUP(MEI_UUID_IGSC_MKHI_FIX
, mei_gsc_mkhi_fix_ver
),
565 MEI_FIXUP(MEI_UUID_IGSC_MKHI
, mei_gsc_mkhi_ver
),
566 MEI_FIXUP(MEI_UUID_HDCP
, whitelist
),
567 MEI_FIXUP(MEI_UUID_ANY
, vt_support
),
568 MEI_FIXUP(MEI_UUID_PAVP
, pxp_is_ready
),
572 * mei_cl_bus_dev_fixup - run fixup handlers
574 * @cldev: me client device
576 void mei_cl_bus_dev_fixup(struct mei_cl_device
*cldev
)
579 const uuid_le
*uuid
= mei_me_cl_uuid(cldev
->me_cl
);
582 for (i
= 0; i
< ARRAY_SIZE(mei_fixups
); i
++) {
585 if (uuid_le_cmp(f
->uuid
, MEI_UUID_ANY
) == 0 ||
586 uuid_le_cmp(f
->uuid
, *uuid
) == 0)