mei: add a reference from the host client to the me client
[linux-2.6-block.git] / drivers / misc / mei / client.c
CommitLineData
ab841160
OW
1/*
2 *
3 * Intel Management Engine Interface (Intel MEI) Linux driver
733ba91c 4 * Copyright (c) 2003-2012, Intel Corporation.
ab841160
OW
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms and conditions of the GNU General Public License,
8 * version 2, as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * more details.
14 *
15 */
16
ab841160 17#include <linux/sched.h>
9ca9050b
TW
18#include <linux/wait.h>
19#include <linux/delay.h>
1f180359 20#include <linux/slab.h>
04bb139a 21#include <linux/pm_runtime.h>
ab841160 22
4f3afe1d 23#include <linux/mei.h>
47a73801
TW
24
25#include "mei_dev.h"
0edb23fc 26#include "hbm.h"
90e0b5f1
TW
27#include "client.h"
28
79563db9
TW
29/**
30 * mei_me_cl_init - initialize me client
31 *
32 * @me_cl: me client
33 */
34void mei_me_cl_init(struct mei_me_client *me_cl)
35{
36 INIT_LIST_HEAD(&me_cl->list);
37 kref_init(&me_cl->refcnt);
38}
39
40/**
41 * mei_me_cl_get - increases me client refcount
42 *
43 * @me_cl: me client
44 *
45 * Locking: called under "dev->device_lock" lock
46 *
47 * Return: me client or NULL
48 */
49struct mei_me_client *mei_me_cl_get(struct mei_me_client *me_cl)
50{
b7d88514
TW
51 if (me_cl && kref_get_unless_zero(&me_cl->refcnt))
52 return me_cl;
79563db9 53
b7d88514 54 return NULL;
79563db9
TW
55}
56
57/**
b7d88514 58 * mei_me_cl_release - free me client
79563db9
TW
59 *
60 * Locking: called under "dev->device_lock" lock
61 *
62 * @ref: me_client refcount
63 */
64static void mei_me_cl_release(struct kref *ref)
65{
66 struct mei_me_client *me_cl =
67 container_of(ref, struct mei_me_client, refcnt);
b7d88514 68
79563db9
TW
69 kfree(me_cl);
70}
b7d88514 71
79563db9
TW
72/**
73 * mei_me_cl_put - decrease me client refcount and free client if necessary
74 *
75 * Locking: called under "dev->device_lock" lock
76 *
77 * @me_cl: me client
78 */
79void mei_me_cl_put(struct mei_me_client *me_cl)
80{
81 if (me_cl)
82 kref_put(&me_cl->refcnt, mei_me_cl_release);
83}
84
90e0b5f1 85/**
d49ed64a 86 * __mei_me_cl_del - delete me client from the list and decrease
b7d88514
TW
87 * reference counter
88 *
89 * @dev: mei device
90 * @me_cl: me client
91 *
92 * Locking: dev->me_clients_rwsem
93 */
94static void __mei_me_cl_del(struct mei_device *dev, struct mei_me_client *me_cl)
95{
96 if (!me_cl)
97 return;
98
d49ed64a 99 list_del_init(&me_cl->list);
b7d88514
TW
100 mei_me_cl_put(me_cl);
101}
102
d49ed64a
AU
103/**
104 * mei_me_cl_del - delete me client from the list and decrease
105 * reference counter
106 *
107 * @dev: mei device
108 * @me_cl: me client
109 */
110void mei_me_cl_del(struct mei_device *dev, struct mei_me_client *me_cl)
111{
112 down_write(&dev->me_clients_rwsem);
113 __mei_me_cl_del(dev, me_cl);
114 up_write(&dev->me_clients_rwsem);
115}
116
b7d88514
TW
117/**
118 * mei_me_cl_add - add me client to the list
119 *
120 * @dev: mei device
121 * @me_cl: me client
122 */
123void mei_me_cl_add(struct mei_device *dev, struct mei_me_client *me_cl)
124{
125 down_write(&dev->me_clients_rwsem);
126 list_add(&me_cl->list, &dev->me_clients);
127 up_write(&dev->me_clients_rwsem);
128}
129
130/**
131 * __mei_me_cl_by_uuid - locate me client by uuid
79563db9 132 * increases ref count
90e0b5f1
TW
133 *
134 * @dev: mei device
a8605ea2 135 * @uuid: me client uuid
a27a76d3 136 *
a8605ea2 137 * Return: me client or NULL if not found
b7d88514
TW
138 *
139 * Locking: dev->me_clients_rwsem
90e0b5f1 140 */
b7d88514 141static struct mei_me_client *__mei_me_cl_by_uuid(struct mei_device *dev,
d320832f 142 const uuid_le *uuid)
90e0b5f1 143{
5ca2d388 144 struct mei_me_client *me_cl;
b7d88514 145 const uuid_le *pn;
90e0b5f1 146
b7d88514
TW
147 WARN_ON(!rwsem_is_locked(&dev->me_clients_rwsem));
148
149 list_for_each_entry(me_cl, &dev->me_clients, list) {
150 pn = &me_cl->props.protocol_name;
151 if (uuid_le_cmp(*uuid, *pn) == 0)
79563db9 152 return mei_me_cl_get(me_cl);
b7d88514 153 }
90e0b5f1 154
d320832f 155 return NULL;
90e0b5f1
TW
156}
157
b7d88514
TW
158/**
159 * mei_me_cl_by_uuid - locate me client by uuid
160 * increases ref count
161 *
162 * @dev: mei device
163 * @uuid: me client uuid
164 *
165 * Return: me client or NULL if not found
166 *
167 * Locking: dev->me_clients_rwsem
168 */
169struct mei_me_client *mei_me_cl_by_uuid(struct mei_device *dev,
170 const uuid_le *uuid)
171{
172 struct mei_me_client *me_cl;
173
174 down_read(&dev->me_clients_rwsem);
175 me_cl = __mei_me_cl_by_uuid(dev, uuid);
176 up_read(&dev->me_clients_rwsem);
177
178 return me_cl;
179}
180
90e0b5f1 181/**
a8605ea2 182 * mei_me_cl_by_id - locate me client by client id
79563db9 183 * increases ref count
90e0b5f1
TW
184 *
185 * @dev: the device structure
186 * @client_id: me client id
187 *
a8605ea2 188 * Return: me client or NULL if not found
b7d88514
TW
189 *
190 * Locking: dev->me_clients_rwsem
90e0b5f1 191 */
d320832f 192struct mei_me_client *mei_me_cl_by_id(struct mei_device *dev, u8 client_id)
90e0b5f1 193{
a27a76d3 194
b7d88514
TW
195 struct mei_me_client *__me_cl, *me_cl = NULL;
196
197 down_read(&dev->me_clients_rwsem);
198 list_for_each_entry(__me_cl, &dev->me_clients, list) {
199 if (__me_cl->client_id == client_id) {
200 me_cl = mei_me_cl_get(__me_cl);
201 break;
202 }
203 }
204 up_read(&dev->me_clients_rwsem);
205
206 return me_cl;
207}
208
209/**
210 * __mei_me_cl_by_uuid_id - locate me client by client id and uuid
211 * increases ref count
212 *
213 * @dev: the device structure
214 * @uuid: me client uuid
215 * @client_id: me client id
216 *
217 * Return: me client or null if not found
218 *
219 * Locking: dev->me_clients_rwsem
220 */
221static struct mei_me_client *__mei_me_cl_by_uuid_id(struct mei_device *dev,
222 const uuid_le *uuid, u8 client_id)
223{
5ca2d388 224 struct mei_me_client *me_cl;
b7d88514
TW
225 const uuid_le *pn;
226
227 WARN_ON(!rwsem_is_locked(&dev->me_clients_rwsem));
90e0b5f1 228
b7d88514
TW
229 list_for_each_entry(me_cl, &dev->me_clients, list) {
230 pn = &me_cl->props.protocol_name;
231 if (uuid_le_cmp(*uuid, *pn) == 0 &&
232 me_cl->client_id == client_id)
79563db9 233 return mei_me_cl_get(me_cl);
b7d88514 234 }
79563db9 235
d320832f 236 return NULL;
90e0b5f1 237}
ab841160 238
b7d88514 239
a8605ea2
AU
240/**
241 * mei_me_cl_by_uuid_id - locate me client by client id and uuid
79563db9 242 * increases ref count
a8605ea2
AU
243 *
244 * @dev: the device structure
245 * @uuid: me client uuid
246 * @client_id: me client id
247 *
b7d88514 248 * Return: me client or null if not found
a8605ea2 249 */
d880f329
TW
250struct mei_me_client *mei_me_cl_by_uuid_id(struct mei_device *dev,
251 const uuid_le *uuid, u8 client_id)
252{
253 struct mei_me_client *me_cl;
254
b7d88514
TW
255 down_read(&dev->me_clients_rwsem);
256 me_cl = __mei_me_cl_by_uuid_id(dev, uuid, client_id);
257 up_read(&dev->me_clients_rwsem);
79563db9 258
b7d88514 259 return me_cl;
d880f329
TW
260}
261
25ca6472 262/**
79563db9 263 * mei_me_cl_rm_by_uuid - remove all me clients matching uuid
25ca6472
TW
264 *
265 * @dev: the device structure
266 * @uuid: me client uuid
79563db9
TW
267 *
268 * Locking: called under "dev->device_lock" lock
25ca6472 269 */
79563db9 270void mei_me_cl_rm_by_uuid(struct mei_device *dev, const uuid_le *uuid)
25ca6472 271{
b7d88514 272 struct mei_me_client *me_cl;
25ca6472 273
79563db9 274 dev_dbg(dev->dev, "remove %pUl\n", uuid);
b7d88514
TW
275
276 down_write(&dev->me_clients_rwsem);
277 me_cl = __mei_me_cl_by_uuid(dev, uuid);
278 __mei_me_cl_del(dev, me_cl);
279 up_write(&dev->me_clients_rwsem);
79563db9
TW
280}
281
282/**
283 * mei_me_cl_rm_by_uuid_id - remove all me clients matching client id
284 *
285 * @dev: the device structure
286 * @uuid: me client uuid
287 * @id: me client id
288 *
289 * Locking: called under "dev->device_lock" lock
290 */
291void mei_me_cl_rm_by_uuid_id(struct mei_device *dev, const uuid_le *uuid, u8 id)
292{
b7d88514 293 struct mei_me_client *me_cl;
79563db9
TW
294
295 dev_dbg(dev->dev, "remove %pUl %d\n", uuid, id);
b7d88514
TW
296
297 down_write(&dev->me_clients_rwsem);
298 me_cl = __mei_me_cl_by_uuid_id(dev, uuid, id);
299 __mei_me_cl_del(dev, me_cl);
300 up_write(&dev->me_clients_rwsem);
25ca6472
TW
301}
302
79563db9
TW
303/**
304 * mei_me_cl_rm_all - remove all me clients
305 *
306 * @dev: the device structure
307 *
308 * Locking: called under "dev->device_lock" lock
309 */
310void mei_me_cl_rm_all(struct mei_device *dev)
311{
312 struct mei_me_client *me_cl, *next;
313
b7d88514 314 down_write(&dev->me_clients_rwsem);
79563db9 315 list_for_each_entry_safe(me_cl, next, &dev->me_clients, list)
b7d88514
TW
316 __mei_me_cl_del(dev, me_cl);
317 up_write(&dev->me_clients_rwsem);
79563db9
TW
318}
319
9ca9050b 320/**
cc99ecfd 321 * mei_cl_cmp_id - tells if the clients are the same
9ca9050b 322 *
cc99ecfd
TW
323 * @cl1: host client 1
324 * @cl2: host client 2
325 *
a8605ea2 326 * Return: true - if the clients has same host and me ids
cc99ecfd
TW
327 * false - otherwise
328 */
329static inline bool mei_cl_cmp_id(const struct mei_cl *cl1,
330 const struct mei_cl *cl2)
331{
332 return cl1 && cl2 &&
333 (cl1->host_client_id == cl2->host_client_id) &&
d49ed64a 334 (mei_cl_me_id(cl1) == mei_cl_me_id(cl2));
cc99ecfd
TW
335}
336
928fa666
TW
337/**
338 * mei_io_cb_free - free mei_cb_private related memory
339 *
340 * @cb: mei callback struct
341 */
342void mei_io_cb_free(struct mei_cl_cb *cb)
343{
344 if (cb == NULL)
345 return;
346
347 list_del(&cb->list);
348 kfree(cb->buf.data);
349 kfree(cb);
350}
351
352/**
353 * mei_io_cb_init - allocate and initialize io callback
354 *
355 * @cl: mei client
356 * @type: operation type
357 * @fp: pointer to file structure
358 *
359 * Return: mei_cl_cb pointer or NULL;
360 */
361struct mei_cl_cb *mei_io_cb_init(struct mei_cl *cl, enum mei_cb_file_ops type,
362 struct file *fp)
363{
364 struct mei_cl_cb *cb;
365
366 cb = kzalloc(sizeof(struct mei_cl_cb), GFP_KERNEL);
367 if (!cb)
368 return NULL;
369
370 INIT_LIST_HEAD(&cb->list);
371 cb->file_object = fp;
372 cb->cl = cl;
373 cb->buf_idx = 0;
374 cb->fop_type = type;
375 return cb;
376}
377
cc99ecfd 378/**
3908be6f 379 * __mei_io_list_flush - removes and frees cbs belonging to cl.
cc99ecfd
TW
380 *
381 * @list: an instance of our list structure
382 * @cl: host client, can be NULL for flushing the whole list
383 * @free: whether to free the cbs
9ca9050b 384 */
cc99ecfd
TW
385static void __mei_io_list_flush(struct mei_cl_cb *list,
386 struct mei_cl *cl, bool free)
9ca9050b 387{
928fa666 388 struct mei_cl_cb *cb, *next;
9ca9050b 389
cc99ecfd 390 /* enable removing everything if no cl is specified */
9ca9050b 391 list_for_each_entry_safe(cb, next, &list->list, list) {
140c7553 392 if (!cl || mei_cl_cmp_id(cl, cb->cl)) {
928fa666 393 list_del_init(&cb->list);
cc99ecfd
TW
394 if (free)
395 mei_io_cb_free(cb);
396 }
9ca9050b
TW
397 }
398}
399
cc99ecfd
TW
400/**
401 * mei_io_list_flush - removes list entry belonging to cl.
402 *
403 * @list: An instance of our list structure
404 * @cl: host client
405 */
5456796b 406void mei_io_list_flush(struct mei_cl_cb *list, struct mei_cl *cl)
cc99ecfd
TW
407{
408 __mei_io_list_flush(list, cl, false);
409}
410
cc99ecfd
TW
411/**
412 * mei_io_list_free - removes cb belonging to cl and free them
413 *
414 * @list: An instance of our list structure
415 * @cl: host client
416 */
417static inline void mei_io_list_free(struct mei_cl_cb *list, struct mei_cl *cl)
418{
419 __mei_io_list_flush(list, cl, true);
420}
421
664df38b 422/**
5db7514d 423 * mei_io_cb_alloc_buf - allocate callback buffer
664df38b 424 *
393b148f
MI
425 * @cb: io callback structure
426 * @length: size of the buffer
664df38b 427 *
a8605ea2 428 * Return: 0 on success
664df38b
TW
429 * -EINVAL if cb is NULL
430 * -ENOMEM if allocation failed
431 */
5db7514d 432int mei_io_cb_alloc_buf(struct mei_cl_cb *cb, size_t length)
664df38b
TW
433{
434 if (!cb)
435 return -EINVAL;
436
437 if (length == 0)
438 return 0;
439
5db7514d
TW
440 cb->buf.data = kmalloc(length, GFP_KERNEL);
441 if (!cb->buf.data)
664df38b 442 return -ENOMEM;
5db7514d 443 cb->buf.size = length;
664df38b
TW
444 return 0;
445}
9ca9050b 446
bca67d68
TW
447/**
448 * mei_cl_alloc_cb - a convenient wrapper for allocating read cb
449 *
450 * @cl: host client
451 * @length: size of the buffer
452 * @type: operation type
453 * @fp: associated file pointer (might be NULL)
454 *
455 * Return: cb on success and NULL on failure
456 */
457struct mei_cl_cb *mei_cl_alloc_cb(struct mei_cl *cl, size_t length,
458 enum mei_cb_file_ops type, struct file *fp)
459{
460 struct mei_cl_cb *cb;
461
462 cb = mei_io_cb_init(cl, type, fp);
463 if (!cb)
464 return NULL;
465
466 if (mei_io_cb_alloc_buf(cb, length)) {
467 mei_io_cb_free(cb);
468 return NULL;
469 }
470
471 return cb;
472}
473
a9bed610
TW
474/**
475 * mei_cl_read_cb - find this cl's callback in the read list
476 * for a specific file
477 *
478 * @cl: host client
479 * @fp: file pointer (matching cb file object), may be NULL
480 *
481 * Return: cb on success, NULL if cb is not found
482 */
483struct mei_cl_cb *mei_cl_read_cb(const struct mei_cl *cl, const struct file *fp)
484{
485 struct mei_cl_cb *cb;
486
487 list_for_each_entry(cb, &cl->rd_completed, list)
488 if (!fp || fp == cb->file_object)
489 return cb;
490
491 return NULL;
492}
493
494/**
495 * mei_cl_read_cb_flush - free client's read pending and completed cbs
496 * for a specific file
497 *
498 * @cl: host client
499 * @fp: file pointer (matching cb file object), may be NULL
500 */
501void mei_cl_read_cb_flush(const struct mei_cl *cl, const struct file *fp)
502{
503 struct mei_cl_cb *cb, *next;
504
505 list_for_each_entry_safe(cb, next, &cl->rd_completed, list)
506 if (!fp || fp == cb->file_object)
507 mei_io_cb_free(cb);
508
509
510 list_for_each_entry_safe(cb, next, &cl->rd_pending, list)
511 if (!fp || fp == cb->file_object)
512 mei_io_cb_free(cb);
513}
514
9ca9050b
TW
515/**
516 * mei_cl_flush_queues - flushes queue lists belonging to cl.
517 *
9ca9050b 518 * @cl: host client
a9bed610 519 * @fp: file pointer (matching cb file object), may be NULL
ce23139c
AU
520 *
521 * Return: 0 on success, -EINVAL if cl or cl->dev is NULL.
9ca9050b 522 */
a9bed610 523int mei_cl_flush_queues(struct mei_cl *cl, const struct file *fp)
9ca9050b 524{
c0abffbd
AU
525 struct mei_device *dev;
526
90e0b5f1 527 if (WARN_ON(!cl || !cl->dev))
9ca9050b
TW
528 return -EINVAL;
529
c0abffbd
AU
530 dev = cl->dev;
531
532 cl_dbg(dev, cl, "remove list entry belonging to cl\n");
cc99ecfd
TW
533 mei_io_list_free(&cl->dev->write_list, cl);
534 mei_io_list_free(&cl->dev->write_waiting_list, cl);
9ca9050b
TW
535 mei_io_list_flush(&cl->dev->ctrl_wr_list, cl);
536 mei_io_list_flush(&cl->dev->ctrl_rd_list, cl);
537 mei_io_list_flush(&cl->dev->amthif_cmd_list, cl);
538 mei_io_list_flush(&cl->dev->amthif_rd_complete_list, cl);
a9bed610
TW
539
540 mei_cl_read_cb_flush(cl, fp);
541
9ca9050b
TW
542 return 0;
543}
544
ab841160 545
9ca9050b 546/**
83ce0741 547 * mei_cl_init - initializes cl.
9ca9050b
TW
548 *
549 * @cl: host client to be initialized
550 * @dev: mei device
551 */
552void mei_cl_init(struct mei_cl *cl, struct mei_device *dev)
553{
554 memset(cl, 0, sizeof(struct mei_cl));
555 init_waitqueue_head(&cl->wait);
556 init_waitqueue_head(&cl->rx_wait);
557 init_waitqueue_head(&cl->tx_wait);
a9bed610
TW
558 INIT_LIST_HEAD(&cl->rd_completed);
559 INIT_LIST_HEAD(&cl->rd_pending);
9ca9050b 560 INIT_LIST_HEAD(&cl->link);
a7b71bc0 561 INIT_LIST_HEAD(&cl->device_link);
9ca9050b 562 cl->writing_state = MEI_IDLE;
3c666182 563 cl->state = MEI_FILE_INITIALIZING;
9ca9050b
TW
564 cl->dev = dev;
565}
566
567/**
568 * mei_cl_allocate - allocates cl structure and sets it up.
569 *
570 * @dev: mei device
a8605ea2 571 * Return: The allocated file or NULL on failure
9ca9050b
TW
572 */
573struct mei_cl *mei_cl_allocate(struct mei_device *dev)
574{
575 struct mei_cl *cl;
576
577 cl = kmalloc(sizeof(struct mei_cl), GFP_KERNEL);
578 if (!cl)
579 return NULL;
580
581 mei_cl_init(cl, dev);
582
583 return cl;
584}
585
3908be6f
AU
586/**
587 * mei_cl_link - allocate host id in the host map
9ca9050b 588 *
3908be6f 589 * @cl: host client
03b8d341 590 * @id: fixed host id or MEI_HOST_CLIENT_ID_ANY (-1) for generic one
393b148f 591 *
a8605ea2 592 * Return: 0 on success
9ca9050b 593 * -EINVAL on incorrect values
03b8d341 594 * -EMFILE if open count exceeded.
9ca9050b 595 */
781d0d89 596int mei_cl_link(struct mei_cl *cl, int id)
9ca9050b 597{
90e0b5f1 598 struct mei_device *dev;
22f96a0e 599 long open_handle_count;
9ca9050b 600
781d0d89 601 if (WARN_ON(!cl || !cl->dev))
9ca9050b
TW
602 return -EINVAL;
603
90e0b5f1
TW
604 dev = cl->dev;
605
83ce0741 606 /* If Id is not assigned get one*/
781d0d89
TW
607 if (id == MEI_HOST_CLIENT_ID_ANY)
608 id = find_first_zero_bit(dev->host_clients_map,
609 MEI_CLIENTS_MAX);
9ca9050b 610
781d0d89 611 if (id >= MEI_CLIENTS_MAX) {
2bf94cab 612 dev_err(dev->dev, "id exceeded %d", MEI_CLIENTS_MAX);
e036cc57
TW
613 return -EMFILE;
614 }
615
22f96a0e
TW
616 open_handle_count = dev->open_handle_count + dev->iamthif_open_count;
617 if (open_handle_count >= MEI_MAX_OPEN_HANDLE_COUNT) {
2bf94cab 618 dev_err(dev->dev, "open_handle_count exceeded %d",
e036cc57
TW
619 MEI_MAX_OPEN_HANDLE_COUNT);
620 return -EMFILE;
9ca9050b
TW
621 }
622
781d0d89
TW
623 dev->open_handle_count++;
624
625 cl->host_client_id = id;
626 list_add_tail(&cl->link, &dev->file_list);
627
628 set_bit(id, dev->host_clients_map);
629
630 cl->state = MEI_FILE_INITIALIZING;
631
c0abffbd 632 cl_dbg(dev, cl, "link cl\n");
781d0d89 633 return 0;
9ca9050b 634}
781d0d89 635
9ca9050b 636/**
d49ed64a 637 * mei_cl_unlink - remove host client from the list
9ca9050b 638 *
393b148f 639 * @cl: host client
ce23139c
AU
640 *
641 * Return: always 0
9ca9050b 642 */
90e0b5f1 643int mei_cl_unlink(struct mei_cl *cl)
9ca9050b 644{
90e0b5f1 645 struct mei_device *dev;
90e0b5f1 646
781d0d89
TW
647 /* don't shout on error exit path */
648 if (!cl)
649 return 0;
650
8e9a4a9a
TW
651 /* wd and amthif might not be initialized */
652 if (!cl->dev)
653 return 0;
90e0b5f1
TW
654
655 dev = cl->dev;
656
a14c44d8
TW
657 cl_dbg(dev, cl, "unlink client");
658
22f96a0e
TW
659 if (dev->open_handle_count > 0)
660 dev->open_handle_count--;
661
662 /* never clear the 0 bit */
663 if (cl->host_client_id)
664 clear_bit(cl->host_client_id, dev->host_clients_map);
665
666 list_del_init(&cl->link);
667
668 cl->state = MEI_FILE_INITIALIZING;
669
90e0b5f1 670 return 0;
9ca9050b
TW
671}
672
673
674void mei_host_client_init(struct work_struct *work)
675{
b7d88514
TW
676 struct mei_device *dev =
677 container_of(work, struct mei_device, init_work);
5ca2d388 678 struct mei_me_client *me_cl;
9ca9050b
TW
679
680 mutex_lock(&dev->device_lock);
681
9ca9050b 682
b7d88514
TW
683 me_cl = mei_me_cl_by_uuid(dev, &mei_amthif_guid);
684 if (me_cl)
d49ed64a 685 mei_amthif_host_init(dev, me_cl);
b43baf69 686 mei_me_cl_put(me_cl);
b7d88514
TW
687
688 me_cl = mei_me_cl_by_uuid(dev, &mei_wd_guid);
689 if (me_cl)
d49ed64a 690 mei_wd_host_init(dev, me_cl);
b43baf69 691 mei_me_cl_put(me_cl);
b7d88514
TW
692
693 me_cl = mei_me_cl_by_uuid(dev, &mei_nfc_guid);
694 if (me_cl)
d49ed64a 695 mei_nfc_host_init(dev, me_cl);
b43baf69 696 mei_me_cl_put(me_cl);
59fcd7c6 697
9ca9050b
TW
698
699 dev->dev_state = MEI_DEV_ENABLED;
6adb8efb 700 dev->reset_count = 0;
9ca9050b 701 mutex_unlock(&dev->device_lock);
04bb139a 702
2bf94cab
TW
703 pm_runtime_mark_last_busy(dev->dev);
704 dev_dbg(dev->dev, "rpm: autosuspend\n");
705 pm_runtime_autosuspend(dev->dev);
9ca9050b
TW
706}
707
6aae48ff 708/**
a8605ea2 709 * mei_hbuf_acquire - try to acquire host buffer
6aae48ff
TW
710 *
711 * @dev: the device structure
a8605ea2 712 * Return: true if host buffer was acquired
6aae48ff
TW
713 */
714bool mei_hbuf_acquire(struct mei_device *dev)
715{
04bb139a
TW
716 if (mei_pg_state(dev) == MEI_PG_ON ||
717 dev->pg_event == MEI_PG_EVENT_WAIT) {
2bf94cab 718 dev_dbg(dev->dev, "device is in pg\n");
04bb139a
TW
719 return false;
720 }
721
6aae48ff 722 if (!dev->hbuf_is_ready) {
2bf94cab 723 dev_dbg(dev->dev, "hbuf is not ready\n");
6aae48ff
TW
724 return false;
725 }
726
727 dev->hbuf_is_ready = false;
728
729 return true;
730}
9ca9050b 731
3c666182
TW
732/**
733 * mei_cl_set_disconnected - set disconnected state and clear
734 * associated states and resources
735 *
736 * @cl: host client
737 */
738void mei_cl_set_disconnected(struct mei_cl *cl)
739{
740 struct mei_device *dev = cl->dev;
741
742 if (cl->state == MEI_FILE_DISCONNECTED ||
743 cl->state == MEI_FILE_INITIALIZING)
744 return;
745
746 cl->state = MEI_FILE_DISCONNECTED;
747 mei_io_list_flush(&dev->ctrl_rd_list, cl);
748 mei_io_list_flush(&dev->ctrl_wr_list, cl);
749 cl->mei_flow_ctrl_creds = 0;
750 cl->timer_count = 0;
d49ed64a
AU
751
752 mei_me_cl_put(cl->me_cl);
753 cl->me_cl = NULL;
3c666182
TW
754}
755
756/*
757 * mei_cl_send_disconnect - send disconnect request
758 *
759 * @cl: host client
760 * @cb: callback block
761 *
762 * Return: 0, OK; otherwise, error.
763 */
764static int mei_cl_send_disconnect(struct mei_cl *cl, struct mei_cl_cb *cb)
765{
766 struct mei_device *dev;
767 int ret;
768
769 dev = cl->dev;
770
771 ret = mei_hbm_cl_disconnect_req(dev, cl);
772 cl->status = ret;
773 if (ret) {
774 cl->state = MEI_FILE_DISCONNECT_REPLY;
775 return ret;
776 }
777
778 list_move_tail(&cb->list, &dev->ctrl_rd_list.list);
779 cl->timer_count = MEI_CONNECT_TIMEOUT;
780
781 return 0;
782}
783
784/**
785 * mei_cl_irq_disconnect - processes close related operation from
786 * interrupt thread context - send disconnect request
787 *
788 * @cl: client
789 * @cb: callback block.
790 * @cmpl_list: complete list.
791 *
792 * Return: 0, OK; otherwise, error.
793 */
794int mei_cl_irq_disconnect(struct mei_cl *cl, struct mei_cl_cb *cb,
795 struct mei_cl_cb *cmpl_list)
796{
797 struct mei_device *dev = cl->dev;
798 u32 msg_slots;
799 int slots;
800 int ret;
801
802 msg_slots = mei_data2slots(sizeof(struct hbm_client_connect_request));
803 slots = mei_hbuf_empty_slots(dev);
804
805 if (slots < msg_slots)
806 return -EMSGSIZE;
807
808 ret = mei_cl_send_disconnect(cl, cb);
809 if (ret)
810 list_move_tail(&cb->list, &cmpl_list->list);
811
812 return ret;
813}
814
815
816
9ca9050b 817/**
83ce0741 818 * mei_cl_disconnect - disconnect host client from the me one
9ca9050b 819 *
90e0b5f1 820 * @cl: host client
9ca9050b
TW
821 *
822 * Locking: called under "dev->device_lock" lock
823 *
a8605ea2 824 * Return: 0 on success, <0 on failure.
9ca9050b 825 */
90e0b5f1 826int mei_cl_disconnect(struct mei_cl *cl)
9ca9050b 827{
90e0b5f1 828 struct mei_device *dev;
9ca9050b 829 struct mei_cl_cb *cb;
fe2f17eb 830 int rets;
9ca9050b 831
90e0b5f1 832 if (WARN_ON(!cl || !cl->dev))
9ca9050b
TW
833 return -ENODEV;
834
90e0b5f1
TW
835 dev = cl->dev;
836
c0abffbd
AU
837 cl_dbg(dev, cl, "disconnecting");
838
3c666182 839 if (!mei_cl_is_connected(cl))
9ca9050b
TW
840 return 0;
841
2bf94cab 842 rets = pm_runtime_get(dev->dev);
04bb139a 843 if (rets < 0 && rets != -EINPROGRESS) {
2bf94cab 844 pm_runtime_put_noidle(dev->dev);
04bb139a
TW
845 cl_err(dev, cl, "rpm: get failed %d\n", rets);
846 return rets;
847 }
848
3c666182
TW
849 cl->state = MEI_FILE_DISCONNECTING;
850
bca67d68
TW
851 cb = mei_io_cb_init(cl, MEI_FOP_DISCONNECT, NULL);
852 rets = cb ? 0 : -ENOMEM;
853 if (rets)
3c666182
TW
854 goto out;
855
856 cl_dbg(dev, cl, "add disconnect cb to control write list\n");
857 list_add_tail(&cb->list, &dev->ctrl_wr_list.list);
5a8373fb 858
6aae48ff 859 if (mei_hbuf_acquire(dev)) {
3c666182
TW
860 rets = mei_cl_send_disconnect(cl, cb);
861 if (rets) {
c0abffbd 862 cl_err(dev, cl, "failed to disconnect.\n");
3c666182 863 goto out;
9ca9050b 864 }
9ca9050b 865 }
9ca9050b 866
3c666182
TW
867 mutex_unlock(&dev->device_lock);
868 wait_event_timeout(cl->wait, cl->state == MEI_FILE_DISCONNECT_REPLY,
869 mei_secs_to_jiffies(MEI_CL_CONNECT_TIMEOUT));
9ca9050b 870 mutex_lock(&dev->device_lock);
fe2f17eb 871
3c666182
TW
872 rets = cl->status;
873 if (cl->state != MEI_FILE_DISCONNECT_REPLY) {
fe2f17eb
AU
874 cl_dbg(dev, cl, "timeout on disconnect from FW client.\n");
875 rets = -ETIME;
9ca9050b
TW
876 }
877
3c666182
TW
878out:
879 /* we disconnect also on error */
880 mei_cl_set_disconnected(cl);
881 if (!rets)
882 cl_dbg(dev, cl, "successfully disconnected from FW client.\n");
883
04bb139a 884 cl_dbg(dev, cl, "rpm: autosuspend\n");
2bf94cab
TW
885 pm_runtime_mark_last_busy(dev->dev);
886 pm_runtime_put_autosuspend(dev->dev);
04bb139a 887
9ca9050b
TW
888 mei_io_cb_free(cb);
889 return rets;
890}
891
892
893/**
90e0b5f1
TW
894 * mei_cl_is_other_connecting - checks if other
895 * client with the same me client id is connecting
9ca9050b 896 *
9ca9050b
TW
897 * @cl: private data of the file object
898 *
a8605ea2 899 * Return: true if other client is connected, false - otherwise.
9ca9050b 900 */
0c53357c 901static bool mei_cl_is_other_connecting(struct mei_cl *cl)
9ca9050b 902{
90e0b5f1 903 struct mei_device *dev;
0c53357c 904 struct mei_cl_cb *cb;
90e0b5f1
TW
905
906 dev = cl->dev;
907
0c53357c
TW
908 list_for_each_entry(cb, &dev->ctrl_rd_list.list, list) {
909 if (cb->fop_type == MEI_FOP_CONNECT &&
d49ed64a 910 mei_cl_me_id(cl) == mei_cl_me_id(cb->cl))
90e0b5f1 911 return true;
9ca9050b 912 }
90e0b5f1
TW
913
914 return false;
9ca9050b
TW
915}
916
0c53357c
TW
917/**
918 * mei_cl_send_connect - send connect request
919 *
920 * @cl: host client
921 * @cb: callback block
922 *
923 * Return: 0, OK; otherwise, error.
924 */
925static int mei_cl_send_connect(struct mei_cl *cl, struct mei_cl_cb *cb)
926{
927 struct mei_device *dev;
928 int ret;
929
930 dev = cl->dev;
931
932 ret = mei_hbm_cl_connect_req(dev, cl);
933 cl->status = ret;
934 if (ret) {
935 cl->state = MEI_FILE_DISCONNECT_REPLY;
936 return ret;
937 }
938
939 list_move_tail(&cb->list, &dev->ctrl_rd_list.list);
940 cl->timer_count = MEI_CONNECT_TIMEOUT;
941 return 0;
942}
943
944/**
945 * mei_cl_irq_connect - send connect request in irq_thread context
946 *
947 * @cl: host client
948 * @cb: callback block
949 * @cmpl_list: complete list
950 *
951 * Return: 0, OK; otherwise, error.
952 */
953int mei_cl_irq_connect(struct mei_cl *cl, struct mei_cl_cb *cb,
954 struct mei_cl_cb *cmpl_list)
955{
956 struct mei_device *dev = cl->dev;
957 u32 msg_slots;
958 int slots;
959 int rets;
960
961 msg_slots = mei_data2slots(sizeof(struct hbm_client_connect_request));
962 slots = mei_hbuf_empty_slots(dev);
963
964 if (mei_cl_is_other_connecting(cl))
965 return 0;
966
967 if (slots < msg_slots)
968 return -EMSGSIZE;
969
970 rets = mei_cl_send_connect(cl, cb);
971 if (rets)
972 list_move_tail(&cb->list, &cmpl_list->list);
973
974 return rets;
975}
976
9f81abda 977/**
83ce0741 978 * mei_cl_connect - connect host client to the me one
9f81abda
TW
979 *
980 * @cl: host client
d49ed64a 981 * @me_cl: me client
a8605ea2 982 * @file: pointer to file structure
9f81abda
TW
983 *
984 * Locking: called under "dev->device_lock" lock
985 *
a8605ea2 986 * Return: 0 on success, <0 on failure.
9f81abda 987 */
d49ed64a
AU
988int mei_cl_connect(struct mei_cl *cl, struct mei_me_client *me_cl,
989 struct file *file)
9f81abda
TW
990{
991 struct mei_device *dev;
992 struct mei_cl_cb *cb;
9f81abda
TW
993 int rets;
994
995 if (WARN_ON(!cl || !cl->dev))
996 return -ENODEV;
997
998 dev = cl->dev;
999
2bf94cab 1000 rets = pm_runtime_get(dev->dev);
04bb139a 1001 if (rets < 0 && rets != -EINPROGRESS) {
2bf94cab 1002 pm_runtime_put_noidle(dev->dev);
04bb139a
TW
1003 cl_err(dev, cl, "rpm: get failed %d\n", rets);
1004 return rets;
1005 }
1006
bca67d68
TW
1007 cb = mei_io_cb_init(cl, MEI_FOP_CONNECT, file);
1008 rets = cb ? 0 : -ENOMEM;
1009 if (rets)
9f81abda 1010 goto out;
9f81abda 1011
d49ed64a
AU
1012 cl->me_cl = mei_me_cl_get(me_cl);
1013 if (!cl->me_cl) {
1014 rets = -ENODEV;
1015 goto out;
1016 }
1017
0c53357c
TW
1018 cl->state = MEI_FILE_CONNECTING;
1019 list_add_tail(&cb->list, &dev->ctrl_wr_list.list);
1020
6aae48ff
TW
1021 /* run hbuf acquire last so we don't have to undo */
1022 if (!mei_cl_is_other_connecting(cl) && mei_hbuf_acquire(dev)) {
0c53357c
TW
1023 rets = mei_cl_send_connect(cl, cb);
1024 if (rets)
9f81abda 1025 goto out;
9f81abda
TW
1026 }
1027
1028 mutex_unlock(&dev->device_lock);
12f45ed4 1029 wait_event_timeout(cl->wait,
285e2996 1030 (cl->state == MEI_FILE_CONNECTED ||
3c666182 1031 cl->state == MEI_FILE_DISCONNECT_REPLY),
285e2996 1032 mei_secs_to_jiffies(MEI_CL_CONNECT_TIMEOUT));
9f81abda
TW
1033 mutex_lock(&dev->device_lock);
1034
f3de9b63 1035 if (!mei_cl_is_connected(cl)) {
0c53357c 1036 /* timeout or something went really wrong */
285e2996
AU
1037 if (!cl->status)
1038 cl->status = -EFAULT;
9f81abda
TW
1039 }
1040
1041 rets = cl->status;
9f81abda 1042out:
04bb139a 1043 cl_dbg(dev, cl, "rpm: autosuspend\n");
2bf94cab
TW
1044 pm_runtime_mark_last_busy(dev->dev);
1045 pm_runtime_put_autosuspend(dev->dev);
04bb139a 1046
9f81abda 1047 mei_io_cb_free(cb);
0c53357c
TW
1048
1049 if (!mei_cl_is_connected(cl))
1050 mei_cl_set_disconnected(cl);
1051
9f81abda
TW
1052 return rets;
1053}
1054
03b8d341
TW
1055/**
1056 * mei_cl_alloc_linked - allocate and link host client
1057 *
1058 * @dev: the device structure
1059 * @id: fixed host id or MEI_HOST_CLIENT_ID_ANY (-1) for generic one
1060 *
1061 * Return: cl on success ERR_PTR on failure
1062 */
1063struct mei_cl *mei_cl_alloc_linked(struct mei_device *dev, int id)
1064{
1065 struct mei_cl *cl;
1066 int ret;
1067
1068 cl = mei_cl_allocate(dev);
1069 if (!cl) {
1070 ret = -ENOMEM;
1071 goto err;
1072 }
1073
1074 ret = mei_cl_link(cl, id);
1075 if (ret)
1076 goto err;
1077
1078 return cl;
1079err:
1080 kfree(cl);
1081 return ERR_PTR(ret);
1082}
1083
1084
1085
9ca9050b 1086/**
90e0b5f1 1087 * mei_cl_flow_ctrl_creds - checks flow_control credits for cl.
9ca9050b 1088 *
9ca9050b
TW
1089 * @cl: private data of the file object
1090 *
a8605ea2 1091 * Return: 1 if mei_flow_ctrl_creds >0, 0 - otherwise.
9ca9050b 1092 */
90e0b5f1 1093int mei_cl_flow_ctrl_creds(struct mei_cl *cl)
9ca9050b 1094{
d49ed64a 1095 if (WARN_ON(!cl || !cl->me_cl))
90e0b5f1
TW
1096 return -EINVAL;
1097
9ca9050b
TW
1098 if (cl->mei_flow_ctrl_creds > 0)
1099 return 1;
1100
d49ed64a
AU
1101 if (mei_cl_is_single_recv_buf(cl)) {
1102 if (cl->me_cl->mei_flow_ctrl_creds > 0)
1103 return 1;
9ca9050b 1104 }
d49ed64a 1105 return 0;
9ca9050b
TW
1106}
1107
1108/**
90e0b5f1 1109 * mei_cl_flow_ctrl_reduce - reduces flow_control.
9ca9050b 1110 *
9ca9050b 1111 * @cl: private data of the file object
393b148f 1112 *
a8605ea2 1113 * Return:
9ca9050b 1114 * 0 on success
9ca9050b
TW
1115 * -EINVAL when ctrl credits are <= 0
1116 */
90e0b5f1 1117int mei_cl_flow_ctrl_reduce(struct mei_cl *cl)
9ca9050b 1118{
d49ed64a 1119 if (WARN_ON(!cl || !cl->me_cl))
90e0b5f1
TW
1120 return -EINVAL;
1121
d49ed64a
AU
1122 if (mei_cl_is_single_recv_buf(cl)) {
1123 if (WARN_ON(cl->me_cl->mei_flow_ctrl_creds <= 0))
1124 return -EINVAL;
1125 cl->me_cl->mei_flow_ctrl_creds--;
12d00665 1126 } else {
d49ed64a
AU
1127 if (WARN_ON(cl->mei_flow_ctrl_creds <= 0))
1128 return -EINVAL;
12d00665 1129 cl->mei_flow_ctrl_creds--;
9ca9050b 1130 }
d49ed64a 1131 return 0;
9ca9050b
TW
1132}
1133
ab841160 1134/**
393b148f 1135 * mei_cl_read_start - the start read client message function.
ab841160 1136 *
90e0b5f1 1137 * @cl: host client
ce23139c 1138 * @length: number of bytes to read
bca67d68 1139 * @fp: pointer to file structure
ab841160 1140 *
a8605ea2 1141 * Return: 0 on success, <0 on failure.
ab841160 1142 */
bca67d68 1143int mei_cl_read_start(struct mei_cl *cl, size_t length, struct file *fp)
ab841160 1144{
90e0b5f1 1145 struct mei_device *dev;
ab841160 1146 struct mei_cl_cb *cb;
664df38b 1147 int rets;
ab841160 1148
90e0b5f1
TW
1149 if (WARN_ON(!cl || !cl->dev))
1150 return -ENODEV;
1151
1152 dev = cl->dev;
1153
b950ac1d 1154 if (!mei_cl_is_connected(cl))
ab841160
OW
1155 return -ENODEV;
1156
a9bed610
TW
1157 /* HW currently supports only one pending read */
1158 if (!list_empty(&cl->rd_pending))
ab841160 1159 return -EBUSY;
a9bed610 1160
d49ed64a
AU
1161 if (!mei_me_cl_is_active(cl->me_cl)) {
1162 cl_err(dev, cl, "no such me client\n");
7ca96aa2 1163 return -ENOTTY;
664df38b 1164 }
79563db9 1165 /* always allocate at least client max message */
d49ed64a 1166 length = max_t(size_t, length, mei_cl_mtu(cl));
ab841160 1167
2bf94cab 1168 rets = pm_runtime_get(dev->dev);
04bb139a 1169 if (rets < 0 && rets != -EINPROGRESS) {
2bf94cab 1170 pm_runtime_put_noidle(dev->dev);
04bb139a
TW
1171 cl_err(dev, cl, "rpm: get failed %d\n", rets);
1172 return rets;
1173 }
1174
bca67d68
TW
1175 cb = mei_cl_alloc_cb(cl, length, MEI_FOP_READ, fp);
1176 rets = cb ? 0 : -ENOMEM;
664df38b 1177 if (rets)
04bb139a 1178 goto out;
ab841160 1179
6aae48ff 1180 if (mei_hbuf_acquire(dev)) {
86113500
AU
1181 rets = mei_hbm_cl_flow_control_req(dev, cl);
1182 if (rets < 0)
04bb139a 1183 goto out;
04bb139a 1184
a9bed610 1185 list_add_tail(&cb->list, &cl->rd_pending);
ab841160 1186 } else {
fb601adb 1187 list_add_tail(&cb->list, &dev->ctrl_wr_list.list);
ab841160 1188 }
accb884b 1189
04bb139a
TW
1190out:
1191 cl_dbg(dev, cl, "rpm: autosuspend\n");
2bf94cab
TW
1192 pm_runtime_mark_last_busy(dev->dev);
1193 pm_runtime_put_autosuspend(dev->dev);
04bb139a
TW
1194
1195 if (rets)
1196 mei_io_cb_free(cb);
1197
ab841160
OW
1198 return rets;
1199}
1200
21767546 1201/**
9d098192 1202 * mei_cl_irq_write - write a message to device
21767546
TW
1203 * from the interrupt thread context
1204 *
1205 * @cl: client
1206 * @cb: callback block.
21767546
TW
1207 * @cmpl_list: complete list.
1208 *
a8605ea2 1209 * Return: 0, OK; otherwise error.
21767546 1210 */
9d098192
TW
1211int mei_cl_irq_write(struct mei_cl *cl, struct mei_cl_cb *cb,
1212 struct mei_cl_cb *cmpl_list)
21767546 1213{
136698e5
TW
1214 struct mei_device *dev;
1215 struct mei_msg_data *buf;
21767546 1216 struct mei_msg_hdr mei_hdr;
136698e5
TW
1217 size_t len;
1218 u32 msg_slots;
9d098192 1219 int slots;
2ebf8c94 1220 int rets;
21767546 1221
136698e5
TW
1222 if (WARN_ON(!cl || !cl->dev))
1223 return -ENODEV;
1224
1225 dev = cl->dev;
1226
5db7514d 1227 buf = &cb->buf;
136698e5
TW
1228
1229 rets = mei_cl_flow_ctrl_creds(cl);
1230 if (rets < 0)
1231 return rets;
1232
1233 if (rets == 0) {
04bb139a 1234 cl_dbg(dev, cl, "No flow control credentials: not sending.\n");
136698e5
TW
1235 return 0;
1236 }
1237
9d098192 1238 slots = mei_hbuf_empty_slots(dev);
136698e5
TW
1239 len = buf->size - cb->buf_idx;
1240 msg_slots = mei_data2slots(len);
1241
21767546 1242 mei_hdr.host_addr = cl->host_client_id;
d49ed64a 1243 mei_hdr.me_addr = mei_cl_me_id(cl);
21767546 1244 mei_hdr.reserved = 0;
479327fc 1245 mei_hdr.internal = cb->internal;
21767546 1246
9d098192 1247 if (slots >= msg_slots) {
21767546
TW
1248 mei_hdr.length = len;
1249 mei_hdr.msg_complete = 1;
1250 /* Split the message only if we can write the whole host buffer */
9d098192
TW
1251 } else if (slots == dev->hbuf_depth) {
1252 msg_slots = slots;
1253 len = (slots * sizeof(u32)) - sizeof(struct mei_msg_hdr);
21767546
TW
1254 mei_hdr.length = len;
1255 mei_hdr.msg_complete = 0;
1256 } else {
1257 /* wait for next time the host buffer is empty */
1258 return 0;
1259 }
1260
c0abffbd 1261 cl_dbg(dev, cl, "buf: size = %d idx = %lu\n",
5db7514d 1262 cb->buf.size, cb->buf_idx);
21767546 1263
136698e5 1264 rets = mei_write_message(dev, &mei_hdr, buf->data + cb->buf_idx);
2ebf8c94
TW
1265 if (rets) {
1266 cl->status = rets;
21767546 1267 list_move_tail(&cb->list, &cmpl_list->list);
2ebf8c94 1268 return rets;
21767546
TW
1269 }
1270
1271 cl->status = 0;
4dfaa9f7 1272 cl->writing_state = MEI_WRITING;
21767546 1273 cb->buf_idx += mei_hdr.length;
8660172e 1274 cb->completed = mei_hdr.msg_complete == 1;
4dfaa9f7 1275
21767546
TW
1276 if (mei_hdr.msg_complete) {
1277 if (mei_cl_flow_ctrl_reduce(cl))
2ebf8c94 1278 return -EIO;
21767546
TW
1279 list_move_tail(&cb->list, &dev->write_waiting_list.list);
1280 }
1281
1282 return 0;
1283}
1284
4234a6de
TW
1285/**
1286 * mei_cl_write - submit a write cb to mei device
a8605ea2 1287 * assumes device_lock is locked
4234a6de
TW
1288 *
1289 * @cl: host client
a8605ea2 1290 * @cb: write callback with filled data
ce23139c 1291 * @blocking: block until completed
4234a6de 1292 *
a8605ea2 1293 * Return: number of bytes sent on success, <0 on failure.
4234a6de
TW
1294 */
1295int mei_cl_write(struct mei_cl *cl, struct mei_cl_cb *cb, bool blocking)
1296{
1297 struct mei_device *dev;
1298 struct mei_msg_data *buf;
1299 struct mei_msg_hdr mei_hdr;
1300 int rets;
1301
1302
1303 if (WARN_ON(!cl || !cl->dev))
1304 return -ENODEV;
1305
1306 if (WARN_ON(!cb))
1307 return -EINVAL;
1308
1309 dev = cl->dev;
1310
1311
5db7514d 1312 buf = &cb->buf;
4234a6de 1313
0a01e974 1314 cl_dbg(dev, cl, "size=%d\n", buf->size);
4234a6de 1315
2bf94cab 1316 rets = pm_runtime_get(dev->dev);
04bb139a 1317 if (rets < 0 && rets != -EINPROGRESS) {
2bf94cab 1318 pm_runtime_put_noidle(dev->dev);
04bb139a
TW
1319 cl_err(dev, cl, "rpm: get failed %d\n", rets);
1320 return rets;
1321 }
4234a6de 1322
6aae48ff
TW
1323 cb->buf_idx = 0;
1324 cl->writing_state = MEI_IDLE;
1325
1326 mei_hdr.host_addr = cl->host_client_id;
d49ed64a 1327 mei_hdr.me_addr = mei_cl_me_id(cl);
6aae48ff
TW
1328 mei_hdr.reserved = 0;
1329 mei_hdr.msg_complete = 0;
1330 mei_hdr.internal = cb->internal;
4234a6de
TW
1331
1332 rets = mei_cl_flow_ctrl_creds(cl);
1333 if (rets < 0)
1334 goto err;
1335
6aae48ff
TW
1336 if (rets == 0) {
1337 cl_dbg(dev, cl, "No flow control credentials: not sending.\n");
1338 rets = buf->size;
1339 goto out;
1340 }
1341 if (!mei_hbuf_acquire(dev)) {
1342 cl_dbg(dev, cl, "Cannot acquire the host buffer: not sending.\n");
4234a6de
TW
1343 rets = buf->size;
1344 goto out;
1345 }
4234a6de
TW
1346
1347 /* Check for a maximum length */
1348 if (buf->size > mei_hbuf_max_len(dev)) {
1349 mei_hdr.length = mei_hbuf_max_len(dev);
1350 mei_hdr.msg_complete = 0;
1351 } else {
1352 mei_hdr.length = buf->size;
1353 mei_hdr.msg_complete = 1;
1354 }
1355
2ebf8c94
TW
1356 rets = mei_write_message(dev, &mei_hdr, buf->data);
1357 if (rets)
4234a6de 1358 goto err;
4234a6de
TW
1359
1360 cl->writing_state = MEI_WRITING;
1361 cb->buf_idx = mei_hdr.length;
8660172e 1362 cb->completed = mei_hdr.msg_complete == 1;
4234a6de 1363
4234a6de
TW
1364out:
1365 if (mei_hdr.msg_complete) {
7ca96aa2
AU
1366 rets = mei_cl_flow_ctrl_reduce(cl);
1367 if (rets < 0)
4234a6de 1368 goto err;
7ca96aa2 1369
4234a6de
TW
1370 list_add_tail(&cb->list, &dev->write_waiting_list.list);
1371 } else {
1372 list_add_tail(&cb->list, &dev->write_list.list);
1373 }
1374
1375
1376 if (blocking && cl->writing_state != MEI_WRITE_COMPLETE) {
1377
1378 mutex_unlock(&dev->device_lock);
7ca96aa2
AU
1379 rets = wait_event_interruptible(cl->tx_wait,
1380 cl->writing_state == MEI_WRITE_COMPLETE);
4234a6de 1381 mutex_lock(&dev->device_lock);
7ca96aa2
AU
1382 /* wait_event_interruptible returns -ERESTARTSYS */
1383 if (rets) {
1384 if (signal_pending(current))
1385 rets = -EINTR;
1386 goto err;
1387 }
4234a6de 1388 }
7ca96aa2
AU
1389
1390 rets = buf->size;
4234a6de 1391err:
04bb139a 1392 cl_dbg(dev, cl, "rpm: autosuspend\n");
2bf94cab
TW
1393 pm_runtime_mark_last_busy(dev->dev);
1394 pm_runtime_put_autosuspend(dev->dev);
04bb139a 1395
4234a6de
TW
1396 return rets;
1397}
1398
1399
db086fa9
TW
1400/**
1401 * mei_cl_complete - processes completed operation for a client
1402 *
1403 * @cl: private data of the file object.
1404 * @cb: callback block.
1405 */
1406void mei_cl_complete(struct mei_cl *cl, struct mei_cl_cb *cb)
1407{
3c666182
TW
1408 switch (cb->fop_type) {
1409 case MEI_FOP_WRITE:
db086fa9 1410 mei_io_cb_free(cb);
db086fa9
TW
1411 cl->writing_state = MEI_WRITE_COMPLETE;
1412 if (waitqueue_active(&cl->tx_wait))
1413 wake_up_interruptible(&cl->tx_wait);
3c666182 1414 break;
db086fa9 1415
3c666182 1416 case MEI_FOP_READ:
a9bed610 1417 list_add_tail(&cb->list, &cl->rd_completed);
db086fa9 1418 if (waitqueue_active(&cl->rx_wait))
1d9013f0 1419 wake_up_interruptible_all(&cl->rx_wait);
db086fa9
TW
1420 else
1421 mei_cl_bus_rx_event(cl);
3c666182
TW
1422 break;
1423
1424 case MEI_FOP_CONNECT:
1425 case MEI_FOP_DISCONNECT:
1426 if (waitqueue_active(&cl->wait))
1427 wake_up(&cl->wait);
db086fa9 1428
3c666182
TW
1429 break;
1430 default:
1431 BUG_ON(0);
db086fa9
TW
1432 }
1433}
1434
4234a6de 1435
074b4c01
TW
1436/**
1437 * mei_cl_all_disconnect - disconnect forcefully all connected clients
1438 *
a8605ea2 1439 * @dev: mei device
074b4c01 1440 */
074b4c01
TW
1441void mei_cl_all_disconnect(struct mei_device *dev)
1442{
31f88f57 1443 struct mei_cl *cl;
074b4c01 1444
3c666182
TW
1445 list_for_each_entry(cl, &dev->file_list, link)
1446 mei_cl_set_disconnected(cl);
074b4c01
TW
1447}
1448
1449
1450/**
5290801c 1451 * mei_cl_all_wakeup - wake up all readers and writers they can be interrupted
074b4c01 1452 *
a8605ea2 1453 * @dev: mei device
074b4c01 1454 */
5290801c 1455void mei_cl_all_wakeup(struct mei_device *dev)
074b4c01 1456{
31f88f57 1457 struct mei_cl *cl;
92db1555 1458
31f88f57 1459 list_for_each_entry(cl, &dev->file_list, link) {
074b4c01 1460 if (waitqueue_active(&cl->rx_wait)) {
c0abffbd 1461 cl_dbg(dev, cl, "Waking up reading client!\n");
074b4c01
TW
1462 wake_up_interruptible(&cl->rx_wait);
1463 }
5290801c 1464 if (waitqueue_active(&cl->tx_wait)) {
c0abffbd 1465 cl_dbg(dev, cl, "Waking up writing client!\n");
5290801c
TW
1466 wake_up_interruptible(&cl->tx_wait);
1467 }
074b4c01
TW
1468 }
1469}
1470
1471/**
1472 * mei_cl_all_write_clear - clear all pending writes
a8605ea2
AU
1473 *
1474 * @dev: mei device
074b4c01
TW
1475 */
1476void mei_cl_all_write_clear(struct mei_device *dev)
1477{
cc99ecfd
TW
1478 mei_io_list_free(&dev->write_list, NULL);
1479 mei_io_list_free(&dev->write_waiting_list, NULL);
074b4c01
TW
1480}
1481
1482