blob: e2ec0505eb5c05458568f8d12a7cdd6d3da9939d [file] [log] [blame]
Oren Weil3ceb3e62011-05-15 13:43:47 +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 Weil3ceb3e62011-05-15 13:43:47 +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#include <linux/kernel.h>
17#include <linux/module.h>
18#include <linux/moduleparam.h>
19#include <linux/device.h>
20#include <linux/pci.h>
21#include <linux/sched.h>
Oren Weil9ce178e2011-09-07 09:03:09 +030022#include <linux/watchdog.h>
Oren Weil3ceb3e62011-05-15 13:43:47 +030023
24#include "mei_dev.h"
25#include "hw.h"
26#include "interface.h"
Tomas Winkler4f3afe12012-05-09 16:38:59 +030027#include <linux/mei.h>
Oren Weil3ceb3e62011-05-15 13:43:47 +030028
Oren Weil3ceb3e62011-05-15 13:43:47 +030029static const u8 mei_start_wd_params[] = { 0x02, 0x12, 0x13, 0x10 };
30static const u8 mei_stop_wd_params[] = { 0x02, 0x02, 0x14, 0x10 };
31
32const u8 mei_wd_state_independence_msg[3][4] = {
33 {0x05, 0x02, 0x51, 0x10},
34 {0x05, 0x02, 0x52, 0x10},
35 {0x07, 0x02, 0x01, 0x10}
36};
37
Tomas Winkler70cd5332011-12-22 18:50:50 +020038/*
39 * AMT Watchdog Device
40 */
41#define INTEL_AMT_WATCHDOG_ID "INTCAMT"
42
Oren Weil3ceb3e62011-05-15 13:43:47 +030043/* UUIDs for AMT F/W clients */
44const uuid_le mei_wd_guid = UUID_LE(0x05B79A6F, 0x4628, 0x4D7F, 0x89,
45 0x9D, 0xA9, 0x15, 0x14, 0xCB,
46 0x32, 0xAB);
47
Tomas Winkler5192dda2012-03-19 17:58:43 +020048static void mei_wd_set_start_timeout(struct mei_device *dev, u16 timeout)
Oren Weil3ceb3e62011-05-15 13:43:47 +030049{
Tomas Winkler13c398a2012-04-03 23:34:59 +030050 dev_dbg(&dev->pdev->dev, "wd: set timeout=%d.\n", timeout);
Oren Weil3ceb3e62011-05-15 13:43:47 +030051 memcpy(dev->wd_data, mei_start_wd_params, MEI_WD_PARAMS_SIZE);
Tomas Winkler5192dda2012-03-19 17:58:43 +020052 memcpy(dev->wd_data + MEI_WD_PARAMS_SIZE, &timeout, sizeof(u16));
Oren Weil3ceb3e62011-05-15 13:43:47 +030053}
54
55/**
56 * host_init_wd - mei initialization wd.
57 *
58 * @dev: the device structure
Tomas Winkler9487eb02012-04-03 23:34:58 +030059 * returns -ENENT if wd client cannot be found
60 * -EIO if write has failed
Oren Weil3ceb3e62011-05-15 13:43:47 +030061 */
Tomas Winkler9487eb02012-04-03 23:34:58 +030062int mei_wd_host_init(struct mei_device *dev)
Oren Weil3ceb3e62011-05-15 13:43:47 +030063{
Tomas Winklerc95efb72011-05-25 17:28:21 +030064 mei_cl_init(&dev->wd_cl, dev);
Oren Weil3ceb3e62011-05-15 13:43:47 +030065
66 /* look for WD client and connect to it */
67 dev->wd_cl.state = MEI_FILE_DISCONNECTED;
Oren Weil2ad64ba2011-09-07 09:03:15 +030068 dev->wd_timeout = AMT_WD_DEFAULT_TIMEOUT;
Oren Weil3ceb3e62011-05-15 13:43:47 +030069
Oren Weil2ad64ba2011-09-07 09:03:15 +030070 /* find ME WD client */
71 mei_find_me_client_update_filext(dev, &dev->wd_cl,
72 &mei_wd_guid, MEI_WD_HOST_CLIENT_ID);
Oren Weil3ceb3e62011-05-15 13:43:47 +030073
Tomas Winkler9487eb02012-04-03 23:34:58 +030074 dev_dbg(&dev->pdev->dev, "wd: check client\n");
75 if (MEI_FILE_CONNECTING != dev->wd_cl.state) {
76 dev_info(&dev->pdev->dev, "wd: failed to find the client\n");
77 return -ENOENT;
Oren Weil3ceb3e62011-05-15 13:43:47 +030078 }
Oren Weil617aa392011-09-07 09:03:07 +030079
Tomas Winkler9487eb02012-04-03 23:34:58 +030080 if (mei_connect(dev, &dev->wd_cl)) {
81 dev_err(&dev->pdev->dev, "wd: failed to connect to the client\n");
82 dev->wd_cl.state = MEI_FILE_DISCONNECTED;
83 dev->wd_cl.host_client_id = 0;
84 return -EIO;
85 }
86 dev->wd_cl.timer_count = CONNECT_TIMEOUT;
87
88 return 0;
Oren Weil3ceb3e62011-05-15 13:43:47 +030089}
90
91/**
92 * mei_wd_send - sends watch dog message to fw.
93 *
94 * @dev: the device structure
95 *
96 * returns 0 if success,
97 * -EIO when message send fails
98 * -EINVAL when invalid message is to be sent
99 */
100int mei_wd_send(struct mei_device *dev)
101{
102 struct mei_msg_hdr *mei_hdr;
103
104 mei_hdr = (struct mei_msg_hdr *) &dev->wr_msg_buf[0];
105 mei_hdr->host_addr = dev->wd_cl.host_client_id;
106 mei_hdr->me_addr = dev->wd_cl.me_client_id;
107 mei_hdr->msg_complete = 1;
108 mei_hdr->reserved = 0;
109
110 if (!memcmp(dev->wd_data, mei_start_wd_params, MEI_WD_PARAMS_SIZE))
111 mei_hdr->length = MEI_START_WD_DATA_SIZE;
112 else if (!memcmp(dev->wd_data, mei_stop_wd_params, MEI_WD_PARAMS_SIZE))
113 mei_hdr->length = MEI_WD_PARAMS_SIZE;
114 else
115 return -EINVAL;
116
Tomas Winkler1ccb7b62012-03-14 14:39:42 +0200117 return mei_write_message(dev, mei_hdr, dev->wd_data, mei_hdr->length);
Oren Weil3ceb3e62011-05-15 13:43:47 +0300118}
119
Oren Weild8deca32011-09-07 09:03:17 +0300120/**
121 * mei_wd_stop - sends watchdog stop message to fw.
122 *
123 * @dev: the device structure
124 * @preserve: indicate if to keep the timeout value
125 *
126 * returns 0 if success,
127 * -EIO when message send fails
128 * -EINVAL when invalid message is to be sent
129 */
Oren Weil3ceb3e62011-05-15 13:43:47 +0300130int mei_wd_stop(struct mei_device *dev, bool preserve)
131{
132 int ret;
133 u16 wd_timeout = dev->wd_timeout;
134
Oren Weila61c6532011-09-07 09:03:13 +0300135 cancel_delayed_work(&dev->timer_work);
Oren Weil3ceb3e62011-05-15 13:43:47 +0300136 if (dev->wd_cl.state != MEI_FILE_CONNECTED || !dev->wd_timeout)
137 return 0;
138
139 dev->wd_timeout = 0;
140 dev->wd_due_counter = 0;
141 memcpy(dev->wd_data, mei_stop_wd_params, MEI_WD_PARAMS_SIZE);
Tomas Winklereb9af0a2011-05-25 17:28:22 +0300142 dev->stop = true;
Oren Weil3ceb3e62011-05-15 13:43:47 +0300143
144 ret = mei_flow_ctrl_creds(dev, &dev->wd_cl);
145 if (ret < 0)
146 goto out;
147
148 if (ret && dev->mei_host_buffer_is_empty) {
149 ret = 0;
Tomas Winklereb9af0a2011-05-25 17:28:22 +0300150 dev->mei_host_buffer_is_empty = false;
Oren Weil3ceb3e62011-05-15 13:43:47 +0300151
152 if (!mei_wd_send(dev)) {
153 ret = mei_flow_ctrl_reduce(dev, &dev->wd_cl);
154 if (ret)
155 goto out;
156 } else {
Tomas Winkler13c398a2012-04-03 23:34:59 +0300157 dev_err(&dev->pdev->dev, "wd: send stop failed\n");
Oren Weil3ceb3e62011-05-15 13:43:47 +0300158 }
159
Tomas Winklereb9af0a2011-05-25 17:28:22 +0300160 dev->wd_pending = false;
Oren Weil3ceb3e62011-05-15 13:43:47 +0300161 } else {
Tomas Winklereb9af0a2011-05-25 17:28:22 +0300162 dev->wd_pending = true;
Oren Weil3ceb3e62011-05-15 13:43:47 +0300163 }
Tomas Winklereb9af0a2011-05-25 17:28:22 +0300164 dev->wd_stopped = false;
Oren Weil3ceb3e62011-05-15 13:43:47 +0300165 mutex_unlock(&dev->device_lock);
166
167 ret = wait_event_interruptible_timeout(dev->wait_stop_wd,
168 dev->wd_stopped, 10 * HZ);
169 mutex_lock(&dev->device_lock);
Tomas Winklera534bb62011-06-13 16:39:31 +0300170 if (dev->wd_stopped) {
Tomas Winkler13c398a2012-04-03 23:34:59 +0300171 dev_dbg(&dev->pdev->dev, "wd: stop completed ret=%d.\n", ret);
Tomas Winklera534bb62011-06-13 16:39:31 +0300172 ret = 0;
173 } else {
174 if (!ret)
175 ret = -ETIMEDOUT;
176 dev_warn(&dev->pdev->dev,
Tomas Winkler13c398a2012-04-03 23:34:59 +0300177 "wd: stop failed to complete ret=%d.\n", ret);
Tomas Winklera534bb62011-06-13 16:39:31 +0300178 }
Oren Weil3ceb3e62011-05-15 13:43:47 +0300179
180 if (preserve)
181 dev->wd_timeout = wd_timeout;
182
183out:
184 return ret;
185}
186
Oren Weil4a3cafd2011-09-07 09:03:10 +0300187/*
188 * mei_wd_ops_start - wd start command from the watchdog core.
189 *
190 * @wd_dev - watchdog device struct
191 *
192 * returns 0 if success, negative errno code for failure
193 */
194static int mei_wd_ops_start(struct watchdog_device *wd_dev)
195{
196 int err = -ENODEV;
197 struct mei_device *dev;
198
199 dev = pci_get_drvdata(mei_device);
200 if (!dev)
201 return -ENODEV;
202
203 mutex_lock(&dev->device_lock);
204
205 if (dev->mei_state != MEI_ENABLED) {
Tomas Winkler13c398a2012-04-03 23:34:59 +0300206 dev_dbg(&dev->pdev->dev,
207 "wd: mei_state != MEI_ENABLED mei_state = %d\n",
208 dev->mei_state);
Oren Weil4a3cafd2011-09-07 09:03:10 +0300209 goto end_unlock;
210 }
211
212 if (dev->wd_cl.state != MEI_FILE_CONNECTED) {
Tomas Winkler13c398a2012-04-03 23:34:59 +0300213 dev_dbg(&dev->pdev->dev,
214 "MEI Driver is not connected to Watchdog Client\n");
Oren Weil4a3cafd2011-09-07 09:03:10 +0300215 goto end_unlock;
216 }
217
Oren Weil55d33852011-09-07 09:03:12 +0300218 mei_wd_set_start_timeout(dev, dev->wd_timeout);
Oren Weil4a3cafd2011-09-07 09:03:10 +0300219
220 err = 0;
221end_unlock:
222 mutex_unlock(&dev->device_lock);
223 return err;
224}
225
226/*
227 * mei_wd_ops_stop - wd stop command from the watchdog core.
228 *
229 * @wd_dev - watchdog device struct
230 *
231 * returns 0 if success, negative errno code for failure
232 */
233static int mei_wd_ops_stop(struct watchdog_device *wd_dev)
234{
235 struct mei_device *dev;
236 dev = pci_get_drvdata(mei_device);
237
238 if (!dev)
239 return -ENODEV;
240
241 mutex_lock(&dev->device_lock);
242 mei_wd_stop(dev, false);
243 mutex_unlock(&dev->device_lock);
244
245 return 0;
246}
247
248/*
Oren Weil8c4a59a2011-09-07 09:03:11 +0300249 * mei_wd_ops_ping - wd ping command from the watchdog core.
250 *
251 * @wd_dev - watchdog device struct
252 *
253 * returns 0 if success, negative errno code for failure
254 */
255static int mei_wd_ops_ping(struct watchdog_device *wd_dev)
256{
257 int ret = 0;
258 struct mei_device *dev;
259 dev = pci_get_drvdata(mei_device);
260
261 if (!dev)
262 return -ENODEV;
263
264 mutex_lock(&dev->device_lock);
265
266 if (dev->wd_cl.state != MEI_FILE_CONNECTED) {
Tomas Winkler13c398a2012-04-03 23:34:59 +0300267 dev_err(&dev->pdev->dev, "wd: not connected.\n");
Oren Weil8c4a59a2011-09-07 09:03:11 +0300268 ret = -ENODEV;
269 goto end;
270 }
271
272 /* Check if we can send the ping to HW*/
273 if (dev->mei_host_buffer_is_empty &&
274 mei_flow_ctrl_creds(dev, &dev->wd_cl) > 0) {
275
276 dev->mei_host_buffer_is_empty = false;
Tomas Winkler13c398a2012-04-03 23:34:59 +0300277 dev_dbg(&dev->pdev->dev, "wd: sending ping\n");
Oren Weil8c4a59a2011-09-07 09:03:11 +0300278
279 if (mei_wd_send(dev)) {
Tomas Winkler13c398a2012-04-03 23:34:59 +0300280 dev_err(&dev->pdev->dev, "wd: send failed.\n");
Oren Weil8c4a59a2011-09-07 09:03:11 +0300281 ret = -EIO;
282 goto end;
283 }
284
285 if (mei_flow_ctrl_reduce(dev, &dev->wd_cl)) {
Tomas Winkler13c398a2012-04-03 23:34:59 +0300286 dev_err(&dev->pdev->dev,
287 "wd: mei_flow_ctrl_reduce() failed.\n");
Oren Weil8c4a59a2011-09-07 09:03:11 +0300288 ret = -EIO;
289 goto end;
290 }
291
292 } else {
293 dev->wd_pending = true;
294 }
295
296end:
297 mutex_unlock(&dev->device_lock);
298 return ret;
299}
300
301/*
Oren Weil55d33852011-09-07 09:03:12 +0300302 * mei_wd_ops_set_timeout - wd set timeout command from the watchdog core.
303 *
304 * @wd_dev - watchdog device struct
305 * @timeout - timeout value to set
306 *
307 * returns 0 if success, negative errno code for failure
308 */
309static int mei_wd_ops_set_timeout(struct watchdog_device *wd_dev, unsigned int timeout)
310{
311 struct mei_device *dev;
312 dev = pci_get_drvdata(mei_device);
313
314 if (!dev)
315 return -ENODEV;
316
317 /* Check Timeout value */
318 if (timeout < AMT_WD_MIN_TIMEOUT || timeout > AMT_WD_MAX_TIMEOUT)
319 return -EINVAL;
320
321 mutex_lock(&dev->device_lock);
322
323 dev->wd_timeout = timeout;
Wim Van Sebroeck0197c1c2012-02-29 20:20:58 +0100324 wd_dev->timeout = timeout;
Oren Weil55d33852011-09-07 09:03:12 +0300325 mei_wd_set_start_timeout(dev, dev->wd_timeout);
326
327 mutex_unlock(&dev->device_lock);
328
329 return 0;
330}
331
332/*
Oren Weil4a3cafd2011-09-07 09:03:10 +0300333 * Watchdog Device structs
334 */
Tomas Winkler575c1e42011-10-23 18:30:39 +0200335static const struct watchdog_ops wd_ops = {
Oren Weil4a3cafd2011-09-07 09:03:10 +0300336 .owner = THIS_MODULE,
337 .start = mei_wd_ops_start,
338 .stop = mei_wd_ops_stop,
Oren Weil8c4a59a2011-09-07 09:03:11 +0300339 .ping = mei_wd_ops_ping,
Oren Weil55d33852011-09-07 09:03:12 +0300340 .set_timeout = mei_wd_ops_set_timeout,
Oren Weil4a3cafd2011-09-07 09:03:10 +0300341};
Tomas Winkler575c1e42011-10-23 18:30:39 +0200342static const struct watchdog_info wd_info = {
Oren Weil4a3cafd2011-09-07 09:03:10 +0300343 .identity = INTEL_AMT_WATCHDOG_ID,
Tomas Winkler49fbd3f2012-06-11 12:18:31 +0300344 .options = WDIOF_KEEPALIVEPING | WDIOF_ALARMONLY,
Oren Weil4a3cafd2011-09-07 09:03:10 +0300345};
346
Tomas Winkler68d923d2012-04-02 20:32:38 +0300347static struct watchdog_device amt_wd_dev = {
Oren Weil4a3cafd2011-09-07 09:03:10 +0300348 .info = &wd_info,
349 .ops = &wd_ops,
350 .timeout = AMT_WD_DEFAULT_TIMEOUT,
351 .min_timeout = AMT_WD_MIN_TIMEOUT,
352 .max_timeout = AMT_WD_MAX_TIMEOUT,
353};
354
355
Tomas Winkler70cd5332011-12-22 18:50:50 +0200356void mei_watchdog_register(struct mei_device *dev)
357{
358 dev_dbg(&dev->pdev->dev, "dev->wd_timeout =%d.\n", dev->wd_timeout);
359
360 dev->wd_due_counter = !!dev->wd_timeout;
361
362 if (watchdog_register_device(&amt_wd_dev)) {
Tomas Winkler13c398a2012-04-03 23:34:59 +0300363 dev_err(&dev->pdev->dev,
364 "wd: unable to register watchdog device.\n");
Tomas Winkler70cd5332011-12-22 18:50:50 +0200365 dev->wd_interface_reg = false;
366 } else {
Tomas Winkler13c398a2012-04-03 23:34:59 +0300367 dev_dbg(&dev->pdev->dev,
368 "wd: successfully register watchdog interface.\n");
Tomas Winkler70cd5332011-12-22 18:50:50 +0200369 dev->wd_interface_reg = true;
370 }
371}
372
373void mei_watchdog_unregister(struct mei_device *dev)
374{
375 if (dev->wd_interface_reg)
376 watchdog_unregister_device(&amt_wd_dev);
377 dev->wd_interface_reg = false;
378}
379