Oren Weil | 3ceb3e6 | 2011-05-15 13:43:47 +0300 | [diff] [blame] | 1 | /* |
| 2 | * |
| 3 | * Intel Management Engine Interface (Intel MEI) Linux driver |
Tomas Winkler | 733ba91 | 2012-02-09 19:25:53 +0200 | [diff] [blame] | 4 | * Copyright (c) 2003-2012, Intel Corporation. |
Oren Weil | 3ceb3e6 | 2011-05-15 13:43:47 +0300 | [diff] [blame] | 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 | #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 Weil | 9ce178e | 2011-09-07 09:03:09 +0300 | [diff] [blame] | 22 | #include <linux/watchdog.h> |
Oren Weil | 3ceb3e6 | 2011-05-15 13:43:47 +0300 | [diff] [blame] | 23 | |
| 24 | #include "mei_dev.h" |
| 25 | #include "hw.h" |
| 26 | #include "interface.h" |
Tomas Winkler | 4f3afe1 | 2012-05-09 16:38:59 +0300 | [diff] [blame] | 27 | #include <linux/mei.h> |
Oren Weil | 3ceb3e6 | 2011-05-15 13:43:47 +0300 | [diff] [blame] | 28 | |
Oren Weil | 3ceb3e6 | 2011-05-15 13:43:47 +0300 | [diff] [blame] | 29 | static const u8 mei_start_wd_params[] = { 0x02, 0x12, 0x13, 0x10 }; |
| 30 | static const u8 mei_stop_wd_params[] = { 0x02, 0x02, 0x14, 0x10 }; |
| 31 | |
| 32 | const 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 Winkler | 70cd533 | 2011-12-22 18:50:50 +0200 | [diff] [blame] | 38 | /* |
| 39 | * AMT Watchdog Device |
| 40 | */ |
| 41 | #define INTEL_AMT_WATCHDOG_ID "INTCAMT" |
| 42 | |
Oren Weil | 3ceb3e6 | 2011-05-15 13:43:47 +0300 | [diff] [blame] | 43 | /* UUIDs for AMT F/W clients */ |
| 44 | const uuid_le mei_wd_guid = UUID_LE(0x05B79A6F, 0x4628, 0x4D7F, 0x89, |
| 45 | 0x9D, 0xA9, 0x15, 0x14, 0xCB, |
| 46 | 0x32, 0xAB); |
| 47 | |
Tomas Winkler | 5192dda | 2012-03-19 17:58:43 +0200 | [diff] [blame] | 48 | static void mei_wd_set_start_timeout(struct mei_device *dev, u16 timeout) |
Oren Weil | 3ceb3e6 | 2011-05-15 13:43:47 +0300 | [diff] [blame] | 49 | { |
Tomas Winkler | 13c398a | 2012-04-03 23:34:59 +0300 | [diff] [blame] | 50 | dev_dbg(&dev->pdev->dev, "wd: set timeout=%d.\n", timeout); |
Tomas Winkler | 248ffdf | 2012-08-16 19:39:42 +0300 | [diff] [blame] | 51 | memcpy(dev->wd_data, mei_start_wd_params, MEI_WD_HDR_SIZE); |
| 52 | memcpy(dev->wd_data + MEI_WD_HDR_SIZE, &timeout, sizeof(u16)); |
Oren Weil | 3ceb3e6 | 2011-05-15 13:43:47 +0300 | [diff] [blame] | 53 | } |
| 54 | |
| 55 | /** |
Tomas Winkler | 7cb1ba9 | 2012-07-04 19:24:51 +0300 | [diff] [blame] | 56 | * mei_wd_host_init - connect to the watchdog client |
Oren Weil | 3ceb3e6 | 2011-05-15 13:43:47 +0300 | [diff] [blame] | 57 | * |
| 58 | * @dev: the device structure |
Tomas Winkler | 9487eb0 | 2012-04-03 23:34:58 +0300 | [diff] [blame] | 59 | * returns -ENENT if wd client cannot be found |
| 60 | * -EIO if write has failed |
Tomas Winkler | 7cb1ba9 | 2012-07-04 19:24:51 +0300 | [diff] [blame] | 61 | * 0 on success |
Oren Weil | 3ceb3e6 | 2011-05-15 13:43:47 +0300 | [diff] [blame] | 62 | */ |
Tomas Winkler | 9487eb0 | 2012-04-03 23:34:58 +0300 | [diff] [blame] | 63 | int mei_wd_host_init(struct mei_device *dev) |
Oren Weil | 3ceb3e6 | 2011-05-15 13:43:47 +0300 | [diff] [blame] | 64 | { |
Tomas Winkler | c95efb7 | 2011-05-25 17:28:21 +0300 | [diff] [blame] | 65 | mei_cl_init(&dev->wd_cl, dev); |
Oren Weil | 3ceb3e6 | 2011-05-15 13:43:47 +0300 | [diff] [blame] | 66 | |
| 67 | /* look for WD client and connect to it */ |
| 68 | dev->wd_cl.state = MEI_FILE_DISCONNECTED; |
Tomas Winkler | 248ffdf | 2012-08-16 19:39:42 +0300 | [diff] [blame] | 69 | dev->wd_timeout = MEI_WD_DEFAULT_TIMEOUT; |
Tomas Winkler | c216fde | 2012-08-16 19:39:43 +0300 | [diff] [blame] | 70 | dev->wd_state = MEI_WD_IDLE; |
Oren Weil | 3ceb3e6 | 2011-05-15 13:43:47 +0300 | [diff] [blame] | 71 | |
Oren Weil | 2ad64ba | 2011-09-07 09:03:15 +0300 | [diff] [blame] | 72 | /* find ME WD client */ |
Tomas Winkler | 07b509b | 2012-07-23 14:05:39 +0300 | [diff] [blame] | 73 | mei_me_cl_update_filext(dev, &dev->wd_cl, |
Oren Weil | 2ad64ba | 2011-09-07 09:03:15 +0300 | [diff] [blame] | 74 | &mei_wd_guid, MEI_WD_HOST_CLIENT_ID); |
Oren Weil | 3ceb3e6 | 2011-05-15 13:43:47 +0300 | [diff] [blame] | 75 | |
Tomas Winkler | 9487eb0 | 2012-04-03 23:34:58 +0300 | [diff] [blame] | 76 | dev_dbg(&dev->pdev->dev, "wd: check client\n"); |
| 77 | if (MEI_FILE_CONNECTING != dev->wd_cl.state) { |
| 78 | dev_info(&dev->pdev->dev, "wd: failed to find the client\n"); |
| 79 | return -ENOENT; |
Oren Weil | 3ceb3e6 | 2011-05-15 13:43:47 +0300 | [diff] [blame] | 80 | } |
Oren Weil | 617aa39 | 2011-09-07 09:03:07 +0300 | [diff] [blame] | 81 | |
Tomas Winkler | 9487eb0 | 2012-04-03 23:34:58 +0300 | [diff] [blame] | 82 | if (mei_connect(dev, &dev->wd_cl)) { |
| 83 | dev_err(&dev->pdev->dev, "wd: failed to connect to the client\n"); |
| 84 | dev->wd_cl.state = MEI_FILE_DISCONNECTED; |
| 85 | dev->wd_cl.host_client_id = 0; |
| 86 | return -EIO; |
| 87 | } |
| 88 | dev->wd_cl.timer_count = CONNECT_TIMEOUT; |
| 89 | |
| 90 | return 0; |
Oren Weil | 3ceb3e6 | 2011-05-15 13:43:47 +0300 | [diff] [blame] | 91 | } |
| 92 | |
| 93 | /** |
| 94 | * mei_wd_send - sends watch dog message to fw. |
| 95 | * |
| 96 | * @dev: the device structure |
| 97 | * |
| 98 | * returns 0 if success, |
| 99 | * -EIO when message send fails |
| 100 | * -EINVAL when invalid message is to be sent |
| 101 | */ |
| 102 | int mei_wd_send(struct mei_device *dev) |
| 103 | { |
| 104 | struct mei_msg_hdr *mei_hdr; |
| 105 | |
| 106 | mei_hdr = (struct mei_msg_hdr *) &dev->wr_msg_buf[0]; |
| 107 | mei_hdr->host_addr = dev->wd_cl.host_client_id; |
| 108 | mei_hdr->me_addr = dev->wd_cl.me_client_id; |
| 109 | mei_hdr->msg_complete = 1; |
| 110 | mei_hdr->reserved = 0; |
| 111 | |
Tomas Winkler | 248ffdf | 2012-08-16 19:39:42 +0300 | [diff] [blame] | 112 | if (!memcmp(dev->wd_data, mei_start_wd_params, MEI_WD_HDR_SIZE)) |
| 113 | mei_hdr->length = MEI_WD_START_MSG_SIZE; |
| 114 | else if (!memcmp(dev->wd_data, mei_stop_wd_params, MEI_WD_HDR_SIZE)) |
| 115 | mei_hdr->length = MEI_WD_STOP_MSG_SIZE; |
Oren Weil | 3ceb3e6 | 2011-05-15 13:43:47 +0300 | [diff] [blame] | 116 | else |
| 117 | return -EINVAL; |
| 118 | |
Tomas Winkler | 1ccb7b6 | 2012-03-14 14:39:42 +0200 | [diff] [blame] | 119 | return mei_write_message(dev, mei_hdr, dev->wd_data, mei_hdr->length); |
Oren Weil | 3ceb3e6 | 2011-05-15 13:43:47 +0300 | [diff] [blame] | 120 | } |
| 121 | |
Oren Weil | d8deca3 | 2011-09-07 09:03:17 +0300 | [diff] [blame] | 122 | /** |
| 123 | * mei_wd_stop - sends watchdog stop message to fw. |
| 124 | * |
| 125 | * @dev: the device structure |
| 126 | * @preserve: indicate if to keep the timeout value |
| 127 | * |
| 128 | * returns 0 if success, |
| 129 | * -EIO when message send fails |
| 130 | * -EINVAL when invalid message is to be sent |
| 131 | */ |
Tomas Winkler | c216fde | 2012-08-16 19:39:43 +0300 | [diff] [blame] | 132 | int mei_wd_stop(struct mei_device *dev) |
Oren Weil | 3ceb3e6 | 2011-05-15 13:43:47 +0300 | [diff] [blame] | 133 | { |
| 134 | int ret; |
Oren Weil | 3ceb3e6 | 2011-05-15 13:43:47 +0300 | [diff] [blame] | 135 | |
Tomas Winkler | c216fde | 2012-08-16 19:39:43 +0300 | [diff] [blame] | 136 | if (dev->wd_cl.state != MEI_FILE_CONNECTED || |
| 137 | dev->wd_state != MEI_WD_RUNNING) |
Oren Weil | 3ceb3e6 | 2011-05-15 13:43:47 +0300 | [diff] [blame] | 138 | return 0; |
| 139 | |
Tomas Winkler | 248ffdf | 2012-08-16 19:39:42 +0300 | [diff] [blame] | 140 | memcpy(dev->wd_data, mei_stop_wd_params, MEI_WD_STOP_MSG_SIZE); |
Tomas Winkler | c216fde | 2012-08-16 19:39:43 +0300 | [diff] [blame] | 141 | |
| 142 | dev->wd_state = MEI_WD_STOPPING; |
Oren Weil | 3ceb3e6 | 2011-05-15 13:43:47 +0300 | [diff] [blame] | 143 | |
| 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 Winkler | eb9af0a | 2011-05-25 17:28:22 +0300 | [diff] [blame] | 150 | dev->mei_host_buffer_is_empty = false; |
Oren Weil | 3ceb3e6 | 2011-05-15 13:43:47 +0300 | [diff] [blame] | 151 | |
| 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 Winkler | 13c398a | 2012-04-03 23:34:59 +0300 | [diff] [blame] | 157 | dev_err(&dev->pdev->dev, "wd: send stop failed\n"); |
Oren Weil | 3ceb3e6 | 2011-05-15 13:43:47 +0300 | [diff] [blame] | 158 | } |
| 159 | |
Tomas Winkler | eb9af0a | 2011-05-25 17:28:22 +0300 | [diff] [blame] | 160 | dev->wd_pending = false; |
Oren Weil | 3ceb3e6 | 2011-05-15 13:43:47 +0300 | [diff] [blame] | 161 | } else { |
Tomas Winkler | eb9af0a | 2011-05-25 17:28:22 +0300 | [diff] [blame] | 162 | dev->wd_pending = true; |
Oren Weil | 3ceb3e6 | 2011-05-15 13:43:47 +0300 | [diff] [blame] | 163 | } |
Tomas Winkler | c216fde | 2012-08-16 19:39:43 +0300 | [diff] [blame] | 164 | |
Oren Weil | 3ceb3e6 | 2011-05-15 13:43:47 +0300 | [diff] [blame] | 165 | mutex_unlock(&dev->device_lock); |
| 166 | |
| 167 | ret = wait_event_interruptible_timeout(dev->wait_stop_wd, |
Tomas Winkler | c216fde | 2012-08-16 19:39:43 +0300 | [diff] [blame] | 168 | dev->wd_state == MEI_WD_IDLE, |
| 169 | msecs_to_jiffies(MEI_WD_STOP_TIMEOUT)); |
Oren Weil | 3ceb3e6 | 2011-05-15 13:43:47 +0300 | [diff] [blame] | 170 | mutex_lock(&dev->device_lock); |
Tomas Winkler | c216fde | 2012-08-16 19:39:43 +0300 | [diff] [blame] | 171 | if (dev->wd_state == MEI_WD_IDLE) { |
Tomas Winkler | 13c398a | 2012-04-03 23:34:59 +0300 | [diff] [blame] | 172 | dev_dbg(&dev->pdev->dev, "wd: stop completed ret=%d.\n", ret); |
Tomas Winkler | a534bb6 | 2011-06-13 16:39:31 +0300 | [diff] [blame] | 173 | ret = 0; |
| 174 | } else { |
| 175 | if (!ret) |
| 176 | ret = -ETIMEDOUT; |
| 177 | dev_warn(&dev->pdev->dev, |
Tomas Winkler | 13c398a | 2012-04-03 23:34:59 +0300 | [diff] [blame] | 178 | "wd: stop failed to complete ret=%d.\n", ret); |
Tomas Winkler | a534bb6 | 2011-06-13 16:39:31 +0300 | [diff] [blame] | 179 | } |
Oren Weil | 3ceb3e6 | 2011-05-15 13:43:47 +0300 | [diff] [blame] | 180 | |
Oren Weil | 3ceb3e6 | 2011-05-15 13:43:47 +0300 | [diff] [blame] | 181 | out: |
| 182 | return ret; |
| 183 | } |
| 184 | |
Oren Weil | 4a3cafd | 2011-09-07 09:03:10 +0300 | [diff] [blame] | 185 | /* |
| 186 | * mei_wd_ops_start - wd start command from the watchdog core. |
| 187 | * |
| 188 | * @wd_dev - watchdog device struct |
| 189 | * |
| 190 | * returns 0 if success, negative errno code for failure |
| 191 | */ |
| 192 | static int mei_wd_ops_start(struct watchdog_device *wd_dev) |
| 193 | { |
| 194 | int err = -ENODEV; |
| 195 | struct mei_device *dev; |
| 196 | |
Tomas Winkler | 09649a8 | 2012-08-16 19:39:44 +0300 | [diff] [blame^] | 197 | dev = watchdog_get_drvdata(wd_dev); |
Oren Weil | 4a3cafd | 2011-09-07 09:03:10 +0300 | [diff] [blame] | 198 | if (!dev) |
| 199 | return -ENODEV; |
| 200 | |
| 201 | mutex_lock(&dev->device_lock); |
| 202 | |
Tomas Winkler | b210d75 | 2012-08-07 00:03:56 +0300 | [diff] [blame] | 203 | if (dev->dev_state != MEI_DEV_ENABLED) { |
Tomas Winkler | 13c398a | 2012-04-03 23:34:59 +0300 | [diff] [blame] | 204 | dev_dbg(&dev->pdev->dev, |
Tomas Winkler | b210d75 | 2012-08-07 00:03:56 +0300 | [diff] [blame] | 205 | "wd: dev_state != MEI_DEV_ENABLED dev_state = %s\n", |
| 206 | mei_dev_state_str(dev->dev_state)); |
Oren Weil | 4a3cafd | 2011-09-07 09:03:10 +0300 | [diff] [blame] | 207 | goto end_unlock; |
| 208 | } |
| 209 | |
| 210 | if (dev->wd_cl.state != MEI_FILE_CONNECTED) { |
Tomas Winkler | 13c398a | 2012-04-03 23:34:59 +0300 | [diff] [blame] | 211 | dev_dbg(&dev->pdev->dev, |
| 212 | "MEI Driver is not connected to Watchdog Client\n"); |
Oren Weil | 4a3cafd | 2011-09-07 09:03:10 +0300 | [diff] [blame] | 213 | goto end_unlock; |
| 214 | } |
| 215 | |
Oren Weil | 55d3385 | 2011-09-07 09:03:12 +0300 | [diff] [blame] | 216 | mei_wd_set_start_timeout(dev, dev->wd_timeout); |
Oren Weil | 4a3cafd | 2011-09-07 09:03:10 +0300 | [diff] [blame] | 217 | |
| 218 | err = 0; |
| 219 | end_unlock: |
| 220 | mutex_unlock(&dev->device_lock); |
| 221 | return err; |
| 222 | } |
| 223 | |
| 224 | /* |
| 225 | * mei_wd_ops_stop - wd stop command from the watchdog core. |
| 226 | * |
| 227 | * @wd_dev - watchdog device struct |
| 228 | * |
| 229 | * returns 0 if success, negative errno code for failure |
| 230 | */ |
| 231 | static int mei_wd_ops_stop(struct watchdog_device *wd_dev) |
| 232 | { |
| 233 | struct mei_device *dev; |
Oren Weil | 4a3cafd | 2011-09-07 09:03:10 +0300 | [diff] [blame] | 234 | |
Tomas Winkler | 09649a8 | 2012-08-16 19:39:44 +0300 | [diff] [blame^] | 235 | dev = watchdog_get_drvdata(wd_dev); |
Oren Weil | 4a3cafd | 2011-09-07 09:03:10 +0300 | [diff] [blame] | 236 | if (!dev) |
| 237 | return -ENODEV; |
| 238 | |
| 239 | mutex_lock(&dev->device_lock); |
Tomas Winkler | c216fde | 2012-08-16 19:39:43 +0300 | [diff] [blame] | 240 | mei_wd_stop(dev); |
Oren Weil | 4a3cafd | 2011-09-07 09:03:10 +0300 | [diff] [blame] | 241 | mutex_unlock(&dev->device_lock); |
| 242 | |
| 243 | return 0; |
| 244 | } |
| 245 | |
| 246 | /* |
Oren Weil | 8c4a59a | 2011-09-07 09:03:11 +0300 | [diff] [blame] | 247 | * mei_wd_ops_ping - wd ping command from the watchdog core. |
| 248 | * |
| 249 | * @wd_dev - watchdog device struct |
| 250 | * |
| 251 | * returns 0 if success, negative errno code for failure |
| 252 | */ |
| 253 | static int mei_wd_ops_ping(struct watchdog_device *wd_dev) |
| 254 | { |
| 255 | int ret = 0; |
| 256 | struct mei_device *dev; |
Oren Weil | 8c4a59a | 2011-09-07 09:03:11 +0300 | [diff] [blame] | 257 | |
Tomas Winkler | 09649a8 | 2012-08-16 19:39:44 +0300 | [diff] [blame^] | 258 | dev = watchdog_get_drvdata(wd_dev); |
Oren Weil | 8c4a59a | 2011-09-07 09:03:11 +0300 | [diff] [blame] | 259 | if (!dev) |
| 260 | return -ENODEV; |
| 261 | |
| 262 | mutex_lock(&dev->device_lock); |
| 263 | |
| 264 | if (dev->wd_cl.state != MEI_FILE_CONNECTED) { |
Tomas Winkler | 13c398a | 2012-04-03 23:34:59 +0300 | [diff] [blame] | 265 | dev_err(&dev->pdev->dev, "wd: not connected.\n"); |
Oren Weil | 8c4a59a | 2011-09-07 09:03:11 +0300 | [diff] [blame] | 266 | ret = -ENODEV; |
| 267 | goto end; |
| 268 | } |
| 269 | |
Tomas Winkler | c216fde | 2012-08-16 19:39:43 +0300 | [diff] [blame] | 270 | dev->wd_state = MEI_WD_RUNNING; |
| 271 | |
Oren Weil | 8c4a59a | 2011-09-07 09:03:11 +0300 | [diff] [blame] | 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 Winkler | 13c398a | 2012-04-03 23:34:59 +0300 | [diff] [blame] | 277 | dev_dbg(&dev->pdev->dev, "wd: sending ping\n"); |
Oren Weil | 8c4a59a | 2011-09-07 09:03:11 +0300 | [diff] [blame] | 278 | |
| 279 | if (mei_wd_send(dev)) { |
Tomas Winkler | 13c398a | 2012-04-03 23:34:59 +0300 | [diff] [blame] | 280 | dev_err(&dev->pdev->dev, "wd: send failed.\n"); |
Oren Weil | 8c4a59a | 2011-09-07 09:03:11 +0300 | [diff] [blame] | 281 | ret = -EIO; |
| 282 | goto end; |
| 283 | } |
| 284 | |
| 285 | if (mei_flow_ctrl_reduce(dev, &dev->wd_cl)) { |
Tomas Winkler | 13c398a | 2012-04-03 23:34:59 +0300 | [diff] [blame] | 286 | dev_err(&dev->pdev->dev, |
| 287 | "wd: mei_flow_ctrl_reduce() failed.\n"); |
Oren Weil | 8c4a59a | 2011-09-07 09:03:11 +0300 | [diff] [blame] | 288 | ret = -EIO; |
| 289 | goto end; |
| 290 | } |
| 291 | |
| 292 | } else { |
| 293 | dev->wd_pending = true; |
| 294 | } |
| 295 | |
| 296 | end: |
| 297 | mutex_unlock(&dev->device_lock); |
| 298 | return ret; |
| 299 | } |
| 300 | |
| 301 | /* |
Oren Weil | 55d3385 | 2011-09-07 09:03:12 +0300 | [diff] [blame] | 302 | * 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 | */ |
| 309 | static int mei_wd_ops_set_timeout(struct watchdog_device *wd_dev, unsigned int timeout) |
| 310 | { |
| 311 | struct mei_device *dev; |
Oren Weil | 55d3385 | 2011-09-07 09:03:12 +0300 | [diff] [blame] | 312 | |
Tomas Winkler | 09649a8 | 2012-08-16 19:39:44 +0300 | [diff] [blame^] | 313 | dev = watchdog_get_drvdata(wd_dev); |
Oren Weil | 55d3385 | 2011-09-07 09:03:12 +0300 | [diff] [blame] | 314 | if (!dev) |
| 315 | return -ENODEV; |
| 316 | |
| 317 | /* Check Timeout value */ |
Tomas Winkler | 248ffdf | 2012-08-16 19:39:42 +0300 | [diff] [blame] | 318 | if (timeout < MEI_WD_MIN_TIMEOUT || timeout > MEI_WD_MAX_TIMEOUT) |
Oren Weil | 55d3385 | 2011-09-07 09:03:12 +0300 | [diff] [blame] | 319 | return -EINVAL; |
| 320 | |
| 321 | mutex_lock(&dev->device_lock); |
| 322 | |
| 323 | dev->wd_timeout = timeout; |
Wim Van Sebroeck | 0197c1c | 2012-02-29 20:20:58 +0100 | [diff] [blame] | 324 | wd_dev->timeout = timeout; |
Oren Weil | 55d3385 | 2011-09-07 09:03:12 +0300 | [diff] [blame] | 325 | mei_wd_set_start_timeout(dev, dev->wd_timeout); |
| 326 | |
| 327 | mutex_unlock(&dev->device_lock); |
| 328 | |
| 329 | return 0; |
| 330 | } |
| 331 | |
| 332 | /* |
Oren Weil | 4a3cafd | 2011-09-07 09:03:10 +0300 | [diff] [blame] | 333 | * Watchdog Device structs |
| 334 | */ |
Tomas Winkler | 575c1e4 | 2011-10-23 18:30:39 +0200 | [diff] [blame] | 335 | static const struct watchdog_ops wd_ops = { |
Oren Weil | 4a3cafd | 2011-09-07 09:03:10 +0300 | [diff] [blame] | 336 | .owner = THIS_MODULE, |
| 337 | .start = mei_wd_ops_start, |
| 338 | .stop = mei_wd_ops_stop, |
Oren Weil | 8c4a59a | 2011-09-07 09:03:11 +0300 | [diff] [blame] | 339 | .ping = mei_wd_ops_ping, |
Oren Weil | 55d3385 | 2011-09-07 09:03:12 +0300 | [diff] [blame] | 340 | .set_timeout = mei_wd_ops_set_timeout, |
Oren Weil | 4a3cafd | 2011-09-07 09:03:10 +0300 | [diff] [blame] | 341 | }; |
Tomas Winkler | 575c1e4 | 2011-10-23 18:30:39 +0200 | [diff] [blame] | 342 | static const struct watchdog_info wd_info = { |
Oren Weil | 4a3cafd | 2011-09-07 09:03:10 +0300 | [diff] [blame] | 343 | .identity = INTEL_AMT_WATCHDOG_ID, |
Tomas Winkler | c8df729 | 2012-08-16 19:39:41 +0300 | [diff] [blame] | 344 | .options = WDIOF_KEEPALIVEPING | |
| 345 | WDIOF_SETTIMEOUT | |
| 346 | WDIOF_ALARMONLY, |
Oren Weil | 4a3cafd | 2011-09-07 09:03:10 +0300 | [diff] [blame] | 347 | }; |
| 348 | |
Tomas Winkler | 68d923d | 2012-04-02 20:32:38 +0300 | [diff] [blame] | 349 | static struct watchdog_device amt_wd_dev = { |
Oren Weil | 4a3cafd | 2011-09-07 09:03:10 +0300 | [diff] [blame] | 350 | .info = &wd_info, |
| 351 | .ops = &wd_ops, |
Tomas Winkler | 248ffdf | 2012-08-16 19:39:42 +0300 | [diff] [blame] | 352 | .timeout = MEI_WD_DEFAULT_TIMEOUT, |
| 353 | .min_timeout = MEI_WD_MIN_TIMEOUT, |
| 354 | .max_timeout = MEI_WD_MAX_TIMEOUT, |
Oren Weil | 4a3cafd | 2011-09-07 09:03:10 +0300 | [diff] [blame] | 355 | }; |
| 356 | |
| 357 | |
Tomas Winkler | 09649a8 | 2012-08-16 19:39:44 +0300 | [diff] [blame^] | 358 | void mei_watchdog_register(struct mei_device *dev) |
Tomas Winkler | 70cd533 | 2011-12-22 18:50:50 +0200 | [diff] [blame] | 359 | { |
Tomas Winkler | 70cd533 | 2011-12-22 18:50:50 +0200 | [diff] [blame] | 360 | if (watchdog_register_device(&amt_wd_dev)) { |
Tomas Winkler | 13c398a | 2012-04-03 23:34:59 +0300 | [diff] [blame] | 361 | dev_err(&dev->pdev->dev, |
| 362 | "wd: unable to register watchdog device.\n"); |
Tomas Winkler | 70cd533 | 2011-12-22 18:50:50 +0200 | [diff] [blame] | 363 | dev->wd_interface_reg = false; |
Tomas Winkler | 09649a8 | 2012-08-16 19:39:44 +0300 | [diff] [blame^] | 364 | return; |
Tomas Winkler | 70cd533 | 2011-12-22 18:50:50 +0200 | [diff] [blame] | 365 | } |
Tomas Winkler | 09649a8 | 2012-08-16 19:39:44 +0300 | [diff] [blame^] | 366 | |
| 367 | dev_dbg(&dev->pdev->dev, |
| 368 | "wd: successfully register watchdog interface.\n"); |
| 369 | dev->wd_interface_reg = true; |
| 370 | watchdog_set_drvdata(&amt_wd_dev, dev); |
Tomas Winkler | 70cd533 | 2011-12-22 18:50:50 +0200 | [diff] [blame] | 371 | } |
| 372 | |
| 373 | void mei_watchdog_unregister(struct mei_device *dev) |
| 374 | { |
Tomas Winkler | 09649a8 | 2012-08-16 19:39:44 +0300 | [diff] [blame^] | 375 | if (!dev->wd_interface_reg) |
| 376 | return; |
| 377 | |
| 378 | watchdog_set_drvdata(&amt_wd_dev, NULL); |
| 379 | watchdog_unregister_device(&amt_wd_dev); |
Tomas Winkler | 70cd533 | 2011-12-22 18:50:50 +0200 | [diff] [blame] | 380 | dev->wd_interface_reg = false; |
| 381 | } |
| 382 | |