Oren Weil | 3ce7272 | 2011-05-15 13:43:43 +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 | 3ce7272 | 2011-05-15 13:43:43 +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 | |
| 17 | #include <linux/pci.h> |
| 18 | #include "mei_dev.h" |
Tomas Winkler | 4f3afe1 | 2012-05-09 16:38:59 +0300 | [diff] [blame] | 19 | #include <linux/mei.h> |
Oren Weil | 3ce7272 | 2011-05-15 13:43:43 +0300 | [diff] [blame] | 20 | #include "interface.h" |
| 21 | |
| 22 | |
| 23 | |
| 24 | /** |
| 25 | * mei_set_csr_register - writes H_CSR register to the mei device, |
| 26 | * and ignores the H_IS bit for it is write-one-to-zero. |
| 27 | * |
| 28 | * @dev: the device structure |
| 29 | */ |
| 30 | void mei_hcsr_set(struct mei_device *dev) |
| 31 | { |
| 32 | if ((dev->host_hw_state & H_IS) == H_IS) |
| 33 | dev->host_hw_state &= ~H_IS; |
| 34 | mei_reg_write(dev, H_CSR, dev->host_hw_state); |
| 35 | dev->host_hw_state = mei_hcsr_read(dev); |
| 36 | } |
| 37 | |
| 38 | /** |
| 39 | * mei_csr_enable_interrupts - enables mei device interrupts |
| 40 | * |
| 41 | * @dev: the device structure |
| 42 | */ |
| 43 | void mei_enable_interrupts(struct mei_device *dev) |
| 44 | { |
| 45 | dev->host_hw_state |= H_IE; |
| 46 | mei_hcsr_set(dev); |
| 47 | } |
| 48 | |
| 49 | /** |
| 50 | * mei_csr_disable_interrupts - disables mei device interrupts |
| 51 | * |
| 52 | * @dev: the device structure |
| 53 | */ |
| 54 | void mei_disable_interrupts(struct mei_device *dev) |
| 55 | { |
| 56 | dev->host_hw_state &= ~H_IE; |
| 57 | mei_hcsr_set(dev); |
| 58 | } |
| 59 | |
| 60 | /** |
Tomas Winkler | 726917f | 2012-06-25 23:46:28 +0300 | [diff] [blame] | 61 | * mei_hbuf_filled_slots - gets number of device filled buffer slots |
Oren Weil | 3ce7272 | 2011-05-15 13:43:43 +0300 | [diff] [blame] | 62 | * |
| 63 | * @device: the device structure |
| 64 | * |
| 65 | * returns number of filled slots |
| 66 | */ |
Tomas Winkler | 726917f | 2012-06-25 23:46:28 +0300 | [diff] [blame] | 67 | static unsigned char mei_hbuf_filled_slots(struct mei_device *dev) |
Oren Weil | 3ce7272 | 2011-05-15 13:43:43 +0300 | [diff] [blame] | 68 | { |
| 69 | char read_ptr, write_ptr; |
| 70 | |
Tomas Winkler | 726917f | 2012-06-25 23:46:28 +0300 | [diff] [blame] | 71 | dev->host_hw_state = mei_hcsr_read(dev); |
| 72 | |
Oren Weil | 3ce7272 | 2011-05-15 13:43:43 +0300 | [diff] [blame] | 73 | read_ptr = (char) ((dev->host_hw_state & H_CBRP) >> 8); |
| 74 | write_ptr = (char) ((dev->host_hw_state & H_CBWP) >> 16); |
| 75 | |
| 76 | return (unsigned char) (write_ptr - read_ptr); |
| 77 | } |
| 78 | |
| 79 | /** |
Tomas Winkler | 726917f | 2012-06-25 23:46:28 +0300 | [diff] [blame] | 80 | * mei_hbuf_is_empty - checks if host buffer is empty. |
Oren Weil | 3ce7272 | 2011-05-15 13:43:43 +0300 | [diff] [blame] | 81 | * |
| 82 | * @dev: the device structure |
| 83 | * |
Tomas Winkler | 726917f | 2012-06-25 23:46:28 +0300 | [diff] [blame] | 84 | * returns true if empty, false - otherwise. |
Oren Weil | 3ce7272 | 2011-05-15 13:43:43 +0300 | [diff] [blame] | 85 | */ |
Tomas Winkler | 726917f | 2012-06-25 23:46:28 +0300 | [diff] [blame] | 86 | bool mei_hbuf_is_empty(struct mei_device *dev) |
Oren Weil | 3ce7272 | 2011-05-15 13:43:43 +0300 | [diff] [blame] | 87 | { |
Tomas Winkler | 726917f | 2012-06-25 23:46:28 +0300 | [diff] [blame] | 88 | return mei_hbuf_filled_slots(dev) == 0; |
Oren Weil | 3ce7272 | 2011-05-15 13:43:43 +0300 | [diff] [blame] | 89 | } |
| 90 | |
| 91 | /** |
Tomas Winkler | 726917f | 2012-06-25 23:46:28 +0300 | [diff] [blame] | 92 | * mei_hbuf_empty_slots - counts write empty slots. |
Oren Weil | 3ce7272 | 2011-05-15 13:43:43 +0300 | [diff] [blame] | 93 | * |
| 94 | * @dev: the device structure |
| 95 | * |
| 96 | * returns -1(ESLOTS_OVERFLOW) if overflow, otherwise empty slots count |
| 97 | */ |
Tomas Winkler | 726917f | 2012-06-25 23:46:28 +0300 | [diff] [blame] | 98 | int mei_hbuf_empty_slots(struct mei_device *dev) |
Oren Weil | 3ce7272 | 2011-05-15 13:43:43 +0300 | [diff] [blame] | 99 | { |
Tomas Winkler | 24aadc8 | 2012-06-25 23:46:27 +0300 | [diff] [blame] | 100 | unsigned char filled_slots, empty_slots; |
Oren Weil | 3ce7272 | 2011-05-15 13:43:43 +0300 | [diff] [blame] | 101 | |
Tomas Winkler | 726917f | 2012-06-25 23:46:28 +0300 | [diff] [blame] | 102 | filled_slots = mei_hbuf_filled_slots(dev); |
Tomas Winkler | 24aadc8 | 2012-06-25 23:46:27 +0300 | [diff] [blame] | 103 | empty_slots = dev->hbuf_depth - filled_slots; |
Oren Weil | 3ce7272 | 2011-05-15 13:43:43 +0300 | [diff] [blame] | 104 | |
| 105 | /* check for overflow */ |
Tomas Winkler | 24aadc8 | 2012-06-25 23:46:27 +0300 | [diff] [blame] | 106 | if (filled_slots > dev->hbuf_depth) |
Oren Weil | 3ce7272 | 2011-05-15 13:43:43 +0300 | [diff] [blame] | 107 | return -EOVERFLOW; |
| 108 | |
| 109 | return empty_slots; |
| 110 | } |
| 111 | |
| 112 | /** |
| 113 | * mei_write_message - writes a message to mei device. |
| 114 | * |
| 115 | * @dev: the device structure |
| 116 | * @header: header of message |
| 117 | * @write_buffer: message buffer will be written |
| 118 | * @write_length: message size will be written |
| 119 | * |
Tomas Winkler | 1ccb7b6 | 2012-03-14 14:39:42 +0200 | [diff] [blame] | 120 | * This function returns -EIO if write has failed |
Oren Weil | 3ce7272 | 2011-05-15 13:43:43 +0300 | [diff] [blame] | 121 | */ |
Tomas Winkler | 169d133 | 2012-06-19 09:13:35 +0300 | [diff] [blame] | 122 | int mei_write_message(struct mei_device *dev, struct mei_msg_hdr *header, |
| 123 | unsigned char *buf, unsigned long length) |
Oren Weil | 3ce7272 | 2011-05-15 13:43:43 +0300 | [diff] [blame] | 124 | { |
Tomas Winkler | 169d133 | 2012-06-19 09:13:35 +0300 | [diff] [blame] | 125 | unsigned long rem, dw_cnt; |
| 126 | u32 *reg_buf = (u32 *)buf; |
| 127 | int i; |
| 128 | int empty_slots; |
Oren Weil | 3ce7272 | 2011-05-15 13:43:43 +0300 | [diff] [blame] | 129 | |
Oren Weil | 3ce7272 | 2011-05-15 13:43:43 +0300 | [diff] [blame] | 130 | |
| 131 | dev_dbg(&dev->pdev->dev, |
| 132 | "mei_write_message header=%08x.\n", |
| 133 | *((u32 *) header)); |
| 134 | |
Tomas Winkler | 726917f | 2012-06-25 23:46:28 +0300 | [diff] [blame] | 135 | empty_slots = mei_hbuf_empty_slots(dev); |
Tomas Winkler | 169d133 | 2012-06-19 09:13:35 +0300 | [diff] [blame] | 136 | dev_dbg(&dev->pdev->dev, "empty slots = %hu.\n", empty_slots); |
Oren Weil | 3ce7272 | 2011-05-15 13:43:43 +0300 | [diff] [blame] | 137 | |
Tomas Winkler | 7bdf72d | 2012-07-04 19:24:52 +0300 | [diff] [blame^] | 138 | dw_cnt = mei_data2slots(length); |
Tomas Winkler | 169d133 | 2012-06-19 09:13:35 +0300 | [diff] [blame] | 139 | if (empty_slots < 0 || dw_cnt > empty_slots) |
Tomas Winkler | 1ccb7b6 | 2012-03-14 14:39:42 +0200 | [diff] [blame] | 140 | return -EIO; |
Oren Weil | 3ce7272 | 2011-05-15 13:43:43 +0300 | [diff] [blame] | 141 | |
| 142 | mei_reg_write(dev, H_CB_WW, *((u32 *) header)); |
| 143 | |
Tomas Winkler | 169d133 | 2012-06-19 09:13:35 +0300 | [diff] [blame] | 144 | for (i = 0; i < length / 4; i++) |
| 145 | mei_reg_write(dev, H_CB_WW, reg_buf[i]); |
| 146 | |
| 147 | rem = length & 0x3; |
| 148 | if (rem > 0) { |
| 149 | u32 reg = 0; |
| 150 | memcpy(®, &buf[length - rem], rem); |
| 151 | mei_reg_write(dev, H_CB_WW, reg); |
Oren Weil | 3ce7272 | 2011-05-15 13:43:43 +0300 | [diff] [blame] | 152 | } |
| 153 | |
Tomas Winkler | 169d133 | 2012-06-19 09:13:35 +0300 | [diff] [blame] | 154 | dev->host_hw_state = mei_hcsr_read(dev); |
Oren Weil | 3ce7272 | 2011-05-15 13:43:43 +0300 | [diff] [blame] | 155 | dev->host_hw_state |= H_IG; |
| 156 | mei_hcsr_set(dev); |
| 157 | dev->me_hw_state = mei_mecsr_read(dev); |
| 158 | if ((dev->me_hw_state & ME_RDY_HRA) != ME_RDY_HRA) |
Tomas Winkler | 1ccb7b6 | 2012-03-14 14:39:42 +0200 | [diff] [blame] | 159 | return -EIO; |
Oren Weil | 3ce7272 | 2011-05-15 13:43:43 +0300 | [diff] [blame] | 160 | |
Tomas Winkler | 1ccb7b6 | 2012-03-14 14:39:42 +0200 | [diff] [blame] | 161 | return 0; |
Oren Weil | 3ce7272 | 2011-05-15 13:43:43 +0300 | [diff] [blame] | 162 | } |
| 163 | |
| 164 | /** |
| 165 | * mei_count_full_read_slots - counts read full slots. |
| 166 | * |
| 167 | * @dev: the device structure |
| 168 | * |
| 169 | * returns -1(ESLOTS_OVERFLOW) if overflow, otherwise filled slots count |
| 170 | */ |
| 171 | int mei_count_full_read_slots(struct mei_device *dev) |
| 172 | { |
| 173 | char read_ptr, write_ptr; |
| 174 | unsigned char buffer_depth, filled_slots; |
| 175 | |
| 176 | dev->me_hw_state = mei_mecsr_read(dev); |
| 177 | buffer_depth = (unsigned char)((dev->me_hw_state & ME_CBD_HRA) >> 24); |
| 178 | read_ptr = (char) ((dev->me_hw_state & ME_CBRP_HRA) >> 8); |
| 179 | write_ptr = (char) ((dev->me_hw_state & ME_CBWP_HRA) >> 16); |
| 180 | filled_slots = (unsigned char) (write_ptr - read_ptr); |
| 181 | |
| 182 | /* check for overflow */ |
| 183 | if (filled_slots > buffer_depth) |
| 184 | return -EOVERFLOW; |
| 185 | |
| 186 | dev_dbg(&dev->pdev->dev, "filled_slots =%08x\n", filled_slots); |
| 187 | return (int)filled_slots; |
| 188 | } |
| 189 | |
| 190 | /** |
| 191 | * mei_read_slots - reads a message from mei device. |
| 192 | * |
| 193 | * @dev: the device structure |
| 194 | * @buffer: message buffer will be written |
| 195 | * @buffer_length: message size will be read |
| 196 | */ |
Tomas Winkler | edf1eed | 2012-02-09 19:25:54 +0200 | [diff] [blame] | 197 | void mei_read_slots(struct mei_device *dev, unsigned char *buffer, |
| 198 | unsigned long buffer_length) |
Oren Weil | 3ce7272 | 2011-05-15 13:43:43 +0300 | [diff] [blame] | 199 | { |
Tomas Winkler | edf1eed | 2012-02-09 19:25:54 +0200 | [diff] [blame] | 200 | u32 *reg_buf = (u32 *)buffer; |
Oren Weil | 3ce7272 | 2011-05-15 13:43:43 +0300 | [diff] [blame] | 201 | |
Tomas Winkler | edf1eed | 2012-02-09 19:25:54 +0200 | [diff] [blame] | 202 | for (; buffer_length >= sizeof(u32); buffer_length -= sizeof(u32)) |
| 203 | *reg_buf++ = mei_mecbrw_read(dev); |
Oren Weil | 3ce7272 | 2011-05-15 13:43:43 +0300 | [diff] [blame] | 204 | |
| 205 | if (buffer_length > 0) { |
Tomas Winkler | edf1eed | 2012-02-09 19:25:54 +0200 | [diff] [blame] | 206 | u32 reg = mei_mecbrw_read(dev); |
| 207 | memcpy(reg_buf, ®, buffer_length); |
Oren Weil | 3ce7272 | 2011-05-15 13:43:43 +0300 | [diff] [blame] | 208 | } |
| 209 | |
| 210 | dev->host_hw_state |= H_IG; |
| 211 | mei_hcsr_set(dev); |
| 212 | } |
| 213 | |
| 214 | /** |
| 215 | * mei_flow_ctrl_creds - checks flow_control credentials. |
| 216 | * |
| 217 | * @dev: the device structure |
| 218 | * @cl: private data of the file object |
| 219 | * |
| 220 | * returns 1 if mei_flow_ctrl_creds >0, 0 - otherwise. |
| 221 | * -ENOENT if mei_cl is not present |
| 222 | * -EINVAL if single_recv_buf == 0 |
| 223 | */ |
| 224 | int mei_flow_ctrl_creds(struct mei_device *dev, struct mei_cl *cl) |
| 225 | { |
| 226 | int i; |
| 227 | |
Tomas Winkler | cf9673d | 2011-06-06 10:44:33 +0300 | [diff] [blame] | 228 | if (!dev->me_clients_num) |
Oren Weil | 3ce7272 | 2011-05-15 13:43:43 +0300 | [diff] [blame] | 229 | return 0; |
| 230 | |
| 231 | if (cl->mei_flow_ctrl_creds > 0) |
| 232 | return 1; |
| 233 | |
Tomas Winkler | cf9673d | 2011-06-06 10:44:33 +0300 | [diff] [blame] | 234 | for (i = 0; i < dev->me_clients_num; i++) { |
Oren Weil | 3ce7272 | 2011-05-15 13:43:43 +0300 | [diff] [blame] | 235 | struct mei_me_client *me_cl = &dev->me_clients[i]; |
| 236 | if (me_cl->client_id == cl->me_client_id) { |
| 237 | if (me_cl->mei_flow_ctrl_creds) { |
| 238 | if (WARN_ON(me_cl->props.single_recv_buf == 0)) |
| 239 | return -EINVAL; |
| 240 | return 1; |
| 241 | } else { |
| 242 | return 0; |
| 243 | } |
| 244 | } |
| 245 | } |
| 246 | return -ENOENT; |
| 247 | } |
| 248 | |
| 249 | /** |
| 250 | * mei_flow_ctrl_reduce - reduces flow_control. |
| 251 | * |
| 252 | * @dev: the device structure |
| 253 | * @cl: private data of the file object |
| 254 | * @returns |
| 255 | * 0 on success |
| 256 | * -ENOENT when me client is not found |
Justin P. Mattock | 5f9092f | 2012-03-12 07:18:09 -0700 | [diff] [blame] | 257 | * -EINVAL when ctrl credits are <= 0 |
Oren Weil | 3ce7272 | 2011-05-15 13:43:43 +0300 | [diff] [blame] | 258 | */ |
| 259 | int mei_flow_ctrl_reduce(struct mei_device *dev, struct mei_cl *cl) |
| 260 | { |
| 261 | int i; |
| 262 | |
Tomas Winkler | cf9673d | 2011-06-06 10:44:33 +0300 | [diff] [blame] | 263 | if (!dev->me_clients_num) |
Oren Weil | 3ce7272 | 2011-05-15 13:43:43 +0300 | [diff] [blame] | 264 | return -ENOENT; |
| 265 | |
Tomas Winkler | cf9673d | 2011-06-06 10:44:33 +0300 | [diff] [blame] | 266 | for (i = 0; i < dev->me_clients_num; i++) { |
Oren Weil | 3ce7272 | 2011-05-15 13:43:43 +0300 | [diff] [blame] | 267 | struct mei_me_client *me_cl = &dev->me_clients[i]; |
| 268 | if (me_cl->client_id == cl->me_client_id) { |
| 269 | if (me_cl->props.single_recv_buf != 0) { |
| 270 | if (WARN_ON(me_cl->mei_flow_ctrl_creds <= 0)) |
| 271 | return -EINVAL; |
| 272 | dev->me_clients[i].mei_flow_ctrl_creds--; |
| 273 | } else { |
| 274 | if (WARN_ON(cl->mei_flow_ctrl_creds <= 0)) |
| 275 | return -EINVAL; |
| 276 | cl->mei_flow_ctrl_creds--; |
| 277 | } |
| 278 | return 0; |
| 279 | } |
| 280 | } |
| 281 | return -ENOENT; |
| 282 | } |
| 283 | |
| 284 | /** |
| 285 | * mei_send_flow_control - sends flow control to fw. |
| 286 | * |
| 287 | * @dev: the device structure |
| 288 | * @cl: private data of the file object |
| 289 | * |
Tomas Winkler | 1ccb7b6 | 2012-03-14 14:39:42 +0200 | [diff] [blame] | 290 | * This function returns -EIO on write failure |
Oren Weil | 3ce7272 | 2011-05-15 13:43:43 +0300 | [diff] [blame] | 291 | */ |
| 292 | int mei_send_flow_control(struct mei_device *dev, struct mei_cl *cl) |
| 293 | { |
| 294 | struct mei_msg_hdr *mei_hdr; |
| 295 | struct hbm_flow_control *mei_flow_control; |
| 296 | |
| 297 | mei_hdr = (struct mei_msg_hdr *) &dev->wr_msg_buf[0]; |
| 298 | mei_hdr->host_addr = 0; |
| 299 | mei_hdr->me_addr = 0; |
| 300 | mei_hdr->length = sizeof(struct hbm_flow_control); |
| 301 | mei_hdr->msg_complete = 1; |
| 302 | mei_hdr->reserved = 0; |
| 303 | |
| 304 | mei_flow_control = (struct hbm_flow_control *) &dev->wr_msg_buf[1]; |
Julia Lawall | c056998 | 2011-09-16 08:57:33 +0200 | [diff] [blame] | 305 | memset(mei_flow_control, 0, sizeof(*mei_flow_control)); |
Oren Weil | 3ce7272 | 2011-05-15 13:43:43 +0300 | [diff] [blame] | 306 | mei_flow_control->host_addr = cl->host_client_id; |
| 307 | mei_flow_control->me_addr = cl->me_client_id; |
Tomas Winkler | 1ca7e78 | 2012-02-26 23:18:57 +0200 | [diff] [blame] | 308 | mei_flow_control->hbm_cmd = MEI_FLOW_CONTROL_CMD; |
Oren Weil | 3ce7272 | 2011-05-15 13:43:43 +0300 | [diff] [blame] | 309 | memset(mei_flow_control->reserved, 0, |
| 310 | sizeof(mei_flow_control->reserved)); |
| 311 | dev_dbg(&dev->pdev->dev, "sending flow control host client = %d, ME client = %d\n", |
Tomas Winkler | 1ccb7b6 | 2012-03-14 14:39:42 +0200 | [diff] [blame] | 312 | cl->host_client_id, cl->me_client_id); |
| 313 | |
| 314 | return mei_write_message(dev, mei_hdr, |
Oren Weil | 3ce7272 | 2011-05-15 13:43:43 +0300 | [diff] [blame] | 315 | (unsigned char *) mei_flow_control, |
Tomas Winkler | 1ccb7b6 | 2012-03-14 14:39:42 +0200 | [diff] [blame] | 316 | sizeof(struct hbm_flow_control)); |
Oren Weil | 3ce7272 | 2011-05-15 13:43:43 +0300 | [diff] [blame] | 317 | } |
| 318 | |
| 319 | /** |
| 320 | * mei_other_client_is_connecting - checks if other |
| 321 | * client with the same client id is connected. |
| 322 | * |
| 323 | * @dev: the device structure |
| 324 | * @cl: private data of the file object |
| 325 | * |
| 326 | * returns 1 if other client is connected, 0 - otherwise. |
| 327 | */ |
| 328 | int mei_other_client_is_connecting(struct mei_device *dev, |
| 329 | struct mei_cl *cl) |
| 330 | { |
| 331 | struct mei_cl *cl_pos = NULL; |
| 332 | struct mei_cl *cl_next = NULL; |
| 333 | |
| 334 | list_for_each_entry_safe(cl_pos, cl_next, &dev->file_list, link) { |
| 335 | if ((cl_pos->state == MEI_FILE_CONNECTING) && |
| 336 | (cl_pos != cl) && |
| 337 | cl->me_client_id == cl_pos->me_client_id) |
| 338 | return 1; |
| 339 | |
| 340 | } |
| 341 | return 0; |
| 342 | } |
| 343 | |
| 344 | /** |
| 345 | * mei_disconnect - sends disconnect message to fw. |
| 346 | * |
| 347 | * @dev: the device structure |
| 348 | * @cl: private data of the file object |
| 349 | * |
Tomas Winkler | 1ccb7b6 | 2012-03-14 14:39:42 +0200 | [diff] [blame] | 350 | * This function returns -EIO on write failure |
Oren Weil | 3ce7272 | 2011-05-15 13:43:43 +0300 | [diff] [blame] | 351 | */ |
| 352 | int mei_disconnect(struct mei_device *dev, struct mei_cl *cl) |
| 353 | { |
| 354 | struct mei_msg_hdr *mei_hdr; |
| 355 | struct hbm_client_disconnect_request *mei_cli_disconnect; |
| 356 | |
| 357 | mei_hdr = (struct mei_msg_hdr *) &dev->wr_msg_buf[0]; |
| 358 | mei_hdr->host_addr = 0; |
| 359 | mei_hdr->me_addr = 0; |
| 360 | mei_hdr->length = sizeof(struct hbm_client_disconnect_request); |
| 361 | mei_hdr->msg_complete = 1; |
| 362 | mei_hdr->reserved = 0; |
| 363 | |
| 364 | mei_cli_disconnect = |
| 365 | (struct hbm_client_disconnect_request *) &dev->wr_msg_buf[1]; |
Julia Lawall | c056998 | 2011-09-16 08:57:33 +0200 | [diff] [blame] | 366 | memset(mei_cli_disconnect, 0, sizeof(*mei_cli_disconnect)); |
Oren Weil | 3ce7272 | 2011-05-15 13:43:43 +0300 | [diff] [blame] | 367 | mei_cli_disconnect->host_addr = cl->host_client_id; |
| 368 | mei_cli_disconnect->me_addr = cl->me_client_id; |
Tomas Winkler | 1ca7e78 | 2012-02-26 23:18:57 +0200 | [diff] [blame] | 369 | mei_cli_disconnect->hbm_cmd = CLIENT_DISCONNECT_REQ_CMD; |
Oren Weil | 3ce7272 | 2011-05-15 13:43:43 +0300 | [diff] [blame] | 370 | mei_cli_disconnect->reserved[0] = 0; |
| 371 | |
Tomas Winkler | 1ccb7b6 | 2012-03-14 14:39:42 +0200 | [diff] [blame] | 372 | return mei_write_message(dev, mei_hdr, |
Oren Weil | 3ce7272 | 2011-05-15 13:43:43 +0300 | [diff] [blame] | 373 | (unsigned char *) mei_cli_disconnect, |
Tomas Winkler | 1ccb7b6 | 2012-03-14 14:39:42 +0200 | [diff] [blame] | 374 | sizeof(struct hbm_client_disconnect_request)); |
Oren Weil | 3ce7272 | 2011-05-15 13:43:43 +0300 | [diff] [blame] | 375 | } |
| 376 | |
| 377 | /** |
| 378 | * mei_connect - sends connect message to fw. |
| 379 | * |
| 380 | * @dev: the device structure |
| 381 | * @cl: private data of the file object |
| 382 | * |
Tomas Winkler | 1ccb7b6 | 2012-03-14 14:39:42 +0200 | [diff] [blame] | 383 | * This function returns -EIO on write failure |
Oren Weil | 3ce7272 | 2011-05-15 13:43:43 +0300 | [diff] [blame] | 384 | */ |
| 385 | int mei_connect(struct mei_device *dev, struct mei_cl *cl) |
| 386 | { |
| 387 | struct mei_msg_hdr *mei_hdr; |
| 388 | struct hbm_client_connect_request *mei_cli_connect; |
| 389 | |
| 390 | mei_hdr = (struct mei_msg_hdr *) &dev->wr_msg_buf[0]; |
| 391 | mei_hdr->host_addr = 0; |
| 392 | mei_hdr->me_addr = 0; |
| 393 | mei_hdr->length = sizeof(struct hbm_client_connect_request); |
| 394 | mei_hdr->msg_complete = 1; |
| 395 | mei_hdr->reserved = 0; |
| 396 | |
| 397 | mei_cli_connect = |
| 398 | (struct hbm_client_connect_request *) &dev->wr_msg_buf[1]; |
| 399 | mei_cli_connect->host_addr = cl->host_client_id; |
| 400 | mei_cli_connect->me_addr = cl->me_client_id; |
Tomas Winkler | 1ca7e78 | 2012-02-26 23:18:57 +0200 | [diff] [blame] | 401 | mei_cli_connect->hbm_cmd = CLIENT_CONNECT_REQ_CMD; |
Oren Weil | 3ce7272 | 2011-05-15 13:43:43 +0300 | [diff] [blame] | 402 | mei_cli_connect->reserved = 0; |
| 403 | |
Tomas Winkler | 1ccb7b6 | 2012-03-14 14:39:42 +0200 | [diff] [blame] | 404 | return mei_write_message(dev, mei_hdr, |
Oren Weil | 3ce7272 | 2011-05-15 13:43:43 +0300 | [diff] [blame] | 405 | (unsigned char *) mei_cli_connect, |
Tomas Winkler | 1ccb7b6 | 2012-03-14 14:39:42 +0200 | [diff] [blame] | 406 | sizeof(struct hbm_client_connect_request)); |
Oren Weil | 3ce7272 | 2011-05-15 13:43:43 +0300 | [diff] [blame] | 407 | } |