sh_eth: fix EESIPR values for SH77{34|63}
[linux/fpc-iii.git] / drivers / misc / mei / client.c
blob391936c1aa041c5bd925d284aa593e65b5ce1065
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.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_io_cb_init - allocate and initialize io callback
355 * @cl: mei client
356 * @type: operation type
357 * @fp: pointer to file structure
359 * Return: mei_cl_cb pointer or NULL;
361 static struct mei_cl_cb *mei_io_cb_init(struct mei_cl *cl,
362 enum mei_cb_file_ops type,
363 const struct file *fp)
365 struct mei_cl_cb *cb;
367 cb = kzalloc(sizeof(struct mei_cl_cb), GFP_KERNEL);
368 if (!cb)
369 return NULL;
371 INIT_LIST_HEAD(&cb->list);
372 cb->fp = fp;
373 cb->cl = cl;
374 cb->buf_idx = 0;
375 cb->fop_type = type;
376 return cb;
380 * __mei_io_list_flush - removes and frees cbs belonging to cl.
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
386 static void __mei_io_list_flush(struct mei_cl_cb *list,
387 struct mei_cl *cl, bool free)
389 struct mei_cl_cb *cb, *next;
391 /* enable removing everything if no cl is specified */
392 list_for_each_entry_safe(cb, next, &list->list, list) {
393 if (!cl || mei_cl_cmp_id(cl, cb->cl)) {
394 list_del_init(&cb->list);
395 if (free)
396 mei_io_cb_free(cb);
402 * mei_io_list_flush - removes list entry belonging to cl.
404 * @list: An instance of our list structure
405 * @cl: host client
407 void mei_io_list_flush(struct mei_cl_cb *list, struct mei_cl *cl)
409 __mei_io_list_flush(list, cl, false);
413 * mei_io_list_free - removes cb belonging to cl and free them
415 * @list: An instance of our list structure
416 * @cl: host client
418 static inline void mei_io_list_free(struct mei_cl_cb *list, struct mei_cl *cl)
420 __mei_io_list_flush(list, cl, true);
424 * mei_cl_alloc_cb - a convenient wrapper for allocating read cb
426 * @cl: host client
427 * @length: size of the buffer
428 * @fop_type: operation type
429 * @fp: associated file pointer (might be NULL)
431 * Return: cb on success and NULL on failure
433 struct mei_cl_cb *mei_cl_alloc_cb(struct mei_cl *cl, size_t length,
434 enum mei_cb_file_ops fop_type,
435 const struct file *fp)
437 struct mei_cl_cb *cb;
439 cb = mei_io_cb_init(cl, fop_type, fp);
440 if (!cb)
441 return NULL;
443 if (length == 0)
444 return cb;
446 cb->buf.data = kmalloc(length, GFP_KERNEL);
447 if (!cb->buf.data) {
448 mei_io_cb_free(cb);
449 return NULL;
451 cb->buf.size = length;
453 return cb;
457 * mei_cl_enqueue_ctrl_wr_cb - a convenient wrapper for allocating
458 * and enqueuing of the control commands cb
460 * @cl: host client
461 * @length: size of the buffer
462 * @fop_type: operation type
463 * @fp: associated file pointer (might be NULL)
465 * Return: cb on success and NULL on failure
466 * Locking: called under "dev->device_lock" lock
468 struct 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)
472 struct mei_cl_cb *cb;
474 /* for RX always allocate at least client's mtu */
475 if (length)
476 length = max_t(size_t, length, mei_cl_mtu(cl));
478 cb = mei_cl_alloc_cb(cl, length, fop_type, fp);
479 if (!cb)
480 return NULL;
482 list_add_tail(&cb->list, &cl->dev->ctrl_wr_list.list);
483 return cb;
487 * mei_cl_read_cb - find this cl's callback in the read list
488 * for a specific file
490 * @cl: host client
491 * @fp: file pointer (matching cb file object), may be NULL
493 * Return: cb on success, NULL if cb is not found
495 struct mei_cl_cb *mei_cl_read_cb(const struct mei_cl *cl, const struct file *fp)
497 struct mei_cl_cb *cb;
499 list_for_each_entry(cb, &cl->rd_completed, list)
500 if (!fp || fp == cb->fp)
501 return cb;
503 return NULL;
507 * mei_cl_read_cb_flush - free client's read pending and completed cbs
508 * for a specific file
510 * @cl: host client
511 * @fp: file pointer (matching cb file object), may be NULL
513 void mei_cl_read_cb_flush(const struct mei_cl *cl, const struct file *fp)
515 struct mei_cl_cb *cb, *next;
517 list_for_each_entry_safe(cb, next, &cl->rd_completed, list)
518 if (!fp || fp == cb->fp)
519 mei_io_cb_free(cb);
522 list_for_each_entry_safe(cb, next, &cl->rd_pending, list)
523 if (!fp || fp == cb->fp)
524 mei_io_cb_free(cb);
528 * mei_cl_flush_queues - flushes queue lists belonging to cl.
530 * @cl: host client
531 * @fp: file pointer (matching cb file object), may be NULL
533 * Return: 0 on success, -EINVAL if cl or cl->dev is NULL.
535 int mei_cl_flush_queues(struct mei_cl *cl, const struct file *fp)
537 struct mei_device *dev;
539 if (WARN_ON(!cl || !cl->dev))
540 return -EINVAL;
542 dev = cl->dev;
544 cl_dbg(dev, cl, "remove list entry belonging to cl\n");
545 mei_io_list_free(&cl->dev->write_list, cl);
546 mei_io_list_free(&cl->dev->write_waiting_list, cl);
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);
551 mei_cl_read_cb_flush(cl, fp);
553 return 0;
558 * mei_cl_init - initializes cl.
560 * @cl: host client to be initialized
561 * @dev: mei device
563 void mei_cl_init(struct mei_cl *cl, struct mei_device *dev)
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);
569 init_waitqueue_head(&cl->ev_wait);
570 INIT_LIST_HEAD(&cl->rd_completed);
571 INIT_LIST_HEAD(&cl->rd_pending);
572 INIT_LIST_HEAD(&cl->link);
573 cl->writing_state = MEI_IDLE;
574 cl->state = MEI_FILE_UNINITIALIZED;
575 cl->dev = dev;
579 * mei_cl_allocate - allocates cl structure and sets it up.
581 * @dev: mei device
582 * Return: The allocated file or NULL on failure
584 struct mei_cl *mei_cl_allocate(struct mei_device *dev)
586 struct mei_cl *cl;
588 cl = kmalloc(sizeof(struct mei_cl), GFP_KERNEL);
589 if (!cl)
590 return NULL;
592 mei_cl_init(cl, dev);
594 return cl;
598 * mei_cl_link - allocate host id in the host map
600 * @cl: host client
602 * Return: 0 on success
603 * -EINVAL on incorrect values
604 * -EMFILE if open count exceeded.
606 int mei_cl_link(struct mei_cl *cl)
608 struct mei_device *dev;
609 long open_handle_count;
610 int id;
612 if (WARN_ON(!cl || !cl->dev))
613 return -EINVAL;
615 dev = cl->dev;
617 id = find_first_zero_bit(dev->host_clients_map, MEI_CLIENTS_MAX);
618 if (id >= MEI_CLIENTS_MAX) {
619 dev_err(dev->dev, "id exceeded %d", MEI_CLIENTS_MAX);
620 return -EMFILE;
623 open_handle_count = dev->open_handle_count + dev->iamthif_open_count;
624 if (open_handle_count >= MEI_MAX_OPEN_HANDLE_COUNT) {
625 dev_err(dev->dev, "open_handle_count exceeded %d",
626 MEI_MAX_OPEN_HANDLE_COUNT);
627 return -EMFILE;
630 dev->open_handle_count++;
632 cl->host_client_id = id;
633 list_add_tail(&cl->link, &dev->file_list);
635 set_bit(id, dev->host_clients_map);
637 cl->state = MEI_FILE_INITIALIZING;
639 cl_dbg(dev, cl, "link cl\n");
640 return 0;
644 * mei_cl_unlink - remove host client from the list
646 * @cl: host client
648 * Return: always 0
650 int mei_cl_unlink(struct mei_cl *cl)
652 struct mei_device *dev;
654 /* don't shout on error exit path */
655 if (!cl)
656 return 0;
658 /* amthif might not be initialized */
659 if (!cl->dev)
660 return 0;
662 dev = cl->dev;
664 cl_dbg(dev, cl, "unlink client");
666 if (dev->open_handle_count > 0)
667 dev->open_handle_count--;
669 /* never clear the 0 bit */
670 if (cl->host_client_id)
671 clear_bit(cl->host_client_id, dev->host_clients_map);
673 list_del_init(&cl->link);
675 cl->state = MEI_FILE_UNINITIALIZED;
676 cl->writing_state = MEI_IDLE;
678 WARN_ON(!list_empty(&cl->rd_completed) ||
679 !list_empty(&cl->rd_pending) ||
680 !list_empty(&cl->link));
682 return 0;
685 void mei_host_client_init(struct mei_device *dev)
687 dev->dev_state = MEI_DEV_ENABLED;
688 dev->reset_count = 0;
690 schedule_work(&dev->bus_rescan_work);
692 pm_runtime_mark_last_busy(dev->dev);
693 dev_dbg(dev->dev, "rpm: autosuspend\n");
694 pm_request_autosuspend(dev->dev);
698 * mei_hbuf_acquire - try to acquire host buffer
700 * @dev: the device structure
701 * Return: true if host buffer was acquired
703 bool mei_hbuf_acquire(struct mei_device *dev)
705 if (mei_pg_state(dev) == MEI_PG_ON ||
706 mei_pg_in_transition(dev)) {
707 dev_dbg(dev->dev, "device is in pg\n");
708 return false;
711 if (!dev->hbuf_is_ready) {
712 dev_dbg(dev->dev, "hbuf is not ready\n");
713 return false;
716 dev->hbuf_is_ready = false;
718 return true;
722 * mei_cl_wake_all - wake up readers, writers and event waiters so
723 * they can be interrupted
725 * @cl: host client
727 static void mei_cl_wake_all(struct mei_cl *cl)
729 struct mei_device *dev = cl->dev;
731 /* synchronized under device mutex */
732 if (waitqueue_active(&cl->rx_wait)) {
733 cl_dbg(dev, cl, "Waking up reading client!\n");
734 wake_up_interruptible(&cl->rx_wait);
736 /* synchronized under device mutex */
737 if (waitqueue_active(&cl->tx_wait)) {
738 cl_dbg(dev, cl, "Waking up writing client!\n");
739 wake_up_interruptible(&cl->tx_wait);
741 /* synchronized under device mutex */
742 if (waitqueue_active(&cl->ev_wait)) {
743 cl_dbg(dev, cl, "Waking up waiting for event clients!\n");
744 wake_up_interruptible(&cl->ev_wait);
746 /* synchronized under device mutex */
747 if (waitqueue_active(&cl->wait)) {
748 cl_dbg(dev, cl, "Waking up ctrl write clients!\n");
749 wake_up(&cl->wait);
754 * mei_cl_set_disconnected - set disconnected state and clear
755 * associated states and resources
757 * @cl: host client
759 void mei_cl_set_disconnected(struct mei_cl *cl)
761 struct mei_device *dev = cl->dev;
763 if (cl->state == MEI_FILE_DISCONNECTED ||
764 cl->state <= MEI_FILE_INITIALIZING)
765 return;
767 cl->state = MEI_FILE_DISCONNECTED;
768 mei_io_list_free(&dev->write_list, cl);
769 mei_io_list_free(&dev->write_waiting_list, cl);
770 mei_io_list_flush(&dev->ctrl_rd_list, cl);
771 mei_io_list_flush(&dev->ctrl_wr_list, cl);
772 mei_cl_wake_all(cl);
773 cl->rx_flow_ctrl_creds = 0;
774 cl->tx_flow_ctrl_creds = 0;
775 cl->timer_count = 0;
777 if (!cl->me_cl)
778 return;
780 if (!WARN_ON(cl->me_cl->connect_count == 0))
781 cl->me_cl->connect_count--;
783 if (cl->me_cl->connect_count == 0)
784 cl->me_cl->tx_flow_ctrl_creds = 0;
786 mei_me_cl_put(cl->me_cl);
787 cl->me_cl = NULL;
790 static int mei_cl_set_connecting(struct mei_cl *cl, struct mei_me_client *me_cl)
792 if (!mei_me_cl_get(me_cl))
793 return -ENOENT;
795 /* only one connection is allowed for fixed address clients */
796 if (me_cl->props.fixed_address) {
797 if (me_cl->connect_count) {
798 mei_me_cl_put(me_cl);
799 return -EBUSY;
803 cl->me_cl = me_cl;
804 cl->state = MEI_FILE_CONNECTING;
805 cl->me_cl->connect_count++;
807 return 0;
811 * mei_cl_send_disconnect - send disconnect request
813 * @cl: host client
814 * @cb: callback block
816 * Return: 0, OK; otherwise, error.
818 static int mei_cl_send_disconnect(struct mei_cl *cl, struct mei_cl_cb *cb)
820 struct mei_device *dev;
821 int ret;
823 dev = cl->dev;
825 ret = mei_hbm_cl_disconnect_req(dev, cl);
826 cl->status = ret;
827 if (ret) {
828 cl->state = MEI_FILE_DISCONNECT_REPLY;
829 return ret;
832 list_move_tail(&cb->list, &dev->ctrl_rd_list.list);
833 cl->timer_count = MEI_CONNECT_TIMEOUT;
834 mei_schedule_stall_timer(dev);
836 return 0;
840 * mei_cl_irq_disconnect - processes close related operation from
841 * interrupt thread context - send disconnect request
843 * @cl: client
844 * @cb: callback block.
845 * @cmpl_list: complete list.
847 * Return: 0, OK; otherwise, error.
849 int mei_cl_irq_disconnect(struct mei_cl *cl, struct mei_cl_cb *cb,
850 struct mei_cl_cb *cmpl_list)
852 struct mei_device *dev = cl->dev;
853 u32 msg_slots;
854 int slots;
855 int ret;
857 msg_slots = mei_data2slots(sizeof(struct hbm_client_connect_request));
858 slots = mei_hbuf_empty_slots(dev);
860 if (slots < msg_slots)
861 return -EMSGSIZE;
863 ret = mei_cl_send_disconnect(cl, cb);
864 if (ret)
865 list_move_tail(&cb->list, &cmpl_list->list);
867 return ret;
871 * __mei_cl_disconnect - disconnect host client from the me one
872 * internal function runtime pm has to be already acquired
874 * @cl: host client
876 * Return: 0 on success, <0 on failure.
878 static int __mei_cl_disconnect(struct mei_cl *cl)
880 struct mei_device *dev;
881 struct mei_cl_cb *cb;
882 int rets;
884 dev = cl->dev;
886 cl->state = MEI_FILE_DISCONNECTING;
888 cb = mei_cl_enqueue_ctrl_wr_cb(cl, 0, MEI_FOP_DISCONNECT, NULL);
889 if (!cb) {
890 rets = -ENOMEM;
891 goto out;
894 if (mei_hbuf_acquire(dev)) {
895 rets = mei_cl_send_disconnect(cl, cb);
896 if (rets) {
897 cl_err(dev, cl, "failed to disconnect.\n");
898 goto out;
902 mutex_unlock(&dev->device_lock);
903 wait_event_timeout(cl->wait,
904 cl->state == MEI_FILE_DISCONNECT_REPLY ||
905 cl->state == MEI_FILE_DISCONNECTED,
906 mei_secs_to_jiffies(MEI_CL_CONNECT_TIMEOUT));
907 mutex_lock(&dev->device_lock);
909 rets = cl->status;
910 if (cl->state != MEI_FILE_DISCONNECT_REPLY &&
911 cl->state != MEI_FILE_DISCONNECTED) {
912 cl_dbg(dev, cl, "timeout on disconnect from FW client.\n");
913 rets = -ETIME;
916 out:
917 /* we disconnect also on error */
918 mei_cl_set_disconnected(cl);
919 if (!rets)
920 cl_dbg(dev, cl, "successfully disconnected from FW client.\n");
922 mei_io_cb_free(cb);
923 return rets;
927 * mei_cl_disconnect - disconnect host client from the me one
929 * @cl: host client
931 * Locking: called under "dev->device_lock" lock
933 * Return: 0 on success, <0 on failure.
935 int mei_cl_disconnect(struct mei_cl *cl)
937 struct mei_device *dev;
938 int rets;
940 if (WARN_ON(!cl || !cl->dev))
941 return -ENODEV;
943 dev = cl->dev;
945 cl_dbg(dev, cl, "disconnecting");
947 if (!mei_cl_is_connected(cl))
948 return 0;
950 if (mei_cl_is_fixed_address(cl)) {
951 mei_cl_set_disconnected(cl);
952 return 0;
955 rets = pm_runtime_get(dev->dev);
956 if (rets < 0 && rets != -EINPROGRESS) {
957 pm_runtime_put_noidle(dev->dev);
958 cl_err(dev, cl, "rpm: get failed %d\n", rets);
959 return rets;
962 rets = __mei_cl_disconnect(cl);
964 cl_dbg(dev, cl, "rpm: autosuspend\n");
965 pm_runtime_mark_last_busy(dev->dev);
966 pm_runtime_put_autosuspend(dev->dev);
968 return rets;
973 * mei_cl_is_other_connecting - checks if other
974 * client with the same me client id is connecting
976 * @cl: private data of the file object
978 * Return: true if other client is connected, false - otherwise.
980 static bool mei_cl_is_other_connecting(struct mei_cl *cl)
982 struct mei_device *dev;
983 struct mei_cl_cb *cb;
985 dev = cl->dev;
987 list_for_each_entry(cb, &dev->ctrl_rd_list.list, list) {
988 if (cb->fop_type == MEI_FOP_CONNECT &&
989 mei_cl_me_id(cl) == mei_cl_me_id(cb->cl))
990 return true;
993 return false;
997 * mei_cl_send_connect - send connect request
999 * @cl: host client
1000 * @cb: callback block
1002 * Return: 0, OK; otherwise, error.
1004 static int mei_cl_send_connect(struct mei_cl *cl, struct mei_cl_cb *cb)
1006 struct mei_device *dev;
1007 int ret;
1009 dev = cl->dev;
1011 ret = mei_hbm_cl_connect_req(dev, cl);
1012 cl->status = ret;
1013 if (ret) {
1014 cl->state = MEI_FILE_DISCONNECT_REPLY;
1015 return ret;
1018 list_move_tail(&cb->list, &dev->ctrl_rd_list.list);
1019 cl->timer_count = MEI_CONNECT_TIMEOUT;
1020 mei_schedule_stall_timer(dev);
1021 return 0;
1025 * mei_cl_irq_connect - send connect request in irq_thread context
1027 * @cl: host client
1028 * @cb: callback block
1029 * @cmpl_list: complete list
1031 * Return: 0, OK; otherwise, error.
1033 int mei_cl_irq_connect(struct mei_cl *cl, struct mei_cl_cb *cb,
1034 struct mei_cl_cb *cmpl_list)
1036 struct mei_device *dev = cl->dev;
1037 u32 msg_slots;
1038 int slots;
1039 int rets;
1041 msg_slots = mei_data2slots(sizeof(struct hbm_client_connect_request));
1042 slots = mei_hbuf_empty_slots(dev);
1044 if (mei_cl_is_other_connecting(cl))
1045 return 0;
1047 if (slots < msg_slots)
1048 return -EMSGSIZE;
1050 rets = mei_cl_send_connect(cl, cb);
1051 if (rets)
1052 list_move_tail(&cb->list, &cmpl_list->list);
1054 return rets;
1058 * mei_cl_connect - connect host client to the me one
1060 * @cl: host client
1061 * @me_cl: me client
1062 * @fp: pointer to file structure
1064 * Locking: called under "dev->device_lock" lock
1066 * Return: 0 on success, <0 on failure.
1068 int mei_cl_connect(struct mei_cl *cl, struct mei_me_client *me_cl,
1069 const struct file *fp)
1071 struct mei_device *dev;
1072 struct mei_cl_cb *cb;
1073 int rets;
1075 if (WARN_ON(!cl || !cl->dev || !me_cl))
1076 return -ENODEV;
1078 dev = cl->dev;
1080 rets = mei_cl_set_connecting(cl, me_cl);
1081 if (rets)
1082 return rets;
1084 if (mei_cl_is_fixed_address(cl)) {
1085 cl->state = MEI_FILE_CONNECTED;
1086 return 0;
1089 rets = pm_runtime_get(dev->dev);
1090 if (rets < 0 && rets != -EINPROGRESS) {
1091 pm_runtime_put_noidle(dev->dev);
1092 cl_err(dev, cl, "rpm: get failed %d\n", rets);
1093 goto nortpm;
1096 cb = mei_cl_enqueue_ctrl_wr_cb(cl, 0, MEI_FOP_CONNECT, fp);
1097 if (!cb) {
1098 rets = -ENOMEM;
1099 goto out;
1102 /* run hbuf acquire last so we don't have to undo */
1103 if (!mei_cl_is_other_connecting(cl) && mei_hbuf_acquire(dev)) {
1104 rets = mei_cl_send_connect(cl, cb);
1105 if (rets)
1106 goto out;
1109 mutex_unlock(&dev->device_lock);
1110 wait_event_timeout(cl->wait,
1111 (cl->state == MEI_FILE_CONNECTED ||
1112 cl->state == MEI_FILE_DISCONNECTED ||
1113 cl->state == MEI_FILE_DISCONNECT_REQUIRED ||
1114 cl->state == MEI_FILE_DISCONNECT_REPLY),
1115 mei_secs_to_jiffies(MEI_CL_CONNECT_TIMEOUT));
1116 mutex_lock(&dev->device_lock);
1118 if (!mei_cl_is_connected(cl)) {
1119 if (cl->state == MEI_FILE_DISCONNECT_REQUIRED) {
1120 mei_io_list_flush(&dev->ctrl_rd_list, cl);
1121 mei_io_list_flush(&dev->ctrl_wr_list, cl);
1122 /* ignore disconnect return valuue;
1123 * in case of failure reset will be invoked
1125 __mei_cl_disconnect(cl);
1126 rets = -EFAULT;
1127 goto out;
1130 /* timeout or something went really wrong */
1131 if (!cl->status)
1132 cl->status = -EFAULT;
1135 rets = cl->status;
1136 out:
1137 cl_dbg(dev, cl, "rpm: autosuspend\n");
1138 pm_runtime_mark_last_busy(dev->dev);
1139 pm_runtime_put_autosuspend(dev->dev);
1141 mei_io_cb_free(cb);
1143 nortpm:
1144 if (!mei_cl_is_connected(cl))
1145 mei_cl_set_disconnected(cl);
1147 return rets;
1151 * mei_cl_alloc_linked - allocate and link host client
1153 * @dev: the device structure
1155 * Return: cl on success ERR_PTR on failure
1157 struct mei_cl *mei_cl_alloc_linked(struct mei_device *dev)
1159 struct mei_cl *cl;
1160 int ret;
1162 cl = mei_cl_allocate(dev);
1163 if (!cl) {
1164 ret = -ENOMEM;
1165 goto err;
1168 ret = mei_cl_link(cl);
1169 if (ret)
1170 goto err;
1172 return cl;
1173 err:
1174 kfree(cl);
1175 return ERR_PTR(ret);
1179 * mei_cl_tx_flow_ctrl_creds - checks flow_control credits for cl.
1181 * @cl: host client
1183 * Return: 1 if tx_flow_ctrl_creds >0, 0 - otherwise.
1185 static int mei_cl_tx_flow_ctrl_creds(struct mei_cl *cl)
1187 if (WARN_ON(!cl || !cl->me_cl))
1188 return -EINVAL;
1190 if (cl->tx_flow_ctrl_creds > 0)
1191 return 1;
1193 if (mei_cl_is_fixed_address(cl))
1194 return 1;
1196 if (mei_cl_is_single_recv_buf(cl)) {
1197 if (cl->me_cl->tx_flow_ctrl_creds > 0)
1198 return 1;
1200 return 0;
1204 * mei_cl_tx_flow_ctrl_creds_reduce - reduces transmit flow control credits
1205 * for a client
1207 * @cl: host client
1209 * Return:
1210 * 0 on success
1211 * -EINVAL when ctrl credits are <= 0
1213 static int mei_cl_tx_flow_ctrl_creds_reduce(struct mei_cl *cl)
1215 if (WARN_ON(!cl || !cl->me_cl))
1216 return -EINVAL;
1218 if (mei_cl_is_fixed_address(cl))
1219 return 0;
1221 if (mei_cl_is_single_recv_buf(cl)) {
1222 if (WARN_ON(cl->me_cl->tx_flow_ctrl_creds <= 0))
1223 return -EINVAL;
1224 cl->me_cl->tx_flow_ctrl_creds--;
1225 } else {
1226 if (WARN_ON(cl->tx_flow_ctrl_creds <= 0))
1227 return -EINVAL;
1228 cl->tx_flow_ctrl_creds--;
1230 return 0;
1234 * mei_cl_notify_fop2req - convert fop to proper request
1236 * @fop: client notification start response command
1238 * Return: MEI_HBM_NOTIFICATION_START/STOP
1240 u8 mei_cl_notify_fop2req(enum mei_cb_file_ops fop)
1242 if (fop == MEI_FOP_NOTIFY_START)
1243 return MEI_HBM_NOTIFICATION_START;
1244 else
1245 return MEI_HBM_NOTIFICATION_STOP;
1249 * mei_cl_notify_req2fop - convert notification request top file operation type
1251 * @req: hbm notification request type
1253 * Return: MEI_FOP_NOTIFY_START/STOP
1255 enum mei_cb_file_ops mei_cl_notify_req2fop(u8 req)
1257 if (req == MEI_HBM_NOTIFICATION_START)
1258 return MEI_FOP_NOTIFY_START;
1259 else
1260 return MEI_FOP_NOTIFY_STOP;
1264 * mei_cl_irq_notify - send notification request in irq_thread context
1266 * @cl: client
1267 * @cb: callback block.
1268 * @cmpl_list: complete list.
1270 * Return: 0 on such and error otherwise.
1272 int mei_cl_irq_notify(struct mei_cl *cl, struct mei_cl_cb *cb,
1273 struct mei_cl_cb *cmpl_list)
1275 struct mei_device *dev = cl->dev;
1276 u32 msg_slots;
1277 int slots;
1278 int ret;
1279 bool request;
1281 msg_slots = mei_data2slots(sizeof(struct hbm_client_connect_request));
1282 slots = mei_hbuf_empty_slots(dev);
1284 if (slots < msg_slots)
1285 return -EMSGSIZE;
1287 request = mei_cl_notify_fop2req(cb->fop_type);
1288 ret = mei_hbm_cl_notify_req(dev, cl, request);
1289 if (ret) {
1290 cl->status = ret;
1291 list_move_tail(&cb->list, &cmpl_list->list);
1292 return ret;
1295 list_move_tail(&cb->list, &dev->ctrl_rd_list.list);
1296 return 0;
1300 * mei_cl_notify_request - send notification stop/start request
1302 * @cl: host client
1303 * @fp: associate request with file
1304 * @request: 1 for start or 0 for stop
1306 * Locking: called under "dev->device_lock" lock
1308 * Return: 0 on such and error otherwise.
1310 int mei_cl_notify_request(struct mei_cl *cl,
1311 const struct file *fp, u8 request)
1313 struct mei_device *dev;
1314 struct mei_cl_cb *cb;
1315 enum mei_cb_file_ops fop_type;
1316 int rets;
1318 if (WARN_ON(!cl || !cl->dev))
1319 return -ENODEV;
1321 dev = cl->dev;
1323 if (!dev->hbm_f_ev_supported) {
1324 cl_dbg(dev, cl, "notifications not supported\n");
1325 return -EOPNOTSUPP;
1328 rets = pm_runtime_get(dev->dev);
1329 if (rets < 0 && rets != -EINPROGRESS) {
1330 pm_runtime_put_noidle(dev->dev);
1331 cl_err(dev, cl, "rpm: get failed %d\n", rets);
1332 return rets;
1335 fop_type = mei_cl_notify_req2fop(request);
1336 cb = mei_cl_enqueue_ctrl_wr_cb(cl, 0, fop_type, fp);
1337 if (!cb) {
1338 rets = -ENOMEM;
1339 goto out;
1342 if (mei_hbuf_acquire(dev)) {
1343 if (mei_hbm_cl_notify_req(dev, cl, request)) {
1344 rets = -ENODEV;
1345 goto out;
1347 list_move_tail(&cb->list, &dev->ctrl_rd_list.list);
1350 mutex_unlock(&dev->device_lock);
1351 wait_event_timeout(cl->wait,
1352 cl->notify_en == request || !mei_cl_is_connected(cl),
1353 mei_secs_to_jiffies(MEI_CL_CONNECT_TIMEOUT));
1354 mutex_lock(&dev->device_lock);
1356 if (cl->notify_en != request && !cl->status)
1357 cl->status = -EFAULT;
1359 rets = cl->status;
1361 out:
1362 cl_dbg(dev, cl, "rpm: autosuspend\n");
1363 pm_runtime_mark_last_busy(dev->dev);
1364 pm_runtime_put_autosuspend(dev->dev);
1366 mei_io_cb_free(cb);
1367 return rets;
1371 * mei_cl_notify - raise notification
1373 * @cl: host client
1375 * Locking: called under "dev->device_lock" lock
1377 void mei_cl_notify(struct mei_cl *cl)
1379 struct mei_device *dev;
1381 if (!cl || !cl->dev)
1382 return;
1384 dev = cl->dev;
1386 if (!cl->notify_en)
1387 return;
1389 cl_dbg(dev, cl, "notify event");
1390 cl->notify_ev = true;
1391 if (!mei_cl_bus_notify_event(cl))
1392 wake_up_interruptible(&cl->ev_wait);
1394 if (cl->ev_async)
1395 kill_fasync(&cl->ev_async, SIGIO, POLL_PRI);
1400 * mei_cl_notify_get - get or wait for notification event
1402 * @cl: host client
1403 * @block: this request is blocking
1404 * @notify_ev: true if notification event was received
1406 * Locking: called under "dev->device_lock" lock
1408 * Return: 0 on such and error otherwise.
1410 int mei_cl_notify_get(struct mei_cl *cl, bool block, bool *notify_ev)
1412 struct mei_device *dev;
1413 int rets;
1415 *notify_ev = false;
1417 if (WARN_ON(!cl || !cl->dev))
1418 return -ENODEV;
1420 dev = cl->dev;
1422 if (!mei_cl_is_connected(cl))
1423 return -ENODEV;
1425 if (cl->notify_ev)
1426 goto out;
1428 if (!block)
1429 return -EAGAIN;
1431 mutex_unlock(&dev->device_lock);
1432 rets = wait_event_interruptible(cl->ev_wait, cl->notify_ev);
1433 mutex_lock(&dev->device_lock);
1435 if (rets < 0)
1436 return rets;
1438 out:
1439 *notify_ev = cl->notify_ev;
1440 cl->notify_ev = false;
1441 return 0;
1445 * mei_cl_read_start - the start read client message function.
1447 * @cl: host client
1448 * @length: number of bytes to read
1449 * @fp: pointer to file structure
1451 * Return: 0 on success, <0 on failure.
1453 int mei_cl_read_start(struct mei_cl *cl, size_t length, const struct file *fp)
1455 struct mei_device *dev;
1456 struct mei_cl_cb *cb;
1457 int rets;
1459 if (WARN_ON(!cl || !cl->dev))
1460 return -ENODEV;
1462 dev = cl->dev;
1464 if (!mei_cl_is_connected(cl))
1465 return -ENODEV;
1467 if (!mei_me_cl_is_active(cl->me_cl)) {
1468 cl_err(dev, cl, "no such me client\n");
1469 return -ENOTTY;
1472 if (mei_cl_is_fixed_address(cl) || cl == &dev->iamthif_cl)
1473 return 0;
1475 /* HW currently supports only one pending read */
1476 if (cl->rx_flow_ctrl_creds)
1477 return -EBUSY;
1479 cb = mei_cl_enqueue_ctrl_wr_cb(cl, length, MEI_FOP_READ, fp);
1480 if (!cb)
1481 return -ENOMEM;
1483 rets = pm_runtime_get(dev->dev);
1484 if (rets < 0 && rets != -EINPROGRESS) {
1485 pm_runtime_put_noidle(dev->dev);
1486 cl_err(dev, cl, "rpm: get failed %d\n", rets);
1487 goto nortpm;
1490 rets = 0;
1491 if (mei_hbuf_acquire(dev)) {
1492 rets = mei_hbm_cl_flow_control_req(dev, cl);
1493 if (rets < 0)
1494 goto out;
1496 list_move_tail(&cb->list, &cl->rd_pending);
1498 cl->rx_flow_ctrl_creds++;
1500 out:
1501 cl_dbg(dev, cl, "rpm: autosuspend\n");
1502 pm_runtime_mark_last_busy(dev->dev);
1503 pm_runtime_put_autosuspend(dev->dev);
1504 nortpm:
1505 if (rets)
1506 mei_io_cb_free(cb);
1508 return rets;
1512 * mei_cl_irq_write - write a message to device
1513 * from the interrupt thread context
1515 * @cl: client
1516 * @cb: callback block.
1517 * @cmpl_list: complete list.
1519 * Return: 0, OK; otherwise error.
1521 int mei_cl_irq_write(struct mei_cl *cl, struct mei_cl_cb *cb,
1522 struct mei_cl_cb *cmpl_list)
1524 struct mei_device *dev;
1525 struct mei_msg_data *buf;
1526 struct mei_msg_hdr mei_hdr;
1527 size_t len;
1528 u32 msg_slots;
1529 int slots;
1530 int rets;
1531 bool first_chunk;
1533 if (WARN_ON(!cl || !cl->dev))
1534 return -ENODEV;
1536 dev = cl->dev;
1538 buf = &cb->buf;
1540 first_chunk = cb->buf_idx == 0;
1542 rets = first_chunk ? mei_cl_tx_flow_ctrl_creds(cl) : 1;
1543 if (rets < 0)
1544 return rets;
1546 if (rets == 0) {
1547 cl_dbg(dev, cl, "No flow control credentials: not sending.\n");
1548 return 0;
1551 slots = mei_hbuf_empty_slots(dev);
1552 len = buf->size - cb->buf_idx;
1553 msg_slots = mei_data2slots(len);
1555 mei_hdr.host_addr = mei_cl_host_addr(cl);
1556 mei_hdr.me_addr = mei_cl_me_id(cl);
1557 mei_hdr.reserved = 0;
1558 mei_hdr.internal = cb->internal;
1560 if (slots >= msg_slots) {
1561 mei_hdr.length = len;
1562 mei_hdr.msg_complete = 1;
1563 /* Split the message only if we can write the whole host buffer */
1564 } else if (slots == dev->hbuf_depth) {
1565 msg_slots = slots;
1566 len = (slots * sizeof(u32)) - sizeof(struct mei_msg_hdr);
1567 mei_hdr.length = len;
1568 mei_hdr.msg_complete = 0;
1569 } else {
1570 /* wait for next time the host buffer is empty */
1571 return 0;
1574 cl_dbg(dev, cl, "buf: size = %zu idx = %zu\n",
1575 cb->buf.size, cb->buf_idx);
1577 rets = mei_write_message(dev, &mei_hdr, buf->data + cb->buf_idx);
1578 if (rets) {
1579 cl->status = rets;
1580 list_move_tail(&cb->list, &cmpl_list->list);
1581 return rets;
1584 cl->status = 0;
1585 cl->writing_state = MEI_WRITING;
1586 cb->buf_idx += mei_hdr.length;
1587 cb->completed = mei_hdr.msg_complete == 1;
1589 if (first_chunk) {
1590 if (mei_cl_tx_flow_ctrl_creds_reduce(cl))
1591 return -EIO;
1594 if (mei_hdr.msg_complete)
1595 list_move_tail(&cb->list, &dev->write_waiting_list.list);
1597 return 0;
1601 * mei_cl_write - submit a write cb to mei device
1602 * assumes device_lock is locked
1604 * @cl: host client
1605 * @cb: write callback with filled data
1607 * Return: number of bytes sent on success, <0 on failure.
1609 int mei_cl_write(struct mei_cl *cl, struct mei_cl_cb *cb)
1611 struct mei_device *dev;
1612 struct mei_msg_data *buf;
1613 struct mei_msg_hdr mei_hdr;
1614 int size;
1615 int rets;
1616 bool blocking;
1618 if (WARN_ON(!cl || !cl->dev))
1619 return -ENODEV;
1621 if (WARN_ON(!cb))
1622 return -EINVAL;
1624 dev = cl->dev;
1626 buf = &cb->buf;
1627 size = buf->size;
1628 blocking = cb->blocking;
1630 cl_dbg(dev, cl, "size=%d\n", size);
1632 rets = pm_runtime_get(dev->dev);
1633 if (rets < 0 && rets != -EINPROGRESS) {
1634 pm_runtime_put_noidle(dev->dev);
1635 cl_err(dev, cl, "rpm: get failed %d\n", rets);
1636 goto free;
1639 cb->buf_idx = 0;
1640 cl->writing_state = MEI_IDLE;
1642 mei_hdr.host_addr = mei_cl_host_addr(cl);
1643 mei_hdr.me_addr = mei_cl_me_id(cl);
1644 mei_hdr.reserved = 0;
1645 mei_hdr.msg_complete = 0;
1646 mei_hdr.internal = cb->internal;
1648 rets = mei_cl_tx_flow_ctrl_creds(cl);
1649 if (rets < 0)
1650 goto err;
1652 if (rets == 0) {
1653 cl_dbg(dev, cl, "No flow control credentials: not sending.\n");
1654 rets = size;
1655 goto out;
1657 if (!mei_hbuf_acquire(dev)) {
1658 cl_dbg(dev, cl, "Cannot acquire the host buffer: not sending.\n");
1659 rets = size;
1660 goto out;
1663 /* Check for a maximum length */
1664 if (size > mei_hbuf_max_len(dev)) {
1665 mei_hdr.length = mei_hbuf_max_len(dev);
1666 mei_hdr.msg_complete = 0;
1667 } else {
1668 mei_hdr.length = size;
1669 mei_hdr.msg_complete = 1;
1672 rets = mei_write_message(dev, &mei_hdr, buf->data);
1673 if (rets)
1674 goto err;
1676 rets = mei_cl_tx_flow_ctrl_creds_reduce(cl);
1677 if (rets)
1678 goto err;
1680 cl->writing_state = MEI_WRITING;
1681 cb->buf_idx = mei_hdr.length;
1682 cb->completed = mei_hdr.msg_complete == 1;
1684 out:
1685 if (mei_hdr.msg_complete)
1686 list_add_tail(&cb->list, &dev->write_waiting_list.list);
1687 else
1688 list_add_tail(&cb->list, &dev->write_list.list);
1690 cb = NULL;
1691 if (blocking && cl->writing_state != MEI_WRITE_COMPLETE) {
1693 mutex_unlock(&dev->device_lock);
1694 rets = wait_event_interruptible(cl->tx_wait,
1695 cl->writing_state == MEI_WRITE_COMPLETE ||
1696 (!mei_cl_is_connected(cl)));
1697 mutex_lock(&dev->device_lock);
1698 /* wait_event_interruptible returns -ERESTARTSYS */
1699 if (rets) {
1700 if (signal_pending(current))
1701 rets = -EINTR;
1702 goto err;
1704 if (cl->writing_state != MEI_WRITE_COMPLETE) {
1705 rets = -EFAULT;
1706 goto err;
1710 rets = size;
1711 err:
1712 cl_dbg(dev, cl, "rpm: autosuspend\n");
1713 pm_runtime_mark_last_busy(dev->dev);
1714 pm_runtime_put_autosuspend(dev->dev);
1715 free:
1716 mei_io_cb_free(cb);
1718 return rets;
1723 * mei_cl_complete - processes completed operation for a client
1725 * @cl: private data of the file object.
1726 * @cb: callback block.
1728 void mei_cl_complete(struct mei_cl *cl, struct mei_cl_cb *cb)
1730 struct mei_device *dev = cl->dev;
1732 switch (cb->fop_type) {
1733 case MEI_FOP_WRITE:
1734 mei_io_cb_free(cb);
1735 cl->writing_state = MEI_WRITE_COMPLETE;
1736 if (waitqueue_active(&cl->tx_wait)) {
1737 wake_up_interruptible(&cl->tx_wait);
1738 } else {
1739 pm_runtime_mark_last_busy(dev->dev);
1740 pm_request_autosuspend(dev->dev);
1742 break;
1744 case MEI_FOP_READ:
1745 list_add_tail(&cb->list, &cl->rd_completed);
1746 if (!mei_cl_is_fixed_address(cl) &&
1747 !WARN_ON(!cl->rx_flow_ctrl_creds))
1748 cl->rx_flow_ctrl_creds--;
1749 if (!mei_cl_bus_rx_event(cl))
1750 wake_up_interruptible(&cl->rx_wait);
1751 break;
1753 case MEI_FOP_CONNECT:
1754 case MEI_FOP_DISCONNECT:
1755 case MEI_FOP_NOTIFY_STOP:
1756 case MEI_FOP_NOTIFY_START:
1757 if (waitqueue_active(&cl->wait))
1758 wake_up(&cl->wait);
1760 break;
1761 case MEI_FOP_DISCONNECT_RSP:
1762 mei_io_cb_free(cb);
1763 mei_cl_set_disconnected(cl);
1764 break;
1765 default:
1766 BUG_ON(0);
1772 * mei_cl_all_disconnect - disconnect forcefully all connected clients
1774 * @dev: mei device
1776 void mei_cl_all_disconnect(struct mei_device *dev)
1778 struct mei_cl *cl;
1780 list_for_each_entry(cl, &dev->file_list, link)
1781 mei_cl_set_disconnected(cl);