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 dev
->me_client_index
= 0;
118 mei_me_cl_rm_all(dev
);
124 * mei_hbm_hdr - construct hbm header
127 * @length: payload length
130 static inline void mei_hbm_hdr(struct mei_msg_hdr
*hdr
, size_t length
)
134 hdr
->length
= length
;
135 hdr
->msg_complete
= 1;
140 * mei_hbm_cl_hdr - construct client hbm header
143 * @hbm_cmd: host bus message command
144 * @buf: buffer for cl header
145 * @len: buffer length
148 void mei_hbm_cl_hdr(struct mei_cl
*cl
, u8 hbm_cmd
, void *buf
, size_t len
)
150 struct mei_hbm_cl_cmd
*cmd
= buf
;
154 cmd
->hbm_cmd
= hbm_cmd
;
155 cmd
->host_addr
= mei_cl_host_addr(cl
);
156 cmd
->me_addr
= mei_cl_me_id(cl
);
160 * mei_hbm_cl_write - write simple hbm client message
162 * @dev: the device structure
164 * @hbm_cmd: host bus message command
165 * @len: buffer length
167 * Return: 0 on success, <0 on failure.
170 int mei_hbm_cl_write(struct mei_device
*dev
,
171 struct mei_cl
*cl
, u8 hbm_cmd
, size_t len
)
173 struct mei_msg_hdr
*mei_hdr
= &dev
->wr_msg
.hdr
;
175 mei_hbm_hdr(mei_hdr
, len
);
176 mei_hbm_cl_hdr(cl
, hbm_cmd
, dev
->wr_msg
.data
, len
);
178 return mei_write_message(dev
, mei_hdr
, dev
->wr_msg
.data
);
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
= &dev
->wr_msg
.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 start_req
= (struct hbm_host_version_request
*)dev
->wr_msg
.data
;
266 memset(start_req
, 0, len
);
267 start_req
->hbm_cmd
= HOST_START_REQ_CMD
;
268 start_req
->host_version
.major_version
= HBM_MAJOR_VERSION
;
269 start_req
->host_version
.minor_version
= HBM_MINOR_VERSION
;
271 dev
->hbm_state
= MEI_HBM_IDLE
;
272 ret
= mei_write_message(dev
, mei_hdr
, dev
->wr_msg
.data
);
274 dev_err(dev
->dev
, "version message write failed: ret = %d\n",
279 dev
->hbm_state
= MEI_HBM_STARTING
;
280 dev
->init_clients_timer
= MEI_CLIENTS_INIT_TIMEOUT
;
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
= &dev
->wr_msg
.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 enum_req
= (struct hbm_host_enum_request
*)dev
->wr_msg
.data
;
302 memset(enum_req
, 0, len
);
303 enum_req
->hbm_cmd
= HOST_ENUM_REQ_CMD
;
304 enum_req
->allow_add
= dev
->hbm_f_dc_supported
;
306 ret
= mei_write_message(dev
, mei_hdr
, dev
->wr_msg
.data
);
308 dev_err(dev
->dev
, "enumeration request write failed: ret = %d.\n",
312 dev
->hbm_state
= MEI_HBM_ENUM_CLIENTS
;
313 dev
->init_clients_timer
= MEI_CLIENTS_INIT_TIMEOUT
;
318 * mei_hbm_me_cl_add - add new me client to the list
320 * @dev: the device structure
321 * @res: hbm property response
323 * Return: 0 on success and -ENOMEM on allocation failure
326 static int mei_hbm_me_cl_add(struct mei_device
*dev
,
327 struct hbm_props_response
*res
)
329 struct mei_me_client
*me_cl
;
330 const uuid_le
*uuid
= &res
->client_properties
.protocol_name
;
332 mei_me_cl_rm_by_uuid(dev
, uuid
);
334 me_cl
= kzalloc(sizeof(struct mei_me_client
), GFP_KERNEL
);
338 mei_me_cl_init(me_cl
);
340 me_cl
->props
= res
->client_properties
;
341 me_cl
->client_id
= res
->me_addr
;
342 me_cl
->mei_flow_ctrl_creds
= 0;
344 mei_me_cl_add(dev
, me_cl
);
350 * mei_hbm_add_cl_resp - send response to fw on client add request
352 * @dev: the device structure
354 * @status: response status
356 * Return: 0 on success and < 0 on failure
358 static int mei_hbm_add_cl_resp(struct mei_device
*dev
, u8 addr
, u8 status
)
360 struct mei_msg_hdr
*mei_hdr
= &dev
->wr_msg
.hdr
;
361 struct hbm_add_client_response
*resp
;
362 const size_t len
= sizeof(struct hbm_add_client_response
);
365 dev_dbg(dev
->dev
, "adding client response\n");
367 resp
= (struct hbm_add_client_response
*)dev
->wr_msg
.data
;
369 mei_hbm_hdr(mei_hdr
, len
);
370 memset(resp
, 0, sizeof(struct hbm_add_client_response
));
372 resp
->hbm_cmd
= MEI_HBM_ADD_CLIENT_RES_CMD
;
373 resp
->me_addr
= addr
;
374 resp
->status
= status
;
376 ret
= mei_write_message(dev
, mei_hdr
, dev
->wr_msg
.data
);
378 dev_err(dev
->dev
, "add client response write failed: ret = %d\n",
384 * mei_hbm_fw_add_cl_req - request from the fw to add a client
386 * @dev: the device structure
387 * @req: add client request
389 * Return: 0 on success and < 0 on failure
391 static int mei_hbm_fw_add_cl_req(struct mei_device
*dev
,
392 struct hbm_add_client_request
*req
)
395 u8 status
= MEI_HBMS_SUCCESS
;
397 BUILD_BUG_ON(sizeof(struct hbm_add_client_request
) !=
398 sizeof(struct hbm_props_response
));
400 ret
= mei_hbm_me_cl_add(dev
, (struct hbm_props_response
*)req
);
402 status
= !MEI_HBMS_SUCCESS
;
404 return mei_hbm_add_cl_resp(dev
, req
->me_addr
, status
);
408 * mei_hbm_cl_notify_req - send notification request
410 * @dev: the device structure
411 * @cl: a client to disconnect from
412 * @start: true for start false for stop
414 * Return: 0 on success and -EIO on write failure
416 int mei_hbm_cl_notify_req(struct mei_device
*dev
,
417 struct mei_cl
*cl
, u8 start
)
420 struct mei_msg_hdr
*mei_hdr
= &dev
->wr_msg
.hdr
;
421 struct hbm_notification_request
*req
;
422 const size_t len
= sizeof(struct hbm_notification_request
);
425 mei_hbm_hdr(mei_hdr
, len
);
426 mei_hbm_cl_hdr(cl
, MEI_HBM_NOTIFY_REQ_CMD
, dev
->wr_msg
.data
, len
);
428 req
= (struct hbm_notification_request
*)dev
->wr_msg
.data
;
431 ret
= mei_write_message(dev
, mei_hdr
, dev
->wr_msg
.data
);
433 dev_err(dev
->dev
, "notify request failed: ret = %d\n", ret
);
439 * notify_res_to_fop - convert notification response to the proper
442 * @cmd: client notification start response command
444 * Return: MEI_FOP_NOTIFY_START or MEI_FOP_NOTIFY_STOP;
446 static inline enum mei_cb_file_ops
notify_res_to_fop(struct mei_hbm_cl_cmd
*cmd
)
448 struct hbm_notification_response
*rs
=
449 (struct hbm_notification_response
*)cmd
;
451 return mei_cl_notify_req2fop(rs
->start
);
455 * mei_hbm_cl_notify_start_res - update the client state according
456 * notify start response
458 * @dev: the device structure
459 * @cl: mei host client
460 * @cmd: client notification start response command
462 static void mei_hbm_cl_notify_start_res(struct mei_device
*dev
,
464 struct mei_hbm_cl_cmd
*cmd
)
466 struct hbm_notification_response
*rs
=
467 (struct hbm_notification_response
*)cmd
;
469 cl_dbg(dev
, cl
, "hbm: notify start response status=%d\n", rs
->status
);
471 if (rs
->status
== MEI_HBMS_SUCCESS
||
472 rs
->status
== MEI_HBMS_ALREADY_STARTED
) {
473 cl
->notify_en
= true;
476 cl
->status
= -EINVAL
;
481 * mei_hbm_cl_notify_stop_res - update the client state according
482 * notify stop response
484 * @dev: the device structure
485 * @cl: mei host client
486 * @cmd: client notification stop response command
488 static void mei_hbm_cl_notify_stop_res(struct mei_device
*dev
,
490 struct mei_hbm_cl_cmd
*cmd
)
492 struct hbm_notification_response
*rs
=
493 (struct hbm_notification_response
*)cmd
;
495 cl_dbg(dev
, cl
, "hbm: notify stop response status=%d\n", rs
->status
);
497 if (rs
->status
== MEI_HBMS_SUCCESS
||
498 rs
->status
== MEI_HBMS_NOT_STARTED
) {
499 cl
->notify_en
= false;
502 /* TODO: spec is not clear yet about other possible issues */
503 cl
->status
= -EINVAL
;
508 * mei_hbm_cl_notify - signal notification event
510 * @dev: the device structure
511 * @cmd: notification client message
513 static void mei_hbm_cl_notify(struct mei_device
*dev
,
514 struct mei_hbm_cl_cmd
*cmd
)
518 cl
= mei_hbm_cl_find_by_cmd(dev
, cmd
);
524 * mei_hbm_prop_req - request property for a single client
526 * @dev: the device structure
528 * Return: 0 on success and < 0 on failure
531 static int mei_hbm_prop_req(struct mei_device
*dev
)
534 struct mei_msg_hdr
*mei_hdr
= &dev
->wr_msg
.hdr
;
535 struct hbm_props_request
*prop_req
;
536 const size_t len
= sizeof(struct hbm_props_request
);
537 unsigned long next_client_index
;
540 next_client_index
= find_next_bit(dev
->me_clients_map
, MEI_CLIENTS_MAX
,
541 dev
->me_client_index
);
543 /* We got all client properties */
544 if (next_client_index
== MEI_CLIENTS_MAX
) {
545 dev
->hbm_state
= MEI_HBM_STARTED
;
546 schedule_work(&dev
->init_work
);
551 mei_hbm_hdr(mei_hdr
, len
);
552 prop_req
= (struct hbm_props_request
*)dev
->wr_msg
.data
;
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
= next_client_index
;
559 ret
= mei_write_message(dev
, mei_hdr
, dev
->wr_msg
.data
);
561 dev_err(dev
->dev
, "properties request write failed: ret = %d\n",
566 dev
->init_clients_timer
= MEI_CLIENTS_INIT_TIMEOUT
;
567 dev
->me_client_index
= next_client_index
;
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
= &dev
->wr_msg
.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 req
= (struct hbm_power_gate
*)dev
->wr_msg
.data
;
595 req
->hbm_cmd
= pg_cmd
;
597 ret
= mei_write_message(dev
, mei_hdr
, dev
->wr_msg
.data
);
599 dev_err(dev
->dev
, "power gate command write failed.\n");
602 EXPORT_SYMBOL_GPL(mei_hbm_pg
);
605 * mei_hbm_stop_req - send stop request message
609 * Return: -EIO on write failure
611 static int mei_hbm_stop_req(struct mei_device
*dev
)
613 struct mei_msg_hdr
*mei_hdr
= &dev
->wr_msg
.hdr
;
614 struct hbm_host_stop_request
*req
=
615 (struct hbm_host_stop_request
*)dev
->wr_msg
.data
;
616 const size_t len
= sizeof(struct hbm_host_stop_request
);
618 mei_hbm_hdr(mei_hdr
, len
);
621 req
->hbm_cmd
= HOST_STOP_REQ_CMD
;
622 req
->reason
= DRIVER_STOP_REQUEST
;
624 return mei_write_message(dev
, mei_hdr
, dev
->wr_msg
.data
);
628 * mei_hbm_cl_flow_control_req - sends flow control request.
630 * @dev: the device structure
633 * Return: -EIO on write failure
635 int mei_hbm_cl_flow_control_req(struct mei_device
*dev
, struct mei_cl
*cl
)
637 const size_t len
= sizeof(struct hbm_flow_control
);
639 cl_dbg(dev
, cl
, "sending flow control\n");
640 return mei_hbm_cl_write(dev
, cl
, MEI_FLOW_CONTROL_CMD
, len
);
644 * mei_hbm_add_single_flow_creds - adds single buffer credentials.
646 * @dev: the device structure
647 * @flow: flow control.
649 * Return: 0 on success, < 0 otherwise
651 static int mei_hbm_add_single_flow_creds(struct mei_device
*dev
,
652 struct hbm_flow_control
*flow
)
654 struct mei_me_client
*me_cl
;
657 me_cl
= mei_me_cl_by_id(dev
, flow
->me_addr
);
659 dev_err(dev
->dev
, "no such me client %d\n",
664 if (WARN_ON(me_cl
->props
.single_recv_buf
== 0)) {
669 me_cl
->mei_flow_ctrl_creds
++;
670 dev_dbg(dev
->dev
, "recv flow ctrl msg ME %d (single) creds = %d.\n",
671 flow
->me_addr
, me_cl
->mei_flow_ctrl_creds
);
675 mei_me_cl_put(me_cl
);
680 * mei_hbm_cl_flow_control_res - flow control response from me
682 * @dev: the device structure
683 * @flow_control: flow control response bus message
685 static void mei_hbm_cl_flow_control_res(struct mei_device
*dev
,
686 struct hbm_flow_control
*flow_control
)
690 if (!flow_control
->host_addr
) {
691 /* single receive buffer */
692 mei_hbm_add_single_flow_creds(dev
, flow_control
);
696 cl
= mei_hbm_cl_find_by_cmd(dev
, flow_control
);
698 cl
->mei_flow_ctrl_creds
++;
699 cl_dbg(dev
, cl
, "flow control creds = %d.\n",
700 cl
->mei_flow_ctrl_creds
);
706 * mei_hbm_cl_disconnect_req - sends disconnect message to fw.
708 * @dev: the device structure
709 * @cl: a client to disconnect from
711 * Return: -EIO on write failure
713 int mei_hbm_cl_disconnect_req(struct mei_device
*dev
, struct mei_cl
*cl
)
715 const size_t len
= sizeof(struct hbm_client_connect_request
);
717 return mei_hbm_cl_write(dev
, cl
, CLIENT_DISCONNECT_REQ_CMD
, len
);
721 * mei_hbm_cl_disconnect_rsp - sends disconnect respose to the FW
723 * @dev: the device structure
724 * @cl: a client to disconnect from
726 * Return: -EIO on write failure
728 int mei_hbm_cl_disconnect_rsp(struct mei_device
*dev
, struct mei_cl
*cl
)
730 const size_t len
= sizeof(struct hbm_client_connect_response
);
732 return mei_hbm_cl_write(dev
, cl
, CLIENT_DISCONNECT_RES_CMD
, 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
);
768 return mei_hbm_cl_write(dev
, cl
, CLIENT_CONNECT_REQ_CMD
, len
);
772 * mei_hbm_cl_connect_res - update the client state according
773 * connection response
775 * @dev: the device structure
776 * @cl: mei host client
777 * @cmd: connect client response host bus message
779 static void mei_hbm_cl_connect_res(struct mei_device
*dev
, struct mei_cl
*cl
,
780 struct mei_hbm_cl_cmd
*cmd
)
782 struct hbm_client_connect_response
*rs
=
783 (struct hbm_client_connect_response
*)cmd
;
785 cl_dbg(dev
, cl
, "hbm: connect response status=%s\n",
786 mei_cl_conn_status_str(rs
->status
));
788 if (rs
->status
== MEI_CL_CONN_SUCCESS
)
789 cl
->state
= MEI_FILE_CONNECTED
;
791 cl
->state
= MEI_FILE_DISCONNECT_REPLY
;
792 if (rs
->status
== MEI_CL_CONN_NOT_FOUND
)
793 mei_me_cl_del(dev
, cl
->me_cl
);
795 cl
->status
= mei_cl_conn_status_to_errno(rs
->status
);
799 * mei_hbm_cl_res - process hbm response received on behalf
802 * @dev: the device structure
803 * @rs: hbm client message
804 * @fop_type: file operation type
806 static void mei_hbm_cl_res(struct mei_device
*dev
,
807 struct mei_hbm_cl_cmd
*rs
,
808 enum mei_cb_file_ops fop_type
)
811 struct mei_cl_cb
*cb
, *next
;
814 list_for_each_entry_safe(cb
, next
, &dev
->ctrl_rd_list
.list
, list
) {
818 if (cb
->fop_type
!= fop_type
)
821 if (mei_hbm_cl_addr_equal(cl
, rs
)) {
822 list_del_init(&cb
->list
);
831 case MEI_FOP_CONNECT
:
832 mei_hbm_cl_connect_res(dev
, cl
, rs
);
834 case MEI_FOP_DISCONNECT
:
835 mei_hbm_cl_disconnect_res(dev
, cl
, rs
);
837 case MEI_FOP_NOTIFY_START
:
838 mei_hbm_cl_notify_start_res(dev
, cl
, rs
);
840 case MEI_FOP_NOTIFY_STOP
:
841 mei_hbm_cl_notify_stop_res(dev
, cl
, rs
);
853 * mei_hbm_fw_disconnect_req - disconnect request initiated by ME firmware
854 * host sends disconnect response
856 * @dev: the device structure.
857 * @disconnect_req: disconnect request bus message from the me
859 * Return: -ENOMEM on allocation failure
861 static int mei_hbm_fw_disconnect_req(struct mei_device
*dev
,
862 struct hbm_client_connect_request
*disconnect_req
)
865 struct mei_cl_cb
*cb
;
867 cl
= mei_hbm_cl_find_by_cmd(dev
, disconnect_req
);
869 cl_dbg(dev
, cl
, "fw disconnect request received\n");
870 cl
->state
= MEI_FILE_DISCONNECTING
;
873 cb
= mei_io_cb_init(cl
, MEI_FOP_DISCONNECT_RSP
, NULL
);
876 cl_dbg(dev
, cl
, "add disconnect response as first\n");
877 list_add(&cb
->list
, &dev
->ctrl_wr_list
.list
);
883 * mei_hbm_pg_enter_res - PG enter response received
885 * @dev: the device structure.
887 * Return: 0 on success, -EPROTO on state mismatch
889 static int mei_hbm_pg_enter_res(struct mei_device
*dev
)
891 if (mei_pg_state(dev
) != MEI_PG_OFF
||
892 dev
->pg_event
!= MEI_PG_EVENT_WAIT
) {
893 dev_err(dev
->dev
, "hbm: pg entry response: state mismatch [%s, %d]\n",
894 mei_pg_state_str(mei_pg_state(dev
)), dev
->pg_event
);
898 dev
->pg_event
= MEI_PG_EVENT_RECEIVED
;
899 wake_up(&dev
->wait_pg
);
905 * mei_hbm_pg_resume - process with PG resume
907 * @dev: the device structure.
909 void mei_hbm_pg_resume(struct mei_device
*dev
)
911 pm_request_resume(dev
->dev
);
913 EXPORT_SYMBOL_GPL(mei_hbm_pg_resume
);
916 * mei_hbm_pg_exit_res - PG exit response received
918 * @dev: the device structure.
920 * Return: 0 on success, -EPROTO on state mismatch
922 static int mei_hbm_pg_exit_res(struct mei_device
*dev
)
924 if (mei_pg_state(dev
) != MEI_PG_ON
||
925 (dev
->pg_event
!= MEI_PG_EVENT_WAIT
&&
926 dev
->pg_event
!= MEI_PG_EVENT_IDLE
)) {
927 dev_err(dev
->dev
, "hbm: pg exit response: state mismatch [%s, %d]\n",
928 mei_pg_state_str(mei_pg_state(dev
)), dev
->pg_event
);
932 switch (dev
->pg_event
) {
933 case MEI_PG_EVENT_WAIT
:
934 dev
->pg_event
= MEI_PG_EVENT_RECEIVED
;
935 wake_up(&dev
->wait_pg
);
937 case MEI_PG_EVENT_IDLE
:
939 * If the driver is not waiting on this then
940 * this is HW initiated exit from PG.
941 * Start runtime pm resume sequence to exit from PG.
943 dev
->pg_event
= MEI_PG_EVENT_RECEIVED
;
944 mei_hbm_pg_resume(dev
);
947 WARN(1, "hbm: pg exit response: unexpected pg event = %d\n",
956 * mei_hbm_config_features - check what hbm features and commands
957 * are supported by the fw
959 * @dev: the device structure
961 static void mei_hbm_config_features(struct mei_device
*dev
)
963 /* Power Gating Isolation Support */
964 dev
->hbm_f_pg_supported
= 0;
965 if (dev
->version
.major_version
> HBM_MAJOR_VERSION_PGI
)
966 dev
->hbm_f_pg_supported
= 1;
968 if (dev
->version
.major_version
== HBM_MAJOR_VERSION_PGI
&&
969 dev
->version
.minor_version
>= HBM_MINOR_VERSION_PGI
)
970 dev
->hbm_f_pg_supported
= 1;
972 if (dev
->version
.major_version
>= HBM_MAJOR_VERSION_DC
)
973 dev
->hbm_f_dc_supported
= 1;
975 /* disconnect on connect timeout instead of link reset */
976 if (dev
->version
.major_version
>= HBM_MAJOR_VERSION_DOT
)
977 dev
->hbm_f_dot_supported
= 1;
979 /* Notification Event Support */
980 if (dev
->version
.major_version
>= HBM_MAJOR_VERSION_EV
)
981 dev
->hbm_f_ev_supported
= 1;
985 * mei_hbm_version_is_supported - checks whether the driver can
986 * support the hbm version of the device
988 * @dev: the device structure
989 * Return: true if driver can support hbm version of the device
991 bool mei_hbm_version_is_supported(struct mei_device
*dev
)
993 return (dev
->version
.major_version
< HBM_MAJOR_VERSION
) ||
994 (dev
->version
.major_version
== HBM_MAJOR_VERSION
&&
995 dev
->version
.minor_version
<= HBM_MINOR_VERSION
);
999 * mei_hbm_dispatch - bottom half read routine after ISR to
1000 * handle the read bus message cmd processing.
1002 * @dev: the device structure
1003 * @hdr: header of bus message
1005 * Return: 0 on success and < 0 on failure
1007 int mei_hbm_dispatch(struct mei_device
*dev
, struct mei_msg_hdr
*hdr
)
1009 struct mei_bus_message
*mei_msg
;
1010 struct hbm_host_version_response
*version_res
;
1011 struct hbm_props_response
*props_res
;
1012 struct hbm_host_enum_response
*enum_res
;
1013 struct hbm_add_client_request
*add_cl_req
;
1016 struct mei_hbm_cl_cmd
*cl_cmd
;
1017 struct hbm_client_connect_request
*disconnect_req
;
1018 struct hbm_flow_control
*flow_control
;
1020 /* read the message to our buffer */
1021 BUG_ON(hdr
->length
>= sizeof(dev
->rd_msg_buf
));
1022 mei_read_slots(dev
, dev
->rd_msg_buf
, hdr
->length
);
1023 mei_msg
= (struct mei_bus_message
*)dev
->rd_msg_buf
;
1024 cl_cmd
= (struct mei_hbm_cl_cmd
*)mei_msg
;
1026 /* ignore spurious message and prevent reset nesting
1027 * hbm is put to idle during system reset
1029 if (dev
->hbm_state
== MEI_HBM_IDLE
) {
1030 dev_dbg(dev
->dev
, "hbm: state is idle ignore spurious messages\n");
1034 switch (mei_msg
->hbm_cmd
) {
1035 case HOST_START_RES_CMD
:
1036 dev_dbg(dev
->dev
, "hbm: start: response message received.\n");
1038 dev
->init_clients_timer
= 0;
1040 version_res
= (struct hbm_host_version_response
*)mei_msg
;
1042 dev_dbg(dev
->dev
, "HBM VERSION: DRIVER=%02d:%02d DEVICE=%02d:%02d\n",
1043 HBM_MAJOR_VERSION
, HBM_MINOR_VERSION
,
1044 version_res
->me_max_version
.major_version
,
1045 version_res
->me_max_version
.minor_version
);
1047 if (version_res
->host_version_supported
) {
1048 dev
->version
.major_version
= HBM_MAJOR_VERSION
;
1049 dev
->version
.minor_version
= HBM_MINOR_VERSION
;
1051 dev
->version
.major_version
=
1052 version_res
->me_max_version
.major_version
;
1053 dev
->version
.minor_version
=
1054 version_res
->me_max_version
.minor_version
;
1057 if (!mei_hbm_version_is_supported(dev
)) {
1058 dev_warn(dev
->dev
, "hbm: start: version mismatch - stopping the driver.\n");
1060 dev
->hbm_state
= MEI_HBM_STOPPED
;
1061 if (mei_hbm_stop_req(dev
)) {
1062 dev_err(dev
->dev
, "hbm: start: failed to send stop request\n");
1068 mei_hbm_config_features(dev
);
1070 if (dev
->dev_state
!= MEI_DEV_INIT_CLIENTS
||
1071 dev
->hbm_state
!= MEI_HBM_STARTING
) {
1072 dev_err(dev
->dev
, "hbm: start: state mismatch, [%d, %d]\n",
1073 dev
->dev_state
, dev
->hbm_state
);
1077 if (mei_hbm_enum_clients_req(dev
)) {
1078 dev_err(dev
->dev
, "hbm: start: failed to send enumeration request\n");
1082 wake_up(&dev
->wait_hbm_start
);
1085 case CLIENT_CONNECT_RES_CMD
:
1086 dev_dbg(dev
->dev
, "hbm: client connect response: message received.\n");
1087 mei_hbm_cl_res(dev
, cl_cmd
, MEI_FOP_CONNECT
);
1090 case CLIENT_DISCONNECT_RES_CMD
:
1091 dev_dbg(dev
->dev
, "hbm: client disconnect response: message received.\n");
1092 mei_hbm_cl_res(dev
, cl_cmd
, MEI_FOP_DISCONNECT
);
1095 case MEI_FLOW_CONTROL_CMD
:
1096 dev_dbg(dev
->dev
, "hbm: client flow control response: message received.\n");
1098 flow_control
= (struct hbm_flow_control
*) mei_msg
;
1099 mei_hbm_cl_flow_control_res(dev
, flow_control
);
1102 case MEI_PG_ISOLATION_ENTRY_RES_CMD
:
1103 dev_dbg(dev
->dev
, "hbm: power gate isolation entry response received\n");
1104 ret
= mei_hbm_pg_enter_res(dev
);
1109 case MEI_PG_ISOLATION_EXIT_REQ_CMD
:
1110 dev_dbg(dev
->dev
, "hbm: power gate isolation exit request received\n");
1111 ret
= mei_hbm_pg_exit_res(dev
);
1116 case HOST_CLIENT_PROPERTIES_RES_CMD
:
1117 dev_dbg(dev
->dev
, "hbm: properties response: message received.\n");
1119 dev
->init_clients_timer
= 0;
1121 if (dev
->dev_state
!= MEI_DEV_INIT_CLIENTS
||
1122 dev
->hbm_state
!= MEI_HBM_CLIENT_PROPERTIES
) {
1123 dev_err(dev
->dev
, "hbm: properties response: state mismatch, [%d, %d]\n",
1124 dev
->dev_state
, dev
->hbm_state
);
1128 props_res
= (struct hbm_props_response
*)mei_msg
;
1130 if (props_res
->status
) {
1131 dev_err(dev
->dev
, "hbm: properties response: wrong status = %d %s\n",
1133 mei_hbm_status_str(props_res
->status
));
1137 mei_hbm_me_cl_add(dev
, props_res
);
1139 dev
->me_client_index
++;
1141 /* request property for the next client */
1142 if (mei_hbm_prop_req(dev
))
1147 case HOST_ENUM_RES_CMD
:
1148 dev_dbg(dev
->dev
, "hbm: enumeration response: message received\n");
1150 dev
->init_clients_timer
= 0;
1152 enum_res
= (struct hbm_host_enum_response
*) mei_msg
;
1153 BUILD_BUG_ON(sizeof(dev
->me_clients_map
)
1154 < sizeof(enum_res
->valid_addresses
));
1155 memcpy(dev
->me_clients_map
, enum_res
->valid_addresses
,
1156 sizeof(enum_res
->valid_addresses
));
1158 if (dev
->dev_state
!= MEI_DEV_INIT_CLIENTS
||
1159 dev
->hbm_state
!= MEI_HBM_ENUM_CLIENTS
) {
1160 dev_err(dev
->dev
, "hbm: enumeration response: state mismatch, [%d, %d]\n",
1161 dev
->dev_state
, dev
->hbm_state
);
1165 dev
->hbm_state
= MEI_HBM_CLIENT_PROPERTIES
;
1167 /* first property request */
1168 if (mei_hbm_prop_req(dev
))
1173 case HOST_STOP_RES_CMD
:
1174 dev_dbg(dev
->dev
, "hbm: stop response: message received\n");
1176 dev
->init_clients_timer
= 0;
1178 if (dev
->hbm_state
!= MEI_HBM_STOPPED
) {
1179 dev_err(dev
->dev
, "hbm: stop response: state mismatch, [%d, %d]\n",
1180 dev
->dev_state
, dev
->hbm_state
);
1184 dev
->dev_state
= MEI_DEV_POWER_DOWN
;
1185 dev_info(dev
->dev
, "hbm: stop response: resetting.\n");
1186 /* force the reset */
1190 case CLIENT_DISCONNECT_REQ_CMD
:
1191 dev_dbg(dev
->dev
, "hbm: disconnect request: message received\n");
1193 disconnect_req
= (struct hbm_client_connect_request
*)mei_msg
;
1194 mei_hbm_fw_disconnect_req(dev
, disconnect_req
);
1197 case ME_STOP_REQ_CMD
:
1198 dev_dbg(dev
->dev
, "hbm: stop request: message received\n");
1199 dev
->hbm_state
= MEI_HBM_STOPPED
;
1200 if (mei_hbm_stop_req(dev
)) {
1201 dev_err(dev
->dev
, "hbm: stop request: failed to send stop request\n");
1206 case MEI_HBM_ADD_CLIENT_REQ_CMD
:
1207 dev_dbg(dev
->dev
, "hbm: add client request received\n");
1209 * after the host receives the enum_resp
1210 * message clients may be added or removed
1212 if (dev
->hbm_state
<= MEI_HBM_ENUM_CLIENTS
||
1213 dev
->hbm_state
>= MEI_HBM_STOPPED
) {
1214 dev_err(dev
->dev
, "hbm: add client: state mismatch, [%d, %d]\n",
1215 dev
->dev_state
, dev
->hbm_state
);
1218 add_cl_req
= (struct hbm_add_client_request
*)mei_msg
;
1219 ret
= mei_hbm_fw_add_cl_req(dev
, add_cl_req
);
1221 dev_err(dev
->dev
, "hbm: add client: failed to send response %d\n",
1225 dev_dbg(dev
->dev
, "hbm: add client request processed\n");
1228 case MEI_HBM_NOTIFY_RES_CMD
:
1229 dev_dbg(dev
->dev
, "hbm: notify response received\n");
1230 mei_hbm_cl_res(dev
, cl_cmd
, notify_res_to_fop(cl_cmd
));
1233 case MEI_HBM_NOTIFICATION_CMD
:
1234 dev_dbg(dev
->dev
, "hbm: notification\n");
1235 mei_hbm_cl_notify(dev
, cl_cmd
);