3 * Intel Management Engine Interface (Intel MEI) Linux driver
4 * Copyright (c) 2003-2012, 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/export.h>
18 #include <linux/sched.h>
19 #include <linux/wait.h>
20 #include <linux/pm_runtime.h>
21 #include <linux/slab.h>
23 #include <linux/mei.h>
29 static const char *mei_hbm_status_str(enum mei_hbm_status status
)
31 #define MEI_HBM_STATUS(status) case MEI_HBMS_##status: return #status
33 MEI_HBM_STATUS(SUCCESS
);
34 MEI_HBM_STATUS(CLIENT_NOT_FOUND
);
35 MEI_HBM_STATUS(ALREADY_EXISTS
);
36 MEI_HBM_STATUS(REJECTED
);
37 MEI_HBM_STATUS(INVALID_PARAMETER
);
38 MEI_HBM_STATUS(NOT_ALLOWED
);
39 MEI_HBM_STATUS(ALREADY_STARTED
);
40 MEI_HBM_STATUS(NOT_STARTED
);
41 default: return "unknown";
46 static const char *mei_cl_conn_status_str(enum mei_cl_connect_status status
)
48 #define MEI_CL_CS(status) case MEI_CL_CONN_##status: return #status
52 MEI_CL_CS(ALREADY_STARTED
);
53 MEI_CL_CS(OUT_OF_RESOURCES
);
54 MEI_CL_CS(MESSAGE_SMALL
);
55 MEI_CL_CS(NOT_ALLOWED
);
56 default: return "unknown";
61 const char *mei_hbm_state_str(enum mei_hbm_state state
)
63 #define MEI_HBM_STATE(state) case MEI_HBM_##state: return #state
66 MEI_HBM_STATE(STARTING
);
67 MEI_HBM_STATE(STARTED
);
68 MEI_HBM_STATE(ENUM_CLIENTS
);
69 MEI_HBM_STATE(CLIENT_PROPERTIES
);
70 MEI_HBM_STATE(STOPPED
);
78 * mei_cl_conn_status_to_errno - convert client connect response
79 * status to error code
81 * @status: client connect response status
83 * Return: corresponding error code
85 static int mei_cl_conn_status_to_errno(enum mei_cl_connect_status status
)
88 case MEI_CL_CONN_SUCCESS
: return 0;
89 case MEI_CL_CONN_NOT_FOUND
: return -ENOTTY
;
90 case MEI_CL_CONN_ALREADY_STARTED
: return -EBUSY
;
91 case MEI_CL_CONN_OUT_OF_RESOURCES
: return -EBUSY
;
92 case MEI_CL_CONN_MESSAGE_SMALL
: return -EINVAL
;
93 case MEI_CL_CONN_NOT_ALLOWED
: return -EBUSY
;
94 default: return -EINVAL
;
99 * mei_hbm_idle - set hbm to idle state
101 * @dev: the device structure
103 void mei_hbm_idle(struct mei_device
*dev
)
105 dev
->init_clients_timer
= 0;
106 dev
->hbm_state
= MEI_HBM_IDLE
;
110 * mei_hbm_reset - reset hbm counters and book keeping data structurs
112 * @dev: the device structure
114 void mei_hbm_reset(struct mei_device
*dev
)
116 mei_me_cl_rm_all(dev
);
122 * mei_hbm_hdr - construct hbm header
125 * @length: payload length
128 static inline void mei_hbm_hdr(struct mei_msg_hdr
*hdr
, size_t length
)
132 hdr
->length
= length
;
133 hdr
->msg_complete
= 1;
139 * mei_hbm_cl_hdr - construct client hbm header
142 * @hbm_cmd: host bus message command
143 * @buf: buffer for cl header
144 * @len: buffer length
147 void mei_hbm_cl_hdr(struct mei_cl
*cl
, u8 hbm_cmd
, void *buf
, size_t len
)
149 struct mei_hbm_cl_cmd
*cmd
= buf
;
153 cmd
->hbm_cmd
= hbm_cmd
;
154 cmd
->host_addr
= mei_cl_host_addr(cl
);
155 cmd
->me_addr
= mei_cl_me_id(cl
);
159 * mei_hbm_cl_write - write simple hbm client message
161 * @dev: the device structure
163 * @hbm_cmd: host bus message command
164 * @buf: message buffer
165 * @len: buffer length
167 * Return: 0 on success, <0 on failure.
170 int mei_hbm_cl_write(struct mei_device
*dev
, struct mei_cl
*cl
,
171 u8 hbm_cmd
, u8
*buf
, size_t len
)
173 struct mei_msg_hdr mei_hdr
;
175 mei_hbm_hdr(&mei_hdr
, len
);
176 mei_hbm_cl_hdr(cl
, hbm_cmd
, buf
, len
);
178 return mei_write_message(dev
, &mei_hdr
, buf
);
182 * mei_hbm_cl_addr_equal - check if the client's and
183 * the message address match
186 * @cmd: hbm client message
188 * Return: true if addresses are the same
191 bool mei_hbm_cl_addr_equal(struct mei_cl
*cl
, struct mei_hbm_cl_cmd
*cmd
)
193 return mei_cl_host_addr(cl
) == cmd
->host_addr
&&
194 mei_cl_me_id(cl
) == cmd
->me_addr
;
198 * mei_hbm_cl_find_by_cmd - find recipient client
200 * @dev: the device structure
201 * @buf: a buffer with hbm cl command
203 * Return: the recipient client or NULL if not found
206 struct mei_cl
*mei_hbm_cl_find_by_cmd(struct mei_device
*dev
, void *buf
)
208 struct mei_hbm_cl_cmd
*cmd
= (struct mei_hbm_cl_cmd
*)buf
;
211 list_for_each_entry(cl
, &dev
->file_list
, link
)
212 if (mei_hbm_cl_addr_equal(cl
, cmd
))
219 * mei_hbm_start_wait - wait for start response message.
221 * @dev: the device structure
223 * Return: 0 on success and < 0 on failure
225 int mei_hbm_start_wait(struct mei_device
*dev
)
229 if (dev
->hbm_state
> MEI_HBM_STARTING
)
232 mutex_unlock(&dev
->device_lock
);
233 ret
= wait_event_timeout(dev
->wait_hbm_start
,
234 dev
->hbm_state
!= MEI_HBM_STARTING
,
235 mei_secs_to_jiffies(MEI_HBM_TIMEOUT
));
236 mutex_lock(&dev
->device_lock
);
238 if (ret
== 0 && (dev
->hbm_state
<= MEI_HBM_STARTING
)) {
239 dev
->hbm_state
= MEI_HBM_IDLE
;
240 dev_err(dev
->dev
, "waiting for mei start failed\n");
247 * mei_hbm_start_req - sends start request message.
249 * @dev: the device structure
251 * Return: 0 on success and < 0 on failure
253 int mei_hbm_start_req(struct mei_device
*dev
)
255 struct mei_msg_hdr mei_hdr
;
256 struct hbm_host_version_request start_req
;
257 const size_t len
= sizeof(struct hbm_host_version_request
);
262 mei_hbm_hdr(&mei_hdr
, len
);
264 /* host start message */
265 memset(&start_req
, 0, len
);
266 start_req
.hbm_cmd
= HOST_START_REQ_CMD
;
267 start_req
.host_version
.major_version
= HBM_MAJOR_VERSION
;
268 start_req
.host_version
.minor_version
= HBM_MINOR_VERSION
;
270 dev
->hbm_state
= MEI_HBM_IDLE
;
271 ret
= mei_write_message(dev
, &mei_hdr
, &start_req
);
273 dev_err(dev
->dev
, "version message write failed: ret = %d\n",
278 dev
->hbm_state
= MEI_HBM_STARTING
;
279 dev
->init_clients_timer
= MEI_CLIENTS_INIT_TIMEOUT
;
280 mei_schedule_stall_timer(dev
);
285 * mei_hbm_enum_clients_req - sends enumeration client request message.
287 * @dev: the device structure
289 * Return: 0 on success and < 0 on failure
291 static int mei_hbm_enum_clients_req(struct mei_device
*dev
)
293 struct mei_msg_hdr mei_hdr
;
294 struct hbm_host_enum_request enum_req
;
295 const size_t len
= sizeof(struct hbm_host_enum_request
);
298 /* enumerate clients */
299 mei_hbm_hdr(&mei_hdr
, len
);
301 memset(&enum_req
, 0, len
);
302 enum_req
.hbm_cmd
= HOST_ENUM_REQ_CMD
;
303 enum_req
.flags
|= dev
->hbm_f_dc_supported
?
304 MEI_HBM_ENUM_F_ALLOW_ADD
: 0;
305 enum_req
.flags
|= dev
->hbm_f_ie_supported
?
306 MEI_HBM_ENUM_F_IMMEDIATE_ENUM
: 0;
308 ret
= mei_write_message(dev
, &mei_hdr
, &enum_req
);
310 dev_err(dev
->dev
, "enumeration request write failed: ret = %d.\n",
314 dev
->hbm_state
= MEI_HBM_ENUM_CLIENTS
;
315 dev
->init_clients_timer
= MEI_CLIENTS_INIT_TIMEOUT
;
316 mei_schedule_stall_timer(dev
);
321 * mei_hbm_me_cl_add - add new me client to the list
323 * @dev: the device structure
324 * @res: hbm property response
326 * Return: 0 on success and -ENOMEM on allocation failure
329 static int mei_hbm_me_cl_add(struct mei_device
*dev
,
330 struct hbm_props_response
*res
)
332 struct mei_me_client
*me_cl
;
333 const uuid_le
*uuid
= &res
->client_properties
.protocol_name
;
335 mei_me_cl_rm_by_uuid(dev
, uuid
);
337 me_cl
= kzalloc(sizeof(struct mei_me_client
), GFP_KERNEL
);
341 mei_me_cl_init(me_cl
);
343 me_cl
->props
= res
->client_properties
;
344 me_cl
->client_id
= res
->me_addr
;
345 me_cl
->tx_flow_ctrl_creds
= 0;
347 mei_me_cl_add(dev
, me_cl
);
353 * mei_hbm_add_cl_resp - send response to fw on client add request
355 * @dev: the device structure
357 * @status: response status
359 * Return: 0 on success and < 0 on failure
361 static int mei_hbm_add_cl_resp(struct mei_device
*dev
, u8 addr
, u8 status
)
363 struct mei_msg_hdr mei_hdr
;
364 struct hbm_add_client_response resp
;
365 const size_t len
= sizeof(struct hbm_add_client_response
);
368 dev_dbg(dev
->dev
, "adding client response\n");
370 mei_hbm_hdr(&mei_hdr
, len
);
372 memset(&resp
, 0, sizeof(struct hbm_add_client_response
));
373 resp
.hbm_cmd
= MEI_HBM_ADD_CLIENT_RES_CMD
;
375 resp
.status
= status
;
377 ret
= mei_write_message(dev
, &mei_hdr
, &resp
);
379 dev_err(dev
->dev
, "add client response write failed: ret = %d\n",
385 * mei_hbm_fw_add_cl_req - request from the fw to add a client
387 * @dev: the device structure
388 * @req: add client request
390 * Return: 0 on success and < 0 on failure
392 static int mei_hbm_fw_add_cl_req(struct mei_device
*dev
,
393 struct hbm_add_client_request
*req
)
396 u8 status
= MEI_HBMS_SUCCESS
;
398 BUILD_BUG_ON(sizeof(struct hbm_add_client_request
) !=
399 sizeof(struct hbm_props_response
));
401 ret
= mei_hbm_me_cl_add(dev
, (struct hbm_props_response
*)req
);
403 status
= !MEI_HBMS_SUCCESS
;
405 if (dev
->dev_state
== MEI_DEV_ENABLED
)
406 schedule_work(&dev
->bus_rescan_work
);
408 return mei_hbm_add_cl_resp(dev
, req
->me_addr
, status
);
412 * mei_hbm_cl_notify_req - send notification request
414 * @dev: the device structure
415 * @cl: a client to disconnect from
416 * @start: true for start false for stop
418 * Return: 0 on success and -EIO on write failure
420 int mei_hbm_cl_notify_req(struct mei_device
*dev
,
421 struct mei_cl
*cl
, u8 start
)
424 struct mei_msg_hdr mei_hdr
;
425 struct hbm_notification_request req
;
426 const size_t len
= sizeof(struct hbm_notification_request
);
429 mei_hbm_hdr(&mei_hdr
, len
);
430 mei_hbm_cl_hdr(cl
, MEI_HBM_NOTIFY_REQ_CMD
, &req
, len
);
434 ret
= mei_write_message(dev
, &mei_hdr
, &req
);
436 dev_err(dev
->dev
, "notify request failed: ret = %d\n", ret
);
442 * notify_res_to_fop - convert notification response to the proper
445 * @cmd: client notification start response command
447 * Return: MEI_FOP_NOTIFY_START or MEI_FOP_NOTIFY_STOP;
449 static inline enum mei_cb_file_ops
notify_res_to_fop(struct mei_hbm_cl_cmd
*cmd
)
451 struct hbm_notification_response
*rs
=
452 (struct hbm_notification_response
*)cmd
;
454 return mei_cl_notify_req2fop(rs
->start
);
458 * mei_hbm_cl_notify_start_res - update the client state according
459 * notify start response
461 * @dev: the device structure
462 * @cl: mei host client
463 * @cmd: client notification start response command
465 static void mei_hbm_cl_notify_start_res(struct mei_device
*dev
,
467 struct mei_hbm_cl_cmd
*cmd
)
469 struct hbm_notification_response
*rs
=
470 (struct hbm_notification_response
*)cmd
;
472 cl_dbg(dev
, cl
, "hbm: notify start response status=%d\n", rs
->status
);
474 if (rs
->status
== MEI_HBMS_SUCCESS
||
475 rs
->status
== MEI_HBMS_ALREADY_STARTED
) {
476 cl
->notify_en
= true;
479 cl
->status
= -EINVAL
;
484 * mei_hbm_cl_notify_stop_res - update the client state according
485 * notify stop response
487 * @dev: the device structure
488 * @cl: mei host client
489 * @cmd: client notification stop response command
491 static void mei_hbm_cl_notify_stop_res(struct mei_device
*dev
,
493 struct mei_hbm_cl_cmd
*cmd
)
495 struct hbm_notification_response
*rs
=
496 (struct hbm_notification_response
*)cmd
;
498 cl_dbg(dev
, cl
, "hbm: notify stop response status=%d\n", rs
->status
);
500 if (rs
->status
== MEI_HBMS_SUCCESS
||
501 rs
->status
== MEI_HBMS_NOT_STARTED
) {
502 cl
->notify_en
= false;
505 /* TODO: spec is not clear yet about other possible issues */
506 cl
->status
= -EINVAL
;
511 * mei_hbm_cl_notify - signal notification event
513 * @dev: the device structure
514 * @cmd: notification client message
516 static void mei_hbm_cl_notify(struct mei_device
*dev
,
517 struct mei_hbm_cl_cmd
*cmd
)
521 cl
= mei_hbm_cl_find_by_cmd(dev
, cmd
);
527 * mei_hbm_prop_req - request property for a single client
529 * @dev: the device structure
530 * @start_idx: client index to start search
532 * Return: 0 on success and < 0 on failure
534 static int mei_hbm_prop_req(struct mei_device
*dev
, unsigned long start_idx
)
536 struct mei_msg_hdr mei_hdr
;
537 struct hbm_props_request prop_req
;
538 const size_t len
= sizeof(struct hbm_props_request
);
542 addr
= find_next_bit(dev
->me_clients_map
, MEI_CLIENTS_MAX
, start_idx
);
544 /* We got all client properties */
545 if (addr
== MEI_CLIENTS_MAX
) {
546 dev
->hbm_state
= MEI_HBM_STARTED
;
547 mei_host_client_init(dev
);
552 mei_hbm_hdr(&mei_hdr
, len
);
554 memset(&prop_req
, 0, sizeof(struct hbm_props_request
));
556 prop_req
.hbm_cmd
= HOST_CLIENT_PROPERTIES_REQ_CMD
;
557 prop_req
.me_addr
= addr
;
559 ret
= mei_write_message(dev
, &mei_hdr
, &prop_req
);
561 dev_err(dev
->dev
, "properties request write failed: ret = %d\n",
566 dev
->init_clients_timer
= MEI_CLIENTS_INIT_TIMEOUT
;
567 mei_schedule_stall_timer(dev
);
573 * mei_hbm_pg - sends pg command
575 * @dev: the device structure
576 * @pg_cmd: the pg command code
578 * Return: -EIO on write failure
579 * -EOPNOTSUPP if the operation is not supported by the protocol
581 int mei_hbm_pg(struct mei_device
*dev
, u8 pg_cmd
)
583 struct mei_msg_hdr mei_hdr
;
584 struct hbm_power_gate req
;
585 const size_t len
= sizeof(struct hbm_power_gate
);
588 if (!dev
->hbm_f_pg_supported
)
591 mei_hbm_hdr(&mei_hdr
, len
);
593 memset(&req
, 0, len
);
594 req
.hbm_cmd
= pg_cmd
;
596 ret
= mei_write_message(dev
, &mei_hdr
, &req
);
598 dev_err(dev
->dev
, "power gate command write failed.\n");
601 EXPORT_SYMBOL_GPL(mei_hbm_pg
);
604 * mei_hbm_stop_req - send stop request message
608 * Return: -EIO on write failure
610 static int mei_hbm_stop_req(struct mei_device
*dev
)
612 struct mei_msg_hdr mei_hdr
;
613 struct hbm_host_stop_request req
;
614 const size_t len
= sizeof(struct hbm_host_stop_request
);
616 mei_hbm_hdr(&mei_hdr
, len
);
618 memset(&req
, 0, len
);
619 req
.hbm_cmd
= HOST_STOP_REQ_CMD
;
620 req
.reason
= DRIVER_STOP_REQUEST
;
622 return mei_write_message(dev
, &mei_hdr
, &req
);
626 * mei_hbm_cl_flow_control_req - sends flow control request.
628 * @dev: the device structure
631 * Return: -EIO on write failure
633 int mei_hbm_cl_flow_control_req(struct mei_device
*dev
, struct mei_cl
*cl
)
635 const size_t len
= sizeof(struct hbm_flow_control
);
638 cl_dbg(dev
, cl
, "sending flow control\n");
639 return mei_hbm_cl_write(dev
, cl
, MEI_FLOW_CONTROL_CMD
, buf
, len
);
643 * mei_hbm_add_single_tx_flow_ctrl_creds - adds single buffer credentials.
645 * @dev: the device structure
646 * @fctrl: flow control response bus message
648 * Return: 0 on success, < 0 otherwise
650 static int mei_hbm_add_single_tx_flow_ctrl_creds(struct mei_device
*dev
,
651 struct hbm_flow_control
*fctrl
)
653 struct mei_me_client
*me_cl
;
656 me_cl
= mei_me_cl_by_id(dev
, fctrl
->me_addr
);
658 dev_err(dev
->dev
, "no such me client %d\n", fctrl
->me_addr
);
662 if (WARN_ON(me_cl
->props
.single_recv_buf
== 0)) {
667 me_cl
->tx_flow_ctrl_creds
++;
668 dev_dbg(dev
->dev
, "recv flow ctrl msg ME %d (single) creds = %d.\n",
669 fctrl
->me_addr
, me_cl
->tx_flow_ctrl_creds
);
673 mei_me_cl_put(me_cl
);
678 * mei_hbm_cl_flow_control_res - flow control response from me
680 * @dev: the device structure
681 * @fctrl: flow control response bus message
683 static void mei_hbm_cl_tx_flow_ctrl_creds_res(struct mei_device
*dev
,
684 struct hbm_flow_control
*fctrl
)
688 if (!fctrl
->host_addr
) {
689 /* single receive buffer */
690 mei_hbm_add_single_tx_flow_ctrl_creds(dev
, fctrl
);
694 cl
= mei_hbm_cl_find_by_cmd(dev
, fctrl
);
696 cl
->tx_flow_ctrl_creds
++;
697 cl_dbg(dev
, cl
, "flow control creds = %d.\n",
698 cl
->tx_flow_ctrl_creds
);
704 * mei_hbm_cl_disconnect_req - sends disconnect message to fw.
706 * @dev: the device structure
707 * @cl: a client to disconnect from
709 * Return: -EIO on write failure
711 int mei_hbm_cl_disconnect_req(struct mei_device
*dev
, struct mei_cl
*cl
)
713 const size_t len
= sizeof(struct hbm_client_connect_request
);
716 return mei_hbm_cl_write(dev
, cl
, CLIENT_DISCONNECT_REQ_CMD
, buf
, len
);
720 * mei_hbm_cl_disconnect_rsp - sends disconnect respose to the FW
722 * @dev: the device structure
723 * @cl: a client to disconnect from
725 * Return: -EIO on write failure
727 int mei_hbm_cl_disconnect_rsp(struct mei_device
*dev
, struct mei_cl
*cl
)
729 const size_t len
= sizeof(struct hbm_client_connect_response
);
732 return mei_hbm_cl_write(dev
, cl
, CLIENT_DISCONNECT_RES_CMD
, buf
, len
);
736 * mei_hbm_cl_disconnect_res - update the client state according
737 * disconnect response
739 * @dev: the device structure
740 * @cl: mei host client
741 * @cmd: disconnect client response host bus message
743 static void mei_hbm_cl_disconnect_res(struct mei_device
*dev
, struct mei_cl
*cl
,
744 struct mei_hbm_cl_cmd
*cmd
)
746 struct hbm_client_connect_response
*rs
=
747 (struct hbm_client_connect_response
*)cmd
;
749 cl_dbg(dev
, cl
, "hbm: disconnect response status=%d\n", rs
->status
);
751 if (rs
->status
== MEI_CL_DISCONN_SUCCESS
)
752 cl
->state
= MEI_FILE_DISCONNECT_REPLY
;
757 * mei_hbm_cl_connect_req - send connection request to specific me client
759 * @dev: the device structure
760 * @cl: a client to connect to
762 * Return: -EIO on write failure
764 int mei_hbm_cl_connect_req(struct mei_device
*dev
, struct mei_cl
*cl
)
766 const size_t len
= sizeof(struct hbm_client_connect_request
);
769 return mei_hbm_cl_write(dev
, cl
, CLIENT_CONNECT_REQ_CMD
, buf
, len
);
773 * mei_hbm_cl_connect_res - update the client state according
774 * connection response
776 * @dev: the device structure
777 * @cl: mei host client
778 * @cmd: connect client response host bus message
780 static void mei_hbm_cl_connect_res(struct mei_device
*dev
, struct mei_cl
*cl
,
781 struct mei_hbm_cl_cmd
*cmd
)
783 struct hbm_client_connect_response
*rs
=
784 (struct hbm_client_connect_response
*)cmd
;
786 cl_dbg(dev
, cl
, "hbm: connect response status=%s\n",
787 mei_cl_conn_status_str(rs
->status
));
789 if (rs
->status
== MEI_CL_CONN_SUCCESS
)
790 cl
->state
= MEI_FILE_CONNECTED
;
792 cl
->state
= MEI_FILE_DISCONNECT_REPLY
;
793 if (rs
->status
== MEI_CL_CONN_NOT_FOUND
) {
794 mei_me_cl_del(dev
, cl
->me_cl
);
795 if (dev
->dev_state
== MEI_DEV_ENABLED
)
796 schedule_work(&dev
->bus_rescan_work
);
799 cl
->status
= mei_cl_conn_status_to_errno(rs
->status
);
803 * mei_hbm_cl_res - process hbm response received on behalf
806 * @dev: the device structure
807 * @rs: hbm client message
808 * @fop_type: file operation type
810 static void mei_hbm_cl_res(struct mei_device
*dev
,
811 struct mei_hbm_cl_cmd
*rs
,
812 enum mei_cb_file_ops fop_type
)
815 struct mei_cl_cb
*cb
, *next
;
818 list_for_each_entry_safe(cb
, next
, &dev
->ctrl_rd_list
.list
, list
) {
822 if (cb
->fop_type
!= fop_type
)
825 if (mei_hbm_cl_addr_equal(cl
, rs
)) {
826 list_del_init(&cb
->list
);
835 case MEI_FOP_CONNECT
:
836 mei_hbm_cl_connect_res(dev
, cl
, rs
);
838 case MEI_FOP_DISCONNECT
:
839 mei_hbm_cl_disconnect_res(dev
, cl
, rs
);
841 case MEI_FOP_NOTIFY_START
:
842 mei_hbm_cl_notify_start_res(dev
, cl
, rs
);
844 case MEI_FOP_NOTIFY_STOP
:
845 mei_hbm_cl_notify_stop_res(dev
, cl
, rs
);
857 * mei_hbm_fw_disconnect_req - disconnect request initiated by ME firmware
858 * host sends disconnect response
860 * @dev: the device structure.
861 * @disconnect_req: disconnect request bus message from the me
863 * Return: -ENOMEM on allocation failure
865 static int mei_hbm_fw_disconnect_req(struct mei_device
*dev
,
866 struct hbm_client_connect_request
*disconnect_req
)
869 struct mei_cl_cb
*cb
;
871 cl
= mei_hbm_cl_find_by_cmd(dev
, disconnect_req
);
873 cl_warn(dev
, cl
, "fw disconnect request received\n");
874 cl
->state
= MEI_FILE_DISCONNECTING
;
877 cb
= mei_cl_enqueue_ctrl_wr_cb(cl
, 0, MEI_FOP_DISCONNECT_RSP
,
886 * mei_hbm_pg_enter_res - PG enter response received
888 * @dev: the device structure.
890 * Return: 0 on success, -EPROTO on state mismatch
892 static int mei_hbm_pg_enter_res(struct mei_device
*dev
)
894 if (mei_pg_state(dev
) != MEI_PG_OFF
||
895 dev
->pg_event
!= MEI_PG_EVENT_WAIT
) {
896 dev_err(dev
->dev
, "hbm: pg entry response: state mismatch [%s, %d]\n",
897 mei_pg_state_str(mei_pg_state(dev
)), dev
->pg_event
);
901 dev
->pg_event
= MEI_PG_EVENT_RECEIVED
;
902 wake_up(&dev
->wait_pg
);
908 * mei_hbm_pg_resume - process with PG resume
910 * @dev: the device structure.
912 void mei_hbm_pg_resume(struct mei_device
*dev
)
914 pm_request_resume(dev
->dev
);
916 EXPORT_SYMBOL_GPL(mei_hbm_pg_resume
);
919 * mei_hbm_pg_exit_res - PG exit response received
921 * @dev: the device structure.
923 * Return: 0 on success, -EPROTO on state mismatch
925 static int mei_hbm_pg_exit_res(struct mei_device
*dev
)
927 if (mei_pg_state(dev
) != MEI_PG_ON
||
928 (dev
->pg_event
!= MEI_PG_EVENT_WAIT
&&
929 dev
->pg_event
!= MEI_PG_EVENT_IDLE
)) {
930 dev_err(dev
->dev
, "hbm: pg exit response: state mismatch [%s, %d]\n",
931 mei_pg_state_str(mei_pg_state(dev
)), dev
->pg_event
);
935 switch (dev
->pg_event
) {
936 case MEI_PG_EVENT_WAIT
:
937 dev
->pg_event
= MEI_PG_EVENT_RECEIVED
;
938 wake_up(&dev
->wait_pg
);
940 case MEI_PG_EVENT_IDLE
:
942 * If the driver is not waiting on this then
943 * this is HW initiated exit from PG.
944 * Start runtime pm resume sequence to exit from PG.
946 dev
->pg_event
= MEI_PG_EVENT_RECEIVED
;
947 mei_hbm_pg_resume(dev
);
950 WARN(1, "hbm: pg exit response: unexpected pg event = %d\n",
959 * mei_hbm_config_features - check what hbm features and commands
960 * are supported by the fw
962 * @dev: the device structure
964 static void mei_hbm_config_features(struct mei_device
*dev
)
966 /* Power Gating Isolation Support */
967 dev
->hbm_f_pg_supported
= 0;
968 if (dev
->version
.major_version
> HBM_MAJOR_VERSION_PGI
)
969 dev
->hbm_f_pg_supported
= 1;
971 if (dev
->version
.major_version
== HBM_MAJOR_VERSION_PGI
&&
972 dev
->version
.minor_version
>= HBM_MINOR_VERSION_PGI
)
973 dev
->hbm_f_pg_supported
= 1;
975 if (dev
->version
.major_version
>= HBM_MAJOR_VERSION_DC
)
976 dev
->hbm_f_dc_supported
= 1;
978 if (dev
->version
.major_version
>= HBM_MAJOR_VERSION_IE
)
979 dev
->hbm_f_ie_supported
= 1;
981 /* disconnect on connect timeout instead of link reset */
982 if (dev
->version
.major_version
>= HBM_MAJOR_VERSION_DOT
)
983 dev
->hbm_f_dot_supported
= 1;
985 /* Notification Event Support */
986 if (dev
->version
.major_version
>= HBM_MAJOR_VERSION_EV
)
987 dev
->hbm_f_ev_supported
= 1;
989 /* Fixed Address Client Support */
990 if (dev
->version
.major_version
>= HBM_MAJOR_VERSION_FA
)
991 dev
->hbm_f_fa_supported
= 1;
995 * mei_hbm_version_is_supported - checks whether the driver can
996 * support the hbm version of the device
998 * @dev: the device structure
999 * Return: true if driver can support hbm version of the device
1001 bool mei_hbm_version_is_supported(struct mei_device
*dev
)
1003 return (dev
->version
.major_version
< HBM_MAJOR_VERSION
) ||
1004 (dev
->version
.major_version
== HBM_MAJOR_VERSION
&&
1005 dev
->version
.minor_version
<= HBM_MINOR_VERSION
);
1009 * mei_hbm_dispatch - bottom half read routine after ISR to
1010 * handle the read bus message cmd processing.
1012 * @dev: the device structure
1013 * @hdr: header of bus message
1015 * Return: 0 on success and < 0 on failure
1017 int mei_hbm_dispatch(struct mei_device
*dev
, struct mei_msg_hdr
*hdr
)
1019 struct mei_bus_message
*mei_msg
;
1020 struct hbm_host_version_response
*version_res
;
1021 struct hbm_props_response
*props_res
;
1022 struct hbm_host_enum_response
*enum_res
;
1023 struct hbm_add_client_request
*add_cl_req
;
1026 struct mei_hbm_cl_cmd
*cl_cmd
;
1027 struct hbm_client_connect_request
*disconnect_req
;
1028 struct hbm_flow_control
*fctrl
;
1030 /* read the message to our buffer */
1031 BUG_ON(hdr
->length
>= sizeof(dev
->rd_msg_buf
));
1032 mei_read_slots(dev
, dev
->rd_msg_buf
, hdr
->length
);
1033 mei_msg
= (struct mei_bus_message
*)dev
->rd_msg_buf
;
1034 cl_cmd
= (struct mei_hbm_cl_cmd
*)mei_msg
;
1036 /* ignore spurious message and prevent reset nesting
1037 * hbm is put to idle during system reset
1039 if (dev
->hbm_state
== MEI_HBM_IDLE
) {
1040 dev_dbg(dev
->dev
, "hbm: state is idle ignore spurious messages\n");
1044 switch (mei_msg
->hbm_cmd
) {
1045 case HOST_START_RES_CMD
:
1046 dev_dbg(dev
->dev
, "hbm: start: response message received.\n");
1048 dev
->init_clients_timer
= 0;
1050 version_res
= (struct hbm_host_version_response
*)mei_msg
;
1052 dev_dbg(dev
->dev
, "HBM VERSION: DRIVER=%02d:%02d DEVICE=%02d:%02d\n",
1053 HBM_MAJOR_VERSION
, HBM_MINOR_VERSION
,
1054 version_res
->me_max_version
.major_version
,
1055 version_res
->me_max_version
.minor_version
);
1057 if (version_res
->host_version_supported
) {
1058 dev
->version
.major_version
= HBM_MAJOR_VERSION
;
1059 dev
->version
.minor_version
= HBM_MINOR_VERSION
;
1061 dev
->version
.major_version
=
1062 version_res
->me_max_version
.major_version
;
1063 dev
->version
.minor_version
=
1064 version_res
->me_max_version
.minor_version
;
1067 if (!mei_hbm_version_is_supported(dev
)) {
1068 dev_warn(dev
->dev
, "hbm: start: version mismatch - stopping the driver.\n");
1070 dev
->hbm_state
= MEI_HBM_STOPPED
;
1071 if (mei_hbm_stop_req(dev
)) {
1072 dev_err(dev
->dev
, "hbm: start: failed to send stop request\n");
1078 mei_hbm_config_features(dev
);
1080 if (dev
->dev_state
!= MEI_DEV_INIT_CLIENTS
||
1081 dev
->hbm_state
!= MEI_HBM_STARTING
) {
1082 dev_err(dev
->dev
, "hbm: start: state mismatch, [%d, %d]\n",
1083 dev
->dev_state
, dev
->hbm_state
);
1087 if (mei_hbm_enum_clients_req(dev
)) {
1088 dev_err(dev
->dev
, "hbm: start: failed to send enumeration request\n");
1092 wake_up(&dev
->wait_hbm_start
);
1095 case CLIENT_CONNECT_RES_CMD
:
1096 dev_dbg(dev
->dev
, "hbm: client connect response: message received.\n");
1097 mei_hbm_cl_res(dev
, cl_cmd
, MEI_FOP_CONNECT
);
1100 case CLIENT_DISCONNECT_RES_CMD
:
1101 dev_dbg(dev
->dev
, "hbm: client disconnect response: message received.\n");
1102 mei_hbm_cl_res(dev
, cl_cmd
, MEI_FOP_DISCONNECT
);
1105 case MEI_FLOW_CONTROL_CMD
:
1106 dev_dbg(dev
->dev
, "hbm: client flow control response: message received.\n");
1108 fctrl
= (struct hbm_flow_control
*)mei_msg
;
1109 mei_hbm_cl_tx_flow_ctrl_creds_res(dev
, fctrl
);
1112 case MEI_PG_ISOLATION_ENTRY_RES_CMD
:
1113 dev_dbg(dev
->dev
, "hbm: power gate isolation entry response received\n");
1114 ret
= mei_hbm_pg_enter_res(dev
);
1119 case MEI_PG_ISOLATION_EXIT_REQ_CMD
:
1120 dev_dbg(dev
->dev
, "hbm: power gate isolation exit request received\n");
1121 ret
= mei_hbm_pg_exit_res(dev
);
1126 case HOST_CLIENT_PROPERTIES_RES_CMD
:
1127 dev_dbg(dev
->dev
, "hbm: properties response: message received.\n");
1129 dev
->init_clients_timer
= 0;
1131 if (dev
->dev_state
!= MEI_DEV_INIT_CLIENTS
||
1132 dev
->hbm_state
!= MEI_HBM_CLIENT_PROPERTIES
) {
1133 dev_err(dev
->dev
, "hbm: properties response: state mismatch, [%d, %d]\n",
1134 dev
->dev_state
, dev
->hbm_state
);
1138 props_res
= (struct hbm_props_response
*)mei_msg
;
1140 if (props_res
->status
) {
1141 dev_err(dev
->dev
, "hbm: properties response: wrong status = %d %s\n",
1143 mei_hbm_status_str(props_res
->status
));
1147 mei_hbm_me_cl_add(dev
, props_res
);
1149 /* request property for the next client */
1150 if (mei_hbm_prop_req(dev
, props_res
->me_addr
+ 1))
1155 case HOST_ENUM_RES_CMD
:
1156 dev_dbg(dev
->dev
, "hbm: enumeration response: message received\n");
1158 dev
->init_clients_timer
= 0;
1160 enum_res
= (struct hbm_host_enum_response
*) mei_msg
;
1161 BUILD_BUG_ON(sizeof(dev
->me_clients_map
)
1162 < sizeof(enum_res
->valid_addresses
));
1163 memcpy(dev
->me_clients_map
, enum_res
->valid_addresses
,
1164 sizeof(enum_res
->valid_addresses
));
1166 if (dev
->dev_state
!= MEI_DEV_INIT_CLIENTS
||
1167 dev
->hbm_state
!= MEI_HBM_ENUM_CLIENTS
) {
1168 dev_err(dev
->dev
, "hbm: enumeration response: state mismatch, [%d, %d]\n",
1169 dev
->dev_state
, dev
->hbm_state
);
1173 dev
->hbm_state
= MEI_HBM_CLIENT_PROPERTIES
;
1175 /* first property request */
1176 if (mei_hbm_prop_req(dev
, 0))
1181 case HOST_STOP_RES_CMD
:
1182 dev_dbg(dev
->dev
, "hbm: stop response: message received\n");
1184 dev
->init_clients_timer
= 0;
1186 if (dev
->hbm_state
!= MEI_HBM_STOPPED
) {
1187 dev_err(dev
->dev
, "hbm: stop response: state mismatch, [%d, %d]\n",
1188 dev
->dev_state
, dev
->hbm_state
);
1192 dev
->dev_state
= MEI_DEV_POWER_DOWN
;
1193 dev_info(dev
->dev
, "hbm: stop response: resetting.\n");
1194 /* force the reset */
1198 case CLIENT_DISCONNECT_REQ_CMD
:
1199 dev_dbg(dev
->dev
, "hbm: disconnect request: message received\n");
1201 disconnect_req
= (struct hbm_client_connect_request
*)mei_msg
;
1202 mei_hbm_fw_disconnect_req(dev
, disconnect_req
);
1205 case ME_STOP_REQ_CMD
:
1206 dev_dbg(dev
->dev
, "hbm: stop request: message received\n");
1207 dev
->hbm_state
= MEI_HBM_STOPPED
;
1208 if (mei_hbm_stop_req(dev
)) {
1209 dev_err(dev
->dev
, "hbm: stop request: failed to send stop request\n");
1214 case MEI_HBM_ADD_CLIENT_REQ_CMD
:
1215 dev_dbg(dev
->dev
, "hbm: add client request received\n");
1217 * after the host receives the enum_resp
1218 * message clients may be added or removed
1220 if (dev
->hbm_state
<= MEI_HBM_ENUM_CLIENTS
||
1221 dev
->hbm_state
>= MEI_HBM_STOPPED
) {
1222 dev_err(dev
->dev
, "hbm: add client: state mismatch, [%d, %d]\n",
1223 dev
->dev_state
, dev
->hbm_state
);
1226 add_cl_req
= (struct hbm_add_client_request
*)mei_msg
;
1227 ret
= mei_hbm_fw_add_cl_req(dev
, add_cl_req
);
1229 dev_err(dev
->dev
, "hbm: add client: failed to send response %d\n",
1233 dev_dbg(dev
->dev
, "hbm: add client request processed\n");
1236 case MEI_HBM_NOTIFY_RES_CMD
:
1237 dev_dbg(dev
->dev
, "hbm: notify response received\n");
1238 mei_hbm_cl_res(dev
, cl_cmd
, notify_res_to_fop(cl_cmd
));
1241 case MEI_HBM_NOTIFICATION_CMD
:
1242 dev_dbg(dev
->dev
, "hbm: notification\n");
1243 mei_hbm_cl_notify(dev
, cl_cmd
);