blob: 5ff810b1e8b34693ecfc0b615b53adbbd5ad346f [file] [log] [blame]
Oren Weilab841162011-05-15 13:43:41 +03001/*
2 *
3 * Intel Management Engine Interface (Intel MEI) Linux driver
Tomas Winkler733ba912012-02-09 19:25:53 +02004 * Copyright (c) 2003-2012, Intel Corporation.
Oren Weilab841162011-05-15 13:43:41 +03005 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms and conditions of the GNU General Public License,
8 * version 2, as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * more details.
14 *
15 */
16
Tomas Winkler2f3d2b42012-03-19 22:38:13 +020017#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
18
Oren Weilab841162011-05-15 13:43:41 +030019#include <linux/module.h>
20#include <linux/moduleparam.h>
21#include <linux/kernel.h>
22#include <linux/device.h>
23#include <linux/fs.h>
24#include <linux/errno.h>
25#include <linux/types.h>
26#include <linux/fcntl.h>
27#include <linux/aio.h>
28#include <linux/pci.h>
29#include <linux/poll.h>
30#include <linux/init.h>
31#include <linux/ioctl.h>
32#include <linux/cdev.h>
Oren Weilab841162011-05-15 13:43:41 +030033#include <linux/sched.h>
34#include <linux/uuid.h>
35#include <linux/compat.h>
36#include <linux/jiffies.h>
37#include <linux/interrupt.h>
Oren Weil5b881e32011-11-13 09:41:14 +020038#include <linux/miscdevice.h>
Oren Weilab841162011-05-15 13:43:41 +030039
Tomas Winkler4f3afe12012-05-09 16:38:59 +030040#include <linux/mei.h>
Tomas Winkler47a73802012-12-25 19:06:03 +020041
42#include "mei_dev.h"
Tomas Winkler9dc64d62013-01-08 23:07:17 +020043#include "hw-me.h"
Tomas Winkler90e0b5f2013-01-08 23:07:14 +020044#include "client.h"
Oren Weilab841162011-05-15 13:43:41 +030045
Oren Weilab841162011-05-15 13:43:41 +030046/**
Oren Weilab841162011-05-15 13:43:41 +030047 * mei_open - the open function
48 *
49 * @inode: pointer to inode structure
50 * @file: pointer to file structure
Tomas Winkler9b0d5ef2013-04-18 23:03:48 +030051 e
Oren Weilab841162011-05-15 13:43:41 +030052 * returns 0 on success, <0 on error
53 */
54static int mei_open(struct inode *inode, struct file *file)
55{
Tomas Winkler2703d4b2013-02-06 14:06:39 +020056 struct miscdevice *misc = file->private_data;
57 struct pci_dev *pdev;
Oren Weilab841162011-05-15 13:43:41 +030058 struct mei_cl *cl;
Oren Weilab841162011-05-15 13:43:41 +030059 struct mei_device *dev;
Tomas Winkler2703d4b2013-02-06 14:06:39 +020060
Tomas Winkler6f37aca2011-11-13 09:41:15 +020061 int err;
Oren Weilab841162011-05-15 13:43:41 +030062
63 err = -ENODEV;
Tomas Winkler2703d4b2013-02-06 14:06:39 +020064 if (!misc->parent)
Oren Weilab841162011-05-15 13:43:41 +030065 goto out;
66
Tomas Winkler2703d4b2013-02-06 14:06:39 +020067 pdev = container_of(misc->parent, struct pci_dev, dev);
68
69 dev = pci_get_drvdata(pdev);
Oren Weil5b881e32011-11-13 09:41:14 +020070 if (!dev)
Oren Weilab841162011-05-15 13:43:41 +030071 goto out;
72
73 mutex_lock(&dev->device_lock);
74 err = -ENOMEM;
Tomas Winklerc95efb72011-05-25 17:28:21 +030075 cl = mei_cl_allocate(dev);
Oren Weilab841162011-05-15 13:43:41 +030076 if (!cl)
Alexey Khoroshilov303dfbf2011-08-31 00:41:14 +040077 goto out_unlock;
Oren Weilab841162011-05-15 13:43:41 +030078
79 err = -ENODEV;
Tomas Winklerb210d752012-08-07 00:03:56 +030080 if (dev->dev_state != MEI_DEV_ENABLED) {
81 dev_dbg(&dev->pdev->dev, "dev_state != MEI_ENABLED dev_state = %s\n",
82 mei_dev_state_str(dev->dev_state));
Oren Weilab841162011-05-15 13:43:41 +030083 goto out_unlock;
84 }
85 err = -EMFILE;
Tomas Winkler1b812942012-09-11 00:43:20 +030086 if (dev->open_handle_count >= MEI_MAX_OPEN_HANDLE_COUNT) {
87 dev_err(&dev->pdev->dev, "open_handle_count exceded %d",
88 MEI_MAX_OPEN_HANDLE_COUNT);
Oren Weilab841162011-05-15 13:43:41 +030089 goto out_unlock;
Tomas Winkler1b812942012-09-11 00:43:20 +030090 }
Oren Weilab841162011-05-15 13:43:41 +030091
Tomas Winkler781d0d82013-01-08 23:07:22 +020092 err = mei_cl_link(cl, MEI_HOST_CLIENT_ID_ANY);
93 if (err)
Oren Weilab841162011-05-15 13:43:41 +030094 goto out_unlock;
Oren Weilab841162011-05-15 13:43:41 +030095
96 file->private_data = cl;
97 mutex_unlock(&dev->device_lock);
98
Oren Weil5b881e32011-11-13 09:41:14 +020099 return nonseekable_open(inode, file);
Oren Weilab841162011-05-15 13:43:41 +0300100
101out_unlock:
102 mutex_unlock(&dev->device_lock);
103 kfree(cl);
104out:
105 return err;
106}
107
108/**
109 * mei_release - the release function
110 *
111 * @inode: pointer to inode structure
112 * @file: pointer to file structure
113 *
114 * returns 0 on success, <0 on error
115 */
116static int mei_release(struct inode *inode, struct file *file)
117{
118 struct mei_cl *cl = file->private_data;
119 struct mei_cl_cb *cb;
120 struct mei_device *dev;
121 int rets = 0;
122
123 if (WARN_ON(!cl || !cl->dev))
124 return -ENODEV;
125
126 dev = cl->dev;
127
128 mutex_lock(&dev->device_lock);
Tomas Winklera562d5c2012-11-11 17:38:01 +0200129 if (cl == &dev->iamthif_cl) {
130 rets = mei_amthif_release(dev, file);
131 goto out;
132 }
133 if (cl->state == MEI_FILE_CONNECTED) {
134 cl->state = MEI_FILE_DISCONNECTING;
135 dev_dbg(&dev->pdev->dev,
136 "disconnecting client host client = %d, "
137 "ME client = %d\n",
Oren Weilab841162011-05-15 13:43:41 +0300138 cl->host_client_id,
139 cl->me_client_id);
Tomas Winkler90e0b5f2013-01-08 23:07:14 +0200140 rets = mei_cl_disconnect(cl);
Oren Weilab841162011-05-15 13:43:41 +0300141 }
Tomas Winklera562d5c2012-11-11 17:38:01 +0200142 mei_cl_flush_queues(cl);
143 dev_dbg(&dev->pdev->dev, "remove client host client = %d, ME client = %d\n",
144 cl->host_client_id,
145 cl->me_client_id);
146
147 if (dev->open_handle_count > 0) {
148 clear_bit(cl->host_client_id, dev->host_clients_map);
149 dev->open_handle_count--;
150 }
Tomas Winkler90e0b5f2013-01-08 23:07:14 +0200151 mei_cl_unlink(cl);
Tomas Winklera562d5c2012-11-11 17:38:01 +0200152
Tomas Winkler781d0d82013-01-08 23:07:22 +0200153
Tomas Winklera562d5c2012-11-11 17:38:01 +0200154 /* free read cb */
155 cb = NULL;
156 if (cl->read_cb) {
Tomas Winkler90e0b5f2013-01-08 23:07:14 +0200157 cb = mei_cl_find_read_cb(cl);
Tomas Winklera562d5c2012-11-11 17:38:01 +0200158 /* Remove entry from read list */
159 if (cb)
160 list_del(&cb->list);
161
162 cb = cl->read_cb;
163 cl->read_cb = NULL;
164 }
165
166 file->private_data = NULL;
167
168 if (cb) {
169 mei_io_cb_free(cb);
170 cb = NULL;
171 }
172
173 kfree(cl);
174out:
Oren Weilab841162011-05-15 13:43:41 +0300175 mutex_unlock(&dev->device_lock);
176 return rets;
177}
178
179
180/**
181 * mei_read - the read function.
182 *
183 * @file: pointer to file structure
184 * @ubuf: pointer to user buffer
185 * @length: buffer length
186 * @offset: data offset in buffer
187 *
188 * returns >=0 data length on success , <0 on error
189 */
190static ssize_t mei_read(struct file *file, char __user *ubuf,
Tomas Winkler441ab502011-12-13 23:39:34 +0200191 size_t length, loff_t *offset)
Oren Weilab841162011-05-15 13:43:41 +0300192{
193 struct mei_cl *cl = file->private_data;
194 struct mei_cl_cb *cb_pos = NULL;
195 struct mei_cl_cb *cb = NULL;
196 struct mei_device *dev;
Oren Weilab841162011-05-15 13:43:41 +0300197 int rets;
198 int err;
199
200
201 if (WARN_ON(!cl || !cl->dev))
202 return -ENODEV;
203
204 dev = cl->dev;
205
206 mutex_lock(&dev->device_lock);
Tomas Winklerb210d752012-08-07 00:03:56 +0300207 if (dev->dev_state != MEI_DEV_ENABLED) {
Oren Weilab841162011-05-15 13:43:41 +0300208 rets = -ENODEV;
209 goto out;
210 }
211
Oren Weilab841162011-05-15 13:43:41 +0300212 if (cl == &dev->iamthif_cl) {
Tomas Winkler19838fb2012-11-01 21:17:15 +0200213 rets = mei_amthif_read(dev, file, ubuf, length, offset);
Oren Weilab841162011-05-15 13:43:41 +0300214 goto out;
215 }
216
Tomas Winkler139aacf2013-05-29 20:09:30 +0300217 if (cl->read_cb) {
Oren Weilab841162011-05-15 13:43:41 +0300218 cb = cl->read_cb;
Tomas Winkler139aacf2013-05-29 20:09:30 +0300219 /* read what left */
220 if (cb->buf_idx > *offset)
221 goto copy_buffer;
222 /* offset is beyond buf_idx we have no more data return 0 */
223 if (cb->buf_idx > 0 && cb->buf_idx <= *offset) {
224 rets = 0;
225 goto free;
226 }
227 /* Offset needs to be cleaned for contiguous reads*/
228 if (cb->buf_idx == 0 && *offset > 0)
229 *offset = 0;
230 } else if (*offset > 0) {
Oren Weilab841162011-05-15 13:43:41 +0300231 *offset = 0;
Oren Weilab841162011-05-15 13:43:41 +0300232 }
233
Tomas Winklerfcb136e2013-04-19 22:01:35 +0300234 err = mei_cl_read_start(cl, length);
Oren Weilab841162011-05-15 13:43:41 +0300235 if (err && err != -EBUSY) {
236 dev_dbg(&dev->pdev->dev,
237 "mei start read failure with status = %d\n", err);
238 rets = err;
239 goto out;
240 }
241
242 if (MEI_READ_COMPLETE != cl->reading_state &&
243 !waitqueue_active(&cl->rx_wait)) {
244 if (file->f_flags & O_NONBLOCK) {
245 rets = -EAGAIN;
246 goto out;
247 }
248
249 mutex_unlock(&dev->device_lock);
250
251 if (wait_event_interruptible(cl->rx_wait,
252 (MEI_READ_COMPLETE == cl->reading_state ||
253 MEI_FILE_INITIALIZING == cl->state ||
254 MEI_FILE_DISCONNECTED == cl->state ||
255 MEI_FILE_DISCONNECTING == cl->state))) {
256 if (signal_pending(current))
257 return -EINTR;
258 return -ERESTARTSYS;
259 }
260
261 mutex_lock(&dev->device_lock);
262 if (MEI_FILE_INITIALIZING == cl->state ||
263 MEI_FILE_DISCONNECTED == cl->state ||
264 MEI_FILE_DISCONNECTING == cl->state) {
265 rets = -EBUSY;
266 goto out;
267 }
268 }
269
270 cb = cl->read_cb;
271
272 if (!cb) {
273 rets = -ENODEV;
274 goto out;
275 }
276 if (cl->reading_state != MEI_READ_COMPLETE) {
277 rets = 0;
278 goto out;
279 }
280 /* now copy the data to user space */
281copy_buffer:
Tomas Winklerfcb136e2013-04-19 22:01:35 +0300282 dev_dbg(&dev->pdev->dev, "buf.size = %d buf.idx= %ld\n",
283 cb->response_buffer.size, cb->buf_idx);
Tomas Winklerebb108ef2012-10-09 16:50:16 +0200284 if (length == 0 || ubuf == NULL || *offset > cb->buf_idx) {
Oren Weilab841162011-05-15 13:43:41 +0300285 rets = -EMSGSIZE;
286 goto free;
287 }
288
Tomas Winklerebb108ef2012-10-09 16:50:16 +0200289 /* length is being truncated to PAGE_SIZE,
290 * however buf_idx may point beyond that */
291 length = min_t(size_t, length, cb->buf_idx - *offset);
Oren Weilab841162011-05-15 13:43:41 +0300292
Tomas Winkler441ab502011-12-13 23:39:34 +0200293 if (copy_to_user(ubuf, cb->response_buffer.data + *offset, length)) {
Oren Weilab841162011-05-15 13:43:41 +0300294 rets = -EFAULT;
295 goto free;
296 }
297
298 rets = length;
299 *offset += length;
Tomas Winklerebb108ef2012-10-09 16:50:16 +0200300 if ((unsigned long)*offset < cb->buf_idx)
Oren Weilab841162011-05-15 13:43:41 +0300301 goto out;
302
303free:
Tomas Winkler90e0b5f2013-01-08 23:07:14 +0200304 cb_pos = mei_cl_find_read_cb(cl);
Oren Weilab841162011-05-15 13:43:41 +0300305 /* Remove entry from read list */
306 if (cb_pos)
Tomas Winklerfb601ad2012-10-15 12:06:48 +0200307 list_del(&cb_pos->list);
Tomas Winkler601a1ef2012-10-09 16:50:20 +0200308 mei_io_cb_free(cb);
Oren Weilab841162011-05-15 13:43:41 +0300309 cl->reading_state = MEI_IDLE;
310 cl->read_cb = NULL;
Oren Weilab841162011-05-15 13:43:41 +0300311out:
312 dev_dbg(&dev->pdev->dev, "end mei read rets= %d\n", rets);
313 mutex_unlock(&dev->device_lock);
314 return rets;
315}
Tomas Winkler33d28c92012-10-09 16:50:17 +0200316/**
Oren Weilab841162011-05-15 13:43:41 +0300317 * mei_write - the write function.
318 *
319 * @file: pointer to file structure
320 * @ubuf: pointer to user buffer
321 * @length: buffer length
322 * @offset: data offset in buffer
323 *
324 * returns >=0 data length on success , <0 on error
325 */
326static ssize_t mei_write(struct file *file, const char __user *ubuf,
Tomas Winkler441ab502011-12-13 23:39:34 +0200327 size_t length, loff_t *offset)
Oren Weilab841162011-05-15 13:43:41 +0300328{
329 struct mei_cl *cl = file->private_data;
330 struct mei_cl_cb *write_cb = NULL;
Oren Weilab841162011-05-15 13:43:41 +0300331 struct mei_device *dev;
332 unsigned long timeout = 0;
333 int rets;
Tomas Winkler4234a6d2013-04-08 21:56:37 +0300334 int id;
Oren Weilab841162011-05-15 13:43:41 +0300335
336 if (WARN_ON(!cl || !cl->dev))
337 return -ENODEV;
338
339 dev = cl->dev;
340
341 mutex_lock(&dev->device_lock);
342
Tomas Winklerb210d752012-08-07 00:03:56 +0300343 if (dev->dev_state != MEI_DEV_ENABLED) {
Tomas Winkler75f0ee12012-10-09 16:50:18 +0200344 rets = -ENODEV;
Tomas Winkler4234a6d2013-04-08 21:56:37 +0300345 goto out;
Oren Weilab841162011-05-15 13:43:41 +0300346 }
347
Tomas Winkler4234a6d2013-04-08 21:56:37 +0300348 id = mei_me_cl_by_id(dev, cl->me_client_id);
349 if (id < 0) {
Tomas Winkler75f0ee12012-10-09 16:50:18 +0200350 rets = -ENODEV;
Tomas Winkler4234a6d2013-04-08 21:56:37 +0300351 goto out;
Tomas Winkler75f0ee12012-10-09 16:50:18 +0200352 }
Tomas Winkler4234a6d2013-04-08 21:56:37 +0300353 if (length > dev->me_clients[id].props.max_msg_length || length <= 0) {
Tomas Winkler75f0ee12012-10-09 16:50:18 +0200354 rets = -EMSGSIZE;
Tomas Winkler4234a6d2013-04-08 21:56:37 +0300355 goto out;
Tomas Winkler75f0ee12012-10-09 16:50:18 +0200356 }
357
358 if (cl->state != MEI_FILE_CONNECTED) {
Tomas Winkler75f0ee12012-10-09 16:50:18 +0200359 dev_err(&dev->pdev->dev, "host client = %d, is not connected to ME client = %d",
360 cl->host_client_id, cl->me_client_id);
Tomas Winkler4234a6d2013-04-08 21:56:37 +0300361 rets = -ENODEV;
362 goto out;
Tomas Winkler75f0ee12012-10-09 16:50:18 +0200363 }
Oren Weilab841162011-05-15 13:43:41 +0300364 if (cl == &dev->iamthif_cl) {
Tomas Winkler19838fb2012-11-01 21:17:15 +0200365 write_cb = mei_amthif_find_read_list_entry(dev, file);
Oren Weilab841162011-05-15 13:43:41 +0300366
367 if (write_cb) {
368 timeout = write_cb->read_time +
Tomas Winkler3870c322012-11-01 21:17:14 +0200369 mei_secs_to_jiffies(MEI_IAMTHIF_READ_TIMER);
Oren Weilab841162011-05-15 13:43:41 +0300370
371 if (time_after(jiffies, timeout) ||
Tomas Winkler75f0ee12012-10-09 16:50:18 +0200372 cl->reading_state == MEI_READ_COMPLETE) {
373 *offset = 0;
Tomas Winklerfb601ad2012-10-15 12:06:48 +0200374 list_del(&write_cb->list);
Tomas Winkler601a1ef2012-10-09 16:50:20 +0200375 mei_io_cb_free(write_cb);
Tomas Winkler75f0ee12012-10-09 16:50:18 +0200376 write_cb = NULL;
Oren Weilab841162011-05-15 13:43:41 +0300377 }
378 }
379 }
380
381 /* free entry used in read */
382 if (cl->reading_state == MEI_READ_COMPLETE) {
383 *offset = 0;
Tomas Winkler90e0b5f2013-01-08 23:07:14 +0200384 write_cb = mei_cl_find_read_cb(cl);
Oren Weilab841162011-05-15 13:43:41 +0300385 if (write_cb) {
Tomas Winklerfb601ad2012-10-15 12:06:48 +0200386 list_del(&write_cb->list);
Tomas Winkler601a1ef2012-10-09 16:50:20 +0200387 mei_io_cb_free(write_cb);
Oren Weilab841162011-05-15 13:43:41 +0300388 write_cb = NULL;
389 cl->reading_state = MEI_IDLE;
390 cl->read_cb = NULL;
Oren Weilab841162011-05-15 13:43:41 +0300391 }
Tomas Winklerd91aaed2013-01-08 23:07:18 +0200392 } else if (cl->reading_state == MEI_IDLE)
Oren Weilab841162011-05-15 13:43:41 +0300393 *offset = 0;
394
395
Tomas Winkler33d28c92012-10-09 16:50:17 +0200396 write_cb = mei_io_cb_init(cl, file);
Oren Weilab841162011-05-15 13:43:41 +0300397 if (!write_cb) {
Tomas Winkler33d28c92012-10-09 16:50:17 +0200398 dev_err(&dev->pdev->dev, "write cb allocation failed\n");
399 rets = -ENOMEM;
Tomas Winkler4234a6d2013-04-08 21:56:37 +0300400 goto out;
Oren Weilab841162011-05-15 13:43:41 +0300401 }
Tomas Winkler33d28c92012-10-09 16:50:17 +0200402 rets = mei_io_cb_alloc_req_buf(write_cb, length);
403 if (rets)
Tomas Winkler4234a6d2013-04-08 21:56:37 +0300404 goto out;
Oren Weilab841162011-05-15 13:43:41 +0300405
Tomas Winkler75f0ee12012-10-09 16:50:18 +0200406 rets = copy_from_user(write_cb->request_buffer.data, ubuf, length);
Alexander Usyskind8b29ef2013-09-02 03:11:02 +0300407 if (rets) {
408 dev_err(&dev->pdev->dev, "failed to copy data from userland\n");
409 rets = -EFAULT;
Tomas Winkler4234a6d2013-04-08 21:56:37 +0300410 goto out;
Alexander Usyskind8b29ef2013-09-02 03:11:02 +0300411 }
Oren Weilab841162011-05-15 13:43:41 +0300412
Oren Weilab841162011-05-15 13:43:41 +0300413 if (cl == &dev->iamthif_cl) {
Tomas Winklerab5c4a52012-11-01 21:17:18 +0200414 rets = mei_amthif_write(dev, write_cb);
415
416 if (rets) {
417 dev_err(&dev->pdev->dev,
Tomas Winkler1a1aca42013-01-08 23:07:21 +0200418 "amthif write failed with status = %d\n", rets);
Tomas Winkler4234a6d2013-04-08 21:56:37 +0300419 goto out;
Oren Weilab841162011-05-15 13:43:41 +0300420 }
421 mutex_unlock(&dev->device_lock);
Tomas Winkler75f0ee12012-10-09 16:50:18 +0200422 return length;
Oren Weilab841162011-05-15 13:43:41 +0300423 }
424
Tomas Winkler4234a6d2013-04-08 21:56:37 +0300425 rets = mei_cl_write(cl, write_cb, false);
Tomas Winklerb0d0cf72012-11-01 21:17:13 +0200426out:
Oren Weilab841162011-05-15 13:43:41 +0300427 mutex_unlock(&dev->device_lock);
Tomas Winkler4234a6d2013-04-08 21:56:37 +0300428 if (rets < 0)
429 mei_io_cb_free(write_cb);
Oren Weilab841162011-05-15 13:43:41 +0300430 return rets;
431}
432
Tomas Winkler9f81abda2013-01-08 23:07:15 +0200433/**
434 * mei_ioctl_connect_client - the connect to fw client IOCTL function
435 *
436 * @dev: the device structure
437 * @data: IOCTL connect data, input and output parameters
438 * @file: private data of the file object
439 *
440 * Locking: called under "dev->device_lock" lock
441 *
442 * returns 0 on success, <0 on failure.
443 */
444static int mei_ioctl_connect_client(struct file *file,
445 struct mei_connect_client_data *data)
446{
447 struct mei_device *dev;
448 struct mei_client *client;
449 struct mei_cl *cl;
450 int i;
451 int rets;
452
453 cl = file->private_data;
454 if (WARN_ON(!cl || !cl->dev))
455 return -ENODEV;
456
457 dev = cl->dev;
458
459 if (dev->dev_state != MEI_DEV_ENABLED) {
460 rets = -ENODEV;
461 goto end;
462 }
463
464 if (cl->state != MEI_FILE_INITIALIZING &&
465 cl->state != MEI_FILE_DISCONNECTED) {
466 rets = -EBUSY;
467 goto end;
468 }
469
470 /* find ME client we're trying to connect to */
471 i = mei_me_cl_by_uuid(dev, &data->in_client_uuid);
Tomas Winkler80fe6362013-05-07 21:12:31 +0300472 if (i < 0 || dev->me_clients[i].props.fixed_address) {
473 dev_dbg(&dev->pdev->dev, "Cannot connect to FW Client UUID = %pUl\n",
474 &data->in_client_uuid);
475 rets = -ENODEV;
476 goto end;
Tomas Winkler9f81abda2013-01-08 23:07:15 +0200477 }
478
Tomas Winkler80fe6362013-05-07 21:12:31 +0300479 cl->me_client_id = dev->me_clients[i].client_id;
480 cl->state = MEI_FILE_CONNECTING;
481
Tomas Winkler9f81abda2013-01-08 23:07:15 +0200482 dev_dbg(&dev->pdev->dev, "Connect to FW Client ID = %d\n",
483 cl->me_client_id);
484 dev_dbg(&dev->pdev->dev, "FW Client - Protocol Version = %d\n",
485 dev->me_clients[i].props.protocol_version);
486 dev_dbg(&dev->pdev->dev, "FW Client - Max Msg Len = %d\n",
487 dev->me_clients[i].props.max_msg_length);
488
Tomas Winkler1a1aca42013-01-08 23:07:21 +0200489 /* if we're connecting to amthif client then we will use the
Tomas Winkler9f81abda2013-01-08 23:07:15 +0200490 * existing connection
491 */
Tomas Winkler1a1aca42013-01-08 23:07:21 +0200492 if (uuid_le_cmp(data->in_client_uuid, mei_amthif_guid) == 0) {
Tomas Winkler9f81abda2013-01-08 23:07:15 +0200493 dev_dbg(&dev->pdev->dev, "FW Client is amthi\n");
494 if (dev->iamthif_cl.state != MEI_FILE_CONNECTED) {
495 rets = -ENODEV;
496 goto end;
497 }
498 clear_bit(cl->host_client_id, dev->host_clients_map);
499 mei_cl_unlink(cl);
500
501 kfree(cl);
502 cl = NULL;
503 file->private_data = &dev->iamthif_cl;
504
505 client = &data->out_client_properties;
506 client->max_msg_length =
507 dev->me_clients[i].props.max_msg_length;
508 client->protocol_version =
509 dev->me_clients[i].props.protocol_version;
510 rets = dev->iamthif_cl.status;
511
512 goto end;
513 }
514
Tomas Winkler9f81abda2013-01-08 23:07:15 +0200515
516 /* prepare the output buffer */
517 client = &data->out_client_properties;
518 client->max_msg_length = dev->me_clients[i].props.max_msg_length;
519 client->protocol_version = dev->me_clients[i].props.protocol_version;
520 dev_dbg(&dev->pdev->dev, "Can connect?\n");
521
522
523 rets = mei_cl_connect(cl, file);
524
525end:
Tomas Winkler9f81abda2013-01-08 23:07:15 +0200526 return rets;
527}
528
Oren Weilab841162011-05-15 13:43:41 +0300529
530/**
531 * mei_ioctl - the IOCTL function
532 *
533 * @file: pointer to file structure
534 * @cmd: ioctl command
535 * @data: pointer to mei message structure
536 *
537 * returns 0 on success , <0 on error
538 */
539static long mei_ioctl(struct file *file, unsigned int cmd, unsigned long data)
540{
541 struct mei_device *dev;
542 struct mei_cl *cl = file->private_data;
543 struct mei_connect_client_data *connect_data = NULL;
544 int rets;
545
546 if (cmd != IOCTL_MEI_CONNECT_CLIENT)
547 return -EINVAL;
548
549 if (WARN_ON(!cl || !cl->dev))
550 return -ENODEV;
551
552 dev = cl->dev;
553
554 dev_dbg(&dev->pdev->dev, "IOCTL cmd = 0x%x", cmd);
555
556 mutex_lock(&dev->device_lock);
Tomas Winklerb210d752012-08-07 00:03:56 +0300557 if (dev->dev_state != MEI_DEV_ENABLED) {
Oren Weilab841162011-05-15 13:43:41 +0300558 rets = -ENODEV;
559 goto out;
560 }
561
562 dev_dbg(&dev->pdev->dev, ": IOCTL_MEI_CONNECT_CLIENT.\n");
563
564 connect_data = kzalloc(sizeof(struct mei_connect_client_data),
565 GFP_KERNEL);
566 if (!connect_data) {
567 rets = -ENOMEM;
568 goto out;
569 }
570 dev_dbg(&dev->pdev->dev, "copy connect data from user\n");
571 if (copy_from_user(connect_data, (char __user *)data,
572 sizeof(struct mei_connect_client_data))) {
Alexander Usyskind8b29ef2013-09-02 03:11:02 +0300573 dev_err(&dev->pdev->dev, "failed to copy data from userland\n");
Oren Weilab841162011-05-15 13:43:41 +0300574 rets = -EFAULT;
575 goto out;
576 }
Tomas Winkler9f81abda2013-01-08 23:07:15 +0200577
Oren Weilab841162011-05-15 13:43:41 +0300578 rets = mei_ioctl_connect_client(file, connect_data);
579
580 /* if all is ok, copying the data back to user. */
581 if (rets)
582 goto out;
583
584 dev_dbg(&dev->pdev->dev, "copy connect data to user\n");
585 if (copy_to_user((char __user *)data, connect_data,
586 sizeof(struct mei_connect_client_data))) {
587 dev_dbg(&dev->pdev->dev, "failed to copy data to userland\n");
588 rets = -EFAULT;
589 goto out;
590 }
591
592out:
593 kfree(connect_data);
594 mutex_unlock(&dev->device_lock);
595 return rets;
596}
597
598/**
599 * mei_compat_ioctl - the compat IOCTL function
600 *
601 * @file: pointer to file structure
602 * @cmd: ioctl command
603 * @data: pointer to mei message structure
604 *
605 * returns 0 on success , <0 on error
606 */
607#ifdef CONFIG_COMPAT
608static long mei_compat_ioctl(struct file *file,
Tomas Winkler441ab502011-12-13 23:39:34 +0200609 unsigned int cmd, unsigned long data)
Oren Weilab841162011-05-15 13:43:41 +0300610{
611 return mei_ioctl(file, cmd, (unsigned long)compat_ptr(data));
612}
613#endif
614
615
616/**
617 * mei_poll - the poll function
618 *
619 * @file: pointer to file structure
620 * @wait: pointer to poll_table structure
621 *
622 * returns poll mask
623 */
624static unsigned int mei_poll(struct file *file, poll_table *wait)
625{
626 struct mei_cl *cl = file->private_data;
627 struct mei_device *dev;
628 unsigned int mask = 0;
629
630 if (WARN_ON(!cl || !cl->dev))
Tomas Winklerb950ac12013-07-25 20:15:53 +0300631 return POLLERR;
Oren Weilab841162011-05-15 13:43:41 +0300632
633 dev = cl->dev;
634
635 mutex_lock(&dev->device_lock);
636
Tomas Winklerb950ac12013-07-25 20:15:53 +0300637 if (!mei_cl_is_connected(cl)) {
638 mask = POLLERR;
Oren Weilab841162011-05-15 13:43:41 +0300639 goto out;
640 }
641
642 mutex_unlock(&dev->device_lock);
Tomas Winklerb950ac12013-07-25 20:15:53 +0300643
644
645 if (cl == &dev->iamthif_cl)
646 return mei_amthif_poll(dev, file, wait);
647
Oren Weilab841162011-05-15 13:43:41 +0300648 poll_wait(file, &cl->tx_wait, wait);
Tomas Winklerb950ac12013-07-25 20:15:53 +0300649
Oren Weilab841162011-05-15 13:43:41 +0300650 mutex_lock(&dev->device_lock);
Tomas Winklerb950ac12013-07-25 20:15:53 +0300651
652 if (!mei_cl_is_connected(cl)) {
653 mask = POLLERR;
654 goto out;
655 }
656
Oren Weilab841162011-05-15 13:43:41 +0300657 if (MEI_WRITE_COMPLETE == cl->writing_state)
658 mask |= (POLLIN | POLLRDNORM);
659
660out:
661 mutex_unlock(&dev->device_lock);
662 return mask;
663}
664
Oren Weil5b881e32011-11-13 09:41:14 +0200665/*
666 * file operations structure will be used for mei char device.
667 */
668static const struct file_operations mei_fops = {
669 .owner = THIS_MODULE,
670 .read = mei_read,
671 .unlocked_ioctl = mei_ioctl,
672#ifdef CONFIG_COMPAT
673 .compat_ioctl = mei_compat_ioctl,
674#endif
675 .open = mei_open,
676 .release = mei_release,
677 .write = mei_write,
678 .poll = mei_poll,
679 .llseek = no_llseek
680};
681
Oren Weil5b881e32011-11-13 09:41:14 +0200682/*
683 * Misc Device Struct
684 */
685static struct miscdevice mei_misc_device = {
Tomas Winklerc38ea242012-04-02 20:32:39 +0300686 .name = "mei",
Oren Weil5b881e32011-11-13 09:41:14 +0200687 .fops = &mei_fops,
688 .minor = MISC_DYNAMIC_MINOR,
689};
690
Tomas Winkler30e53bb2013-04-05 22:10:34 +0300691
692int mei_register(struct mei_device *dev)
Tomas Winkler9a123f12012-08-06 15:23:55 +0300693{
Tomas Winkler30e53bb2013-04-05 22:10:34 +0300694 int ret;
695 mei_misc_device.parent = &dev->pdev->dev;
696 ret = misc_register(&mei_misc_device);
697 if (ret)
698 return ret;
699
700 if (mei_dbgfs_register(dev, mei_misc_device.name))
701 dev_err(&dev->pdev->dev, "cannot register debugfs\n");
702
703 return 0;
Oren Weil5b881e32011-11-13 09:41:14 +0200704}
Tomas Winkler40e0b672013-03-27 16:58:30 +0200705EXPORT_SYMBOL_GPL(mei_register);
Oren Weil5b881e32011-11-13 09:41:14 +0200706
Tomas Winkler30e53bb2013-04-05 22:10:34 +0300707void mei_deregister(struct mei_device *dev)
Oren Weil5b881e32011-11-13 09:41:14 +0200708{
Tomas Winkler30e53bb2013-04-05 22:10:34 +0300709 mei_dbgfs_deregister(dev);
Tomas Winklera44cab42012-05-29 16:39:11 +0300710 misc_deregister(&mei_misc_device);
Tomas Winkler2703d4b2013-02-06 14:06:39 +0200711 mei_misc_device.parent = NULL;
Oren Weilab841162011-05-15 13:43:41 +0300712}
Tomas Winkler40e0b672013-03-27 16:58:30 +0200713EXPORT_SYMBOL_GPL(mei_deregister);
Oren Weilab841162011-05-15 13:43:41 +0300714
Samuel Ortizcf3baef2013-03-27 17:29:57 +0200715static int __init mei_init(void)
716{
717 return mei_cl_bus_init();
718}
719
720static void __exit mei_exit(void)
721{
722 mei_cl_bus_exit();
723}
724
725module_init(mei_init);
726module_exit(mei_exit);
727
Tomas Winkler40e0b672013-03-27 16:58:30 +0200728MODULE_AUTHOR("Intel Corporation");
729MODULE_DESCRIPTION("Intel(R) Management Engine Interface");
Tomas Winkler827eef52013-02-06 14:06:41 +0200730MODULE_LICENSE("GPL v2");
Oren Weilab841162011-05-15 13:43:41 +0300731