client.c 37.7 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
 * __mei_me_cl_del  - delete me client from the list and decrease
87 88 89 90 91 92 93 94 95 96 97 98
 *     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;

99
	list_del_init(&me_cl->list);
100 101 102
	mei_me_cl_put(me_cl);
}

103 104 105 106 107 108 109 110 111 112 113 114 115 116
/**
 * mei_me_cl_del - delete me client from the list and decrease
 *     reference counter
 *
 * @dev: mei device
 * @me_cl: me client
 */
void mei_me_cl_del(struct mei_device *dev, struct mei_me_client *me_cl)
{
	down_write(&dev->me_clients_rwsem);
	__mei_me_cl_del(dev, me_cl);
	up_write(&dev->me_clients_rwsem);
}

117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
/**
 * 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
132
 *	increases ref count
T
Tomas Winkler 已提交
133 134
 *
 * @dev: mei device
135
 * @uuid: me client uuid
136
 *
137
 * Return: me client or NULL if not found
138 139
 *
 * Locking: dev->me_clients_rwsem
T
Tomas Winkler 已提交
140
 */
141
static struct mei_me_client *__mei_me_cl_by_uuid(struct mei_device *dev,
142
					const uuid_le *uuid)
T
Tomas Winkler 已提交
143
{
144
	struct mei_me_client *me_cl;
145
	const uuid_le *pn;
T
Tomas Winkler 已提交
146

147 148 149 150 151
	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)
152
			return mei_me_cl_get(me_cl);
153
	}
T
Tomas Winkler 已提交
154

155
	return NULL;
T
Tomas Winkler 已提交
156 157
}

158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
/**
 * 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 已提交
181
/**
182
 * mei_me_cl_by_id - locate me client by client id
183
 *	increases ref count
T
Tomas Winkler 已提交
184 185 186 187
 *
 * @dev: the device structure
 * @client_id: me client id
 *
188
 * Return: me client or NULL if not found
189 190
 *
 * Locking: dev->me_clients_rwsem
T
Tomas Winkler 已提交
191
 */
192
struct mei_me_client *mei_me_cl_by_id(struct mei_device *dev, u8 client_id)
T
Tomas Winkler 已提交
193
{
194

195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223
	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)
{
224
	struct mei_me_client *me_cl;
225 226 227
	const uuid_le *pn;

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

229 230 231 232
	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)
233
			return mei_me_cl_get(me_cl);
234
	}
235

236
	return NULL;
T
Tomas Winkler 已提交
237
}
238

239

240 241
/**
 * mei_me_cl_by_uuid_id - locate me client by client id and uuid
242
 *	increases ref count
243 244 245 246 247
 *
 * @dev: the device structure
 * @uuid: me client uuid
 * @client_id: me client id
 *
248
 * Return: me client or null if not found
249
 */
250 251 252 253 254
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;

255 256 257
	down_read(&dev->me_clients_rwsem);
	me_cl = __mei_me_cl_by_uuid_id(dev, uuid, client_id);
	up_read(&dev->me_clients_rwsem);
258

259
	return me_cl;
260 261
}

262
/**
263
 * mei_me_cl_rm_by_uuid - remove all me clients matching uuid
264 265 266
 *
 * @dev: the device structure
 * @uuid: me client uuid
267 268
 *
 * Locking: called under "dev->device_lock" lock
269
 */
270
void mei_me_cl_rm_by_uuid(struct mei_device *dev, const uuid_le *uuid)
271
{
272
	struct mei_me_client *me_cl;
273

274
	dev_dbg(dev->dev, "remove %pUl\n", uuid);
275 276 277 278 279

	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);
280 281 282 283 284 285 286 287 288 289 290 291 292
}

/**
 * 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)
{
293
	struct mei_me_client *me_cl;
294 295

	dev_dbg(dev->dev, "remove %pUl %d\n", uuid, id);
296 297 298 299 300

	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);
301 302
}

303 304 305 306 307 308 309 310 311 312 313
/**
 * 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;

314
	down_write(&dev->me_clients_rwsem);
315
	list_for_each_entry_safe(me_cl, next, &dev->me_clients, list)
316 317
		__mei_me_cl_del(dev, me_cl);
	up_write(&dev->me_clients_rwsem);
318 319
}

320
/**
321
 * mei_cl_cmp_id - tells if the clients are the same
322
 *
323 324 325
 * @cl1: host client 1
 * @cl2: host client 2
 *
326
 * Return: true  - if the clients has same host and me ids
327 328 329 330 331 332 333
 *         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) &&
334
		(mei_cl_me_id(cl1) == mei_cl_me_id(cl2));
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 364 365 366 367 368 369 370 371 372 373 374 375 376 377
/**
 * 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;
}

378
/**
379
 * __mei_io_list_flush - removes and frees cbs belonging to cl.
380 381 382 383
 *
 * @list:  an instance of our list structure
 * @cl:    host client, can be NULL for flushing the whole list
 * @free:  whether to free the cbs
384
 */
385 386
static void __mei_io_list_flush(struct mei_cl_cb *list,
				struct mei_cl *cl, bool free)
387
{
388
	struct mei_cl_cb *cb, *next;
389

390
	/* enable removing everything if no cl is specified */
391
	list_for_each_entry_safe(cb, next, &list->list, list) {
392
		if (!cl || mei_cl_cmp_id(cl, cb->cl)) {
393
			list_del_init(&cb->list);
394 395 396
			if (free)
				mei_io_cb_free(cb);
		}
397 398 399
	}
}

400 401 402 403 404 405
/**
 * mei_io_list_flush - removes list entry belonging to cl.
 *
 * @list:  An instance of our list structure
 * @cl: host client
 */
406
void mei_io_list_flush(struct mei_cl_cb *list, struct mei_cl *cl)
407 408 409 410 411 412 413 414 415 416 417 418 419 420 421
{
	__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);
}

422
/**
423
 * mei_io_cb_alloc_buf - allocate callback buffer
424
 *
425 426
 * @cb: io callback structure
 * @length: size of the buffer
427
 *
428
 * Return: 0 on success
429 430 431
 *         -EINVAL if cb is NULL
 *         -ENOMEM if allocation failed
 */
432
int mei_io_cb_alloc_buf(struct mei_cl_cb *cb, size_t length)
433 434 435 436 437 438 439
{
	if (!cb)
		return -EINVAL;

	if (length == 0)
		return 0;

440 441
	cb->buf.data = kmalloc(length, GFP_KERNEL);
	if (!cb->buf.data)
442
		return -ENOMEM;
443
	cb->buf.size = length;
444 445
	return 0;
}
446

447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473
/**
 * 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 已提交
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 501 502 503 504 505 506 507 508 509 510 511 512 513 514
/**
 * 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);
}

515 516 517 518
/**
 * mei_cl_flush_queues - flushes queue lists belonging to cl.
 *
 * @cl: host client
T
Tomas Winkler 已提交
519
 * @fp: file pointer (matching cb file object), may be NULL
A
Alexander Usyskin 已提交
520 521
 *
 * Return: 0 on success, -EINVAL if cl or cl->dev is NULL.
522
 */
T
Tomas Winkler 已提交
523
int mei_cl_flush_queues(struct mei_cl *cl, const struct file *fp)
524
{
525 526
	struct mei_device *dev;

T
Tomas Winkler 已提交
527
	if (WARN_ON(!cl || !cl->dev))
528 529
		return -EINVAL;

530 531 532
	dev = cl->dev;

	cl_dbg(dev, cl, "remove list entry belonging to cl\n");
533 534
	mei_io_list_free(&cl->dev->write_list, cl);
	mei_io_list_free(&cl->dev->write_waiting_list, cl);
535 536 537 538
	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 已提交
539 540 541

	mei_cl_read_cb_flush(cl, fp);

542 543 544
	return 0;
}

545

546
/**
547
 * mei_cl_init - initializes cl.
548 549 550 551 552 553 554 555 556 557
 *
 * @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);
558
	init_waitqueue_head(&cl->ev_wait);
T
Tomas Winkler 已提交
559 560
	INIT_LIST_HEAD(&cl->rd_completed);
	INIT_LIST_HEAD(&cl->rd_pending);
561 562
	INIT_LIST_HEAD(&cl->link);
	cl->writing_state = MEI_IDLE;
563
	cl->state = MEI_FILE_INITIALIZING;
564 565 566 567 568 569 570
	cl->dev = dev;
}

/**
 * mei_cl_allocate - allocates cl  structure and sets it up.
 *
 * @dev: mei device
571
 * Return:  The allocated file or NULL on failure
572 573 574 575 576 577 578 579 580 581 582 583 584 585
 */
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;
}

586 587
/**
 * mei_cl_link - allocate host id in the host map
588
 *
589
 * @cl: host client
590
 * @id: fixed host id or MEI_HOST_CLIENT_ID_ANY (-1) for generic one
591
 *
592
 * Return: 0 on success
593
 *	-EINVAL on incorrect values
594
 *	-EMFILE if open count exceeded.
595
 */
596
int mei_cl_link(struct mei_cl *cl, int id)
597
{
T
Tomas Winkler 已提交
598
	struct mei_device *dev;
T
Tomas Winkler 已提交
599
	long open_handle_count;
600

601
	if (WARN_ON(!cl || !cl->dev))
602 603
		return -EINVAL;

T
Tomas Winkler 已提交
604 605
	dev = cl->dev;

606
	/* If Id is not assigned get one*/
607 608 609
	if (id == MEI_HOST_CLIENT_ID_ANY)
		id = find_first_zero_bit(dev->host_clients_map,
					MEI_CLIENTS_MAX);
610

611
	if (id >= MEI_CLIENTS_MAX) {
612
		dev_err(dev->dev, "id exceeded %d", MEI_CLIENTS_MAX);
613 614 615
		return -EMFILE;
	}

T
Tomas Winkler 已提交
616 617
	open_handle_count = dev->open_handle_count + dev->iamthif_open_count;
	if (open_handle_count >= MEI_MAX_OPEN_HANDLE_COUNT) {
618
		dev_err(dev->dev, "open_handle_count exceeded %d",
619 620
			MEI_MAX_OPEN_HANDLE_COUNT);
		return -EMFILE;
621 622
	}

623 624 625 626 627 628 629 630 631
	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;

632
	cl_dbg(dev, cl, "link cl\n");
633
	return 0;
634
}
635

636
/**
637
 * mei_cl_unlink - remove host client from the list
638
 *
639
 * @cl: host client
A
Alexander Usyskin 已提交
640 641
 *
 * Return: always 0
642
 */
T
Tomas Winkler 已提交
643
int mei_cl_unlink(struct mei_cl *cl)
644
{
T
Tomas Winkler 已提交
645 646
	struct mei_device *dev;

647 648 649 650
	/* don't shout on error exit path */
	if (!cl)
		return 0;

651
	/* amthif might not be initialized */
652 653
	if (!cl->dev)
		return 0;
T
Tomas Winkler 已提交
654 655 656

	dev = cl->dev;

657 658
	cl_dbg(dev, cl, "unlink client");

T
Tomas Winkler 已提交
659 660 661 662 663 664 665 666 667 668 669
	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 已提交
670
	return 0;
671 672 673 674 675
}


void mei_host_client_init(struct work_struct *work)
{
676 677
	struct mei_device *dev =
		container_of(work, struct mei_device, init_work);
678
	struct mei_me_client *me_cl;
679 680 681

	mutex_lock(&dev->device_lock);

682 683
	me_cl = mei_me_cl_by_uuid(dev, &mei_amthif_guid);
	if (me_cl)
684
		mei_amthif_host_init(dev, me_cl);
685
	mei_me_cl_put(me_cl);
686

687
	dev->dev_state = MEI_DEV_ENABLED;
688
	dev->reset_count = 0;
689
	mutex_unlock(&dev->device_lock);
690

691 692
	mei_cl_bus_rescan(dev);

693 694 695
	pm_runtime_mark_last_busy(dev->dev);
	dev_dbg(dev->dev, "rpm: autosuspend\n");
	pm_runtime_autosuspend(dev->dev);
696 697
}

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

712
	if (!dev->hbuf_is_ready) {
713
		dev_dbg(dev->dev, "hbuf is not ready\n");
714 715 716 717 718 719 720
		return false;
	}

	dev->hbuf_is_ready = false;

	return true;
}
721

722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740
/**
 * mei_cl_set_disconnected - set disconnected state and clear
 *   associated states and resources
 *
 * @cl: host client
 */
void mei_cl_set_disconnected(struct mei_cl *cl)
{
	struct mei_device *dev = cl->dev;

	if (cl->state == MEI_FILE_DISCONNECTED ||
	    cl->state == MEI_FILE_INITIALIZING)
		return;

	cl->state = MEI_FILE_DISCONNECTED;
	mei_io_list_flush(&dev->ctrl_rd_list, cl);
	mei_io_list_flush(&dev->ctrl_wr_list, cl);
	cl->mei_flow_ctrl_creds = 0;
	cl->timer_count = 0;
741

742 743 744 745 746 747
	if (!cl->me_cl)
		return;

	if (!WARN_ON(cl->me_cl->connect_count == 0))
		cl->me_cl->connect_count--;

748 749 750
	if (cl->me_cl->connect_count == 0)
		cl->me_cl->mei_flow_ctrl_creds = 0;

751 752
	mei_me_cl_put(cl->me_cl);
	cl->me_cl = NULL;
753 754
}

755 756
static int mei_cl_set_connecting(struct mei_cl *cl, struct mei_me_client *me_cl)
{
757
	if (!mei_me_cl_get(me_cl))
758 759
		return -ENOENT;

760 761 762 763 764 765 766 767 768
	/* only one connection is allowed for fixed address clients */
	if (me_cl->props.fixed_address) {
		if (me_cl->connect_count) {
			mei_me_cl_put(me_cl);
			return -EBUSY;
		}
	}

	cl->me_cl = me_cl;
769 770 771 772 773 774
	cl->state = MEI_FILE_CONNECTING;
	cl->me_cl->connect_count++;

	return 0;
}

775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833
/*
 * mei_cl_send_disconnect - send disconnect request
 *
 * @cl: host client
 * @cb: callback block
 *
 * Return: 0, OK; otherwise, error.
 */
static int mei_cl_send_disconnect(struct mei_cl *cl, struct mei_cl_cb *cb)
{
	struct mei_device *dev;
	int ret;

	dev = cl->dev;

	ret = mei_hbm_cl_disconnect_req(dev, cl);
	cl->status = ret;
	if (ret) {
		cl->state = MEI_FILE_DISCONNECT_REPLY;
		return ret;
	}

	list_move_tail(&cb->list, &dev->ctrl_rd_list.list);
	cl->timer_count = MEI_CONNECT_TIMEOUT;

	return 0;
}

/**
 * mei_cl_irq_disconnect - processes close related operation from
 *	interrupt thread context - send disconnect request
 *
 * @cl: client
 * @cb: callback block.
 * @cmpl_list: complete list.
 *
 * Return: 0, OK; otherwise, error.
 */
int mei_cl_irq_disconnect(struct mei_cl *cl, struct mei_cl_cb *cb,
			    struct mei_cl_cb *cmpl_list)
{
	struct mei_device *dev = cl->dev;
	u32 msg_slots;
	int slots;
	int ret;

	msg_slots = mei_data2slots(sizeof(struct hbm_client_connect_request));
	slots = mei_hbuf_empty_slots(dev);

	if (slots < msg_slots)
		return -EMSGSIZE;

	ret = mei_cl_send_disconnect(cl, cb);
	if (ret)
		list_move_tail(&cb->list, &cmpl_list->list);

	return ret;
}

834
/**
835 836
 * __mei_cl_disconnect - disconnect host client from the me one
 *     internal function runtime pm has to be already acquired
837
 *
T
Tomas Winkler 已提交
838
 * @cl: host client
839
 *
840
 * Return: 0 on success, <0 on failure.
841
 */
842
static int __mei_cl_disconnect(struct mei_cl *cl)
843
{
T
Tomas Winkler 已提交
844
	struct mei_device *dev;
845
	struct mei_cl_cb *cb;
846
	int rets;
847

T
Tomas Winkler 已提交
848 849
	dev = cl->dev;

850 851
	cl->state = MEI_FILE_DISCONNECTING;

852 853 854
	cb = mei_io_cb_init(cl, MEI_FOP_DISCONNECT, NULL);
	rets = cb ? 0 : -ENOMEM;
	if (rets)
855 856 857 858
		goto out;

	cl_dbg(dev, cl, "add disconnect cb to control write list\n");
	list_add_tail(&cb->list, &dev->ctrl_wr_list.list);
859

860
	if (mei_hbuf_acquire(dev)) {
861 862
		rets = mei_cl_send_disconnect(cl, cb);
		if (rets) {
863
			cl_err(dev, cl, "failed to disconnect.\n");
864
			goto out;
865 866 867
		}
	}

868 869 870
	mutex_unlock(&dev->device_lock);
	wait_event_timeout(cl->wait, cl->state == MEI_FILE_DISCONNECT_REPLY,
			   mei_secs_to_jiffies(MEI_CL_CONNECT_TIMEOUT));
871
	mutex_lock(&dev->device_lock);
872

873 874
	rets = cl->status;
	if (cl->state != MEI_FILE_DISCONNECT_REPLY) {
875 876
		cl_dbg(dev, cl, "timeout on disconnect from FW client.\n");
		rets = -ETIME;
877 878
	}

879 880 881 882 883 884
out:
	/* we disconnect also on error */
	mei_cl_set_disconnected(cl);
	if (!rets)
		cl_dbg(dev, cl, "successfully disconnected from FW client.\n");

885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 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
	mei_io_cb_free(cb);
	return rets;
}

/**
 * mei_cl_disconnect - disconnect host client from the me one
 *
 * @cl: host client
 *
 * Locking: called under "dev->device_lock" lock
 *
 * Return: 0 on success, <0 on failure.
 */
int mei_cl_disconnect(struct mei_cl *cl)
{
	struct mei_device *dev;
	int rets;

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

	dev = cl->dev;

	cl_dbg(dev, cl, "disconnecting");

	if (!mei_cl_is_connected(cl))
		return 0;

	if (mei_cl_is_fixed_address(cl)) {
		mei_cl_set_disconnected(cl);
		return 0;
	}

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

	rets = __mei_cl_disconnect(cl);

927
	cl_dbg(dev, cl, "rpm: autosuspend\n");
928 929
	pm_runtime_mark_last_busy(dev->dev);
	pm_runtime_put_autosuspend(dev->dev);
930

931 932 933 934 935
	return rets;
}


/**
T
Tomas Winkler 已提交
936 937
 * mei_cl_is_other_connecting - checks if other
 *    client with the same me client id is connecting
938 939 940
 *
 * @cl: private data of the file object
 *
941
 * Return: true if other client is connected, false - otherwise.
942
 */
T
Tomas Winkler 已提交
943
static bool mei_cl_is_other_connecting(struct mei_cl *cl)
944
{
T
Tomas Winkler 已提交
945
	struct mei_device *dev;
T
Tomas Winkler 已提交
946
	struct mei_cl_cb *cb;
T
Tomas Winkler 已提交
947 948 949

	dev = cl->dev;

T
Tomas Winkler 已提交
950 951
	list_for_each_entry(cb, &dev->ctrl_rd_list.list, list) {
		if (cb->fop_type == MEI_FOP_CONNECT &&
952
		    mei_cl_me_id(cl) == mei_cl_me_id(cb->cl))
T
Tomas Winkler 已提交
953
			return true;
954
	}
T
Tomas Winkler 已提交
955 956

	return false;
957 958
}

T
Tomas Winkler 已提交
959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018
/**
 * mei_cl_send_connect - send connect request
 *
 * @cl: host client
 * @cb: callback block
 *
 * Return: 0, OK; otherwise, error.
 */
static int mei_cl_send_connect(struct mei_cl *cl, struct mei_cl_cb *cb)
{
	struct mei_device *dev;
	int ret;

	dev = cl->dev;

	ret = mei_hbm_cl_connect_req(dev, cl);
	cl->status = ret;
	if (ret) {
		cl->state = MEI_FILE_DISCONNECT_REPLY;
		return ret;
	}

	list_move_tail(&cb->list, &dev->ctrl_rd_list.list);
	cl->timer_count = MEI_CONNECT_TIMEOUT;
	return 0;
}

/**
 * mei_cl_irq_connect - send connect request in irq_thread context
 *
 * @cl: host client
 * @cb: callback block
 * @cmpl_list: complete list
 *
 * Return: 0, OK; otherwise, error.
 */
int mei_cl_irq_connect(struct mei_cl *cl, struct mei_cl_cb *cb,
			      struct mei_cl_cb *cmpl_list)
{
	struct mei_device *dev = cl->dev;
	u32 msg_slots;
	int slots;
	int rets;

	msg_slots = mei_data2slots(sizeof(struct hbm_client_connect_request));
	slots = mei_hbuf_empty_slots(dev);

	if (mei_cl_is_other_connecting(cl))
		return 0;

	if (slots < msg_slots)
		return -EMSGSIZE;

	rets = mei_cl_send_connect(cl, cb);
	if (rets)
		list_move_tail(&cb->list, &cmpl_list->list);

	return rets;
}

1019
/**
1020
 * mei_cl_connect - connect host client to the me one
1021 1022
 *
 * @cl: host client
1023
 * @me_cl: me client
1024
 * @file: pointer to file structure
1025 1026 1027
 *
 * Locking: called under "dev->device_lock" lock
 *
1028
 * Return: 0 on success, <0 on failure.
1029
 */
1030 1031
int mei_cl_connect(struct mei_cl *cl, struct mei_me_client *me_cl,
		   struct file *file)
1032 1033 1034 1035 1036
{
	struct mei_device *dev;
	struct mei_cl_cb *cb;
	int rets;

1037
	if (WARN_ON(!cl || !cl->dev || !me_cl))
1038 1039 1040 1041
		return -ENODEV;

	dev = cl->dev;

1042 1043 1044 1045 1046 1047 1048 1049 1050
	rets = mei_cl_set_connecting(cl, me_cl);
	if (rets)
		return rets;

	if (mei_cl_is_fixed_address(cl)) {
		cl->state = MEI_FILE_CONNECTED;
		return 0;
	}

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

1058 1059 1060
	cb = mei_io_cb_init(cl, MEI_FOP_CONNECT, file);
	rets = cb ? 0 : -ENOMEM;
	if (rets)
1061 1062
		goto out;

T
Tomas Winkler 已提交
1063 1064
	list_add_tail(&cb->list, &dev->ctrl_wr_list.list);

1065 1066
	/* run hbuf acquire last so we don't have to undo */
	if (!mei_cl_is_other_connecting(cl) && mei_hbuf_acquire(dev)) {
T
Tomas Winkler 已提交
1067 1068
		rets = mei_cl_send_connect(cl, cb);
		if (rets)
1069 1070 1071 1072
			goto out;
	}

	mutex_unlock(&dev->device_lock);
1073
	wait_event_timeout(cl->wait,
1074
			(cl->state == MEI_FILE_CONNECTED ||
1075
			 cl->state == MEI_FILE_DISCONNECT_REQUIRED ||
1076
			 cl->state == MEI_FILE_DISCONNECT_REPLY),
1077
			mei_secs_to_jiffies(MEI_CL_CONNECT_TIMEOUT));
1078 1079
	mutex_lock(&dev->device_lock);

1080
	if (!mei_cl_is_connected(cl)) {
1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091
		if (cl->state == MEI_FILE_DISCONNECT_REQUIRED) {
			mei_io_list_flush(&dev->ctrl_rd_list, cl);
			mei_io_list_flush(&dev->ctrl_wr_list, cl);
			 /* ignore disconnect return valuue;
			  * in case of failure reset will be invoked
			  */
			__mei_cl_disconnect(cl);
			rets = -EFAULT;
			goto out;
		}

T
Tomas Winkler 已提交
1092
		/* timeout or something went really wrong */
1093 1094
		if (!cl->status)
			cl->status = -EFAULT;
1095 1096 1097 1098
	}

	rets = cl->status;
out:
1099
	cl_dbg(dev, cl, "rpm: autosuspend\n");
1100 1101
	pm_runtime_mark_last_busy(dev->dev);
	pm_runtime_put_autosuspend(dev->dev);
1102

1103
	mei_io_cb_free(cb);
T
Tomas Winkler 已提交
1104

1105
nortpm:
T
Tomas Winkler 已提交
1106 1107 1108
	if (!mei_cl_is_connected(cl))
		mei_cl_set_disconnected(cl);

1109 1110 1111
	return rets;
}

1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142
/**
 * 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);
}



1143
/**
T
Tomas Winkler 已提交
1144
 * mei_cl_flow_ctrl_creds - checks flow_control credits for cl.
1145 1146 1147
 *
 * @cl: private data of the file object
 *
1148
 * Return: 1 if mei_flow_ctrl_creds >0, 0 - otherwise.
1149
 */
1150
static int mei_cl_flow_ctrl_creds(struct mei_cl *cl)
1151
{
1152 1153
	int rets;

1154
	if (WARN_ON(!cl || !cl->me_cl))
T
Tomas Winkler 已提交
1155 1156
		return -EINVAL;

1157 1158 1159
	if (cl->mei_flow_ctrl_creds > 0)
		return 1;

1160 1161 1162 1163 1164 1165 1166
	if (mei_cl_is_fixed_address(cl)) {
		rets = mei_cl_read_start(cl, mei_cl_mtu(cl), NULL);
		if (rets && rets != -EBUSY)
			return rets;
		return 1;
	}

1167 1168 1169
	if (mei_cl_is_single_recv_buf(cl)) {
		if (cl->me_cl->mei_flow_ctrl_creds > 0)
			return 1;
1170
	}
1171
	return 0;
1172 1173 1174
}

/**
T
Tomas Winkler 已提交
1175
 * mei_cl_flow_ctrl_reduce - reduces flow_control.
1176 1177
 *
 * @cl: private data of the file object
1178
 *
1179
 * Return:
1180 1181 1182
 *	0 on success
 *	-EINVAL when ctrl credits are <= 0
 */
1183
static int mei_cl_flow_ctrl_reduce(struct mei_cl *cl)
1184
{
1185
	if (WARN_ON(!cl || !cl->me_cl))
T
Tomas Winkler 已提交
1186 1187
		return -EINVAL;

1188 1189 1190
	if (mei_cl_is_fixed_address(cl))
		return 0;

1191 1192 1193 1194
	if (mei_cl_is_single_recv_buf(cl)) {
		if (WARN_ON(cl->me_cl->mei_flow_ctrl_creds <= 0))
			return -EINVAL;
		cl->me_cl->mei_flow_ctrl_creds--;
1195
	} else {
1196 1197
		if (WARN_ON(cl->mei_flow_ctrl_creds <= 0))
			return -EINVAL;
1198
		cl->mei_flow_ctrl_creds--;
1199
	}
1200
	return 0;
1201 1202
}

1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343
/**
 *  mei_cl_notify_fop2req - convert fop to proper request
 *
 * @fop: client notification start response command
 *
 * Return:  MEI_HBM_NOTIFICATION_START/STOP
 */
u8 mei_cl_notify_fop2req(enum mei_cb_file_ops fop)
{
	if (fop == MEI_FOP_NOTIFY_START)
		return MEI_HBM_NOTIFICATION_START;
	else
		return MEI_HBM_NOTIFICATION_STOP;
}

/**
 *  mei_cl_notify_req2fop - convert notification request top file operation type
 *
 * @req: hbm notification request type
 *
 * Return:  MEI_FOP_NOTIFY_START/STOP
 */
enum mei_cb_file_ops mei_cl_notify_req2fop(u8 req)
{
	if (req == MEI_HBM_NOTIFICATION_START)
		return MEI_FOP_NOTIFY_START;
	else
		return MEI_FOP_NOTIFY_STOP;
}

/**
 * mei_cl_irq_notify - send notification request in irq_thread context
 *
 * @cl: client
 * @cb: callback block.
 * @cmpl_list: complete list.
 *
 * Return: 0 on such and error otherwise.
 */
int mei_cl_irq_notify(struct mei_cl *cl, struct mei_cl_cb *cb,
		      struct mei_cl_cb *cmpl_list)
{
	struct mei_device *dev = cl->dev;
	u32 msg_slots;
	int slots;
	int ret;
	bool request;

	msg_slots = mei_data2slots(sizeof(struct hbm_client_connect_request));
	slots = mei_hbuf_empty_slots(dev);

	if (slots < msg_slots)
		return -EMSGSIZE;

	request = mei_cl_notify_fop2req(cb->fop_type);
	ret = mei_hbm_cl_notify_req(dev, cl, request);
	if (ret) {
		cl->status = ret;
		list_move_tail(&cb->list, &cmpl_list->list);
		return ret;
	}

	list_move_tail(&cb->list, &dev->ctrl_rd_list.list);
	return 0;
}

/**
 * mei_cl_notify_request - send notification stop/start request
 *
 * @cl: host client
 * @file: associate request with file
 * @request: 1 for start or 0 for stop
 *
 * Locking: called under "dev->device_lock" lock
 *
 * Return: 0 on such and error otherwise.
 */
int mei_cl_notify_request(struct mei_cl *cl, struct file *file, u8 request)
{
	struct mei_device *dev;
	struct mei_cl_cb *cb;
	enum mei_cb_file_ops fop_type;
	int rets;

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

	dev = cl->dev;

	if (!dev->hbm_f_ev_supported) {
		cl_dbg(dev, cl, "notifications not supported\n");
		return -EOPNOTSUPP;
	}

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

	fop_type = mei_cl_notify_req2fop(request);
	cb = mei_io_cb_init(cl, fop_type, file);
	if (!cb) {
		rets = -ENOMEM;
		goto out;
	}

	if (mei_hbuf_acquire(dev)) {
		if (mei_hbm_cl_notify_req(dev, cl, request)) {
			rets = -ENODEV;
			goto out;
		}
		list_add_tail(&cb->list, &dev->ctrl_rd_list.list);
	} else {
		list_add_tail(&cb->list, &dev->ctrl_wr_list.list);
	}

	mutex_unlock(&dev->device_lock);
	wait_event_timeout(cl->wait, cl->notify_en == request,
			mei_secs_to_jiffies(MEI_CL_CONNECT_TIMEOUT));
	mutex_lock(&dev->device_lock);

	if (cl->notify_en != request) {
		mei_io_list_flush(&dev->ctrl_rd_list, cl);
		mei_io_list_flush(&dev->ctrl_wr_list, cl);
		if (!cl->status)
			cl->status = -EFAULT;
	}

	rets = cl->status;

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

	mei_io_cb_free(cb);
	return rets;
}

1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368
/**
 * mei_cl_notify - raise notification
 *
 * @cl: host client
 *
 * Locking: called under "dev->device_lock" lock
 */
void mei_cl_notify(struct mei_cl *cl)
{
	struct mei_device *dev;

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

	dev = cl->dev;

	if (!cl->notify_en)
		return;

	cl_dbg(dev, cl, "notify event");
	cl->notify_ev = true;
	wake_up_interruptible_all(&cl->ev_wait);

	if (cl->ev_async)
		kill_fasync(&cl->ev_async, SIGIO, POLL_PRI);
1369 1370

	mei_cl_bus_notify_event(cl);
1371 1372
}

1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417
/**
 * mei_cl_notify_get - get or wait for notification event
 *
 * @cl: host client
 * @block: this request is blocking
 * @notify_ev: true if notification event was received
 *
 * Locking: called under "dev->device_lock" lock
 *
 * Return: 0 on such and error otherwise.
 */
int mei_cl_notify_get(struct mei_cl *cl, bool block, bool *notify_ev)
{
	struct mei_device *dev;
	int rets;

	*notify_ev = false;

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

	dev = cl->dev;

	if (!mei_cl_is_connected(cl))
		return -ENODEV;

	if (cl->notify_ev)
		goto out;

	if (!block)
		return -EAGAIN;

	mutex_unlock(&dev->device_lock);
	rets = wait_event_interruptible(cl->ev_wait, cl->notify_ev);
	mutex_lock(&dev->device_lock);

	if (rets < 0)
		return rets;

out:
	*notify_ev = cl->notify_ev;
	cl->notify_ev = false;
	return 0;
}

1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436
/**
 * mei_cl_is_read_fc_cb - check if read cb is waiting for flow control
 *                        for given host client
 *
 * @cl: host client
 *
 * Return: true, if found at least one cb.
 */
static bool mei_cl_is_read_fc_cb(struct mei_cl *cl)
{
	struct mei_device *dev = cl->dev;
	struct mei_cl_cb *cb;

	list_for_each_entry(cb, &dev->ctrl_wr_list.list, list)
		if (cb->fop_type == MEI_FOP_READ && cb->cl == cl)
			return true;
	return false;
}

1437
/**
1438
 * mei_cl_read_start - the start read client message function.
1439
 *
T
Tomas Winkler 已提交
1440
 * @cl: host client
A
Alexander Usyskin 已提交
1441
 * @length: number of bytes to read
1442
 * @fp: pointer to file structure
1443
 *
1444
 * Return: 0 on success, <0 on failure.
1445
 */
1446
int mei_cl_read_start(struct mei_cl *cl, size_t length, struct file *fp)
1447
{
T
Tomas Winkler 已提交
1448
	struct mei_device *dev;
1449
	struct mei_cl_cb *cb;
1450
	int rets;
1451

T
Tomas Winkler 已提交
1452 1453 1454 1455 1456
	if (WARN_ON(!cl || !cl->dev))
		return -ENODEV;

	dev = cl->dev;

1457
	if (!mei_cl_is_connected(cl))
1458 1459
		return -ENODEV;

T
Tomas Winkler 已提交
1460
	/* HW currently supports only one pending read */
1461
	if (!list_empty(&cl->rd_pending) || mei_cl_is_read_fc_cb(cl))
1462
		return -EBUSY;
T
Tomas Winkler 已提交
1463

1464 1465
	if (!mei_me_cl_is_active(cl->me_cl)) {
		cl_err(dev, cl, "no such me client\n");
1466
		return  -ENOTTY;
1467
	}
1468

1469
	/* always allocate at least client max message */
1470
	length = max_t(size_t, length, mei_cl_mtu(cl));
1471 1472 1473 1474 1475 1476 1477 1478
	cb = mei_cl_alloc_cb(cl, length, MEI_FOP_READ, fp);
	if (!cb)
		return -ENOMEM;

	if (mei_cl_is_fixed_address(cl)) {
		list_add_tail(&cb->list, &cl->rd_pending);
		return 0;
	}
1479

1480
	rets = pm_runtime_get(dev->dev);
1481
	if (rets < 0 && rets != -EINPROGRESS) {
1482
		pm_runtime_put_noidle(dev->dev);
1483
		cl_err(dev, cl, "rpm: get failed %d\n", rets);
1484
		goto nortpm;
1485 1486
	}

1487
	if (mei_hbuf_acquire(dev)) {
1488 1489
		rets = mei_hbm_cl_flow_control_req(dev, cl);
		if (rets < 0)
1490 1491
			goto out;

T
Tomas Winkler 已提交
1492
		list_add_tail(&cb->list, &cl->rd_pending);
1493
	} else {
1494
		rets = 0;
1495
		list_add_tail(&cb->list, &dev->ctrl_wr_list.list);
1496
	}
1497

1498 1499
out:
	cl_dbg(dev, cl, "rpm: autosuspend\n");
1500 1501
	pm_runtime_mark_last_busy(dev->dev);
	pm_runtime_put_autosuspend(dev->dev);
1502
nortpm:
1503 1504 1505
	if (rets)
		mei_io_cb_free(cb);

1506 1507 1508
	return rets;
}

1509
/**
1510
 * mei_cl_irq_write - write a message to device
1511 1512 1513 1514 1515 1516
 *	from the interrupt thread context
 *
 * @cl: client
 * @cb: callback block.
 * @cmpl_list: complete list.
 *
1517
 * Return: 0, OK; otherwise error.
1518
 */
1519 1520
int mei_cl_irq_write(struct mei_cl *cl, struct mei_cl_cb *cb,
		     struct mei_cl_cb *cmpl_list)
1521
{
1522 1523
	struct mei_device *dev;
	struct mei_msg_data *buf;
1524
	struct mei_msg_hdr mei_hdr;
1525 1526
	size_t len;
	u32 msg_slots;
1527
	int slots;
1528
	int rets;
1529
	bool first_chunk;
1530

1531 1532 1533 1534 1535
	if (WARN_ON(!cl || !cl->dev))
		return -ENODEV;

	dev = cl->dev;

1536
	buf = &cb->buf;
1537

1538 1539 1540
	first_chunk = cb->buf_idx == 0;

	rets = first_chunk ? mei_cl_flow_ctrl_creds(cl) : 1;
1541 1542 1543 1544
	if (rets < 0)
		return rets;

	if (rets == 0) {
1545
		cl_dbg(dev, cl, "No flow control credentials: not sending.\n");
1546 1547 1548
		return 0;
	}

1549
	slots = mei_hbuf_empty_slots(dev);
1550 1551 1552
	len = buf->size - cb->buf_idx;
	msg_slots = mei_data2slots(len);

1553
	mei_hdr.host_addr = mei_cl_host_addr(cl);
1554
	mei_hdr.me_addr = mei_cl_me_id(cl);
1555
	mei_hdr.reserved = 0;
1556
	mei_hdr.internal = cb->internal;
1557

1558
	if (slots >= msg_slots) {
1559 1560 1561
		mei_hdr.length = len;
		mei_hdr.msg_complete = 1;
	/* Split the message only if we can write the whole host buffer */
1562 1563 1564
	} else if (slots == dev->hbuf_depth) {
		msg_slots = slots;
		len = (slots * sizeof(u32)) - sizeof(struct mei_msg_hdr);
1565 1566 1567 1568 1569 1570 1571
		mei_hdr.length = len;
		mei_hdr.msg_complete = 0;
	} else {
		/* wait for next time the host buffer is empty */
		return 0;
	}

1572
	cl_dbg(dev, cl, "buf: size = %zd idx = %zd\n",
1573
			cb->buf.size, cb->buf_idx);
1574

1575
	rets = mei_write_message(dev, &mei_hdr, buf->data + cb->buf_idx);
1576 1577
	if (rets) {
		cl->status = rets;
1578
		list_move_tail(&cb->list, &cmpl_list->list);
1579
		return rets;
1580 1581 1582
	}

	cl->status = 0;
1583
	cl->writing_state = MEI_WRITING;
1584
	cb->buf_idx += mei_hdr.length;
1585
	cb->completed = mei_hdr.msg_complete == 1;
1586

1587
	if (first_chunk) {
1588
		if (mei_cl_flow_ctrl_reduce(cl))
1589
			return -EIO;
1590 1591
	}

1592 1593 1594
	if (mei_hdr.msg_complete)
		list_move_tail(&cb->list, &dev->write_waiting_list.list);

1595 1596 1597
	return 0;
}

T
Tomas Winkler 已提交
1598 1599
/**
 * mei_cl_write - submit a write cb to mei device
1600
 *	assumes device_lock is locked
T
Tomas Winkler 已提交
1601 1602
 *
 * @cl: host client
1603
 * @cb: write callback with filled data
A
Alexander Usyskin 已提交
1604
 * @blocking: block until completed
T
Tomas Winkler 已提交
1605
 *
1606
 * Return: number of bytes sent on success, <0 on failure.
T
Tomas Winkler 已提交
1607 1608 1609 1610 1611 1612
 */
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;
1613
	int size;
T
Tomas Winkler 已提交
1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624
	int rets;


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

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

	dev = cl->dev;

1625
	buf = &cb->buf;
1626
	size = buf->size;
T
Tomas Winkler 已提交
1627

1628
	cl_dbg(dev, cl, "size=%d\n", size);
T
Tomas Winkler 已提交
1629

1630
	rets = pm_runtime_get(dev->dev);
1631
	if (rets < 0 && rets != -EINPROGRESS) {
1632
		pm_runtime_put_noidle(dev->dev);
1633 1634 1635
		cl_err(dev, cl, "rpm: get failed %d\n", rets);
		return rets;
	}
T
Tomas Winkler 已提交
1636

1637 1638 1639
	cb->buf_idx = 0;
	cl->writing_state = MEI_IDLE;

1640
	mei_hdr.host_addr = mei_cl_host_addr(cl);
1641
	mei_hdr.me_addr = mei_cl_me_id(cl);
1642 1643 1644
	mei_hdr.reserved = 0;
	mei_hdr.msg_complete = 0;
	mei_hdr.internal = cb->internal;
T
Tomas Winkler 已提交
1645 1646 1647 1648 1649

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

1650 1651
	if (rets == 0) {
		cl_dbg(dev, cl, "No flow control credentials: not sending.\n");
1652
		rets = size;
1653 1654 1655 1656
		goto out;
	}
	if (!mei_hbuf_acquire(dev)) {
		cl_dbg(dev, cl, "Cannot acquire the host buffer: not sending.\n");
1657
		rets = size;
T
Tomas Winkler 已提交
1658 1659 1660 1661
		goto out;
	}

	/* Check for a maximum length */
1662
	if (size > mei_hbuf_max_len(dev)) {
T
Tomas Winkler 已提交
1663 1664 1665
		mei_hdr.length = mei_hbuf_max_len(dev);
		mei_hdr.msg_complete = 0;
	} else {
1666
		mei_hdr.length = size;
T
Tomas Winkler 已提交
1667 1668 1669
		mei_hdr.msg_complete = 1;
	}

1670 1671
	rets = mei_write_message(dev, &mei_hdr, buf->data);
	if (rets)
T
Tomas Winkler 已提交
1672 1673
		goto err;

1674 1675 1676 1677
	rets = mei_cl_flow_ctrl_reduce(cl);
	if (rets)
		goto err;

T
Tomas Winkler 已提交
1678 1679
	cl->writing_state = MEI_WRITING;
	cb->buf_idx = mei_hdr.length;
1680
	cb->completed = mei_hdr.msg_complete == 1;
T
Tomas Winkler 已提交
1681 1682

out:
1683
	if (mei_hdr.msg_complete)
T
Tomas Winkler 已提交
1684
		list_add_tail(&cb->list, &dev->write_waiting_list.list);
1685
	else
T
Tomas Winkler 已提交
1686 1687
		list_add_tail(&cb->list, &dev->write_list.list);

1688
	cb = NULL;
T
Tomas Winkler 已提交
1689 1690 1691
	if (blocking && cl->writing_state != MEI_WRITE_COMPLETE) {

		mutex_unlock(&dev->device_lock);
1692 1693
		rets = wait_event_interruptible(cl->tx_wait,
				cl->writing_state == MEI_WRITE_COMPLETE);
T
Tomas Winkler 已提交
1694
		mutex_lock(&dev->device_lock);
1695 1696 1697 1698 1699 1700
		/* wait_event_interruptible returns -ERESTARTSYS */
		if (rets) {
			if (signal_pending(current))
				rets = -EINTR;
			goto err;
		}
T
Tomas Winkler 已提交
1701
	}
1702

1703
	rets = size;
T
Tomas Winkler 已提交
1704
err:
1705
	cl_dbg(dev, cl, "rpm: autosuspend\n");
1706 1707
	pm_runtime_mark_last_busy(dev->dev);
	pm_runtime_put_autosuspend(dev->dev);
1708

T
Tomas Winkler 已提交
1709 1710 1711 1712
	return rets;
}


1713 1714 1715 1716 1717 1718 1719 1720
/**
 * 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)
{
1721 1722
	struct mei_device *dev = cl->dev;

1723 1724
	switch (cb->fop_type) {
	case MEI_FOP_WRITE:
1725 1726
		mei_io_cb_free(cb);
		cl->writing_state = MEI_WRITE_COMPLETE;
1727
		if (waitqueue_active(&cl->tx_wait)) {
1728
			wake_up_interruptible(&cl->tx_wait);
1729 1730 1731 1732
		} else {
			pm_runtime_mark_last_busy(dev->dev);
			pm_request_autosuspend(dev->dev);
		}
1733
		break;
1734

1735
	case MEI_FOP_READ:
T
Tomas Winkler 已提交
1736
		list_add_tail(&cb->list, &cl->rd_completed);
1737
		if (waitqueue_active(&cl->rx_wait))
T
Tomas Winkler 已提交
1738
			wake_up_interruptible_all(&cl->rx_wait);
1739 1740
		else
			mei_cl_bus_rx_event(cl);
1741 1742 1743 1744
		break;

	case MEI_FOP_CONNECT:
	case MEI_FOP_DISCONNECT:
1745 1746
	case MEI_FOP_NOTIFY_STOP:
	case MEI_FOP_NOTIFY_START:
1747 1748
		if (waitqueue_active(&cl->wait))
			wake_up(&cl->wait);
1749

1750 1751 1752
		break;
	default:
		BUG_ON(0);
1753 1754 1755
	}
}

T
Tomas Winkler 已提交
1756

1757 1758 1759
/**
 * mei_cl_all_disconnect - disconnect forcefully all connected clients
 *
1760
 * @dev: mei device
1761 1762 1763
 */
void mei_cl_all_disconnect(struct mei_device *dev)
{
1764
	struct mei_cl *cl;
1765

1766 1767
	list_for_each_entry(cl, &dev->file_list, link)
		mei_cl_set_disconnected(cl);
1768 1769 1770 1771
}


/**
T
Tomas Winkler 已提交
1772
 * mei_cl_all_wakeup  - wake up all readers and writers they can be interrupted
1773
 *
1774
 * @dev: mei device
1775
 */
T
Tomas Winkler 已提交
1776
void mei_cl_all_wakeup(struct mei_device *dev)
1777
{
1778
	struct mei_cl *cl;
1779

1780
	list_for_each_entry(cl, &dev->file_list, link) {
1781
		if (waitqueue_active(&cl->rx_wait)) {
1782
			cl_dbg(dev, cl, "Waking up reading client!\n");
1783 1784
			wake_up_interruptible(&cl->rx_wait);
		}
T
Tomas Winkler 已提交
1785
		if (waitqueue_active(&cl->tx_wait)) {
1786
			cl_dbg(dev, cl, "Waking up writing client!\n");
T
Tomas Winkler 已提交
1787 1788
			wake_up_interruptible(&cl->tx_wait);
		}
1789 1790 1791 1792 1793 1794

		/* synchronized under device mutex */
		if (waitqueue_active(&cl->ev_wait)) {
			cl_dbg(dev, cl, "Waking up waiting for event clients!\n");
			wake_up_interruptible(&cl->ev_wait);
		}
1795 1796 1797 1798 1799
	}
}

/**
 * mei_cl_all_write_clear - clear all pending writes
1800 1801
 *
 * @dev: mei device
1802 1803 1804
 */
void mei_cl_all_write_clear(struct mei_device *dev)
{
1805 1806
	mei_io_list_free(&dev->write_list, NULL);
	mei_io_list_free(&dev->write_waiting_list, NULL);
1807 1808 1809
}