Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 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 | |
Tomas Winkler | 4fcbc99 | 2014-03-18 22:51:55 +0200 | [diff] [blame] | 17 | #include <linux/export.h> |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 18 | #include <linux/sched.h> |
| 19 | #include <linux/wait.h> |
Tomas Winkler | 180ea05 | 2014-03-18 22:52:02 +0200 | [diff] [blame] | 20 | #include <linux/pm_runtime.h> |
Tomas Winkler | 1f18035 | 2014-09-29 16:31:46 +0300 | [diff] [blame] | 21 | #include <linux/slab.h> |
| 22 | |
| 23 | #include <linux/mei.h> |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 24 | |
| 25 | #include "mei_dev.h" |
Tomas Winkler | 0edb23f | 2013-01-08 23:07:12 +0200 | [diff] [blame] | 26 | #include "hbm.h" |
Alexander Usyskin | 12d0066 | 2014-02-17 15:13:23 +0200 | [diff] [blame] | 27 | #include "client.h" |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 28 | |
Tomas Winkler | 89778d6 | 2014-08-21 14:29:16 +0300 | [diff] [blame] | 29 | static const char *mei_hbm_status_str(enum mei_hbm_status status) |
| 30 | { |
| 31 | #define MEI_HBM_STATUS(status) case MEI_HBMS_##status: return #status |
| 32 | switch (status) { |
| 33 | MEI_HBM_STATUS(SUCCESS); |
| 34 | MEI_HBM_STATUS(CLIENT_NOT_FOUND); |
| 35 | MEI_HBM_STATUS(ALREADY_EXISTS); |
| 36 | MEI_HBM_STATUS(REJECTED); |
| 37 | MEI_HBM_STATUS(INVALID_PARAMETER); |
| 38 | MEI_HBM_STATUS(NOT_ALLOWED); |
| 39 | MEI_HBM_STATUS(ALREADY_STARTED); |
| 40 | MEI_HBM_STATUS(NOT_STARTED); |
| 41 | default: return "unknown"; |
| 42 | } |
| 43 | #undef MEI_HBM_STATUS |
| 44 | }; |
| 45 | |
Alexander Usyskin | 285e299 | 2014-02-17 15:13:20 +0200 | [diff] [blame] | 46 | static const char *mei_cl_conn_status_str(enum mei_cl_connect_status status) |
| 47 | { |
| 48 | #define MEI_CL_CS(status) case MEI_CL_CONN_##status: return #status |
| 49 | switch (status) { |
| 50 | MEI_CL_CS(SUCCESS); |
| 51 | MEI_CL_CS(NOT_FOUND); |
| 52 | MEI_CL_CS(ALREADY_STARTED); |
| 53 | MEI_CL_CS(OUT_OF_RESOURCES); |
| 54 | MEI_CL_CS(MESSAGE_SMALL); |
Alexander Usyskin | 71e117f | 2015-07-29 14:59:33 +0300 | [diff] [blame] | 55 | MEI_CL_CS(NOT_ALLOWED); |
Alexander Usyskin | 285e299 | 2014-02-17 15:13:20 +0200 | [diff] [blame] | 56 | default: return "unknown"; |
| 57 | } |
| 58 | #undef MEI_CL_CCS |
| 59 | } |
| 60 | |
Alexander Usyskin | 1beeb4b | 2014-09-29 16:31:33 +0300 | [diff] [blame] | 61 | const char *mei_hbm_state_str(enum mei_hbm_state state) |
| 62 | { |
| 63 | #define MEI_HBM_STATE(state) case MEI_HBM_##state: return #state |
| 64 | switch (state) { |
| 65 | MEI_HBM_STATE(IDLE); |
| 66 | MEI_HBM_STATE(STARTING); |
| 67 | MEI_HBM_STATE(STARTED); |
| 68 | MEI_HBM_STATE(ENUM_CLIENTS); |
| 69 | MEI_HBM_STATE(CLIENT_PROPERTIES); |
| 70 | MEI_HBM_STATE(STOPPED); |
| 71 | default: |
| 72 | return "unknown"; |
| 73 | } |
| 74 | #undef MEI_HBM_STATE |
| 75 | } |
| 76 | |
Alexander Usyskin | 285e299 | 2014-02-17 15:13:20 +0200 | [diff] [blame] | 77 | /** |
| 78 | * mei_cl_conn_status_to_errno - convert client connect response |
| 79 | * status to error code |
| 80 | * |
| 81 | * @status: client connect response status |
| 82 | * |
Alexander Usyskin | a8605ea | 2014-09-29 16:31:49 +0300 | [diff] [blame] | 83 | * Return: corresponding error code |
Alexander Usyskin | 285e299 | 2014-02-17 15:13:20 +0200 | [diff] [blame] | 84 | */ |
| 85 | static int mei_cl_conn_status_to_errno(enum mei_cl_connect_status status) |
| 86 | { |
| 87 | switch (status) { |
| 88 | case MEI_CL_CONN_SUCCESS: return 0; |
| 89 | case MEI_CL_CONN_NOT_FOUND: return -ENOTTY; |
| 90 | case MEI_CL_CONN_ALREADY_STARTED: return -EBUSY; |
| 91 | case MEI_CL_CONN_OUT_OF_RESOURCES: return -EBUSY; |
| 92 | case MEI_CL_CONN_MESSAGE_SMALL: return -EINVAL; |
Alexander Usyskin | 71e117f | 2015-07-29 14:59:33 +0300 | [diff] [blame] | 93 | case MEI_CL_CONN_NOT_ALLOWED: return -EBUSY; |
Alexander Usyskin | 285e299 | 2014-02-17 15:13:20 +0200 | [diff] [blame] | 94 | default: return -EINVAL; |
| 95 | } |
| 96 | } |
| 97 | |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 98 | /** |
Tomas Winkler | 84b3294 | 2014-05-07 16:51:28 +0300 | [diff] [blame] | 99 | * mei_hbm_idle - set hbm to idle state |
| 100 | * |
| 101 | * @dev: the device structure |
| 102 | */ |
| 103 | void mei_hbm_idle(struct mei_device *dev) |
| 104 | { |
| 105 | dev->init_clients_timer = 0; |
| 106 | dev->hbm_state = MEI_HBM_IDLE; |
| 107 | } |
| 108 | |
| 109 | /** |
| 110 | * mei_hbm_reset - reset hbm counters and book keeping data structurs |
| 111 | * |
| 112 | * @dev: the device structure |
| 113 | */ |
| 114 | void mei_hbm_reset(struct mei_device *dev) |
| 115 | { |
Tomas Winkler | 79563db | 2015-01-11 00:07:16 +0200 | [diff] [blame] | 116 | mei_me_cl_rm_all(dev); |
Tomas Winkler | 84b3294 | 2014-05-07 16:51:28 +0300 | [diff] [blame] | 117 | |
| 118 | mei_hbm_idle(dev); |
| 119 | } |
| 120 | |
| 121 | /** |
Tomas Winkler | 2190fe2 | 2014-09-29 16:31:40 +0300 | [diff] [blame] | 122 | * mei_hbm_hdr - construct hbm header |
| 123 | * |
| 124 | * @hdr: hbm header |
| 125 | * @length: payload length |
| 126 | */ |
| 127 | |
| 128 | static inline void mei_hbm_hdr(struct mei_msg_hdr *hdr, size_t length) |
| 129 | { |
| 130 | hdr->host_addr = 0; |
| 131 | hdr->me_addr = 0; |
| 132 | hdr->length = length; |
| 133 | hdr->msg_complete = 1; |
| 134 | hdr->reserved = 0; |
| 135 | } |
| 136 | |
| 137 | /** |
Tomas Winkler | cd51ed6 | 2012-12-25 19:06:09 +0200 | [diff] [blame] | 138 | * mei_hbm_cl_hdr - construct client hbm header |
Masanari Iida | 393b148 | 2013-04-05 01:05:05 +0900 | [diff] [blame] | 139 | * |
Tomas Winkler | 68d1aa6 | 2014-08-21 14:29:11 +0300 | [diff] [blame] | 140 | * @cl: client |
Tomas Winkler | cd51ed6 | 2012-12-25 19:06:09 +0200 | [diff] [blame] | 141 | * @hbm_cmd: host bus message command |
| 142 | * @buf: buffer for cl header |
| 143 | * @len: buffer length |
| 144 | */ |
| 145 | static inline |
| 146 | void mei_hbm_cl_hdr(struct mei_cl *cl, u8 hbm_cmd, void *buf, size_t len) |
| 147 | { |
| 148 | struct mei_hbm_cl_cmd *cmd = buf; |
| 149 | |
| 150 | memset(cmd, 0, len); |
| 151 | |
| 152 | cmd->hbm_cmd = hbm_cmd; |
Alexander Usyskin | 1df629e | 2015-05-04 09:43:56 +0300 | [diff] [blame] | 153 | cmd->host_addr = mei_cl_host_addr(cl); |
Alexander Usyskin | d49ed64 | 2015-05-04 09:43:54 +0300 | [diff] [blame] | 154 | cmd->me_addr = mei_cl_me_id(cl); |
Tomas Winkler | cd51ed6 | 2012-12-25 19:06:09 +0200 | [diff] [blame] | 155 | } |
| 156 | |
| 157 | /** |
Tomas Winkler | 68d1aa6 | 2014-08-21 14:29:11 +0300 | [diff] [blame] | 158 | * mei_hbm_cl_write - write simple hbm client message |
| 159 | * |
| 160 | * @dev: the device structure |
| 161 | * @cl: client |
| 162 | * @hbm_cmd: host bus message command |
| 163 | * @len: buffer length |
Alexander Usyskin | ce23139 | 2014-09-29 16:31:50 +0300 | [diff] [blame] | 164 | * |
| 165 | * Return: 0 on success, <0 on failure. |
Tomas Winkler | 68d1aa6 | 2014-08-21 14:29:11 +0300 | [diff] [blame] | 166 | */ |
| 167 | static inline |
| 168 | int mei_hbm_cl_write(struct mei_device *dev, |
| 169 | struct mei_cl *cl, u8 hbm_cmd, size_t len) |
| 170 | { |
| 171 | struct mei_msg_hdr *mei_hdr = &dev->wr_msg.hdr; |
| 172 | |
| 173 | mei_hbm_hdr(mei_hdr, len); |
| 174 | mei_hbm_cl_hdr(cl, hbm_cmd, dev->wr_msg.data, len); |
| 175 | |
| 176 | return mei_write_message(dev, mei_hdr, dev->wr_msg.data); |
| 177 | } |
| 178 | |
| 179 | /** |
Tomas Winkler | 2af89db | 2014-08-21 14:29:20 +0300 | [diff] [blame] | 180 | * mei_hbm_cl_addr_equal - check if the client's and |
| 181 | * the message address match |
Tomas Winkler | cd51ed6 | 2012-12-25 19:06:09 +0200 | [diff] [blame] | 182 | * |
Tomas Winkler | 2af89db | 2014-08-21 14:29:20 +0300 | [diff] [blame] | 183 | * @cl: client |
| 184 | * @cmd: hbm client message |
Tomas Winkler | cd51ed6 | 2012-12-25 19:06:09 +0200 | [diff] [blame] | 185 | * |
Alexander Usyskin | a8605ea | 2014-09-29 16:31:49 +0300 | [diff] [blame] | 186 | * Return: true if addresses are the same |
Tomas Winkler | cd51ed6 | 2012-12-25 19:06:09 +0200 | [diff] [blame] | 187 | */ |
| 188 | static inline |
Tomas Winkler | 2af89db | 2014-08-21 14:29:20 +0300 | [diff] [blame] | 189 | bool mei_hbm_cl_addr_equal(struct mei_cl *cl, struct mei_hbm_cl_cmd *cmd) |
Tomas Winkler | cd51ed6 | 2012-12-25 19:06:09 +0200 | [diff] [blame] | 190 | { |
Alexander Usyskin | 1df629e | 2015-05-04 09:43:56 +0300 | [diff] [blame] | 191 | return mei_cl_host_addr(cl) == cmd->host_addr && |
Alexander Usyskin | d49ed64 | 2015-05-04 09:43:54 +0300 | [diff] [blame] | 192 | mei_cl_me_id(cl) == cmd->me_addr; |
Tomas Winkler | cd51ed6 | 2012-12-25 19:06:09 +0200 | [diff] [blame] | 193 | } |
| 194 | |
Alexander Usyskin | cb02efc | 2014-08-21 14:29:19 +0300 | [diff] [blame] | 195 | /** |
Tomas Winkler | 2af89db | 2014-08-21 14:29:20 +0300 | [diff] [blame] | 196 | * mei_hbm_cl_find_by_cmd - find recipient client |
| 197 | * |
| 198 | * @dev: the device structure |
| 199 | * @buf: a buffer with hbm cl command |
| 200 | * |
Alexander Usyskin | a8605ea | 2014-09-29 16:31:49 +0300 | [diff] [blame] | 201 | * Return: the recipient client or NULL if not found |
Tomas Winkler | 2af89db | 2014-08-21 14:29:20 +0300 | [diff] [blame] | 202 | */ |
| 203 | static inline |
| 204 | struct mei_cl *mei_hbm_cl_find_by_cmd(struct mei_device *dev, void *buf) |
| 205 | { |
| 206 | struct mei_hbm_cl_cmd *cmd = (struct mei_hbm_cl_cmd *)buf; |
| 207 | struct mei_cl *cl; |
| 208 | |
| 209 | list_for_each_entry(cl, &dev->file_list, link) |
| 210 | if (mei_hbm_cl_addr_equal(cl, cmd)) |
| 211 | return cl; |
| 212 | return NULL; |
| 213 | } |
| 214 | |
| 215 | |
| 216 | /** |
Alexander Usyskin | cb02efc | 2014-08-21 14:29:19 +0300 | [diff] [blame] | 217 | * mei_hbm_start_wait - wait for start response message. |
| 218 | * |
| 219 | * @dev: the device structure |
| 220 | * |
Alexander Usyskin | a8605ea | 2014-09-29 16:31:49 +0300 | [diff] [blame] | 221 | * Return: 0 on success and < 0 on failure |
Alexander Usyskin | cb02efc | 2014-08-21 14:29:19 +0300 | [diff] [blame] | 222 | */ |
Tomas Winkler | 9b0d5ef | 2013-04-18 23:03:48 +0300 | [diff] [blame] | 223 | int mei_hbm_start_wait(struct mei_device *dev) |
| 224 | { |
| 225 | int ret; |
Alexander Usyskin | cb02efc | 2014-08-21 14:29:19 +0300 | [diff] [blame] | 226 | |
| 227 | if (dev->hbm_state > MEI_HBM_STARTING) |
Tomas Winkler | 9b0d5ef | 2013-04-18 23:03:48 +0300 | [diff] [blame] | 228 | return 0; |
| 229 | |
| 230 | mutex_unlock(&dev->device_lock); |
Alexander Usyskin | cb02efc | 2014-08-21 14:29:19 +0300 | [diff] [blame] | 231 | ret = wait_event_timeout(dev->wait_hbm_start, |
| 232 | dev->hbm_state != MEI_HBM_STARTING, |
Tomas Winkler | 7d93e58 | 2014-01-14 23:10:10 +0200 | [diff] [blame] | 233 | mei_secs_to_jiffies(MEI_HBM_TIMEOUT)); |
Tomas Winkler | 9b0d5ef | 2013-04-18 23:03:48 +0300 | [diff] [blame] | 234 | mutex_lock(&dev->device_lock); |
| 235 | |
Alexander Usyskin | cb02efc | 2014-08-21 14:29:19 +0300 | [diff] [blame] | 236 | if (ret == 0 && (dev->hbm_state <= MEI_HBM_STARTING)) { |
Tomas Winkler | 9b0d5ef | 2013-04-18 23:03:48 +0300 | [diff] [blame] | 237 | dev->hbm_state = MEI_HBM_IDLE; |
Tomas Winkler | 2bf94cab | 2014-09-29 16:31:42 +0300 | [diff] [blame] | 238 | dev_err(dev->dev, "waiting for mei start failed\n"); |
Alexander Usyskin | 7ca96aa | 2014-02-19 17:35:49 +0200 | [diff] [blame] | 239 | return -ETIME; |
Tomas Winkler | 9b0d5ef | 2013-04-18 23:03:48 +0300 | [diff] [blame] | 240 | } |
| 241 | return 0; |
| 242 | } |
| 243 | |
Tomas Winkler | 6bbda15 | 2012-12-25 19:06:12 +0200 | [diff] [blame] | 244 | /** |
Tomas Winkler | 8120e72 | 2012-12-25 19:06:11 +0200 | [diff] [blame] | 245 | * mei_hbm_start_req - sends start request message. |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 246 | * |
| 247 | * @dev: the device structure |
Tomas Winkler | 544f946 | 2014-01-08 20:19:21 +0200 | [diff] [blame] | 248 | * |
Alexander Usyskin | a8605ea | 2014-09-29 16:31:49 +0300 | [diff] [blame] | 249 | * Return: 0 on success and < 0 on failure |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 250 | */ |
Tomas Winkler | 9b0d5ef | 2013-04-18 23:03:48 +0300 | [diff] [blame] | 251 | int mei_hbm_start_req(struct mei_device *dev) |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 252 | { |
Tomas Winkler | e46f187 | 2012-12-25 19:06:10 +0200 | [diff] [blame] | 253 | struct mei_msg_hdr *mei_hdr = &dev->wr_msg.hdr; |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 254 | struct hbm_host_version_request *start_req; |
| 255 | const size_t len = sizeof(struct hbm_host_version_request); |
Tomas Winkler | 544f946 | 2014-01-08 20:19:21 +0200 | [diff] [blame] | 256 | int ret; |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 257 | |
Tomas Winkler | 5ca2d38 | 2014-08-21 14:29:13 +0300 | [diff] [blame] | 258 | mei_hbm_reset(dev); |
| 259 | |
Tomas Winkler | e46f187 | 2012-12-25 19:06:10 +0200 | [diff] [blame] | 260 | mei_hbm_hdr(mei_hdr, len); |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 261 | |
| 262 | /* host start message */ |
Tomas Winkler | e46f187 | 2012-12-25 19:06:10 +0200 | [diff] [blame] | 263 | start_req = (struct hbm_host_version_request *)dev->wr_msg.data; |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 264 | memset(start_req, 0, len); |
| 265 | start_req->hbm_cmd = HOST_START_REQ_CMD; |
| 266 | start_req->host_version.major_version = HBM_MAJOR_VERSION; |
| 267 | start_req->host_version.minor_version = HBM_MINOR_VERSION; |
| 268 | |
Tomas Winkler | 9b0d5ef | 2013-04-18 23:03:48 +0300 | [diff] [blame] | 269 | dev->hbm_state = MEI_HBM_IDLE; |
Tomas Winkler | 544f946 | 2014-01-08 20:19:21 +0200 | [diff] [blame] | 270 | ret = mei_write_message(dev, mei_hdr, dev->wr_msg.data); |
| 271 | if (ret) { |
Tomas Winkler | 2bf94cab | 2014-09-29 16:31:42 +0300 | [diff] [blame] | 272 | dev_err(dev->dev, "version message write failed: ret = %d\n", |
Tomas Winkler | 544f946 | 2014-01-08 20:19:21 +0200 | [diff] [blame] | 273 | ret); |
| 274 | return ret; |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 275 | } |
Tomas Winkler | 544f946 | 2014-01-08 20:19:21 +0200 | [diff] [blame] | 276 | |
Alexander Usyskin | cb02efc | 2014-08-21 14:29:19 +0300 | [diff] [blame] | 277 | dev->hbm_state = MEI_HBM_STARTING; |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 278 | dev->init_clients_timer = MEI_CLIENTS_INIT_TIMEOUT; |
Tomas Winkler | 9b0d5ef | 2013-04-18 23:03:48 +0300 | [diff] [blame] | 279 | return 0; |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 280 | } |
| 281 | |
Alexander Usyskin | 99c2658 | 2015-10-13 15:02:39 +0300 | [diff] [blame] | 282 | /** |
Tomas Winkler | 8120e72 | 2012-12-25 19:06:11 +0200 | [diff] [blame] | 283 | * mei_hbm_enum_clients_req - sends enumeration client request message. |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 284 | * |
| 285 | * @dev: the device structure |
| 286 | * |
Alexander Usyskin | a8605ea | 2014-09-29 16:31:49 +0300 | [diff] [blame] | 287 | * Return: 0 on success and < 0 on failure |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 288 | */ |
Tomas Winkler | 544f946 | 2014-01-08 20:19:21 +0200 | [diff] [blame] | 289 | static int mei_hbm_enum_clients_req(struct mei_device *dev) |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 290 | { |
Tomas Winkler | e46f187 | 2012-12-25 19:06:10 +0200 | [diff] [blame] | 291 | struct mei_msg_hdr *mei_hdr = &dev->wr_msg.hdr; |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 292 | struct hbm_host_enum_request *enum_req; |
| 293 | const size_t len = sizeof(struct hbm_host_enum_request); |
Tomas Winkler | 544f946 | 2014-01-08 20:19:21 +0200 | [diff] [blame] | 294 | int ret; |
| 295 | |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 296 | /* enumerate clients */ |
Tomas Winkler | e46f187 | 2012-12-25 19:06:10 +0200 | [diff] [blame] | 297 | mei_hbm_hdr(mei_hdr, len); |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 298 | |
Tomas Winkler | e46f187 | 2012-12-25 19:06:10 +0200 | [diff] [blame] | 299 | enum_req = (struct hbm_host_enum_request *)dev->wr_msg.data; |
| 300 | memset(enum_req, 0, len); |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 301 | enum_req->hbm_cmd = HOST_ENUM_REQ_CMD; |
Alexander Usyskin | 27f476e | 2016-02-07 23:35:42 +0200 | [diff] [blame] | 302 | enum_req->flags |= dev->hbm_f_dc_supported ? |
| 303 | MEI_HBM_ENUM_F_ALLOW_ADD : 0; |
| 304 | enum_req->flags |= dev->hbm_f_ie_supported ? |
| 305 | MEI_HBM_ENUM_F_IMMEDIATE_ENUM : 0; |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 306 | |
Tomas Winkler | 544f946 | 2014-01-08 20:19:21 +0200 | [diff] [blame] | 307 | ret = mei_write_message(dev, mei_hdr, dev->wr_msg.data); |
| 308 | if (ret) { |
Tomas Winkler | 2bf94cab | 2014-09-29 16:31:42 +0300 | [diff] [blame] | 309 | dev_err(dev->dev, "enumeration request write failed: ret = %d.\n", |
Tomas Winkler | 544f946 | 2014-01-08 20:19:21 +0200 | [diff] [blame] | 310 | ret); |
| 311 | return ret; |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 312 | } |
Tomas Winkler | 9b0d5ef | 2013-04-18 23:03:48 +0300 | [diff] [blame] | 313 | dev->hbm_state = MEI_HBM_ENUM_CLIENTS; |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 314 | dev->init_clients_timer = MEI_CLIENTS_INIT_TIMEOUT; |
Tomas Winkler | 544f946 | 2014-01-08 20:19:21 +0200 | [diff] [blame] | 315 | return 0; |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 316 | } |
| 317 | |
Alexander Usyskin | 99c2658 | 2015-10-13 15:02:39 +0300 | [diff] [blame] | 318 | /** |
Tomas Winkler | 5ca2d38 | 2014-08-21 14:29:13 +0300 | [diff] [blame] | 319 | * mei_hbm_me_cl_add - add new me client to the list |
| 320 | * |
| 321 | * @dev: the device structure |
| 322 | * @res: hbm property response |
| 323 | * |
Alexander Usyskin | a8605ea | 2014-09-29 16:31:49 +0300 | [diff] [blame] | 324 | * Return: 0 on success and -ENOMEM on allocation failure |
Tomas Winkler | 5ca2d38 | 2014-08-21 14:29:13 +0300 | [diff] [blame] | 325 | */ |
| 326 | |
| 327 | static int mei_hbm_me_cl_add(struct mei_device *dev, |
| 328 | struct hbm_props_response *res) |
| 329 | { |
| 330 | struct mei_me_client *me_cl; |
Tomas Winkler | 79563db | 2015-01-11 00:07:16 +0200 | [diff] [blame] | 331 | const uuid_le *uuid = &res->client_properties.protocol_name; |
| 332 | |
| 333 | mei_me_cl_rm_by_uuid(dev, uuid); |
Tomas Winkler | 5ca2d38 | 2014-08-21 14:29:13 +0300 | [diff] [blame] | 334 | |
| 335 | me_cl = kzalloc(sizeof(struct mei_me_client), GFP_KERNEL); |
| 336 | if (!me_cl) |
| 337 | return -ENOMEM; |
| 338 | |
Tomas Winkler | 79563db | 2015-01-11 00:07:16 +0200 | [diff] [blame] | 339 | mei_me_cl_init(me_cl); |
| 340 | |
Tomas Winkler | 5ca2d38 | 2014-08-21 14:29:13 +0300 | [diff] [blame] | 341 | me_cl->props = res->client_properties; |
| 342 | me_cl->client_id = res->me_addr; |
| 343 | me_cl->mei_flow_ctrl_creds = 0; |
| 344 | |
Tomas Winkler | b7d8851 | 2015-02-10 10:39:31 +0200 | [diff] [blame] | 345 | mei_me_cl_add(dev, me_cl); |
| 346 | |
Tomas Winkler | 5ca2d38 | 2014-08-21 14:29:13 +0300 | [diff] [blame] | 347 | return 0; |
| 348 | } |
| 349 | |
Tomas Winkler | 8120e72 | 2012-12-25 19:06:11 +0200 | [diff] [blame] | 350 | /** |
Tomas Winkler | 70ef835 | 2015-07-23 21:37:12 +0300 | [diff] [blame] | 351 | * mei_hbm_add_cl_resp - send response to fw on client add request |
| 352 | * |
| 353 | * @dev: the device structure |
| 354 | * @addr: me address |
| 355 | * @status: response status |
| 356 | * |
| 357 | * Return: 0 on success and < 0 on failure |
| 358 | */ |
| 359 | static int mei_hbm_add_cl_resp(struct mei_device *dev, u8 addr, u8 status) |
| 360 | { |
| 361 | struct mei_msg_hdr *mei_hdr = &dev->wr_msg.hdr; |
| 362 | struct hbm_add_client_response *resp; |
| 363 | const size_t len = sizeof(struct hbm_add_client_response); |
| 364 | int ret; |
| 365 | |
| 366 | dev_dbg(dev->dev, "adding client response\n"); |
| 367 | |
| 368 | resp = (struct hbm_add_client_response *)dev->wr_msg.data; |
| 369 | |
| 370 | mei_hbm_hdr(mei_hdr, len); |
| 371 | memset(resp, 0, sizeof(struct hbm_add_client_response)); |
| 372 | |
| 373 | resp->hbm_cmd = MEI_HBM_ADD_CLIENT_RES_CMD; |
| 374 | resp->me_addr = addr; |
| 375 | resp->status = status; |
| 376 | |
| 377 | ret = mei_write_message(dev, mei_hdr, dev->wr_msg.data); |
| 378 | if (ret) |
| 379 | dev_err(dev->dev, "add client response write failed: ret = %d\n", |
| 380 | ret); |
| 381 | return ret; |
| 382 | } |
| 383 | |
| 384 | /** |
| 385 | * mei_hbm_fw_add_cl_req - request from the fw to add a client |
| 386 | * |
| 387 | * @dev: the device structure |
| 388 | * @req: add client request |
| 389 | * |
| 390 | * Return: 0 on success and < 0 on failure |
| 391 | */ |
| 392 | static int mei_hbm_fw_add_cl_req(struct mei_device *dev, |
| 393 | struct hbm_add_client_request *req) |
| 394 | { |
| 395 | int ret; |
| 396 | u8 status = MEI_HBMS_SUCCESS; |
| 397 | |
| 398 | BUILD_BUG_ON(sizeof(struct hbm_add_client_request) != |
| 399 | sizeof(struct hbm_props_response)); |
| 400 | |
| 401 | ret = mei_hbm_me_cl_add(dev, (struct hbm_props_response *)req); |
| 402 | if (ret) |
| 403 | status = !MEI_HBMS_SUCCESS; |
| 404 | |
Alexander Usyskin | a816a00 | 2016-02-07 23:35:41 +0200 | [diff] [blame] | 405 | if (dev->dev_state == MEI_DEV_ENABLED) |
| 406 | schedule_work(&dev->bus_rescan_work); |
| 407 | |
Tomas Winkler | 70ef835 | 2015-07-23 21:37:12 +0300 | [diff] [blame] | 408 | return mei_hbm_add_cl_resp(dev, req->me_addr, status); |
| 409 | } |
| 410 | |
| 411 | /** |
Tomas Winkler | 965ae37 | 2015-07-26 09:54:16 +0300 | [diff] [blame] | 412 | * mei_hbm_cl_notify_req - send notification request |
| 413 | * |
| 414 | * @dev: the device structure |
| 415 | * @cl: a client to disconnect from |
| 416 | * @start: true for start false for stop |
| 417 | * |
| 418 | * Return: 0 on success and -EIO on write failure |
| 419 | */ |
| 420 | int mei_hbm_cl_notify_req(struct mei_device *dev, |
| 421 | struct mei_cl *cl, u8 start) |
| 422 | { |
| 423 | |
| 424 | struct mei_msg_hdr *mei_hdr = &dev->wr_msg.hdr; |
| 425 | struct hbm_notification_request *req; |
| 426 | const size_t len = sizeof(struct hbm_notification_request); |
| 427 | int ret; |
| 428 | |
| 429 | mei_hbm_hdr(mei_hdr, len); |
| 430 | mei_hbm_cl_hdr(cl, MEI_HBM_NOTIFY_REQ_CMD, dev->wr_msg.data, len); |
| 431 | |
| 432 | req = (struct hbm_notification_request *)dev->wr_msg.data; |
| 433 | req->start = start; |
| 434 | |
| 435 | ret = mei_write_message(dev, mei_hdr, dev->wr_msg.data); |
| 436 | if (ret) |
| 437 | dev_err(dev->dev, "notify request failed: ret = %d\n", ret); |
| 438 | |
| 439 | return ret; |
| 440 | } |
| 441 | |
| 442 | /** |
| 443 | * notify_res_to_fop - convert notification response to the proper |
| 444 | * notification FOP |
| 445 | * |
| 446 | * @cmd: client notification start response command |
| 447 | * |
| 448 | * Return: MEI_FOP_NOTIFY_START or MEI_FOP_NOTIFY_STOP; |
| 449 | */ |
| 450 | static inline enum mei_cb_file_ops notify_res_to_fop(struct mei_hbm_cl_cmd *cmd) |
| 451 | { |
| 452 | struct hbm_notification_response *rs = |
| 453 | (struct hbm_notification_response *)cmd; |
| 454 | |
Tomas Winkler | 51678cc | 2015-07-26 09:54:18 +0300 | [diff] [blame] | 455 | return mei_cl_notify_req2fop(rs->start); |
Tomas Winkler | 965ae37 | 2015-07-26 09:54:16 +0300 | [diff] [blame] | 456 | } |
| 457 | |
| 458 | /** |
| 459 | * mei_hbm_cl_notify_start_res - update the client state according |
| 460 | * notify start response |
| 461 | * |
| 462 | * @dev: the device structure |
| 463 | * @cl: mei host client |
| 464 | * @cmd: client notification start response command |
| 465 | */ |
| 466 | static void mei_hbm_cl_notify_start_res(struct mei_device *dev, |
| 467 | struct mei_cl *cl, |
| 468 | struct mei_hbm_cl_cmd *cmd) |
| 469 | { |
| 470 | struct hbm_notification_response *rs = |
| 471 | (struct hbm_notification_response *)cmd; |
| 472 | |
| 473 | cl_dbg(dev, cl, "hbm: notify start response status=%d\n", rs->status); |
| 474 | |
| 475 | if (rs->status == MEI_HBMS_SUCCESS || |
| 476 | rs->status == MEI_HBMS_ALREADY_STARTED) { |
| 477 | cl->notify_en = true; |
| 478 | cl->status = 0; |
| 479 | } else { |
| 480 | cl->status = -EINVAL; |
| 481 | } |
| 482 | } |
| 483 | |
| 484 | /** |
| 485 | * mei_hbm_cl_notify_stop_res - update the client state according |
| 486 | * notify stop response |
| 487 | * |
| 488 | * @dev: the device structure |
| 489 | * @cl: mei host client |
| 490 | * @cmd: client notification stop response command |
| 491 | */ |
| 492 | static void mei_hbm_cl_notify_stop_res(struct mei_device *dev, |
| 493 | struct mei_cl *cl, |
| 494 | struct mei_hbm_cl_cmd *cmd) |
| 495 | { |
| 496 | struct hbm_notification_response *rs = |
| 497 | (struct hbm_notification_response *)cmd; |
| 498 | |
| 499 | cl_dbg(dev, cl, "hbm: notify stop response status=%d\n", rs->status); |
| 500 | |
| 501 | if (rs->status == MEI_HBMS_SUCCESS || |
| 502 | rs->status == MEI_HBMS_NOT_STARTED) { |
| 503 | cl->notify_en = false; |
| 504 | cl->status = 0; |
| 505 | } else { |
| 506 | /* TODO: spec is not clear yet about other possible issues */ |
| 507 | cl->status = -EINVAL; |
| 508 | } |
| 509 | } |
| 510 | |
| 511 | /** |
| 512 | * mei_hbm_cl_notify - signal notification event |
| 513 | * |
| 514 | * @dev: the device structure |
| 515 | * @cmd: notification client message |
| 516 | */ |
| 517 | static void mei_hbm_cl_notify(struct mei_device *dev, |
| 518 | struct mei_hbm_cl_cmd *cmd) |
| 519 | { |
| 520 | struct mei_cl *cl; |
| 521 | |
| 522 | cl = mei_hbm_cl_find_by_cmd(dev, cmd); |
Tomas Winkler | 237092b | 2015-07-26 09:54:22 +0300 | [diff] [blame] | 523 | if (cl) |
| 524 | mei_cl_notify(cl); |
Tomas Winkler | 965ae37 | 2015-07-26 09:54:16 +0300 | [diff] [blame] | 525 | } |
| 526 | |
| 527 | /** |
Masanari Iida | 393b148 | 2013-04-05 01:05:05 +0900 | [diff] [blame] | 528 | * mei_hbm_prop_req - request property for a single client |
Tomas Winkler | 8120e72 | 2012-12-25 19:06:11 +0200 | [diff] [blame] | 529 | * |
| 530 | * @dev: the device structure |
Alexander Usyskin | cc25aa9 | 2016-04-17 12:16:02 -0400 | [diff] [blame^] | 531 | * @start_idx: client index to start search |
Tomas Winkler | 8120e72 | 2012-12-25 19:06:11 +0200 | [diff] [blame] | 532 | * |
Alexander Usyskin | a8605ea | 2014-09-29 16:31:49 +0300 | [diff] [blame] | 533 | * Return: 0 on success and < 0 on failure |
Tomas Winkler | 8120e72 | 2012-12-25 19:06:11 +0200 | [diff] [blame] | 534 | */ |
Alexander Usyskin | cc25aa9 | 2016-04-17 12:16:02 -0400 | [diff] [blame^] | 535 | static int mei_hbm_prop_req(struct mei_device *dev, unsigned long start_idx) |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 536 | { |
Tomas Winkler | e46f187 | 2012-12-25 19:06:10 +0200 | [diff] [blame] | 537 | struct mei_msg_hdr *mei_hdr = &dev->wr_msg.hdr; |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 538 | struct hbm_props_request *prop_req; |
| 539 | const size_t len = sizeof(struct hbm_props_request); |
Alexander Usyskin | cc25aa9 | 2016-04-17 12:16:02 -0400 | [diff] [blame^] | 540 | unsigned long addr; |
Tomas Winkler | 544f946 | 2014-01-08 20:19:21 +0200 | [diff] [blame] | 541 | int ret; |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 542 | |
Alexander Usyskin | cc25aa9 | 2016-04-17 12:16:02 -0400 | [diff] [blame^] | 543 | addr = find_next_bit(dev->me_clients_map, MEI_CLIENTS_MAX, start_idx); |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 544 | |
| 545 | /* We got all client properties */ |
Alexander Usyskin | cc25aa9 | 2016-04-17 12:16:02 -0400 | [diff] [blame^] | 546 | if (addr == MEI_CLIENTS_MAX) { |
Tomas Winkler | 9b0d5ef | 2013-04-18 23:03:48 +0300 | [diff] [blame] | 547 | dev->hbm_state = MEI_HBM_STARTED; |
Alexander Usyskin | 025fb79 | 2016-02-07 23:35:43 +0200 | [diff] [blame] | 548 | mei_host_client_init(dev); |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 549 | |
| 550 | return 0; |
| 551 | } |
| 552 | |
Tomas Winkler | e46f187 | 2012-12-25 19:06:10 +0200 | [diff] [blame] | 553 | mei_hbm_hdr(mei_hdr, len); |
| 554 | prop_req = (struct hbm_props_request *)dev->wr_msg.data; |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 555 | |
| 556 | memset(prop_req, 0, sizeof(struct hbm_props_request)); |
| 557 | |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 558 | prop_req->hbm_cmd = HOST_CLIENT_PROPERTIES_REQ_CMD; |
Alexander Usyskin | cc25aa9 | 2016-04-17 12:16:02 -0400 | [diff] [blame^] | 559 | prop_req->me_addr = addr; |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 560 | |
Tomas Winkler | 544f946 | 2014-01-08 20:19:21 +0200 | [diff] [blame] | 561 | ret = mei_write_message(dev, mei_hdr, dev->wr_msg.data); |
| 562 | if (ret) { |
Tomas Winkler | 2bf94cab | 2014-09-29 16:31:42 +0300 | [diff] [blame] | 563 | dev_err(dev->dev, "properties request write failed: ret = %d\n", |
Tomas Winkler | 544f946 | 2014-01-08 20:19:21 +0200 | [diff] [blame] | 564 | ret); |
| 565 | return ret; |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 566 | } |
| 567 | |
| 568 | dev->init_clients_timer = MEI_CLIENTS_INIT_TIMEOUT; |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 569 | |
| 570 | return 0; |
| 571 | } |
| 572 | |
Alexander Usyskin | 99c2658 | 2015-10-13 15:02:39 +0300 | [diff] [blame] | 573 | /** |
Tomas Winkler | 4fcbc99 | 2014-03-18 22:51:55 +0200 | [diff] [blame] | 574 | * mei_hbm_pg - sends pg command |
| 575 | * |
| 576 | * @dev: the device structure |
| 577 | * @pg_cmd: the pg command code |
| 578 | * |
Alexander Usyskin | a8605ea | 2014-09-29 16:31:49 +0300 | [diff] [blame] | 579 | * Return: -EIO on write failure |
Tomas Winkler | bae1cc7 | 2014-08-21 14:29:21 +0300 | [diff] [blame] | 580 | * -EOPNOTSUPP if the operation is not supported by the protocol |
Tomas Winkler | 4fcbc99 | 2014-03-18 22:51:55 +0200 | [diff] [blame] | 581 | */ |
| 582 | int mei_hbm_pg(struct mei_device *dev, u8 pg_cmd) |
| 583 | { |
| 584 | struct mei_msg_hdr *mei_hdr = &dev->wr_msg.hdr; |
| 585 | struct hbm_power_gate *req; |
| 586 | const size_t len = sizeof(struct hbm_power_gate); |
| 587 | int ret; |
| 588 | |
Tomas Winkler | bae1cc7 | 2014-08-21 14:29:21 +0300 | [diff] [blame] | 589 | if (!dev->hbm_f_pg_supported) |
| 590 | return -EOPNOTSUPP; |
| 591 | |
Tomas Winkler | 4fcbc99 | 2014-03-18 22:51:55 +0200 | [diff] [blame] | 592 | mei_hbm_hdr(mei_hdr, len); |
| 593 | |
| 594 | req = (struct hbm_power_gate *)dev->wr_msg.data; |
| 595 | memset(req, 0, len); |
| 596 | req->hbm_cmd = pg_cmd; |
| 597 | |
| 598 | ret = mei_write_message(dev, mei_hdr, dev->wr_msg.data); |
| 599 | if (ret) |
Tomas Winkler | 2bf94cab | 2014-09-29 16:31:42 +0300 | [diff] [blame] | 600 | dev_err(dev->dev, "power gate command write failed.\n"); |
Tomas Winkler | 4fcbc99 | 2014-03-18 22:51:55 +0200 | [diff] [blame] | 601 | return ret; |
| 602 | } |
| 603 | EXPORT_SYMBOL_GPL(mei_hbm_pg); |
| 604 | |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 605 | /** |
Tomas Winkler | 6bb948c | 2014-02-12 21:41:52 +0200 | [diff] [blame] | 606 | * mei_hbm_stop_req - send stop request message |
Tomas Winkler | e46f187 | 2012-12-25 19:06:10 +0200 | [diff] [blame] | 607 | * |
Alexander Usyskin | a8605ea | 2014-09-29 16:31:49 +0300 | [diff] [blame] | 608 | * @dev: mei device |
Tomas Winkler | 6bb948c | 2014-02-12 21:41:52 +0200 | [diff] [blame] | 609 | * |
Alexander Usyskin | a8605ea | 2014-09-29 16:31:49 +0300 | [diff] [blame] | 610 | * Return: -EIO on write failure |
Tomas Winkler | e46f187 | 2012-12-25 19:06:10 +0200 | [diff] [blame] | 611 | */ |
Tomas Winkler | 6bb948c | 2014-02-12 21:41:52 +0200 | [diff] [blame] | 612 | static int mei_hbm_stop_req(struct mei_device *dev) |
Tomas Winkler | e46f187 | 2012-12-25 19:06:10 +0200 | [diff] [blame] | 613 | { |
Tomas Winkler | 6bb948c | 2014-02-12 21:41:52 +0200 | [diff] [blame] | 614 | struct mei_msg_hdr *mei_hdr = &dev->wr_msg.hdr; |
Tomas Winkler | e46f187 | 2012-12-25 19:06:10 +0200 | [diff] [blame] | 615 | struct hbm_host_stop_request *req = |
Tomas Winkler | 6bb948c | 2014-02-12 21:41:52 +0200 | [diff] [blame] | 616 | (struct hbm_host_stop_request *)dev->wr_msg.data; |
Tomas Winkler | e46f187 | 2012-12-25 19:06:10 +0200 | [diff] [blame] | 617 | const size_t len = sizeof(struct hbm_host_stop_request); |
| 618 | |
| 619 | mei_hbm_hdr(mei_hdr, len); |
| 620 | |
| 621 | memset(req, 0, len); |
| 622 | req->hbm_cmd = HOST_STOP_REQ_CMD; |
| 623 | req->reason = DRIVER_STOP_REQUEST; |
Tomas Winkler | 6bb948c | 2014-02-12 21:41:52 +0200 | [diff] [blame] | 624 | |
| 625 | return mei_write_message(dev, mei_hdr, dev->wr_msg.data); |
Tomas Winkler | e46f187 | 2012-12-25 19:06:10 +0200 | [diff] [blame] | 626 | } |
| 627 | |
| 628 | /** |
Alexander Usyskin | 83ce074 | 2014-01-08 22:31:46 +0200 | [diff] [blame] | 629 | * mei_hbm_cl_flow_control_req - sends flow control request. |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 630 | * |
| 631 | * @dev: the device structure |
Tomas Winkler | 8120e72 | 2012-12-25 19:06:11 +0200 | [diff] [blame] | 632 | * @cl: client info |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 633 | * |
Alexander Usyskin | a8605ea | 2014-09-29 16:31:49 +0300 | [diff] [blame] | 634 | * Return: -EIO on write failure |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 635 | */ |
Tomas Winkler | 8120e72 | 2012-12-25 19:06:11 +0200 | [diff] [blame] | 636 | int mei_hbm_cl_flow_control_req(struct mei_device *dev, struct mei_cl *cl) |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 637 | { |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 638 | const size_t len = sizeof(struct hbm_flow_control); |
Tomas Winkler | 92db155 | 2014-09-29 16:31:37 +0300 | [diff] [blame] | 639 | |
Tomas Winkler | 4692218 | 2014-03-16 14:35:55 +0200 | [diff] [blame] | 640 | cl_dbg(dev, cl, "sending flow control\n"); |
Tomas Winkler | 68d1aa6 | 2014-08-21 14:29:11 +0300 | [diff] [blame] | 641 | return mei_hbm_cl_write(dev, cl, MEI_FLOW_CONTROL_CMD, len); |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 642 | } |
| 643 | |
| 644 | /** |
Masanari Iida | 393b148 | 2013-04-05 01:05:05 +0900 | [diff] [blame] | 645 | * mei_hbm_add_single_flow_creds - adds single buffer credentials. |
Tomas Winkler | 6bbda15 | 2012-12-25 19:06:12 +0200 | [diff] [blame] | 646 | * |
Masanari Iida | 393b148 | 2013-04-05 01:05:05 +0900 | [diff] [blame] | 647 | * @dev: the device structure |
Tomas Winkler | 6bbda15 | 2012-12-25 19:06:12 +0200 | [diff] [blame] | 648 | * @flow: flow control. |
Alexander Usyskin | 12d0066 | 2014-02-17 15:13:23 +0200 | [diff] [blame] | 649 | * |
Alexander Usyskin | a8605ea | 2014-09-29 16:31:49 +0300 | [diff] [blame] | 650 | * Return: 0 on success, < 0 otherwise |
Tomas Winkler | 6bbda15 | 2012-12-25 19:06:12 +0200 | [diff] [blame] | 651 | */ |
Alexander Usyskin | 12d0066 | 2014-02-17 15:13:23 +0200 | [diff] [blame] | 652 | static int mei_hbm_add_single_flow_creds(struct mei_device *dev, |
Tomas Winkler | 6bbda15 | 2012-12-25 19:06:12 +0200 | [diff] [blame] | 653 | struct hbm_flow_control *flow) |
| 654 | { |
Alexander Usyskin | 12d0066 | 2014-02-17 15:13:23 +0200 | [diff] [blame] | 655 | struct mei_me_client *me_cl; |
Tomas Winkler | 79563db | 2015-01-11 00:07:16 +0200 | [diff] [blame] | 656 | int rets; |
Tomas Winkler | 6bbda15 | 2012-12-25 19:06:12 +0200 | [diff] [blame] | 657 | |
Tomas Winkler | d320832 | 2014-08-24 12:08:55 +0300 | [diff] [blame] | 658 | me_cl = mei_me_cl_by_id(dev, flow->me_addr); |
| 659 | if (!me_cl) { |
Tomas Winkler | 2bf94cab | 2014-09-29 16:31:42 +0300 | [diff] [blame] | 660 | dev_err(dev->dev, "no such me client %d\n", |
Alexander Usyskin | 12d0066 | 2014-02-17 15:13:23 +0200 | [diff] [blame] | 661 | flow->me_addr); |
Tomas Winkler | d320832 | 2014-08-24 12:08:55 +0300 | [diff] [blame] | 662 | return -ENOENT; |
Tomas Winkler | 6bbda15 | 2012-12-25 19:06:12 +0200 | [diff] [blame] | 663 | } |
Alexander Usyskin | 12d0066 | 2014-02-17 15:13:23 +0200 | [diff] [blame] | 664 | |
Tomas Winkler | 79563db | 2015-01-11 00:07:16 +0200 | [diff] [blame] | 665 | if (WARN_ON(me_cl->props.single_recv_buf == 0)) { |
| 666 | rets = -EINVAL; |
| 667 | goto out; |
| 668 | } |
Tomas Winkler | d320832 | 2014-08-24 12:08:55 +0300 | [diff] [blame] | 669 | |
| 670 | me_cl->mei_flow_ctrl_creds++; |
Tomas Winkler | 2bf94cab | 2014-09-29 16:31:42 +0300 | [diff] [blame] | 671 | dev_dbg(dev->dev, "recv flow ctrl msg ME %d (single) creds = %d.\n", |
Tomas Winkler | d320832 | 2014-08-24 12:08:55 +0300 | [diff] [blame] | 672 | flow->me_addr, me_cl->mei_flow_ctrl_creds); |
Alexander Usyskin | 12d0066 | 2014-02-17 15:13:23 +0200 | [diff] [blame] | 673 | |
Tomas Winkler | 79563db | 2015-01-11 00:07:16 +0200 | [diff] [blame] | 674 | rets = 0; |
| 675 | out: |
| 676 | mei_me_cl_put(me_cl); |
| 677 | return rets; |
Tomas Winkler | 6bbda15 | 2012-12-25 19:06:12 +0200 | [diff] [blame] | 678 | } |
| 679 | |
| 680 | /** |
| 681 | * mei_hbm_cl_flow_control_res - flow control response from me |
| 682 | * |
| 683 | * @dev: the device structure |
| 684 | * @flow_control: flow control response bus message |
| 685 | */ |
| 686 | static void mei_hbm_cl_flow_control_res(struct mei_device *dev, |
Tomas Winkler | 2af89db | 2014-08-21 14:29:20 +0300 | [diff] [blame] | 687 | struct hbm_flow_control *flow_control) |
Tomas Winkler | 6bbda15 | 2012-12-25 19:06:12 +0200 | [diff] [blame] | 688 | { |
Tomas Winkler | 31f88f5 | 2014-02-17 15:13:25 +0200 | [diff] [blame] | 689 | struct mei_cl *cl; |
Tomas Winkler | 6bbda15 | 2012-12-25 19:06:12 +0200 | [diff] [blame] | 690 | |
| 691 | if (!flow_control->host_addr) { |
| 692 | /* single receive buffer */ |
| 693 | mei_hbm_add_single_flow_creds(dev, flow_control); |
| 694 | return; |
| 695 | } |
| 696 | |
Tomas Winkler | 2af89db | 2014-08-21 14:29:20 +0300 | [diff] [blame] | 697 | cl = mei_hbm_cl_find_by_cmd(dev, flow_control); |
| 698 | if (cl) { |
| 699 | cl->mei_flow_ctrl_creds++; |
| 700 | cl_dbg(dev, cl, "flow control creds = %d.\n", |
Tomas Winkler | 5ca2d38 | 2014-08-21 14:29:13 +0300 | [diff] [blame] | 701 | cl->mei_flow_ctrl_creds); |
Tomas Winkler | 6bbda15 | 2012-12-25 19:06:12 +0200 | [diff] [blame] | 702 | } |
| 703 | } |
| 704 | |
| 705 | |
| 706 | /** |
Tomas Winkler | 8120e72 | 2012-12-25 19:06:11 +0200 | [diff] [blame] | 707 | * mei_hbm_cl_disconnect_req - sends disconnect message to fw. |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 708 | * |
| 709 | * @dev: the device structure |
Tomas Winkler | 8120e72 | 2012-12-25 19:06:11 +0200 | [diff] [blame] | 710 | * @cl: a client to disconnect from |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 711 | * |
Alexander Usyskin | a8605ea | 2014-09-29 16:31:49 +0300 | [diff] [blame] | 712 | * Return: -EIO on write failure |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 713 | */ |
Tomas Winkler | 8120e72 | 2012-12-25 19:06:11 +0200 | [diff] [blame] | 714 | int mei_hbm_cl_disconnect_req(struct mei_device *dev, struct mei_cl *cl) |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 715 | { |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 716 | const size_t len = sizeof(struct hbm_client_connect_request); |
Tomas Winkler | 92db155 | 2014-09-29 16:31:37 +0300 | [diff] [blame] | 717 | |
Tomas Winkler | 68d1aa6 | 2014-08-21 14:29:11 +0300 | [diff] [blame] | 718 | return mei_hbm_cl_write(dev, cl, CLIENT_DISCONNECT_REQ_CMD, len); |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 719 | } |
| 720 | |
| 721 | /** |
Tomas Winkler | 6bb948c | 2014-02-12 21:41:52 +0200 | [diff] [blame] | 722 | * mei_hbm_cl_disconnect_rsp - sends disconnect respose to the FW |
| 723 | * |
| 724 | * @dev: the device structure |
| 725 | * @cl: a client to disconnect from |
| 726 | * |
Alexander Usyskin | a8605ea | 2014-09-29 16:31:49 +0300 | [diff] [blame] | 727 | * Return: -EIO on write failure |
Tomas Winkler | 6bb948c | 2014-02-12 21:41:52 +0200 | [diff] [blame] | 728 | */ |
| 729 | int mei_hbm_cl_disconnect_rsp(struct mei_device *dev, struct mei_cl *cl) |
| 730 | { |
Tomas Winkler | 6bb948c | 2014-02-12 21:41:52 +0200 | [diff] [blame] | 731 | const size_t len = sizeof(struct hbm_client_connect_response); |
Tomas Winkler | 92db155 | 2014-09-29 16:31:37 +0300 | [diff] [blame] | 732 | |
Tomas Winkler | 68d1aa6 | 2014-08-21 14:29:11 +0300 | [diff] [blame] | 733 | return mei_hbm_cl_write(dev, cl, CLIENT_DISCONNECT_RES_CMD, len); |
Tomas Winkler | 6bb948c | 2014-02-12 21:41:52 +0200 | [diff] [blame] | 734 | } |
| 735 | |
| 736 | /** |
Tomas Winkler | 12f45ed | 2014-08-21 14:29:18 +0300 | [diff] [blame] | 737 | * mei_hbm_cl_disconnect_res - update the client state according |
| 738 | * disconnect response |
Tomas Winkler | 6bbda15 | 2012-12-25 19:06:12 +0200 | [diff] [blame] | 739 | * |
Alexander Usyskin | d512c20 | 2014-10-29 23:50:58 +0200 | [diff] [blame] | 740 | * @dev: the device structure |
Tomas Winkler | 12f45ed | 2014-08-21 14:29:18 +0300 | [diff] [blame] | 741 | * @cl: mei host client |
| 742 | * @cmd: disconnect client response host bus message |
Tomas Winkler | 6bbda15 | 2012-12-25 19:06:12 +0200 | [diff] [blame] | 743 | */ |
Alexander Usyskin | d512c20 | 2014-10-29 23:50:58 +0200 | [diff] [blame] | 744 | static void mei_hbm_cl_disconnect_res(struct mei_device *dev, struct mei_cl *cl, |
Tomas Winkler | 12f45ed | 2014-08-21 14:29:18 +0300 | [diff] [blame] | 745 | struct mei_hbm_cl_cmd *cmd) |
Tomas Winkler | 6bbda15 | 2012-12-25 19:06:12 +0200 | [diff] [blame] | 746 | { |
Tomas Winkler | 12f45ed | 2014-08-21 14:29:18 +0300 | [diff] [blame] | 747 | struct hbm_client_connect_response *rs = |
| 748 | (struct hbm_client_connect_response *)cmd; |
Tomas Winkler | 6bbda15 | 2012-12-25 19:06:12 +0200 | [diff] [blame] | 749 | |
Alexander Usyskin | d512c20 | 2014-10-29 23:50:58 +0200 | [diff] [blame] | 750 | cl_dbg(dev, cl, "hbm: disconnect response status=%d\n", rs->status); |
Tomas Winkler | 6bbda15 | 2012-12-25 19:06:12 +0200 | [diff] [blame] | 751 | |
Tomas Winkler | 12f45ed | 2014-08-21 14:29:18 +0300 | [diff] [blame] | 752 | if (rs->status == MEI_CL_DISCONN_SUCCESS) |
Tomas Winkler | 3c66618 | 2015-05-04 09:43:52 +0300 | [diff] [blame] | 753 | cl->state = MEI_FILE_DISCONNECT_REPLY; |
Tomas Winkler | 12f45ed | 2014-08-21 14:29:18 +0300 | [diff] [blame] | 754 | cl->status = 0; |
Tomas Winkler | 6bbda15 | 2012-12-25 19:06:12 +0200 | [diff] [blame] | 755 | } |
| 756 | |
| 757 | /** |
Tomas Winkler | 8120e72 | 2012-12-25 19:06:11 +0200 | [diff] [blame] | 758 | * mei_hbm_cl_connect_req - send connection request to specific me client |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 759 | * |
| 760 | * @dev: the device structure |
Tomas Winkler | 8120e72 | 2012-12-25 19:06:11 +0200 | [diff] [blame] | 761 | * @cl: a client to connect to |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 762 | * |
Alexander Usyskin | a8605ea | 2014-09-29 16:31:49 +0300 | [diff] [blame] | 763 | * Return: -EIO on write failure |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 764 | */ |
Tomas Winkler | 8120e72 | 2012-12-25 19:06:11 +0200 | [diff] [blame] | 765 | int mei_hbm_cl_connect_req(struct mei_device *dev, struct mei_cl *cl) |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 766 | { |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 767 | const size_t len = sizeof(struct hbm_client_connect_request); |
Tomas Winkler | 92db155 | 2014-09-29 16:31:37 +0300 | [diff] [blame] | 768 | |
Tomas Winkler | 68d1aa6 | 2014-08-21 14:29:11 +0300 | [diff] [blame] | 769 | return mei_hbm_cl_write(dev, cl, CLIENT_CONNECT_REQ_CMD, len); |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 770 | } |
| 771 | |
| 772 | /** |
Tomas Winkler | 12f45ed | 2014-08-21 14:29:18 +0300 | [diff] [blame] | 773 | * mei_hbm_cl_connect_res - update the client state according |
| 774 | * connection response |
Tomas Winkler | 6bbda15 | 2012-12-25 19:06:12 +0200 | [diff] [blame] | 775 | * |
Alexander Usyskin | d512c20 | 2014-10-29 23:50:58 +0200 | [diff] [blame] | 776 | * @dev: the device structure |
Tomas Winkler | 12f45ed | 2014-08-21 14:29:18 +0300 | [diff] [blame] | 777 | * @cl: mei host client |
| 778 | * @cmd: connect client response host bus message |
Tomas Winkler | 6bbda15 | 2012-12-25 19:06:12 +0200 | [diff] [blame] | 779 | */ |
Alexander Usyskin | d512c20 | 2014-10-29 23:50:58 +0200 | [diff] [blame] | 780 | static void mei_hbm_cl_connect_res(struct mei_device *dev, struct mei_cl *cl, |
Tomas Winkler | 12f45ed | 2014-08-21 14:29:18 +0300 | [diff] [blame] | 781 | struct mei_hbm_cl_cmd *cmd) |
Tomas Winkler | 6bbda15 | 2012-12-25 19:06:12 +0200 | [diff] [blame] | 782 | { |
Tomas Winkler | 12f45ed | 2014-08-21 14:29:18 +0300 | [diff] [blame] | 783 | struct hbm_client_connect_response *rs = |
| 784 | (struct hbm_client_connect_response *)cmd; |
Tomas Winkler | 6bbda15 | 2012-12-25 19:06:12 +0200 | [diff] [blame] | 785 | |
Alexander Usyskin | d512c20 | 2014-10-29 23:50:58 +0200 | [diff] [blame] | 786 | cl_dbg(dev, cl, "hbm: connect response status=%s\n", |
Alexander Usyskin | 285e299 | 2014-02-17 15:13:20 +0200 | [diff] [blame] | 787 | mei_cl_conn_status_str(rs->status)); |
Tomas Winkler | 6bbda15 | 2012-12-25 19:06:12 +0200 | [diff] [blame] | 788 | |
Tomas Winkler | 12f45ed | 2014-08-21 14:29:18 +0300 | [diff] [blame] | 789 | if (rs->status == MEI_CL_CONN_SUCCESS) |
| 790 | cl->state = MEI_FILE_CONNECTED; |
Tomas Winkler | 70ef835 | 2015-07-23 21:37:12 +0300 | [diff] [blame] | 791 | else { |
Tomas Winkler | 3c66618 | 2015-05-04 09:43:52 +0300 | [diff] [blame] | 792 | cl->state = MEI_FILE_DISCONNECT_REPLY; |
Alexander Usyskin | a816a00 | 2016-02-07 23:35:41 +0200 | [diff] [blame] | 793 | if (rs->status == MEI_CL_CONN_NOT_FOUND) { |
Tomas Winkler | 70ef835 | 2015-07-23 21:37:12 +0300 | [diff] [blame] | 794 | mei_me_cl_del(dev, cl->me_cl); |
Alexander Usyskin | a816a00 | 2016-02-07 23:35:41 +0200 | [diff] [blame] | 795 | if (dev->dev_state == MEI_DEV_ENABLED) |
| 796 | schedule_work(&dev->bus_rescan_work); |
| 797 | } |
Tomas Winkler | 70ef835 | 2015-07-23 21:37:12 +0300 | [diff] [blame] | 798 | } |
Tomas Winkler | 12f45ed | 2014-08-21 14:29:18 +0300 | [diff] [blame] | 799 | cl->status = mei_cl_conn_status_to_errno(rs->status); |
| 800 | } |
Tomas Winkler | 6bbda15 | 2012-12-25 19:06:12 +0200 | [diff] [blame] | 801 | |
Tomas Winkler | 12f45ed | 2014-08-21 14:29:18 +0300 | [diff] [blame] | 802 | /** |
| 803 | * mei_hbm_cl_res - process hbm response received on behalf |
| 804 | * an client |
| 805 | * |
| 806 | * @dev: the device structure |
| 807 | * @rs: hbm client message |
| 808 | * @fop_type: file operation type |
| 809 | */ |
| 810 | static void mei_hbm_cl_res(struct mei_device *dev, |
| 811 | struct mei_hbm_cl_cmd *rs, |
| 812 | enum mei_cb_file_ops fop_type) |
| 813 | { |
| 814 | struct mei_cl *cl; |
| 815 | struct mei_cl_cb *cb, *next; |
| 816 | |
| 817 | cl = NULL; |
Tomas Winkler | 6409285 | 2014-02-17 15:13:21 +0200 | [diff] [blame] | 818 | list_for_each_entry_safe(cb, next, &dev->ctrl_rd_list.list, list) { |
Tomas Winkler | 6bbda15 | 2012-12-25 19:06:12 +0200 | [diff] [blame] | 819 | |
Tomas Winkler | 6409285 | 2014-02-17 15:13:21 +0200 | [diff] [blame] | 820 | cl = cb->cl; |
Tomas Winkler | 6409285 | 2014-02-17 15:13:21 +0200 | [diff] [blame] | 821 | |
Tomas Winkler | 12f45ed | 2014-08-21 14:29:18 +0300 | [diff] [blame] | 822 | if (cb->fop_type != fop_type) |
Tomas Winkler | 6409285 | 2014-02-17 15:13:21 +0200 | [diff] [blame] | 823 | continue; |
| 824 | |
| 825 | if (mei_hbm_cl_addr_equal(cl, rs)) { |
Tomas Winkler | 928fa66 | 2015-02-10 10:39:45 +0200 | [diff] [blame] | 826 | list_del_init(&cb->list); |
Tomas Winkler | 6409285 | 2014-02-17 15:13:21 +0200 | [diff] [blame] | 827 | break; |
Tomas Winkler | 6bbda15 | 2012-12-25 19:06:12 +0200 | [diff] [blame] | 828 | } |
| 829 | } |
Tomas Winkler | 6409285 | 2014-02-17 15:13:21 +0200 | [diff] [blame] | 830 | |
| 831 | if (!cl) |
| 832 | return; |
| 833 | |
Tomas Winkler | 12f45ed | 2014-08-21 14:29:18 +0300 | [diff] [blame] | 834 | switch (fop_type) { |
| 835 | case MEI_FOP_CONNECT: |
Alexander Usyskin | d512c20 | 2014-10-29 23:50:58 +0200 | [diff] [blame] | 836 | mei_hbm_cl_connect_res(dev, cl, rs); |
Tomas Winkler | 12f45ed | 2014-08-21 14:29:18 +0300 | [diff] [blame] | 837 | break; |
| 838 | case MEI_FOP_DISCONNECT: |
Alexander Usyskin | d512c20 | 2014-10-29 23:50:58 +0200 | [diff] [blame] | 839 | mei_hbm_cl_disconnect_res(dev, cl, rs); |
Tomas Winkler | 12f45ed | 2014-08-21 14:29:18 +0300 | [diff] [blame] | 840 | break; |
Tomas Winkler | 965ae37 | 2015-07-26 09:54:16 +0300 | [diff] [blame] | 841 | case MEI_FOP_NOTIFY_START: |
| 842 | mei_hbm_cl_notify_start_res(dev, cl, rs); |
| 843 | break; |
| 844 | case MEI_FOP_NOTIFY_STOP: |
| 845 | mei_hbm_cl_notify_stop_res(dev, cl, rs); |
| 846 | break; |
Tomas Winkler | 12f45ed | 2014-08-21 14:29:18 +0300 | [diff] [blame] | 847 | default: |
| 848 | return; |
| 849 | } |
| 850 | |
Tomas Winkler | 6409285 | 2014-02-17 15:13:21 +0200 | [diff] [blame] | 851 | cl->timer_count = 0; |
Tomas Winkler | 12f45ed | 2014-08-21 14:29:18 +0300 | [diff] [blame] | 852 | wake_up(&cl->wait); |
Tomas Winkler | 6bbda15 | 2012-12-25 19:06:12 +0200 | [diff] [blame] | 853 | } |
| 854 | |
| 855 | |
| 856 | /** |
Alexander Usyskin | 83ce074 | 2014-01-08 22:31:46 +0200 | [diff] [blame] | 857 | * mei_hbm_fw_disconnect_req - disconnect request initiated by ME firmware |
| 858 | * host sends disconnect response |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 859 | * |
| 860 | * @dev: the device structure. |
Tomas Winkler | 8120e72 | 2012-12-25 19:06:11 +0200 | [diff] [blame] | 861 | * @disconnect_req: disconnect request bus message from the me |
Tomas Winkler | 6bb948c | 2014-02-12 21:41:52 +0200 | [diff] [blame] | 862 | * |
Alexander Usyskin | a8605ea | 2014-09-29 16:31:49 +0300 | [diff] [blame] | 863 | * Return: -ENOMEM on allocation failure |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 864 | */ |
Tomas Winkler | 6bb948c | 2014-02-12 21:41:52 +0200 | [diff] [blame] | 865 | static int mei_hbm_fw_disconnect_req(struct mei_device *dev, |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 866 | struct hbm_client_connect_request *disconnect_req) |
| 867 | { |
Tomas Winkler | 31f88f5 | 2014-02-17 15:13:25 +0200 | [diff] [blame] | 868 | struct mei_cl *cl; |
Tomas Winkler | 6bb948c | 2014-02-12 21:41:52 +0200 | [diff] [blame] | 869 | struct mei_cl_cb *cb; |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 870 | |
Tomas Winkler | 2af89db | 2014-08-21 14:29:20 +0300 | [diff] [blame] | 871 | cl = mei_hbm_cl_find_by_cmd(dev, disconnect_req); |
| 872 | if (cl) { |
Alexander Usyskin | 6938c19 | 2016-02-07 23:35:39 +0200 | [diff] [blame] | 873 | cl_warn(dev, cl, "fw disconnect request received\n"); |
Tomas Winkler | 3c66618 | 2015-05-04 09:43:52 +0300 | [diff] [blame] | 874 | cl->state = MEI_FILE_DISCONNECTING; |
Tomas Winkler | 2af89db | 2014-08-21 14:29:20 +0300 | [diff] [blame] | 875 | cl->timer_count = 0; |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 876 | |
Tomas Winkler | bca67d6 | 2015-02-10 10:39:43 +0200 | [diff] [blame] | 877 | cb = mei_io_cb_init(cl, MEI_FOP_DISCONNECT_RSP, NULL); |
Tomas Winkler | 2af89db | 2014-08-21 14:29:20 +0300 | [diff] [blame] | 878 | if (!cb) |
| 879 | return -ENOMEM; |
Tomas Winkler | 2af89db | 2014-08-21 14:29:20 +0300 | [diff] [blame] | 880 | cl_dbg(dev, cl, "add disconnect response as first\n"); |
| 881 | list_add(&cb->list, &dev->ctrl_wr_list.list); |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 882 | } |
Tomas Winkler | 6bb948c | 2014-02-12 21:41:52 +0200 | [diff] [blame] | 883 | return 0; |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 884 | } |
| 885 | |
Tomas Winkler | bae1cc7 | 2014-08-21 14:29:21 +0300 | [diff] [blame] | 886 | /** |
Alexander Usyskin | 63f7523 | 2015-08-02 22:20:53 +0300 | [diff] [blame] | 887 | * mei_hbm_pg_enter_res - PG enter response received |
| 888 | * |
| 889 | * @dev: the device structure. |
| 890 | * |
| 891 | * Return: 0 on success, -EPROTO on state mismatch |
| 892 | */ |
| 893 | static int mei_hbm_pg_enter_res(struct mei_device *dev) |
| 894 | { |
| 895 | if (mei_pg_state(dev) != MEI_PG_OFF || |
| 896 | dev->pg_event != MEI_PG_EVENT_WAIT) { |
| 897 | dev_err(dev->dev, "hbm: pg entry response: state mismatch [%s, %d]\n", |
| 898 | mei_pg_state_str(mei_pg_state(dev)), dev->pg_event); |
| 899 | return -EPROTO; |
| 900 | } |
| 901 | |
| 902 | dev->pg_event = MEI_PG_EVENT_RECEIVED; |
| 903 | wake_up(&dev->wait_pg); |
| 904 | |
| 905 | return 0; |
| 906 | } |
| 907 | |
| 908 | /** |
Alexander Usyskin | 859ef2f | 2015-08-02 22:20:54 +0300 | [diff] [blame] | 909 | * mei_hbm_pg_resume - process with PG resume |
| 910 | * |
| 911 | * @dev: the device structure. |
| 912 | */ |
| 913 | void mei_hbm_pg_resume(struct mei_device *dev) |
| 914 | { |
| 915 | pm_request_resume(dev->dev); |
| 916 | } |
| 917 | EXPORT_SYMBOL_GPL(mei_hbm_pg_resume); |
| 918 | |
| 919 | /** |
Alexander Usyskin | 63f7523 | 2015-08-02 22:20:53 +0300 | [diff] [blame] | 920 | * mei_hbm_pg_exit_res - PG exit response received |
| 921 | * |
| 922 | * @dev: the device structure. |
| 923 | * |
| 924 | * Return: 0 on success, -EPROTO on state mismatch |
| 925 | */ |
| 926 | static int mei_hbm_pg_exit_res(struct mei_device *dev) |
| 927 | { |
| 928 | if (mei_pg_state(dev) != MEI_PG_ON || |
| 929 | (dev->pg_event != MEI_PG_EVENT_WAIT && |
| 930 | dev->pg_event != MEI_PG_EVENT_IDLE)) { |
| 931 | dev_err(dev->dev, "hbm: pg exit response: state mismatch [%s, %d]\n", |
| 932 | mei_pg_state_str(mei_pg_state(dev)), dev->pg_event); |
| 933 | return -EPROTO; |
| 934 | } |
| 935 | |
| 936 | switch (dev->pg_event) { |
| 937 | case MEI_PG_EVENT_WAIT: |
| 938 | dev->pg_event = MEI_PG_EVENT_RECEIVED; |
| 939 | wake_up(&dev->wait_pg); |
| 940 | break; |
| 941 | case MEI_PG_EVENT_IDLE: |
| 942 | /* |
| 943 | * If the driver is not waiting on this then |
| 944 | * this is HW initiated exit from PG. |
| 945 | * Start runtime pm resume sequence to exit from PG. |
| 946 | */ |
| 947 | dev->pg_event = MEI_PG_EVENT_RECEIVED; |
Alexander Usyskin | 859ef2f | 2015-08-02 22:20:54 +0300 | [diff] [blame] | 948 | mei_hbm_pg_resume(dev); |
Alexander Usyskin | 63f7523 | 2015-08-02 22:20:53 +0300 | [diff] [blame] | 949 | break; |
| 950 | default: |
| 951 | WARN(1, "hbm: pg exit response: unexpected pg event = %d\n", |
| 952 | dev->pg_event); |
| 953 | return -EPROTO; |
| 954 | } |
| 955 | |
| 956 | return 0; |
| 957 | } |
| 958 | |
| 959 | /** |
Alexander Usyskin | a8605ea | 2014-09-29 16:31:49 +0300 | [diff] [blame] | 960 | * mei_hbm_config_features - check what hbm features and commands |
Tomas Winkler | bae1cc7 | 2014-08-21 14:29:21 +0300 | [diff] [blame] | 961 | * are supported by the fw |
| 962 | * |
| 963 | * @dev: the device structure |
| 964 | */ |
| 965 | static void mei_hbm_config_features(struct mei_device *dev) |
| 966 | { |
| 967 | /* Power Gating Isolation Support */ |
| 968 | dev->hbm_f_pg_supported = 0; |
| 969 | if (dev->version.major_version > HBM_MAJOR_VERSION_PGI) |
| 970 | dev->hbm_f_pg_supported = 1; |
| 971 | |
| 972 | if (dev->version.major_version == HBM_MAJOR_VERSION_PGI && |
| 973 | dev->version.minor_version >= HBM_MINOR_VERSION_PGI) |
| 974 | dev->hbm_f_pg_supported = 1; |
Tomas Winkler | 70ef835 | 2015-07-23 21:37:12 +0300 | [diff] [blame] | 975 | |
| 976 | if (dev->version.major_version >= HBM_MAJOR_VERSION_DC) |
| 977 | dev->hbm_f_dc_supported = 1; |
Alexander Usyskin | 1890135 | 2015-07-23 21:37:13 +0300 | [diff] [blame] | 978 | |
Alexander Usyskin | 27f476e | 2016-02-07 23:35:42 +0200 | [diff] [blame] | 979 | if (dev->version.major_version >= HBM_MAJOR_VERSION_IE) |
| 980 | dev->hbm_f_ie_supported = 1; |
| 981 | |
Alexander Usyskin | 1890135 | 2015-07-23 21:37:13 +0300 | [diff] [blame] | 982 | /* disconnect on connect timeout instead of link reset */ |
| 983 | if (dev->version.major_version >= HBM_MAJOR_VERSION_DOT) |
| 984 | dev->hbm_f_dot_supported = 1; |
Tomas Winkler | 4d99877 | 2015-07-26 09:54:17 +0300 | [diff] [blame] | 985 | |
| 986 | /* Notification Event Support */ |
| 987 | if (dev->version.major_version >= HBM_MAJOR_VERSION_EV) |
| 988 | dev->hbm_f_ev_supported = 1; |
Alexander Usyskin | f4e0624 | 2016-02-07 23:35:38 +0200 | [diff] [blame] | 989 | |
| 990 | /* Fixed Address Client Support */ |
| 991 | if (dev->version.major_version >= HBM_MAJOR_VERSION_FA) |
| 992 | dev->hbm_f_fa_supported = 1; |
Tomas Winkler | bae1cc7 | 2014-08-21 14:29:21 +0300 | [diff] [blame] | 993 | } |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 994 | |
| 995 | /** |
Tomas Winkler | 2c9b48a | 2013-06-16 09:16:31 +0300 | [diff] [blame] | 996 | * mei_hbm_version_is_supported - checks whether the driver can |
| 997 | * support the hbm version of the device |
| 998 | * |
| 999 | * @dev: the device structure |
Alexander Usyskin | a8605ea | 2014-09-29 16:31:49 +0300 | [diff] [blame] | 1000 | * Return: true if driver can support hbm version of the device |
Tomas Winkler | 2c9b48a | 2013-06-16 09:16:31 +0300 | [diff] [blame] | 1001 | */ |
| 1002 | bool mei_hbm_version_is_supported(struct mei_device *dev) |
| 1003 | { |
| 1004 | return (dev->version.major_version < HBM_MAJOR_VERSION) || |
| 1005 | (dev->version.major_version == HBM_MAJOR_VERSION && |
| 1006 | dev->version.minor_version <= HBM_MINOR_VERSION); |
| 1007 | } |
| 1008 | |
| 1009 | /** |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 1010 | * mei_hbm_dispatch - bottom half read routine after ISR to |
| 1011 | * handle the read bus message cmd processing. |
| 1012 | * |
| 1013 | * @dev: the device structure |
Alexander Usyskin | a8605ea | 2014-09-29 16:31:49 +0300 | [diff] [blame] | 1014 | * @hdr: header of bus message |
Tomas Winkler | 544f946 | 2014-01-08 20:19:21 +0200 | [diff] [blame] | 1015 | * |
Alexander Usyskin | a8605ea | 2014-09-29 16:31:49 +0300 | [diff] [blame] | 1016 | * Return: 0 on success and < 0 on failure |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 1017 | */ |
Tomas Winkler | 544f946 | 2014-01-08 20:19:21 +0200 | [diff] [blame] | 1018 | int mei_hbm_dispatch(struct mei_device *dev, struct mei_msg_hdr *hdr) |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 1019 | { |
| 1020 | struct mei_bus_message *mei_msg; |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 1021 | struct hbm_host_version_response *version_res; |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 1022 | struct hbm_props_response *props_res; |
| 1023 | struct hbm_host_enum_response *enum_res; |
Tomas Winkler | 70ef835 | 2015-07-23 21:37:12 +0300 | [diff] [blame] | 1024 | struct hbm_add_client_request *add_cl_req; |
| 1025 | int ret; |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 1026 | |
Tomas Winkler | 12f45ed | 2014-08-21 14:29:18 +0300 | [diff] [blame] | 1027 | struct mei_hbm_cl_cmd *cl_cmd; |
| 1028 | struct hbm_client_connect_request *disconnect_req; |
| 1029 | struct hbm_flow_control *flow_control; |
| 1030 | |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 1031 | /* read the message to our buffer */ |
| 1032 | BUG_ON(hdr->length >= sizeof(dev->rd_msg_buf)); |
| 1033 | mei_read_slots(dev, dev->rd_msg_buf, hdr->length); |
| 1034 | mei_msg = (struct mei_bus_message *)dev->rd_msg_buf; |
Tomas Winkler | 12f45ed | 2014-08-21 14:29:18 +0300 | [diff] [blame] | 1035 | cl_cmd = (struct mei_hbm_cl_cmd *)mei_msg; |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 1036 | |
Tomas Winkler | 66ae460 | 2014-01-08 20:19:22 +0200 | [diff] [blame] | 1037 | /* ignore spurious message and prevent reset nesting |
| 1038 | * hbm is put to idle during system reset |
| 1039 | */ |
| 1040 | if (dev->hbm_state == MEI_HBM_IDLE) { |
Tomas Winkler | 2bf94cab | 2014-09-29 16:31:42 +0300 | [diff] [blame] | 1041 | dev_dbg(dev->dev, "hbm: state is idle ignore spurious messages\n"); |
Tomas Winkler | 66ae460 | 2014-01-08 20:19:22 +0200 | [diff] [blame] | 1042 | return 0; |
| 1043 | } |
| 1044 | |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 1045 | switch (mei_msg->hbm_cmd) { |
| 1046 | case HOST_START_RES_CMD: |
Tomas Winkler | 2bf94cab | 2014-09-29 16:31:42 +0300 | [diff] [blame] | 1047 | dev_dbg(dev->dev, "hbm: start: response message received.\n"); |
Tomas Winkler | 544f946 | 2014-01-08 20:19:21 +0200 | [diff] [blame] | 1048 | |
| 1049 | dev->init_clients_timer = 0; |
| 1050 | |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 1051 | version_res = (struct hbm_host_version_response *)mei_msg; |
Tomas Winkler | 2c9b48a | 2013-06-16 09:16:31 +0300 | [diff] [blame] | 1052 | |
Tomas Winkler | 2bf94cab | 2014-09-29 16:31:42 +0300 | [diff] [blame] | 1053 | dev_dbg(dev->dev, "HBM VERSION: DRIVER=%02d:%02d DEVICE=%02d:%02d\n", |
Tomas Winkler | 2c9b48a | 2013-06-16 09:16:31 +0300 | [diff] [blame] | 1054 | HBM_MAJOR_VERSION, HBM_MINOR_VERSION, |
| 1055 | version_res->me_max_version.major_version, |
| 1056 | version_res->me_max_version.minor_version); |
| 1057 | |
| 1058 | if (version_res->host_version_supported) { |
| 1059 | dev->version.major_version = HBM_MAJOR_VERSION; |
| 1060 | dev->version.minor_version = HBM_MINOR_VERSION; |
| 1061 | } else { |
| 1062 | dev->version.major_version = |
| 1063 | version_res->me_max_version.major_version; |
| 1064 | dev->version.minor_version = |
| 1065 | version_res->me_max_version.minor_version; |
| 1066 | } |
| 1067 | |
| 1068 | if (!mei_hbm_version_is_supported(dev)) { |
Tomas Winkler | 2bf94cab | 2014-09-29 16:31:42 +0300 | [diff] [blame] | 1069 | dev_warn(dev->dev, "hbm: start: version mismatch - stopping the driver.\n"); |
Tomas Winkler | e46f187 | 2012-12-25 19:06:10 +0200 | [diff] [blame] | 1070 | |
Tomas Winkler | 544f946 | 2014-01-08 20:19:21 +0200 | [diff] [blame] | 1071 | dev->hbm_state = MEI_HBM_STOPPED; |
Tomas Winkler | 6bb948c | 2014-02-12 21:41:52 +0200 | [diff] [blame] | 1072 | if (mei_hbm_stop_req(dev)) { |
Tomas Winkler | 2bf94cab | 2014-09-29 16:31:42 +0300 | [diff] [blame] | 1073 | dev_err(dev->dev, "hbm: start: failed to send stop request\n"); |
Tomas Winkler | 544f946 | 2014-01-08 20:19:21 +0200 | [diff] [blame] | 1074 | return -EIO; |
| 1075 | } |
| 1076 | break; |
Tomas Winkler | e46f187 | 2012-12-25 19:06:10 +0200 | [diff] [blame] | 1077 | } |
| 1078 | |
Tomas Winkler | bae1cc7 | 2014-08-21 14:29:21 +0300 | [diff] [blame] | 1079 | mei_hbm_config_features(dev); |
| 1080 | |
Tomas Winkler | 544f946 | 2014-01-08 20:19:21 +0200 | [diff] [blame] | 1081 | if (dev->dev_state != MEI_DEV_INIT_CLIENTS || |
Alexander Usyskin | cb02efc | 2014-08-21 14:29:19 +0300 | [diff] [blame] | 1082 | dev->hbm_state != MEI_HBM_STARTING) { |
Tomas Winkler | 2bf94cab | 2014-09-29 16:31:42 +0300 | [diff] [blame] | 1083 | dev_err(dev->dev, "hbm: start: state mismatch, [%d, %d]\n", |
Tomas Winkler | 544f946 | 2014-01-08 20:19:21 +0200 | [diff] [blame] | 1084 | dev->dev_state, dev->hbm_state); |
| 1085 | return -EPROTO; |
| 1086 | } |
| 1087 | |
Tomas Winkler | 544f946 | 2014-01-08 20:19:21 +0200 | [diff] [blame] | 1088 | if (mei_hbm_enum_clients_req(dev)) { |
Tomas Winkler | 2bf94cab | 2014-09-29 16:31:42 +0300 | [diff] [blame] | 1089 | dev_err(dev->dev, "hbm: start: failed to send enumeration request\n"); |
Tomas Winkler | 544f946 | 2014-01-08 20:19:21 +0200 | [diff] [blame] | 1090 | return -EIO; |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 1091 | } |
| 1092 | |
Alexander Usyskin | cb02efc | 2014-08-21 14:29:19 +0300 | [diff] [blame] | 1093 | wake_up(&dev->wait_hbm_start); |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 1094 | break; |
| 1095 | |
| 1096 | case CLIENT_CONNECT_RES_CMD: |
Tomas Winkler | 2bf94cab | 2014-09-29 16:31:42 +0300 | [diff] [blame] | 1097 | dev_dbg(dev->dev, "hbm: client connect response: message received.\n"); |
Tomas Winkler | 12f45ed | 2014-08-21 14:29:18 +0300 | [diff] [blame] | 1098 | mei_hbm_cl_res(dev, cl_cmd, MEI_FOP_CONNECT); |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 1099 | break; |
| 1100 | |
| 1101 | case CLIENT_DISCONNECT_RES_CMD: |
Tomas Winkler | 2bf94cab | 2014-09-29 16:31:42 +0300 | [diff] [blame] | 1102 | dev_dbg(dev->dev, "hbm: client disconnect response: message received.\n"); |
Tomas Winkler | 12f45ed | 2014-08-21 14:29:18 +0300 | [diff] [blame] | 1103 | mei_hbm_cl_res(dev, cl_cmd, MEI_FOP_DISCONNECT); |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 1104 | break; |
| 1105 | |
| 1106 | case MEI_FLOW_CONTROL_CMD: |
Tomas Winkler | 2bf94cab | 2014-09-29 16:31:42 +0300 | [diff] [blame] | 1107 | dev_dbg(dev->dev, "hbm: client flow control response: message received.\n"); |
Tomas Winkler | 544f946 | 2014-01-08 20:19:21 +0200 | [diff] [blame] | 1108 | |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 1109 | flow_control = (struct hbm_flow_control *) mei_msg; |
Tomas Winkler | 6bbda15 | 2012-12-25 19:06:12 +0200 | [diff] [blame] | 1110 | mei_hbm_cl_flow_control_res(dev, flow_control); |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 1111 | break; |
| 1112 | |
Tomas Winkler | 4fcbc99 | 2014-03-18 22:51:55 +0200 | [diff] [blame] | 1113 | case MEI_PG_ISOLATION_ENTRY_RES_CMD: |
Alexander Usyskin | 63f7523 | 2015-08-02 22:20:53 +0300 | [diff] [blame] | 1114 | dev_dbg(dev->dev, "hbm: power gate isolation entry response received\n"); |
| 1115 | ret = mei_hbm_pg_enter_res(dev); |
| 1116 | if (ret) |
| 1117 | return ret; |
Tomas Winkler | 4fcbc99 | 2014-03-18 22:51:55 +0200 | [diff] [blame] | 1118 | break; |
| 1119 | |
| 1120 | case MEI_PG_ISOLATION_EXIT_REQ_CMD: |
Alexander Usyskin | 63f7523 | 2015-08-02 22:20:53 +0300 | [diff] [blame] | 1121 | dev_dbg(dev->dev, "hbm: power gate isolation exit request received\n"); |
| 1122 | ret = mei_hbm_pg_exit_res(dev); |
| 1123 | if (ret) |
| 1124 | return ret; |
Tomas Winkler | 4fcbc99 | 2014-03-18 22:51:55 +0200 | [diff] [blame] | 1125 | break; |
| 1126 | |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 1127 | case HOST_CLIENT_PROPERTIES_RES_CMD: |
Tomas Winkler | 2bf94cab | 2014-09-29 16:31:42 +0300 | [diff] [blame] | 1128 | dev_dbg(dev->dev, "hbm: properties response: message received.\n"); |
Tomas Winkler | 544f946 | 2014-01-08 20:19:21 +0200 | [diff] [blame] | 1129 | |
| 1130 | dev->init_clients_timer = 0; |
| 1131 | |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 1132 | if (dev->dev_state != MEI_DEV_INIT_CLIENTS || |
Tomas Winkler | 9b0d5ef | 2013-04-18 23:03:48 +0300 | [diff] [blame] | 1133 | dev->hbm_state != MEI_HBM_CLIENT_PROPERTIES) { |
Tomas Winkler | 2bf94cab | 2014-09-29 16:31:42 +0300 | [diff] [blame] | 1134 | dev_err(dev->dev, "hbm: properties response: state mismatch, [%d, %d]\n", |
Tomas Winkler | 544f946 | 2014-01-08 20:19:21 +0200 | [diff] [blame] | 1135 | dev->dev_state, dev->hbm_state); |
| 1136 | return -EPROTO; |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 1137 | } |
| 1138 | |
Tomas Winkler | 5ca2d38 | 2014-08-21 14:29:13 +0300 | [diff] [blame] | 1139 | props_res = (struct hbm_props_response *)mei_msg; |
| 1140 | |
| 1141 | if (props_res->status) { |
Tomas Winkler | 2bf94cab | 2014-09-29 16:31:42 +0300 | [diff] [blame] | 1142 | dev_err(dev->dev, "hbm: properties response: wrong status = %d %s\n", |
Tomas Winkler | 89778d6 | 2014-08-21 14:29:16 +0300 | [diff] [blame] | 1143 | props_res->status, |
| 1144 | mei_hbm_status_str(props_res->status)); |
Tomas Winkler | 5ca2d38 | 2014-08-21 14:29:13 +0300 | [diff] [blame] | 1145 | return -EPROTO; |
| 1146 | } |
| 1147 | |
| 1148 | mei_hbm_me_cl_add(dev, props_res); |
| 1149 | |
Tomas Winkler | 8120e72 | 2012-12-25 19:06:11 +0200 | [diff] [blame] | 1150 | /* request property for the next client */ |
Alexander Usyskin | cc25aa9 | 2016-04-17 12:16:02 -0400 | [diff] [blame^] | 1151 | if (mei_hbm_prop_req(dev, props_res->me_addr + 1)) |
Tomas Winkler | 544f946 | 2014-01-08 20:19:21 +0200 | [diff] [blame] | 1152 | return -EIO; |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 1153 | |
| 1154 | break; |
| 1155 | |
| 1156 | case HOST_ENUM_RES_CMD: |
Tomas Winkler | 2bf94cab | 2014-09-29 16:31:42 +0300 | [diff] [blame] | 1157 | dev_dbg(dev->dev, "hbm: enumeration response: message received\n"); |
Tomas Winkler | 544f946 | 2014-01-08 20:19:21 +0200 | [diff] [blame] | 1158 | |
| 1159 | dev->init_clients_timer = 0; |
| 1160 | |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 1161 | enum_res = (struct hbm_host_enum_response *) mei_msg; |
Tomas Winkler | 23f5a32 | 2013-09-02 03:11:01 +0300 | [diff] [blame] | 1162 | BUILD_BUG_ON(sizeof(dev->me_clients_map) |
| 1163 | < sizeof(enum_res->valid_addresses)); |
| 1164 | memcpy(dev->me_clients_map, enum_res->valid_addresses, |
Tomas Winkler | 5ca2d38 | 2014-08-21 14:29:13 +0300 | [diff] [blame] | 1165 | sizeof(enum_res->valid_addresses)); |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 1166 | |
Tomas Winkler | 544f946 | 2014-01-08 20:19:21 +0200 | [diff] [blame] | 1167 | if (dev->dev_state != MEI_DEV_INIT_CLIENTS || |
| 1168 | dev->hbm_state != MEI_HBM_ENUM_CLIENTS) { |
Tomas Winkler | 2bf94cab | 2014-09-29 16:31:42 +0300 | [diff] [blame] | 1169 | dev_err(dev->dev, "hbm: enumeration response: state mismatch, [%d, %d]\n", |
Tomas Winkler | 544f946 | 2014-01-08 20:19:21 +0200 | [diff] [blame] | 1170 | dev->dev_state, dev->hbm_state); |
| 1171 | return -EPROTO; |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 1172 | } |
Tomas Winkler | 544f946 | 2014-01-08 20:19:21 +0200 | [diff] [blame] | 1173 | |
Tomas Winkler | 544f946 | 2014-01-08 20:19:21 +0200 | [diff] [blame] | 1174 | dev->hbm_state = MEI_HBM_CLIENT_PROPERTIES; |
| 1175 | |
| 1176 | /* first property request */ |
Alexander Usyskin | cc25aa9 | 2016-04-17 12:16:02 -0400 | [diff] [blame^] | 1177 | if (mei_hbm_prop_req(dev, 0)) |
Tomas Winkler | 544f946 | 2014-01-08 20:19:21 +0200 | [diff] [blame] | 1178 | return -EIO; |
| 1179 | |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 1180 | break; |
| 1181 | |
| 1182 | case HOST_STOP_RES_CMD: |
Tomas Winkler | 2bf94cab | 2014-09-29 16:31:42 +0300 | [diff] [blame] | 1183 | dev_dbg(dev->dev, "hbm: stop response: message received\n"); |
Tomas Winkler | 9b0d5ef | 2013-04-18 23:03:48 +0300 | [diff] [blame] | 1184 | |
Tomas Winkler | 544f946 | 2014-01-08 20:19:21 +0200 | [diff] [blame] | 1185 | dev->init_clients_timer = 0; |
| 1186 | |
| 1187 | if (dev->hbm_state != MEI_HBM_STOPPED) { |
Tomas Winkler | 2bf94cab | 2014-09-29 16:31:42 +0300 | [diff] [blame] | 1188 | dev_err(dev->dev, "hbm: stop response: state mismatch, [%d, %d]\n", |
Tomas Winkler | 544f946 | 2014-01-08 20:19:21 +0200 | [diff] [blame] | 1189 | dev->dev_state, dev->hbm_state); |
| 1190 | return -EPROTO; |
| 1191 | } |
| 1192 | |
Tomas Winkler | 33ec082 | 2014-01-12 00:36:09 +0200 | [diff] [blame] | 1193 | dev->dev_state = MEI_DEV_POWER_DOWN; |
Tomas Winkler | 2bf94cab | 2014-09-29 16:31:42 +0300 | [diff] [blame] | 1194 | dev_info(dev->dev, "hbm: stop response: resetting.\n"); |
Tomas Winkler | 544f946 | 2014-01-08 20:19:21 +0200 | [diff] [blame] | 1195 | /* force the reset */ |
| 1196 | return -EPROTO; |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 1197 | break; |
| 1198 | |
| 1199 | case CLIENT_DISCONNECT_REQ_CMD: |
Tomas Winkler | 2bf94cab | 2014-09-29 16:31:42 +0300 | [diff] [blame] | 1200 | dev_dbg(dev->dev, "hbm: disconnect request: message received\n"); |
Tomas Winkler | 544f946 | 2014-01-08 20:19:21 +0200 | [diff] [blame] | 1201 | |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 1202 | disconnect_req = (struct hbm_client_connect_request *)mei_msg; |
Tomas Winkler | 8120e72 | 2012-12-25 19:06:11 +0200 | [diff] [blame] | 1203 | mei_hbm_fw_disconnect_req(dev, disconnect_req); |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 1204 | break; |
| 1205 | |
| 1206 | case ME_STOP_REQ_CMD: |
Tomas Winkler | 2bf94cab | 2014-09-29 16:31:42 +0300 | [diff] [blame] | 1207 | dev_dbg(dev->dev, "hbm: stop request: message received\n"); |
Tomas Winkler | 544f946 | 2014-01-08 20:19:21 +0200 | [diff] [blame] | 1208 | dev->hbm_state = MEI_HBM_STOPPED; |
Tomas Winkler | 6bb948c | 2014-02-12 21:41:52 +0200 | [diff] [blame] | 1209 | if (mei_hbm_stop_req(dev)) { |
Tomas Winkler | 2bf94cab | 2014-09-29 16:31:42 +0300 | [diff] [blame] | 1210 | dev_err(dev->dev, "hbm: stop request: failed to send stop request\n"); |
Tomas Winkler | 6bb948c | 2014-02-12 21:41:52 +0200 | [diff] [blame] | 1211 | return -EIO; |
| 1212 | } |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 1213 | break; |
Tomas Winkler | 70ef835 | 2015-07-23 21:37:12 +0300 | [diff] [blame] | 1214 | |
| 1215 | case MEI_HBM_ADD_CLIENT_REQ_CMD: |
| 1216 | dev_dbg(dev->dev, "hbm: add client request received\n"); |
| 1217 | /* |
| 1218 | * after the host receives the enum_resp |
| 1219 | * message clients may be added or removed |
| 1220 | */ |
Alexander Usyskin | 84dfe03 | 2015-09-21 11:45:32 +0300 | [diff] [blame] | 1221 | if (dev->hbm_state <= MEI_HBM_ENUM_CLIENTS || |
Tomas Winkler | 70ef835 | 2015-07-23 21:37:12 +0300 | [diff] [blame] | 1222 | dev->hbm_state >= MEI_HBM_STOPPED) { |
| 1223 | dev_err(dev->dev, "hbm: add client: state mismatch, [%d, %d]\n", |
| 1224 | dev->dev_state, dev->hbm_state); |
| 1225 | return -EPROTO; |
| 1226 | } |
| 1227 | add_cl_req = (struct hbm_add_client_request *)mei_msg; |
| 1228 | ret = mei_hbm_fw_add_cl_req(dev, add_cl_req); |
| 1229 | if (ret) { |
| 1230 | dev_err(dev->dev, "hbm: add client: failed to send response %d\n", |
| 1231 | ret); |
| 1232 | return -EIO; |
| 1233 | } |
| 1234 | dev_dbg(dev->dev, "hbm: add client request processed\n"); |
| 1235 | break; |
| 1236 | |
Tomas Winkler | 965ae37 | 2015-07-26 09:54:16 +0300 | [diff] [blame] | 1237 | case MEI_HBM_NOTIFY_RES_CMD: |
| 1238 | dev_dbg(dev->dev, "hbm: notify response received\n"); |
| 1239 | mei_hbm_cl_res(dev, cl_cmd, notify_res_to_fop(cl_cmd)); |
| 1240 | break; |
| 1241 | |
| 1242 | case MEI_HBM_NOTIFICATION_CMD: |
| 1243 | dev_dbg(dev->dev, "hbm: notification\n"); |
| 1244 | mei_hbm_cl_notify(dev, cl_cmd); |
| 1245 | break; |
| 1246 | |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 1247 | default: |
| 1248 | BUG(); |
| 1249 | break; |
| 1250 | |
| 1251 | } |
Tomas Winkler | 544f946 | 2014-01-08 20:19:21 +0200 | [diff] [blame] | 1252 | return 0; |
Tomas Winkler | bb1b013 | 2012-12-25 19:06:07 +0200 | [diff] [blame] | 1253 | } |
| 1254 | |