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