GNU Linux-libre 4.9.309-gnu1
[releases.git] / drivers / misc / mei / interrupt.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
18 #include <linux/export.h>
19 #include <linux/kthread.h>
20 #include <linux/interrupt.h>
21 #include <linux/fs.h>
22 #include <linux/jiffies.h>
23 #include <linux/slab.h>
24 #include <linux/pm_runtime.h>
25
26 #include <linux/mei.h>
27
28 #include "mei_dev.h"
29 #include "hbm.h"
30 #include "client.h"
31
32
33 /**
34  * mei_irq_compl_handler - dispatch complete handlers
35  *      for the completed callbacks
36  *
37  * @dev: mei device
38  * @compl_list: list of completed cbs
39  */
40 void mei_irq_compl_handler(struct mei_device *dev, struct mei_cl_cb *compl_list)
41 {
42         struct mei_cl_cb *cb, *next;
43         struct mei_cl *cl;
44
45         list_for_each_entry_safe(cb, next, &compl_list->list, list) {
46                 cl = cb->cl;
47                 list_del_init(&cb->list);
48
49                 dev_dbg(dev->dev, "completing call back.\n");
50                 if (cl == &dev->iamthif_cl)
51                         mei_amthif_complete(cl, cb);
52                 else
53                         mei_cl_complete(cl, cb);
54         }
55 }
56 EXPORT_SYMBOL_GPL(mei_irq_compl_handler);
57
58 /**
59  * mei_cl_hbm_equal - check if hbm is addressed to the client
60  *
61  * @cl: host client
62  * @mei_hdr: header of mei client message
63  *
64  * Return: true if matches, false otherwise
65  */
66 static inline int mei_cl_hbm_equal(struct mei_cl *cl,
67                         struct mei_msg_hdr *mei_hdr)
68 {
69         return  mei_cl_host_addr(cl) == mei_hdr->host_addr &&
70                 mei_cl_me_id(cl) == mei_hdr->me_addr;
71 }
72
73 /**
74  * mei_irq_discard_msg  - discard received message
75  *
76  * @dev: mei device
77  * @hdr: message header
78  */
79 void mei_irq_discard_msg(struct mei_device *dev, struct mei_msg_hdr *hdr)
80 {
81         /*
82          * no need to check for size as it is guarantied
83          * that length fits into rd_msg_buf
84          */
85         mei_read_slots(dev, dev->rd_msg_buf, hdr->length);
86         dev_dbg(dev->dev, "discarding message " MEI_HDR_FMT "\n",
87                 MEI_HDR_PRM(hdr));
88 }
89
90 /**
91  * mei_cl_irq_read_msg - process client message
92  *
93  * @cl: reading client
94  * @mei_hdr: header of mei client message
95  * @complete_list: completion list
96  *
97  * Return: always 0
98  */
99 int mei_cl_irq_read_msg(struct mei_cl *cl,
100                        struct mei_msg_hdr *mei_hdr,
101                        struct mei_cl_cb *complete_list)
102 {
103         struct mei_device *dev = cl->dev;
104         struct mei_cl_cb *cb;
105         size_t buf_sz;
106
107         cb = list_first_entry_or_null(&cl->rd_pending, struct mei_cl_cb, list);
108         if (!cb) {
109                 if (!mei_cl_is_fixed_address(cl)) {
110                         cl_err(dev, cl, "pending read cb not found\n");
111                         goto discard;
112                 }
113                 cb = mei_cl_alloc_cb(cl, mei_cl_mtu(cl), MEI_FOP_READ, cl->fp);
114                 if (!cb)
115                         goto discard;
116                 list_add_tail(&cb->list, &cl->rd_pending);
117         }
118
119         if (!mei_cl_is_connected(cl)) {
120                 cl_dbg(dev, cl, "not connected\n");
121                 list_move_tail(&cb->list, &complete_list->list);
122                 cb->status = -ENODEV;
123                 goto discard;
124         }
125
126         buf_sz = mei_hdr->length + cb->buf_idx;
127         /* catch for integer overflow */
128         if (buf_sz < cb->buf_idx) {
129                 cl_err(dev, cl, "message is too big len %d idx %zu\n",
130                        mei_hdr->length, cb->buf_idx);
131
132                 list_move_tail(&cb->list, &complete_list->list);
133                 cb->status = -EMSGSIZE;
134                 goto discard;
135         }
136
137         if (cb->buf.size < buf_sz) {
138                 cl_dbg(dev, cl, "message overflow. size %zu len %d idx %zu\n",
139                         cb->buf.size, mei_hdr->length, cb->buf_idx);
140
141                 list_move_tail(&cb->list, &complete_list->list);
142                 cb->status = -EMSGSIZE;
143                 goto discard;
144         }
145
146         mei_read_slots(dev, cb->buf.data + cb->buf_idx, mei_hdr->length);
147
148         cb->buf_idx += mei_hdr->length;
149
150         if (mei_hdr->msg_complete) {
151                 cl_dbg(dev, cl, "completed read length = %zu\n", cb->buf_idx);
152                 list_move_tail(&cb->list, &complete_list->list);
153         } else {
154                 pm_runtime_mark_last_busy(dev->dev);
155                 pm_request_autosuspend(dev->dev);
156         }
157
158         return 0;
159
160 discard:
161         mei_irq_discard_msg(dev, mei_hdr);
162         return 0;
163 }
164
165 /**
166  * mei_cl_irq_disconnect_rsp - send disconnection response message
167  *
168  * @cl: client
169  * @cb: callback block.
170  * @cmpl_list: complete list.
171  *
172  * Return: 0, OK; otherwise, error.
173  */
174 static int mei_cl_irq_disconnect_rsp(struct mei_cl *cl, struct mei_cl_cb *cb,
175                                      struct mei_cl_cb *cmpl_list)
176 {
177         struct mei_device *dev = cl->dev;
178         u32 msg_slots;
179         int slots;
180         int ret;
181
182         slots = mei_hbuf_empty_slots(dev);
183         msg_slots = mei_data2slots(sizeof(struct hbm_client_connect_response));
184
185         if (slots < msg_slots)
186                 return -EMSGSIZE;
187
188         ret = mei_hbm_cl_disconnect_rsp(dev, cl);
189         list_move_tail(&cb->list, &cmpl_list->list);
190
191         return ret;
192 }
193
194 /**
195  * mei_cl_irq_read - processes client read related operation from the
196  *      interrupt thread context - request for flow control credits
197  *
198  * @cl: client
199  * @cb: callback block.
200  * @cmpl_list: complete list.
201  *
202  * Return: 0, OK; otherwise, error.
203  */
204 static int mei_cl_irq_read(struct mei_cl *cl, struct mei_cl_cb *cb,
205                            struct mei_cl_cb *cmpl_list)
206 {
207         struct mei_device *dev = cl->dev;
208         u32 msg_slots;
209         int slots;
210         int ret;
211
212         if (!list_empty(&cl->rd_pending))
213                 return 0;
214
215         msg_slots = mei_data2slots(sizeof(struct hbm_flow_control));
216         slots = mei_hbuf_empty_slots(dev);
217
218         if (slots < msg_slots)
219                 return -EMSGSIZE;
220
221         ret = mei_hbm_cl_flow_control_req(dev, cl);
222         if (ret) {
223                 cl->status = ret;
224                 cb->buf_idx = 0;
225                 list_move_tail(&cb->list, &cmpl_list->list);
226                 return ret;
227         }
228
229         pm_runtime_mark_last_busy(dev->dev);
230         pm_request_autosuspend(dev->dev);
231
232         list_move_tail(&cb->list, &cl->rd_pending);
233
234         return 0;
235 }
236
237 static inline bool hdr_is_hbm(struct mei_msg_hdr *mei_hdr)
238 {
239         return mei_hdr->host_addr == 0 && mei_hdr->me_addr == 0;
240 }
241
242 static inline bool hdr_is_fixed(struct mei_msg_hdr *mei_hdr)
243 {
244         return mei_hdr->host_addr == 0 && mei_hdr->me_addr != 0;
245 }
246
247 /**
248  * mei_irq_read_handler - bottom half read routine after ISR to
249  * handle the read processing.
250  *
251  * @dev: the device structure
252  * @cmpl_list: An instance of our list structure
253  * @slots: slots to read.
254  *
255  * Return: 0 on success, <0 on failure.
256  */
257 int mei_irq_read_handler(struct mei_device *dev,
258                 struct mei_cl_cb *cmpl_list, s32 *slots)
259 {
260         struct mei_msg_hdr *mei_hdr;
261         struct mei_cl *cl;
262         int ret;
263
264         if (!dev->rd_msg_hdr) {
265                 dev->rd_msg_hdr = mei_read_hdr(dev);
266                 (*slots)--;
267                 dev_dbg(dev->dev, "slots =%08x.\n", *slots);
268         }
269         mei_hdr = (struct mei_msg_hdr *) &dev->rd_msg_hdr;
270         dev_dbg(dev->dev, MEI_HDR_FMT, MEI_HDR_PRM(mei_hdr));
271
272         if (mei_hdr->reserved || !dev->rd_msg_hdr) {
273                 dev_err(dev->dev, "corrupted message header 0x%08X\n",
274                                 dev->rd_msg_hdr);
275                 ret = -EBADMSG;
276                 goto end;
277         }
278
279         if (mei_slots2data(*slots) < mei_hdr->length) {
280                 dev_err(dev->dev, "less data available than length=%08x.\n",
281                                 *slots);
282                 /* we can't read the message */
283                 ret = -ENODATA;
284                 goto end;
285         }
286
287         /*  HBM message */
288         if (hdr_is_hbm(mei_hdr)) {
289                 ret = mei_hbm_dispatch(dev, mei_hdr);
290                 if (ret) {
291                         dev_dbg(dev->dev, "mei_hbm_dispatch failed ret = %d\n",
292                                         ret);
293                         goto end;
294                 }
295                 goto reset_slots;
296         }
297
298         /* find recipient cl */
299         list_for_each_entry(cl, &dev->file_list, link) {
300                 if (mei_cl_hbm_equal(cl, mei_hdr)) {
301                         cl_dbg(dev, cl, "got a message\n");
302                         break;
303                 }
304         }
305
306         /* if no recipient cl was found we assume corrupted header */
307         if (&cl->link == &dev->file_list) {
308                 /* A message for not connected fixed address clients
309                  * should be silently discarded
310                  */
311                 if (hdr_is_fixed(mei_hdr)) {
312                         mei_irq_discard_msg(dev, mei_hdr);
313                         ret = 0;
314                         goto reset_slots;
315                 }
316                 dev_err(dev->dev, "no destination client found 0x%08X\n",
317                                 dev->rd_msg_hdr);
318                 ret = -EBADMSG;
319                 goto end;
320         }
321
322         if (cl == &dev->iamthif_cl) {
323                 ret = mei_amthif_irq_read_msg(cl, mei_hdr, cmpl_list);
324         } else {
325                 ret = mei_cl_irq_read_msg(cl, mei_hdr, cmpl_list);
326         }
327
328
329 reset_slots:
330         /* reset the number of slots and header */
331         *slots = mei_count_full_read_slots(dev);
332         dev->rd_msg_hdr = 0;
333
334         if (*slots == -EOVERFLOW) {
335                 /* overflow - reset */
336                 dev_err(dev->dev, "resetting due to slots overflow.\n");
337                 /* set the event since message has been read */
338                 ret = -ERANGE;
339                 goto end;
340         }
341 end:
342         return ret;
343 }
344 EXPORT_SYMBOL_GPL(mei_irq_read_handler);
345
346
347 /**
348  * mei_irq_write_handler -  dispatch write requests
349  *  after irq received
350  *
351  * @dev: the device structure
352  * @cmpl_list: An instance of our list structure
353  *
354  * Return: 0 on success, <0 on failure.
355  */
356 int mei_irq_write_handler(struct mei_device *dev, struct mei_cl_cb *cmpl_list)
357 {
358
359         struct mei_cl *cl;
360         struct mei_cl_cb *cb, *next;
361         struct mei_cl_cb *list;
362         s32 slots;
363         int ret;
364
365
366         if (!mei_hbuf_acquire(dev))
367                 return 0;
368
369         slots = mei_hbuf_empty_slots(dev);
370         if (slots <= 0)
371                 return -EMSGSIZE;
372
373         /* complete all waiting for write CB */
374         dev_dbg(dev->dev, "complete all waiting for write cb.\n");
375
376         list = &dev->write_waiting_list;
377         list_for_each_entry_safe(cb, next, &list->list, list) {
378                 cl = cb->cl;
379
380                 cl->status = 0;
381                 cl_dbg(dev, cl, "MEI WRITE COMPLETE\n");
382                 cl->writing_state = MEI_WRITE_COMPLETE;
383                 list_move_tail(&cb->list, &cmpl_list->list);
384         }
385
386         /* complete control write list CB */
387         dev_dbg(dev->dev, "complete control write list cb.\n");
388         list_for_each_entry_safe(cb, next, &dev->ctrl_wr_list.list, list) {
389                 cl = cb->cl;
390                 switch (cb->fop_type) {
391                 case MEI_FOP_DISCONNECT:
392                         /* send disconnect message */
393                         ret = mei_cl_irq_disconnect(cl, cb, cmpl_list);
394                         if (ret)
395                                 return ret;
396
397                         break;
398                 case MEI_FOP_READ:
399                         /* send flow control message */
400                         ret = mei_cl_irq_read(cl, cb, cmpl_list);
401                         if (ret)
402                                 return ret;
403
404                         break;
405                 case MEI_FOP_CONNECT:
406                         /* connect message */
407                         ret = mei_cl_irq_connect(cl, cb, cmpl_list);
408                         if (ret)
409                                 return ret;
410
411                         break;
412                 case MEI_FOP_DISCONNECT_RSP:
413                         /* send disconnect resp */
414                         ret = mei_cl_irq_disconnect_rsp(cl, cb, cmpl_list);
415                         if (ret)
416                                 return ret;
417                         break;
418
419                 case MEI_FOP_NOTIFY_START:
420                 case MEI_FOP_NOTIFY_STOP:
421                         ret = mei_cl_irq_notify(cl, cb, cmpl_list);
422                         if (ret)
423                                 return ret;
424                         break;
425                 default:
426                         BUG();
427                 }
428
429         }
430         /* complete  write list CB */
431         dev_dbg(dev->dev, "complete write list cb.\n");
432         list_for_each_entry_safe(cb, next, &dev->write_list.list, list) {
433                 cl = cb->cl;
434                 if (cl == &dev->iamthif_cl)
435                         ret = mei_amthif_irq_write(cl, cb, cmpl_list);
436                 else
437                         ret = mei_cl_irq_write(cl, cb, cmpl_list);
438                 if (ret)
439                         return ret;
440         }
441         return 0;
442 }
443 EXPORT_SYMBOL_GPL(mei_irq_write_handler);
444
445
446 /**
447  * mei_connect_timeout  - connect/disconnect timeouts
448  *
449  * @cl: host client
450  */
451 static void mei_connect_timeout(struct mei_cl *cl)
452 {
453         struct mei_device *dev = cl->dev;
454
455         if (cl->state == MEI_FILE_CONNECTING) {
456                 if (dev->hbm_f_dot_supported) {
457                         cl->state = MEI_FILE_DISCONNECT_REQUIRED;
458                         wake_up(&cl->wait);
459                         return;
460                 }
461         }
462         mei_reset(dev);
463 }
464
465 #define MEI_STALL_TIMER_FREQ (2 * HZ)
466 /**
467  * mei_schedule_stall_timer - re-arm stall_timer work
468  *
469  * Schedule stall timer
470  *
471  * @dev: the device structure
472  */
473 void mei_schedule_stall_timer(struct mei_device *dev)
474 {
475         schedule_delayed_work(&dev->timer_work, MEI_STALL_TIMER_FREQ);
476 }
477
478 /**
479  * mei_timer - timer function.
480  *
481  * @work: pointer to the work_struct structure
482  *
483  */
484 void mei_timer(struct work_struct *work)
485 {
486         struct mei_cl *cl;
487         struct mei_device *dev = container_of(work,
488                                         struct mei_device, timer_work.work);
489         bool reschedule_timer = false;
490
491         mutex_lock(&dev->device_lock);
492
493         /* Catch interrupt stalls during HBM init handshake */
494         if (dev->dev_state == MEI_DEV_INIT_CLIENTS &&
495             dev->hbm_state != MEI_HBM_IDLE) {
496
497                 if (dev->init_clients_timer) {
498                         if (--dev->init_clients_timer == 0) {
499                                 dev_err(dev->dev, "timer: init clients timeout hbm_state = %d.\n",
500                                         dev->hbm_state);
501                                 mei_reset(dev);
502                                 goto out;
503                         }
504                         reschedule_timer = true;
505                 }
506         }
507
508         if (dev->dev_state != MEI_DEV_ENABLED)
509                 goto out;
510
511         /*** connect/disconnect timeouts ***/
512         list_for_each_entry(cl, &dev->file_list, link) {
513                 if (cl->timer_count) {
514                         if (--cl->timer_count == 0) {
515                                 dev_err(dev->dev, "timer: connect/disconnect timeout.\n");
516                                 mei_connect_timeout(cl);
517                                 goto out;
518                         }
519                         reschedule_timer = true;
520                 }
521         }
522
523         if (!mei_cl_is_connected(&dev->iamthif_cl))
524                 goto out;
525
526         if (dev->iamthif_stall_timer) {
527                 if (--dev->iamthif_stall_timer == 0) {
528                         dev_err(dev->dev, "timer: amthif  hanged.\n");
529                         mei_reset(dev);
530
531                         mei_amthif_run_next_cmd(dev);
532                         goto out;
533                 }
534                 reschedule_timer = true;
535         }
536
537 out:
538         if (dev->dev_state != MEI_DEV_DISABLED && reschedule_timer)
539                 mei_schedule_stall_timer(dev);
540
541         mutex_unlock(&dev->device_lock);
542 }