Merge remote-tracking branch 'asoc/topic/pcm5102a' into asoc-next
[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
174cd4b1 17#include <linux/sched/signal.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 */
3030dc05
TW
361static struct mei_cl_cb *mei_io_cb_init(struct mei_cl *cl,
362 enum mei_cb_file_ops type,
363 const struct file *fp)
928fa666
TW
364{
365 struct mei_cl_cb *cb;
366
367 cb = kzalloc(sizeof(struct mei_cl_cb), GFP_KERNEL);
368 if (!cb)
369 return NULL;
370
371 INIT_LIST_HEAD(&cb->list);
62e8e6ad 372 cb->fp = fp;
928fa666
TW
373 cb->cl = cl;
374 cb->buf_idx = 0;
375 cb->fop_type = type;
376 return cb;
377}
378
cc99ecfd 379/**
f046192d 380 * __mei_io_list_flush_cl - removes and frees cbs belonging to cl.
cc99ecfd 381 *
962ff7bc 382 * @head: an instance of our list structure
cc99ecfd
TW
383 * @cl: host client, can be NULL for flushing the whole list
384 * @free: whether to free the cbs
9ca9050b 385 */
f046192d
TW
386static void __mei_io_list_flush_cl(struct list_head *head,
387 const struct mei_cl *cl, bool free)
9ca9050b 388{
928fa666 389 struct mei_cl_cb *cb, *next;
9ca9050b 390
cc99ecfd 391 /* enable removing everything if no cl is specified */
962ff7bc 392 list_for_each_entry_safe(cb, next, head, list) {
140c7553 393 if (!cl || mei_cl_cmp_id(cl, cb->cl)) {
928fa666 394 list_del_init(&cb->list);
cc99ecfd
TW
395 if (free)
396 mei_io_cb_free(cb);
397 }
9ca9050b
TW
398 }
399}
400
cc99ecfd 401/**
f046192d 402 * mei_io_list_flush_cl - removes list entry belonging to cl.
cc99ecfd 403 *
962ff7bc 404 * @head: An instance of our list structure
cc99ecfd
TW
405 * @cl: host client
406 */
f046192d
TW
407static inline void mei_io_list_flush_cl(struct list_head *head,
408 const struct mei_cl *cl)
cc99ecfd 409{
f046192d 410 __mei_io_list_flush_cl(head, cl, false);
cc99ecfd
TW
411}
412
cc99ecfd 413/**
f046192d 414 * mei_io_list_free_cl - removes cb belonging to cl and free them
cc99ecfd 415 *
962ff7bc 416 * @head: An instance of our list structure
cc99ecfd
TW
417 * @cl: host client
418 */
f046192d
TW
419static inline void mei_io_list_free_cl(struct list_head *head,
420 const struct mei_cl *cl)
cc99ecfd 421{
f046192d
TW
422 __mei_io_list_flush_cl(head, cl, true);
423}
424
425/**
426 * mei_io_list_free_fp - free cb from a list that matches file pointer
427 *
428 * @head: io list
429 * @fp: file pointer (matching cb file object), may be NULL
430 */
394a77d0 431static void mei_io_list_free_fp(struct list_head *head, const struct file *fp)
f046192d
TW
432{
433 struct mei_cl_cb *cb, *next;
434
435 list_for_each_entry_safe(cb, next, head, list)
436 if (!fp || fp == cb->fp)
437 mei_io_cb_free(cb);
cc99ecfd
TW
438}
439
bca67d68
TW
440/**
441 * mei_cl_alloc_cb - a convenient wrapper for allocating read cb
442 *
443 * @cl: host client
444 * @length: size of the buffer
967b274e 445 * @fop_type: operation type
bca67d68
TW
446 * @fp: associated file pointer (might be NULL)
447 *
448 * Return: cb on success and NULL on failure
449 */
450struct mei_cl_cb *mei_cl_alloc_cb(struct mei_cl *cl, size_t length,
3030dc05 451 enum mei_cb_file_ops fop_type,
f23e2cc4 452 const struct file *fp)
bca67d68
TW
453{
454 struct mei_cl_cb *cb;
455
3030dc05 456 cb = mei_io_cb_init(cl, fop_type, fp);
bca67d68
TW
457 if (!cb)
458 return NULL;
459
aab3b1a3
AU
460 if (length == 0)
461 return cb;
462
463 cb->buf.data = kmalloc(length, GFP_KERNEL);
464 if (!cb->buf.data) {
bca67d68
TW
465 mei_io_cb_free(cb);
466 return NULL;
467 }
aab3b1a3 468 cb->buf.size = length;
bca67d68
TW
469
470 return cb;
471}
472
3030dc05
TW
473/**
474 * mei_cl_enqueue_ctrl_wr_cb - a convenient wrapper for allocating
475 * and enqueuing of the control commands cb
476 *
477 * @cl: host client
478 * @length: size of the buffer
967b274e 479 * @fop_type: operation type
3030dc05
TW
480 * @fp: associated file pointer (might be NULL)
481 *
482 * Return: cb on success and NULL on failure
483 * Locking: called under "dev->device_lock" lock
484 */
485struct mei_cl_cb *mei_cl_enqueue_ctrl_wr_cb(struct mei_cl *cl, size_t length,
486 enum mei_cb_file_ops fop_type,
487 const struct file *fp)
488{
489 struct mei_cl_cb *cb;
490
491 /* for RX always allocate at least client's mtu */
492 if (length)
493 length = max_t(size_t, length, mei_cl_mtu(cl));
494
495 cb = mei_cl_alloc_cb(cl, length, fop_type, fp);
496 if (!cb)
497 return NULL;
498
962ff7bc 499 list_add_tail(&cb->list, &cl->dev->ctrl_wr_list);
3030dc05
TW
500 return cb;
501}
502
a9bed610
TW
503/**
504 * mei_cl_read_cb - find this cl's callback in the read list
505 * for a specific file
506 *
507 * @cl: host client
508 * @fp: file pointer (matching cb file object), may be NULL
509 *
510 * Return: cb on success, NULL if cb is not found
511 */
512struct mei_cl_cb *mei_cl_read_cb(const struct mei_cl *cl, const struct file *fp)
513{
514 struct mei_cl_cb *cb;
515
516 list_for_each_entry(cb, &cl->rd_completed, list)
62e8e6ad 517 if (!fp || fp == cb->fp)
a9bed610
TW
518 return cb;
519
520 return NULL;
521}
522
9ca9050b
TW
523/**
524 * mei_cl_flush_queues - flushes queue lists belonging to cl.
525 *
9ca9050b 526 * @cl: host client
a9bed610 527 * @fp: file pointer (matching cb file object), may be NULL
ce23139c
AU
528 *
529 * Return: 0 on success, -EINVAL if cl or cl->dev is NULL.
9ca9050b 530 */
a9bed610 531int mei_cl_flush_queues(struct mei_cl *cl, const struct file *fp)
9ca9050b 532{
c0abffbd
AU
533 struct mei_device *dev;
534
90e0b5f1 535 if (WARN_ON(!cl || !cl->dev))
9ca9050b
TW
536 return -EINVAL;
537
c0abffbd
AU
538 dev = cl->dev;
539
540 cl_dbg(dev, cl, "remove list entry belonging to cl\n");
f046192d
TW
541 mei_io_list_free_cl(&cl->dev->write_list, cl);
542 mei_io_list_free_cl(&cl->dev->write_waiting_list, cl);
543 mei_io_list_flush_cl(&cl->dev->ctrl_wr_list, cl);
544 mei_io_list_flush_cl(&cl->dev->ctrl_rd_list, cl);
545 mei_io_list_free_fp(&cl->rd_pending, fp);
546 mei_io_list_free_fp(&cl->rd_completed, fp);
a9bed610 547
9ca9050b
TW
548 return 0;
549}
550
9ca9050b 551/**
83ce0741 552 * mei_cl_init - initializes cl.
9ca9050b
TW
553 *
554 * @cl: host client to be initialized
555 * @dev: mei device
556 */
394a77d0 557static void mei_cl_init(struct mei_cl *cl, struct mei_device *dev)
9ca9050b
TW
558{
559 memset(cl, 0, sizeof(struct mei_cl));
560 init_waitqueue_head(&cl->wait);
561 init_waitqueue_head(&cl->rx_wait);
562 init_waitqueue_head(&cl->tx_wait);
b38a362f 563 init_waitqueue_head(&cl->ev_wait);
a9bed610
TW
564 INIT_LIST_HEAD(&cl->rd_completed);
565 INIT_LIST_HEAD(&cl->rd_pending);
9ca9050b 566 INIT_LIST_HEAD(&cl->link);
9ca9050b 567 cl->writing_state = MEI_IDLE;
bd47b526 568 cl->state = MEI_FILE_UNINITIALIZED;
9ca9050b
TW
569 cl->dev = dev;
570}
571
572/**
573 * mei_cl_allocate - allocates cl structure and sets it up.
574 *
575 * @dev: mei device
a8605ea2 576 * Return: The allocated file or NULL on failure
9ca9050b
TW
577 */
578struct mei_cl *mei_cl_allocate(struct mei_device *dev)
579{
580 struct mei_cl *cl;
581
582 cl = kmalloc(sizeof(struct mei_cl), GFP_KERNEL);
583 if (!cl)
584 return NULL;
585
586 mei_cl_init(cl, dev);
587
588 return cl;
589}
590
3908be6f
AU
591/**
592 * mei_cl_link - allocate host id in the host map
9ca9050b 593 *
3908be6f 594 * @cl: host client
393b148f 595 *
a8605ea2 596 * Return: 0 on success
9ca9050b 597 * -EINVAL on incorrect values
03b8d341 598 * -EMFILE if open count exceeded.
9ca9050b 599 */
7851e008 600int mei_cl_link(struct mei_cl *cl)
9ca9050b 601{
90e0b5f1 602 struct mei_device *dev;
7851e008 603 int id;
9ca9050b 604
781d0d89 605 if (WARN_ON(!cl || !cl->dev))
9ca9050b
TW
606 return -EINVAL;
607
90e0b5f1
TW
608 dev = cl->dev;
609
7851e008 610 id = find_first_zero_bit(dev->host_clients_map, MEI_CLIENTS_MAX);
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
394a77d0 616 if (dev->open_handle_count >= MEI_MAX_OPEN_HANDLE_COUNT) {
2bf94cab 617 dev_err(dev->dev, "open_handle_count exceeded %d",
e036cc57
TW
618 MEI_MAX_OPEN_HANDLE_COUNT);
619 return -EMFILE;
9ca9050b
TW
620 }
621
781d0d89
TW
622 dev->open_handle_count++;
623
624 cl->host_client_id = id;
625 list_add_tail(&cl->link, &dev->file_list);
626
627 set_bit(id, dev->host_clients_map);
628
629 cl->state = MEI_FILE_INITIALIZING;
630
c0abffbd 631 cl_dbg(dev, cl, "link cl\n");
781d0d89 632 return 0;
9ca9050b 633}
781d0d89 634
9ca9050b 635/**
d49ed64a 636 * mei_cl_unlink - remove host client from the list
9ca9050b 637 *
393b148f 638 * @cl: host client
ce23139c
AU
639 *
640 * Return: always 0
9ca9050b 641 */
90e0b5f1 642int mei_cl_unlink(struct mei_cl *cl)
9ca9050b 643{
90e0b5f1 644 struct mei_device *dev;
90e0b5f1 645
781d0d89
TW
646 /* don't shout on error exit path */
647 if (!cl)
648 return 0;
649
394a77d0 650 if (WARN_ON(!cl->dev))
8e9a4a9a 651 return 0;
90e0b5f1
TW
652
653 dev = cl->dev;
654
a14c44d8
TW
655 cl_dbg(dev, cl, "unlink client");
656
22f96a0e
TW
657 if (dev->open_handle_count > 0)
658 dev->open_handle_count--;
659
660 /* never clear the 0 bit */
661 if (cl->host_client_id)
662 clear_bit(cl->host_client_id, dev->host_clients_map);
663
664 list_del_init(&cl->link);
665
bd47b526 666 cl->state = MEI_FILE_UNINITIALIZED;
7c7a6077
AU
667 cl->writing_state = MEI_IDLE;
668
669 WARN_ON(!list_empty(&cl->rd_completed) ||
670 !list_empty(&cl->rd_pending) ||
671 !list_empty(&cl->link));
22f96a0e 672
90e0b5f1 673 return 0;
9ca9050b
TW
674}
675
025fb792 676void mei_host_client_init(struct mei_device *dev)
9ca9050b 677{
9ca9050b 678 dev->dev_state = MEI_DEV_ENABLED;
6adb8efb 679 dev->reset_count = 0;
04bb139a 680
025fb792 681 schedule_work(&dev->bus_rescan_work);
6009595a 682
2bf94cab
TW
683 pm_runtime_mark_last_busy(dev->dev);
684 dev_dbg(dev->dev, "rpm: autosuspend\n");
d5f8e166 685 pm_request_autosuspend(dev->dev);
9ca9050b
TW
686}
687
6aae48ff 688/**
a8605ea2 689 * mei_hbuf_acquire - try to acquire host buffer
6aae48ff
TW
690 *
691 * @dev: the device structure
a8605ea2 692 * Return: true if host buffer was acquired
6aae48ff
TW
693 */
694bool mei_hbuf_acquire(struct mei_device *dev)
695{
04bb139a 696 if (mei_pg_state(dev) == MEI_PG_ON ||
3dc196ea 697 mei_pg_in_transition(dev)) {
2bf94cab 698 dev_dbg(dev->dev, "device is in pg\n");
04bb139a
TW
699 return false;
700 }
701
6aae48ff 702 if (!dev->hbuf_is_ready) {
2bf94cab 703 dev_dbg(dev->dev, "hbuf is not ready\n");
6aae48ff
TW
704 return false;
705 }
706
707 dev->hbuf_is_ready = false;
708
709 return true;
710}
9ca9050b 711
a4307fe4
AU
712/**
713 * mei_cl_wake_all - wake up readers, writers and event waiters so
714 * they can be interrupted
715 *
716 * @cl: host client
717 */
718static void mei_cl_wake_all(struct mei_cl *cl)
719{
720 struct mei_device *dev = cl->dev;
721
722 /* synchronized under device mutex */
723 if (waitqueue_active(&cl->rx_wait)) {
724 cl_dbg(dev, cl, "Waking up reading client!\n");
725 wake_up_interruptible(&cl->rx_wait);
726 }
727 /* synchronized under device mutex */
728 if (waitqueue_active(&cl->tx_wait)) {
729 cl_dbg(dev, cl, "Waking up writing client!\n");
730 wake_up_interruptible(&cl->tx_wait);
731 }
732 /* synchronized under device mutex */
733 if (waitqueue_active(&cl->ev_wait)) {
734 cl_dbg(dev, cl, "Waking up waiting for event clients!\n");
735 wake_up_interruptible(&cl->ev_wait);
736 }
7ff4bdd4
AU
737 /* synchronized under device mutex */
738 if (waitqueue_active(&cl->wait)) {
739 cl_dbg(dev, cl, "Waking up ctrl write clients!\n");
69f1804a 740 wake_up(&cl->wait);
7ff4bdd4 741 }
a4307fe4
AU
742}
743
3c666182
TW
744/**
745 * mei_cl_set_disconnected - set disconnected state and clear
746 * associated states and resources
747 *
748 * @cl: host client
749 */
669c256c 750static void mei_cl_set_disconnected(struct mei_cl *cl)
3c666182
TW
751{
752 struct mei_device *dev = cl->dev;
753
754 if (cl->state == MEI_FILE_DISCONNECTED ||
bd47b526 755 cl->state <= MEI_FILE_INITIALIZING)
3c666182
TW
756 return;
757
758 cl->state = MEI_FILE_DISCONNECTED;
f046192d
TW
759 mei_io_list_free_cl(&dev->write_list, cl);
760 mei_io_list_free_cl(&dev->write_waiting_list, cl);
761 mei_io_list_flush_cl(&dev->ctrl_rd_list, cl);
762 mei_io_list_flush_cl(&dev->ctrl_wr_list, cl);
a4307fe4 763 mei_cl_wake_all(cl);
46978ada 764 cl->rx_flow_ctrl_creds = 0;
4034b81b 765 cl->tx_flow_ctrl_creds = 0;
3c666182 766 cl->timer_count = 0;
d49ed64a 767
5d882460
AU
768 mei_cl_bus_module_put(cl);
769
a03d77f6
AU
770 if (!cl->me_cl)
771 return;
772
773 if (!WARN_ON(cl->me_cl->connect_count == 0))
774 cl->me_cl->connect_count--;
775
c241e9b1 776 if (cl->me_cl->connect_count == 0)
4034b81b 777 cl->me_cl->tx_flow_ctrl_creds = 0;
c241e9b1 778
d49ed64a
AU
779 mei_me_cl_put(cl->me_cl);
780 cl->me_cl = NULL;
3c666182
TW
781}
782
a03d77f6
AU
783static int mei_cl_set_connecting(struct mei_cl *cl, struct mei_me_client *me_cl)
784{
1df629ef 785 if (!mei_me_cl_get(me_cl))
a03d77f6
AU
786 return -ENOENT;
787
1df629ef
AU
788 /* only one connection is allowed for fixed address clients */
789 if (me_cl->props.fixed_address) {
790 if (me_cl->connect_count) {
791 mei_me_cl_put(me_cl);
792 return -EBUSY;
793 }
794 }
795
796 cl->me_cl = me_cl;
a03d77f6
AU
797 cl->state = MEI_FILE_CONNECTING;
798 cl->me_cl->connect_count++;
799
800 return 0;
801}
802
3c666182
TW
803/*
804 * mei_cl_send_disconnect - send disconnect request
805 *
806 * @cl: host client
807 * @cb: callback block
808 *
809 * Return: 0, OK; otherwise, error.
810 */
811static int mei_cl_send_disconnect(struct mei_cl *cl, struct mei_cl_cb *cb)
812{
813 struct mei_device *dev;
814 int ret;
815
816 dev = cl->dev;
817
818 ret = mei_hbm_cl_disconnect_req(dev, cl);
819 cl->status = ret;
820 if (ret) {
821 cl->state = MEI_FILE_DISCONNECT_REPLY;
822 return ret;
823 }
824
962ff7bc 825 list_move_tail(&cb->list, &dev->ctrl_rd_list);
3c666182 826 cl->timer_count = MEI_CONNECT_TIMEOUT;
1892fc2e 827 mei_schedule_stall_timer(dev);
3c666182
TW
828
829 return 0;
830}
831
832/**
833 * mei_cl_irq_disconnect - processes close related operation from
834 * interrupt thread context - send disconnect request
835 *
836 * @cl: client
837 * @cb: callback block.
838 * @cmpl_list: complete list.
839 *
840 * Return: 0, OK; otherwise, error.
841 */
842int mei_cl_irq_disconnect(struct mei_cl *cl, struct mei_cl_cb *cb,
962ff7bc 843 struct list_head *cmpl_list)
3c666182
TW
844{
845 struct mei_device *dev = cl->dev;
846 u32 msg_slots;
847 int slots;
848 int ret;
849
850 msg_slots = mei_data2slots(sizeof(struct hbm_client_connect_request));
851 slots = mei_hbuf_empty_slots(dev);
852
853 if (slots < msg_slots)
854 return -EMSGSIZE;
855
856 ret = mei_cl_send_disconnect(cl, cb);
857 if (ret)
962ff7bc 858 list_move_tail(&cb->list, cmpl_list);
3c666182
TW
859
860 return ret;
861}
862
9ca9050b 863/**
18901357
AU
864 * __mei_cl_disconnect - disconnect host client from the me one
865 * internal function runtime pm has to be already acquired
9ca9050b 866 *
90e0b5f1 867 * @cl: host client
9ca9050b 868 *
a8605ea2 869 * Return: 0 on success, <0 on failure.
9ca9050b 870 */
18901357 871static int __mei_cl_disconnect(struct mei_cl *cl)
9ca9050b 872{
90e0b5f1 873 struct mei_device *dev;
9ca9050b 874 struct mei_cl_cb *cb;
fe2f17eb 875 int rets;
9ca9050b 876
90e0b5f1
TW
877 dev = cl->dev;
878
3c666182
TW
879 cl->state = MEI_FILE_DISCONNECTING;
880
3030dc05
TW
881 cb = mei_cl_enqueue_ctrl_wr_cb(cl, 0, MEI_FOP_DISCONNECT, NULL);
882 if (!cb) {
883 rets = -ENOMEM;
3c666182 884 goto out;
3030dc05 885 }
5a8373fb 886
6aae48ff 887 if (mei_hbuf_acquire(dev)) {
3c666182
TW
888 rets = mei_cl_send_disconnect(cl, cb);
889 if (rets) {
c0abffbd 890 cl_err(dev, cl, "failed to disconnect.\n");
3c666182 891 goto out;
9ca9050b 892 }
9ca9050b 893 }
9ca9050b 894
3c666182 895 mutex_unlock(&dev->device_lock);
7ff4bdd4
AU
896 wait_event_timeout(cl->wait,
897 cl->state == MEI_FILE_DISCONNECT_REPLY ||
898 cl->state == MEI_FILE_DISCONNECTED,
3c666182 899 mei_secs_to_jiffies(MEI_CL_CONNECT_TIMEOUT));
9ca9050b 900 mutex_lock(&dev->device_lock);
fe2f17eb 901
3c666182 902 rets = cl->status;
7ff4bdd4
AU
903 if (cl->state != MEI_FILE_DISCONNECT_REPLY &&
904 cl->state != MEI_FILE_DISCONNECTED) {
fe2f17eb
AU
905 cl_dbg(dev, cl, "timeout on disconnect from FW client.\n");
906 rets = -ETIME;
9ca9050b
TW
907 }
908
3c666182
TW
909out:
910 /* we disconnect also on error */
911 mei_cl_set_disconnected(cl);
912 if (!rets)
913 cl_dbg(dev, cl, "successfully disconnected from FW client.\n");
914
18901357
AU
915 mei_io_cb_free(cb);
916 return rets;
917}
918
919/**
920 * mei_cl_disconnect - disconnect host client from the me one
921 *
922 * @cl: host client
923 *
924 * Locking: called under "dev->device_lock" lock
925 *
926 * Return: 0 on success, <0 on failure.
927 */
928int mei_cl_disconnect(struct mei_cl *cl)
929{
930 struct mei_device *dev;
931 int rets;
932
933 if (WARN_ON(!cl || !cl->dev))
934 return -ENODEV;
935
936 dev = cl->dev;
937
938 cl_dbg(dev, cl, "disconnecting");
939
940 if (!mei_cl_is_connected(cl))
941 return 0;
942
943 if (mei_cl_is_fixed_address(cl)) {
944 mei_cl_set_disconnected(cl);
945 return 0;
946 }
947
7ae079ac
TW
948 if (dev->dev_state == MEI_DEV_POWER_DOWN) {
949 cl_dbg(dev, cl, "Device is powering down, don't bother with disconnection\n");
950 mei_cl_set_disconnected(cl);
951 return 0;
952 }
953
18901357
AU
954 rets = pm_runtime_get(dev->dev);
955 if (rets < 0 && rets != -EINPROGRESS) {
956 pm_runtime_put_noidle(dev->dev);
957 cl_err(dev, cl, "rpm: get failed %d\n", rets);
958 return rets;
959 }
960
961 rets = __mei_cl_disconnect(cl);
962
04bb139a 963 cl_dbg(dev, cl, "rpm: autosuspend\n");
2bf94cab
TW
964 pm_runtime_mark_last_busy(dev->dev);
965 pm_runtime_put_autosuspend(dev->dev);
04bb139a 966
9ca9050b
TW
967 return rets;
968}
969
970
971/**
90e0b5f1
TW
972 * mei_cl_is_other_connecting - checks if other
973 * client with the same me client id is connecting
9ca9050b 974 *
9ca9050b
TW
975 * @cl: private data of the file object
976 *
a8605ea2 977 * Return: true if other client is connected, false - otherwise.
9ca9050b 978 */
0c53357c 979static bool mei_cl_is_other_connecting(struct mei_cl *cl)
9ca9050b 980{
90e0b5f1 981 struct mei_device *dev;
0c53357c 982 struct mei_cl_cb *cb;
90e0b5f1
TW
983
984 dev = cl->dev;
985
962ff7bc 986 list_for_each_entry(cb, &dev->ctrl_rd_list, list) {
0c53357c 987 if (cb->fop_type == MEI_FOP_CONNECT &&
d49ed64a 988 mei_cl_me_id(cl) == mei_cl_me_id(cb->cl))
90e0b5f1 989 return true;
9ca9050b 990 }
90e0b5f1
TW
991
992 return false;
9ca9050b
TW
993}
994
0c53357c
TW
995/**
996 * mei_cl_send_connect - send connect request
997 *
998 * @cl: host client
999 * @cb: callback block
1000 *
1001 * Return: 0, OK; otherwise, error.
1002 */
1003static int mei_cl_send_connect(struct mei_cl *cl, struct mei_cl_cb *cb)
1004{
1005 struct mei_device *dev;
1006 int ret;
1007
1008 dev = cl->dev;
1009
1010 ret = mei_hbm_cl_connect_req(dev, cl);
1011 cl->status = ret;
1012 if (ret) {
1013 cl->state = MEI_FILE_DISCONNECT_REPLY;
1014 return ret;
1015 }
1016
962ff7bc 1017 list_move_tail(&cb->list, &dev->ctrl_rd_list);
0c53357c 1018 cl->timer_count = MEI_CONNECT_TIMEOUT;
1892fc2e 1019 mei_schedule_stall_timer(dev);
0c53357c
TW
1020 return 0;
1021}
1022
1023/**
1024 * mei_cl_irq_connect - send connect request in irq_thread context
1025 *
1026 * @cl: host client
1027 * @cb: callback block
1028 * @cmpl_list: complete list
1029 *
1030 * Return: 0, OK; otherwise, error.
1031 */
1032int mei_cl_irq_connect(struct mei_cl *cl, struct mei_cl_cb *cb,
962ff7bc 1033 struct list_head *cmpl_list)
0c53357c
TW
1034{
1035 struct mei_device *dev = cl->dev;
1036 u32 msg_slots;
1037 int slots;
1038 int rets;
1039
1040 msg_slots = mei_data2slots(sizeof(struct hbm_client_connect_request));
1041 slots = mei_hbuf_empty_slots(dev);
1042
1043 if (mei_cl_is_other_connecting(cl))
1044 return 0;
1045
1046 if (slots < msg_slots)
1047 return -EMSGSIZE;
1048
1049 rets = mei_cl_send_connect(cl, cb);
1050 if (rets)
962ff7bc 1051 list_move_tail(&cb->list, cmpl_list);
0c53357c
TW
1052
1053 return rets;
1054}
1055
9f81abda 1056/**
83ce0741 1057 * mei_cl_connect - connect host client to the me one
9f81abda
TW
1058 *
1059 * @cl: host client
d49ed64a 1060 * @me_cl: me client
3030dc05 1061 * @fp: pointer to file structure
9f81abda
TW
1062 *
1063 * Locking: called under "dev->device_lock" lock
1064 *
a8605ea2 1065 * Return: 0 on success, <0 on failure.
9f81abda 1066 */
d49ed64a 1067int mei_cl_connect(struct mei_cl *cl, struct mei_me_client *me_cl,
3030dc05 1068 const struct file *fp)
9f81abda
TW
1069{
1070 struct mei_device *dev;
1071 struct mei_cl_cb *cb;
9f81abda
TW
1072 int rets;
1073
1df629ef 1074 if (WARN_ON(!cl || !cl->dev || !me_cl))
9f81abda
TW
1075 return -ENODEV;
1076
1077 dev = cl->dev;
1078
5d882460
AU
1079 if (!mei_cl_bus_module_get(cl))
1080 return -ENODEV;
1081
1df629ef
AU
1082 rets = mei_cl_set_connecting(cl, me_cl);
1083 if (rets)
5d882460 1084 goto nortpm;
1df629ef
AU
1085
1086 if (mei_cl_is_fixed_address(cl)) {
1087 cl->state = MEI_FILE_CONNECTED;
5d882460
AU
1088 rets = 0;
1089 goto nortpm;
1df629ef
AU
1090 }
1091
2bf94cab 1092 rets = pm_runtime_get(dev->dev);
04bb139a 1093 if (rets < 0 && rets != -EINPROGRESS) {
2bf94cab 1094 pm_runtime_put_noidle(dev->dev);
04bb139a 1095 cl_err(dev, cl, "rpm: get failed %d\n", rets);
1df629ef 1096 goto nortpm;
04bb139a
TW
1097 }
1098
3030dc05
TW
1099 cb = mei_cl_enqueue_ctrl_wr_cb(cl, 0, MEI_FOP_CONNECT, fp);
1100 if (!cb) {
1101 rets = -ENOMEM;
9f81abda 1102 goto out;
3030dc05 1103 }
0c53357c 1104
6aae48ff
TW
1105 /* run hbuf acquire last so we don't have to undo */
1106 if (!mei_cl_is_other_connecting(cl) && mei_hbuf_acquire(dev)) {
0c53357c
TW
1107 rets = mei_cl_send_connect(cl, cb);
1108 if (rets)
9f81abda 1109 goto out;
9f81abda
TW
1110 }
1111
1112 mutex_unlock(&dev->device_lock);
12f45ed4 1113 wait_event_timeout(cl->wait,
285e2996 1114 (cl->state == MEI_FILE_CONNECTED ||
7ff4bdd4 1115 cl->state == MEI_FILE_DISCONNECTED ||
18901357 1116 cl->state == MEI_FILE_DISCONNECT_REQUIRED ||
3c666182 1117 cl->state == MEI_FILE_DISCONNECT_REPLY),
285e2996 1118 mei_secs_to_jiffies(MEI_CL_CONNECT_TIMEOUT));
9f81abda
TW
1119 mutex_lock(&dev->device_lock);
1120
f3de9b63 1121 if (!mei_cl_is_connected(cl)) {
18901357 1122 if (cl->state == MEI_FILE_DISCONNECT_REQUIRED) {
f046192d
TW
1123 mei_io_list_flush_cl(&dev->ctrl_rd_list, cl);
1124 mei_io_list_flush_cl(&dev->ctrl_wr_list, cl);
18901357
AU
1125 /* ignore disconnect return valuue;
1126 * in case of failure reset will be invoked
1127 */
1128 __mei_cl_disconnect(cl);
1129 rets = -EFAULT;
1130 goto out;
1131 }
1132
0c53357c 1133 /* timeout or something went really wrong */
285e2996
AU
1134 if (!cl->status)
1135 cl->status = -EFAULT;
9f81abda
TW
1136 }
1137
1138 rets = cl->status;
9f81abda 1139out:
04bb139a 1140 cl_dbg(dev, cl, "rpm: autosuspend\n");
2bf94cab
TW
1141 pm_runtime_mark_last_busy(dev->dev);
1142 pm_runtime_put_autosuspend(dev->dev);
04bb139a 1143
9f81abda 1144 mei_io_cb_free(cb);
0c53357c 1145
1df629ef 1146nortpm:
0c53357c
TW
1147 if (!mei_cl_is_connected(cl))
1148 mei_cl_set_disconnected(cl);
1149
9f81abda
TW
1150 return rets;
1151}
1152
03b8d341
TW
1153/**
1154 * mei_cl_alloc_linked - allocate and link host client
1155 *
1156 * @dev: the device structure
03b8d341
TW
1157 *
1158 * Return: cl on success ERR_PTR on failure
1159 */
7851e008 1160struct mei_cl *mei_cl_alloc_linked(struct mei_device *dev)
03b8d341
TW
1161{
1162 struct mei_cl *cl;
1163 int ret;
1164
1165 cl = mei_cl_allocate(dev);
1166 if (!cl) {
1167 ret = -ENOMEM;
1168 goto err;
1169 }
1170
7851e008 1171 ret = mei_cl_link(cl);
03b8d341
TW
1172 if (ret)
1173 goto err;
1174
1175 return cl;
1176err:
1177 kfree(cl);
1178 return ERR_PTR(ret);
1179}
1180
9ca9050b 1181/**
4034b81b 1182 * mei_cl_tx_flow_ctrl_creds - checks flow_control credits for cl.
9ca9050b 1183 *
06ee536b 1184 * @cl: host client
9ca9050b 1185 *
4034b81b 1186 * Return: 1 if tx_flow_ctrl_creds >0, 0 - otherwise.
9ca9050b 1187 */
4034b81b 1188static int mei_cl_tx_flow_ctrl_creds(struct mei_cl *cl)
9ca9050b 1189{
d49ed64a 1190 if (WARN_ON(!cl || !cl->me_cl))
90e0b5f1
TW
1191 return -EINVAL;
1192
4034b81b 1193 if (cl->tx_flow_ctrl_creds > 0)
9ca9050b
TW
1194 return 1;
1195
a808c80c 1196 if (mei_cl_is_fixed_address(cl))
1df629ef 1197 return 1;
1df629ef 1198
d49ed64a 1199 if (mei_cl_is_single_recv_buf(cl)) {
4034b81b 1200 if (cl->me_cl->tx_flow_ctrl_creds > 0)
d49ed64a 1201 return 1;
9ca9050b 1202 }
d49ed64a 1203 return 0;
9ca9050b
TW
1204}
1205
1206/**
4034b81b
TW
1207 * mei_cl_tx_flow_ctrl_creds_reduce - reduces transmit flow control credits
1208 * for a client
9ca9050b 1209 *
4034b81b 1210 * @cl: host client
393b148f 1211 *
a8605ea2 1212 * Return:
9ca9050b 1213 * 0 on success
9ca9050b
TW
1214 * -EINVAL when ctrl credits are <= 0
1215 */
4034b81b 1216static int mei_cl_tx_flow_ctrl_creds_reduce(struct mei_cl *cl)
9ca9050b 1217{
d49ed64a 1218 if (WARN_ON(!cl || !cl->me_cl))
90e0b5f1
TW
1219 return -EINVAL;
1220
1df629ef
AU
1221 if (mei_cl_is_fixed_address(cl))
1222 return 0;
1223
d49ed64a 1224 if (mei_cl_is_single_recv_buf(cl)) {
4034b81b 1225 if (WARN_ON(cl->me_cl->tx_flow_ctrl_creds <= 0))
d49ed64a 1226 return -EINVAL;
4034b81b 1227 cl->me_cl->tx_flow_ctrl_creds--;
12d00665 1228 } else {
4034b81b 1229 if (WARN_ON(cl->tx_flow_ctrl_creds <= 0))
d49ed64a 1230 return -EINVAL;
4034b81b 1231 cl->tx_flow_ctrl_creds--;
9ca9050b 1232 }
d49ed64a 1233 return 0;
9ca9050b
TW
1234}
1235
51678ccb
TW
1236/**
1237 * mei_cl_notify_fop2req - convert fop to proper request
1238 *
1239 * @fop: client notification start response command
1240 *
1241 * Return: MEI_HBM_NOTIFICATION_START/STOP
1242 */
1243u8 mei_cl_notify_fop2req(enum mei_cb_file_ops fop)
1244{
1245 if (fop == MEI_FOP_NOTIFY_START)
1246 return MEI_HBM_NOTIFICATION_START;
1247 else
1248 return MEI_HBM_NOTIFICATION_STOP;
1249}
1250
1251/**
1252 * mei_cl_notify_req2fop - convert notification request top file operation type
1253 *
1254 * @req: hbm notification request type
1255 *
1256 * Return: MEI_FOP_NOTIFY_START/STOP
1257 */
1258enum mei_cb_file_ops mei_cl_notify_req2fop(u8 req)
1259{
1260 if (req == MEI_HBM_NOTIFICATION_START)
1261 return MEI_FOP_NOTIFY_START;
1262 else
1263 return MEI_FOP_NOTIFY_STOP;
1264}
1265
1266/**
1267 * mei_cl_irq_notify - send notification request in irq_thread context
1268 *
1269 * @cl: client
1270 * @cb: callback block.
1271 * @cmpl_list: complete list.
1272 *
1273 * Return: 0 on such and error otherwise.
1274 */
1275int mei_cl_irq_notify(struct mei_cl *cl, struct mei_cl_cb *cb,
962ff7bc 1276 struct list_head *cmpl_list)
51678ccb
TW
1277{
1278 struct mei_device *dev = cl->dev;
1279 u32 msg_slots;
1280 int slots;
1281 int ret;
1282 bool request;
1283
1284 msg_slots = mei_data2slots(sizeof(struct hbm_client_connect_request));
1285 slots = mei_hbuf_empty_slots(dev);
1286
1287 if (slots < msg_slots)
1288 return -EMSGSIZE;
1289
1290 request = mei_cl_notify_fop2req(cb->fop_type);
1291 ret = mei_hbm_cl_notify_req(dev, cl, request);
1292 if (ret) {
1293 cl->status = ret;
962ff7bc 1294 list_move_tail(&cb->list, cmpl_list);
51678ccb
TW
1295 return ret;
1296 }
1297
962ff7bc 1298 list_move_tail(&cb->list, &dev->ctrl_rd_list);
51678ccb
TW
1299 return 0;
1300}
1301
1302/**
1303 * mei_cl_notify_request - send notification stop/start request
1304 *
1305 * @cl: host client
3030dc05 1306 * @fp: associate request with file
51678ccb
TW
1307 * @request: 1 for start or 0 for stop
1308 *
1309 * Locking: called under "dev->device_lock" lock
1310 *
1311 * Return: 0 on such and error otherwise.
1312 */
f23e2cc4 1313int mei_cl_notify_request(struct mei_cl *cl,
3030dc05 1314 const struct file *fp, u8 request)
51678ccb
TW
1315{
1316 struct mei_device *dev;
1317 struct mei_cl_cb *cb;
1318 enum mei_cb_file_ops fop_type;
1319 int rets;
1320
1321 if (WARN_ON(!cl || !cl->dev))
1322 return -ENODEV;
1323
1324 dev = cl->dev;
1325
1326 if (!dev->hbm_f_ev_supported) {
1327 cl_dbg(dev, cl, "notifications not supported\n");
1328 return -EOPNOTSUPP;
1329 }
1330
7c47d2ca
AU
1331 if (!mei_cl_is_connected(cl))
1332 return -ENODEV;
1333
51678ccb
TW
1334 rets = pm_runtime_get(dev->dev);
1335 if (rets < 0 && rets != -EINPROGRESS) {
1336 pm_runtime_put_noidle(dev->dev);
1337 cl_err(dev, cl, "rpm: get failed %d\n", rets);
1338 return rets;
1339 }
1340
1341 fop_type = mei_cl_notify_req2fop(request);
3030dc05 1342 cb = mei_cl_enqueue_ctrl_wr_cb(cl, 0, fop_type, fp);
51678ccb
TW
1343 if (!cb) {
1344 rets = -ENOMEM;
1345 goto out;
1346 }
1347
1348 if (mei_hbuf_acquire(dev)) {
1349 if (mei_hbm_cl_notify_req(dev, cl, request)) {
1350 rets = -ENODEV;
1351 goto out;
1352 }
962ff7bc 1353 list_move_tail(&cb->list, &dev->ctrl_rd_list);
51678ccb
TW
1354 }
1355
1356 mutex_unlock(&dev->device_lock);
7ff4bdd4
AU
1357 wait_event_timeout(cl->wait,
1358 cl->notify_en == request || !mei_cl_is_connected(cl),
1359 mei_secs_to_jiffies(MEI_CL_CONNECT_TIMEOUT));
51678ccb
TW
1360 mutex_lock(&dev->device_lock);
1361
4a8eaa96
AU
1362 if (cl->notify_en != request && !cl->status)
1363 cl->status = -EFAULT;
51678ccb
TW
1364
1365 rets = cl->status;
1366
1367out:
1368 cl_dbg(dev, cl, "rpm: autosuspend\n");
1369 pm_runtime_mark_last_busy(dev->dev);
1370 pm_runtime_put_autosuspend(dev->dev);
1371
1372 mei_io_cb_free(cb);
1373 return rets;
1374}
1375
237092bf
TW
1376/**
1377 * mei_cl_notify - raise notification
1378 *
1379 * @cl: host client
1380 *
1381 * Locking: called under "dev->device_lock" lock
1382 */
1383void mei_cl_notify(struct mei_cl *cl)
1384{
1385 struct mei_device *dev;
1386
1387 if (!cl || !cl->dev)
1388 return;
1389
1390 dev = cl->dev;
1391
1392 if (!cl->notify_en)
1393 return;
1394
1395 cl_dbg(dev, cl, "notify event");
1396 cl->notify_ev = true;
850f8940
TW
1397 if (!mei_cl_bus_notify_event(cl))
1398 wake_up_interruptible(&cl->ev_wait);
237092bf
TW
1399
1400 if (cl->ev_async)
1401 kill_fasync(&cl->ev_async, SIGIO, POLL_PRI);
bb2ef9c3 1402
237092bf
TW
1403}
1404
b38a362f
TW
1405/**
1406 * mei_cl_notify_get - get or wait for notification event
1407 *
1408 * @cl: host client
1409 * @block: this request is blocking
1410 * @notify_ev: true if notification event was received
1411 *
1412 * Locking: called under "dev->device_lock" lock
1413 *
1414 * Return: 0 on such and error otherwise.
1415 */
1416int mei_cl_notify_get(struct mei_cl *cl, bool block, bool *notify_ev)
1417{
1418 struct mei_device *dev;
1419 int rets;
1420
1421 *notify_ev = false;
1422
1423 if (WARN_ON(!cl || !cl->dev))
1424 return -ENODEV;
1425
1426 dev = cl->dev;
1427
6c0d6701
AU
1428 if (!dev->hbm_f_ev_supported) {
1429 cl_dbg(dev, cl, "notifications not supported\n");
1430 return -EOPNOTSUPP;
1431 }
1432
b38a362f
TW
1433 if (!mei_cl_is_connected(cl))
1434 return -ENODEV;
1435
1436 if (cl->notify_ev)
1437 goto out;
1438
1439 if (!block)
1440 return -EAGAIN;
1441
1442 mutex_unlock(&dev->device_lock);
1443 rets = wait_event_interruptible(cl->ev_wait, cl->notify_ev);
1444 mutex_lock(&dev->device_lock);
1445
1446 if (rets < 0)
1447 return rets;
1448
1449out:
1450 *notify_ev = cl->notify_ev;
1451 cl->notify_ev = false;
1452 return 0;
1453}
1454
ab841160 1455/**
393b148f 1456 * mei_cl_read_start - the start read client message function.
ab841160 1457 *
90e0b5f1 1458 * @cl: host client
ce23139c 1459 * @length: number of bytes to read
bca67d68 1460 * @fp: pointer to file structure
ab841160 1461 *
a8605ea2 1462 * Return: 0 on success, <0 on failure.
ab841160 1463 */
f23e2cc4 1464int mei_cl_read_start(struct mei_cl *cl, size_t length, const struct file *fp)
ab841160 1465{
90e0b5f1 1466 struct mei_device *dev;
ab841160 1467 struct mei_cl_cb *cb;
664df38b 1468 int rets;
ab841160 1469
90e0b5f1
TW
1470 if (WARN_ON(!cl || !cl->dev))
1471 return -ENODEV;
1472
1473 dev = cl->dev;
1474
b950ac1d 1475 if (!mei_cl_is_connected(cl))
ab841160
OW
1476 return -ENODEV;
1477
d49ed64a
AU
1478 if (!mei_me_cl_is_active(cl->me_cl)) {
1479 cl_err(dev, cl, "no such me client\n");
7ca96aa2 1480 return -ENOTTY;
664df38b 1481 }
1df629ef 1482
394a77d0 1483 if (mei_cl_is_fixed_address(cl))
e51dfa5a
AU
1484 return 0;
1485
46978ada
AU
1486 /* HW currently supports only one pending read */
1487 if (cl->rx_flow_ctrl_creds)
1488 return -EBUSY;
1489
3030dc05 1490 cb = mei_cl_enqueue_ctrl_wr_cb(cl, length, MEI_FOP_READ, fp);
1df629ef
AU
1491 if (!cb)
1492 return -ENOMEM;
1493
2bf94cab 1494 rets = pm_runtime_get(dev->dev);
04bb139a 1495 if (rets < 0 && rets != -EINPROGRESS) {
2bf94cab 1496 pm_runtime_put_noidle(dev->dev);
04bb139a 1497 cl_err(dev, cl, "rpm: get failed %d\n", rets);
1df629ef 1498 goto nortpm;
04bb139a
TW
1499 }
1500
46978ada 1501 rets = 0;
6aae48ff 1502 if (mei_hbuf_acquire(dev)) {
86113500
AU
1503 rets = mei_hbm_cl_flow_control_req(dev, cl);
1504 if (rets < 0)
04bb139a 1505 goto out;
04bb139a 1506
46978ada 1507 list_move_tail(&cb->list, &cl->rd_pending);
ab841160 1508 }
46978ada 1509 cl->rx_flow_ctrl_creds++;
accb884b 1510
04bb139a
TW
1511out:
1512 cl_dbg(dev, cl, "rpm: autosuspend\n");
2bf94cab
TW
1513 pm_runtime_mark_last_busy(dev->dev);
1514 pm_runtime_put_autosuspend(dev->dev);
1df629ef 1515nortpm:
04bb139a
TW
1516 if (rets)
1517 mei_io_cb_free(cb);
1518
ab841160
OW
1519 return rets;
1520}
1521
21767546 1522/**
9d098192 1523 * mei_cl_irq_write - write a message to device
21767546
TW
1524 * from the interrupt thread context
1525 *
1526 * @cl: client
1527 * @cb: callback block.
21767546
TW
1528 * @cmpl_list: complete list.
1529 *
a8605ea2 1530 * Return: 0, OK; otherwise error.
21767546 1531 */
9d098192 1532int mei_cl_irq_write(struct mei_cl *cl, struct mei_cl_cb *cb,
962ff7bc 1533 struct list_head *cmpl_list)
21767546 1534{
136698e5
TW
1535 struct mei_device *dev;
1536 struct mei_msg_data *buf;
21767546 1537 struct mei_msg_hdr mei_hdr;
136698e5
TW
1538 size_t len;
1539 u32 msg_slots;
9d098192 1540 int slots;
2ebf8c94 1541 int rets;
b8b73035 1542 bool first_chunk;
21767546 1543
136698e5
TW
1544 if (WARN_ON(!cl || !cl->dev))
1545 return -ENODEV;
1546
1547 dev = cl->dev;
1548
5db7514d 1549 buf = &cb->buf;
136698e5 1550
b8b73035
AU
1551 first_chunk = cb->buf_idx == 0;
1552
4034b81b 1553 rets = first_chunk ? mei_cl_tx_flow_ctrl_creds(cl) : 1;
136698e5 1554 if (rets < 0)
e09ee853 1555 goto err;
136698e5
TW
1556
1557 if (rets == 0) {
04bb139a 1558 cl_dbg(dev, cl, "No flow control credentials: not sending.\n");
136698e5
TW
1559 return 0;
1560 }
1561
9d098192 1562 slots = mei_hbuf_empty_slots(dev);
136698e5
TW
1563 len = buf->size - cb->buf_idx;
1564 msg_slots = mei_data2slots(len);
1565
1df629ef 1566 mei_hdr.host_addr = mei_cl_host_addr(cl);
d49ed64a 1567 mei_hdr.me_addr = mei_cl_me_id(cl);
21767546 1568 mei_hdr.reserved = 0;
479327fc 1569 mei_hdr.internal = cb->internal;
21767546 1570
9d098192 1571 if (slots >= msg_slots) {
21767546
TW
1572 mei_hdr.length = len;
1573 mei_hdr.msg_complete = 1;
1574 /* Split the message only if we can write the whole host buffer */
9d098192
TW
1575 } else if (slots == dev->hbuf_depth) {
1576 msg_slots = slots;
1577 len = (slots * sizeof(u32)) - sizeof(struct mei_msg_hdr);
21767546
TW
1578 mei_hdr.length = len;
1579 mei_hdr.msg_complete = 0;
1580 } else {
1581 /* wait for next time the host buffer is empty */
1582 return 0;
1583 }
1584
35bf7692 1585 cl_dbg(dev, cl, "buf: size = %zu idx = %zu\n",
5db7514d 1586 cb->buf.size, cb->buf_idx);
21767546 1587
136698e5 1588 rets = mei_write_message(dev, &mei_hdr, buf->data + cb->buf_idx);
e09ee853
AU
1589 if (rets)
1590 goto err;
21767546
TW
1591
1592 cl->status = 0;
4dfaa9f7 1593 cl->writing_state = MEI_WRITING;
21767546 1594 cb->buf_idx += mei_hdr.length;
8660172e 1595 cb->completed = mei_hdr.msg_complete == 1;
4dfaa9f7 1596
b8b73035 1597 if (first_chunk) {
e09ee853
AU
1598 if (mei_cl_tx_flow_ctrl_creds_reduce(cl)) {
1599 rets = -EIO;
1600 goto err;
1601 }
21767546
TW
1602 }
1603
b8b73035 1604 if (mei_hdr.msg_complete)
962ff7bc 1605 list_move_tail(&cb->list, &dev->write_waiting_list);
b8b73035 1606
21767546 1607 return 0;
e09ee853
AU
1608
1609err:
1610 cl->status = rets;
962ff7bc 1611 list_move_tail(&cb->list, cmpl_list);
e09ee853 1612 return rets;
21767546
TW
1613}
1614
4234a6de
TW
1615/**
1616 * mei_cl_write - submit a write cb to mei device
a8605ea2 1617 * assumes device_lock is locked
4234a6de
TW
1618 *
1619 * @cl: host client
a8605ea2 1620 * @cb: write callback with filled data
4234a6de 1621 *
a8605ea2 1622 * Return: number of bytes sent on success, <0 on failure.
4234a6de 1623 */
e0cb6b2f 1624int mei_cl_write(struct mei_cl *cl, struct mei_cl_cb *cb)
4234a6de
TW
1625{
1626 struct mei_device *dev;
1627 struct mei_msg_data *buf;
1628 struct mei_msg_hdr mei_hdr;
23253c31 1629 int size;
4234a6de 1630 int rets;
e0cb6b2f 1631 bool blocking;
4234a6de
TW
1632
1633 if (WARN_ON(!cl || !cl->dev))
1634 return -ENODEV;
1635
1636 if (WARN_ON(!cb))
1637 return -EINVAL;
1638
1639 dev = cl->dev;
1640
5db7514d 1641 buf = &cb->buf;
23253c31 1642 size = buf->size;
e0cb6b2f 1643 blocking = cb->blocking;
4234a6de 1644
23253c31 1645 cl_dbg(dev, cl, "size=%d\n", size);
4234a6de 1646
2bf94cab 1647 rets = pm_runtime_get(dev->dev);
04bb139a 1648 if (rets < 0 && rets != -EINPROGRESS) {
2bf94cab 1649 pm_runtime_put_noidle(dev->dev);
04bb139a 1650 cl_err(dev, cl, "rpm: get failed %d\n", rets);
6cbb097f 1651 goto free;
04bb139a 1652 }
4234a6de 1653
6aae48ff
TW
1654 cb->buf_idx = 0;
1655 cl->writing_state = MEI_IDLE;
1656
1df629ef 1657 mei_hdr.host_addr = mei_cl_host_addr(cl);
d49ed64a 1658 mei_hdr.me_addr = mei_cl_me_id(cl);
6aae48ff
TW
1659 mei_hdr.reserved = 0;
1660 mei_hdr.msg_complete = 0;
1661 mei_hdr.internal = cb->internal;
4234a6de 1662
4034b81b 1663 rets = mei_cl_tx_flow_ctrl_creds(cl);
4234a6de
TW
1664 if (rets < 0)
1665 goto err;
1666
6aae48ff
TW
1667 if (rets == 0) {
1668 cl_dbg(dev, cl, "No flow control credentials: not sending.\n");
23253c31 1669 rets = size;
6aae48ff
TW
1670 goto out;
1671 }
1672 if (!mei_hbuf_acquire(dev)) {
1673 cl_dbg(dev, cl, "Cannot acquire the host buffer: not sending.\n");
23253c31 1674 rets = size;
4234a6de
TW
1675 goto out;
1676 }
4234a6de
TW
1677
1678 /* Check for a maximum length */
23253c31 1679 if (size > mei_hbuf_max_len(dev)) {
4234a6de
TW
1680 mei_hdr.length = mei_hbuf_max_len(dev);
1681 mei_hdr.msg_complete = 0;
1682 } else {
23253c31 1683 mei_hdr.length = size;
4234a6de
TW
1684 mei_hdr.msg_complete = 1;
1685 }
1686
2ebf8c94
TW
1687 rets = mei_write_message(dev, &mei_hdr, buf->data);
1688 if (rets)
4234a6de 1689 goto err;
4234a6de 1690
4034b81b 1691 rets = mei_cl_tx_flow_ctrl_creds_reduce(cl);
b8b73035
AU
1692 if (rets)
1693 goto err;
1694
4234a6de
TW
1695 cl->writing_state = MEI_WRITING;
1696 cb->buf_idx = mei_hdr.length;
8660172e 1697 cb->completed = mei_hdr.msg_complete == 1;
4234a6de 1698
4234a6de 1699out:
b8b73035 1700 if (mei_hdr.msg_complete)
962ff7bc 1701 list_add_tail(&cb->list, &dev->write_waiting_list);
b8b73035 1702 else
962ff7bc 1703 list_add_tail(&cb->list, &dev->write_list);
4234a6de 1704
23253c31 1705 cb = NULL;
4234a6de
TW
1706 if (blocking && cl->writing_state != MEI_WRITE_COMPLETE) {
1707
1708 mutex_unlock(&dev->device_lock);
7ca96aa2 1709 rets = wait_event_interruptible(cl->tx_wait,
0faf6a3b
AU
1710 cl->writing_state == MEI_WRITE_COMPLETE ||
1711 (!mei_cl_is_connected(cl)));
4234a6de 1712 mutex_lock(&dev->device_lock);
7ca96aa2
AU
1713 /* wait_event_interruptible returns -ERESTARTSYS */
1714 if (rets) {
1715 if (signal_pending(current))
1716 rets = -EINTR;
1717 goto err;
1718 }
0faf6a3b
AU
1719 if (cl->writing_state != MEI_WRITE_COMPLETE) {
1720 rets = -EFAULT;
1721 goto err;
1722 }
4234a6de 1723 }
7ca96aa2 1724
23253c31 1725 rets = size;
4234a6de 1726err:
04bb139a 1727 cl_dbg(dev, cl, "rpm: autosuspend\n");
2bf94cab
TW
1728 pm_runtime_mark_last_busy(dev->dev);
1729 pm_runtime_put_autosuspend(dev->dev);
6cbb097f
AU
1730free:
1731 mei_io_cb_free(cb);
04bb139a 1732
4234a6de
TW
1733 return rets;
1734}
1735
1736
db086fa9
TW
1737/**
1738 * mei_cl_complete - processes completed operation for a client
1739 *
1740 * @cl: private data of the file object.
1741 * @cb: callback block.
1742 */
1743void mei_cl_complete(struct mei_cl *cl, struct mei_cl_cb *cb)
1744{
a1809d38
AU
1745 struct mei_device *dev = cl->dev;
1746
3c666182
TW
1747 switch (cb->fop_type) {
1748 case MEI_FOP_WRITE:
db086fa9 1749 mei_io_cb_free(cb);
db086fa9 1750 cl->writing_state = MEI_WRITE_COMPLETE;
a1809d38 1751 if (waitqueue_active(&cl->tx_wait)) {
db086fa9 1752 wake_up_interruptible(&cl->tx_wait);
a1809d38
AU
1753 } else {
1754 pm_runtime_mark_last_busy(dev->dev);
1755 pm_request_autosuspend(dev->dev);
1756 }
3c666182 1757 break;
db086fa9 1758
3c666182 1759 case MEI_FOP_READ:
a9bed610 1760 list_add_tail(&cb->list, &cl->rd_completed);
46978ada
AU
1761 if (!mei_cl_is_fixed_address(cl) &&
1762 !WARN_ON(!cl->rx_flow_ctrl_creds))
1763 cl->rx_flow_ctrl_creds--;
a1f9ae2b
TW
1764 if (!mei_cl_bus_rx_event(cl))
1765 wake_up_interruptible(&cl->rx_wait);
3c666182
TW
1766 break;
1767
1768 case MEI_FOP_CONNECT:
1769 case MEI_FOP_DISCONNECT:
51678ccb
TW
1770 case MEI_FOP_NOTIFY_STOP:
1771 case MEI_FOP_NOTIFY_START:
3c666182
TW
1772 if (waitqueue_active(&cl->wait))
1773 wake_up(&cl->wait);
db086fa9 1774
6a8d648c
AU
1775 break;
1776 case MEI_FOP_DISCONNECT_RSP:
1777 mei_io_cb_free(cb);
1778 mei_cl_set_disconnected(cl);
3c666182
TW
1779 break;
1780 default:
1781 BUG_ON(0);
db086fa9
TW
1782 }
1783}
1784
4234a6de 1785
074b4c01
TW
1786/**
1787 * mei_cl_all_disconnect - disconnect forcefully all connected clients
1788 *
a8605ea2 1789 * @dev: mei device
074b4c01 1790 */
074b4c01
TW
1791void mei_cl_all_disconnect(struct mei_device *dev)
1792{
31f88f57 1793 struct mei_cl *cl;
074b4c01 1794
3c666182
TW
1795 list_for_each_entry(cl, &dev->file_list, link)
1796 mei_cl_set_disconnected(cl);
074b4c01 1797}