blob: 04fa2134615eb490be4e2c20a50bccfc39ad5f75 [file] [log] [blame]
Oren Weilfb7d8792011-05-15 13:43:42 +03001/*
2 *
3 * Intel Management Engine Interface (Intel MEI) Linux driver
Tomas Winkler733ba912012-02-09 19:25:53 +02004 * Copyright (c) 2003-2012, Intel Corporation.
Oren Weilfb7d8792011-05-15 13:43:42 +03005 *
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/pci.h>
19#include <linux/kthread.h>
20#include <linux/interrupt.h>
21#include <linux/fs.h>
22#include <linux/jiffies.h>
23
24#include "mei_dev.h"
Tomas Winkler4f3afe12012-05-09 16:38:59 +030025#include <linux/mei.h>
Oren Weilfb7d8792011-05-15 13:43:42 +030026#include "hw.h"
27#include "interface.h"
28
29
30/**
31 * mei_interrupt_quick_handler - The ISR of the MEI device
32 *
33 * @irq: The irq number
34 * @dev_id: pointer to the device structure
35 *
36 * returns irqreturn_t
37 */
38irqreturn_t mei_interrupt_quick_handler(int irq, void *dev_id)
39{
40 struct mei_device *dev = (struct mei_device *) dev_id;
41 u32 csr_reg = mei_hcsr_read(dev);
42
43 if ((csr_reg & H_IS) != H_IS)
44 return IRQ_NONE;
45
46 /* clear H_IS bit in H_CSR */
47 mei_reg_write(dev, H_CSR, csr_reg);
48
49 return IRQ_WAKE_THREAD;
50}
51
52/**
53 * _mei_cmpl - processes completed operation.
54 *
55 * @cl: private data of the file object.
56 * @cb_pos: callback block.
57 */
58static void _mei_cmpl(struct mei_cl *cl, struct mei_cl_cb *cb_pos)
59{
Tomas Winkler4b8960b2012-11-11 17:38:00 +020060 if (cb_pos->fop_type == MEI_FOP_WRITE) {
Tomas Winkler601a1ef2012-10-09 16:50:20 +020061 mei_io_cb_free(cb_pos);
Oren Weilfb7d8792011-05-15 13:43:42 +030062 cb_pos = NULL;
63 cl->writing_state = MEI_WRITE_COMPLETE;
64 if (waitqueue_active(&cl->tx_wait))
65 wake_up_interruptible(&cl->tx_wait);
66
Tomas Winkler4b8960b2012-11-11 17:38:00 +020067 } else if (cb_pos->fop_type == MEI_FOP_READ &&
Oren Weilfb7d8792011-05-15 13:43:42 +030068 MEI_READING == cl->reading_state) {
69 cl->reading_state = MEI_READ_COMPLETE;
70 if (waitqueue_active(&cl->rx_wait))
71 wake_up_interruptible(&cl->rx_wait);
72
73 }
74}
75
76/**
Oren Weilfb7d8792011-05-15 13:43:42 +030077 * _mei_irq_thread_state_ok - checks if mei header matches file private data
78 *
79 * @cl: private data of the file object
80 * @mei_hdr: header of mei client message
81 *
82 * returns !=0 if matches, 0 if no match.
83 */
84static int _mei_irq_thread_state_ok(struct mei_cl *cl,
85 struct mei_msg_hdr *mei_hdr)
86{
87 return (cl->host_client_id == mei_hdr->host_addr &&
88 cl->me_client_id == mei_hdr->me_addr &&
89 cl->state == MEI_FILE_CONNECTED &&
90 MEI_READ_COMPLETE != cl->reading_state);
91}
92
93/**
94 * mei_irq_thread_read_client_message - bottom half read routine after ISR to
95 * handle the read mei client message data processing.
96 *
97 * @complete_list: An instance of our list structure
98 * @dev: the device structure
99 * @mei_hdr: header of mei client message
100 *
101 * returns 0 on success, <0 on failure.
102 */
Tomas Winklerfb601ad2012-10-15 12:06:48 +0200103static int mei_irq_thread_read_client_message(struct mei_cl_cb *complete_list,
Oren Weilfb7d8792011-05-15 13:43:42 +0300104 struct mei_device *dev,
105 struct mei_msg_hdr *mei_hdr)
106{
107 struct mei_cl *cl;
108 struct mei_cl_cb *cb_pos = NULL, *cb_next = NULL;
Tomas Winkler479bc592011-06-16 00:46:03 +0300109 unsigned char *buffer = NULL;
Oren Weilfb7d8792011-05-15 13:43:42 +0300110
111 dev_dbg(&dev->pdev->dev, "start client msg\n");
Tomas Winklerfb601ad2012-10-15 12:06:48 +0200112 if (list_empty(&dev->read_list.list))
Oren Weilfb7d8792011-05-15 13:43:42 +0300113 goto quit;
114
Tomas Winklerfb601ad2012-10-15 12:06:48 +0200115 list_for_each_entry_safe(cb_pos, cb_next, &dev->read_list.list, list) {
Tomas Winklerdb3ed432012-11-11 17:37:59 +0200116 cl = cb_pos->cl;
Oren Weilfb7d8792011-05-15 13:43:42 +0300117 if (cl && _mei_irq_thread_state_ok(cl, mei_hdr)) {
118 cl->reading_state = MEI_READING;
Tomas Winklerebb108ef2012-10-09 16:50:16 +0200119 buffer = cb_pos->response_buffer.data + cb_pos->buf_idx;
Oren Weilfb7d8792011-05-15 13:43:42 +0300120
121 if (cb_pos->response_buffer.size <
Tomas Winklerebb108ef2012-10-09 16:50:16 +0200122 mei_hdr->length + cb_pos->buf_idx) {
Oren Weilfb7d8792011-05-15 13:43:42 +0300123 dev_dbg(&dev->pdev->dev, "message overflow.\n");
Tomas Winklerfb601ad2012-10-15 12:06:48 +0200124 list_del(&cb_pos->list);
Oren Weilfb7d8792011-05-15 13:43:42 +0300125 return -ENOMEM;
126 }
127 if (buffer)
128 mei_read_slots(dev, buffer, mei_hdr->length);
129
Tomas Winklerebb108ef2012-10-09 16:50:16 +0200130 cb_pos->buf_idx += mei_hdr->length;
Oren Weilfb7d8792011-05-15 13:43:42 +0300131 if (mei_hdr->msg_complete) {
132 cl->status = 0;
Tomas Winklerfb601ad2012-10-15 12:06:48 +0200133 list_del(&cb_pos->list);
Oren Weilfb7d8792011-05-15 13:43:42 +0300134 dev_dbg(&dev->pdev->dev,
Tomas Winklera4136b42012-09-11 00:43:22 +0300135 "completed read H cl = %d, ME cl = %d, length = %lu\n",
Oren Weilfb7d8792011-05-15 13:43:42 +0300136 cl->host_client_id,
137 cl->me_client_id,
Tomas Winklerebb108ef2012-10-09 16:50:16 +0200138 cb_pos->buf_idx);
139
Tomas Winklerfb601ad2012-10-15 12:06:48 +0200140 list_add_tail(&cb_pos->list,
141 &complete_list->list);
Oren Weilfb7d8792011-05-15 13:43:42 +0300142 }
143
144 break;
145 }
146
147 }
148
149quit:
150 dev_dbg(&dev->pdev->dev, "message read\n");
151 if (!buffer) {
Tomas Winkleredf1eed2012-02-09 19:25:54 +0200152 mei_read_slots(dev, dev->rd_msg_buf, mei_hdr->length);
Oren Weilfb7d8792011-05-15 13:43:42 +0300153 dev_dbg(&dev->pdev->dev, "discarding message, header =%08x.\n",
154 *(u32 *) dev->rd_msg_buf);
155 }
156
157 return 0;
158}
159
160/**
Oren Weilfb7d8792011-05-15 13:43:42 +0300161 * _mei_irq_thread_close - processes close related operation.
162 *
163 * @dev: the device structure.
164 * @slots: free slots.
165 * @cb_pos: callback block.
166 * @cl: private data of the file object.
167 * @cmpl_list: complete list.
168 *
169 * returns 0, OK; otherwise, error.
170 */
171static int _mei_irq_thread_close(struct mei_device *dev, s32 *slots,
172 struct mei_cl_cb *cb_pos,
173 struct mei_cl *cl,
Tomas Winklerfb601ad2012-10-15 12:06:48 +0200174 struct mei_cl_cb *cmpl_list)
Oren Weilfb7d8792011-05-15 13:43:42 +0300175{
Tomas Winklerb45f3cc2012-07-04 19:24:53 +0300176 if ((*slots * sizeof(u32)) < (sizeof(struct mei_msg_hdr) +
Tomas Winkleraeba4a02012-11-11 17:38:04 +0200177 sizeof(struct hbm_client_connect_request)))
Oren Weilfb7d8792011-05-15 13:43:42 +0300178 return -EBADMSG;
Tomas Winklerb45f3cc2012-07-04 19:24:53 +0300179
Tomas Winkleraeba4a02012-11-11 17:38:04 +0200180 *slots -= mei_data2slots(sizeof(struct hbm_client_connect_request));
Tomas Winklerb45f3cc2012-07-04 19:24:53 +0300181
182 if (mei_disconnect(dev, cl)) {
183 cl->status = 0;
Tomas Winklerebb108ef2012-10-09 16:50:16 +0200184 cb_pos->buf_idx = 0;
Tomas Winklerfb601ad2012-10-15 12:06:48 +0200185 list_move_tail(&cb_pos->list, &cmpl_list->list);
Tomas Winklerb45f3cc2012-07-04 19:24:53 +0300186 return -EMSGSIZE;
187 } else {
188 cl->state = MEI_FILE_DISCONNECTING;
189 cl->status = 0;
Tomas Winklerebb108ef2012-10-09 16:50:16 +0200190 cb_pos->buf_idx = 0;
Tomas Winklerfb601ad2012-10-15 12:06:48 +0200191 list_move_tail(&cb_pos->list, &dev->ctrl_rd_list.list);
Tomas Winklerb45f3cc2012-07-04 19:24:53 +0300192 cl->timer_count = MEI_CONNECT_TIMEOUT;
Oren Weilfb7d8792011-05-15 13:43:42 +0300193 }
194
195 return 0;
196}
197
198/**
199 * is_treat_specially_client - checks if the message belongs
200 * to the file private data.
201 *
202 * @cl: private data of the file object
203 * @rs: connect response bus message
204 *
205 */
206static bool is_treat_specially_client(struct mei_cl *cl,
207 struct hbm_client_connect_response *rs)
208{
209
210 if (cl->host_client_id == rs->host_addr &&
211 cl->me_client_id == rs->me_addr) {
212 if (!rs->status) {
213 cl->state = MEI_FILE_CONNECTED;
214 cl->status = 0;
215
216 } else {
217 cl->state = MEI_FILE_DISCONNECTED;
218 cl->status = -ENODEV;
219 }
220 cl->timer_count = 0;
221
222 return true;
223 }
224 return false;
225}
226
227/**
228 * mei_client_connect_response - connects to response irq routine
229 *
230 * @dev: the device structure
231 * @rs: connect response bus message
232 */
233static void mei_client_connect_response(struct mei_device *dev,
234 struct hbm_client_connect_response *rs)
235{
236
237 struct mei_cl *cl;
Tomas Winklerfb601ad2012-10-15 12:06:48 +0200238 struct mei_cl_cb *pos = NULL, *next = NULL;
Oren Weilfb7d8792011-05-15 13:43:42 +0300239
240 dev_dbg(&dev->pdev->dev,
241 "connect_response:\n"
242 "ME Client = %d\n"
243 "Host Client = %d\n"
244 "Status = %d\n",
245 rs->me_addr,
246 rs->host_addr,
247 rs->status);
248
249 /* if WD or iamthif client treat specially */
250
251 if (is_treat_specially_client(&(dev->wd_cl), rs)) {
Oren Weilfb7d8792011-05-15 13:43:42 +0300252 dev_dbg(&dev->pdev->dev, "successfully connected to WD client.\n");
Tomas Winkler70cd5332011-12-22 18:50:50 +0200253 mei_watchdog_register(dev);
Oren Weil9ce178e2011-09-07 09:03:09 +0300254
Oren Weilfb7d8792011-05-15 13:43:42 +0300255 return;
256 }
257
258 if (is_treat_specially_client(&(dev->iamthif_cl), rs)) {
259 dev->iamthif_state = MEI_IAMTHIF_IDLE;
260 return;
261 }
Tomas Winklerfb601ad2012-10-15 12:06:48 +0200262 list_for_each_entry_safe(pos, next, &dev->ctrl_rd_list.list, list) {
Tomas Winklerb7cd2d92011-11-27 21:43:34 +0200263
Tomas Winklerdb3ed432012-11-11 17:37:59 +0200264 cl = pos->cl;
Tomas Winklerb7cd2d92011-11-27 21:43:34 +0200265 if (!cl) {
Tomas Winklerfb601ad2012-10-15 12:06:48 +0200266 list_del(&pos->list);
Tomas Winklerb7cd2d92011-11-27 21:43:34 +0200267 return;
268 }
Tomas Winkler4b8960b2012-11-11 17:38:00 +0200269 if (pos->fop_type == MEI_FOP_IOCTL) {
Tomas Winklerb7cd2d92011-11-27 21:43:34 +0200270 if (is_treat_specially_client(cl, rs)) {
Tomas Winklerfb601ad2012-10-15 12:06:48 +0200271 list_del(&pos->list);
Tomas Winklerb7cd2d92011-11-27 21:43:34 +0200272 cl->status = 0;
273 cl->timer_count = 0;
274 break;
Oren Weilfb7d8792011-05-15 13:43:42 +0300275 }
276 }
277 }
278}
279
280/**
281 * mei_client_disconnect_response - disconnects from response irq routine
282 *
283 * @dev: the device structure
284 * @rs: disconnect response bus message
285 */
286static void mei_client_disconnect_response(struct mei_device *dev,
287 struct hbm_client_connect_response *rs)
288{
289 struct mei_cl *cl;
Tomas Winklerfb601ad2012-10-15 12:06:48 +0200290 struct mei_cl_cb *pos = NULL, *next = NULL;
Oren Weilfb7d8792011-05-15 13:43:42 +0300291
292 dev_dbg(&dev->pdev->dev,
293 "disconnect_response:\n"
294 "ME Client = %d\n"
295 "Host Client = %d\n"
296 "Status = %d\n",
297 rs->me_addr,
298 rs->host_addr,
299 rs->status);
300
Tomas Winklerfb601ad2012-10-15 12:06:48 +0200301 list_for_each_entry_safe(pos, next, &dev->ctrl_rd_list.list, list) {
Tomas Winklerdb3ed432012-11-11 17:37:59 +0200302 cl = pos->cl;
Oren Weilfb7d8792011-05-15 13:43:42 +0300303
Tomas Winklerb7cd2d92011-11-27 21:43:34 +0200304 if (!cl) {
Tomas Winklerfb601ad2012-10-15 12:06:48 +0200305 list_del(&pos->list);
Tomas Winklerb7cd2d92011-11-27 21:43:34 +0200306 return;
307 }
Oren Weilfb7d8792011-05-15 13:43:42 +0300308
Tomas Winklerb7cd2d92011-11-27 21:43:34 +0200309 dev_dbg(&dev->pdev->dev, "list_for_each_entry_safe in ctrl_rd_list.\n");
310 if (cl->host_client_id == rs->host_addr &&
311 cl->me_client_id == rs->me_addr) {
Oren Weilfb7d8792011-05-15 13:43:42 +0300312
Tomas Winklerfb601ad2012-10-15 12:06:48 +0200313 list_del(&pos->list);
Tomas Winklerb7cd2d92011-11-27 21:43:34 +0200314 if (!rs->status)
315 cl->state = MEI_FILE_DISCONNECTED;
Oren Weilfb7d8792011-05-15 13:43:42 +0300316
Tomas Winklerb7cd2d92011-11-27 21:43:34 +0200317 cl->status = 0;
318 cl->timer_count = 0;
319 break;
Oren Weilfb7d8792011-05-15 13:43:42 +0300320 }
321 }
322}
323
324/**
325 * same_flow_addr - tells if they have the same address.
326 *
327 * @file: private data of the file object.
328 * @flow: flow control.
329 *
330 * returns !=0, same; 0,not.
331 */
332static int same_flow_addr(struct mei_cl *cl, struct hbm_flow_control *flow)
333{
334 return (cl->host_client_id == flow->host_addr &&
335 cl->me_client_id == flow->me_addr);
336}
337
338/**
339 * add_single_flow_creds - adds single buffer credentials.
340 *
341 * @file: private data ot the file object.
342 * @flow: flow control.
343 */
344static void add_single_flow_creds(struct mei_device *dev,
345 struct hbm_flow_control *flow)
346{
347 struct mei_me_client *client;
348 int i;
349
Tomas Winklercf9673d2011-06-06 10:44:33 +0300350 for (i = 0; i < dev->me_clients_num; i++) {
Oren Weilfb7d8792011-05-15 13:43:42 +0300351 client = &dev->me_clients[i];
352 if (client && flow->me_addr == client->client_id) {
353 if (client->props.single_recv_buf) {
354 client->mei_flow_ctrl_creds++;
355 dev_dbg(&dev->pdev->dev, "recv flow ctrl msg ME %d (single).\n",
356 flow->me_addr);
357 dev_dbg(&dev->pdev->dev, "flow control credentials =%d.\n",
358 client->mei_flow_ctrl_creds);
359 } else {
360 BUG(); /* error in flow control */
361 }
362 }
363 }
364}
365
366/**
367 * mei_client_flow_control_response - flow control response irq routine
368 *
369 * @dev: the device structure
370 * @flow_control: flow control response bus message
371 */
372static void mei_client_flow_control_response(struct mei_device *dev,
373 struct hbm_flow_control *flow_control)
374{
375 struct mei_cl *cl_pos = NULL;
376 struct mei_cl *cl_next = NULL;
377
378 if (!flow_control->host_addr) {
379 /* single receive buffer */
380 add_single_flow_creds(dev, flow_control);
381 } else {
382 /* normal connection */
383 list_for_each_entry_safe(cl_pos, cl_next,
384 &dev->file_list, link) {
385 dev_dbg(&dev->pdev->dev, "list_for_each_entry_safe in file_list\n");
386
387 dev_dbg(&dev->pdev->dev, "cl of host client %d ME client %d.\n",
388 cl_pos->host_client_id,
389 cl_pos->me_client_id);
390 dev_dbg(&dev->pdev->dev, "flow ctrl msg for host %d ME %d.\n",
391 flow_control->host_addr,
392 flow_control->me_addr);
393 if (same_flow_addr(cl_pos, flow_control)) {
394 dev_dbg(&dev->pdev->dev, "recv ctrl msg for host %d ME %d.\n",
395 flow_control->host_addr,
396 flow_control->me_addr);
397 cl_pos->mei_flow_ctrl_creds++;
398 dev_dbg(&dev->pdev->dev, "flow control credentials = %d.\n",
399 cl_pos->mei_flow_ctrl_creds);
400 break;
401 }
402 }
403 }
404}
405
406/**
407 * same_disconn_addr - tells if they have the same address
408 *
409 * @file: private data of the file object.
410 * @disconn: disconnection request.
411 *
412 * returns !=0, same; 0,not.
413 */
414static int same_disconn_addr(struct mei_cl *cl,
Tomas Winkleraeba4a02012-11-11 17:38:04 +0200415 struct hbm_client_connect_request *req)
Oren Weilfb7d8792011-05-15 13:43:42 +0300416{
Tomas Winkleraeba4a02012-11-11 17:38:04 +0200417 return (cl->host_client_id == req->host_addr &&
418 cl->me_client_id == req->me_addr);
Oren Weilfb7d8792011-05-15 13:43:42 +0300419}
420
421/**
422 * mei_client_disconnect_request - disconnects from request irq routine
423 *
424 * @dev: the device structure.
425 * @disconnect_req: disconnect request bus message.
426 */
427static void mei_client_disconnect_request(struct mei_device *dev,
Tomas Winkleraeba4a02012-11-11 17:38:04 +0200428 struct hbm_client_connect_request *disconnect_req)
Oren Weilfb7d8792011-05-15 13:43:42 +0300429{
Oren Weilfb7d8792011-05-15 13:43:42 +0300430 struct hbm_client_connect_response *disconnect_res;
Tomas Winkler5bd64712012-11-18 15:13:14 +0200431 struct mei_cl *pos, *next;
432 const size_t len = sizeof(struct hbm_client_connect_response);
Oren Weilfb7d8792011-05-15 13:43:42 +0300433
Tomas Winkler5bd64712012-11-18 15:13:14 +0200434 list_for_each_entry_safe(pos, next, &dev->file_list, link) {
435 if (same_disconn_addr(pos, disconnect_req)) {
Oren Weilfb7d8792011-05-15 13:43:42 +0300436 dev_dbg(&dev->pdev->dev, "disconnect request host client %d ME client %d.\n",
437 disconnect_req->host_addr,
438 disconnect_req->me_addr);
Tomas Winkler5bd64712012-11-18 15:13:14 +0200439 pos->state = MEI_FILE_DISCONNECTED;
440 pos->timer_count = 0;
441 if (pos == &dev->wd_cl)
Tomas Winklereb9af0a2011-05-25 17:28:22 +0300442 dev->wd_pending = false;
Tomas Winkler5bd64712012-11-18 15:13:14 +0200443 else if (pos == &dev->iamthif_cl)
Oren Weilfb7d8792011-05-15 13:43:42 +0300444 dev->iamthif_timer = 0;
445
446 /* prepare disconnect response */
Tomas Winkler5fb54fb2012-11-18 15:13:15 +0200447 (void)mei_hbm_hdr((u32 *)&dev->wr_ext_msg.hdr, len);
Oren Weilfb7d8792011-05-15 13:43:42 +0300448 disconnect_res =
449 (struct hbm_client_connect_response *)
Tomas Winkler5fb54fb2012-11-18 15:13:15 +0200450 &dev->wr_ext_msg.data;
Tomas Winkler1ca7e782012-02-26 23:18:57 +0200451 disconnect_res->hbm_cmd = CLIENT_DISCONNECT_RES_CMD;
Tomas Winkler5bd64712012-11-18 15:13:14 +0200452 disconnect_res->host_addr = pos->host_client_id;
453 disconnect_res->me_addr = pos->me_client_id;
Oren Weilfb7d8792011-05-15 13:43:42 +0300454 disconnect_res->status = 0;
Oren Weilfb7d8792011-05-15 13:43:42 +0300455 break;
456 }
457 }
458}
459
Oren Weilfb7d8792011-05-15 13:43:42 +0300460/**
461 * mei_irq_thread_read_bus_message - bottom half read routine after ISR to
462 * handle the read bus message cmd processing.
463 *
464 * @dev: the device structure
465 * @mei_hdr: header of bus message
466 */
467static void mei_irq_thread_read_bus_message(struct mei_device *dev,
468 struct mei_msg_hdr *mei_hdr)
469{
470 struct mei_bus_message *mei_msg;
Samuel Ortizc1174c02012-11-18 15:13:20 +0200471 struct mei_me_client *me_client;
Oren Weilfb7d8792011-05-15 13:43:42 +0300472 struct hbm_host_version_response *version_res;
473 struct hbm_client_connect_response *connect_res;
474 struct hbm_client_connect_response *disconnect_res;
Tomas Winkleraeba4a02012-11-11 17:38:04 +0200475 struct hbm_client_connect_request *disconnect_req;
Oren Weilfb7d8792011-05-15 13:43:42 +0300476 struct hbm_flow_control *flow_control;
477 struct hbm_props_response *props_res;
478 struct hbm_host_enum_response *enum_res;
Tomas Winkler5bd64712012-11-18 15:13:14 +0200479 struct hbm_host_stop_request *stop_req;
Oren Weilfb7d8792011-05-15 13:43:42 +0300480
481 /* read the message to our buffer */
Oren Weilfb7d8792011-05-15 13:43:42 +0300482 BUG_ON(mei_hdr->length >= sizeof(dev->rd_msg_buf));
Tomas Winkleredf1eed2012-02-09 19:25:54 +0200483 mei_read_slots(dev, dev->rd_msg_buf, mei_hdr->length);
484 mei_msg = (struct mei_bus_message *)dev->rd_msg_buf;
Oren Weilfb7d8792011-05-15 13:43:42 +0300485
Tomas Winkler1ca7e782012-02-26 23:18:57 +0200486 switch (mei_msg->hbm_cmd) {
Oren Weilfb7d8792011-05-15 13:43:42 +0300487 case HOST_START_RES_CMD:
488 version_res = (struct hbm_host_version_response *) mei_msg;
489 if (version_res->host_version_supported) {
490 dev->version.major_version = HBM_MAJOR_VERSION;
491 dev->version.minor_version = HBM_MINOR_VERSION;
Tomas Winklerb210d752012-08-07 00:03:56 +0300492 if (dev->dev_state == MEI_DEV_INIT_CLIENTS &&
Oren Weilfb7d8792011-05-15 13:43:42 +0300493 dev->init_clients_state == MEI_START_MESSAGE) {
494 dev->init_clients_timer = 0;
Tomas Winklerc95efb72011-05-25 17:28:21 +0300495 mei_host_enum_clients_message(dev);
Oren Weilfb7d8792011-05-15 13:43:42 +0300496 } else {
Tomas Winklereb9af0a2011-05-25 17:28:22 +0300497 dev->recvd_msg = false;
Oren Weilfb7d8792011-05-15 13:43:42 +0300498 dev_dbg(&dev->pdev->dev, "IMEI reset due to received host start response bus message.\n");
499 mei_reset(dev, 1);
500 return;
501 }
502 } else {
Tomas Winkler5bd64712012-11-18 15:13:14 +0200503 u32 *buf = dev->wr_msg_buf;
504 const size_t len = sizeof(struct hbm_host_stop_request);
505
Oren Weilfb7d8792011-05-15 13:43:42 +0300506 dev->version = version_res->me_max_version;
Tomas Winkler5bd64712012-11-18 15:13:14 +0200507
Oren Weilfb7d8792011-05-15 13:43:42 +0300508 /* send stop message */
Tomas Winkler5bd64712012-11-18 15:13:14 +0200509 mei_hdr = mei_hbm_hdr(&buf[0], len);
510 stop_req = (struct hbm_host_stop_request *)&buf[1];
511 memset(stop_req, 0, len);
512 stop_req->hbm_cmd = HOST_STOP_REQ_CMD;
513 stop_req->reason = DRIVER_STOP_REQUEST;
Oren Weilfb7d8792011-05-15 13:43:42 +0300514
Oren Weilfb7d8792011-05-15 13:43:42 +0300515 mei_write_message(dev, mei_hdr,
Tomas Winkler5bd64712012-11-18 15:13:14 +0200516 (unsigned char *)stop_req, len);
Oren Weilfb7d8792011-05-15 13:43:42 +0300517 dev_dbg(&dev->pdev->dev, "version mismatch.\n");
518 return;
519 }
520
Tomas Winklereb9af0a2011-05-25 17:28:22 +0300521 dev->recvd_msg = true;
Oren Weilfb7d8792011-05-15 13:43:42 +0300522 dev_dbg(&dev->pdev->dev, "host start response message received.\n");
523 break;
524
525 case CLIENT_CONNECT_RES_CMD:
Tomas Winkler5bd64712012-11-18 15:13:14 +0200526 connect_res = (struct hbm_client_connect_response *) mei_msg;
Oren Weilfb7d8792011-05-15 13:43:42 +0300527 mei_client_connect_response(dev, connect_res);
528 dev_dbg(&dev->pdev->dev, "client connect response message received.\n");
529 wake_up(&dev->wait_recvd_msg);
530 break;
531
532 case CLIENT_DISCONNECT_RES_CMD:
Tomas Winkler5bd64712012-11-18 15:13:14 +0200533 disconnect_res = (struct hbm_client_connect_response *) mei_msg;
Tomas Winkler441ab502011-12-13 23:39:34 +0200534 mei_client_disconnect_response(dev, disconnect_res);
Oren Weilfb7d8792011-05-15 13:43:42 +0300535 dev_dbg(&dev->pdev->dev, "client disconnect response message received.\n");
536 wake_up(&dev->wait_recvd_msg);
537 break;
538
539 case MEI_FLOW_CONTROL_CMD:
540 flow_control = (struct hbm_flow_control *) mei_msg;
541 mei_client_flow_control_response(dev, flow_control);
542 dev_dbg(&dev->pdev->dev, "client flow control response message received.\n");
543 break;
544
545 case HOST_CLIENT_PROPERTIES_RES_CMD:
546 props_res = (struct hbm_props_response *)mei_msg;
Samuel Ortizc1174c02012-11-18 15:13:20 +0200547 me_client = &dev->me_clients[dev->me_client_presentation_num];
548
Oren Weilfb7d8792011-05-15 13:43:42 +0300549 if (props_res->status || !dev->me_clients) {
550 dev_dbg(&dev->pdev->dev, "reset due to received host client properties response bus message wrong status.\n");
551 mei_reset(dev, 1);
552 return;
553 }
Oren Weilfb7d8792011-05-15 13:43:42 +0300554
Samuel Ortizc1174c02012-11-18 15:13:20 +0200555 if (me_client->client_id != props_res->address) {
556 dev_err(&dev->pdev->dev,
557 "Host client properties reply mismatch\n");
Oren Weilfb7d8792011-05-15 13:43:42 +0300558 mei_reset(dev, 1);
Samuel Ortizc1174c02012-11-18 15:13:20 +0200559
Oren Weilfb7d8792011-05-15 13:43:42 +0300560 return;
561 }
Samuel Ortizc1174c02012-11-18 15:13:20 +0200562
563 if (dev->dev_state != MEI_DEV_INIT_CLIENTS ||
564 dev->init_clients_state != MEI_CLIENT_PROPERTIES_MESSAGE) {
565 dev_err(&dev->pdev->dev,
566 "Unexpected client properties reply\n");
567 mei_reset(dev, 1);
568
569 return;
570 }
571
572 me_client->props = props_res->client_properties;
573 dev->me_client_index++;
574 dev->me_client_presentation_num++;
575
576 mei_host_client_enumerate(dev);
577
Oren Weilfb7d8792011-05-15 13:43:42 +0300578 break;
579
580 case HOST_ENUM_RES_CMD:
581 enum_res = (struct hbm_host_enum_response *) mei_msg;
582 memcpy(dev->me_clients_map, enum_res->valid_addresses, 32);
Tomas Winklerb210d752012-08-07 00:03:56 +0300583 if (dev->dev_state == MEI_DEV_INIT_CLIENTS &&
Oren Weilfb7d8792011-05-15 13:43:42 +0300584 dev->init_clients_state == MEI_ENUM_CLIENTS_MESSAGE) {
585 dev->init_clients_timer = 0;
586 dev->me_client_presentation_num = 0;
587 dev->me_client_index = 0;
Tomas Winklerc95efb72011-05-25 17:28:21 +0300588 mei_allocate_me_clients_storage(dev);
Oren Weilfb7d8792011-05-15 13:43:42 +0300589 dev->init_clients_state =
590 MEI_CLIENT_PROPERTIES_MESSAGE;
Samuel Ortizc1174c02012-11-18 15:13:20 +0200591
592 mei_host_client_enumerate(dev);
Oren Weilfb7d8792011-05-15 13:43:42 +0300593 } else {
594 dev_dbg(&dev->pdev->dev, "reset due to received host enumeration clients response bus message.\n");
595 mei_reset(dev, 1);
596 return;
597 }
598 break;
599
600 case HOST_STOP_RES_CMD:
Tomas Winklerb210d752012-08-07 00:03:56 +0300601 dev->dev_state = MEI_DEV_DISABLED;
Oren Weilfb7d8792011-05-15 13:43:42 +0300602 dev_dbg(&dev->pdev->dev, "resetting because of FW stop response.\n");
603 mei_reset(dev, 1);
604 break;
605
606 case CLIENT_DISCONNECT_REQ_CMD:
607 /* search for client */
Tomas Winkleraeba4a02012-11-11 17:38:04 +0200608 disconnect_req = (struct hbm_client_connect_request *)mei_msg;
Oren Weilfb7d8792011-05-15 13:43:42 +0300609 mei_client_disconnect_request(dev, disconnect_req);
610 break;
611
612 case ME_STOP_REQ_CMD:
Tomas Winkler5bd64712012-11-18 15:13:14 +0200613 {
614 /* prepare stop request: sent in next interrupt event */
615
Tomas Winkler5bd64712012-11-18 15:13:14 +0200616 const size_t len = sizeof(struct hbm_host_stop_request);
617
Tomas Winkler5fb54fb2012-11-18 15:13:15 +0200618 mei_hdr = mei_hbm_hdr((u32 *)&dev->wr_ext_msg.hdr, len);
619 stop_req = (struct hbm_host_stop_request *)&dev->wr_ext_msg.data;
Tomas Winkler5bd64712012-11-18 15:13:14 +0200620 memset(stop_req, 0, len);
621 stop_req->hbm_cmd = HOST_STOP_REQ_CMD;
622 stop_req->reason = DRIVER_STOP_REQUEST;
Oren Weilfb7d8792011-05-15 13:43:42 +0300623 break;
Tomas Winkler5bd64712012-11-18 15:13:14 +0200624 }
Oren Weilfb7d8792011-05-15 13:43:42 +0300625 default:
626 BUG();
627 break;
628
629 }
630}
631
632
633/**
634 * _mei_hb_read - processes read related operation.
635 *
636 * @dev: the device structure.
637 * @slots: free slots.
638 * @cb_pos: callback block.
639 * @cl: private data of the file object.
640 * @cmpl_list: complete list.
641 *
642 * returns 0, OK; otherwise, error.
643 */
644static int _mei_irq_thread_read(struct mei_device *dev, s32 *slots,
645 struct mei_cl_cb *cb_pos,
646 struct mei_cl *cl,
Tomas Winklerfb601ad2012-10-15 12:06:48 +0200647 struct mei_cl_cb *cmpl_list)
Oren Weilfb7d8792011-05-15 13:43:42 +0300648{
Tomas Winkler1e69d642012-05-29 16:39:12 +0300649 if ((*slots * sizeof(u32)) < (sizeof(struct mei_msg_hdr) +
Oren Weilfb7d8792011-05-15 13:43:42 +0300650 sizeof(struct hbm_flow_control))) {
Oren Weilfb7d8792011-05-15 13:43:42 +0300651 /* return the cancel routine */
Tomas Winklerfb601ad2012-10-15 12:06:48 +0200652 list_del(&cb_pos->list);
Oren Weilfb7d8792011-05-15 13:43:42 +0300653 return -EBADMSG;
654 }
655
Tomas Winkler7bdf72d2012-07-04 19:24:52 +0300656 *slots -= mei_data2slots(sizeof(struct hbm_flow_control));
657
Tomas Winkler1ccb7b62012-03-14 14:39:42 +0200658 if (mei_send_flow_control(dev, cl)) {
659 cl->status = -ENODEV;
Tomas Winklerebb108ef2012-10-09 16:50:16 +0200660 cb_pos->buf_idx = 0;
Tomas Winklerfb601ad2012-10-15 12:06:48 +0200661 list_move_tail(&cb_pos->list, &cmpl_list->list);
Tomas Winkler1ccb7b62012-03-14 14:39:42 +0200662 return -ENODEV;
663 }
Tomas Winklerfb601ad2012-10-15 12:06:48 +0200664 list_move_tail(&cb_pos->list, &dev->read_list.list);
Tomas Winkler1ccb7b62012-03-14 14:39:42 +0200665
Oren Weilfb7d8792011-05-15 13:43:42 +0300666 return 0;
667}
668
669
670/**
671 * _mei_irq_thread_ioctl - processes ioctl related operation.
672 *
673 * @dev: the device structure.
674 * @slots: free slots.
675 * @cb_pos: callback block.
676 * @cl: private data of the file object.
677 * @cmpl_list: complete list.
678 *
679 * returns 0, OK; otherwise, error.
680 */
681static int _mei_irq_thread_ioctl(struct mei_device *dev, s32 *slots,
682 struct mei_cl_cb *cb_pos,
683 struct mei_cl *cl,
Tomas Winklerfb601ad2012-10-15 12:06:48 +0200684 struct mei_cl_cb *cmpl_list)
Oren Weilfb7d8792011-05-15 13:43:42 +0300685{
Tomas Winklerb45f3cc2012-07-04 19:24:53 +0300686 if ((*slots * sizeof(u32)) < (sizeof(struct mei_msg_hdr) +
Oren Weilfb7d8792011-05-15 13:43:42 +0300687 sizeof(struct hbm_client_connect_request))) {
Oren Weilfb7d8792011-05-15 13:43:42 +0300688 /* return the cancel routine */
Tomas Winklerfb601ad2012-10-15 12:06:48 +0200689 list_del(&cb_pos->list);
Oren Weilfb7d8792011-05-15 13:43:42 +0300690 return -EBADMSG;
691 }
692
Tomas Winklerb45f3cc2012-07-04 19:24:53 +0300693 cl->state = MEI_FILE_CONNECTING;
694 *slots -= mei_data2slots(sizeof(struct hbm_client_connect_request));
695 if (mei_connect(dev, cl)) {
696 cl->status = -ENODEV;
Tomas Winklerebb108ef2012-10-09 16:50:16 +0200697 cb_pos->buf_idx = 0;
Tomas Winklerfb601ad2012-10-15 12:06:48 +0200698 list_del(&cb_pos->list);
Tomas Winklerb45f3cc2012-07-04 19:24:53 +0300699 return -ENODEV;
700 } else {
Tomas Winklerfb601ad2012-10-15 12:06:48 +0200701 list_move_tail(&cb_pos->list, &dev->ctrl_rd_list.list);
Tomas Winklerb45f3cc2012-07-04 19:24:53 +0300702 cl->timer_count = MEI_CONNECT_TIMEOUT;
703 }
Oren Weilfb7d8792011-05-15 13:43:42 +0300704 return 0;
705}
706
707/**
Tomas Winklerea3b5fb2012-11-18 15:13:16 +0200708 * mei_irq_thread_write_complete - write messages to device.
Oren Weilfb7d8792011-05-15 13:43:42 +0300709 *
710 * @dev: the device structure.
711 * @slots: free slots.
Tomas Winklerea3b5fb2012-11-18 15:13:16 +0200712 * @cb: callback block.
Oren Weilfb7d8792011-05-15 13:43:42 +0300713 * @cmpl_list: complete list.
714 *
715 * returns 0, OK; otherwise, error.
716 */
Tomas Winklerea3b5fb2012-11-18 15:13:16 +0200717static int mei_irq_thread_write_complete(struct mei_device *dev, s32 *slots,
718 struct mei_cl_cb *cb, struct mei_cl_cb *cmpl_list)
Oren Weilfb7d8792011-05-15 13:43:42 +0300719{
720 struct mei_msg_hdr *mei_hdr;
Tomas Winklerea3b5fb2012-11-18 15:13:16 +0200721 struct mei_cl *cl = cb->cl;
722 size_t len = cb->request_buffer.size - cb->buf_idx;
723 size_t msg_slots = mei_data2slots(len);
Oren Weilfb7d8792011-05-15 13:43:42 +0300724
Tomas Winklerea3b5fb2012-11-18 15:13:16 +0200725 mei_hdr = (struct mei_msg_hdr *)&dev->wr_msg_buf[0];
726 mei_hdr->host_addr = cl->host_client_id;
727 mei_hdr->me_addr = cl->me_client_id;
728 mei_hdr->reserved = 0;
729
730 if (*slots >= msg_slots) {
731 mei_hdr->length = len;
Oren Weilfb7d8792011-05-15 13:43:42 +0300732 mei_hdr->msg_complete = 1;
Tomas Winklerea3b5fb2012-11-18 15:13:16 +0200733 /* Split the message only if we can write the whole host buffer */
Tomas Winkler24aadc82012-06-25 23:46:27 +0300734 } else if (*slots == dev->hbuf_depth) {
Tomas Winklerea3b5fb2012-11-18 15:13:16 +0200735 msg_slots = *slots;
736 len = (*slots * sizeof(u32)) - sizeof(struct mei_msg_hdr);
737 mei_hdr->length = len;
Oren Weilfb7d8792011-05-15 13:43:42 +0300738 mei_hdr->msg_complete = 0;
Oren Weilfb7d8792011-05-15 13:43:42 +0300739 } else {
Tomas Winklerea3b5fb2012-11-18 15:13:16 +0200740 /* wait for next time the host buffer is empty */
741 return 0;
Oren Weilfb7d8792011-05-15 13:43:42 +0300742 }
743
Tomas Winklerea3b5fb2012-11-18 15:13:16 +0200744 dev_dbg(&dev->pdev->dev, "buf: size = %d idx = %lu\n",
745 cb->request_buffer.size, cb->buf_idx);
746 dev_dbg(&dev->pdev->dev, "msg: len = %d complete = %d\n",
747 mei_hdr->length, mei_hdr->msg_complete);
748
749 *slots -= msg_slots;
750 if (mei_write_message(dev, mei_hdr,
751 cb->request_buffer.data + cb->buf_idx, len)) {
752 cl->status = -ENODEV;
753 list_move_tail(&cb->list, &cmpl_list->list);
754 return -ENODEV;
755 }
756
757 if (mei_flow_ctrl_reduce(dev, cl))
758 return -ENODEV;
759
760 cl->status = 0;
761 cb->buf_idx += mei_hdr->length;
762 if (mei_hdr->msg_complete)
763 list_move_tail(&cb->list, &dev->write_waiting_list.list);
764
Oren Weilfb7d8792011-05-15 13:43:42 +0300765 return 0;
766}
767
768/**
Oren Weilfb7d8792011-05-15 13:43:42 +0300769 * mei_irq_thread_read_handler - bottom half read routine after ISR to
770 * handle the read processing.
771 *
772 * @cmpl_list: An instance of our list structure
773 * @dev: the device structure
774 * @slots: slots to read.
775 *
776 * returns 0 on success, <0 on failure.
777 */
Tomas Winklerfb601ad2012-10-15 12:06:48 +0200778static int mei_irq_thread_read_handler(struct mei_cl_cb *cmpl_list,
Oren Weilfb7d8792011-05-15 13:43:42 +0300779 struct mei_device *dev,
780 s32 *slots)
781{
782 struct mei_msg_hdr *mei_hdr;
783 struct mei_cl *cl_pos = NULL;
784 struct mei_cl *cl_next = NULL;
785 int ret = 0;
786
787 if (!dev->rd_msg_hdr) {
788 dev->rd_msg_hdr = mei_mecbrw_read(dev);
789 dev_dbg(&dev->pdev->dev, "slots =%08x.\n", *slots);
790 (*slots)--;
791 dev_dbg(&dev->pdev->dev, "slots =%08x.\n", *slots);
792 }
793 mei_hdr = (struct mei_msg_hdr *) &dev->rd_msg_hdr;
794 dev_dbg(&dev->pdev->dev, "mei_hdr->length =%d\n", mei_hdr->length);
795
796 if (mei_hdr->reserved || !dev->rd_msg_hdr) {
797 dev_dbg(&dev->pdev->dev, "corrupted message header.\n");
798 ret = -EBADMSG;
799 goto end;
800 }
801
802 if (mei_hdr->host_addr || mei_hdr->me_addr) {
803 list_for_each_entry_safe(cl_pos, cl_next,
804 &dev->file_list, link) {
805 dev_dbg(&dev->pdev->dev,
806 "list_for_each_entry_safe read host"
807 " client = %d, ME client = %d\n",
808 cl_pos->host_client_id,
809 cl_pos->me_client_id);
810 if (cl_pos->host_client_id == mei_hdr->host_addr &&
811 cl_pos->me_client_id == mei_hdr->me_addr)
812 break;
813 }
814
815 if (&cl_pos->link == &dev->file_list) {
816 dev_dbg(&dev->pdev->dev, "corrupted message header\n");
817 ret = -EBADMSG;
818 goto end;
819 }
820 }
821 if (((*slots) * sizeof(u32)) < mei_hdr->length) {
822 dev_dbg(&dev->pdev->dev,
823 "we can't read the message slots =%08x.\n",
824 *slots);
825 /* we can't read the message */
826 ret = -ERANGE;
827 goto end;
828 }
829
830 /* decide where to read the message too */
831 if (!mei_hdr->host_addr) {
832 dev_dbg(&dev->pdev->dev, "call mei_irq_thread_read_bus_message.\n");
833 mei_irq_thread_read_bus_message(dev, mei_hdr);
834 dev_dbg(&dev->pdev->dev, "end mei_irq_thread_read_bus_message.\n");
835 } else if (mei_hdr->host_addr == dev->iamthif_cl.host_client_id &&
836 (MEI_FILE_CONNECTED == dev->iamthif_cl.state) &&
837 (dev->iamthif_state == MEI_IAMTHIF_READING)) {
838 dev_dbg(&dev->pdev->dev, "call mei_irq_thread_read_iamthif_message.\n");
839 dev_dbg(&dev->pdev->dev, "mei_hdr->length =%d\n",
840 mei_hdr->length);
Tomas Winkler19838fb2012-11-01 21:17:15 +0200841
842 ret = mei_amthif_irq_read_message(cmpl_list, dev, mei_hdr);
Oren Weilfb7d8792011-05-15 13:43:42 +0300843 if (ret)
844 goto end;
845
846 } else {
847 dev_dbg(&dev->pdev->dev, "call mei_irq_thread_read_client_message.\n");
848 ret = mei_irq_thread_read_client_message(cmpl_list,
849 dev, mei_hdr);
850 if (ret)
851 goto end;
852
853 }
854
855 /* reset the number of slots and header */
856 *slots = mei_count_full_read_slots(dev);
857 dev->rd_msg_hdr = 0;
858
859 if (*slots == -EOVERFLOW) {
860 /* overflow - reset */
861 dev_dbg(&dev->pdev->dev, "resetting due to slots overflow.\n");
862 /* set the event since message has been read */
863 ret = -ERANGE;
864 goto end;
865 }
866end:
867 return ret;
868}
869
870
871/**
872 * mei_irq_thread_write_handler - bottom half write routine after
873 * ISR to handle the write processing.
874 *
Oren Weilfb7d8792011-05-15 13:43:42 +0300875 * @dev: the device structure
Tomas Winkler9a84d612012-11-18 15:13:18 +0200876 * @cmpl_list: An instance of our list structure
Oren Weilfb7d8792011-05-15 13:43:42 +0300877 *
878 * returns 0 on success, <0 on failure.
879 */
Tomas Winkler9a84d612012-11-18 15:13:18 +0200880static int mei_irq_thread_write_handler(struct mei_device *dev,
881 struct mei_cl_cb *cmpl_list)
Oren Weilfb7d8792011-05-15 13:43:42 +0300882{
883
884 struct mei_cl *cl;
Tomas Winklerb7cd2d92011-11-27 21:43:34 +0200885 struct mei_cl_cb *pos = NULL, *next = NULL;
Tomas Winklerfb601ad2012-10-15 12:06:48 +0200886 struct mei_cl_cb *list;
Tomas Winkler9a84d612012-11-18 15:13:18 +0200887 s32 slots;
Oren Weilfb7d8792011-05-15 13:43:42 +0300888 int ret;
889
Tomas Winkler726917f2012-06-25 23:46:28 +0300890 if (!mei_hbuf_is_empty(dev)) {
Oren Weilfb7d8792011-05-15 13:43:42 +0300891 dev_dbg(&dev->pdev->dev, "host buffer is not empty.\n");
892 return 0;
893 }
Tomas Winkler9a84d612012-11-18 15:13:18 +0200894 slots = mei_hbuf_empty_slots(dev);
895 if (slots <= 0)
Tomas Winkler7d5e0e52012-06-19 09:13:36 +0300896 return -EMSGSIZE;
897
Oren Weilfb7d8792011-05-15 13:43:42 +0300898 /* complete all waiting for write CB */
899 dev_dbg(&dev->pdev->dev, "complete all waiting for write cb.\n");
900
901 list = &dev->write_waiting_list;
Tomas Winklerfb601ad2012-10-15 12:06:48 +0200902 list_for_each_entry_safe(pos, next, &list->list, list) {
Tomas Winklerdb3ed432012-11-11 17:37:59 +0200903 cl = pos->cl;
Tomas Winklerb7cd2d92011-11-27 21:43:34 +0200904 if (cl == NULL)
905 continue;
Oren Weilfb7d8792011-05-15 13:43:42 +0300906
Tomas Winklerb7cd2d92011-11-27 21:43:34 +0200907 cl->status = 0;
Tomas Winklerfb601ad2012-10-15 12:06:48 +0200908 list_del(&pos->list);
Tomas Winklerb7cd2d92011-11-27 21:43:34 +0200909 if (MEI_WRITING == cl->writing_state &&
Tomas Winkler4b8960b2012-11-11 17:38:00 +0200910 pos->fop_type == MEI_FOP_WRITE &&
911 cl != &dev->iamthif_cl) {
Tomas Winkler483136e2012-07-04 19:24:54 +0300912 dev_dbg(&dev->pdev->dev, "MEI WRITE COMPLETE\n");
Tomas Winklerb7cd2d92011-11-27 21:43:34 +0200913 cl->writing_state = MEI_WRITE_COMPLETE;
Tomas Winklerfb601ad2012-10-15 12:06:48 +0200914 list_add_tail(&pos->list, &cmpl_list->list);
Tomas Winklerb7cd2d92011-11-27 21:43:34 +0200915 }
916 if (cl == &dev->iamthif_cl) {
917 dev_dbg(&dev->pdev->dev, "check iamthif flow control.\n");
918 if (dev->iamthif_flow_control_pending) {
Tomas Winkler9a84d612012-11-18 15:13:18 +0200919 ret = mei_amthif_irq_read(dev, &slots);
Tomas Winklerb7cd2d92011-11-27 21:43:34 +0200920 if (ret)
921 return ret;
922 }
Oren Weilfb7d8792011-05-15 13:43:42 +0300923 }
924 }
925
Tomas Winklerc216fde2012-08-16 19:39:43 +0300926 if (dev->wd_state == MEI_WD_STOPPING) {
927 dev->wd_state = MEI_WD_IDLE;
Oren Weilfb7d8792011-05-15 13:43:42 +0300928 wake_up_interruptible(&dev->wait_stop_wd);
Oren Weilfb7d8792011-05-15 13:43:42 +0300929 }
930
Tomas Winkler5fb54fb2012-11-18 15:13:15 +0200931 if (dev->wr_ext_msg.hdr.length) {
932 mei_write_message(dev, &dev->wr_ext_msg.hdr,
933 dev->wr_ext_msg.data, dev->wr_ext_msg.hdr.length);
Tomas Winkler9a84d612012-11-18 15:13:18 +0200934 slots -= mei_data2slots(dev->wr_ext_msg.hdr.length);
Tomas Winkler5fb54fb2012-11-18 15:13:15 +0200935 dev->wr_ext_msg.hdr.length = 0;
Oren Weilfb7d8792011-05-15 13:43:42 +0300936 }
Tomas Winklerb210d752012-08-07 00:03:56 +0300937 if (dev->dev_state == MEI_DEV_ENABLED) {
Oren Weilfb7d8792011-05-15 13:43:42 +0300938 if (dev->wd_pending &&
Tomas Winkler483136e2012-07-04 19:24:54 +0300939 mei_flow_ctrl_creds(dev, &dev->wd_cl) > 0) {
Oren Weilfb7d8792011-05-15 13:43:42 +0300940 if (mei_wd_send(dev))
941 dev_dbg(&dev->pdev->dev, "wd send failed.\n");
Tomas Winkler483136e2012-07-04 19:24:54 +0300942 else if (mei_flow_ctrl_reduce(dev, &dev->wd_cl))
943 return -ENODEV;
Oren Weilfb7d8792011-05-15 13:43:42 +0300944
Tomas Winklereb9af0a2011-05-25 17:28:22 +0300945 dev->wd_pending = false;
Oren Weilfb7d8792011-05-15 13:43:42 +0300946
Tomas Winklerc216fde2012-08-16 19:39:43 +0300947 if (dev->wd_state == MEI_WD_RUNNING)
Tomas Winkler9a84d612012-11-18 15:13:18 +0200948 slots -= mei_data2slots(MEI_WD_START_MSG_SIZE);
Tomas Winklerd242a0a2012-07-04 19:24:50 +0300949 else
Tomas Winkler9a84d612012-11-18 15:13:18 +0200950 slots -= mei_data2slots(MEI_WD_STOP_MSG_SIZE);
Oren Weilfb7d8792011-05-15 13:43:42 +0300951 }
952 }
Oren Weilfb7d8792011-05-15 13:43:42 +0300953
954 /* complete control write list CB */
Tomas Winklerc8372092011-11-27 21:43:33 +0200955 dev_dbg(&dev->pdev->dev, "complete control write list cb.\n");
Tomas Winklerfb601ad2012-10-15 12:06:48 +0200956 list_for_each_entry_safe(pos, next, &dev->ctrl_wr_list.list, list) {
Tomas Winklerdb3ed432012-11-11 17:37:59 +0200957 cl = pos->cl;
Tomas Winklerc8372092011-11-27 21:43:33 +0200958 if (!cl) {
Tomas Winklerfb601ad2012-10-15 12:06:48 +0200959 list_del(&pos->list);
Tomas Winklerc8372092011-11-27 21:43:33 +0200960 return -ENODEV;
Oren Weilfb7d8792011-05-15 13:43:42 +0300961 }
Tomas Winkler4b8960b2012-11-11 17:38:00 +0200962 switch (pos->fop_type) {
963 case MEI_FOP_CLOSE:
Tomas Winklerc8372092011-11-27 21:43:33 +0200964 /* send disconnect message */
Tomas Winkler9a84d612012-11-18 15:13:18 +0200965 ret = _mei_irq_thread_close(dev, &slots, pos,
966 cl, cmpl_list);
Tomas Winklerc8372092011-11-27 21:43:33 +0200967 if (ret)
968 return ret;
969
970 break;
Tomas Winkler4b8960b2012-11-11 17:38:00 +0200971 case MEI_FOP_READ:
Tomas Winklerc8372092011-11-27 21:43:33 +0200972 /* send flow control message */
Tomas Winkler9a84d612012-11-18 15:13:18 +0200973 ret = _mei_irq_thread_read(dev, &slots, pos,
974 cl, cmpl_list);
Tomas Winklerc8372092011-11-27 21:43:33 +0200975 if (ret)
976 return ret;
977
978 break;
Tomas Winkler4b8960b2012-11-11 17:38:00 +0200979 case MEI_FOP_IOCTL:
Tomas Winklerc8372092011-11-27 21:43:33 +0200980 /* connect message */
Natalia Ovsyanikove8cd29d2011-12-05 00:16:54 +0200981 if (mei_other_client_is_connecting(dev, cl))
Tomas Winklerc8372092011-11-27 21:43:33 +0200982 continue;
Tomas Winkler9a84d612012-11-18 15:13:18 +0200983 ret = _mei_irq_thread_ioctl(dev, &slots, pos,
984 cl, cmpl_list);
Tomas Winklerc8372092011-11-27 21:43:33 +0200985 if (ret)
986 return ret;
987
988 break;
989
990 default:
991 BUG();
992 }
993
Oren Weilfb7d8792011-05-15 13:43:42 +0300994 }
995 /* complete write list CB */
Tomas Winklerb7cd2d92011-11-27 21:43:34 +0200996 dev_dbg(&dev->pdev->dev, "complete write list cb.\n");
Tomas Winklerfb601ad2012-10-15 12:06:48 +0200997 list_for_each_entry_safe(pos, next, &dev->write_list.list, list) {
Tomas Winklerdb3ed432012-11-11 17:37:59 +0200998 cl = pos->cl;
Tomas Winklerb7cd2d92011-11-27 21:43:34 +0200999 if (cl == NULL)
1000 continue;
Tomas Winklerbe9d87a2012-11-18 15:13:19 +02001001 if (mei_flow_ctrl_creds(dev, cl) <= 0) {
1002 dev_dbg(&dev->pdev->dev,
1003 "No flow control credentials for client %d, not sending.\n",
1004 cl->host_client_id);
1005 continue;
1006 }
Oren Weilfb7d8792011-05-15 13:43:42 +03001007
Tomas Winklerbe9d87a2012-11-18 15:13:19 +02001008 if (cl == &dev->iamthif_cl)
Tomas Winkler9a84d612012-11-18 15:13:18 +02001009 ret = mei_amthif_irq_write_complete(dev, &slots,
Tomas Winkler24c656e2012-11-18 15:13:17 +02001010 pos, cmpl_list);
Tomas Winklerbe9d87a2012-11-18 15:13:19 +02001011 else
1012 ret = mei_irq_thread_write_complete(dev, &slots, pos,
1013 cmpl_list);
1014 if (ret)
1015 return ret;
Tomas Winklerb7cd2d92011-11-27 21:43:34 +02001016
Oren Weilfb7d8792011-05-15 13:43:42 +03001017 }
1018 return 0;
1019}
1020
1021
1022
1023/**
1024 * mei_timer - timer function.
1025 *
1026 * @work: pointer to the work_struct structure
1027 *
1028 * NOTE: This function is called by timer interrupt work
1029 */
Oren Weila61c6532011-09-07 09:03:13 +03001030void mei_timer(struct work_struct *work)
Oren Weilfb7d8792011-05-15 13:43:42 +03001031{
1032 unsigned long timeout;
1033 struct mei_cl *cl_pos = NULL;
1034 struct mei_cl *cl_next = NULL;
Oren Weilfb7d8792011-05-15 13:43:42 +03001035 struct mei_cl_cb *cb_pos = NULL;
1036 struct mei_cl_cb *cb_next = NULL;
1037
1038 struct mei_device *dev = container_of(work,
Oren Weila61c6532011-09-07 09:03:13 +03001039 struct mei_device, timer_work.work);
Oren Weilfb7d8792011-05-15 13:43:42 +03001040
1041
1042 mutex_lock(&dev->device_lock);
Tomas Winklerb210d752012-08-07 00:03:56 +03001043 if (dev->dev_state != MEI_DEV_ENABLED) {
1044 if (dev->dev_state == MEI_DEV_INIT_CLIENTS) {
Oren Weilfb7d8792011-05-15 13:43:42 +03001045 if (dev->init_clients_timer) {
1046 if (--dev->init_clients_timer == 0) {
1047 dev_dbg(&dev->pdev->dev, "IMEI reset due to init clients timeout ,init clients state = %d.\n",
1048 dev->init_clients_state);
1049 mei_reset(dev, 1);
1050 }
1051 }
1052 }
1053 goto out;
1054 }
1055 /*** connect/disconnect timeouts ***/
1056 list_for_each_entry_safe(cl_pos, cl_next, &dev->file_list, link) {
1057 if (cl_pos->timer_count) {
1058 if (--cl_pos->timer_count == 0) {
1059 dev_dbg(&dev->pdev->dev, "HECI reset due to connect/disconnect timeout.\n");
1060 mei_reset(dev, 1);
1061 goto out;
1062 }
1063 }
1064 }
1065
Oren Weilfb7d8792011-05-15 13:43:42 +03001066 if (dev->iamthif_stall_timer) {
1067 if (--dev->iamthif_stall_timer == 0) {
Masanari Iida32de21f2012-01-25 23:14:56 +09001068 dev_dbg(&dev->pdev->dev, "resetting because of hang to amthi.\n");
Oren Weilfb7d8792011-05-15 13:43:42 +03001069 mei_reset(dev, 1);
1070 dev->iamthif_msg_buf_size = 0;
1071 dev->iamthif_msg_buf_index = 0;
Tomas Winklereb9af0a2011-05-25 17:28:22 +03001072 dev->iamthif_canceled = false;
1073 dev->iamthif_ioctl = true;
Oren Weilfb7d8792011-05-15 13:43:42 +03001074 dev->iamthif_state = MEI_IAMTHIF_IDLE;
1075 dev->iamthif_timer = 0;
1076
Tomas Winkler601a1ef2012-10-09 16:50:20 +02001077 mei_io_cb_free(dev->iamthif_current_cb);
1078 dev->iamthif_current_cb = NULL;
Oren Weilfb7d8792011-05-15 13:43:42 +03001079
1080 dev->iamthif_file_object = NULL;
Tomas Winkler19838fb2012-11-01 21:17:15 +02001081 mei_amthif_run_next_cmd(dev);
Oren Weilfb7d8792011-05-15 13:43:42 +03001082 }
1083 }
1084
1085 if (dev->iamthif_timer) {
1086
1087 timeout = dev->iamthif_timer +
Tomas Winkler3870c322012-11-01 21:17:14 +02001088 mei_secs_to_jiffies(MEI_IAMTHIF_READ_TIMER);
Oren Weilfb7d8792011-05-15 13:43:42 +03001089
1090 dev_dbg(&dev->pdev->dev, "dev->iamthif_timer = %ld\n",
1091 dev->iamthif_timer);
1092 dev_dbg(&dev->pdev->dev, "timeout = %ld\n", timeout);
1093 dev_dbg(&dev->pdev->dev, "jiffies = %ld\n", jiffies);
1094 if (time_after(jiffies, timeout)) {
1095 /*
1096 * User didn't read the AMTHI data on time (15sec)
1097 * freeing AMTHI for other requests
1098 */
1099
1100 dev_dbg(&dev->pdev->dev, "freeing AMTHI for other requests\n");
1101
Tomas Winklere773efc2012-11-11 17:37:58 +02001102 list_for_each_entry_safe(cb_pos, cb_next,
1103 &dev->amthif_rd_complete_list.list, list) {
Oren Weilfb7d8792011-05-15 13:43:42 +03001104
Tomas Winklerb7cd2d92011-11-27 21:43:34 +02001105 cl_pos = cb_pos->file_object->private_data;
Oren Weilfb7d8792011-05-15 13:43:42 +03001106
Tomas Winklerb7cd2d92011-11-27 21:43:34 +02001107 /* Finding the AMTHI entry. */
1108 if (cl_pos == &dev->iamthif_cl)
Tomas Winklerfb601ad2012-10-15 12:06:48 +02001109 list_del(&cb_pos->list);
Oren Weilfb7d8792011-05-15 13:43:42 +03001110 }
Tomas Winkler601a1ef2012-10-09 16:50:20 +02001111 mei_io_cb_free(dev->iamthif_current_cb);
1112 dev->iamthif_current_cb = NULL;
Oren Weilfb7d8792011-05-15 13:43:42 +03001113
1114 dev->iamthif_file_object->private_data = NULL;
1115 dev->iamthif_file_object = NULL;
Oren Weilfb7d8792011-05-15 13:43:42 +03001116 dev->iamthif_timer = 0;
Tomas Winkler19838fb2012-11-01 21:17:15 +02001117 mei_amthif_run_next_cmd(dev);
Oren Weilfb7d8792011-05-15 13:43:42 +03001118
1119 }
1120 }
1121out:
Tomas Winkler441ab502011-12-13 23:39:34 +02001122 schedule_delayed_work(&dev->timer_work, 2 * HZ);
1123 mutex_unlock(&dev->device_lock);
Oren Weilfb7d8792011-05-15 13:43:42 +03001124}
1125
1126/**
1127 * mei_interrupt_thread_handler - function called after ISR to handle the interrupt
1128 * processing.
1129 *
1130 * @irq: The irq number
1131 * @dev_id: pointer to the device structure
1132 *
1133 * returns irqreturn_t
1134 *
1135 */
1136irqreturn_t mei_interrupt_thread_handler(int irq, void *dev_id)
1137{
1138 struct mei_device *dev = (struct mei_device *) dev_id;
Tomas Winklerfb601ad2012-10-15 12:06:48 +02001139 struct mei_cl_cb complete_list;
Oren Weilfb7d8792011-05-15 13:43:42 +03001140 struct mei_cl_cb *cb_pos = NULL, *cb_next = NULL;
1141 struct mei_cl *cl;
1142 s32 slots;
1143 int rets;
1144 bool bus_message_received;
1145
1146
1147 dev_dbg(&dev->pdev->dev, "function called after ISR to handle the interrupt processing.\n");
1148 /* initialize our complete list */
1149 mutex_lock(&dev->device_lock);
Tomas Winkler0288c7c2011-06-06 10:44:34 +03001150 mei_io_list_init(&complete_list);
Oren Weilfb7d8792011-05-15 13:43:42 +03001151 dev->host_hw_state = mei_hcsr_read(dev);
Tomas Winkler4f61a7a2011-07-14 20:11:25 +03001152
1153 /* Ack the interrupt here
Justin P. Mattock5f9092f32012-03-12 07:18:09 -07001154 * In case of MSI we don't go through the quick handler */
Tomas Winkler4f61a7a2011-07-14 20:11:25 +03001155 if (pci_dev_msi_enabled(dev->pdev))
1156 mei_reg_write(dev, H_CSR, dev->host_hw_state);
1157
Oren Weilfb7d8792011-05-15 13:43:42 +03001158 dev->me_hw_state = mei_mecsr_read(dev);
1159
1160 /* check if ME wants a reset */
1161 if ((dev->me_hw_state & ME_RDY_HRA) == 0 &&
Tomas Winklerb210d752012-08-07 00:03:56 +03001162 dev->dev_state != MEI_DEV_RESETING &&
1163 dev->dev_state != MEI_DEV_INITIALIZING) {
Oren Weilfb7d8792011-05-15 13:43:42 +03001164 dev_dbg(&dev->pdev->dev, "FW not ready.\n");
1165 mei_reset(dev, 1);
1166 mutex_unlock(&dev->device_lock);
1167 return IRQ_HANDLED;
1168 }
1169
1170 /* check if we need to start the dev */
1171 if ((dev->host_hw_state & H_RDY) == 0) {
1172 if ((dev->me_hw_state & ME_RDY_HRA) == ME_RDY_HRA) {
1173 dev_dbg(&dev->pdev->dev, "we need to start the dev.\n");
1174 dev->host_hw_state |= (H_IE | H_IG | H_RDY);
1175 mei_hcsr_set(dev);
Tomas Winklerb210d752012-08-07 00:03:56 +03001176 dev->dev_state = MEI_DEV_INIT_CLIENTS;
Oren Weilfb7d8792011-05-15 13:43:42 +03001177 dev_dbg(&dev->pdev->dev, "link is established start sending messages.\n");
1178 /* link is established
1179 * start sending messages.
1180 */
Tomas Winklerc95efb72011-05-25 17:28:21 +03001181 mei_host_start_message(dev);
Oren Weilfb7d8792011-05-15 13:43:42 +03001182 mutex_unlock(&dev->device_lock);
1183 return IRQ_HANDLED;
1184 } else {
1185 dev_dbg(&dev->pdev->dev, "FW not ready.\n");
1186 mutex_unlock(&dev->device_lock);
1187 return IRQ_HANDLED;
1188 }
1189 }
Justin P. Mattock5f9092f32012-03-12 07:18:09 -07001190 /* check slots available for reading */
Oren Weilfb7d8792011-05-15 13:43:42 +03001191 slots = mei_count_full_read_slots(dev);
Tomas Winkler5fb54fb2012-11-18 15:13:15 +02001192 while (slots > 0) {
1193 /* we have urgent data to send so break the read */
1194 if (dev->wr_ext_msg.hdr.length)
1195 break;
1196 dev_dbg(&dev->pdev->dev, "slots =%08x\n", slots);
Oren Weilfb7d8792011-05-15 13:43:42 +03001197 dev_dbg(&dev->pdev->dev, "call mei_irq_thread_read_handler.\n");
1198 rets = mei_irq_thread_read_handler(&complete_list, dev, &slots);
1199 if (rets)
1200 goto end;
1201 }
Tomas Winkler9a84d612012-11-18 15:13:18 +02001202 rets = mei_irq_thread_write_handler(dev, &complete_list);
Oren Weilfb7d8792011-05-15 13:43:42 +03001203end:
1204 dev_dbg(&dev->pdev->dev, "end of bottom half function.\n");
1205 dev->host_hw_state = mei_hcsr_read(dev);
Tomas Winkler726917f2012-06-25 23:46:28 +03001206 dev->mei_host_buffer_is_empty = mei_hbuf_is_empty(dev);
Oren Weilfb7d8792011-05-15 13:43:42 +03001207
1208 bus_message_received = false;
1209 if (dev->recvd_msg && waitqueue_active(&dev->wait_recvd_msg)) {
1210 dev_dbg(&dev->pdev->dev, "received waiting bus message\n");
1211 bus_message_received = true;
1212 }
1213 mutex_unlock(&dev->device_lock);
1214 if (bus_message_received) {
1215 dev_dbg(&dev->pdev->dev, "wake up dev->wait_recvd_msg\n");
1216 wake_up_interruptible(&dev->wait_recvd_msg);
1217 bus_message_received = false;
1218 }
Tomas Winklerfb601ad2012-10-15 12:06:48 +02001219 if (list_empty(&complete_list.list))
Oren Weilfb7d8792011-05-15 13:43:42 +03001220 return IRQ_HANDLED;
1221
1222
Tomas Winklerfb601ad2012-10-15 12:06:48 +02001223 list_for_each_entry_safe(cb_pos, cb_next, &complete_list.list, list) {
Tomas Winklerdb3ed432012-11-11 17:37:59 +02001224 cl = cb_pos->cl;
Tomas Winklerfb601ad2012-10-15 12:06:48 +02001225 list_del(&cb_pos->list);
Oren Weilfb7d8792011-05-15 13:43:42 +03001226 if (cl) {
1227 if (cl != &dev->iamthif_cl) {
1228 dev_dbg(&dev->pdev->dev, "completing call back.\n");
1229 _mei_cmpl(cl, cb_pos);
1230 cb_pos = NULL;
1231 } else if (cl == &dev->iamthif_cl) {
Tomas Winkler19838fb2012-11-01 21:17:15 +02001232 mei_amthif_complete(dev, cb_pos);
Oren Weilfb7d8792011-05-15 13:43:42 +03001233 }
1234 }
1235 }
1236 return IRQ_HANDLED;
1237}