Loading...
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * Copyright (c) 2012-2022, Intel Corporation. All rights reserved.
4 * Intel Management Engine Interface (Intel MEI) Linux driver
5 */
6
7#include <linux/export.h>
8#include <linux/sched.h>
9#include <linux/wait.h>
10#include <linux/delay.h>
11
12#include <linux/mei.h>
13
14#include "mei_dev.h"
15#include "hbm.h"
16#include "client.h"
17
18const char *mei_dev_state_str(int state)
19{
20#define MEI_DEV_STATE(state) case MEI_DEV_##state: return #state
21 switch (state) {
22 MEI_DEV_STATE(INITIALIZING);
23 MEI_DEV_STATE(INIT_CLIENTS);
24 MEI_DEV_STATE(ENABLED);
25 MEI_DEV_STATE(RESETTING);
26 MEI_DEV_STATE(DISABLED);
27 MEI_DEV_STATE(POWERING_DOWN);
28 MEI_DEV_STATE(POWER_DOWN);
29 MEI_DEV_STATE(POWER_UP);
30 default:
31 return "unknown";
32 }
33#undef MEI_DEV_STATE
34}
35
36const char *mei_pg_state_str(enum mei_pg_state state)
37{
38#define MEI_PG_STATE(state) case MEI_PG_##state: return #state
39 switch (state) {
40 MEI_PG_STATE(OFF);
41 MEI_PG_STATE(ON);
42 default:
43 return "unknown";
44 }
45#undef MEI_PG_STATE
46}
47
48/**
49 * mei_fw_status2str - convert fw status registers to printable string
50 *
51 * @fw_status: firmware status
52 * @buf: string buffer at minimal size MEI_FW_STATUS_STR_SZ
53 * @len: buffer len must be >= MEI_FW_STATUS_STR_SZ
54 *
55 * Return: number of bytes written or -EINVAL if buffer is to small
56 */
57ssize_t mei_fw_status2str(struct mei_fw_status *fw_status,
58 char *buf, size_t len)
59{
60 ssize_t cnt = 0;
61 int i;
62
63 buf[0] = '\0';
64
65 if (len < MEI_FW_STATUS_STR_SZ)
66 return -EINVAL;
67
68 for (i = 0; i < fw_status->count; i++)
69 cnt += scnprintf(buf + cnt, len - cnt, "%08X ",
70 fw_status->status[i]);
71
72 /* drop last space */
73 buf[cnt] = '\0';
74 return cnt;
75}
76EXPORT_SYMBOL_GPL(mei_fw_status2str);
77
78/**
79 * mei_cancel_work - Cancel mei background jobs
80 *
81 * @dev: the device structure
82 */
83void mei_cancel_work(struct mei_device *dev)
84{
85 cancel_work_sync(&dev->reset_work);
86 cancel_work_sync(&dev->bus_rescan_work);
87
88 cancel_delayed_work_sync(&dev->timer_work);
89}
90EXPORT_SYMBOL_GPL(mei_cancel_work);
91
92static void mei_save_fw_status(struct mei_device *dev)
93{
94 struct mei_fw_status fw_status;
95 int ret;
96
97 ret = mei_fw_status(dev, &fw_status);
98 if (ret) {
99 dev_err(dev->dev, "failed to read firmware status: %d\n", ret);
100 return;
101 }
102
103 dev->saved_dev_state = dev->dev_state;
104 dev->saved_fw_status_flag = true;
105 memcpy(&dev->saved_fw_status, &fw_status, sizeof(fw_status));
106}
107
108/**
109 * mei_reset - resets host and fw.
110 *
111 * @dev: the device structure
112 *
113 * Return: 0 on success or < 0 if the reset hasn't succeeded
114 */
115int mei_reset(struct mei_device *dev)
116{
117 enum mei_dev_state state = dev->dev_state;
118 bool interrupts_enabled;
119 int ret;
120
121 if (state != MEI_DEV_INITIALIZING &&
122 state != MEI_DEV_DISABLED &&
123 state != MEI_DEV_POWER_DOWN &&
124 state != MEI_DEV_POWER_UP) {
125 char fw_sts_str[MEI_FW_STATUS_STR_SZ];
126
127 mei_fw_status_str(dev, fw_sts_str, MEI_FW_STATUS_STR_SZ);
128 if (kind_is_gsc(dev) || kind_is_gscfi(dev)) {
129 dev_dbg(dev->dev, "unexpected reset: dev_state = %s fw status = %s\n",
130 mei_dev_state_str(state), fw_sts_str);
131 mei_save_fw_status(dev);
132 } else {
133 dev_warn(dev->dev, "unexpected reset: dev_state = %s fw status = %s\n",
134 mei_dev_state_str(state), fw_sts_str);
135 }
136 }
137
138 mei_clear_interrupts(dev);
139
140 /* we're already in reset, cancel the init timer
141 * if the reset was called due the hbm protocol error
142 * we need to call it before hw start
143 * so the hbm watchdog won't kick in
144 */
145 mei_hbm_idle(dev);
146
147 /* enter reset flow */
148 interrupts_enabled = state != MEI_DEV_POWER_DOWN;
149 mei_set_devstate(dev, MEI_DEV_RESETTING);
150
151 dev->reset_count++;
152 if (dev->reset_count > MEI_MAX_CONSEC_RESET) {
153 dev_err(dev->dev, "reset: reached maximal consecutive resets: disabling the device\n");
154 mei_set_devstate(dev, MEI_DEV_DISABLED);
155 return -ENODEV;
156 }
157
158 ret = mei_hw_reset(dev, interrupts_enabled);
159 /* fall through and remove the sw state even if hw reset has failed */
160
161 /* no need to clean up software state in case of power up */
162 if (state != MEI_DEV_INITIALIZING && state != MEI_DEV_POWER_UP)
163 mei_cl_all_disconnect(dev);
164
165 mei_hbm_reset(dev);
166
167 /* clean stale FW version */
168 dev->fw_ver_received = 0;
169
170 memset(dev->rd_msg_hdr, 0, sizeof(dev->rd_msg_hdr));
171
172 if (ret) {
173 dev_err(dev->dev, "hw_reset failed ret = %d\n", ret);
174 return ret;
175 }
176
177 if (state == MEI_DEV_POWER_DOWN) {
178 dev_dbg(dev->dev, "powering down: end of reset\n");
179 mei_set_devstate(dev, MEI_DEV_DISABLED);
180 return 0;
181 }
182
183 ret = mei_hw_start(dev);
184 if (ret) {
185 char fw_sts_str[MEI_FW_STATUS_STR_SZ];
186
187 mei_fw_status_str(dev, fw_sts_str, MEI_FW_STATUS_STR_SZ);
188 dev_err(dev->dev, "hw_start failed ret = %d fw status = %s\n", ret, fw_sts_str);
189 return ret;
190 }
191
192 if (dev->dev_state != MEI_DEV_RESETTING) {
193 dev_dbg(dev->dev, "wrong state = %d on link start\n", dev->dev_state);
194 return 0;
195 }
196
197 dev_dbg(dev->dev, "link is established start sending messages.\n");
198
199 mei_set_devstate(dev, MEI_DEV_INIT_CLIENTS);
200 ret = mei_hbm_start_req(dev);
201 if (ret) {
202 dev_err(dev->dev, "hbm_start failed ret = %d\n", ret);
203 mei_set_devstate(dev, MEI_DEV_RESETTING);
204 return ret;
205 }
206
207 return 0;
208}
209EXPORT_SYMBOL_GPL(mei_reset);
210
211/**
212 * mei_start - initializes host and fw to start work.
213 *
214 * @dev: the device structure
215 *
216 * Return: 0 on success, <0 on failure.
217 */
218int mei_start(struct mei_device *dev)
219{
220 int ret;
221
222 mutex_lock(&dev->device_lock);
223
224 /* acknowledge interrupt and stop interrupts */
225 mei_clear_interrupts(dev);
226
227 ret = mei_hw_config(dev);
228 if (ret)
229 goto err;
230
231 dev_dbg(dev->dev, "reset in start the mei device.\n");
232
233 dev->reset_count = 0;
234 do {
235 mei_set_devstate(dev, MEI_DEV_INITIALIZING);
236 ret = mei_reset(dev);
237
238 if (ret == -ENODEV || dev->dev_state == MEI_DEV_DISABLED) {
239 dev_err(dev->dev, "reset failed ret = %d", ret);
240 goto err;
241 }
242 } while (ret);
243
244 if (mei_hbm_start_wait(dev)) {
245 dev_err(dev->dev, "HBM haven't started");
246 goto err;
247 }
248
249 if (!mei_hbm_version_is_supported(dev)) {
250 dev_dbg(dev->dev, "MEI start failed.\n");
251 goto err;
252 }
253
254 dev_dbg(dev->dev, "link layer has been established.\n");
255
256 mutex_unlock(&dev->device_lock);
257 return 0;
258err:
259 dev_err(dev->dev, "link layer initialization failed.\n");
260 mei_set_devstate(dev, MEI_DEV_DISABLED);
261 mutex_unlock(&dev->device_lock);
262 return -ENODEV;
263}
264EXPORT_SYMBOL_GPL(mei_start);
265
266/**
267 * mei_restart - restart device after suspend
268 *
269 * @dev: the device structure
270 *
271 * Return: 0 on success or -ENODEV if the restart hasn't succeeded
272 */
273int mei_restart(struct mei_device *dev)
274{
275 int err;
276
277 mutex_lock(&dev->device_lock);
278
279 mei_set_devstate(dev, MEI_DEV_POWER_UP);
280 dev->reset_count = 0;
281
282 err = mei_reset(dev);
283
284 mutex_unlock(&dev->device_lock);
285
286 if (err == -ENODEV || dev->dev_state == MEI_DEV_DISABLED) {
287 dev_err(dev->dev, "device disabled = %d\n", err);
288 return -ENODEV;
289 }
290
291 /* try to start again */
292 if (err)
293 schedule_work(&dev->reset_work);
294
295
296 return 0;
297}
298EXPORT_SYMBOL_GPL(mei_restart);
299
300static void mei_reset_work(struct work_struct *work)
301{
302 struct mei_device *dev =
303 container_of(work, struct mei_device, reset_work);
304 int ret;
305
306 mei_clear_interrupts(dev);
307 mei_synchronize_irq(dev);
308
309 mutex_lock(&dev->device_lock);
310
311 ret = mei_reset(dev);
312
313 mutex_unlock(&dev->device_lock);
314
315 if (dev->dev_state == MEI_DEV_DISABLED) {
316 dev_err(dev->dev, "device disabled = %d\n", ret);
317 return;
318 }
319
320 /* retry reset in case of failure */
321 if (ret)
322 schedule_work(&dev->reset_work);
323}
324
325void mei_stop(struct mei_device *dev)
326{
327 dev_dbg(dev->dev, "stopping the device.\n");
328
329 mutex_lock(&dev->device_lock);
330 mei_set_devstate(dev, MEI_DEV_POWERING_DOWN);
331 mutex_unlock(&dev->device_lock);
332 mei_cl_bus_remove_devices(dev);
333 mutex_lock(&dev->device_lock);
334 mei_set_devstate(dev, MEI_DEV_POWER_DOWN);
335 mutex_unlock(&dev->device_lock);
336
337 mei_cancel_work(dev);
338
339 mei_clear_interrupts(dev);
340 mei_synchronize_irq(dev);
341 /* to catch HW-initiated reset */
342 mei_cancel_work(dev);
343
344 mutex_lock(&dev->device_lock);
345
346 mei_reset(dev);
347 /* move device to disabled state unconditionally */
348 mei_set_devstate(dev, MEI_DEV_DISABLED);
349
350 mutex_unlock(&dev->device_lock);
351}
352EXPORT_SYMBOL_GPL(mei_stop);
353
354/**
355 * mei_write_is_idle - check if the write queues are idle
356 *
357 * @dev: the device structure
358 *
359 * Return: true of there is no pending write
360 */
361bool mei_write_is_idle(struct mei_device *dev)
362{
363 bool idle = (dev->dev_state == MEI_DEV_ENABLED &&
364 list_empty(&dev->ctrl_wr_list) &&
365 list_empty(&dev->write_list) &&
366 list_empty(&dev->write_waiting_list));
367
368 dev_dbg(dev->dev, "write pg: is idle[%d] state=%s ctrl=%01d write=%01d wwait=%01d\n",
369 idle,
370 mei_dev_state_str(dev->dev_state),
371 list_empty(&dev->ctrl_wr_list),
372 list_empty(&dev->write_list),
373 list_empty(&dev->write_waiting_list));
374
375 return idle;
376}
377EXPORT_SYMBOL_GPL(mei_write_is_idle);
378
379/**
380 * mei_device_init - initialize mei_device structure
381 *
382 * @dev: the mei device
383 * @device: the device structure
384 * @slow_fw: configure longer timeouts as FW is slow
385 * @hw_ops: hw operations
386 */
387void mei_device_init(struct mei_device *dev,
388 struct device *device,
389 bool slow_fw,
390 const struct mei_hw_ops *hw_ops)
391{
392 /* setup our list array */
393 INIT_LIST_HEAD(&dev->file_list);
394 INIT_LIST_HEAD(&dev->device_list);
395 INIT_LIST_HEAD(&dev->me_clients);
396 mutex_init(&dev->device_lock);
397 init_rwsem(&dev->me_clients_rwsem);
398 mutex_init(&dev->cl_bus_lock);
399 init_waitqueue_head(&dev->wait_hw_ready);
400 init_waitqueue_head(&dev->wait_pg);
401 init_waitqueue_head(&dev->wait_hbm_start);
402 dev->dev_state = MEI_DEV_INITIALIZING;
403 dev->reset_count = 0;
404
405 INIT_LIST_HEAD(&dev->write_list);
406 INIT_LIST_HEAD(&dev->write_waiting_list);
407 INIT_LIST_HEAD(&dev->ctrl_wr_list);
408 INIT_LIST_HEAD(&dev->ctrl_rd_list);
409 dev->tx_queue_limit = MEI_TX_QUEUE_LIMIT_DEFAULT;
410
411 INIT_DELAYED_WORK(&dev->timer_work, mei_timer);
412 INIT_WORK(&dev->reset_work, mei_reset_work);
413 INIT_WORK(&dev->bus_rescan_work, mei_cl_bus_rescan_work);
414
415 bitmap_zero(dev->host_clients_map, MEI_CLIENTS_MAX);
416 dev->open_handle_count = 0;
417
418 dev->pxp_mode = MEI_DEV_PXP_DEFAULT;
419 dev->gsc_reset_to_pxp = MEI_DEV_RESET_TO_PXP_DEFAULT;
420
421 /*
422 * Reserving the first client ID
423 * 0: Reserved for MEI Bus Message communications
424 */
425 bitmap_set(dev->host_clients_map, 0, 1);
426
427 dev->pg_event = MEI_PG_EVENT_IDLE;
428 dev->ops = hw_ops;
429 dev->dev = device;
430
431 dev->timeouts.hw_ready = mei_secs_to_jiffies(MEI_HW_READY_TIMEOUT);
432 dev->timeouts.connect = MEI_CONNECT_TIMEOUT;
433 dev->timeouts.client_init = MEI_CLIENTS_INIT_TIMEOUT;
434 dev->timeouts.pgi = mei_secs_to_jiffies(MEI_PGI_TIMEOUT);
435 dev->timeouts.d0i3 = mei_secs_to_jiffies(MEI_D0I3_TIMEOUT);
436 if (slow_fw) {
437 dev->timeouts.cl_connect = mei_secs_to_jiffies(MEI_CL_CONNECT_TIMEOUT_SLOW);
438 dev->timeouts.hbm = mei_secs_to_jiffies(MEI_HBM_TIMEOUT_SLOW);
439 dev->timeouts.mkhi_recv = msecs_to_jiffies(MKHI_RCV_TIMEOUT_SLOW);
440 } else {
441 dev->timeouts.cl_connect = mei_secs_to_jiffies(MEI_CL_CONNECT_TIMEOUT);
442 dev->timeouts.hbm = mei_secs_to_jiffies(MEI_HBM_TIMEOUT);
443 dev->timeouts.mkhi_recv = msecs_to_jiffies(MKHI_RCV_TIMEOUT);
444 }
445}
446EXPORT_SYMBOL_GPL(mei_device_init);
447
1/*
2 *
3 * Intel Management Engine Interface (Intel MEI) Linux driver
4 * Copyright (c) 2003-2012, Intel Corporation.
5 *
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.
9 *
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
13 * more details.
14 *
15 */
16
17#include <linux/pci.h>
18#include <linux/sched.h>
19#include <linux/wait.h>
20#include <linux/delay.h>
21
22#include "mei_dev.h"
23#include "hw.h"
24#include "interface.h"
25#include <linux/mei.h>
26
27const uuid_le mei_amthi_guid = UUID_LE(0x12f80028, 0xb4b7, 0x4b2d, 0xac,
28 0xa8, 0x46, 0xe0, 0xff, 0x65,
29 0x81, 0x4c);
30
31/**
32 * mei_io_list_init - Sets up a queue list.
33 *
34 * @list: An instance io list structure
35 * @dev: the device structure
36 */
37void mei_io_list_init(struct mei_io_list *list)
38{
39 /* initialize our queue list */
40 INIT_LIST_HEAD(&list->mei_cb.cb_list);
41}
42
43/**
44 * mei_io_list_flush - removes list entry belonging to cl.
45 *
46 * @list: An instance of our list structure
47 * @cl: private data of the file object
48 */
49void mei_io_list_flush(struct mei_io_list *list, struct mei_cl *cl)
50{
51 struct mei_cl_cb *pos;
52 struct mei_cl_cb *next;
53
54 list_for_each_entry_safe(pos, next, &list->mei_cb.cb_list, cb_list) {
55 if (pos->file_private) {
56 struct mei_cl *cl_tmp;
57 cl_tmp = (struct mei_cl *)pos->file_private;
58 if (mei_cl_cmp_id(cl, cl_tmp))
59 list_del(&pos->cb_list);
60 }
61 }
62}
63/**
64 * mei_cl_flush_queues - flushes queue lists belonging to cl.
65 *
66 * @dev: the device structure
67 * @cl: private data of the file object
68 */
69int mei_cl_flush_queues(struct mei_cl *cl)
70{
71 if (!cl || !cl->dev)
72 return -EINVAL;
73
74 dev_dbg(&cl->dev->pdev->dev, "remove list entry belonging to cl\n");
75 mei_io_list_flush(&cl->dev->read_list, cl);
76 mei_io_list_flush(&cl->dev->write_list, cl);
77 mei_io_list_flush(&cl->dev->write_waiting_list, cl);
78 mei_io_list_flush(&cl->dev->ctrl_wr_list, cl);
79 mei_io_list_flush(&cl->dev->ctrl_rd_list, cl);
80 mei_io_list_flush(&cl->dev->amthi_cmd_list, cl);
81 mei_io_list_flush(&cl->dev->amthi_read_complete_list, cl);
82 return 0;
83}
84
85
86
87/**
88 * mei_reset_iamthif_params - initializes mei device iamthif
89 *
90 * @dev: the device structure
91 */
92static void mei_reset_iamthif_params(struct mei_device *dev)
93{
94 /* reset iamthif parameters. */
95 dev->iamthif_current_cb = NULL;
96 dev->iamthif_msg_buf_size = 0;
97 dev->iamthif_msg_buf_index = 0;
98 dev->iamthif_canceled = false;
99 dev->iamthif_ioctl = false;
100 dev->iamthif_state = MEI_IAMTHIF_IDLE;
101 dev->iamthif_timer = 0;
102}
103
104/**
105 * init_mei_device - allocates and initializes the mei device structure
106 *
107 * @pdev: The pci device structure
108 *
109 * returns The mei_device_device pointer on success, NULL on failure.
110 */
111struct mei_device *mei_device_init(struct pci_dev *pdev)
112{
113 struct mei_device *dev;
114
115 dev = kzalloc(sizeof(struct mei_device), GFP_KERNEL);
116 if (!dev)
117 return NULL;
118
119 /* setup our list array */
120 INIT_LIST_HEAD(&dev->file_list);
121 INIT_LIST_HEAD(&dev->wd_cl.link);
122 INIT_LIST_HEAD(&dev->iamthif_cl.link);
123 mutex_init(&dev->device_lock);
124 init_waitqueue_head(&dev->wait_recvd_msg);
125 init_waitqueue_head(&dev->wait_stop_wd);
126 dev->mei_state = MEI_INITIALIZING;
127 dev->iamthif_state = MEI_IAMTHIF_IDLE;
128 dev->wd_interface_reg = false;
129
130
131 mei_io_list_init(&dev->read_list);
132 mei_io_list_init(&dev->write_list);
133 mei_io_list_init(&dev->write_waiting_list);
134 mei_io_list_init(&dev->ctrl_wr_list);
135 mei_io_list_init(&dev->ctrl_rd_list);
136 mei_io_list_init(&dev->amthi_cmd_list);
137 mei_io_list_init(&dev->amthi_read_complete_list);
138 dev->pdev = pdev;
139 return dev;
140}
141
142/**
143 * mei_hw_init - initializes host and fw to start work.
144 *
145 * @dev: the device structure
146 *
147 * returns 0 on success, <0 on failure.
148 */
149int mei_hw_init(struct mei_device *dev)
150{
151 int err = 0;
152 int ret;
153
154 mutex_lock(&dev->device_lock);
155
156 dev->host_hw_state = mei_hcsr_read(dev);
157 dev->me_hw_state = mei_mecsr_read(dev);
158 dev_dbg(&dev->pdev->dev, "host_hw_state = 0x%08x, mestate = 0x%08x.\n",
159 dev->host_hw_state, dev->me_hw_state);
160
161 /* acknowledge interrupt and stop interupts */
162 if ((dev->host_hw_state & H_IS) == H_IS)
163 mei_reg_write(dev, H_CSR, dev->host_hw_state);
164
165 dev->recvd_msg = false;
166 dev_dbg(&dev->pdev->dev, "reset in start the mei device.\n");
167
168 mei_reset(dev, 1);
169
170 dev_dbg(&dev->pdev->dev, "host_hw_state = 0x%08x, me_hw_state = 0x%08x.\n",
171 dev->host_hw_state, dev->me_hw_state);
172
173 /* wait for ME to turn on ME_RDY */
174 if (!dev->recvd_msg) {
175 mutex_unlock(&dev->device_lock);
176 err = wait_event_interruptible_timeout(dev->wait_recvd_msg,
177 dev->recvd_msg, MEI_INTEROP_TIMEOUT);
178 mutex_lock(&dev->device_lock);
179 }
180
181 if (err <= 0 && !dev->recvd_msg) {
182 dev->mei_state = MEI_DISABLED;
183 dev_dbg(&dev->pdev->dev,
184 "wait_event_interruptible_timeout failed"
185 "on wait for ME to turn on ME_RDY.\n");
186 ret = -ENODEV;
187 goto out;
188 }
189
190 if (!(((dev->host_hw_state & H_RDY) == H_RDY) &&
191 ((dev->me_hw_state & ME_RDY_HRA) == ME_RDY_HRA))) {
192 dev->mei_state = MEI_DISABLED;
193 dev_dbg(&dev->pdev->dev,
194 "host_hw_state = 0x%08x, me_hw_state = 0x%08x.\n",
195 dev->host_hw_state, dev->me_hw_state);
196
197 if (!(dev->host_hw_state & H_RDY))
198 dev_dbg(&dev->pdev->dev, "host turn off H_RDY.\n");
199
200 if (!(dev->me_hw_state & ME_RDY_HRA))
201 dev_dbg(&dev->pdev->dev, "ME turn off ME_RDY.\n");
202
203 dev_err(&dev->pdev->dev, "link layer initialization failed.\n");
204 ret = -ENODEV;
205 goto out;
206 }
207
208 if (dev->version.major_version != HBM_MAJOR_VERSION ||
209 dev->version.minor_version != HBM_MINOR_VERSION) {
210 dev_dbg(&dev->pdev->dev, "MEI start failed.\n");
211 ret = -ENODEV;
212 goto out;
213 }
214
215 dev->recvd_msg = false;
216 dev_dbg(&dev->pdev->dev, "host_hw_state = 0x%08x, me_hw_state = 0x%08x.\n",
217 dev->host_hw_state, dev->me_hw_state);
218 dev_dbg(&dev->pdev->dev, "ME turn on ME_RDY and host turn on H_RDY.\n");
219 dev_dbg(&dev->pdev->dev, "link layer has been established.\n");
220 dev_dbg(&dev->pdev->dev, "MEI start success.\n");
221 ret = 0;
222
223out:
224 mutex_unlock(&dev->device_lock);
225 return ret;
226}
227
228/**
229 * mei_hw_reset - resets fw via mei csr register.
230 *
231 * @dev: the device structure
232 * @interrupts_enabled: if interrupt should be enabled after reset.
233 */
234static void mei_hw_reset(struct mei_device *dev, int interrupts_enabled)
235{
236 dev->host_hw_state |= (H_RST | H_IG);
237
238 if (interrupts_enabled)
239 mei_enable_interrupts(dev);
240 else
241 mei_disable_interrupts(dev);
242}
243
244/**
245 * mei_reset - resets host and fw.
246 *
247 * @dev: the device structure
248 * @interrupts_enabled: if interrupt should be enabled after reset.
249 */
250void mei_reset(struct mei_device *dev, int interrupts_enabled)
251{
252 struct mei_cl *cl_pos = NULL;
253 struct mei_cl *cl_next = NULL;
254 struct mei_cl_cb *cb_pos = NULL;
255 struct mei_cl_cb *cb_next = NULL;
256 bool unexpected;
257
258 if (dev->mei_state == MEI_RECOVERING_FROM_RESET) {
259 dev->need_reset = true;
260 return;
261 }
262
263 unexpected = (dev->mei_state != MEI_INITIALIZING &&
264 dev->mei_state != MEI_DISABLED &&
265 dev->mei_state != MEI_POWER_DOWN &&
266 dev->mei_state != MEI_POWER_UP);
267
268 dev->host_hw_state = mei_hcsr_read(dev);
269
270 dev_dbg(&dev->pdev->dev, "before reset host_hw_state = 0x%08x.\n",
271 dev->host_hw_state);
272
273 mei_hw_reset(dev, interrupts_enabled);
274
275 dev->host_hw_state &= ~H_RST;
276 dev->host_hw_state |= H_IG;
277
278 mei_hcsr_set(dev);
279
280 dev_dbg(&dev->pdev->dev, "currently saved host_hw_state = 0x%08x.\n",
281 dev->host_hw_state);
282
283 dev->need_reset = false;
284
285 if (dev->mei_state != MEI_INITIALIZING) {
286 if (dev->mei_state != MEI_DISABLED &&
287 dev->mei_state != MEI_POWER_DOWN)
288 dev->mei_state = MEI_RESETING;
289
290 list_for_each_entry_safe(cl_pos,
291 cl_next, &dev->file_list, link) {
292 cl_pos->state = MEI_FILE_DISCONNECTED;
293 cl_pos->mei_flow_ctrl_creds = 0;
294 cl_pos->read_cb = NULL;
295 cl_pos->timer_count = 0;
296 }
297 /* remove entry if already in list */
298 dev_dbg(&dev->pdev->dev, "list del iamthif and wd file list.\n");
299 mei_remove_client_from_file_list(dev,
300 dev->wd_cl.host_client_id);
301
302 mei_remove_client_from_file_list(dev,
303 dev->iamthif_cl.host_client_id);
304
305 mei_reset_iamthif_params(dev);
306 dev->wd_due_counter = 0;
307 dev->extra_write_index = 0;
308 }
309
310 dev->me_clients_num = 0;
311 dev->rd_msg_hdr = 0;
312 dev->stop = false;
313 dev->wd_pending = false;
314
315 /* update the state of the registers after reset */
316 dev->host_hw_state = mei_hcsr_read(dev);
317 dev->me_hw_state = mei_mecsr_read(dev);
318
319 dev_dbg(&dev->pdev->dev, "after reset host_hw_state = 0x%08x, me_hw_state = 0x%08x.\n",
320 dev->host_hw_state, dev->me_hw_state);
321
322 if (unexpected)
323 dev_warn(&dev->pdev->dev, "unexpected reset.\n");
324
325 /* Wake up all readings so they can be interrupted */
326 list_for_each_entry_safe(cl_pos, cl_next, &dev->file_list, link) {
327 if (waitqueue_active(&cl_pos->rx_wait)) {
328 dev_dbg(&dev->pdev->dev, "Waking up client!\n");
329 wake_up_interruptible(&cl_pos->rx_wait);
330 }
331 }
332 /* remove all waiting requests */
333 list_for_each_entry_safe(cb_pos, cb_next,
334 &dev->write_list.mei_cb.cb_list, cb_list) {
335 list_del(&cb_pos->cb_list);
336 mei_free_cb_private(cb_pos);
337 }
338}
339
340
341
342/**
343 * host_start_message - mei host sends start message.
344 *
345 * @dev: the device structure
346 *
347 * returns none.
348 */
349void mei_host_start_message(struct mei_device *dev)
350{
351 struct mei_msg_hdr *mei_hdr;
352 struct hbm_host_version_request *host_start_req;
353
354 /* host start message */
355 mei_hdr = (struct mei_msg_hdr *) &dev->wr_msg_buf[0];
356 mei_hdr->host_addr = 0;
357 mei_hdr->me_addr = 0;
358 mei_hdr->length = sizeof(struct hbm_host_version_request);
359 mei_hdr->msg_complete = 1;
360 mei_hdr->reserved = 0;
361
362 host_start_req =
363 (struct hbm_host_version_request *) &dev->wr_msg_buf[1];
364 memset(host_start_req, 0, sizeof(struct hbm_host_version_request));
365 host_start_req->hbm_cmd = HOST_START_REQ_CMD;
366 host_start_req->host_version.major_version = HBM_MAJOR_VERSION;
367 host_start_req->host_version.minor_version = HBM_MINOR_VERSION;
368 dev->recvd_msg = false;
369 if (mei_write_message(dev, mei_hdr, (unsigned char *)host_start_req,
370 mei_hdr->length)) {
371 dev_dbg(&dev->pdev->dev, "write send version message to FW fail.\n");
372 dev->mei_state = MEI_RESETING;
373 mei_reset(dev, 1);
374 }
375 dev->init_clients_state = MEI_START_MESSAGE;
376 dev->init_clients_timer = INIT_CLIENTS_TIMEOUT;
377 return ;
378}
379
380/**
381 * host_enum_clients_message - host sends enumeration client request message.
382 *
383 * @dev: the device structure
384 *
385 * returns none.
386 */
387void mei_host_enum_clients_message(struct mei_device *dev)
388{
389 struct mei_msg_hdr *mei_hdr;
390 struct hbm_host_enum_request *host_enum_req;
391 mei_hdr = (struct mei_msg_hdr *) &dev->wr_msg_buf[0];
392 /* enumerate clients */
393 mei_hdr->host_addr = 0;
394 mei_hdr->me_addr = 0;
395 mei_hdr->length = sizeof(struct hbm_host_enum_request);
396 mei_hdr->msg_complete = 1;
397 mei_hdr->reserved = 0;
398
399 host_enum_req = (struct hbm_host_enum_request *) &dev->wr_msg_buf[1];
400 memset(host_enum_req, 0, sizeof(struct hbm_host_enum_request));
401 host_enum_req->hbm_cmd = HOST_ENUM_REQ_CMD;
402 if (mei_write_message(dev, mei_hdr, (unsigned char *)host_enum_req,
403 mei_hdr->length)) {
404 dev->mei_state = MEI_RESETING;
405 dev_dbg(&dev->pdev->dev, "write send enumeration request message to FW fail.\n");
406 mei_reset(dev, 1);
407 }
408 dev->init_clients_state = MEI_ENUM_CLIENTS_MESSAGE;
409 dev->init_clients_timer = INIT_CLIENTS_TIMEOUT;
410 return;
411}
412
413
414/**
415 * allocate_me_clients_storage - allocates storage for me clients
416 *
417 * @dev: the device structure
418 *
419 * returns none.
420 */
421void mei_allocate_me_clients_storage(struct mei_device *dev)
422{
423 struct mei_me_client *clients;
424 int b;
425
426 /* count how many ME clients we have */
427 for_each_set_bit(b, dev->me_clients_map, MEI_CLIENTS_MAX)
428 dev->me_clients_num++;
429
430 if (dev->me_clients_num <= 0)
431 return ;
432
433
434 if (dev->me_clients != NULL) {
435 kfree(dev->me_clients);
436 dev->me_clients = NULL;
437 }
438 dev_dbg(&dev->pdev->dev, "memory allocation for ME clients size=%zd.\n",
439 dev->me_clients_num * sizeof(struct mei_me_client));
440 /* allocate storage for ME clients representation */
441 clients = kcalloc(dev->me_clients_num,
442 sizeof(struct mei_me_client), GFP_KERNEL);
443 if (!clients) {
444 dev_dbg(&dev->pdev->dev, "memory allocation for ME clients failed.\n");
445 dev->mei_state = MEI_RESETING;
446 mei_reset(dev, 1);
447 return ;
448 }
449 dev->me_clients = clients;
450 return ;
451}
452/**
453 * host_client_properties - reads properties for client
454 *
455 * @dev: the device structure
456 *
457 * returns:
458 * < 0 - Error.
459 * = 0 - no more clients.
460 * = 1 - still have clients to send properties request.
461 */
462int mei_host_client_properties(struct mei_device *dev)
463{
464 struct mei_msg_hdr *mei_header;
465 struct hbm_props_request *host_cli_req;
466 int b;
467 u8 client_num = dev->me_client_presentation_num;
468
469 b = dev->me_client_index;
470 b = find_next_bit(dev->me_clients_map, MEI_CLIENTS_MAX, b);
471 if (b < MEI_CLIENTS_MAX) {
472 dev->me_clients[client_num].client_id = b;
473 dev->me_clients[client_num].mei_flow_ctrl_creds = 0;
474 mei_header = (struct mei_msg_hdr *)&dev->wr_msg_buf[0];
475 mei_header->host_addr = 0;
476 mei_header->me_addr = 0;
477 mei_header->length = sizeof(struct hbm_props_request);
478 mei_header->msg_complete = 1;
479 mei_header->reserved = 0;
480
481 host_cli_req = (struct hbm_props_request *)&dev->wr_msg_buf[1];
482
483 memset(host_cli_req, 0, sizeof(struct hbm_props_request));
484
485 host_cli_req->hbm_cmd = HOST_CLIENT_PROPERTIES_REQ_CMD;
486 host_cli_req->address = b;
487
488 if (mei_write_message(dev, mei_header,
489 (unsigned char *)host_cli_req,
490 mei_header->length)) {
491 dev->mei_state = MEI_RESETING;
492 dev_dbg(&dev->pdev->dev, "write send enumeration request message to FW fail.\n");
493 mei_reset(dev, 1);
494 return -EIO;
495 }
496
497 dev->init_clients_timer = INIT_CLIENTS_TIMEOUT;
498 dev->me_client_index = b;
499 return 1;
500 }
501
502 return 0;
503}
504
505/**
506 * mei_init_file_private - initializes private file structure.
507 *
508 * @priv: private file structure to be initialized
509 * @file: the file structure
510 */
511void mei_cl_init(struct mei_cl *priv, struct mei_device *dev)
512{
513 memset(priv, 0, sizeof(struct mei_cl));
514 init_waitqueue_head(&priv->wait);
515 init_waitqueue_head(&priv->rx_wait);
516 init_waitqueue_head(&priv->tx_wait);
517 INIT_LIST_HEAD(&priv->link);
518 priv->reading_state = MEI_IDLE;
519 priv->writing_state = MEI_IDLE;
520 priv->dev = dev;
521}
522
523int mei_find_me_client_index(const struct mei_device *dev, uuid_le cuuid)
524{
525 int i, res = -1;
526
527 for (i = 0; i < dev->me_clients_num; ++i)
528 if (uuid_le_cmp(cuuid,
529 dev->me_clients[i].props.protocol_name) == 0) {
530 res = i;
531 break;
532 }
533
534 return res;
535}
536
537
538/**
539 * mei_find_me_client_update_filext - searches for ME client guid
540 * sets client_id in mei_file_private if found
541 * @dev: the device structure
542 * @priv: private file structure to set client_id in
543 * @cguid: searched guid of ME client
544 * @client_id: id of host client to be set in file private structure
545 *
546 * returns ME client index
547 */
548u8 mei_find_me_client_update_filext(struct mei_device *dev, struct mei_cl *priv,
549 const uuid_le *cguid, u8 client_id)
550{
551 int i;
552
553 if (!dev || !priv || !cguid)
554 return 0;
555
556 /* check for valid client id */
557 i = mei_find_me_client_index(dev, *cguid);
558 if (i >= 0) {
559 priv->me_client_id = dev->me_clients[i].client_id;
560 priv->state = MEI_FILE_CONNECTING;
561 priv->host_client_id = client_id;
562
563 list_add_tail(&priv->link, &dev->file_list);
564 return (u8)i;
565 }
566
567 return 0;
568}
569
570/**
571 * host_init_iamthif - mei initialization iamthif client.
572 *
573 * @dev: the device structure
574 *
575 */
576void mei_host_init_iamthif(struct mei_device *dev)
577{
578 u8 i;
579 unsigned char *msg_buf;
580
581 mei_cl_init(&dev->iamthif_cl, dev);
582 dev->iamthif_cl.state = MEI_FILE_DISCONNECTED;
583
584 /* find ME amthi client */
585 i = mei_find_me_client_update_filext(dev, &dev->iamthif_cl,
586 &mei_amthi_guid, MEI_IAMTHIF_HOST_CLIENT_ID);
587 if (dev->iamthif_cl.state != MEI_FILE_CONNECTING) {
588 dev_dbg(&dev->pdev->dev, "failed to find iamthif client.\n");
589 return;
590 }
591
592 /* Assign iamthif_mtu to the value received from ME */
593
594 dev->iamthif_mtu = dev->me_clients[i].props.max_msg_length;
595 dev_dbg(&dev->pdev->dev, "IAMTHIF_MTU = %d\n",
596 dev->me_clients[i].props.max_msg_length);
597
598 kfree(dev->iamthif_msg_buf);
599 dev->iamthif_msg_buf = NULL;
600
601 /* allocate storage for ME message buffer */
602 msg_buf = kcalloc(dev->iamthif_mtu,
603 sizeof(unsigned char), GFP_KERNEL);
604 if (!msg_buf) {
605 dev_dbg(&dev->pdev->dev, "memory allocation for ME message buffer failed.\n");
606 return;
607 }
608
609 dev->iamthif_msg_buf = msg_buf;
610
611 if (mei_connect(dev, &dev->iamthif_cl)) {
612 dev_dbg(&dev->pdev->dev, "Failed to connect to AMTHI client\n");
613 dev->iamthif_cl.state = MEI_FILE_DISCONNECTED;
614 dev->iamthif_cl.host_client_id = 0;
615 } else {
616 dev->iamthif_cl.timer_count = CONNECT_TIMEOUT;
617 }
618}
619
620/**
621 * mei_alloc_file_private - allocates a private file structure and sets it up.
622 * @file: the file structure
623 *
624 * returns The allocated file or NULL on failure
625 */
626struct mei_cl *mei_cl_allocate(struct mei_device *dev)
627{
628 struct mei_cl *cl;
629
630 cl = kmalloc(sizeof(struct mei_cl), GFP_KERNEL);
631 if (!cl)
632 return NULL;
633
634 mei_cl_init(cl, dev);
635
636 return cl;
637}
638
639
640
641/**
642 * mei_disconnect_host_client - sends disconnect message to fw from host client.
643 *
644 * @dev: the device structure
645 * @cl: private data of the file object
646 *
647 * Locking: called under "dev->device_lock" lock
648 *
649 * returns 0 on success, <0 on failure.
650 */
651int mei_disconnect_host_client(struct mei_device *dev, struct mei_cl *cl)
652{
653 int rets, err;
654 long timeout = 15; /* 15 seconds */
655 struct mei_cl_cb *cb;
656
657 if (!dev || !cl)
658 return -ENODEV;
659
660 if (cl->state != MEI_FILE_DISCONNECTING)
661 return 0;
662
663 cb = kzalloc(sizeof(struct mei_cl_cb), GFP_KERNEL);
664 if (!cb)
665 return -ENOMEM;
666
667 INIT_LIST_HEAD(&cb->cb_list);
668 cb->file_private = cl;
669 cb->major_file_operations = MEI_CLOSE;
670 if (dev->mei_host_buffer_is_empty) {
671 dev->mei_host_buffer_is_empty = false;
672 if (mei_disconnect(dev, cl)) {
673 rets = -ENODEV;
674 dev_dbg(&dev->pdev->dev, "failed to call mei_disconnect.\n");
675 goto free;
676 }
677 mdelay(10); /* Wait for hardware disconnection ready */
678 list_add_tail(&cb->cb_list, &dev->ctrl_rd_list.mei_cb.cb_list);
679 } else {
680 dev_dbg(&dev->pdev->dev, "add disconnect cb to control write list\n");
681 list_add_tail(&cb->cb_list,
682 &dev->ctrl_wr_list.mei_cb.cb_list);
683 }
684 mutex_unlock(&dev->device_lock);
685
686 err = wait_event_timeout(dev->wait_recvd_msg,
687 (MEI_FILE_DISCONNECTED == cl->state),
688 timeout * HZ);
689
690 mutex_lock(&dev->device_lock);
691 if (MEI_FILE_DISCONNECTED == cl->state) {
692 rets = 0;
693 dev_dbg(&dev->pdev->dev, "successfully disconnected from FW client.\n");
694 } else {
695 rets = -ENODEV;
696 if (MEI_FILE_DISCONNECTED != cl->state)
697 dev_dbg(&dev->pdev->dev, "wrong status client disconnect.\n");
698
699 if (err)
700 dev_dbg(&dev->pdev->dev,
701 "wait failed disconnect err=%08x\n",
702 err);
703
704 dev_dbg(&dev->pdev->dev, "failed to disconnect from FW client.\n");
705 }
706
707 mei_io_list_flush(&dev->ctrl_rd_list, cl);
708 mei_io_list_flush(&dev->ctrl_wr_list, cl);
709free:
710 mei_free_cb_private(cb);
711 return rets;
712}
713
714/**
715 * mei_remove_client_from_file_list -
716 * removes file private data from device file list
717 *
718 * @dev: the device structure
719 * @host_client_id: host client id to be removed
720 */
721void mei_remove_client_from_file_list(struct mei_device *dev,
722 u8 host_client_id)
723{
724 struct mei_cl *cl_pos = NULL;
725 struct mei_cl *cl_next = NULL;
726 list_for_each_entry_safe(cl_pos, cl_next, &dev->file_list, link) {
727 if (host_client_id == cl_pos->host_client_id) {
728 dev_dbg(&dev->pdev->dev, "remove host client = %d, ME client = %d\n",
729 cl_pos->host_client_id,
730 cl_pos->me_client_id);
731 list_del_init(&cl_pos->link);
732 break;
733 }
734 }
735}