mm/hmm.c: remove superfluous RCU protection around radix tree lookup
[linux/fpc-iii.git] / drivers / misc / mei / client.c
blob8d6197a88b54551d07de68d2c4387add2a7fbc5a
1 /*
3 * Intel Management Engine Interface (Intel MEI) Linux driver
4 * Copyright (c) 2003-2012, Intel Corporation.
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.
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.
17 #include <linux/sched/signal.h>
18 #include <linux/wait.h>
19 #include <linux/delay.h>
20 #include <linux/slab.h>
21 #include <linux/pm_runtime.h>
23 #include <linux/mei.h>
25 #include "mei_dev.h"
26 #include "hbm.h"
27 #include "client.h"
29 /**
30 * mei_me_cl_init - initialize me client
32 * @me_cl: me client
34 void mei_me_cl_init(struct mei_me_client *me_cl)
36 INIT_LIST_HEAD(&me_cl->list);
37 kref_init(&me_cl->refcnt);
40 /**
41 * mei_me_cl_get - increases me client refcount
43 * @me_cl: me client
45 * Locking: called under "dev->device_lock" lock
47 * Return: me client or NULL
49 struct mei_me_client *mei_me_cl_get(struct mei_me_client *me_cl)
51 if (me_cl && kref_get_unless_zero(&me_cl->refcnt))
52 return me_cl;
54 return NULL;
57 /**
58 * mei_me_cl_release - free me client
60 * Locking: called under "dev->device_lock" lock
62 * @ref: me_client refcount
64 static void mei_me_cl_release(struct kref *ref)
66 struct mei_me_client *me_cl =
67 container_of(ref, struct mei_me_client, refcnt);
69 kfree(me_cl);
72 /**
73 * mei_me_cl_put - decrease me client refcount and free client if necessary
75 * Locking: called under "dev->device_lock" lock
77 * @me_cl: me client
79 void mei_me_cl_put(struct mei_me_client *me_cl)
81 if (me_cl)
82 kref_put(&me_cl->refcnt, mei_me_cl_release);
85 /**
86 * __mei_me_cl_del - delete me client from the list and decrease
87 * reference counter
89 * @dev: mei device
90 * @me_cl: me client
92 * Locking: dev->me_clients_rwsem
94 static void __mei_me_cl_del(struct mei_device *dev, struct mei_me_client *me_cl)
96 if (!me_cl)
97 return;
99 list_del_init(&me_cl->list);
100 mei_me_cl_put(me_cl);
104 * mei_me_cl_del - delete me client from the list and decrease
105 * reference counter
107 * @dev: mei device
108 * @me_cl: me client
110 void mei_me_cl_del(struct mei_device *dev, struct mei_me_client *me_cl)
112 down_write(&dev->me_clients_rwsem);
113 __mei_me_cl_del(dev, me_cl);
114 up_write(&dev->me_clients_rwsem);
118 * mei_me_cl_add - add me client to the list
120 * @dev: mei device
121 * @me_cl: me client
123 void mei_me_cl_add(struct mei_device *dev, struct mei_me_client *me_cl)
125 down_write(&dev->me_clients_rwsem);
126 list_add(&me_cl->list, &dev->me_clients);
127 up_write(&dev->me_clients_rwsem);
131 * __mei_me_cl_by_uuid - locate me client by uuid
132 * increases ref count
134 * @dev: mei device
135 * @uuid: me client uuid
137 * Return: me client or NULL if not found
139 * Locking: dev->me_clients_rwsem
141 static struct mei_me_client *__mei_me_cl_by_uuid(struct mei_device *dev,
142 const uuid_le *uuid)
144 struct mei_me_client *me_cl;
145 const uuid_le *pn;
147 WARN_ON(!rwsem_is_locked(&dev->me_clients_rwsem));
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)
152 return mei_me_cl_get(me_cl);
155 return NULL;
159 * mei_me_cl_by_uuid - locate me client by uuid
160 * increases ref count
162 * @dev: mei device
163 * @uuid: me client uuid
165 * Return: me client or NULL if not found
167 * Locking: dev->me_clients_rwsem
169 struct mei_me_client *mei_me_cl_by_uuid(struct mei_device *dev,
170 const uuid_le *uuid)
172 struct mei_me_client *me_cl;
174 down_read(&dev->me_clients_rwsem);
175 me_cl = __mei_me_cl_by_uuid(dev, uuid);
176 up_read(&dev->me_clients_rwsem);
178 return me_cl;
182 * mei_me_cl_by_id - locate me client by client id
183 * increases ref count
185 * @dev: the device structure
186 * @client_id: me client id
188 * Return: me client or NULL if not found
190 * Locking: dev->me_clients_rwsem
192 struct mei_me_client *mei_me_cl_by_id(struct mei_device *dev, u8 client_id)
195 struct mei_me_client *__me_cl, *me_cl = NULL;
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;
204 up_read(&dev->me_clients_rwsem);
206 return me_cl;
210 * __mei_me_cl_by_uuid_id - locate me client by client id and uuid
211 * increases ref count
213 * @dev: the device structure
214 * @uuid: me client uuid
215 * @client_id: me client id
217 * Return: me client or null if not found
219 * Locking: dev->me_clients_rwsem
221 static struct mei_me_client *__mei_me_cl_by_uuid_id(struct mei_device *dev,
222 const uuid_le *uuid, u8 client_id)
224 struct mei_me_client *me_cl;
225 const uuid_le *pn;
227 WARN_ON(!rwsem_is_locked(&dev->me_clients_rwsem));
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)
233 return mei_me_cl_get(me_cl);
236 return NULL;
241 * mei_me_cl_by_uuid_id - locate me client by client id and uuid
242 * increases ref count
244 * @dev: the device structure
245 * @uuid: me client uuid
246 * @client_id: me client id
248 * Return: me client or null if not found
250 struct mei_me_client *mei_me_cl_by_uuid_id(struct mei_device *dev,
251 const uuid_le *uuid, u8 client_id)
253 struct mei_me_client *me_cl;
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);
259 return me_cl;
263 * mei_me_cl_rm_by_uuid - remove all me clients matching uuid
265 * @dev: the device structure
266 * @uuid: me client uuid
268 * Locking: called under "dev->device_lock" lock
270 void mei_me_cl_rm_by_uuid(struct mei_device *dev, const uuid_le *uuid)
272 struct mei_me_client *me_cl;
274 dev_dbg(dev->dev, "remove %pUl\n", uuid);
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);
283 * mei_me_cl_rm_by_uuid_id - remove all me clients matching client id
285 * @dev: the device structure
286 * @uuid: me client uuid
287 * @id: me client id
289 * Locking: called under "dev->device_lock" lock
291 void mei_me_cl_rm_by_uuid_id(struct mei_device *dev, const uuid_le *uuid, u8 id)
293 struct mei_me_client *me_cl;
295 dev_dbg(dev->dev, "remove %pUl %d\n", uuid, id);
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);
304 * mei_me_cl_rm_all - remove all me clients
306 * @dev: the device structure
308 * Locking: called under "dev->device_lock" lock
310 void mei_me_cl_rm_all(struct mei_device *dev)
312 struct mei_me_client *me_cl, *next;
314 down_write(&dev->me_clients_rwsem);
315 list_for_each_entry_safe(me_cl, next, &dev->me_clients, list)
316 __mei_me_cl_del(dev, me_cl);
317 up_write(&dev->me_clients_rwsem);
321 * mei_cl_cmp_id - tells if the clients are the same
323 * @cl1: host client 1
324 * @cl2: host client 2
326 * Return: true - if the clients has same host and me ids
327 * false - otherwise
329 static inline bool mei_cl_cmp_id(const struct mei_cl *cl1,
330 const struct mei_cl *cl2)
332 return cl1 && cl2 &&
333 (cl1->host_client_id == cl2->host_client_id) &&
334 (mei_cl_me_id(cl1) == mei_cl_me_id(cl2));
338 * mei_io_cb_free - free mei_cb_private related memory
340 * @cb: mei callback struct
342 void mei_io_cb_free(struct mei_cl_cb *cb)
344 if (cb == NULL)
345 return;
347 list_del(&cb->list);
348 kfree(cb->buf.data);
349 kfree(cb);
353 * mei_tx_cb_queue - queue tx callback
355 * Locking: called under "dev->device_lock" lock
357 * @cb: mei callback struct
358 * @head: an instance of list to queue on
360 static inline void mei_tx_cb_enqueue(struct mei_cl_cb *cb,
361 struct list_head *head)
363 list_add_tail(&cb->list, head);
364 cb->cl->tx_cb_queued++;
368 * mei_tx_cb_dequeue - dequeue tx callback
370 * Locking: called under "dev->device_lock" lock
372 * @cb: mei callback struct to dequeue and free
374 static inline void mei_tx_cb_dequeue(struct mei_cl_cb *cb)
376 if (!WARN_ON(cb->cl->tx_cb_queued == 0))
377 cb->cl->tx_cb_queued--;
379 mei_io_cb_free(cb);
383 * mei_io_cb_init - allocate and initialize io callback
385 * @cl: mei client
386 * @type: operation type
387 * @fp: pointer to file structure
389 * Return: mei_cl_cb pointer or NULL;
391 static struct mei_cl_cb *mei_io_cb_init(struct mei_cl *cl,
392 enum mei_cb_file_ops type,
393 const struct file *fp)
395 struct mei_cl_cb *cb;
397 cb = kzalloc(sizeof(struct mei_cl_cb), GFP_KERNEL);
398 if (!cb)
399 return NULL;
401 INIT_LIST_HEAD(&cb->list);
402 cb->fp = fp;
403 cb->cl = cl;
404 cb->buf_idx = 0;
405 cb->fop_type = type;
406 return cb;
410 * mei_io_list_flush_cl - removes cbs belonging to the cl.
412 * @head: an instance of our list structure
413 * @cl: host client
415 static void mei_io_list_flush_cl(struct list_head *head,
416 const struct mei_cl *cl)
418 struct mei_cl_cb *cb, *next;
420 list_for_each_entry_safe(cb, next, head, list) {
421 if (mei_cl_cmp_id(cl, cb->cl))
422 list_del_init(&cb->list);
427 * mei_io_tx_list_free_cl - removes cb belonging to the cl and free them
429 * @head: An instance of our list structure
430 * @cl: host client
432 static void mei_io_tx_list_free_cl(struct list_head *head,
433 const struct mei_cl *cl)
435 struct mei_cl_cb *cb, *next;
437 list_for_each_entry_safe(cb, next, head, list) {
438 if (mei_cl_cmp_id(cl, cb->cl))
439 mei_tx_cb_dequeue(cb);
444 * mei_io_list_free_fp - free cb from a list that matches file pointer
446 * @head: io list
447 * @fp: file pointer (matching cb file object), may be NULL
449 static void mei_io_list_free_fp(struct list_head *head, const struct file *fp)
451 struct mei_cl_cb *cb, *next;
453 list_for_each_entry_safe(cb, next, head, list)
454 if (!fp || fp == cb->fp)
455 mei_io_cb_free(cb);
459 * mei_cl_alloc_cb - a convenient wrapper for allocating read cb
461 * @cl: host client
462 * @length: size of the buffer
463 * @fop_type: operation type
464 * @fp: associated file pointer (might be NULL)
466 * Return: cb on success and NULL on failure
468 struct mei_cl_cb *mei_cl_alloc_cb(struct mei_cl *cl, size_t length,
469 enum mei_cb_file_ops fop_type,
470 const struct file *fp)
472 struct mei_cl_cb *cb;
474 cb = mei_io_cb_init(cl, fop_type, fp);
475 if (!cb)
476 return NULL;
478 if (length == 0)
479 return cb;
481 cb->buf.data = kmalloc(length, GFP_KERNEL);
482 if (!cb->buf.data) {
483 mei_io_cb_free(cb);
484 return NULL;
486 cb->buf.size = length;
488 return cb;
492 * mei_cl_enqueue_ctrl_wr_cb - a convenient wrapper for allocating
493 * and enqueuing of the control commands cb
495 * @cl: host client
496 * @length: size of the buffer
497 * @fop_type: operation type
498 * @fp: associated file pointer (might be NULL)
500 * Return: cb on success and NULL on failure
501 * Locking: called under "dev->device_lock" lock
503 struct mei_cl_cb *mei_cl_enqueue_ctrl_wr_cb(struct mei_cl *cl, size_t length,
504 enum mei_cb_file_ops fop_type,
505 const struct file *fp)
507 struct mei_cl_cb *cb;
509 /* for RX always allocate at least client's mtu */
510 if (length)
511 length = max_t(size_t, length, mei_cl_mtu(cl));
513 cb = mei_cl_alloc_cb(cl, length, fop_type, fp);
514 if (!cb)
515 return NULL;
517 list_add_tail(&cb->list, &cl->dev->ctrl_wr_list);
518 return cb;
522 * mei_cl_read_cb - find this cl's callback in the read list
523 * for a specific file
525 * @cl: host client
526 * @fp: file pointer (matching cb file object), may be NULL
528 * Return: cb on success, NULL if cb is not found
530 struct mei_cl_cb *mei_cl_read_cb(const struct mei_cl *cl, const struct file *fp)
532 struct mei_cl_cb *cb;
534 list_for_each_entry(cb, &cl->rd_completed, list)
535 if (!fp || fp == cb->fp)
536 return cb;
538 return NULL;
542 * mei_cl_flush_queues - flushes queue lists belonging to cl.
544 * @cl: host client
545 * @fp: file pointer (matching cb file object), may be NULL
547 * Return: 0 on success, -EINVAL if cl or cl->dev is NULL.
549 int mei_cl_flush_queues(struct mei_cl *cl, const struct file *fp)
551 struct mei_device *dev;
553 if (WARN_ON(!cl || !cl->dev))
554 return -EINVAL;
556 dev = cl->dev;
558 cl_dbg(dev, cl, "remove list entry belonging to cl\n");
559 mei_io_tx_list_free_cl(&cl->dev->write_list, cl);
560 mei_io_tx_list_free_cl(&cl->dev->write_waiting_list, cl);
561 mei_io_list_flush_cl(&cl->dev->ctrl_wr_list, cl);
562 mei_io_list_flush_cl(&cl->dev->ctrl_rd_list, cl);
563 mei_io_list_free_fp(&cl->rd_pending, fp);
564 mei_io_list_free_fp(&cl->rd_completed, fp);
566 return 0;
570 * mei_cl_init - initializes cl.
572 * @cl: host client to be initialized
573 * @dev: mei device
575 static void mei_cl_init(struct mei_cl *cl, struct mei_device *dev)
577 memset(cl, 0, sizeof(struct mei_cl));
578 init_waitqueue_head(&cl->wait);
579 init_waitqueue_head(&cl->rx_wait);
580 init_waitqueue_head(&cl->tx_wait);
581 init_waitqueue_head(&cl->ev_wait);
582 INIT_LIST_HEAD(&cl->rd_completed);
583 INIT_LIST_HEAD(&cl->rd_pending);
584 INIT_LIST_HEAD(&cl->link);
585 cl->writing_state = MEI_IDLE;
586 cl->state = MEI_FILE_UNINITIALIZED;
587 cl->dev = dev;
591 * mei_cl_allocate - allocates cl structure and sets it up.
593 * @dev: mei device
594 * Return: The allocated file or NULL on failure
596 struct mei_cl *mei_cl_allocate(struct mei_device *dev)
598 struct mei_cl *cl;
600 cl = kmalloc(sizeof(struct mei_cl), GFP_KERNEL);
601 if (!cl)
602 return NULL;
604 mei_cl_init(cl, dev);
606 return cl;
610 * mei_cl_link - allocate host id in the host map
612 * @cl: host client
614 * Return: 0 on success
615 * -EINVAL on incorrect values
616 * -EMFILE if open count exceeded.
618 int mei_cl_link(struct mei_cl *cl)
620 struct mei_device *dev;
621 int id;
623 if (WARN_ON(!cl || !cl->dev))
624 return -EINVAL;
626 dev = cl->dev;
628 id = find_first_zero_bit(dev->host_clients_map, MEI_CLIENTS_MAX);
629 if (id >= MEI_CLIENTS_MAX) {
630 dev_err(dev->dev, "id exceeded %d", MEI_CLIENTS_MAX);
631 return -EMFILE;
634 if (dev->open_handle_count >= MEI_MAX_OPEN_HANDLE_COUNT) {
635 dev_err(dev->dev, "open_handle_count exceeded %d",
636 MEI_MAX_OPEN_HANDLE_COUNT);
637 return -EMFILE;
640 dev->open_handle_count++;
642 cl->host_client_id = id;
643 list_add_tail(&cl->link, &dev->file_list);
645 set_bit(id, dev->host_clients_map);
647 cl->state = MEI_FILE_INITIALIZING;
649 cl_dbg(dev, cl, "link cl\n");
650 return 0;
654 * mei_cl_unlink - remove host client from the list
656 * @cl: host client
658 * Return: always 0
660 int mei_cl_unlink(struct mei_cl *cl)
662 struct mei_device *dev;
664 /* don't shout on error exit path */
665 if (!cl)
666 return 0;
668 if (WARN_ON(!cl->dev))
669 return 0;
671 dev = cl->dev;
673 cl_dbg(dev, cl, "unlink client");
675 if (dev->open_handle_count > 0)
676 dev->open_handle_count--;
678 /* never clear the 0 bit */
679 if (cl->host_client_id)
680 clear_bit(cl->host_client_id, dev->host_clients_map);
682 list_del_init(&cl->link);
684 cl->state = MEI_FILE_UNINITIALIZED;
685 cl->writing_state = MEI_IDLE;
687 WARN_ON(!list_empty(&cl->rd_completed) ||
688 !list_empty(&cl->rd_pending) ||
689 !list_empty(&cl->link));
691 return 0;
694 void mei_host_client_init(struct mei_device *dev)
696 dev->dev_state = MEI_DEV_ENABLED;
697 dev->reset_count = 0;
699 schedule_work(&dev->bus_rescan_work);
701 pm_runtime_mark_last_busy(dev->dev);
702 dev_dbg(dev->dev, "rpm: autosuspend\n");
703 pm_request_autosuspend(dev->dev);
707 * mei_hbuf_acquire - try to acquire host buffer
709 * @dev: the device structure
710 * Return: true if host buffer was acquired
712 bool mei_hbuf_acquire(struct mei_device *dev)
714 if (mei_pg_state(dev) == MEI_PG_ON ||
715 mei_pg_in_transition(dev)) {
716 dev_dbg(dev->dev, "device is in pg\n");
717 return false;
720 if (!dev->hbuf_is_ready) {
721 dev_dbg(dev->dev, "hbuf is not ready\n");
722 return false;
725 dev->hbuf_is_ready = false;
727 return true;
731 * mei_cl_wake_all - wake up readers, writers and event waiters so
732 * they can be interrupted
734 * @cl: host client
736 static void mei_cl_wake_all(struct mei_cl *cl)
738 struct mei_device *dev = cl->dev;
740 /* synchronized under device mutex */
741 if (waitqueue_active(&cl->rx_wait)) {
742 cl_dbg(dev, cl, "Waking up reading client!\n");
743 wake_up_interruptible(&cl->rx_wait);
745 /* synchronized under device mutex */
746 if (waitqueue_active(&cl->tx_wait)) {
747 cl_dbg(dev, cl, "Waking up writing client!\n");
748 wake_up_interruptible(&cl->tx_wait);
750 /* synchronized under device mutex */
751 if (waitqueue_active(&cl->ev_wait)) {
752 cl_dbg(dev, cl, "Waking up waiting for event clients!\n");
753 wake_up_interruptible(&cl->ev_wait);
755 /* synchronized under device mutex */
756 if (waitqueue_active(&cl->wait)) {
757 cl_dbg(dev, cl, "Waking up ctrl write clients!\n");
758 wake_up(&cl->wait);
763 * mei_cl_set_disconnected - set disconnected state and clear
764 * associated states and resources
766 * @cl: host client
768 static void mei_cl_set_disconnected(struct mei_cl *cl)
770 struct mei_device *dev = cl->dev;
772 if (cl->state == MEI_FILE_DISCONNECTED ||
773 cl->state <= MEI_FILE_INITIALIZING)
774 return;
776 cl->state = MEI_FILE_DISCONNECTED;
777 mei_io_tx_list_free_cl(&dev->write_list, cl);
778 mei_io_tx_list_free_cl(&dev->write_waiting_list, cl);
779 mei_io_list_flush_cl(&dev->ctrl_rd_list, cl);
780 mei_io_list_flush_cl(&dev->ctrl_wr_list, cl);
781 mei_cl_wake_all(cl);
782 cl->rx_flow_ctrl_creds = 0;
783 cl->tx_flow_ctrl_creds = 0;
784 cl->timer_count = 0;
786 if (!cl->me_cl)
787 return;
789 if (!WARN_ON(cl->me_cl->connect_count == 0))
790 cl->me_cl->connect_count--;
792 if (cl->me_cl->connect_count == 0)
793 cl->me_cl->tx_flow_ctrl_creds = 0;
795 mei_me_cl_put(cl->me_cl);
796 cl->me_cl = NULL;
799 static int mei_cl_set_connecting(struct mei_cl *cl, struct mei_me_client *me_cl)
801 if (!mei_me_cl_get(me_cl))
802 return -ENOENT;
804 /* only one connection is allowed for fixed address clients */
805 if (me_cl->props.fixed_address) {
806 if (me_cl->connect_count) {
807 mei_me_cl_put(me_cl);
808 return -EBUSY;
812 cl->me_cl = me_cl;
813 cl->state = MEI_FILE_CONNECTING;
814 cl->me_cl->connect_count++;
816 return 0;
820 * mei_cl_send_disconnect - send disconnect request
822 * @cl: host client
823 * @cb: callback block
825 * Return: 0, OK; otherwise, error.
827 static int mei_cl_send_disconnect(struct mei_cl *cl, struct mei_cl_cb *cb)
829 struct mei_device *dev;
830 int ret;
832 dev = cl->dev;
834 ret = mei_hbm_cl_disconnect_req(dev, cl);
835 cl->status = ret;
836 if (ret) {
837 cl->state = MEI_FILE_DISCONNECT_REPLY;
838 return ret;
841 list_move_tail(&cb->list, &dev->ctrl_rd_list);
842 cl->timer_count = MEI_CONNECT_TIMEOUT;
843 mei_schedule_stall_timer(dev);
845 return 0;
849 * mei_cl_irq_disconnect - processes close related operation from
850 * interrupt thread context - send disconnect request
852 * @cl: client
853 * @cb: callback block.
854 * @cmpl_list: complete list.
856 * Return: 0, OK; otherwise, error.
858 int mei_cl_irq_disconnect(struct mei_cl *cl, struct mei_cl_cb *cb,
859 struct list_head *cmpl_list)
861 struct mei_device *dev = cl->dev;
862 u32 msg_slots;
863 int slots;
864 int ret;
866 msg_slots = mei_data2slots(sizeof(struct hbm_client_connect_request));
867 slots = mei_hbuf_empty_slots(dev);
869 if (slots < msg_slots)
870 return -EMSGSIZE;
872 ret = mei_cl_send_disconnect(cl, cb);
873 if (ret)
874 list_move_tail(&cb->list, cmpl_list);
876 return ret;
880 * __mei_cl_disconnect - disconnect host client from the me one
881 * internal function runtime pm has to be already acquired
883 * @cl: host client
885 * Return: 0 on success, <0 on failure.
887 static int __mei_cl_disconnect(struct mei_cl *cl)
889 struct mei_device *dev;
890 struct mei_cl_cb *cb;
891 int rets;
893 dev = cl->dev;
895 cl->state = MEI_FILE_DISCONNECTING;
897 cb = mei_cl_enqueue_ctrl_wr_cb(cl, 0, MEI_FOP_DISCONNECT, NULL);
898 if (!cb) {
899 rets = -ENOMEM;
900 goto out;
903 if (mei_hbuf_acquire(dev)) {
904 rets = mei_cl_send_disconnect(cl, cb);
905 if (rets) {
906 cl_err(dev, cl, "failed to disconnect.\n");
907 goto out;
911 mutex_unlock(&dev->device_lock);
912 wait_event_timeout(cl->wait,
913 cl->state == MEI_FILE_DISCONNECT_REPLY ||
914 cl->state == MEI_FILE_DISCONNECTED,
915 mei_secs_to_jiffies(MEI_CL_CONNECT_TIMEOUT));
916 mutex_lock(&dev->device_lock);
918 rets = cl->status;
919 if (cl->state != MEI_FILE_DISCONNECT_REPLY &&
920 cl->state != MEI_FILE_DISCONNECTED) {
921 cl_dbg(dev, cl, "timeout on disconnect from FW client.\n");
922 rets = -ETIME;
925 out:
926 /* we disconnect also on error */
927 mei_cl_set_disconnected(cl);
928 if (!rets)
929 cl_dbg(dev, cl, "successfully disconnected from FW client.\n");
931 mei_io_cb_free(cb);
932 return rets;
936 * mei_cl_disconnect - disconnect host client from the me one
938 * @cl: host client
940 * Locking: called under "dev->device_lock" lock
942 * Return: 0 on success, <0 on failure.
944 int mei_cl_disconnect(struct mei_cl *cl)
946 struct mei_device *dev;
947 int rets;
949 if (WARN_ON(!cl || !cl->dev))
950 return -ENODEV;
952 dev = cl->dev;
954 cl_dbg(dev, cl, "disconnecting");
956 if (!mei_cl_is_connected(cl))
957 return 0;
959 if (mei_cl_is_fixed_address(cl)) {
960 mei_cl_set_disconnected(cl);
961 return 0;
964 if (dev->dev_state == MEI_DEV_POWER_DOWN) {
965 cl_dbg(dev, cl, "Device is powering down, don't bother with disconnection\n");
966 mei_cl_set_disconnected(cl);
967 return 0;
970 rets = pm_runtime_get(dev->dev);
971 if (rets < 0 && rets != -EINPROGRESS) {
972 pm_runtime_put_noidle(dev->dev);
973 cl_err(dev, cl, "rpm: get failed %d\n", rets);
974 return rets;
977 rets = __mei_cl_disconnect(cl);
979 cl_dbg(dev, cl, "rpm: autosuspend\n");
980 pm_runtime_mark_last_busy(dev->dev);
981 pm_runtime_put_autosuspend(dev->dev);
983 return rets;
988 * mei_cl_is_other_connecting - checks if other
989 * client with the same me client id is connecting
991 * @cl: private data of the file object
993 * Return: true if other client is connected, false - otherwise.
995 static bool mei_cl_is_other_connecting(struct mei_cl *cl)
997 struct mei_device *dev;
998 struct mei_cl_cb *cb;
1000 dev = cl->dev;
1002 list_for_each_entry(cb, &dev->ctrl_rd_list, list) {
1003 if (cb->fop_type == MEI_FOP_CONNECT &&
1004 mei_cl_me_id(cl) == mei_cl_me_id(cb->cl))
1005 return true;
1008 return false;
1012 * mei_cl_send_connect - send connect request
1014 * @cl: host client
1015 * @cb: callback block
1017 * Return: 0, OK; otherwise, error.
1019 static int mei_cl_send_connect(struct mei_cl *cl, struct mei_cl_cb *cb)
1021 struct mei_device *dev;
1022 int ret;
1024 dev = cl->dev;
1026 ret = mei_hbm_cl_connect_req(dev, cl);
1027 cl->status = ret;
1028 if (ret) {
1029 cl->state = MEI_FILE_DISCONNECT_REPLY;
1030 return ret;
1033 list_move_tail(&cb->list, &dev->ctrl_rd_list);
1034 cl->timer_count = MEI_CONNECT_TIMEOUT;
1035 mei_schedule_stall_timer(dev);
1036 return 0;
1040 * mei_cl_irq_connect - send connect request in irq_thread context
1042 * @cl: host client
1043 * @cb: callback block
1044 * @cmpl_list: complete list
1046 * Return: 0, OK; otherwise, error.
1048 int mei_cl_irq_connect(struct mei_cl *cl, struct mei_cl_cb *cb,
1049 struct list_head *cmpl_list)
1051 struct mei_device *dev = cl->dev;
1052 u32 msg_slots;
1053 int slots;
1054 int rets;
1056 msg_slots = mei_data2slots(sizeof(struct hbm_client_connect_request));
1057 slots = mei_hbuf_empty_slots(dev);
1059 if (mei_cl_is_other_connecting(cl))
1060 return 0;
1062 if (slots < msg_slots)
1063 return -EMSGSIZE;
1065 rets = mei_cl_send_connect(cl, cb);
1066 if (rets)
1067 list_move_tail(&cb->list, cmpl_list);
1069 return rets;
1073 * mei_cl_connect - connect host client to the me one
1075 * @cl: host client
1076 * @me_cl: me client
1077 * @fp: pointer to file structure
1079 * Locking: called under "dev->device_lock" lock
1081 * Return: 0 on success, <0 on failure.
1083 int mei_cl_connect(struct mei_cl *cl, struct mei_me_client *me_cl,
1084 const struct file *fp)
1086 struct mei_device *dev;
1087 struct mei_cl_cb *cb;
1088 int rets;
1090 if (WARN_ON(!cl || !cl->dev || !me_cl))
1091 return -ENODEV;
1093 dev = cl->dev;
1095 rets = mei_cl_set_connecting(cl, me_cl);
1096 if (rets)
1097 goto nortpm;
1099 if (mei_cl_is_fixed_address(cl)) {
1100 cl->state = MEI_FILE_CONNECTED;
1101 rets = 0;
1102 goto nortpm;
1105 rets = pm_runtime_get(dev->dev);
1106 if (rets < 0 && rets != -EINPROGRESS) {
1107 pm_runtime_put_noidle(dev->dev);
1108 cl_err(dev, cl, "rpm: get failed %d\n", rets);
1109 goto nortpm;
1112 cb = mei_cl_enqueue_ctrl_wr_cb(cl, 0, MEI_FOP_CONNECT, fp);
1113 if (!cb) {
1114 rets = -ENOMEM;
1115 goto out;
1118 /* run hbuf acquire last so we don't have to undo */
1119 if (!mei_cl_is_other_connecting(cl) && mei_hbuf_acquire(dev)) {
1120 rets = mei_cl_send_connect(cl, cb);
1121 if (rets)
1122 goto out;
1125 mutex_unlock(&dev->device_lock);
1126 wait_event_timeout(cl->wait,
1127 (cl->state == MEI_FILE_CONNECTED ||
1128 cl->state == MEI_FILE_DISCONNECTED ||
1129 cl->state == MEI_FILE_DISCONNECT_REQUIRED ||
1130 cl->state == MEI_FILE_DISCONNECT_REPLY),
1131 mei_secs_to_jiffies(MEI_CL_CONNECT_TIMEOUT));
1132 mutex_lock(&dev->device_lock);
1134 if (!mei_cl_is_connected(cl)) {
1135 if (cl->state == MEI_FILE_DISCONNECT_REQUIRED) {
1136 mei_io_list_flush_cl(&dev->ctrl_rd_list, cl);
1137 mei_io_list_flush_cl(&dev->ctrl_wr_list, cl);
1138 /* ignore disconnect return valuue;
1139 * in case of failure reset will be invoked
1141 __mei_cl_disconnect(cl);
1142 rets = -EFAULT;
1143 goto out;
1146 /* timeout or something went really wrong */
1147 if (!cl->status)
1148 cl->status = -EFAULT;
1151 rets = cl->status;
1152 out:
1153 cl_dbg(dev, cl, "rpm: autosuspend\n");
1154 pm_runtime_mark_last_busy(dev->dev);
1155 pm_runtime_put_autosuspend(dev->dev);
1157 mei_io_cb_free(cb);
1159 nortpm:
1160 if (!mei_cl_is_connected(cl))
1161 mei_cl_set_disconnected(cl);
1163 return rets;
1167 * mei_cl_alloc_linked - allocate and link host client
1169 * @dev: the device structure
1171 * Return: cl on success ERR_PTR on failure
1173 struct mei_cl *mei_cl_alloc_linked(struct mei_device *dev)
1175 struct mei_cl *cl;
1176 int ret;
1178 cl = mei_cl_allocate(dev);
1179 if (!cl) {
1180 ret = -ENOMEM;
1181 goto err;
1184 ret = mei_cl_link(cl);
1185 if (ret)
1186 goto err;
1188 return cl;
1189 err:
1190 kfree(cl);
1191 return ERR_PTR(ret);
1195 * mei_cl_tx_flow_ctrl_creds - checks flow_control credits for cl.
1197 * @cl: host client
1199 * Return: 1 if tx_flow_ctrl_creds >0, 0 - otherwise.
1201 static int mei_cl_tx_flow_ctrl_creds(struct mei_cl *cl)
1203 if (WARN_ON(!cl || !cl->me_cl))
1204 return -EINVAL;
1206 if (cl->tx_flow_ctrl_creds > 0)
1207 return 1;
1209 if (mei_cl_is_fixed_address(cl))
1210 return 1;
1212 if (mei_cl_is_single_recv_buf(cl)) {
1213 if (cl->me_cl->tx_flow_ctrl_creds > 0)
1214 return 1;
1216 return 0;
1220 * mei_cl_tx_flow_ctrl_creds_reduce - reduces transmit flow control credits
1221 * for a client
1223 * @cl: host client
1225 * Return:
1226 * 0 on success
1227 * -EINVAL when ctrl credits are <= 0
1229 static int mei_cl_tx_flow_ctrl_creds_reduce(struct mei_cl *cl)
1231 if (WARN_ON(!cl || !cl->me_cl))
1232 return -EINVAL;
1234 if (mei_cl_is_fixed_address(cl))
1235 return 0;
1237 if (mei_cl_is_single_recv_buf(cl)) {
1238 if (WARN_ON(cl->me_cl->tx_flow_ctrl_creds <= 0))
1239 return -EINVAL;
1240 cl->me_cl->tx_flow_ctrl_creds--;
1241 } else {
1242 if (WARN_ON(cl->tx_flow_ctrl_creds <= 0))
1243 return -EINVAL;
1244 cl->tx_flow_ctrl_creds--;
1246 return 0;
1250 * mei_cl_notify_fop2req - convert fop to proper request
1252 * @fop: client notification start response command
1254 * Return: MEI_HBM_NOTIFICATION_START/STOP
1256 u8 mei_cl_notify_fop2req(enum mei_cb_file_ops fop)
1258 if (fop == MEI_FOP_NOTIFY_START)
1259 return MEI_HBM_NOTIFICATION_START;
1260 else
1261 return MEI_HBM_NOTIFICATION_STOP;
1265 * mei_cl_notify_req2fop - convert notification request top file operation type
1267 * @req: hbm notification request type
1269 * Return: MEI_FOP_NOTIFY_START/STOP
1271 enum mei_cb_file_ops mei_cl_notify_req2fop(u8 req)
1273 if (req == MEI_HBM_NOTIFICATION_START)
1274 return MEI_FOP_NOTIFY_START;
1275 else
1276 return MEI_FOP_NOTIFY_STOP;
1280 * mei_cl_irq_notify - send notification request in irq_thread context
1282 * @cl: client
1283 * @cb: callback block.
1284 * @cmpl_list: complete list.
1286 * Return: 0 on such and error otherwise.
1288 int mei_cl_irq_notify(struct mei_cl *cl, struct mei_cl_cb *cb,
1289 struct list_head *cmpl_list)
1291 struct mei_device *dev = cl->dev;
1292 u32 msg_slots;
1293 int slots;
1294 int ret;
1295 bool request;
1297 msg_slots = mei_data2slots(sizeof(struct hbm_client_connect_request));
1298 slots = mei_hbuf_empty_slots(dev);
1300 if (slots < msg_slots)
1301 return -EMSGSIZE;
1303 request = mei_cl_notify_fop2req(cb->fop_type);
1304 ret = mei_hbm_cl_notify_req(dev, cl, request);
1305 if (ret) {
1306 cl->status = ret;
1307 list_move_tail(&cb->list, cmpl_list);
1308 return ret;
1311 list_move_tail(&cb->list, &dev->ctrl_rd_list);
1312 return 0;
1316 * mei_cl_notify_request - send notification stop/start request
1318 * @cl: host client
1319 * @fp: associate request with file
1320 * @request: 1 for start or 0 for stop
1322 * Locking: called under "dev->device_lock" lock
1324 * Return: 0 on such and error otherwise.
1326 int mei_cl_notify_request(struct mei_cl *cl,
1327 const struct file *fp, u8 request)
1329 struct mei_device *dev;
1330 struct mei_cl_cb *cb;
1331 enum mei_cb_file_ops fop_type;
1332 int rets;
1334 if (WARN_ON(!cl || !cl->dev))
1335 return -ENODEV;
1337 dev = cl->dev;
1339 if (!dev->hbm_f_ev_supported) {
1340 cl_dbg(dev, cl, "notifications not supported\n");
1341 return -EOPNOTSUPP;
1344 if (!mei_cl_is_connected(cl))
1345 return -ENODEV;
1347 rets = pm_runtime_get(dev->dev);
1348 if (rets < 0 && rets != -EINPROGRESS) {
1349 pm_runtime_put_noidle(dev->dev);
1350 cl_err(dev, cl, "rpm: get failed %d\n", rets);
1351 return rets;
1354 fop_type = mei_cl_notify_req2fop(request);
1355 cb = mei_cl_enqueue_ctrl_wr_cb(cl, 0, fop_type, fp);
1356 if (!cb) {
1357 rets = -ENOMEM;
1358 goto out;
1361 if (mei_hbuf_acquire(dev)) {
1362 if (mei_hbm_cl_notify_req(dev, cl, request)) {
1363 rets = -ENODEV;
1364 goto out;
1366 list_move_tail(&cb->list, &dev->ctrl_rd_list);
1369 mutex_unlock(&dev->device_lock);
1370 wait_event_timeout(cl->wait,
1371 cl->notify_en == request || !mei_cl_is_connected(cl),
1372 mei_secs_to_jiffies(MEI_CL_CONNECT_TIMEOUT));
1373 mutex_lock(&dev->device_lock);
1375 if (cl->notify_en != request && !cl->status)
1376 cl->status = -EFAULT;
1378 rets = cl->status;
1380 out:
1381 cl_dbg(dev, cl, "rpm: autosuspend\n");
1382 pm_runtime_mark_last_busy(dev->dev);
1383 pm_runtime_put_autosuspend(dev->dev);
1385 mei_io_cb_free(cb);
1386 return rets;
1390 * mei_cl_notify - raise notification
1392 * @cl: host client
1394 * Locking: called under "dev->device_lock" lock
1396 void mei_cl_notify(struct mei_cl *cl)
1398 struct mei_device *dev;
1400 if (!cl || !cl->dev)
1401 return;
1403 dev = cl->dev;
1405 if (!cl->notify_en)
1406 return;
1408 cl_dbg(dev, cl, "notify event");
1409 cl->notify_ev = true;
1410 if (!mei_cl_bus_notify_event(cl))
1411 wake_up_interruptible(&cl->ev_wait);
1413 if (cl->ev_async)
1414 kill_fasync(&cl->ev_async, SIGIO, POLL_PRI);
1419 * mei_cl_notify_get - get or wait for notification event
1421 * @cl: host client
1422 * @block: this request is blocking
1423 * @notify_ev: true if notification event was received
1425 * Locking: called under "dev->device_lock" lock
1427 * Return: 0 on such and error otherwise.
1429 int mei_cl_notify_get(struct mei_cl *cl, bool block, bool *notify_ev)
1431 struct mei_device *dev;
1432 int rets;
1434 *notify_ev = false;
1436 if (WARN_ON(!cl || !cl->dev))
1437 return -ENODEV;
1439 dev = cl->dev;
1441 if (!dev->hbm_f_ev_supported) {
1442 cl_dbg(dev, cl, "notifications not supported\n");
1443 return -EOPNOTSUPP;
1446 if (!mei_cl_is_connected(cl))
1447 return -ENODEV;
1449 if (cl->notify_ev)
1450 goto out;
1452 if (!block)
1453 return -EAGAIN;
1455 mutex_unlock(&dev->device_lock);
1456 rets = wait_event_interruptible(cl->ev_wait, cl->notify_ev);
1457 mutex_lock(&dev->device_lock);
1459 if (rets < 0)
1460 return rets;
1462 out:
1463 *notify_ev = cl->notify_ev;
1464 cl->notify_ev = false;
1465 return 0;
1469 * mei_cl_read_start - the start read client message function.
1471 * @cl: host client
1472 * @length: number of bytes to read
1473 * @fp: pointer to file structure
1475 * Return: 0 on success, <0 on failure.
1477 int mei_cl_read_start(struct mei_cl *cl, size_t length, const struct file *fp)
1479 struct mei_device *dev;
1480 struct mei_cl_cb *cb;
1481 int rets;
1483 if (WARN_ON(!cl || !cl->dev))
1484 return -ENODEV;
1486 dev = cl->dev;
1488 if (!mei_cl_is_connected(cl))
1489 return -ENODEV;
1491 if (!mei_me_cl_is_active(cl->me_cl)) {
1492 cl_err(dev, cl, "no such me client\n");
1493 return -ENOTTY;
1496 if (mei_cl_is_fixed_address(cl))
1497 return 0;
1499 /* HW currently supports only one pending read */
1500 if (cl->rx_flow_ctrl_creds)
1501 return -EBUSY;
1503 cb = mei_cl_enqueue_ctrl_wr_cb(cl, length, MEI_FOP_READ, fp);
1504 if (!cb)
1505 return -ENOMEM;
1507 rets = pm_runtime_get(dev->dev);
1508 if (rets < 0 && rets != -EINPROGRESS) {
1509 pm_runtime_put_noidle(dev->dev);
1510 cl_err(dev, cl, "rpm: get failed %d\n", rets);
1511 goto nortpm;
1514 rets = 0;
1515 if (mei_hbuf_acquire(dev)) {
1516 rets = mei_hbm_cl_flow_control_req(dev, cl);
1517 if (rets < 0)
1518 goto out;
1520 list_move_tail(&cb->list, &cl->rd_pending);
1522 cl->rx_flow_ctrl_creds++;
1524 out:
1525 cl_dbg(dev, cl, "rpm: autosuspend\n");
1526 pm_runtime_mark_last_busy(dev->dev);
1527 pm_runtime_put_autosuspend(dev->dev);
1528 nortpm:
1529 if (rets)
1530 mei_io_cb_free(cb);
1532 return rets;
1536 * mei_cl_irq_write - write a message to device
1537 * from the interrupt thread context
1539 * @cl: client
1540 * @cb: callback block.
1541 * @cmpl_list: complete list.
1543 * Return: 0, OK; otherwise error.
1545 int mei_cl_irq_write(struct mei_cl *cl, struct mei_cl_cb *cb,
1546 struct list_head *cmpl_list)
1548 struct mei_device *dev;
1549 struct mei_msg_data *buf;
1550 struct mei_msg_hdr mei_hdr;
1551 size_t len;
1552 u32 msg_slots;
1553 int slots;
1554 int rets;
1555 bool first_chunk;
1557 if (WARN_ON(!cl || !cl->dev))
1558 return -ENODEV;
1560 dev = cl->dev;
1562 buf = &cb->buf;
1564 first_chunk = cb->buf_idx == 0;
1566 rets = first_chunk ? mei_cl_tx_flow_ctrl_creds(cl) : 1;
1567 if (rets < 0)
1568 goto err;
1570 if (rets == 0) {
1571 cl_dbg(dev, cl, "No flow control credentials: not sending.\n");
1572 return 0;
1575 slots = mei_hbuf_empty_slots(dev);
1576 len = buf->size - cb->buf_idx;
1577 msg_slots = mei_data2slots(len);
1579 mei_hdr.host_addr = mei_cl_host_addr(cl);
1580 mei_hdr.me_addr = mei_cl_me_id(cl);
1581 mei_hdr.reserved = 0;
1582 mei_hdr.internal = cb->internal;
1584 if (slots >= msg_slots) {
1585 mei_hdr.length = len;
1586 mei_hdr.msg_complete = 1;
1587 /* Split the message only if we can write the whole host buffer */
1588 } else if (slots == dev->hbuf_depth) {
1589 msg_slots = slots;
1590 len = (slots * sizeof(u32)) - sizeof(struct mei_msg_hdr);
1591 mei_hdr.length = len;
1592 mei_hdr.msg_complete = 0;
1593 } else {
1594 /* wait for next time the host buffer is empty */
1595 return 0;
1598 cl_dbg(dev, cl, "buf: size = %zu idx = %zu\n",
1599 cb->buf.size, cb->buf_idx);
1601 rets = mei_write_message(dev, &mei_hdr, buf->data + cb->buf_idx);
1602 if (rets)
1603 goto err;
1605 cl->status = 0;
1606 cl->writing_state = MEI_WRITING;
1607 cb->buf_idx += mei_hdr.length;
1608 cb->completed = mei_hdr.msg_complete == 1;
1610 if (first_chunk) {
1611 if (mei_cl_tx_flow_ctrl_creds_reduce(cl)) {
1612 rets = -EIO;
1613 goto err;
1617 if (mei_hdr.msg_complete)
1618 list_move_tail(&cb->list, &dev->write_waiting_list);
1620 return 0;
1622 err:
1623 cl->status = rets;
1624 list_move_tail(&cb->list, cmpl_list);
1625 return rets;
1629 * mei_cl_write - submit a write cb to mei device
1630 * assumes device_lock is locked
1632 * @cl: host client
1633 * @cb: write callback with filled data
1635 * Return: number of bytes sent on success, <0 on failure.
1637 int mei_cl_write(struct mei_cl *cl, struct mei_cl_cb *cb)
1639 struct mei_device *dev;
1640 struct mei_msg_data *buf;
1641 struct mei_msg_hdr mei_hdr;
1642 int size;
1643 int rets;
1644 bool blocking;
1646 if (WARN_ON(!cl || !cl->dev))
1647 return -ENODEV;
1649 if (WARN_ON(!cb))
1650 return -EINVAL;
1652 dev = cl->dev;
1654 buf = &cb->buf;
1655 size = buf->size;
1656 blocking = cb->blocking;
1658 cl_dbg(dev, cl, "size=%d\n", size);
1660 rets = pm_runtime_get(dev->dev);
1661 if (rets < 0 && rets != -EINPROGRESS) {
1662 pm_runtime_put_noidle(dev->dev);
1663 cl_err(dev, cl, "rpm: get failed %d\n", rets);
1664 goto free;
1667 cb->buf_idx = 0;
1668 cl->writing_state = MEI_IDLE;
1670 mei_hdr.host_addr = mei_cl_host_addr(cl);
1671 mei_hdr.me_addr = mei_cl_me_id(cl);
1672 mei_hdr.reserved = 0;
1673 mei_hdr.msg_complete = 0;
1674 mei_hdr.internal = cb->internal;
1676 rets = mei_cl_tx_flow_ctrl_creds(cl);
1677 if (rets < 0)
1678 goto err;
1680 if (rets == 0) {
1681 cl_dbg(dev, cl, "No flow control credentials: not sending.\n");
1682 rets = size;
1683 goto out;
1685 if (!mei_hbuf_acquire(dev)) {
1686 cl_dbg(dev, cl, "Cannot acquire the host buffer: not sending.\n");
1687 rets = size;
1688 goto out;
1691 /* Check for a maximum length */
1692 if (size > mei_hbuf_max_len(dev)) {
1693 mei_hdr.length = mei_hbuf_max_len(dev);
1694 mei_hdr.msg_complete = 0;
1695 } else {
1696 mei_hdr.length = size;
1697 mei_hdr.msg_complete = 1;
1700 rets = mei_write_message(dev, &mei_hdr, buf->data);
1701 if (rets)
1702 goto err;
1704 rets = mei_cl_tx_flow_ctrl_creds_reduce(cl);
1705 if (rets)
1706 goto err;
1708 cl->writing_state = MEI_WRITING;
1709 cb->buf_idx = mei_hdr.length;
1710 cb->completed = mei_hdr.msg_complete == 1;
1712 out:
1713 if (mei_hdr.msg_complete)
1714 mei_tx_cb_enqueue(cb, &dev->write_waiting_list);
1715 else
1716 mei_tx_cb_enqueue(cb, &dev->write_list);
1718 cb = NULL;
1719 if (blocking && cl->writing_state != MEI_WRITE_COMPLETE) {
1721 mutex_unlock(&dev->device_lock);
1722 rets = wait_event_interruptible(cl->tx_wait,
1723 cl->writing_state == MEI_WRITE_COMPLETE ||
1724 (!mei_cl_is_connected(cl)));
1725 mutex_lock(&dev->device_lock);
1726 /* wait_event_interruptible returns -ERESTARTSYS */
1727 if (rets) {
1728 if (signal_pending(current))
1729 rets = -EINTR;
1730 goto err;
1732 if (cl->writing_state != MEI_WRITE_COMPLETE) {
1733 rets = -EFAULT;
1734 goto err;
1738 rets = size;
1739 err:
1740 cl_dbg(dev, cl, "rpm: autosuspend\n");
1741 pm_runtime_mark_last_busy(dev->dev);
1742 pm_runtime_put_autosuspend(dev->dev);
1743 free:
1744 mei_io_cb_free(cb);
1746 return rets;
1751 * mei_cl_complete - processes completed operation for a client
1753 * @cl: private data of the file object.
1754 * @cb: callback block.
1756 void mei_cl_complete(struct mei_cl *cl, struct mei_cl_cb *cb)
1758 struct mei_device *dev = cl->dev;
1760 switch (cb->fop_type) {
1761 case MEI_FOP_WRITE:
1762 mei_tx_cb_dequeue(cb);
1763 cl->writing_state = MEI_WRITE_COMPLETE;
1764 if (waitqueue_active(&cl->tx_wait)) {
1765 wake_up_interruptible(&cl->tx_wait);
1766 } else {
1767 pm_runtime_mark_last_busy(dev->dev);
1768 pm_request_autosuspend(dev->dev);
1770 break;
1772 case MEI_FOP_READ:
1773 list_add_tail(&cb->list, &cl->rd_completed);
1774 if (!mei_cl_is_fixed_address(cl) &&
1775 !WARN_ON(!cl->rx_flow_ctrl_creds))
1776 cl->rx_flow_ctrl_creds--;
1777 if (!mei_cl_bus_rx_event(cl))
1778 wake_up_interruptible(&cl->rx_wait);
1779 break;
1781 case MEI_FOP_CONNECT:
1782 case MEI_FOP_DISCONNECT:
1783 case MEI_FOP_NOTIFY_STOP:
1784 case MEI_FOP_NOTIFY_START:
1785 if (waitqueue_active(&cl->wait))
1786 wake_up(&cl->wait);
1788 break;
1789 case MEI_FOP_DISCONNECT_RSP:
1790 mei_io_cb_free(cb);
1791 mei_cl_set_disconnected(cl);
1792 break;
1793 default:
1794 BUG_ON(0);
1800 * mei_cl_all_disconnect - disconnect forcefully all connected clients
1802 * @dev: mei device
1804 void mei_cl_all_disconnect(struct mei_device *dev)
1806 struct mei_cl *cl;
1808 list_for_each_entry(cl, &dev->file_list, link)
1809 mei_cl_set_disconnected(cl);