init.c 17.3 KB
Newer Older
O
Oren Weil 已提交
1 2 3
/*
 *
 * Intel Management Engine Interface (Intel MEI) Linux driver
4
 * Copyright (c) 2003-2012, Intel Corporation.
O
Oren Weil 已提交
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms and conditions of the GNU General Public License,
 * version 2, as published by the Free Software Foundation.
 *
 * This program is distributed in the hope it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 * more details.
 *
 */

#include <linux/pci.h>
#include <linux/sched.h>
#include <linux/wait.h>
#include <linux/delay.h>

#include "mei_dev.h"
#include "hw.h"
#include "interface.h"
25
#include <linux/mei.h>
O
Oren Weil 已提交
26

27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
const char *mei_dev_state_str(int state)
{
#define MEI_DEV_STATE(state) case MEI_DEV_##state: return #state
	switch (state) {
	MEI_DEV_STATE(INITIALIZING);
	MEI_DEV_STATE(INIT_CLIENTS);
	MEI_DEV_STATE(ENABLED);
	MEI_DEV_STATE(RESETING);
	MEI_DEV_STATE(DISABLED);
	MEI_DEV_STATE(RECOVERING_FROM_RESET);
	MEI_DEV_STATE(POWER_DOWN);
	MEI_DEV_STATE(POWER_UP);
	default:
		return "unkown";
	}
#undef MEI_DEV_STATE
}


O
Oren Weil 已提交
46
/**
47
 * mei_io_list_flush - removes list entry belonging to cl.
O
Oren Weil 已提交
48 49 50 51
 *
 * @list:  An instance of our list structure
 * @cl: private data of the file object
 */
52
void mei_io_list_flush(struct mei_cl_cb *list, struct mei_cl *cl)
O
Oren Weil 已提交
53
{
54 55
	struct mei_cl_cb *pos;
	struct mei_cl_cb *next;
O
Oren Weil 已提交
56

57
	list_for_each_entry_safe(pos, next, &list->list, list) {
58 59
		if (pos->cl) {
			if (mei_cl_cmp_id(cl, pos->cl))
60
				list_del(&pos->list);
O
Oren Weil 已提交
61 62 63
		}
	}
}
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
/**
 * mei_cl_flush_queues - flushes queue lists belonging to cl.
 *
 * @dev: the device structure
 * @cl: private data of the file object
 */
int mei_cl_flush_queues(struct mei_cl *cl)
{
	if (!cl || !cl->dev)
		return -EINVAL;

	dev_dbg(&cl->dev->pdev->dev, "remove list entry belonging to cl\n");
	mei_io_list_flush(&cl->dev->read_list, cl);
	mei_io_list_flush(&cl->dev->write_list, cl);
	mei_io_list_flush(&cl->dev->write_waiting_list, cl);
	mei_io_list_flush(&cl->dev->ctrl_wr_list, cl);
	mei_io_list_flush(&cl->dev->ctrl_rd_list, cl);
81 82
	mei_io_list_flush(&cl->dev->amthif_cmd_list, cl);
	mei_io_list_flush(&cl->dev->amthif_rd_complete_list, cl);
83 84 85 86
	return 0;
}


O
Oren Weil 已提交
87 88 89 90 91 92 93 94

/**
 * init_mei_device - allocates and initializes the mei device structure
 *
 * @pdev: The pci device structure
 *
 * returns The mei_device_device pointer on success, NULL on failure.
 */
95
struct mei_device *mei_device_init(struct pci_dev *pdev)
O
Oren Weil 已提交
96 97 98 99 100 101 102 103 104 105 106 107 108 109
{
	struct mei_device *dev;

	dev = kzalloc(sizeof(struct mei_device), GFP_KERNEL);
	if (!dev)
		return NULL;

	/* setup our list array */
	INIT_LIST_HEAD(&dev->file_list);
	INIT_LIST_HEAD(&dev->wd_cl.link);
	INIT_LIST_HEAD(&dev->iamthif_cl.link);
	mutex_init(&dev->device_lock);
	init_waitqueue_head(&dev->wait_recvd_msg);
	init_waitqueue_head(&dev->wait_stop_wd);
110
	dev->dev_state = MEI_DEV_INITIALIZING;
O
Oren Weil 已提交
111
	dev->iamthif_state = MEI_IAMTHIF_IDLE;
112 113 114 115 116 117

	mei_io_list_init(&dev->read_list);
	mei_io_list_init(&dev->write_list);
	mei_io_list_init(&dev->write_waiting_list);
	mei_io_list_init(&dev->ctrl_wr_list);
	mei_io_list_init(&dev->ctrl_rd_list);
118 119
	mei_io_list_init(&dev->amthif_cmd_list);
	mei_io_list_init(&dev->amthif_rd_complete_list);
O
Oren Weil 已提交
120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
	dev->pdev = pdev;
	return dev;
}

/**
 * mei_hw_init - initializes host and fw to start work.
 *
 * @dev: the device structure
 *
 * returns 0 on success, <0 on failure.
 */
int mei_hw_init(struct mei_device *dev)
{
	int err = 0;
	int ret;

	mutex_lock(&dev->device_lock);

	dev->host_hw_state = mei_hcsr_read(dev);
	dev->me_hw_state = mei_mecsr_read(dev);
	dev_dbg(&dev->pdev->dev, "host_hw_state = 0x%08x, mestate = 0x%08x.\n",
	    dev->host_hw_state, dev->me_hw_state);

	/* acknowledge interrupt and stop interupts */
	if ((dev->host_hw_state & H_IS) == H_IS)
		mei_reg_write(dev, H_CSR, dev->host_hw_state);

147 148 149
	/* Doesn't change in runtime */
	dev->hbuf_depth = (dev->host_hw_state & H_CBD) >> 24;

150
	dev->recvd_msg = false;
O
Oren Weil 已提交
151 152 153 154 155 156 157 158 159 160 161
	dev_dbg(&dev->pdev->dev, "reset in start the mei device.\n");

	mei_reset(dev, 1);

	dev_dbg(&dev->pdev->dev, "host_hw_state = 0x%08x, me_hw_state = 0x%08x.\n",
	    dev->host_hw_state, dev->me_hw_state);

	/* wait for ME to turn on ME_RDY */
	if (!dev->recvd_msg) {
		mutex_unlock(&dev->device_lock);
		err = wait_event_interruptible_timeout(dev->wait_recvd_msg,
162 163
			dev->recvd_msg,
			mei_secs_to_jiffies(MEI_INTEROP_TIMEOUT));
O
Oren Weil 已提交
164 165 166
		mutex_lock(&dev->device_lock);
	}

167
	if (err <= 0 && !dev->recvd_msg) {
168
		dev->dev_state = MEI_DEV_DISABLED;
O
Oren Weil 已提交
169 170 171 172 173 174 175 176 177
		dev_dbg(&dev->pdev->dev,
			"wait_event_interruptible_timeout failed"
			"on wait for ME to turn on ME_RDY.\n");
		ret = -ENODEV;
		goto out;
	}

	if (!(((dev->host_hw_state & H_RDY) == H_RDY) &&
	      ((dev->me_hw_state & ME_RDY_HRA) == ME_RDY_HRA))) {
178
		dev->dev_state = MEI_DEV_DISABLED;
O
Oren Weil 已提交
179 180 181 182
		dev_dbg(&dev->pdev->dev,
			"host_hw_state = 0x%08x, me_hw_state = 0x%08x.\n",
			dev->host_hw_state, dev->me_hw_state);

D
Dan Carpenter 已提交
183
		if (!(dev->host_hw_state & H_RDY))
O
Oren Weil 已提交
184 185
			dev_dbg(&dev->pdev->dev, "host turn off H_RDY.\n");

D
Dan Carpenter 已提交
186
		if (!(dev->me_hw_state & ME_RDY_HRA))
O
Oren Weil 已提交
187 188
			dev_dbg(&dev->pdev->dev, "ME turn off ME_RDY.\n");

189
		dev_err(&dev->pdev->dev, "link layer initialization failed.\n");
O
Oren Weil 已提交
190 191 192 193 194 195 196 197 198 199 200
		ret = -ENODEV;
		goto out;
	}

	if (dev->version.major_version != HBM_MAJOR_VERSION ||
	    dev->version.minor_version != HBM_MINOR_VERSION) {
		dev_dbg(&dev->pdev->dev, "MEI start failed.\n");
		ret = -ENODEV;
		goto out;
	}

201
	dev->recvd_msg = false;
O
Oren Weil 已提交
202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243
	dev_dbg(&dev->pdev->dev, "host_hw_state = 0x%08x, me_hw_state = 0x%08x.\n",
	    dev->host_hw_state, dev->me_hw_state);
	dev_dbg(&dev->pdev->dev, "ME turn on ME_RDY and host turn on H_RDY.\n");
	dev_dbg(&dev->pdev->dev, "link layer has been established.\n");
	dev_dbg(&dev->pdev->dev, "MEI  start success.\n");
	ret = 0;

out:
	mutex_unlock(&dev->device_lock);
	return ret;
}

/**
 * mei_hw_reset - resets fw via mei csr register.
 *
 * @dev: the device structure
 * @interrupts_enabled: if interrupt should be enabled after reset.
 */
static void mei_hw_reset(struct mei_device *dev, int interrupts_enabled)
{
	dev->host_hw_state |= (H_RST | H_IG);

	if (interrupts_enabled)
		mei_enable_interrupts(dev);
	else
		mei_disable_interrupts(dev);
}

/**
 * mei_reset - resets host and fw.
 *
 * @dev: the device structure
 * @interrupts_enabled: if interrupt should be enabled after reset.
 */
void mei_reset(struct mei_device *dev, int interrupts_enabled)
{
	struct mei_cl *cl_pos = NULL;
	struct mei_cl *cl_next = NULL;
	struct mei_cl_cb *cb_pos = NULL;
	struct mei_cl_cb *cb_next = NULL;
	bool unexpected;

244
	if (dev->dev_state == MEI_DEV_RECOVERING_FROM_RESET) {
245
		dev->need_reset = true;
O
Oren Weil 已提交
246 247 248
		return;
	}

249 250 251 252
	unexpected = (dev->dev_state != MEI_DEV_INITIALIZING &&
			dev->dev_state != MEI_DEV_DISABLED &&
			dev->dev_state != MEI_DEV_POWER_DOWN &&
			dev->dev_state != MEI_DEV_POWER_UP);
O
Oren Weil 已提交
253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268

	dev->host_hw_state = mei_hcsr_read(dev);

	dev_dbg(&dev->pdev->dev, "before reset host_hw_state = 0x%08x.\n",
	    dev->host_hw_state);

	mei_hw_reset(dev, interrupts_enabled);

	dev->host_hw_state &= ~H_RST;
	dev->host_hw_state |= H_IG;

	mei_hcsr_set(dev);

	dev_dbg(&dev->pdev->dev, "currently saved host_hw_state = 0x%08x.\n",
	    dev->host_hw_state);

269
	dev->need_reset = false;
O
Oren Weil 已提交
270

271 272 273 274
	if (dev->dev_state != MEI_DEV_INITIALIZING) {
		if (dev->dev_state != MEI_DEV_DISABLED &&
		    dev->dev_state != MEI_DEV_POWER_DOWN)
			dev->dev_state = MEI_DEV_RESETING;
O
Oren Weil 已提交
275 276 277 278 279 280 281 282 283

		list_for_each_entry_safe(cl_pos,
				cl_next, &dev->file_list, link) {
			cl_pos->state = MEI_FILE_DISCONNECTED;
			cl_pos->mei_flow_ctrl_creds = 0;
			cl_pos->read_cb = NULL;
			cl_pos->timer_count = 0;
		}
		/* remove entry if already in list */
284 285
		dev_dbg(&dev->pdev->dev, "remove iamthif and wd from the file list.\n");
		mei_me_cl_unlink(dev, &dev->wd_cl);
O
Oren Weil 已提交
286

287
		mei_me_cl_unlink(dev, &dev->iamthif_cl);
O
Oren Weil 已提交
288

289
		mei_amthif_reset_params(dev);
O
Oren Weil 已提交
290 291 292
		dev->extra_write_index = 0;
	}

293
	dev->me_clients_num = 0;
O
Oren Weil 已提交
294
	dev->rd_msg_hdr = 0;
295
	dev->wd_pending = false;
O
Oren Weil 已提交
296 297 298 299 300 301 302 303 304

	/* update the state of the registers after reset */
	dev->host_hw_state = mei_hcsr_read(dev);
	dev->me_hw_state = mei_mecsr_read(dev);

	dev_dbg(&dev->pdev->dev, "after reset host_hw_state = 0x%08x, me_hw_state = 0x%08x.\n",
	    dev->host_hw_state, dev->me_hw_state);

	if (unexpected)
305 306
		dev_warn(&dev->pdev->dev, "unexpected reset: dev_state = %s\n",
			 mei_dev_state_str(dev->dev_state));
O
Oren Weil 已提交
307 308 309 310 311 312 313 314 315

	/* Wake up all readings so they can be interrupted */
	list_for_each_entry_safe(cl_pos, cl_next, &dev->file_list, link) {
		if (waitqueue_active(&cl_pos->rx_wait)) {
			dev_dbg(&dev->pdev->dev, "Waking up client!\n");
			wake_up_interruptible(&cl_pos->rx_wait);
		}
	}
	/* remove all waiting requests */
316 317
	list_for_each_entry_safe(cb_pos, cb_next, &dev->write_list.list, list) {
		list_del(&cb_pos->list);
318
		mei_io_cb_free(cb_pos);
O
Oren Weil 已提交
319 320 321 322 323 324 325 326 327 328 329 330
	}
}



/**
 * host_start_message - mei host sends start message.
 *
 * @dev: the device structure
 *
 * returns none.
 */
331
void mei_host_start_message(struct mei_device *dev)
O
Oren Weil 已提交
332 333 334 335 336 337 338 339 340 341 342 343 344 345 346
{
	struct mei_msg_hdr *mei_hdr;
	struct hbm_host_version_request *host_start_req;

	/* host start message */
	mei_hdr = (struct mei_msg_hdr *) &dev->wr_msg_buf[0];
	mei_hdr->host_addr = 0;
	mei_hdr->me_addr = 0;
	mei_hdr->length = sizeof(struct hbm_host_version_request);
	mei_hdr->msg_complete = 1;
	mei_hdr->reserved = 0;

	host_start_req =
	    (struct hbm_host_version_request *) &dev->wr_msg_buf[1];
	memset(host_start_req, 0, sizeof(struct hbm_host_version_request));
347
	host_start_req->hbm_cmd = HOST_START_REQ_CMD;
O
Oren Weil 已提交
348 349
	host_start_req->host_version.major_version = HBM_MAJOR_VERSION;
	host_start_req->host_version.minor_version = HBM_MINOR_VERSION;
350
	dev->recvd_msg = false;
351
	if (mei_write_message(dev, mei_hdr, (unsigned char *)host_start_req,
O
Oren Weil 已提交
352 353
				       mei_hdr->length)) {
		dev_dbg(&dev->pdev->dev, "write send version message to FW fail.\n");
354
		dev->dev_state = MEI_DEV_RESETING;
O
Oren Weil 已提交
355 356 357
		mei_reset(dev, 1);
	}
	dev->init_clients_state = MEI_START_MESSAGE;
358
	dev->init_clients_timer = MEI_CLIENTS_INIT_TIMEOUT;
O
Oren Weil 已提交
359 360 361 362 363 364 365 366 367 368
	return ;
}

/**
 * host_enum_clients_message - host sends enumeration client request message.
 *
 * @dev: the device structure
 *
 * returns none.
 */
369
void mei_host_enum_clients_message(struct mei_device *dev)
O
Oren Weil 已提交
370 371 372 373 374 375 376 377 378 379 380 381 382
{
	struct mei_msg_hdr *mei_hdr;
	struct hbm_host_enum_request *host_enum_req;
	mei_hdr = (struct mei_msg_hdr *) &dev->wr_msg_buf[0];
	/* enumerate clients */
	mei_hdr->host_addr = 0;
	mei_hdr->me_addr = 0;
	mei_hdr->length = sizeof(struct hbm_host_enum_request);
	mei_hdr->msg_complete = 1;
	mei_hdr->reserved = 0;

	host_enum_req = (struct hbm_host_enum_request *) &dev->wr_msg_buf[1];
	memset(host_enum_req, 0, sizeof(struct hbm_host_enum_request));
383
	host_enum_req->hbm_cmd = HOST_ENUM_REQ_CMD;
384
	if (mei_write_message(dev, mei_hdr, (unsigned char *)host_enum_req,
O
Oren Weil 已提交
385
				mei_hdr->length)) {
386
		dev->dev_state = MEI_DEV_RESETING;
O
Oren Weil 已提交
387 388 389 390
		dev_dbg(&dev->pdev->dev, "write send enumeration request message to FW fail.\n");
		mei_reset(dev, 1);
	}
	dev->init_clients_state = MEI_ENUM_CLIENTS_MESSAGE;
391
	dev->init_clients_timer = MEI_CLIENTS_INIT_TIMEOUT;
392
	return;
O
Oren Weil 已提交
393 394 395 396 397 398 399 400 401 402
}


/**
 * allocate_me_clients_storage - allocates storage for me clients
 *
 * @dev: the device structure
 *
 * returns none.
 */
403
void mei_allocate_me_clients_storage(struct mei_device *dev)
O
Oren Weil 已提交
404 405 406 407 408 409
{
	struct mei_me_client *clients;
	int b;

	/* count how many ME clients we have */
	for_each_set_bit(b, dev->me_clients_map, MEI_CLIENTS_MAX)
410
		dev->me_clients_num++;
O
Oren Weil 已提交
411

412
	if (dev->me_clients_num <= 0)
O
Oren Weil 已提交
413 414 415 416 417 418 419 420
		return ;


	if (dev->me_clients != NULL) {
		kfree(dev->me_clients);
		dev->me_clients = NULL;
	}
	dev_dbg(&dev->pdev->dev, "memory allocation for ME clients size=%zd.\n",
421
		dev->me_clients_num * sizeof(struct mei_me_client));
O
Oren Weil 已提交
422
	/* allocate storage for ME clients representation */
423
	clients = kcalloc(dev->me_clients_num,
O
Oren Weil 已提交
424 425 426
			sizeof(struct mei_me_client), GFP_KERNEL);
	if (!clients) {
		dev_dbg(&dev->pdev->dev, "memory allocation for ME clients failed.\n");
427
		dev->dev_state = MEI_DEV_RESETING;
O
Oren Weil 已提交
428 429 430 431 432 433 434 435 436 437 438
		mei_reset(dev, 1);
		return ;
	}
	dev->me_clients = clients;
	return ;
}
/**
 * host_client_properties - reads properties for client
 *
 * @dev: the device structure
 *
439 440 441 442
 * returns:
 * 	< 0 - Error.
 *  = 0 - no more clients.
 *  = 1 - still have clients to send properties request.
O
Oren Weil 已提交
443
 */
444
int mei_host_client_properties(struct mei_device *dev)
O
Oren Weil 已提交
445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466
{
	struct mei_msg_hdr *mei_header;
	struct hbm_props_request *host_cli_req;
	int b;
	u8 client_num = dev->me_client_presentation_num;

	b = dev->me_client_index;
	b = find_next_bit(dev->me_clients_map, MEI_CLIENTS_MAX, b);
	if (b < MEI_CLIENTS_MAX) {
		dev->me_clients[client_num].client_id = b;
		dev->me_clients[client_num].mei_flow_ctrl_creds = 0;
		mei_header = (struct mei_msg_hdr *)&dev->wr_msg_buf[0];
		mei_header->host_addr = 0;
		mei_header->me_addr = 0;
		mei_header->length = sizeof(struct hbm_props_request);
		mei_header->msg_complete = 1;
		mei_header->reserved = 0;

		host_cli_req = (struct hbm_props_request *)&dev->wr_msg_buf[1];

		memset(host_cli_req, 0, sizeof(struct hbm_props_request));

467
		host_cli_req->hbm_cmd = HOST_CLIENT_PROPERTIES_REQ_CMD;
O
Oren Weil 已提交
468 469
		host_cli_req->address = b;

470
		if (mei_write_message(dev, mei_header,
O
Oren Weil 已提交
471 472
				(unsigned char *)host_cli_req,
				mei_header->length)) {
473
			dev->dev_state = MEI_DEV_RESETING;
O
Oren Weil 已提交
474 475
			dev_dbg(&dev->pdev->dev, "write send enumeration request message to FW fail.\n");
			mei_reset(dev, 1);
476
			return -EIO;
O
Oren Weil 已提交
477 478
		}

479
		dev->init_clients_timer = MEI_CLIENTS_INIT_TIMEOUT;
O
Oren Weil 已提交
480
		dev->me_client_index = b;
481
		return 1;
O
Oren Weil 已提交
482 483
	}

484
	return 0;
O
Oren Weil 已提交
485 486 487 488 489 490 491 492
}

/**
 * mei_init_file_private - initializes private file structure.
 *
 * @priv: private file structure to be initialized
 * @file: the file structure
 */
493
void mei_cl_init(struct mei_cl *priv, struct mei_device *dev)
O
Oren Weil 已提交
494 495 496 497 498 499 500 501 502 503 504
{
	memset(priv, 0, sizeof(struct mei_cl));
	init_waitqueue_head(&priv->wait);
	init_waitqueue_head(&priv->rx_wait);
	init_waitqueue_head(&priv->tx_wait);
	INIT_LIST_HEAD(&priv->link);
	priv->reading_state = MEI_IDLE;
	priv->writing_state = MEI_IDLE;
	priv->dev = dev;
}

505
int mei_me_cl_by_uuid(const struct mei_device *dev, const uuid_le *cuuid)
O
Oren Weil 已提交
506
{
507
	int i, res = -ENOENT;
O
Oren Weil 已提交
508

509
	for (i = 0; i < dev->me_clients_num; ++i)
510
		if (uuid_le_cmp(*cuuid,
O
Oren Weil 已提交
511 512 513 514 515 516 517 518 519 520
				dev->me_clients[i].props.protocol_name) == 0) {
			res = i;
			break;
		}

	return res;
}


/**
521 522 523
 * mei_me_cl_link - create link between host and me clinet and add
 *   me_cl to the list
 *
O
Oren Weil 已提交
524
 * @dev: the device structure
525 526 527
 * @cl: link between me and host client assocated with opened file descriptor
 * @cuuid: uuid of ME client
 * @client_id: id of the host client
O
Oren Weil 已提交
528
 *
529 530 531
 * returns ME client index if ME client
 *	-EINVAL on incorrect values
 *	-ENONET if client not found
O
Oren Weil 已提交
532
 */
533 534
int mei_me_cl_link(struct mei_device *dev, struct mei_cl *cl,
			const uuid_le *cuuid, u8 host_cl_id)
O
Oren Weil 已提交
535 536 537
{
	int i;

538 539
	if (!dev || !cl || !cuuid)
		return -EINVAL;
O
Oren Weil 已提交
540 541

	/* check for valid client id */
542
	i = mei_me_cl_by_uuid(dev, cuuid);
O
Oren Weil 已提交
543
	if (i >= 0) {
544 545 546
		cl->me_client_id = dev->me_clients[i].client_id;
		cl->state = MEI_FILE_CONNECTING;
		cl->host_client_id = host_cl_id;
O
Oren Weil 已提交
547

548
		list_add_tail(&cl->link, &dev->file_list);
O
Oren Weil 已提交
549 550 551
		return (u8)i;
	}

552
	return -ENOENT;
O
Oren Weil 已提交
553
}
554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571
/**
 * mei_me_cl_unlink - remove me_cl from the list
 *
 * @dev: the device structure
 * @host_client_id: host client id to be removed
 */
void mei_me_cl_unlink(struct mei_device *dev, struct mei_cl *cl)
{
	struct mei_cl *pos, *next;
	list_for_each_entry_safe(pos, next, &dev->file_list, link) {
		if (cl->host_client_id == pos->host_client_id) {
			dev_dbg(&dev->pdev->dev, "remove host client = %d, ME client = %d\n",
					pos->host_client_id, pos->me_client_id);
			list_del_init(&pos->link);
			break;
		}
	}
}
O
Oren Weil 已提交
572 573 574 575 576 577 578

/**
 * mei_alloc_file_private - allocates a private file structure and sets it up.
 * @file: the file structure
 *
 * returns  The allocated file or NULL on failure
 */
579
struct mei_cl *mei_cl_allocate(struct mei_device *dev)
O
Oren Weil 已提交
580
{
581
	struct mei_cl *cl;
O
Oren Weil 已提交
582

583 584
	cl = kmalloc(sizeof(struct mei_cl), GFP_KERNEL);
	if (!cl)
O
Oren Weil 已提交
585 586
		return NULL;

587
	mei_cl_init(cl, dev);
O
Oren Weil 已提交
588

589
	return cl;
O
Oren Weil 已提交
590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606
}



/**
 * mei_disconnect_host_client - sends disconnect message to fw from host client.
 *
 * @dev: the device structure
 * @cl: private data of the file object
 *
 * Locking: called under "dev->device_lock" lock
 *
 * returns 0 on success, <0 on failure.
 */
int mei_disconnect_host_client(struct mei_device *dev, struct mei_cl *cl)
{
	struct mei_cl_cb *cb;
607
	int rets, err;
O
Oren Weil 已提交
608 609 610 611 612 613 614

	if (!dev || !cl)
		return -ENODEV;

	if (cl->state != MEI_FILE_DISCONNECTING)
		return 0;

615
	cb = mei_io_cb_init(cl, NULL);
O
Oren Weil 已提交
616 617 618
	if (!cb)
		return -ENOMEM;

619
	cb->fop_type = MEI_FOP_CLOSE;
O
Oren Weil 已提交
620
	if (dev->mei_host_buffer_is_empty) {
621
		dev->mei_host_buffer_is_empty = false;
O
Oren Weil 已提交
622 623 624 625 626
		if (mei_disconnect(dev, cl)) {
			rets = -ENODEV;
			dev_dbg(&dev->pdev->dev, "failed to call mei_disconnect.\n");
			goto free;
		}
627
		mdelay(10); /* Wait for hardware disconnection ready */
628
		list_add_tail(&cb->list, &dev->ctrl_rd_list.list);
O
Oren Weil 已提交
629 630
	} else {
		dev_dbg(&dev->pdev->dev, "add disconnect cb to control write list\n");
631 632
		list_add_tail(&cb->list, &dev->ctrl_wr_list.list);

O
Oren Weil 已提交
633 634 635 636
	}
	mutex_unlock(&dev->device_lock);

	err = wait_event_timeout(dev->wait_recvd_msg,
637 638
			MEI_FILE_DISCONNECTED == cl->state,
			mei_secs_to_jiffies(MEI_CL_CONNECT_TIMEOUT));
O
Oren Weil 已提交
639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656

	mutex_lock(&dev->device_lock);
	if (MEI_FILE_DISCONNECTED == cl->state) {
		rets = 0;
		dev_dbg(&dev->pdev->dev, "successfully disconnected from FW client.\n");
	} else {
		rets = -ENODEV;
		if (MEI_FILE_DISCONNECTED != cl->state)
			dev_dbg(&dev->pdev->dev, "wrong status client disconnect.\n");

		if (err)
			dev_dbg(&dev->pdev->dev,
					"wait failed disconnect err=%08x\n",
					err);

		dev_dbg(&dev->pdev->dev, "failed to disconnect from FW client.\n");
	}

657 658
	mei_io_list_flush(&dev->ctrl_rd_list, cl);
	mei_io_list_flush(&dev->ctrl_wr_list, cl);
O
Oren Weil 已提交
659
free:
660
	mei_io_cb_free(cb);
O
Oren Weil 已提交
661 662 663
	return rets;
}