]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/misc/mei/main.c
mei: fill file pointer in read cb for fixed address client
[mirror_ubuntu-artful-kernel.git] / drivers / misc / mei / main.c
CommitLineData
ab841160
OW
1/*
2 *
3 * Intel Management Engine Interface (Intel MEI) Linux driver
733ba91c 4 * Copyright (c) 2003-2012, Intel Corporation.
ab841160
OW
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 */
ab841160
OW
16#include <linux/module.h>
17#include <linux/moduleparam.h>
18#include <linux/kernel.h>
19#include <linux/device.h>
1f180359 20#include <linux/slab.h>
ab841160
OW
21#include <linux/fs.h>
22#include <linux/errno.h>
23#include <linux/types.h>
24#include <linux/fcntl.h>
ab841160
OW
25#include <linux/poll.h>
26#include <linux/init.h>
27#include <linux/ioctl.h>
28#include <linux/cdev.h>
ab841160
OW
29#include <linux/sched.h>
30#include <linux/uuid.h>
31#include <linux/compat.h>
32#include <linux/jiffies.h>
33#include <linux/interrupt.h>
34
4f3afe1d 35#include <linux/mei.h>
47a73801
TW
36
37#include "mei_dev.h"
90e0b5f1 38#include "client.h"
ab841160 39
ab841160
OW
40/**
41 * mei_open - the open function
42 *
43 * @inode: pointer to inode structure
44 * @file: pointer to file structure
83ce0741 45 *
a8605ea2 46 * Return: 0 on success, <0 on error
ab841160
OW
47 */
48static int mei_open(struct inode *inode, struct file *file)
49{
ab841160 50 struct mei_device *dev;
f3d8e878 51 struct mei_cl *cl;
2703d4b2 52
6f37aca8 53 int err;
ab841160 54
f3d8e878 55 dev = container_of(inode->i_cdev, struct mei_device, cdev);
5b881e3c 56 if (!dev)
e036cc57 57 return -ENODEV;
ab841160
OW
58
59 mutex_lock(&dev->device_lock);
e036cc57 60
b210d750 61 if (dev->dev_state != MEI_DEV_ENABLED) {
2bf94cab 62 dev_dbg(dev->dev, "dev_state != MEI_ENABLED dev_state = %s\n",
b210d750 63 mei_dev_state_str(dev->dev_state));
03b8d341 64 err = -ENODEV;
e036cc57 65 goto err_unlock;
1b812947 66 }
ab841160 67
03b8d341
TW
68 cl = mei_cl_alloc_linked(dev, MEI_HOST_CLIENT_ID_ANY);
69 if (IS_ERR(cl)) {
70 err = PTR_ERR(cl);
e036cc57 71 goto err_unlock;
03b8d341 72 }
ab841160
OW
73
74 file->private_data = cl;
e036cc57 75
ab841160
OW
76 mutex_unlock(&dev->device_lock);
77
5b881e3c 78 return nonseekable_open(inode, file);
ab841160 79
e036cc57 80err_unlock:
ab841160 81 mutex_unlock(&dev->device_lock);
ab841160
OW
82 return err;
83}
84
85/**
86 * mei_release - the release function
87 *
88 * @inode: pointer to inode structure
89 * @file: pointer to file structure
90 *
a8605ea2 91 * Return: 0 on success, <0 on error
ab841160
OW
92 */
93static int mei_release(struct inode *inode, struct file *file)
94{
95 struct mei_cl *cl = file->private_data;
ab841160 96 struct mei_device *dev;
3c666182 97 int rets;
ab841160
OW
98
99 if (WARN_ON(!cl || !cl->dev))
100 return -ENODEV;
101
102 dev = cl->dev;
103
104 mutex_lock(&dev->device_lock);
a562d5c2
TW
105 if (cl == &dev->iamthif_cl) {
106 rets = mei_amthif_release(dev, file);
107 goto out;
108 }
3c666182
TW
109 rets = mei_cl_disconnect(cl);
110
a9bed610 111 mei_cl_flush_queues(cl, file);
46922186 112 cl_dbg(dev, cl, "removing\n");
a562d5c2 113
90e0b5f1 114 mei_cl_unlink(cl);
a562d5c2 115
a562d5c2 116 file->private_data = NULL;
ab841160 117
a562d5c2
TW
118 kfree(cl);
119out:
ab841160
OW
120 mutex_unlock(&dev->device_lock);
121 return rets;
122}
123
124
125/**
126 * mei_read - the read function.
127 *
128 * @file: pointer to file structure
129 * @ubuf: pointer to user buffer
130 * @length: buffer length
131 * @offset: data offset in buffer
132 *
a8605ea2 133 * Return: >=0 data length on success , <0 on error
ab841160
OW
134 */
135static ssize_t mei_read(struct file *file, char __user *ubuf,
441ab50f 136 size_t length, loff_t *offset)
ab841160
OW
137{
138 struct mei_cl *cl = file->private_data;
ab841160 139 struct mei_device *dev;
a9bed610 140 struct mei_cl_cb *cb = NULL;
ab841160
OW
141 int rets;
142 int err;
143
144
145 if (WARN_ON(!cl || !cl->dev))
146 return -ENODEV;
147
148 dev = cl->dev;
149
dd5de1f1 150
ab841160 151 mutex_lock(&dev->device_lock);
b210d750 152 if (dev->dev_state != MEI_DEV_ENABLED) {
ab841160
OW
153 rets = -ENODEV;
154 goto out;
155 }
156
dd5de1f1
TW
157 if (length == 0) {
158 rets = 0;
159 goto out;
160 }
161
8b2458f4
AU
162 if (ubuf == NULL) {
163 rets = -EMSGSIZE;
164 goto out;
165 }
166
ab841160 167 if (cl == &dev->iamthif_cl) {
19838fb8 168 rets = mei_amthif_read(dev, file, ubuf, length, offset);
ab841160
OW
169 goto out;
170 }
171
a9bed610 172 cb = mei_cl_read_cb(cl, file);
8b2458f4
AU
173 if (cb)
174 goto copy_buffer;
175
176 if (*offset > 0)
ab841160 177 *offset = 0;
ab841160 178
bca67d68 179 err = mei_cl_read_start(cl, length, file);
ab841160 180 if (err && err != -EBUSY) {
292f82c8 181 cl_dbg(dev, cl, "mei start read failure status = %d\n", err);
ab841160
OW
182 rets = err;
183 goto out;
184 }
185
a9bed610 186 if (list_empty(&cl->rd_completed) && !waitqueue_active(&cl->rx_wait)) {
ab841160
OW
187 if (file->f_flags & O_NONBLOCK) {
188 rets = -EAGAIN;
189 goto out;
190 }
191
192 mutex_unlock(&dev->device_lock);
193
194 if (wait_event_interruptible(cl->rx_wait,
a9bed610 195 (!list_empty(&cl->rd_completed)) ||
6a84d63d 196 (!mei_cl_is_connected(cl)))) {
e2b31644 197
ab841160
OW
198 if (signal_pending(current))
199 return -EINTR;
200 return -ERESTARTSYS;
201 }
202
203 mutex_lock(&dev->device_lock);
6a84d63d 204 if (!mei_cl_is_connected(cl)) {
ab841160
OW
205 rets = -EBUSY;
206 goto out;
207 }
208 }
209
a9bed610 210 cb = mei_cl_read_cb(cl, file);
ab841160 211 if (!cb) {
ab841160
OW
212 rets = 0;
213 goto out;
214 }
3d33ff24 215
ab841160 216copy_buffer:
3d33ff24
TW
217 /* now copy the data to user space */
218 if (cb->status) {
219 rets = cb->status;
292f82c8 220 cl_dbg(dev, cl, "read operation failed %d\n", rets);
3d33ff24
TW
221 goto free;
222 }
223
f862b6b2 224 cl_dbg(dev, cl, "buf.size = %zd buf.idx = %zd offset = %lld\n",
8b2458f4
AU
225 cb->buf.size, cb->buf_idx, *offset);
226 if (*offset >= cb->buf_idx) {
227 rets = 0;
ab841160
OW
228 goto free;
229 }
230
ebb108ef
TW
231 /* length is being truncated to PAGE_SIZE,
232 * however buf_idx may point beyond that */
233 length = min_t(size_t, length, cb->buf_idx - *offset);
ab841160 234
5db7514d 235 if (copy_to_user(ubuf, cb->buf.data + *offset, length)) {
2bf94cab 236 dev_dbg(dev->dev, "failed to copy data to userland\n");
ab841160
OW
237 rets = -EFAULT;
238 goto free;
239 }
240
241 rets = length;
242 *offset += length;
f862b6b2
TW
243 /* not all data was read, keep the cb */
244 if (*offset < cb->buf_idx)
ab841160
OW
245 goto out;
246
247free:
601a1efa 248 mei_io_cb_free(cb);
8b2458f4 249 *offset = 0;
928fa666 250
ab841160 251out:
292f82c8 252 cl_dbg(dev, cl, "end mei read rets = %d\n", rets);
ab841160
OW
253 mutex_unlock(&dev->device_lock);
254 return rets;
255}
ab841160
OW
256/**
257 * mei_write - the write function.
258 *
259 * @file: pointer to file structure
260 * @ubuf: pointer to user buffer
261 * @length: buffer length
262 * @offset: data offset in buffer
263 *
a8605ea2 264 * Return: >=0 data length on success , <0 on error
ab841160
OW
265 */
266static ssize_t mei_write(struct file *file, const char __user *ubuf,
441ab50f 267 size_t length, loff_t *offset)
ab841160
OW
268{
269 struct mei_cl *cl = file->private_data;
270 struct mei_cl_cb *write_cb = NULL;
ab841160 271 struct mei_device *dev;
ab841160 272 int rets;
ab841160
OW
273
274 if (WARN_ON(!cl || !cl->dev))
275 return -ENODEV;
276
277 dev = cl->dev;
278
279 mutex_lock(&dev->device_lock);
280
b210d750 281 if (dev->dev_state != MEI_DEV_ENABLED) {
75f0ee15 282 rets = -ENODEV;
4234a6de 283 goto out;
ab841160
OW
284 }
285
d49ed64a
AU
286 if (!mei_cl_is_connected(cl)) {
287 cl_err(dev, cl, "is not connected");
288 rets = -ENODEV;
4234a6de 289 goto out;
75f0ee15 290 }
dd5de1f1 291
d49ed64a
AU
292 if (!mei_me_cl_is_active(cl->me_cl)) {
293 rets = -ENOTTY;
dd5de1f1
TW
294 goto out;
295 }
296
d49ed64a 297 if (length > mei_cl_mtu(cl)) {
dd5de1f1 298 rets = -EFBIG;
4234a6de 299 goto out;
75f0ee15
TW
300 }
301
d49ed64a
AU
302 if (length == 0) {
303 rets = 0;
4234a6de 304 goto out;
75f0ee15 305 }
d49ed64a 306
a9bed610 307 *offset = 0;
bca67d68 308 write_cb = mei_cl_alloc_cb(cl, length, MEI_FOP_WRITE, file);
ab841160 309 if (!write_cb) {
33d28c92 310 rets = -ENOMEM;
4234a6de 311 goto out;
ab841160 312 }
ab841160 313
5db7514d 314 rets = copy_from_user(write_cb->buf.data, ubuf, length);
d8b29efa 315 if (rets) {
2bf94cab 316 dev_dbg(dev->dev, "failed to copy data from userland\n");
d8b29efa 317 rets = -EFAULT;
4234a6de 318 goto out;
d8b29efa 319 }
ab841160 320
ab841160 321 if (cl == &dev->iamthif_cl) {
8660172e 322 rets = mei_amthif_write(cl, write_cb);
ab841160 323
ab5c4a56 324 if (rets) {
2bf94cab 325 dev_err(dev->dev,
1a1aca42 326 "amthif write failed with status = %d\n", rets);
4234a6de 327 goto out;
ab841160
OW
328 }
329 mutex_unlock(&dev->device_lock);
75f0ee15 330 return length;
ab841160
OW
331 }
332
4234a6de 333 rets = mei_cl_write(cl, write_cb, false);
b0d0cf77 334out:
ab841160 335 mutex_unlock(&dev->device_lock);
4234a6de
TW
336 if (rets < 0)
337 mei_io_cb_free(write_cb);
ab841160
OW
338 return rets;
339}
340
9f81abda
TW
341/**
342 * mei_ioctl_connect_client - the connect to fw client IOCTL function
343 *
9f81abda 344 * @file: private data of the file object
a8605ea2 345 * @data: IOCTL connect data, input and output parameters
9f81abda
TW
346 *
347 * Locking: called under "dev->device_lock" lock
348 *
a8605ea2 349 * Return: 0 on success, <0 on failure.
9f81abda
TW
350 */
351static int mei_ioctl_connect_client(struct file *file,
352 struct mei_connect_client_data *data)
353{
354 struct mei_device *dev;
355 struct mei_client *client;
d320832f 356 struct mei_me_client *me_cl;
9f81abda 357 struct mei_cl *cl;
9f81abda
TW
358 int rets;
359
360 cl = file->private_data;
9f81abda
TW
361 dev = cl->dev;
362
79563db9
TW
363 if (dev->dev_state != MEI_DEV_ENABLED)
364 return -ENODEV;
9f81abda
TW
365
366 if (cl->state != MEI_FILE_INITIALIZING &&
79563db9
TW
367 cl->state != MEI_FILE_DISCONNECTED)
368 return -EBUSY;
9f81abda
TW
369
370 /* find ME client we're trying to connect to */
d320832f 371 me_cl = mei_me_cl_by_uuid(dev, &data->in_client_uuid);
eeabfcf5
AU
372 if (!me_cl ||
373 (me_cl->props.fixed_address && !dev->allow_fixed_address)) {
2bf94cab 374 dev_dbg(dev->dev, "Cannot connect to FW Client UUID = %pUl\n",
d49ed64a
AU
375 &data->in_client_uuid);
376 mei_me_cl_put(me_cl);
79563db9 377 return -ENOTTY;
9f81abda
TW
378 }
379
2bf94cab 380 dev_dbg(dev->dev, "Connect to FW Client ID = %d\n",
d49ed64a 381 me_cl->client_id);
2bf94cab 382 dev_dbg(dev->dev, "FW Client - Protocol Version = %d\n",
d320832f 383 me_cl->props.protocol_version);
2bf94cab 384 dev_dbg(dev->dev, "FW Client - Max Msg Len = %d\n",
d320832f 385 me_cl->props.max_msg_length);
9f81abda 386
1a1aca42 387 /* if we're connecting to amthif client then we will use the
9f81abda
TW
388 * existing connection
389 */
1a1aca42 390 if (uuid_le_cmp(data->in_client_uuid, mei_amthif_guid) == 0) {
2bf94cab 391 dev_dbg(dev->dev, "FW Client is amthi\n");
f3de9b63 392 if (!mei_cl_is_connected(&dev->iamthif_cl)) {
9f81abda
TW
393 rets = -ENODEV;
394 goto end;
395 }
9f81abda
TW
396 mei_cl_unlink(cl);
397
398 kfree(cl);
399 cl = NULL;
22f96a0e 400 dev->iamthif_open_count++;
9f81abda
TW
401 file->private_data = &dev->iamthif_cl;
402
403 client = &data->out_client_properties;
d320832f
TW
404 client->max_msg_length = me_cl->props.max_msg_length;
405 client->protocol_version = me_cl->props.protocol_version;
9f81abda
TW
406 rets = dev->iamthif_cl.status;
407
408 goto end;
409 }
410
9f81abda
TW
411 /* prepare the output buffer */
412 client = &data->out_client_properties;
d320832f
TW
413 client->max_msg_length = me_cl->props.max_msg_length;
414 client->protocol_version = me_cl->props.protocol_version;
2bf94cab 415 dev_dbg(dev->dev, "Can connect?\n");
9f81abda 416
d49ed64a 417 rets = mei_cl_connect(cl, me_cl, file);
9f81abda
TW
418
419end:
79563db9 420 mei_me_cl_put(me_cl);
9f81abda
TW
421 return rets;
422}
423
3c7c8468
TW
424/**
425 * mei_ioctl_client_notify_request -
426 * propagate event notification request to client
427 *
428 * @file: pointer to file structure
429 * @request: 0 - disable, 1 - enable
430 *
431 * Return: 0 on success , <0 on error
432 */
f23e2cc4 433static int mei_ioctl_client_notify_request(const struct file *file, u32 request)
3c7c8468
TW
434{
435 struct mei_cl *cl = file->private_data;
436
437 return mei_cl_notify_request(cl, file, request);
438}
439
440/**
441 * mei_ioctl_client_notify_get - wait for notification request
442 *
443 * @file: pointer to file structure
444 * @notify_get: 0 - disable, 1 - enable
445 *
446 * Return: 0 on success , <0 on error
447 */
f23e2cc4 448static int mei_ioctl_client_notify_get(const struct file *file, u32 *notify_get)
3c7c8468
TW
449{
450 struct mei_cl *cl = file->private_data;
451 bool notify_ev;
452 bool block = (file->f_flags & O_NONBLOCK) == 0;
453 int rets;
454
455 rets = mei_cl_notify_get(cl, block, &notify_ev);
456 if (rets)
457 return rets;
458
459 *notify_get = notify_ev ? 1 : 0;
460 return 0;
461}
462
ab841160
OW
463/**
464 * mei_ioctl - the IOCTL function
465 *
466 * @file: pointer to file structure
467 * @cmd: ioctl command
468 * @data: pointer to mei message structure
469 *
a8605ea2 470 * Return: 0 on success , <0 on error
ab841160
OW
471 */
472static long mei_ioctl(struct file *file, unsigned int cmd, unsigned long data)
473{
474 struct mei_device *dev;
475 struct mei_cl *cl = file->private_data;
154eb18f 476 struct mei_connect_client_data connect_data;
3c7c8468 477 u32 notify_get, notify_req;
ab841160
OW
478 int rets;
479
ab841160
OW
480
481 if (WARN_ON(!cl || !cl->dev))
482 return -ENODEV;
483
484 dev = cl->dev;
485
2bf94cab 486 dev_dbg(dev->dev, "IOCTL cmd = 0x%x", cmd);
ab841160
OW
487
488 mutex_lock(&dev->device_lock);
b210d750 489 if (dev->dev_state != MEI_DEV_ENABLED) {
ab841160
OW
490 rets = -ENODEV;
491 goto out;
492 }
493
4f046e7b
TW
494 switch (cmd) {
495 case IOCTL_MEI_CONNECT_CLIENT:
2bf94cab 496 dev_dbg(dev->dev, ": IOCTL_MEI_CONNECT_CLIENT.\n");
154eb18f 497 if (copy_from_user(&connect_data, (char __user *)data,
4f046e7b 498 sizeof(struct mei_connect_client_data))) {
2bf94cab 499 dev_dbg(dev->dev, "failed to copy data from userland\n");
4f046e7b
TW
500 rets = -EFAULT;
501 goto out;
502 }
ab841160 503
154eb18f 504 rets = mei_ioctl_connect_client(file, &connect_data);
4f046e7b
TW
505 if (rets)
506 goto out;
ab841160 507
4f046e7b 508 /* if all is ok, copying the data back to user. */
154eb18f 509 if (copy_to_user((char __user *)data, &connect_data,
ab841160 510 sizeof(struct mei_connect_client_data))) {
2bf94cab 511 dev_dbg(dev->dev, "failed to copy data to userland\n");
4f046e7b
TW
512 rets = -EFAULT;
513 goto out;
514 }
515
516 break;
154eb18f 517
3c7c8468
TW
518 case IOCTL_MEI_NOTIFY_SET:
519 dev_dbg(dev->dev, ": IOCTL_MEI_NOTIFY_SET.\n");
520 if (copy_from_user(&notify_req,
521 (char __user *)data, sizeof(notify_req))) {
522 dev_dbg(dev->dev, "failed to copy data from userland\n");
523 rets = -EFAULT;
524 goto out;
525 }
526 rets = mei_ioctl_client_notify_request(file, notify_req);
527 break;
528
529 case IOCTL_MEI_NOTIFY_GET:
530 dev_dbg(dev->dev, ": IOCTL_MEI_NOTIFY_GET.\n");
531 rets = mei_ioctl_client_notify_get(file, &notify_get);
532 if (rets)
533 goto out;
534
535 dev_dbg(dev->dev, "copy connect data to user\n");
536 if (copy_to_user((char __user *)data,
537 &notify_get, sizeof(notify_get))) {
538 dev_dbg(dev->dev, "failed to copy data to userland\n");
539 rets = -EFAULT;
540 goto out;
541
542 }
543 break;
544
4f046e7b 545 default:
2bf94cab 546 dev_err(dev->dev, ": unsupported ioctl %d.\n", cmd);
4f046e7b 547 rets = -ENOIOCTLCMD;
ab841160
OW
548 }
549
550out:
ab841160
OW
551 mutex_unlock(&dev->device_lock);
552 return rets;
553}
554
555/**
556 * mei_compat_ioctl - the compat IOCTL function
557 *
558 * @file: pointer to file structure
559 * @cmd: ioctl command
560 * @data: pointer to mei message structure
561 *
a8605ea2 562 * Return: 0 on success , <0 on error
ab841160
OW
563 */
564#ifdef CONFIG_COMPAT
565static long mei_compat_ioctl(struct file *file,
441ab50f 566 unsigned int cmd, unsigned long data)
ab841160
OW
567{
568 return mei_ioctl(file, cmd, (unsigned long)compat_ptr(data));
569}
570#endif
571
572
573/**
574 * mei_poll - the poll function
575 *
576 * @file: pointer to file structure
577 * @wait: pointer to poll_table structure
578 *
a8605ea2 579 * Return: poll mask
ab841160
OW
580 */
581static unsigned int mei_poll(struct file *file, poll_table *wait)
582{
1d9013f0 583 unsigned long req_events = poll_requested_events(wait);
ab841160
OW
584 struct mei_cl *cl = file->private_data;
585 struct mei_device *dev;
586 unsigned int mask = 0;
2c84c297 587 bool notify_en;
ab841160
OW
588
589 if (WARN_ON(!cl || !cl->dev))
b950ac1d 590 return POLLERR;
ab841160
OW
591
592 dev = cl->dev;
593
594 mutex_lock(&dev->device_lock);
595
2c84c297 596 notify_en = cl->notify_en && (req_events & POLLPRI);
f3de9b63
TW
597
598 if (dev->dev_state != MEI_DEV_ENABLED ||
599 !mei_cl_is_connected(cl)) {
b950ac1d 600 mask = POLLERR;
ab841160
OW
601 goto out;
602 }
603
1d9013f0
TW
604 if (cl == &dev->iamthif_cl) {
605 mask = mei_amthif_poll(dev, file, wait);
b950ac1d
TW
606 goto out;
607 }
608
2c84c297
TW
609 if (notify_en) {
610 poll_wait(file, &cl->ev_wait, wait);
611 if (cl->notify_ev)
612 mask |= POLLPRI;
613 }
614
1d9013f0
TW
615 if (req_events & (POLLIN | POLLRDNORM)) {
616 poll_wait(file, &cl->rx_wait, wait);
617
618 if (!list_empty(&cl->rd_completed))
619 mask |= POLLIN | POLLRDNORM;
620 else
621 mei_cl_read_start(cl, 0, file);
622 }
ab841160
OW
623
624out:
625 mutex_unlock(&dev->device_lock);
626 return mask;
627}
628
237092bf
TW
629/**
630 * mei_fasync - asynchronous io support
631 *
632 * @fd: file descriptor
633 * @file: pointer to file structure
634 * @band: band bitmap
635 *
ed6dc538
TW
636 * Return: negative on error,
637 * 0 if it did no changes,
638 * and positive a process was added or deleted
237092bf
TW
639 */
640static int mei_fasync(int fd, struct file *file, int band)
641{
642
643 struct mei_cl *cl = file->private_data;
644
645 if (!mei_cl_is_connected(cl))
ed6dc538 646 return -ENODEV;
237092bf
TW
647
648 return fasync_helper(fd, file, band, &cl->ev_async);
649}
650
55c4e640
TW
651/**
652 * fw_status_show - mei device attribute show method
653 *
654 * @device: device pointer
655 * @attr: attribute pointer
656 * @buf: char out buffer
657 *
658 * Return: number of the bytes printed into buf or error
659 */
660static ssize_t fw_status_show(struct device *device,
661 struct device_attribute *attr, char *buf)
662{
663 struct mei_device *dev = dev_get_drvdata(device);
664 struct mei_fw_status fw_status;
665 int err, i;
666 ssize_t cnt = 0;
667
668 mutex_lock(&dev->device_lock);
669 err = mei_fw_status(dev, &fw_status);
670 mutex_unlock(&dev->device_lock);
671 if (err) {
672 dev_err(device, "read fw_status error = %d\n", err);
673 return err;
674 }
675
676 for (i = 0; i < fw_status.count; i++)
677 cnt += scnprintf(buf + cnt, PAGE_SIZE - cnt, "%08X\n",
678 fw_status.status[i]);
679 return cnt;
680}
681static DEVICE_ATTR_RO(fw_status);
682
683static struct attribute *mei_attrs[] = {
684 &dev_attr_fw_status.attr,
685 NULL
686};
687ATTRIBUTE_GROUPS(mei);
688
5b881e3c
OW
689/*
690 * file operations structure will be used for mei char device.
691 */
692static const struct file_operations mei_fops = {
693 .owner = THIS_MODULE,
694 .read = mei_read,
695 .unlocked_ioctl = mei_ioctl,
696#ifdef CONFIG_COMPAT
697 .compat_ioctl = mei_compat_ioctl,
698#endif
699 .open = mei_open,
700 .release = mei_release,
701 .write = mei_write,
702 .poll = mei_poll,
237092bf 703 .fasync = mei_fasync,
5b881e3c
OW
704 .llseek = no_llseek
705};
706
f3d8e878
AU
707static struct class *mei_class;
708static dev_t mei_devt;
709#define MEI_MAX_DEVS MINORMASK
710static DEFINE_MUTEX(mei_minor_lock);
711static DEFINE_IDR(mei_idr);
712
713/**
714 * mei_minor_get - obtain next free device minor number
715 *
716 * @dev: device pointer
717 *
a8605ea2 718 * Return: allocated minor, or -ENOSPC if no free minor left
5b881e3c 719 */
f3d8e878
AU
720static int mei_minor_get(struct mei_device *dev)
721{
722 int ret;
723
724 mutex_lock(&mei_minor_lock);
725 ret = idr_alloc(&mei_idr, dev, 0, MEI_MAX_DEVS, GFP_KERNEL);
726 if (ret >= 0)
727 dev->minor = ret;
728 else if (ret == -ENOSPC)
2bf94cab 729 dev_err(dev->dev, "too many mei devices\n");
5b881e3c 730
f3d8e878
AU
731 mutex_unlock(&mei_minor_lock);
732 return ret;
733}
30e53bb8 734
f3d8e878
AU
735/**
736 * mei_minor_free - mark device minor number as free
737 *
738 * @dev: device pointer
739 */
740static void mei_minor_free(struct mei_device *dev)
9a123f19 741{
f3d8e878
AU
742 mutex_lock(&mei_minor_lock);
743 idr_remove(&mei_idr, dev->minor);
744 mutex_unlock(&mei_minor_lock);
745}
746
747int mei_register(struct mei_device *dev, struct device *parent)
748{
749 struct device *clsdev; /* class device */
750 int ret, devno;
751
752 ret = mei_minor_get(dev);
753 if (ret < 0)
30e53bb8
TW
754 return ret;
755
f3d8e878
AU
756 /* Fill in the data structures */
757 devno = MKDEV(MAJOR(mei_devt), dev->minor);
758 cdev_init(&dev->cdev, &mei_fops);
154322f4 759 dev->cdev.owner = parent->driver->owner;
f3d8e878
AU
760
761 /* Add the device */
762 ret = cdev_add(&dev->cdev, devno, 1);
763 if (ret) {
764 dev_err(parent, "unable to add device %d:%d\n",
765 MAJOR(mei_devt), dev->minor);
766 goto err_dev_add;
767 }
768
55c4e640
TW
769 clsdev = device_create_with_groups(mei_class, parent, devno,
770 dev, mei_groups,
771 "mei%d", dev->minor);
f3d8e878
AU
772
773 if (IS_ERR(clsdev)) {
774 dev_err(parent, "unable to create device %d:%d\n",
775 MAJOR(mei_devt), dev->minor);
776 ret = PTR_ERR(clsdev);
777 goto err_dev_create;
778 }
779
780 ret = mei_dbgfs_register(dev, dev_name(clsdev));
781 if (ret) {
782 dev_err(clsdev, "cannot register debugfs ret = %d\n", ret);
783 goto err_dev_dbgfs;
784 }
30e53bb8
TW
785
786 return 0;
f3d8e878
AU
787
788err_dev_dbgfs:
789 device_destroy(mei_class, devno);
790err_dev_create:
791 cdev_del(&dev->cdev);
792err_dev_add:
793 mei_minor_free(dev);
794 return ret;
5b881e3c 795}
40e0b67b 796EXPORT_SYMBOL_GPL(mei_register);
5b881e3c 797
30e53bb8 798void mei_deregister(struct mei_device *dev)
5b881e3c 799{
f3d8e878
AU
800 int devno;
801
802 devno = dev->cdev.dev;
803 cdev_del(&dev->cdev);
804
30e53bb8 805 mei_dbgfs_deregister(dev);
f3d8e878
AU
806
807 device_destroy(mei_class, devno);
808
809 mei_minor_free(dev);
5b881e3c 810}
40e0b67b 811EXPORT_SYMBOL_GPL(mei_deregister);
ab841160 812
cf3baefb
SO
813static int __init mei_init(void)
814{
f3d8e878
AU
815 int ret;
816
817 mei_class = class_create(THIS_MODULE, "mei");
818 if (IS_ERR(mei_class)) {
819 pr_err("couldn't create class\n");
820 ret = PTR_ERR(mei_class);
821 goto err;
822 }
823
824 ret = alloc_chrdev_region(&mei_devt, 0, MEI_MAX_DEVS, "mei");
825 if (ret < 0) {
826 pr_err("unable to allocate char dev region\n");
827 goto err_class;
828 }
829
830 ret = mei_cl_bus_init();
831 if (ret < 0) {
832 pr_err("unable to initialize bus\n");
833 goto err_chrdev;
834 }
835
836 return 0;
837
838err_chrdev:
839 unregister_chrdev_region(mei_devt, MEI_MAX_DEVS);
840err_class:
841 class_destroy(mei_class);
842err:
843 return ret;
cf3baefb
SO
844}
845
846static void __exit mei_exit(void)
847{
f3d8e878
AU
848 unregister_chrdev_region(mei_devt, MEI_MAX_DEVS);
849 class_destroy(mei_class);
cf3baefb
SO
850 mei_cl_bus_exit();
851}
852
853module_init(mei_init);
854module_exit(mei_exit);
855
40e0b67b
TW
856MODULE_AUTHOR("Intel Corporation");
857MODULE_DESCRIPTION("Intel(R) Management Engine Interface");
827eef51 858MODULE_LICENSE("GPL v2");
ab841160 859