Merge tag 'rmobile-for-linus' of git://github.com/pmundt/linux-sh
[linux-2.6/btrfs-unstable.git] / drivers / staging / mei / interface.c
blobeb5df7fc22691b25d0072ebd08869a8eecc3f5b3
1 /*
3 * Intel Management Engine Interface (Intel MEI) Linux driver
4 * Copyright (c) 2003-2011, Intel Corporation.
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.
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.
17 #include <linux/pci.h>
18 #include "mei_dev.h"
19 #include "mei.h"
20 #include "interface.h"
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.
28 * @dev: the device structure
30 void mei_hcsr_set(struct mei_device *dev)
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);
38 /**
39 * mei_csr_enable_interrupts - enables mei device interrupts
41 * @dev: the device structure
43 void mei_enable_interrupts(struct mei_device *dev)
45 dev->host_hw_state |= H_IE;
46 mei_hcsr_set(dev);
49 /**
50 * mei_csr_disable_interrupts - disables mei device interrupts
52 * @dev: the device structure
54 void mei_disable_interrupts(struct mei_device *dev)
56 dev->host_hw_state &= ~H_IE;
57 mei_hcsr_set(dev);
60 /**
61 * _host_get_filled_slots - gets number of device filled buffer slots
63 * @device: the device structure
65 * returns number of filled slots
67 static unsigned char _host_get_filled_slots(const struct mei_device *dev)
69 char read_ptr, write_ptr;
71 read_ptr = (char) ((dev->host_hw_state & H_CBRP) >> 8);
72 write_ptr = (char) ((dev->host_hw_state & H_CBWP) >> 16);
74 return (unsigned char) (write_ptr - read_ptr);
77 /**
78 * mei_host_buffer_is_empty - checks if host buffer is empty.
80 * @dev: the device structure
82 * returns 1 if empty, 0 - otherwise.
84 int mei_host_buffer_is_empty(struct mei_device *dev)
86 unsigned char filled_slots;
88 dev->host_hw_state = mei_hcsr_read(dev);
89 filled_slots = _host_get_filled_slots(dev);
91 if (filled_slots == 0)
92 return 1;
94 return 0;
97 /**
98 * mei_count_empty_write_slots - counts write empty slots.
100 * @dev: the device structure
102 * returns -1(ESLOTS_OVERFLOW) if overflow, otherwise empty slots count
104 int mei_count_empty_write_slots(struct mei_device *dev)
106 unsigned char buffer_depth, filled_slots, empty_slots;
108 dev->host_hw_state = mei_hcsr_read(dev);
109 buffer_depth = (unsigned char) ((dev->host_hw_state & H_CBD) >> 24);
110 filled_slots = _host_get_filled_slots(dev);
111 empty_slots = buffer_depth - filled_slots;
113 /* check for overflow */
114 if (filled_slots > buffer_depth)
115 return -EOVERFLOW;
117 return empty_slots;
121 * mei_write_message - writes a message to mei device.
123 * @dev: the device structure
124 * @header: header of message
125 * @write_buffer: message buffer will be written
126 * @write_length: message size will be written
128 * returns 1 if success, 0 - otherwise.
130 int mei_write_message(struct mei_device *dev,
131 struct mei_msg_hdr *header,
132 unsigned char *write_buffer,
133 unsigned long write_length)
135 u32 temp_msg = 0;
136 unsigned long bytes_written = 0;
137 unsigned char buffer_depth, filled_slots, empty_slots;
138 unsigned long dw_to_write;
140 dev->host_hw_state = mei_hcsr_read(dev);
142 dev_dbg(&dev->pdev->dev,
143 "host_hw_state = 0x%08x.\n",
144 dev->host_hw_state);
146 dev_dbg(&dev->pdev->dev,
147 "mei_write_message header=%08x.\n",
148 *((u32 *) header));
150 buffer_depth = (unsigned char) ((dev->host_hw_state & H_CBD) >> 24);
151 filled_slots = _host_get_filled_slots(dev);
152 empty_slots = buffer_depth - filled_slots;
153 dev_dbg(&dev->pdev->dev,
154 "filled = %hu, empty = %hu.\n",
155 filled_slots, empty_slots);
157 dw_to_write = ((write_length + 3) / 4);
159 if (dw_to_write > empty_slots)
160 return 0;
162 mei_reg_write(dev, H_CB_WW, *((u32 *) header));
164 while (write_length >= 4) {
165 mei_reg_write(dev, H_CB_WW,
166 *(u32 *) (write_buffer + bytes_written));
167 bytes_written += 4;
168 write_length -= 4;
171 if (write_length > 0) {
172 memcpy(&temp_msg, &write_buffer[bytes_written], write_length);
173 mei_reg_write(dev, H_CB_WW, temp_msg);
176 dev->host_hw_state |= H_IG;
177 mei_hcsr_set(dev);
178 dev->me_hw_state = mei_mecsr_read(dev);
179 if ((dev->me_hw_state & ME_RDY_HRA) != ME_RDY_HRA)
180 return 0;
182 return 1;
186 * mei_count_full_read_slots - counts read full slots.
188 * @dev: the device structure
190 * returns -1(ESLOTS_OVERFLOW) if overflow, otherwise filled slots count
192 int mei_count_full_read_slots(struct mei_device *dev)
194 char read_ptr, write_ptr;
195 unsigned char buffer_depth, filled_slots;
197 dev->me_hw_state = mei_mecsr_read(dev);
198 buffer_depth = (unsigned char)((dev->me_hw_state & ME_CBD_HRA) >> 24);
199 read_ptr = (char) ((dev->me_hw_state & ME_CBRP_HRA) >> 8);
200 write_ptr = (char) ((dev->me_hw_state & ME_CBWP_HRA) >> 16);
201 filled_slots = (unsigned char) (write_ptr - read_ptr);
203 /* check for overflow */
204 if (filled_slots > buffer_depth)
205 return -EOVERFLOW;
207 dev_dbg(&dev->pdev->dev, "filled_slots =%08x\n", filled_slots);
208 return (int)filled_slots;
212 * mei_read_slots - reads a message from mei device.
214 * @dev: the device structure
215 * @buffer: message buffer will be written
216 * @buffer_length: message size will be read
218 void mei_read_slots(struct mei_device *dev,
219 unsigned char *buffer, unsigned long buffer_length)
221 u32 i = 0;
222 unsigned char temp_buf[sizeof(u32)];
224 while (buffer_length >= sizeof(u32)) {
225 ((u32 *) buffer)[i] = mei_mecbrw_read(dev);
227 dev_dbg(&dev->pdev->dev,
228 "buffer[%d]= %d\n",
229 i, ((u32 *) buffer)[i]);
231 i++;
232 buffer_length -= sizeof(u32);
235 if (buffer_length > 0) {
236 *((u32 *) &temp_buf) = mei_mecbrw_read(dev);
237 memcpy(&buffer[i * 4], temp_buf, buffer_length);
240 dev->host_hw_state |= H_IG;
241 mei_hcsr_set(dev);
245 * mei_flow_ctrl_creds - checks flow_control credentials.
247 * @dev: the device structure
248 * @cl: private data of the file object
250 * returns 1 if mei_flow_ctrl_creds >0, 0 - otherwise.
251 * -ENOENT if mei_cl is not present
252 * -EINVAL if single_recv_buf == 0
254 int mei_flow_ctrl_creds(struct mei_device *dev, struct mei_cl *cl)
256 int i;
258 if (!dev->me_clients_num)
259 return 0;
261 if (cl->mei_flow_ctrl_creds > 0)
262 return 1;
264 for (i = 0; i < dev->me_clients_num; i++) {
265 struct mei_me_client *me_cl = &dev->me_clients[i];
266 if (me_cl->client_id == cl->me_client_id) {
267 if (me_cl->mei_flow_ctrl_creds) {
268 if (WARN_ON(me_cl->props.single_recv_buf == 0))
269 return -EINVAL;
270 return 1;
271 } else {
272 return 0;
276 return -ENOENT;
280 * mei_flow_ctrl_reduce - reduces flow_control.
282 * @dev: the device structure
283 * @cl: private data of the file object
284 * @returns
285 * 0 on success
286 * -ENOENT when me client is not found
287 * -EINVAL wehn ctrl credits are <= 0
289 int mei_flow_ctrl_reduce(struct mei_device *dev, struct mei_cl *cl)
291 int i;
293 if (!dev->me_clients_num)
294 return -ENOENT;
296 for (i = 0; i < dev->me_clients_num; i++) {
297 struct mei_me_client *me_cl = &dev->me_clients[i];
298 if (me_cl->client_id == cl->me_client_id) {
299 if (me_cl->props.single_recv_buf != 0) {
300 if (WARN_ON(me_cl->mei_flow_ctrl_creds <= 0))
301 return -EINVAL;
302 dev->me_clients[i].mei_flow_ctrl_creds--;
303 } else {
304 if (WARN_ON(cl->mei_flow_ctrl_creds <= 0))
305 return -EINVAL;
306 cl->mei_flow_ctrl_creds--;
308 return 0;
311 return -ENOENT;
315 * mei_send_flow_control - sends flow control to fw.
317 * @dev: the device structure
318 * @cl: private data of the file object
320 * returns 1 if success, 0 - otherwise.
322 int mei_send_flow_control(struct mei_device *dev, struct mei_cl *cl)
324 struct mei_msg_hdr *mei_hdr;
325 struct hbm_flow_control *mei_flow_control;
327 mei_hdr = (struct mei_msg_hdr *) &dev->wr_msg_buf[0];
328 mei_hdr->host_addr = 0;
329 mei_hdr->me_addr = 0;
330 mei_hdr->length = sizeof(struct hbm_flow_control);
331 mei_hdr->msg_complete = 1;
332 mei_hdr->reserved = 0;
334 mei_flow_control = (struct hbm_flow_control *) &dev->wr_msg_buf[1];
335 memset(mei_flow_control, 0, sizeof(*mei_flow_control));
336 mei_flow_control->host_addr = cl->host_client_id;
337 mei_flow_control->me_addr = cl->me_client_id;
338 mei_flow_control->cmd.cmd = MEI_FLOW_CONTROL_CMD;
339 memset(mei_flow_control->reserved, 0,
340 sizeof(mei_flow_control->reserved));
341 dev_dbg(&dev->pdev->dev, "sending flow control host client = %d, ME client = %d\n",
342 cl->host_client_id, cl->me_client_id);
343 if (!mei_write_message(dev, mei_hdr,
344 (unsigned char *) mei_flow_control,
345 sizeof(struct hbm_flow_control)))
346 return 0;
348 return 1;
353 * mei_other_client_is_connecting - checks if other
354 * client with the same client id is connected.
356 * @dev: the device structure
357 * @cl: private data of the file object
359 * returns 1 if other client is connected, 0 - otherwise.
361 int mei_other_client_is_connecting(struct mei_device *dev,
362 struct mei_cl *cl)
364 struct mei_cl *cl_pos = NULL;
365 struct mei_cl *cl_next = NULL;
367 list_for_each_entry_safe(cl_pos, cl_next, &dev->file_list, link) {
368 if ((cl_pos->state == MEI_FILE_CONNECTING) &&
369 (cl_pos != cl) &&
370 cl->me_client_id == cl_pos->me_client_id)
371 return 1;
374 return 0;
378 * mei_disconnect - sends disconnect message to fw.
380 * @dev: the device structure
381 * @cl: private data of the file object
383 * returns 1 if success, 0 - otherwise.
385 int mei_disconnect(struct mei_device *dev, struct mei_cl *cl)
387 struct mei_msg_hdr *mei_hdr;
388 struct hbm_client_disconnect_request *mei_cli_disconnect;
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_disconnect_request);
394 mei_hdr->msg_complete = 1;
395 mei_hdr->reserved = 0;
397 mei_cli_disconnect =
398 (struct hbm_client_disconnect_request *) &dev->wr_msg_buf[1];
399 memset(mei_cli_disconnect, 0, sizeof(*mei_cli_disconnect));
400 mei_cli_disconnect->host_addr = cl->host_client_id;
401 mei_cli_disconnect->me_addr = cl->me_client_id;
402 mei_cli_disconnect->cmd.cmd = CLIENT_DISCONNECT_REQ_CMD;
403 mei_cli_disconnect->reserved[0] = 0;
405 if (!mei_write_message(dev, mei_hdr,
406 (unsigned char *) mei_cli_disconnect,
407 sizeof(struct hbm_client_disconnect_request)))
408 return 0;
410 return 1;
414 * mei_connect - sends connect message to fw.
416 * @dev: the device structure
417 * @cl: private data of the file object
419 * returns 1 if success, 0 - otherwise.
421 int mei_connect(struct mei_device *dev, struct mei_cl *cl)
423 struct mei_msg_hdr *mei_hdr;
424 struct hbm_client_connect_request *mei_cli_connect;
426 mei_hdr = (struct mei_msg_hdr *) &dev->wr_msg_buf[0];
427 mei_hdr->host_addr = 0;
428 mei_hdr->me_addr = 0;
429 mei_hdr->length = sizeof(struct hbm_client_connect_request);
430 mei_hdr->msg_complete = 1;
431 mei_hdr->reserved = 0;
433 mei_cli_connect =
434 (struct hbm_client_connect_request *) &dev->wr_msg_buf[1];
435 mei_cli_connect->host_addr = cl->host_client_id;
436 mei_cli_connect->me_addr = cl->me_client_id;
437 mei_cli_connect->cmd.cmd = CLIENT_CONNECT_REQ_CMD;
438 mei_cli_connect->reserved = 0;
440 if (!mei_write_message(dev, mei_hdr,
441 (unsigned char *) mei_cli_connect,
442 sizeof(struct hbm_client_connect_request)))
443 return 0;
445 return 1;