client.c 28.8 KB
Newer Older
1 2 3
/*
 *
 * Intel Management Engine Interface (Intel MEI) Linux driver
4
 * Copyright (c) 2003-2012, Intel Corporation.
5 6 7 8 9 10 11 12 13 14 15 16 17
 *
 * 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/sched.h>
18 19
#include <linux/wait.h>
#include <linux/delay.h>
20
#include <linux/slab.h>
21
#include <linux/pm_runtime.h>
22

23
#include <linux/mei.h>
24 25

#include "mei_dev.h"
26
#include "hbm.h"
T
Tomas Winkler 已提交
27 28
#include "client.h"

29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
/**
 * mei_me_cl_init - initialize me client
 *
 * @me_cl: me client
 */
void mei_me_cl_init(struct mei_me_client *me_cl)
{
	INIT_LIST_HEAD(&me_cl->list);
	kref_init(&me_cl->refcnt);
}

/**
 * mei_me_cl_get - increases me client refcount
 *
 * @me_cl: me client
 *
 * Locking: called under "dev->device_lock" lock
 *
 * Return: me client or NULL
 */
struct mei_me_client *mei_me_cl_get(struct mei_me_client *me_cl)
{
51 52
	if (me_cl && kref_get_unless_zero(&me_cl->refcnt))
		return me_cl;
53

54
	return NULL;
55 56 57
}

/**
58
 * mei_me_cl_release - free me client
59 60 61 62 63 64 65 66 67
 *
 * Locking: called under "dev->device_lock" lock
 *
 * @ref: me_client refcount
 */
static void mei_me_cl_release(struct kref *ref)
{
	struct mei_me_client *me_cl =
		container_of(ref, struct mei_me_client, refcnt);
68

69 70
	kfree(me_cl);
}
71

72 73 74 75 76 77 78 79 80 81 82 83 84
/**
 * mei_me_cl_put - decrease me client refcount and free client if necessary
 *
 * Locking: called under "dev->device_lock" lock
 *
 * @me_cl: me client
 */
void mei_me_cl_put(struct mei_me_client *me_cl)
{
	if (me_cl)
		kref_put(&me_cl->refcnt, mei_me_cl_release);
}

T
Tomas Winkler 已提交
85
/**
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
 * __mei_me_cl_del  - delete me client form the list and decrease
 *     reference counter
 *
 * @dev: mei device
 * @me_cl: me client
 *
 * Locking: dev->me_clients_rwsem
 */
static void __mei_me_cl_del(struct mei_device *dev, struct mei_me_client *me_cl)
{
	if (!me_cl)
		return;

	list_del(&me_cl->list);
	mei_me_cl_put(me_cl);
}

/**
 * mei_me_cl_add - add me client to the list
 *
 * @dev: mei device
 * @me_cl: me client
 */
void mei_me_cl_add(struct mei_device *dev, struct mei_me_client *me_cl)
{
	down_write(&dev->me_clients_rwsem);
	list_add(&me_cl->list, &dev->me_clients);
	up_write(&dev->me_clients_rwsem);
}

/**
 * __mei_me_cl_by_uuid - locate me client by uuid
118
 *	increases ref count
T
Tomas Winkler 已提交
119 120
 *
 * @dev: mei device
121
 * @uuid: me client uuid
122
 *
123
 * Return: me client or NULL if not found
124 125
 *
 * Locking: dev->me_clients_rwsem
T
Tomas Winkler 已提交
126
 */
127
static struct mei_me_client *__mei_me_cl_by_uuid(struct mei_device *dev,
128
					const uuid_le *uuid)
T
Tomas Winkler 已提交
129
{
130
	struct mei_me_client *me_cl;
131
	const uuid_le *pn;
T
Tomas Winkler 已提交
132

133 134 135 136 137
	WARN_ON(!rwsem_is_locked(&dev->me_clients_rwsem));

	list_for_each_entry(me_cl, &dev->me_clients, list) {
		pn = &me_cl->props.protocol_name;
		if (uuid_le_cmp(*uuid, *pn) == 0)
138
			return mei_me_cl_get(me_cl);
139
	}
T
Tomas Winkler 已提交
140

141
	return NULL;
T
Tomas Winkler 已提交
142 143
}

144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
/**
 * mei_me_cl_by_uuid - locate me client by uuid
 *	increases ref count
 *
 * @dev: mei device
 * @uuid: me client uuid
 *
 * Return: me client or NULL if not found
 *
 * Locking: dev->me_clients_rwsem
 */
struct mei_me_client *mei_me_cl_by_uuid(struct mei_device *dev,
					const uuid_le *uuid)
{
	struct mei_me_client *me_cl;

	down_read(&dev->me_clients_rwsem);
	me_cl = __mei_me_cl_by_uuid(dev, uuid);
	up_read(&dev->me_clients_rwsem);

	return me_cl;
}

T
Tomas Winkler 已提交
167
/**
168
 * mei_me_cl_by_id - locate me client by client id
169
 *	increases ref count
T
Tomas Winkler 已提交
170 171 172 173
 *
 * @dev: the device structure
 * @client_id: me client id
 *
174
 * Return: me client or NULL if not found
175 176
 *
 * Locking: dev->me_clients_rwsem
T
Tomas Winkler 已提交
177
 */
178
struct mei_me_client *mei_me_cl_by_id(struct mei_device *dev, u8 client_id)
T
Tomas Winkler 已提交
179
{
180

181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209
	struct mei_me_client *__me_cl, *me_cl = NULL;

	down_read(&dev->me_clients_rwsem);
	list_for_each_entry(__me_cl, &dev->me_clients, list) {
		if (__me_cl->client_id == client_id) {
			me_cl = mei_me_cl_get(__me_cl);
			break;
		}
	}
	up_read(&dev->me_clients_rwsem);

	return me_cl;
}

/**
 * __mei_me_cl_by_uuid_id - locate me client by client id and uuid
 *	increases ref count
 *
 * @dev: the device structure
 * @uuid: me client uuid
 * @client_id: me client id
 *
 * Return: me client or null if not found
 *
 * Locking: dev->me_clients_rwsem
 */
static struct mei_me_client *__mei_me_cl_by_uuid_id(struct mei_device *dev,
					   const uuid_le *uuid, u8 client_id)
{
210
	struct mei_me_client *me_cl;
211 212 213
	const uuid_le *pn;

	WARN_ON(!rwsem_is_locked(&dev->me_clients_rwsem));
T
Tomas Winkler 已提交
214

215 216 217 218
	list_for_each_entry(me_cl, &dev->me_clients, list) {
		pn = &me_cl->props.protocol_name;
		if (uuid_le_cmp(*uuid, *pn) == 0 &&
		    me_cl->client_id == client_id)
219
			return mei_me_cl_get(me_cl);
220
	}
221

222
	return NULL;
T
Tomas Winkler 已提交
223
}
224

225

226 227
/**
 * mei_me_cl_by_uuid_id - locate me client by client id and uuid
228
 *	increases ref count
229 230 231 232 233
 *
 * @dev: the device structure
 * @uuid: me client uuid
 * @client_id: me client id
 *
234
 * Return: me client or null if not found
235
 */
236 237 238 239 240
struct mei_me_client *mei_me_cl_by_uuid_id(struct mei_device *dev,
					   const uuid_le *uuid, u8 client_id)
{
	struct mei_me_client *me_cl;

241 242 243
	down_read(&dev->me_clients_rwsem);
	me_cl = __mei_me_cl_by_uuid_id(dev, uuid, client_id);
	up_read(&dev->me_clients_rwsem);
244

245
	return me_cl;
246 247
}

248
/**
249
 * mei_me_cl_rm_by_uuid - remove all me clients matching uuid
250 251 252
 *
 * @dev: the device structure
 * @uuid: me client uuid
253 254
 *
 * Locking: called under "dev->device_lock" lock
255
 */
256
void mei_me_cl_rm_by_uuid(struct mei_device *dev, const uuid_le *uuid)
257
{
258
	struct mei_me_client *me_cl;
259

260
	dev_dbg(dev->dev, "remove %pUl\n", uuid);
261 262 263 264 265

	down_write(&dev->me_clients_rwsem);
	me_cl = __mei_me_cl_by_uuid(dev, uuid);
	__mei_me_cl_del(dev, me_cl);
	up_write(&dev->me_clients_rwsem);
266 267 268 269 270 271 272 273 274 275 276 277 278
}

/**
 * mei_me_cl_rm_by_uuid_id - remove all me clients matching client id
 *
 * @dev: the device structure
 * @uuid: me client uuid
 * @id: me client id
 *
 * Locking: called under "dev->device_lock" lock
 */
void mei_me_cl_rm_by_uuid_id(struct mei_device *dev, const uuid_le *uuid, u8 id)
{
279
	struct mei_me_client *me_cl;
280 281

	dev_dbg(dev->dev, "remove %pUl %d\n", uuid, id);
282 283 284 285 286

	down_write(&dev->me_clients_rwsem);
	me_cl = __mei_me_cl_by_uuid_id(dev, uuid, id);
	__mei_me_cl_del(dev, me_cl);
	up_write(&dev->me_clients_rwsem);
287 288
}

289 290 291 292 293 294 295 296 297 298 299
/**
 * mei_me_cl_rm_all - remove all me clients
 *
 * @dev: the device structure
 *
 * Locking: called under "dev->device_lock" lock
 */
void mei_me_cl_rm_all(struct mei_device *dev)
{
	struct mei_me_client *me_cl, *next;

300
	down_write(&dev->me_clients_rwsem);
301
	list_for_each_entry_safe(me_cl, next, &dev->me_clients, list)
302 303
		__mei_me_cl_del(dev, me_cl);
	up_write(&dev->me_clients_rwsem);
304 305
}

306
/**
307
 * mei_cl_cmp_id - tells if the clients are the same
308
 *
309 310 311
 * @cl1: host client 1
 * @cl2: host client 2
 *
312
 * Return: true  - if the clients has same host and me ids
313 314 315 316 317 318 319 320 321 322
 *         false - otherwise
 */
static inline bool mei_cl_cmp_id(const struct mei_cl *cl1,
				const struct mei_cl *cl2)
{
	return cl1 && cl2 &&
		(cl1->host_client_id == cl2->host_client_id) &&
		(cl1->me_client_id == cl2->me_client_id);
}

323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363
/**
 * mei_io_cb_free - free mei_cb_private related memory
 *
 * @cb: mei callback struct
 */
void mei_io_cb_free(struct mei_cl_cb *cb)
{
	if (cb == NULL)
		return;

	list_del(&cb->list);
	kfree(cb->buf.data);
	kfree(cb);
}

/**
 * mei_io_cb_init - allocate and initialize io callback
 *
 * @cl: mei client
 * @type: operation type
 * @fp: pointer to file structure
 *
 * Return: mei_cl_cb pointer or NULL;
 */
struct mei_cl_cb *mei_io_cb_init(struct mei_cl *cl, enum mei_cb_file_ops type,
				 struct file *fp)
{
	struct mei_cl_cb *cb;

	cb = kzalloc(sizeof(struct mei_cl_cb), GFP_KERNEL);
	if (!cb)
		return NULL;

	INIT_LIST_HEAD(&cb->list);
	cb->file_object = fp;
	cb->cl = cl;
	cb->buf_idx = 0;
	cb->fop_type = type;
	return cb;
}

364
/**
365
 * __mei_io_list_flush - removes and frees cbs belonging to cl.
366 367 368 369
 *
 * @list:  an instance of our list structure
 * @cl:    host client, can be NULL for flushing the whole list
 * @free:  whether to free the cbs
370
 */
371 372
static void __mei_io_list_flush(struct mei_cl_cb *list,
				struct mei_cl *cl, bool free)
373
{
374
	struct mei_cl_cb *cb, *next;
375

376
	/* enable removing everything if no cl is specified */
377
	list_for_each_entry_safe(cb, next, &list->list, list) {
378
		if (!cl || mei_cl_cmp_id(cl, cb->cl)) {
379
			list_del_init(&cb->list);
380 381 382
			if (free)
				mei_io_cb_free(cb);
		}
383 384 385
	}
}

386 387 388 389 390 391
/**
 * mei_io_list_flush - removes list entry belonging to cl.
 *
 * @list:  An instance of our list structure
 * @cl: host client
 */
392
void mei_io_list_flush(struct mei_cl_cb *list, struct mei_cl *cl)
393 394 395 396 397 398 399 400 401 402 403 404 405 406 407
{
	__mei_io_list_flush(list, cl, false);
}

/**
 * mei_io_list_free - removes cb belonging to cl and free them
 *
 * @list:  An instance of our list structure
 * @cl: host client
 */
static inline void mei_io_list_free(struct mei_cl_cb *list, struct mei_cl *cl)
{
	__mei_io_list_flush(list, cl, true);
}

408
/**
409
 * mei_io_cb_alloc_buf - allocate callback buffer
410
 *
411 412
 * @cb: io callback structure
 * @length: size of the buffer
413
 *
414
 * Return: 0 on success
415 416 417
 *         -EINVAL if cb is NULL
 *         -ENOMEM if allocation failed
 */
418
int mei_io_cb_alloc_buf(struct mei_cl_cb *cb, size_t length)
419 420 421 422 423 424 425
{
	if (!cb)
		return -EINVAL;

	if (length == 0)
		return 0;

426 427
	cb->buf.data = kmalloc(length, GFP_KERNEL);
	if (!cb->buf.data)
428
		return -ENOMEM;
429
	cb->buf.size = length;
430 431
	return 0;
}
432

433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459
/**
 * mei_cl_alloc_cb - a convenient wrapper for allocating read cb
 *
 * @cl: host client
 * @length: size of the buffer
 * @type: operation type
 * @fp: associated file pointer (might be NULL)
 *
 * Return: cb on success and NULL on failure
 */
struct mei_cl_cb *mei_cl_alloc_cb(struct mei_cl *cl, size_t length,
				  enum mei_cb_file_ops type, struct file *fp)
{
	struct mei_cl_cb *cb;

	cb = mei_io_cb_init(cl, type, fp);
	if (!cb)
		return NULL;

	if (mei_io_cb_alloc_buf(cb, length)) {
		mei_io_cb_free(cb);
		return NULL;
	}

	return cb;
}

T
Tomas Winkler 已提交
460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500
/**
 * mei_cl_read_cb - find this cl's callback in the read list
 *     for a specific file
 *
 * @cl: host client
 * @fp: file pointer (matching cb file object), may be NULL
 *
 * Return: cb on success, NULL if cb is not found
 */
struct mei_cl_cb *mei_cl_read_cb(const struct mei_cl *cl, const struct file *fp)
{
	struct mei_cl_cb *cb;

	list_for_each_entry(cb, &cl->rd_completed, list)
		if (!fp || fp == cb->file_object)
			return cb;

	return NULL;
}

/**
 * mei_cl_read_cb_flush - free client's read pending and completed cbs
 *   for a specific file
 *
 * @cl: host client
 * @fp: file pointer (matching cb file object), may be NULL
 */
void mei_cl_read_cb_flush(const struct mei_cl *cl, const struct file *fp)
{
	struct mei_cl_cb *cb, *next;

	list_for_each_entry_safe(cb, next, &cl->rd_completed, list)
		if (!fp || fp == cb->file_object)
			mei_io_cb_free(cb);


	list_for_each_entry_safe(cb, next, &cl->rd_pending, list)
		if (!fp || fp == cb->file_object)
			mei_io_cb_free(cb);
}

501 502 503 504
/**
 * mei_cl_flush_queues - flushes queue lists belonging to cl.
 *
 * @cl: host client
T
Tomas Winkler 已提交
505
 * @fp: file pointer (matching cb file object), may be NULL
A
Alexander Usyskin 已提交
506 507
 *
 * Return: 0 on success, -EINVAL if cl or cl->dev is NULL.
508
 */
T
Tomas Winkler 已提交
509
int mei_cl_flush_queues(struct mei_cl *cl, const struct file *fp)
510
{
511 512
	struct mei_device *dev;

T
Tomas Winkler 已提交
513
	if (WARN_ON(!cl || !cl->dev))
514 515
		return -EINVAL;

516 517 518
	dev = cl->dev;

	cl_dbg(dev, cl, "remove list entry belonging to cl\n");
519 520
	mei_io_list_free(&cl->dev->write_list, cl);
	mei_io_list_free(&cl->dev->write_waiting_list, cl);
521 522 523 524
	mei_io_list_flush(&cl->dev->ctrl_wr_list, cl);
	mei_io_list_flush(&cl->dev->ctrl_rd_list, cl);
	mei_io_list_flush(&cl->dev->amthif_cmd_list, cl);
	mei_io_list_flush(&cl->dev->amthif_rd_complete_list, cl);
T
Tomas Winkler 已提交
525 526 527

	mei_cl_read_cb_flush(cl, fp);

528 529 530
	return 0;
}

531

532
/**
533
 * mei_cl_init - initializes cl.
534 535 536 537 538 539 540 541 542 543
 *
 * @cl: host client to be initialized
 * @dev: mei device
 */
void mei_cl_init(struct mei_cl *cl, struct mei_device *dev)
{
	memset(cl, 0, sizeof(struct mei_cl));
	init_waitqueue_head(&cl->wait);
	init_waitqueue_head(&cl->rx_wait);
	init_waitqueue_head(&cl->tx_wait);
T
Tomas Winkler 已提交
544 545
	INIT_LIST_HEAD(&cl->rd_completed);
	INIT_LIST_HEAD(&cl->rd_pending);
546
	INIT_LIST_HEAD(&cl->link);
547
	INIT_LIST_HEAD(&cl->device_link);
548 549 550 551 552 553 554 555
	cl->writing_state = MEI_IDLE;
	cl->dev = dev;
}

/**
 * mei_cl_allocate - allocates cl  structure and sets it up.
 *
 * @dev: mei device
556
 * Return:  The allocated file or NULL on failure
557 558 559 560 561 562 563 564 565 566 567 568 569 570
 */
struct mei_cl *mei_cl_allocate(struct mei_device *dev)
{
	struct mei_cl *cl;

	cl = kmalloc(sizeof(struct mei_cl), GFP_KERNEL);
	if (!cl)
		return NULL;

	mei_cl_init(cl, dev);

	return cl;
}

571 572
/**
 * mei_cl_link - allocate host id in the host map
573
 *
574
 * @cl: host client
575
 * @id: fixed host id or MEI_HOST_CLIENT_ID_ANY (-1) for generic one
576
 *
577
 * Return: 0 on success
578
 *	-EINVAL on incorrect values
579
 *	-EMFILE if open count exceeded.
580
 */
581
int mei_cl_link(struct mei_cl *cl, int id)
582
{
T
Tomas Winkler 已提交
583
	struct mei_device *dev;
T
Tomas Winkler 已提交
584
	long open_handle_count;
585

586
	if (WARN_ON(!cl || !cl->dev))
587 588
		return -EINVAL;

T
Tomas Winkler 已提交
589 590
	dev = cl->dev;

591
	/* If Id is not assigned get one*/
592 593 594
	if (id == MEI_HOST_CLIENT_ID_ANY)
		id = find_first_zero_bit(dev->host_clients_map,
					MEI_CLIENTS_MAX);
595

596
	if (id >= MEI_CLIENTS_MAX) {
597
		dev_err(dev->dev, "id exceeded %d", MEI_CLIENTS_MAX);
598 599 600
		return -EMFILE;
	}

T
Tomas Winkler 已提交
601 602
	open_handle_count = dev->open_handle_count + dev->iamthif_open_count;
	if (open_handle_count >= MEI_MAX_OPEN_HANDLE_COUNT) {
603
		dev_err(dev->dev, "open_handle_count exceeded %d",
604 605
			MEI_MAX_OPEN_HANDLE_COUNT);
		return -EMFILE;
606 607
	}

608 609 610 611 612 613 614 615 616
	dev->open_handle_count++;

	cl->host_client_id = id;
	list_add_tail(&cl->link, &dev->file_list);

	set_bit(id, dev->host_clients_map);

	cl->state = MEI_FILE_INITIALIZING;

617
	cl_dbg(dev, cl, "link cl\n");
618
	return 0;
619
}
620

621
/**
T
Tomas Winkler 已提交
622
 * mei_cl_unlink - remove me_cl from the list
623
 *
624
 * @cl: host client
A
Alexander Usyskin 已提交
625 626
 *
 * Return: always 0
627
 */
T
Tomas Winkler 已提交
628
int mei_cl_unlink(struct mei_cl *cl)
629
{
T
Tomas Winkler 已提交
630 631
	struct mei_device *dev;

632 633 634 635
	/* don't shout on error exit path */
	if (!cl)
		return 0;

636 637 638
	/* wd and amthif might not be initialized */
	if (!cl->dev)
		return 0;
T
Tomas Winkler 已提交
639 640 641

	dev = cl->dev;

642 643
	cl_dbg(dev, cl, "unlink client");

T
Tomas Winkler 已提交
644 645 646 647 648 649 650 651 652 653 654
	if (dev->open_handle_count > 0)
		dev->open_handle_count--;

	/* never clear the 0 bit */
	if (cl->host_client_id)
		clear_bit(cl->host_client_id, dev->host_clients_map);

	list_del_init(&cl->link);

	cl->state = MEI_FILE_INITIALIZING;

T
Tomas Winkler 已提交
655
	return 0;
656 657 658 659 660
}


void mei_host_client_init(struct work_struct *work)
{
661 662
	struct mei_device *dev =
		container_of(work, struct mei_device, init_work);
663
	struct mei_me_client *me_cl;
664 665 666 667

	mutex_lock(&dev->device_lock);


668 669 670
	me_cl = mei_me_cl_by_uuid(dev, &mei_amthif_guid);
	if (me_cl)
		mei_amthif_host_init(dev);
671
	mei_me_cl_put(me_cl);
672 673 674 675

	me_cl = mei_me_cl_by_uuid(dev, &mei_wd_guid);
	if (me_cl)
		mei_wd_host_init(dev);
676
	mei_me_cl_put(me_cl);
677 678 679 680

	me_cl = mei_me_cl_by_uuid(dev, &mei_nfc_guid);
	if (me_cl)
		mei_nfc_host_init(dev);
681
	mei_me_cl_put(me_cl);
682

683 684

	dev->dev_state = MEI_DEV_ENABLED;
685
	dev->reset_count = 0;
686
	mutex_unlock(&dev->device_lock);
687

688 689 690
	pm_runtime_mark_last_busy(dev->dev);
	dev_dbg(dev->dev, "rpm: autosuspend\n");
	pm_runtime_autosuspend(dev->dev);
691 692
}

693
/**
694
 * mei_hbuf_acquire - try to acquire host buffer
695 696
 *
 * @dev: the device structure
697
 * Return: true if host buffer was acquired
698 699 700
 */
bool mei_hbuf_acquire(struct mei_device *dev)
{
701 702
	if (mei_pg_state(dev) == MEI_PG_ON ||
	    dev->pg_event == MEI_PG_EVENT_WAIT) {
703
		dev_dbg(dev->dev, "device is in pg\n");
704 705 706
		return false;
	}

707
	if (!dev->hbuf_is_ready) {
708
		dev_dbg(dev->dev, "hbuf is not ready\n");
709 710 711 712 713 714 715
		return false;
	}

	dev->hbuf_is_ready = false;

	return true;
}
716 717

/**
718
 * mei_cl_disconnect - disconnect host client from the me one
719
 *
T
Tomas Winkler 已提交
720
 * @cl: host client
721 722 723
 *
 * Locking: called under "dev->device_lock" lock
 *
724
 * Return: 0 on success, <0 on failure.
725
 */
T
Tomas Winkler 已提交
726
int mei_cl_disconnect(struct mei_cl *cl)
727
{
T
Tomas Winkler 已提交
728
	struct mei_device *dev;
729
	struct mei_cl_cb *cb;
730
	int rets;
731

T
Tomas Winkler 已提交
732
	if (WARN_ON(!cl || !cl->dev))
733 734
		return -ENODEV;

T
Tomas Winkler 已提交
735 736
	dev = cl->dev;

737 738
	cl_dbg(dev, cl, "disconnecting");

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

742
	rets = pm_runtime_get(dev->dev);
743
	if (rets < 0 && rets != -EINPROGRESS) {
744
		pm_runtime_put_noidle(dev->dev);
745 746 747 748
		cl_err(dev, cl, "rpm: get failed %d\n", rets);
		return rets;
	}

749 750 751
	cb = mei_io_cb_init(cl, MEI_FOP_DISCONNECT, NULL);
	rets = cb ? 0 : -ENOMEM;
	if (rets)
752
		goto free;
753

754
	if (mei_hbuf_acquire(dev)) {
755 756
		if (mei_hbm_cl_disconnect_req(dev, cl)) {
			rets = -ENODEV;
757
			cl_err(dev, cl, "failed to disconnect.\n");
758 759
			goto free;
		}
760
		cl->timer_count = MEI_CONNECT_TIMEOUT;
761 762 763
		mdelay(10); /* Wait for hardware disconnection ready */
		list_add_tail(&cb->list, &dev->ctrl_rd_list.list);
	} else {
764
		cl_dbg(dev, cl, "add disconnect cb to control write list\n");
765 766 767 768 769
		list_add_tail(&cb->list, &dev->ctrl_wr_list.list);

	}
	mutex_unlock(&dev->device_lock);

770
	wait_event_timeout(cl->wait,
771 772 773 774
			MEI_FILE_DISCONNECTED == cl->state,
			mei_secs_to_jiffies(MEI_CL_CONNECT_TIMEOUT));

	mutex_lock(&dev->device_lock);
775

776 777
	if (MEI_FILE_DISCONNECTED == cl->state) {
		rets = 0;
778
		cl_dbg(dev, cl, "successfully disconnected from FW client.\n");
779
	} else {
780 781
		cl_dbg(dev, cl, "timeout on disconnect from FW client.\n");
		rets = -ETIME;
782 783 784 785 786
	}

	mei_io_list_flush(&dev->ctrl_rd_list, cl);
	mei_io_list_flush(&dev->ctrl_wr_list, cl);
free:
787
	cl_dbg(dev, cl, "rpm: autosuspend\n");
788 789
	pm_runtime_mark_last_busy(dev->dev);
	pm_runtime_put_autosuspend(dev->dev);
790

791 792 793 794 795 796
	mei_io_cb_free(cb);
	return rets;
}


/**
T
Tomas Winkler 已提交
797 798
 * mei_cl_is_other_connecting - checks if other
 *    client with the same me client id is connecting
799 800 801
 *
 * @cl: private data of the file object
 *
802
 * Return: true if other client is connected, false - otherwise.
803
 */
T
Tomas Winkler 已提交
804
bool mei_cl_is_other_connecting(struct mei_cl *cl)
805
{
T
Tomas Winkler 已提交
806
	struct mei_device *dev;
807
	struct mei_cl *ocl; /* the other client */
808

T
Tomas Winkler 已提交
809 810 811 812 813
	if (WARN_ON(!cl || !cl->dev))
		return false;

	dev = cl->dev;

814 815 816 817
	list_for_each_entry(ocl, &dev->file_list, link) {
		if (ocl->state == MEI_FILE_CONNECTING &&
		    ocl != cl &&
		    cl->me_client_id == ocl->me_client_id)
T
Tomas Winkler 已提交
818
			return true;
819 820

	}
T
Tomas Winkler 已提交
821 822

	return false;
823 824
}

825
/**
826
 * mei_cl_connect - connect host client to the me one
827 828
 *
 * @cl: host client
829
 * @file: pointer to file structure
830 831 832
 *
 * Locking: called under "dev->device_lock" lock
 *
833
 * Return: 0 on success, <0 on failure.
834 835 836 837 838 839 840 841 842 843 844 845
 */
int mei_cl_connect(struct mei_cl *cl, struct file *file)
{
	struct mei_device *dev;
	struct mei_cl_cb *cb;
	int rets;

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

	dev = cl->dev;

846
	rets = pm_runtime_get(dev->dev);
847
	if (rets < 0 && rets != -EINPROGRESS) {
848
		pm_runtime_put_noidle(dev->dev);
849 850 851 852
		cl_err(dev, cl, "rpm: get failed %d\n", rets);
		return rets;
	}

853 854 855
	cb = mei_io_cb_init(cl, MEI_FOP_CONNECT, file);
	rets = cb ? 0 : -ENOMEM;
	if (rets)
856 857
		goto out;

858 859
	/* run hbuf acquire last so we don't have to undo */
	if (!mei_cl_is_other_connecting(cl) && mei_hbuf_acquire(dev)) {
860
		cl->state = MEI_FILE_CONNECTING;
861 862 863 864 865 866 867
		if (mei_hbm_cl_connect_req(dev, cl)) {
			rets = -ENODEV;
			goto out;
		}
		cl->timer_count = MEI_CONNECT_TIMEOUT;
		list_add_tail(&cb->list, &dev->ctrl_rd_list.list);
	} else {
868
		cl->state = MEI_FILE_INITIALIZING;
869 870 871 872
		list_add_tail(&cb->list, &dev->ctrl_wr_list.list);
	}

	mutex_unlock(&dev->device_lock);
873
	wait_event_timeout(cl->wait,
874 875 876
			(cl->state == MEI_FILE_CONNECTED ||
			 cl->state == MEI_FILE_DISCONNECTED),
			mei_secs_to_jiffies(MEI_CL_CONNECT_TIMEOUT));
877 878
	mutex_lock(&dev->device_lock);

879
	if (!mei_cl_is_connected(cl)) {
880
		cl->state = MEI_FILE_DISCONNECTED;
881 882 883
		/* something went really wrong */
		if (!cl->status)
			cl->status = -EFAULT;
884 885 886 887 888 889 890 891

		mei_io_list_flush(&dev->ctrl_rd_list, cl);
		mei_io_list_flush(&dev->ctrl_wr_list, cl);
	}

	rets = cl->status;

out:
892
	cl_dbg(dev, cl, "rpm: autosuspend\n");
893 894
	pm_runtime_mark_last_busy(dev->dev);
	pm_runtime_put_autosuspend(dev->dev);
895

896 897 898 899
	mei_io_cb_free(cb);
	return rets;
}

900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930
/**
 * mei_cl_alloc_linked - allocate and link host client
 *
 * @dev: the device structure
 * @id: fixed host id or MEI_HOST_CLIENT_ID_ANY (-1) for generic one
 *
 * Return: cl on success ERR_PTR on failure
 */
struct mei_cl *mei_cl_alloc_linked(struct mei_device *dev, int id)
{
	struct mei_cl *cl;
	int ret;

	cl = mei_cl_allocate(dev);
	if (!cl) {
		ret = -ENOMEM;
		goto err;
	}

	ret = mei_cl_link(cl, id);
	if (ret)
		goto err;

	return cl;
err:
	kfree(cl);
	return ERR_PTR(ret);
}



931
/**
T
Tomas Winkler 已提交
932
 * mei_cl_flow_ctrl_creds - checks flow_control credits for cl.
933 934 935
 *
 * @cl: private data of the file object
 *
936
 * Return: 1 if mei_flow_ctrl_creds >0, 0 - otherwise.
937 938 939
 *	-ENOENT if mei_cl is not present
 *	-EINVAL if single_recv_buf == 0
 */
T
Tomas Winkler 已提交
940
int mei_cl_flow_ctrl_creds(struct mei_cl *cl)
941
{
T
Tomas Winkler 已提交
942
	struct mei_device *dev;
943
	struct mei_me_client *me_cl;
944
	int rets = 0;
945

T
Tomas Winkler 已提交
946 947 948 949 950
	if (WARN_ON(!cl || !cl->dev))
		return -EINVAL;

	dev = cl->dev;

951 952 953
	if (cl->mei_flow_ctrl_creds > 0)
		return 1;

954
	me_cl = mei_me_cl_by_uuid_id(dev, &cl->cl_uuid, cl->me_client_id);
955
	if (!me_cl) {
956
		cl_err(dev, cl, "no such me client %d\n", cl->me_client_id);
957
		return -ENOENT;
958
	}
959

960 961
	if (me_cl->mei_flow_ctrl_creds > 0) {
		rets = 1;
962
		if (WARN_ON(me_cl->props.single_recv_buf == 0))
963
			rets = -EINVAL;
964
	}
965 966
	mei_me_cl_put(me_cl);
	return rets;
967 968 969
}

/**
T
Tomas Winkler 已提交
970
 * mei_cl_flow_ctrl_reduce - reduces flow_control.
971 972
 *
 * @cl: private data of the file object
973
 *
974
 * Return:
975 976 977 978
 *	0 on success
 *	-ENOENT when me client is not found
 *	-EINVAL when ctrl credits are <= 0
 */
T
Tomas Winkler 已提交
979
int mei_cl_flow_ctrl_reduce(struct mei_cl *cl)
980
{
T
Tomas Winkler 已提交
981
	struct mei_device *dev;
982
	struct mei_me_client *me_cl;
983
	int rets;
984

T
Tomas Winkler 已提交
985 986 987 988 989
	if (WARN_ON(!cl || !cl->dev))
		return -EINVAL;

	dev = cl->dev;

990
	me_cl = mei_me_cl_by_uuid_id(dev, &cl->cl_uuid, cl->me_client_id);
991
	if (!me_cl) {
992
		cl_err(dev, cl, "no such me client %d\n", cl->me_client_id);
993
		return -ENOENT;
994
	}
995

996
	if (me_cl->props.single_recv_buf) {
997 998 999 1000
		if (WARN_ON(me_cl->mei_flow_ctrl_creds <= 0)) {
			rets = -EINVAL;
			goto out;
		}
1001 1002
		me_cl->mei_flow_ctrl_creds--;
	} else {
1003 1004 1005 1006
		if (WARN_ON(cl->mei_flow_ctrl_creds <= 0)) {
			rets = -EINVAL;
			goto out;
		}
1007
		cl->mei_flow_ctrl_creds--;
1008
	}
1009 1010 1011 1012
	rets = 0;
out:
	mei_me_cl_put(me_cl);
	return rets;
1013 1014
}

1015
/**
1016
 * mei_cl_read_start - the start read client message function.
1017
 *
T
Tomas Winkler 已提交
1018
 * @cl: host client
A
Alexander Usyskin 已提交
1019
 * @length: number of bytes to read
1020
 * @fp: pointer to file structure
1021
 *
1022
 * Return: 0 on success, <0 on failure.
1023
 */
1024
int mei_cl_read_start(struct mei_cl *cl, size_t length, struct file *fp)
1025
{
T
Tomas Winkler 已提交
1026
	struct mei_device *dev;
1027
	struct mei_cl_cb *cb;
1028
	struct mei_me_client *me_cl;
1029
	int rets;
1030

T
Tomas Winkler 已提交
1031 1032 1033 1034 1035
	if (WARN_ON(!cl || !cl->dev))
		return -ENODEV;

	dev = cl->dev;

1036
	if (!mei_cl_is_connected(cl))
1037 1038
		return -ENODEV;

T
Tomas Winkler 已提交
1039 1040
	/* HW currently supports only one pending read */
	if (!list_empty(&cl->rd_pending))
1041
		return -EBUSY;
T
Tomas Winkler 已提交
1042

1043
	me_cl = mei_me_cl_by_uuid_id(dev, &cl->cl_uuid, cl->me_client_id);
1044
	if (!me_cl) {
1045
		cl_err(dev, cl, "no such me client %d\n", cl->me_client_id);
1046
		return  -ENOTTY;
1047
	}
1048 1049 1050
	/* always allocate at least client max message */
	length = max_t(size_t, length, me_cl->props.max_msg_length);
	mei_me_cl_put(me_cl);
1051

1052
	rets = pm_runtime_get(dev->dev);
1053
	if (rets < 0 && rets != -EINPROGRESS) {
1054
		pm_runtime_put_noidle(dev->dev);
1055 1056 1057 1058
		cl_err(dev, cl, "rpm: get failed %d\n", rets);
		return rets;
	}

1059 1060
	cb = mei_cl_alloc_cb(cl, length, MEI_FOP_READ, fp);
	rets = cb ? 0 : -ENOMEM;
1061
	if (rets)
1062
		goto out;
1063

1064
	if (mei_hbuf_acquire(dev)) {
1065 1066
		rets = mei_hbm_cl_flow_control_req(dev, cl);
		if (rets < 0)
1067 1068
			goto out;

T
Tomas Winkler 已提交
1069
		list_add_tail(&cb->list, &cl->rd_pending);
1070
	} else {
1071
		list_add_tail(&cb->list, &dev->ctrl_wr_list.list);
1072
	}
1073

1074 1075
out:
	cl_dbg(dev, cl, "rpm: autosuspend\n");
1076 1077
	pm_runtime_mark_last_busy(dev->dev);
	pm_runtime_put_autosuspend(dev->dev);
1078 1079 1080 1081

	if (rets)
		mei_io_cb_free(cb);

1082 1083 1084
	return rets;
}

1085
/**
1086
 * mei_cl_irq_write - write a message to device
1087 1088 1089 1090 1091 1092
 *	from the interrupt thread context
 *
 * @cl: client
 * @cb: callback block.
 * @cmpl_list: complete list.
 *
1093
 * Return: 0, OK; otherwise error.
1094
 */
1095 1096
int mei_cl_irq_write(struct mei_cl *cl, struct mei_cl_cb *cb,
		     struct mei_cl_cb *cmpl_list)
1097
{
1098 1099
	struct mei_device *dev;
	struct mei_msg_data *buf;
1100
	struct mei_msg_hdr mei_hdr;
1101 1102
	size_t len;
	u32 msg_slots;
1103
	int slots;
1104
	int rets;
1105

1106 1107 1108 1109 1110
	if (WARN_ON(!cl || !cl->dev))
		return -ENODEV;

	dev = cl->dev;

1111
	buf = &cb->buf;
1112 1113 1114 1115 1116 1117

	rets = mei_cl_flow_ctrl_creds(cl);
	if (rets < 0)
		return rets;

	if (rets == 0) {
1118
		cl_dbg(dev, cl, "No flow control credentials: not sending.\n");
1119 1120 1121
		return 0;
	}

1122
	slots = mei_hbuf_empty_slots(dev);
1123 1124 1125
	len = buf->size - cb->buf_idx;
	msg_slots = mei_data2slots(len);

1126 1127 1128
	mei_hdr.host_addr = cl->host_client_id;
	mei_hdr.me_addr = cl->me_client_id;
	mei_hdr.reserved = 0;
1129
	mei_hdr.internal = cb->internal;
1130

1131
	if (slots >= msg_slots) {
1132 1133 1134
		mei_hdr.length = len;
		mei_hdr.msg_complete = 1;
	/* Split the message only if we can write the whole host buffer */
1135 1136 1137
	} else if (slots == dev->hbuf_depth) {
		msg_slots = slots;
		len = (slots * sizeof(u32)) - sizeof(struct mei_msg_hdr);
1138 1139 1140 1141 1142 1143 1144
		mei_hdr.length = len;
		mei_hdr.msg_complete = 0;
	} else {
		/* wait for next time the host buffer is empty */
		return 0;
	}

1145
	cl_dbg(dev, cl, "buf: size = %d idx = %lu\n",
1146
			cb->buf.size, cb->buf_idx);
1147

1148
	rets = mei_write_message(dev, &mei_hdr, buf->data + cb->buf_idx);
1149 1150
	if (rets) {
		cl->status = rets;
1151
		list_move_tail(&cb->list, &cmpl_list->list);
1152
		return rets;
1153 1154 1155
	}

	cl->status = 0;
1156
	cl->writing_state = MEI_WRITING;
1157
	cb->buf_idx += mei_hdr.length;
1158
	cb->completed = mei_hdr.msg_complete == 1;
1159

1160 1161
	if (mei_hdr.msg_complete) {
		if (mei_cl_flow_ctrl_reduce(cl))
1162
			return -EIO;
1163 1164 1165 1166 1167 1168
		list_move_tail(&cb->list, &dev->write_waiting_list.list);
	}

	return 0;
}

T
Tomas Winkler 已提交
1169 1170
/**
 * mei_cl_write - submit a write cb to mei device
1171
 *	assumes device_lock is locked
T
Tomas Winkler 已提交
1172 1173
 *
 * @cl: host client
1174
 * @cb: write callback with filled data
A
Alexander Usyskin 已提交
1175
 * @blocking: block until completed
T
Tomas Winkler 已提交
1176
 *
1177
 * Return: number of bytes sent on success, <0 on failure.
T
Tomas Winkler 已提交
1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195
 */
int mei_cl_write(struct mei_cl *cl, struct mei_cl_cb *cb, bool blocking)
{
	struct mei_device *dev;
	struct mei_msg_data *buf;
	struct mei_msg_hdr mei_hdr;
	int rets;


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

	if (WARN_ON(!cb))
		return -EINVAL;

	dev = cl->dev;


1196
	buf = &cb->buf;
T
Tomas Winkler 已提交
1197

1198
	cl_dbg(dev, cl, "size=%d\n", buf->size);
T
Tomas Winkler 已提交
1199

1200
	rets = pm_runtime_get(dev->dev);
1201
	if (rets < 0 && rets != -EINPROGRESS) {
1202
		pm_runtime_put_noidle(dev->dev);
1203 1204 1205
		cl_err(dev, cl, "rpm: get failed %d\n", rets);
		return rets;
	}
T
Tomas Winkler 已提交
1206

1207 1208 1209 1210 1211 1212 1213 1214
	cb->buf_idx = 0;
	cl->writing_state = MEI_IDLE;

	mei_hdr.host_addr = cl->host_client_id;
	mei_hdr.me_addr = cl->me_client_id;
	mei_hdr.reserved = 0;
	mei_hdr.msg_complete = 0;
	mei_hdr.internal = cb->internal;
T
Tomas Winkler 已提交
1215 1216 1217 1218 1219

	rets = mei_cl_flow_ctrl_creds(cl);
	if (rets < 0)
		goto err;

1220 1221 1222 1223 1224 1225 1226
	if (rets == 0) {
		cl_dbg(dev, cl, "No flow control credentials: not sending.\n");
		rets = buf->size;
		goto out;
	}
	if (!mei_hbuf_acquire(dev)) {
		cl_dbg(dev, cl, "Cannot acquire the host buffer: not sending.\n");
T
Tomas Winkler 已提交
1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239
		rets = buf->size;
		goto out;
	}

	/* Check for a maximum length */
	if (buf->size > mei_hbuf_max_len(dev)) {
		mei_hdr.length = mei_hbuf_max_len(dev);
		mei_hdr.msg_complete = 0;
	} else {
		mei_hdr.length = buf->size;
		mei_hdr.msg_complete = 1;
	}

1240 1241
	rets = mei_write_message(dev, &mei_hdr, buf->data);
	if (rets)
T
Tomas Winkler 已提交
1242 1243 1244 1245
		goto err;

	cl->writing_state = MEI_WRITING;
	cb->buf_idx = mei_hdr.length;
1246
	cb->completed = mei_hdr.msg_complete == 1;
T
Tomas Winkler 已提交
1247 1248 1249

out:
	if (mei_hdr.msg_complete) {
1250 1251
		rets = mei_cl_flow_ctrl_reduce(cl);
		if (rets < 0)
T
Tomas Winkler 已提交
1252
			goto err;
1253

T
Tomas Winkler 已提交
1254 1255 1256 1257 1258 1259 1260 1261 1262
		list_add_tail(&cb->list, &dev->write_waiting_list.list);
	} else {
		list_add_tail(&cb->list, &dev->write_list.list);
	}


	if (blocking && cl->writing_state != MEI_WRITE_COMPLETE) {

		mutex_unlock(&dev->device_lock);
1263 1264
		rets = wait_event_interruptible(cl->tx_wait,
				cl->writing_state == MEI_WRITE_COMPLETE);
T
Tomas Winkler 已提交
1265
		mutex_lock(&dev->device_lock);
1266 1267 1268 1269 1270 1271
		/* wait_event_interruptible returns -ERESTARTSYS */
		if (rets) {
			if (signal_pending(current))
				rets = -EINTR;
			goto err;
		}
T
Tomas Winkler 已提交
1272
	}
1273 1274

	rets = buf->size;
T
Tomas Winkler 已提交
1275
err:
1276
	cl_dbg(dev, cl, "rpm: autosuspend\n");
1277 1278
	pm_runtime_mark_last_busy(dev->dev);
	pm_runtime_put_autosuspend(dev->dev);
1279

T
Tomas Winkler 已提交
1280 1281 1282 1283
	return rets;
}


1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298
/**
 * mei_cl_complete - processes completed operation for a client
 *
 * @cl: private data of the file object.
 * @cb: callback block.
 */
void mei_cl_complete(struct mei_cl *cl, struct mei_cl_cb *cb)
{
	if (cb->fop_type == MEI_FOP_WRITE) {
		mei_io_cb_free(cb);
		cb = NULL;
		cl->writing_state = MEI_WRITE_COMPLETE;
		if (waitqueue_active(&cl->tx_wait))
			wake_up_interruptible(&cl->tx_wait);

T
Tomas Winkler 已提交
1299 1300
	} else if (cb->fop_type == MEI_FOP_READ) {
		list_add_tail(&cb->list, &cl->rd_completed);
1301
		if (waitqueue_active(&cl->rx_wait))
T
Tomas Winkler 已提交
1302
			wake_up_interruptible_all(&cl->rx_wait);
1303 1304 1305 1306 1307 1308
		else
			mei_cl_bus_rx_event(cl);

	}
}

T
Tomas Winkler 已提交
1309

1310 1311 1312
/**
 * mei_cl_all_disconnect - disconnect forcefully all connected clients
 *
1313
 * @dev: mei device
1314 1315 1316 1317
 */

void mei_cl_all_disconnect(struct mei_device *dev)
{
1318
	struct mei_cl *cl;
1319

1320
	list_for_each_entry(cl, &dev->file_list, link) {
1321 1322 1323 1324 1325 1326 1327 1328
		cl->state = MEI_FILE_DISCONNECTED;
		cl->mei_flow_ctrl_creds = 0;
		cl->timer_count = 0;
	}
}


/**
T
Tomas Winkler 已提交
1329
 * mei_cl_all_wakeup  - wake up all readers and writers they can be interrupted
1330
 *
1331
 * @dev: mei device
1332
 */
T
Tomas Winkler 已提交
1333
void mei_cl_all_wakeup(struct mei_device *dev)
1334
{
1335
	struct mei_cl *cl;
1336

1337
	list_for_each_entry(cl, &dev->file_list, link) {
1338
		if (waitqueue_active(&cl->rx_wait)) {
1339
			cl_dbg(dev, cl, "Waking up reading client!\n");
1340 1341
			wake_up_interruptible(&cl->rx_wait);
		}
T
Tomas Winkler 已提交
1342
		if (waitqueue_active(&cl->tx_wait)) {
1343
			cl_dbg(dev, cl, "Waking up writing client!\n");
T
Tomas Winkler 已提交
1344 1345
			wake_up_interruptible(&cl->tx_wait);
		}
1346 1347 1348 1349 1350
	}
}

/**
 * mei_cl_all_write_clear - clear all pending writes
1351 1352
 *
 * @dev: mei device
1353 1354 1355
 */
void mei_cl_all_write_clear(struct mei_device *dev)
{
1356 1357
	mei_io_list_free(&dev->write_list, NULL);
	mei_io_list_free(&dev->write_waiting_list, NULL);
1358 1359 1360
}