Merge 3.12-rc3 into char-misc-next
[sfrench/cifs-2.6.git] / drivers / misc / mei / amthif.c
1 /*
2  *
3  * Intel Management Engine Interface (Intel MEI) Linux driver
4  * Copyright (c) 2003-2012, Intel Corporation.
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
17 #include <linux/kernel.h>
18 #include <linux/fs.h>
19 #include <linux/errno.h>
20 #include <linux/types.h>
21 #include <linux/fcntl.h>
22 #include <linux/aio.h>
23 #include <linux/pci.h>
24 #include <linux/init.h>
25 #include <linux/ioctl.h>
26 #include <linux/cdev.h>
27 #include <linux/list.h>
28 #include <linux/delay.h>
29 #include <linux/sched.h>
30 #include <linux/uuid.h>
31 #include <linux/jiffies.h>
32 #include <linux/uaccess.h>
33
34 #include <linux/mei.h>
35
36 #include "mei_dev.h"
37 #include "hbm.h"
38 #include "hw-me.h"
39 #include "client.h"
40
41 const uuid_le mei_amthif_guid  = UUID_LE(0x12f80028, 0xb4b7, 0x4b2d,
42                                          0xac, 0xa8, 0x46, 0xe0,
43                                          0xff, 0x65, 0x81, 0x4c);
44
45 /**
46  * mei_amthif_reset_params - initializes mei device iamthif
47  *
48  * @dev: the device structure
49  */
50 void mei_amthif_reset_params(struct mei_device *dev)
51 {
52         /* reset iamthif parameters. */
53         dev->iamthif_current_cb = NULL;
54         dev->iamthif_msg_buf_size = 0;
55         dev->iamthif_msg_buf_index = 0;
56         dev->iamthif_canceled = false;
57         dev->iamthif_ioctl = false;
58         dev->iamthif_state = MEI_IAMTHIF_IDLE;
59         dev->iamthif_timer = 0;
60         dev->iamthif_stall_timer = 0;
61 }
62
63 /**
64  * mei_amthif_host_init - mei initialization amthif client.
65  *
66  * @dev: the device structure
67  *
68  */
69 int mei_amthif_host_init(struct mei_device *dev)
70 {
71         struct mei_cl *cl = &dev->iamthif_cl;
72         unsigned char *msg_buf;
73         int ret, i;
74
75         dev->iamthif_state = MEI_IAMTHIF_IDLE;
76
77         mei_cl_init(cl, dev);
78
79         i = mei_me_cl_by_uuid(dev, &mei_amthif_guid);
80         if (i < 0) {
81                 dev_info(&dev->pdev->dev, "amthif: failed to find the client\n");
82                 return -ENOENT;
83         }
84
85         cl->me_client_id = dev->me_clients[i].client_id;
86
87         /* Assign iamthif_mtu to the value received from ME  */
88
89         dev->iamthif_mtu = dev->me_clients[i].props.max_msg_length;
90         dev_dbg(&dev->pdev->dev, "IAMTHIF_MTU = %d\n",
91                         dev->me_clients[i].props.max_msg_length);
92
93         kfree(dev->iamthif_msg_buf);
94         dev->iamthif_msg_buf = NULL;
95
96         /* allocate storage for ME message buffer */
97         msg_buf = kcalloc(dev->iamthif_mtu,
98                         sizeof(unsigned char), GFP_KERNEL);
99         if (!msg_buf) {
100                 dev_err(&dev->pdev->dev, "amthif: memory allocation for ME message buffer failed.\n");
101                 return -ENOMEM;
102         }
103
104         dev->iamthif_msg_buf = msg_buf;
105
106         ret = mei_cl_link(cl, MEI_IAMTHIF_HOST_CLIENT_ID);
107
108         if (ret < 0) {
109                 dev_err(&dev->pdev->dev, "amthif: failed link client\n");
110                 return -ENOENT;
111         }
112
113         cl->state = MEI_FILE_CONNECTING;
114
115         if (mei_hbm_cl_connect_req(dev, cl)) {
116                 dev_dbg(&dev->pdev->dev, "amthif: Failed to connect to ME client\n");
117                 cl->state = MEI_FILE_DISCONNECTED;
118                 cl->host_client_id = 0;
119         } else {
120                 cl->timer_count = MEI_CONNECT_TIMEOUT;
121         }
122         return 0;
123 }
124
125 /**
126  * mei_amthif_find_read_list_entry - finds a amthilist entry for current file
127  *
128  * @dev: the device structure
129  * @file: pointer to file object
130  *
131  * returns   returned a list entry on success, NULL on failure.
132  */
133 struct mei_cl_cb *mei_amthif_find_read_list_entry(struct mei_device *dev,
134                                                 struct file *file)
135 {
136         struct mei_cl_cb *pos = NULL;
137         struct mei_cl_cb *next = NULL;
138
139         list_for_each_entry_safe(pos, next,
140                                 &dev->amthif_rd_complete_list.list, list) {
141                 if (pos->cl && pos->cl == &dev->iamthif_cl &&
142                         pos->file_object == file)
143                         return pos;
144         }
145         return NULL;
146 }
147
148
149 /**
150  * mei_amthif_read - read data from AMTHIF client
151  *
152  * @dev: the device structure
153  * @if_num:  minor number
154  * @file: pointer to file object
155  * @*ubuf: pointer to user data in user space
156  * @length: data length to read
157  * @offset: data read offset
158  *
159  * Locking: called under "dev->device_lock" lock
160  *
161  * returns
162  *  returned data length on success,
163  *  zero if no data to read,
164  *  negative on failure.
165  */
166 int mei_amthif_read(struct mei_device *dev, struct file *file,
167                char __user *ubuf, size_t length, loff_t *offset)
168 {
169         int rets;
170         int wait_ret;
171         struct mei_cl_cb *cb = NULL;
172         struct mei_cl *cl = file->private_data;
173         unsigned long timeout;
174         int i;
175
176         /* Only Posible if we are in timeout */
177         if (!cl || cl != &dev->iamthif_cl) {
178                 dev_dbg(&dev->pdev->dev, "bad file ext.\n");
179                 return -ETIMEDOUT;
180         }
181
182         i = mei_me_cl_by_id(dev, dev->iamthif_cl.me_client_id);
183
184         if (i < 0) {
185                 dev_dbg(&dev->pdev->dev, "amthif client not found.\n");
186                 return -ENODEV;
187         }
188         dev_dbg(&dev->pdev->dev, "checking amthif data\n");
189         cb = mei_amthif_find_read_list_entry(dev, file);
190
191         /* Check for if we can block or not*/
192         if (cb == NULL && file->f_flags & O_NONBLOCK)
193                 return -EAGAIN;
194
195
196         dev_dbg(&dev->pdev->dev, "waiting for amthif data\n");
197         while (cb == NULL) {
198                 /* unlock the Mutex */
199                 mutex_unlock(&dev->device_lock);
200
201                 wait_ret = wait_event_interruptible(dev->iamthif_cl.wait,
202                         (cb = mei_amthif_find_read_list_entry(dev, file)));
203
204                 /* Locking again the Mutex */
205                 mutex_lock(&dev->device_lock);
206
207                 if (wait_ret)
208                         return -ERESTARTSYS;
209
210                 dev_dbg(&dev->pdev->dev, "woke up from sleep\n");
211         }
212
213
214         dev_dbg(&dev->pdev->dev, "Got amthif data\n");
215         dev->iamthif_timer = 0;
216
217         if (cb) {
218                 timeout = cb->read_time +
219                         mei_secs_to_jiffies(MEI_IAMTHIF_READ_TIMER);
220                 dev_dbg(&dev->pdev->dev, "amthif timeout = %lud\n",
221                                 timeout);
222
223                 if  (time_after(jiffies, timeout)) {
224                         dev_dbg(&dev->pdev->dev, "amthif Time out\n");
225                         /* 15 sec for the message has expired */
226                         list_del(&cb->list);
227                         rets = -ETIMEDOUT;
228                         goto free;
229                 }
230         }
231         /* if the whole message will fit remove it from the list */
232         if (cb->buf_idx >= *offset && length >= (cb->buf_idx - *offset))
233                 list_del(&cb->list);
234         else if (cb->buf_idx > 0 && cb->buf_idx <= *offset) {
235                 /* end of the message has been reached */
236                 list_del(&cb->list);
237                 rets = 0;
238                 goto free;
239         }
240                 /* else means that not full buffer will be read and do not
241                  * remove message from deletion list
242                  */
243
244         dev_dbg(&dev->pdev->dev, "amthif cb->response_buffer size - %d\n",
245             cb->response_buffer.size);
246         dev_dbg(&dev->pdev->dev, "amthif cb->buf_idx - %lu\n", cb->buf_idx);
247
248         /* length is being turncated to PAGE_SIZE, however,
249          * the buf_idx may point beyond */
250         length = min_t(size_t, length, (cb->buf_idx - *offset));
251
252         if (copy_to_user(ubuf, cb->response_buffer.data + *offset, length))
253                 rets = -EFAULT;
254         else {
255                 rets = length;
256                 if ((*offset + length) < cb->buf_idx) {
257                         *offset += length;
258                         goto out;
259                 }
260         }
261 free:
262         dev_dbg(&dev->pdev->dev, "free amthif cb memory.\n");
263         *offset = 0;
264         mei_io_cb_free(cb);
265 out:
266         return rets;
267 }
268
269 /**
270  * mei_amthif_send_cmd - send amthif command to the ME
271  *
272  * @dev: the device structure
273  * @cb: mei call back struct
274  *
275  * returns 0 on success, <0 on failure.
276  *
277  */
278 static int mei_amthif_send_cmd(struct mei_device *dev, struct mei_cl_cb *cb)
279 {
280         struct mei_msg_hdr mei_hdr;
281         int ret;
282
283         if (!dev || !cb)
284                 return -ENODEV;
285
286         dev_dbg(&dev->pdev->dev, "write data to amthif client.\n");
287
288         dev->iamthif_state = MEI_IAMTHIF_WRITING;
289         dev->iamthif_current_cb = cb;
290         dev->iamthif_file_object = cb->file_object;
291         dev->iamthif_canceled = false;
292         dev->iamthif_ioctl = true;
293         dev->iamthif_msg_buf_size = cb->request_buffer.size;
294         memcpy(dev->iamthif_msg_buf, cb->request_buffer.data,
295                cb->request_buffer.size);
296
297         ret = mei_cl_flow_ctrl_creds(&dev->iamthif_cl);
298         if (ret < 0)
299                 return ret;
300
301         if (ret && dev->hbuf_is_ready) {
302                 ret = 0;
303                 dev->hbuf_is_ready = false;
304                 if (cb->request_buffer.size > mei_hbuf_max_len(dev)) {
305                         mei_hdr.length = mei_hbuf_max_len(dev);
306                         mei_hdr.msg_complete = 0;
307                 } else {
308                         mei_hdr.length = cb->request_buffer.size;
309                         mei_hdr.msg_complete = 1;
310                 }
311
312                 mei_hdr.host_addr = dev->iamthif_cl.host_client_id;
313                 mei_hdr.me_addr = dev->iamthif_cl.me_client_id;
314                 mei_hdr.reserved = 0;
315                 dev->iamthif_msg_buf_index += mei_hdr.length;
316                 ret = mei_write_message(dev, &mei_hdr, dev->iamthif_msg_buf);
317                 if (ret)
318                         return ret;
319
320                 if (mei_hdr.msg_complete) {
321                         if (mei_cl_flow_ctrl_reduce(&dev->iamthif_cl))
322                                 return -EIO;
323                         dev->iamthif_flow_control_pending = true;
324                         dev->iamthif_state = MEI_IAMTHIF_FLOW_CONTROL;
325                         dev_dbg(&dev->pdev->dev, "add amthif cb to write waiting list\n");
326                         dev->iamthif_current_cb = cb;
327                         dev->iamthif_file_object = cb->file_object;
328                         list_add_tail(&cb->list, &dev->write_waiting_list.list);
329                 } else {
330                         dev_dbg(&dev->pdev->dev, "message does not complete, so add amthif cb to write list.\n");
331                         list_add_tail(&cb->list, &dev->write_list.list);
332                 }
333         } else {
334                 if (!dev->hbuf_is_ready)
335                         dev_dbg(&dev->pdev->dev, "host buffer is not empty");
336
337                 dev_dbg(&dev->pdev->dev, "No flow control credentials, so add iamthif cb to write list.\n");
338                 list_add_tail(&cb->list, &dev->write_list.list);
339         }
340         return 0;
341 }
342
343 /**
344  * mei_amthif_write - write amthif data to amthif client
345  *
346  * @dev: the device structure
347  * @cb: mei call back struct
348  *
349  * returns 0 on success, <0 on failure.
350  *
351  */
352 int mei_amthif_write(struct mei_device *dev, struct mei_cl_cb *cb)
353 {
354         int ret;
355
356         if (!dev || !cb)
357                 return -ENODEV;
358
359         ret = mei_io_cb_alloc_resp_buf(cb, dev->iamthif_mtu);
360         if (ret)
361                 return ret;
362
363         cb->fop_type = MEI_FOP_IOCTL;
364
365         if (!list_empty(&dev->amthif_cmd_list.list) ||
366             dev->iamthif_state != MEI_IAMTHIF_IDLE) {
367                 dev_dbg(&dev->pdev->dev,
368                         "amthif state = %d\n", dev->iamthif_state);
369                 dev_dbg(&dev->pdev->dev, "AMTHIF: add cb to the wait list\n");
370                 list_add_tail(&cb->list, &dev->amthif_cmd_list.list);
371                 return 0;
372         }
373         return mei_amthif_send_cmd(dev, cb);
374 }
375 /**
376  * mei_amthif_run_next_cmd
377  *
378  * @dev: the device structure
379  *
380  * returns 0 on success, <0 on failure.
381  */
382 void mei_amthif_run_next_cmd(struct mei_device *dev)
383 {
384         struct mei_cl_cb *pos = NULL;
385         struct mei_cl_cb *next = NULL;
386         int status;
387
388         if (!dev)
389                 return;
390
391         dev->iamthif_msg_buf_size = 0;
392         dev->iamthif_msg_buf_index = 0;
393         dev->iamthif_canceled = false;
394         dev->iamthif_ioctl = true;
395         dev->iamthif_state = MEI_IAMTHIF_IDLE;
396         dev->iamthif_timer = 0;
397         dev->iamthif_file_object = NULL;
398
399         dev_dbg(&dev->pdev->dev, "complete amthif cmd_list cb.\n");
400
401         list_for_each_entry_safe(pos, next, &dev->amthif_cmd_list.list, list) {
402                 list_del(&pos->list);
403
404                 if (pos->cl && pos->cl == &dev->iamthif_cl) {
405                         status = mei_amthif_send_cmd(dev, pos);
406                         if (status) {
407                                 dev_dbg(&dev->pdev->dev,
408                                         "amthif write failed status = %d\n",
409                                                 status);
410                                 return;
411                         }
412                         break;
413                 }
414         }
415 }
416
417
418 unsigned int mei_amthif_poll(struct mei_device *dev,
419                 struct file *file, poll_table *wait)
420 {
421         unsigned int mask = 0;
422
423         poll_wait(file, &dev->iamthif_cl.wait, wait);
424
425         mutex_lock(&dev->device_lock);
426         if (!mei_cl_is_connected(&dev->iamthif_cl)) {
427
428                 mask = POLLERR;
429
430         } else if (dev->iamthif_state == MEI_IAMTHIF_READ_COMPLETE &&
431                    dev->iamthif_file_object == file) {
432
433                 mask |= (POLLIN | POLLRDNORM);
434                 dev_dbg(&dev->pdev->dev, "run next amthif cb\n");
435                 mei_amthif_run_next_cmd(dev);
436         }
437         mutex_unlock(&dev->device_lock);
438
439         return mask;
440 }
441
442
443
444 /**
445  * mei_amthif_irq_write_completed - processes completed iamthif operation.
446  *
447  * @dev: the device structure.
448  * @slots: free slots.
449  * @cb_pos: callback block.
450  * @cl: private data of the file object.
451  * @cmpl_list: complete list.
452  *
453  * returns 0, OK; otherwise, error.
454  */
455 int mei_amthif_irq_write_complete(struct mei_cl *cl, struct mei_cl_cb *cb,
456                                   s32 *slots, struct mei_cl_cb *cmpl_list)
457 {
458         struct mei_device *dev = cl->dev;
459         struct mei_msg_hdr mei_hdr;
460         size_t len = dev->iamthif_msg_buf_size - dev->iamthif_msg_buf_index;
461         u32 msg_slots = mei_data2slots(len);
462         int rets;
463
464         rets = mei_cl_flow_ctrl_creds(cl);
465         if (rets < 0)
466                 return rets;
467
468         if (rets == 0) {
469                 cl_dbg(dev, cl, "No flow control credentials: not sending.\n");
470                 return 0;
471         }
472
473         mei_hdr.host_addr = cl->host_client_id;
474         mei_hdr.me_addr = cl->me_client_id;
475         mei_hdr.reserved = 0;
476
477         if (*slots >= msg_slots) {
478                 mei_hdr.length = len;
479                 mei_hdr.msg_complete = 1;
480         /* Split the message only if we can write the whole host buffer */
481         } else if (*slots == dev->hbuf_depth) {
482                 msg_slots = *slots;
483                 len = (*slots * sizeof(u32)) - sizeof(struct mei_msg_hdr);
484                 mei_hdr.length = len;
485                 mei_hdr.msg_complete = 0;
486         } else {
487                 /* wait for next time the host buffer is empty */
488                 return 0;
489         }
490
491         dev_dbg(&dev->pdev->dev, MEI_HDR_FMT,  MEI_HDR_PRM(&mei_hdr));
492
493         *slots -=  msg_slots;
494         rets = mei_write_message(dev, &mei_hdr,
495                         dev->iamthif_msg_buf + dev->iamthif_msg_buf_index);
496         if (rets) {
497                 dev->iamthif_state = MEI_IAMTHIF_IDLE;
498                 cl->status = rets;
499                 list_del(&cb->list);
500                 return rets;
501         }
502
503         if (mei_cl_flow_ctrl_reduce(cl))
504                 return -EIO;
505
506         dev->iamthif_msg_buf_index += mei_hdr.length;
507         cl->status = 0;
508
509         if (mei_hdr.msg_complete) {
510                 dev->iamthif_state = MEI_IAMTHIF_FLOW_CONTROL;
511                 dev->iamthif_flow_control_pending = true;
512
513                 /* save iamthif cb sent to amthif client */
514                 cb->buf_idx = dev->iamthif_msg_buf_index;
515                 dev->iamthif_current_cb = cb;
516
517                 list_move_tail(&cb->list, &dev->write_waiting_list.list);
518         }
519
520
521         return 0;
522 }
523
524 /**
525  * mei_amthif_irq_read_message - read routine after ISR to
526  *                      handle the read amthif message
527  *
528  * @dev: the device structure
529  * @mei_hdr: header of amthif message
530  * @complete_list: An instance of our list structure
531  *
532  * returns 0 on success, <0 on failure.
533  */
534 int mei_amthif_irq_read_msg(struct mei_device *dev,
535                             struct mei_msg_hdr *mei_hdr,
536                             struct mei_cl_cb *complete_list)
537 {
538         struct mei_cl_cb *cb;
539         unsigned char *buffer;
540
541         BUG_ON(mei_hdr->me_addr != dev->iamthif_cl.me_client_id);
542         BUG_ON(dev->iamthif_state != MEI_IAMTHIF_READING);
543
544         buffer = dev->iamthif_msg_buf + dev->iamthif_msg_buf_index;
545         BUG_ON(dev->iamthif_mtu < dev->iamthif_msg_buf_index + mei_hdr->length);
546
547         mei_read_slots(dev, buffer, mei_hdr->length);
548
549         dev->iamthif_msg_buf_index += mei_hdr->length;
550
551         if (!mei_hdr->msg_complete)
552                 return 0;
553
554         dev_dbg(&dev->pdev->dev, "amthif_message_buffer_index =%d\n",
555                         mei_hdr->length);
556
557         dev_dbg(&dev->pdev->dev, "completed amthif read.\n ");
558         if (!dev->iamthif_current_cb)
559                 return -ENODEV;
560
561         cb = dev->iamthif_current_cb;
562         dev->iamthif_current_cb = NULL;
563
564         if (!cb->cl)
565                 return -ENODEV;
566
567         dev->iamthif_stall_timer = 0;
568         cb->buf_idx = dev->iamthif_msg_buf_index;
569         cb->read_time = jiffies;
570         if (dev->iamthif_ioctl && cb->cl == &dev->iamthif_cl) {
571                 /* found the iamthif cb */
572                 dev_dbg(&dev->pdev->dev, "complete the amthif read cb.\n ");
573                 dev_dbg(&dev->pdev->dev, "add the amthif read cb to complete.\n ");
574                 list_add_tail(&cb->list, &complete_list->list);
575         }
576         return 0;
577 }
578
579 /**
580  * mei_amthif_irq_read - prepares to read amthif data.
581  *
582  * @dev: the device structure.
583  * @slots: free slots.
584  *
585  * returns 0, OK; otherwise, error.
586  */
587 int mei_amthif_irq_read(struct mei_device *dev, s32 *slots)
588 {
589         u32 msg_slots = mei_data2slots(sizeof(struct hbm_flow_control));
590
591         if (*slots < msg_slots)
592                 return -EMSGSIZE;
593
594         *slots -= msg_slots;
595
596         if (mei_hbm_cl_flow_control_req(dev, &dev->iamthif_cl)) {
597                 dev_dbg(&dev->pdev->dev, "iamthif flow control failed\n");
598                 return -EIO;
599         }
600
601         dev_dbg(&dev->pdev->dev, "iamthif flow control success\n");
602         dev->iamthif_state = MEI_IAMTHIF_READING;
603         dev->iamthif_flow_control_pending = false;
604         dev->iamthif_msg_buf_index = 0;
605         dev->iamthif_msg_buf_size = 0;
606         dev->iamthif_stall_timer = MEI_IAMTHIF_STALL_TIMER;
607         dev->hbuf_is_ready = mei_hbuf_is_ready(dev);
608         return 0;
609 }
610
611 /**
612  * mei_amthif_complete - complete amthif callback.
613  *
614  * @dev: the device structure.
615  * @cb_pos: callback block.
616  */
617 void mei_amthif_complete(struct mei_device *dev, struct mei_cl_cb *cb)
618 {
619         if (dev->iamthif_canceled != 1) {
620                 dev->iamthif_state = MEI_IAMTHIF_READ_COMPLETE;
621                 dev->iamthif_stall_timer = 0;
622                 memcpy(cb->response_buffer.data,
623                                 dev->iamthif_msg_buf,
624                                 dev->iamthif_msg_buf_index);
625                 list_add_tail(&cb->list, &dev->amthif_rd_complete_list.list);
626                 dev_dbg(&dev->pdev->dev, "amthif read completed\n");
627                 dev->iamthif_timer = jiffies;
628                 dev_dbg(&dev->pdev->dev, "dev->iamthif_timer = %ld\n",
629                                 dev->iamthif_timer);
630         } else {
631                 mei_amthif_run_next_cmd(dev);
632         }
633
634         dev_dbg(&dev->pdev->dev, "completing amthif call back.\n");
635         wake_up_interruptible(&dev->iamthif_cl.wait);
636 }
637
638 /**
639  * mei_clear_list - removes all callbacks associated with file
640  *              from mei_cb_list
641  *
642  * @dev: device structure.
643  * @file: file structure
644  * @mei_cb_list: callbacks list
645  *
646  * mei_clear_list is called to clear resources associated with file
647  * when application calls close function or Ctrl-C was pressed
648  *
649  * returns true if callback removed from the list, false otherwise
650  */
651 static bool mei_clear_list(struct mei_device *dev,
652                 const struct file *file, struct list_head *mei_cb_list)
653 {
654         struct mei_cl_cb *cb_pos = NULL;
655         struct mei_cl_cb *cb_next = NULL;
656         bool removed = false;
657
658         /* list all list member */
659         list_for_each_entry_safe(cb_pos, cb_next, mei_cb_list, list) {
660                 /* check if list member associated with a file */
661                 if (file == cb_pos->file_object) {
662                         /* remove member from the list */
663                         list_del(&cb_pos->list);
664                         /* check if cb equal to current iamthif cb */
665                         if (dev->iamthif_current_cb == cb_pos) {
666                                 dev->iamthif_current_cb = NULL;
667                                 /* send flow control to iamthif client */
668                                 mei_hbm_cl_flow_control_req(dev,
669                                                         &dev->iamthif_cl);
670                         }
671                         /* free all allocated buffers */
672                         mei_io_cb_free(cb_pos);
673                         cb_pos = NULL;
674                         removed = true;
675                 }
676         }
677         return removed;
678 }
679
680 /**
681  * mei_clear_lists - removes all callbacks associated with file
682  *
683  * @dev: device structure
684  * @file: file structure
685  *
686  * mei_clear_lists is called to clear resources associated with file
687  * when application calls close function or Ctrl-C was pressed
688  *
689  * returns true if callback removed from the list, false otherwise
690  */
691 static bool mei_clear_lists(struct mei_device *dev, struct file *file)
692 {
693         bool removed = false;
694
695         /* remove callbacks associated with a file */
696         mei_clear_list(dev, file, &dev->amthif_cmd_list.list);
697         if (mei_clear_list(dev, file, &dev->amthif_rd_complete_list.list))
698                 removed = true;
699
700         mei_clear_list(dev, file, &dev->ctrl_rd_list.list);
701
702         if (mei_clear_list(dev, file, &dev->ctrl_wr_list.list))
703                 removed = true;
704
705         if (mei_clear_list(dev, file, &dev->write_waiting_list.list))
706                 removed = true;
707
708         if (mei_clear_list(dev, file, &dev->write_list.list))
709                 removed = true;
710
711         /* check if iamthif_current_cb not NULL */
712         if (dev->iamthif_current_cb && !removed) {
713                 /* check file and iamthif current cb association */
714                 if (dev->iamthif_current_cb->file_object == file) {
715                         /* remove cb */
716                         mei_io_cb_free(dev->iamthif_current_cb);
717                         dev->iamthif_current_cb = NULL;
718                         removed = true;
719                 }
720         }
721         return removed;
722 }
723
724 /**
725 * mei_amthif_release - the release function
726 *
727 *  @dev: device structure
728 *  @file: pointer to file structure
729 *
730 *  returns 0 on success, <0 on error
731 */
732 int mei_amthif_release(struct mei_device *dev, struct file *file)
733 {
734         if (dev->open_handle_count > 0)
735                 dev->open_handle_count--;
736
737         if (dev->iamthif_file_object == file &&
738             dev->iamthif_state != MEI_IAMTHIF_IDLE) {
739
740                 dev_dbg(&dev->pdev->dev, "amthif canceled iamthif state %d\n",
741                     dev->iamthif_state);
742                 dev->iamthif_canceled = true;
743                 if (dev->iamthif_state == MEI_IAMTHIF_READ_COMPLETE) {
744                         dev_dbg(&dev->pdev->dev, "run next amthif iamthif cb\n");
745                         mei_amthif_run_next_cmd(dev);
746                 }
747         }
748
749         if (mei_clear_lists(dev, file))
750                 dev->iamthif_state = MEI_IAMTHIF_IDLE;
751
752         return 0;
753 }