blob: 4edf71acfed6cfef909f630020428e24d9528818 [file] [log] [blame]
Samuel Ortize5354102013-03-27 17:29:53 +02001/*
2 * Intel Management Engine Interface (Intel MEI) Linux driver
3 * Copyright (c) 2012-2013, Intel Corporation.
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 */
15
16#include <linux/module.h>
17#include <linux/device.h>
18#include <linux/kernel.h>
Samuel Ortiz3e833292013-03-27 17:29:55 +020019#include <linux/sched.h>
Samuel Ortize5354102013-03-27 17:29:53 +020020#include <linux/init.h>
21#include <linux/errno.h>
22#include <linux/slab.h>
23#include <linux/mutex.h>
24#include <linux/interrupt.h>
Samuel Ortize5354102013-03-27 17:29:53 +020025#include <linux/mei_cl_bus.h>
26
27#include "mei_dev.h"
Samuel Ortiz3e833292013-03-27 17:29:55 +020028#include "client.h"
Samuel Ortize5354102013-03-27 17:29:53 +020029
30#define to_mei_cl_driver(d) container_of(d, struct mei_cl_driver, driver)
31#define to_mei_cl_device(d) container_of(d, struct mei_cl_device, dev)
32
Tomas Winkler62382992015-07-23 15:08:35 +030033/**
34 * __mei_cl_send - internal client send (write)
35 *
36 * @cl: host client
37 * @buf: buffer to send
38 * @length: buffer length
39 * @blocking: wait for write completion
40 *
41 * Return: written size bytes or < 0 on error
42 */
43ssize_t __mei_cl_send(struct mei_cl *cl, u8 *buf, size_t length,
44 bool blocking)
45{
46 struct mei_device *bus;
47 struct mei_cl_cb *cb = NULL;
48 ssize_t rets;
49
50 if (WARN_ON(!cl || !cl->dev))
51 return -ENODEV;
52
53 bus = cl->dev;
54
55 mutex_lock(&bus->device_lock);
56 if (!mei_cl_is_connected(cl)) {
57 rets = -ENODEV;
58 goto out;
59 }
60
61 /* Check if we have an ME client device */
62 if (!mei_me_cl_is_active(cl->me_cl)) {
63 rets = -ENOTTY;
64 goto out;
65 }
66
67 if (length > mei_cl_mtu(cl)) {
68 rets = -EFBIG;
69 goto out;
70 }
71
72 cb = mei_cl_alloc_cb(cl, length, MEI_FOP_WRITE, NULL);
73 if (!cb) {
74 rets = -ENOMEM;
75 goto out;
76 }
77
78 memcpy(cb->buf.data, buf, length);
79
80 rets = mei_cl_write(cl, cb, blocking);
81
82out:
83 mutex_unlock(&bus->device_lock);
84 if (rets < 0)
85 mei_io_cb_free(cb);
86
87 return rets;
88}
89
90/**
91 * __mei_cl_recv - internal client receive (read)
92 *
93 * @cl: host client
94 * @buf: buffer to send
95 * @length: buffer length
96 *
97 * Return: read size in bytes of < 0 on error
98 */
99ssize_t __mei_cl_recv(struct mei_cl *cl, u8 *buf, size_t length)
100{
101 struct mei_device *bus;
102 struct mei_cl_cb *cb;
103 size_t r_length;
104 ssize_t rets;
105
106 if (WARN_ON(!cl || !cl->dev))
107 return -ENODEV;
108
109 bus = cl->dev;
110
111 mutex_lock(&bus->device_lock);
112
113 cb = mei_cl_read_cb(cl, NULL);
114 if (cb)
115 goto copy;
116
117 rets = mei_cl_read_start(cl, length, NULL);
118 if (rets && rets != -EBUSY)
119 goto out;
120
121 /* wait on event only if there is no other waiter */
122 if (list_empty(&cl->rd_completed) && !waitqueue_active(&cl->rx_wait)) {
123
124 mutex_unlock(&bus->device_lock);
125
126 if (wait_event_interruptible(cl->rx_wait,
127 (!list_empty(&cl->rd_completed)) ||
128 (!mei_cl_is_connected(cl)))) {
129
130 if (signal_pending(current))
131 return -EINTR;
132 return -ERESTARTSYS;
133 }
134
135 mutex_lock(&bus->device_lock);
136
137 if (!mei_cl_is_connected(cl)) {
138 rets = -EBUSY;
139 goto out;
140 }
141 }
142
143 cb = mei_cl_read_cb(cl, NULL);
144 if (!cb) {
145 rets = 0;
146 goto out;
147 }
148
149copy:
150 if (cb->status) {
151 rets = cb->status;
152 goto free;
153 }
154
155 r_length = min_t(size_t, length, cb->buf_idx);
156 memcpy(buf, cb->buf.data, r_length);
157 rets = r_length;
158
159free:
160 mei_io_cb_free(cb);
161out:
162 mutex_unlock(&bus->device_lock);
163
164 return rets;
165}
166
167/**
168 * mei_cl_send - me device send (write)
169 *
170 * @cldev: me client device
171 * @buf: buffer to send
172 * @length: buffer length
173 *
174 * Return: written size in bytes or < 0 on error
175 */
176ssize_t mei_cl_send(struct mei_cl_device *cldev, u8 *buf, size_t length)
177{
178 struct mei_cl *cl = cldev->cl;
179
180 if (cl == NULL)
181 return -ENODEV;
182
183 return __mei_cl_send(cl, buf, length, 1);
184}
185EXPORT_SYMBOL_GPL(mei_cl_send);
186
187/**
188 * mei_cl_recv - client receive (read)
189 *
190 * @cldev: me client device
191 * @buf: buffer to send
192 * @length: buffer length
193 *
194 * Return: read size in bytes of < 0 on error
195 */
196ssize_t mei_cl_recv(struct mei_cl_device *cldev, u8 *buf, size_t length)
197{
198 struct mei_cl *cl = cldev->cl;
199
200 if (cl == NULL)
201 return -ENODEV;
202
203 return __mei_cl_recv(cl, buf, length);
204}
205EXPORT_SYMBOL_GPL(mei_cl_recv);
206
207/**
208 * mei_bus_event_work - dispatch rx event for a bus device
209 * and schedule new work
210 *
211 * @work: work
212 */
213static void mei_bus_event_work(struct work_struct *work)
214{
215 struct mei_cl_device *cldev;
216
217 cldev = container_of(work, struct mei_cl_device, event_work);
218
219 if (cldev->event_cb)
220 cldev->event_cb(cldev, cldev->events, cldev->event_context);
221
222 cldev->events = 0;
223
224 /* Prepare for the next read */
Alexander Usyskinbb2ef9c2015-07-26 09:54:23 +0300225 if (cldev->events_mask & BIT(MEI_CL_EVENT_RX))
226 mei_cl_read_start(cldev->cl, 0, NULL);
227}
228
229/**
230 * mei_cl_bus_notify_event - schedule notify cb on bus client
231 *
232 * @cl: host client
233 */
234void mei_cl_bus_notify_event(struct mei_cl *cl)
235{
236 struct mei_cl_device *cldev = cl->cldev;
237
238 if (!cldev || !cldev->event_cb)
239 return;
240
241 if (!(cldev->events_mask & BIT(MEI_CL_EVENT_NOTIF)))
242 return;
243
244 if (!cl->notify_ev)
245 return;
246
247 set_bit(MEI_CL_EVENT_NOTIF, &cldev->events);
248
249 schedule_work(&cldev->event_work);
250
251 cl->notify_ev = false;
Tomas Winkler62382992015-07-23 15:08:35 +0300252}
253
254/**
255 * mei_cl_bus_rx_event - schedule rx evenet
256 *
257 * @cl: host client
258 */
259void mei_cl_bus_rx_event(struct mei_cl *cl)
260{
261 struct mei_cl_device *cldev = cl->cldev;
262
263 if (!cldev || !cldev->event_cb)
264 return;
265
Alexander Usyskinbb2ef9c2015-07-26 09:54:23 +0300266 if (!(cldev->events_mask & BIT(MEI_CL_EVENT_RX)))
267 return;
268
Tomas Winkler62382992015-07-23 15:08:35 +0300269 set_bit(MEI_CL_EVENT_RX, &cldev->events);
270
271 schedule_work(&cldev->event_work);
272}
273
274/**
275 * mei_cl_register_event_cb - register event callback
276 *
277 * @cldev: me client devices
278 * @event_cb: callback function
Alexander Usyskinbb2ef9c2015-07-26 09:54:23 +0300279 * @events_mask: requested events bitmask
Tomas Winkler62382992015-07-23 15:08:35 +0300280 * @context: driver context data
281 *
282 * Return: 0 on success
283 * -EALREADY if an callback is already registered
284 * <0 on other errors
285 */
286int mei_cl_register_event_cb(struct mei_cl_device *cldev,
Alexander Usyskinbb2ef9c2015-07-26 09:54:23 +0300287 unsigned long events_mask,
Tomas Winkler62382992015-07-23 15:08:35 +0300288 mei_cl_event_cb_t event_cb, void *context)
289{
Tomas Winkler48168f42015-07-23 15:08:38 +0300290 int ret;
291
Tomas Winkler62382992015-07-23 15:08:35 +0300292 if (cldev->event_cb)
293 return -EALREADY;
294
295 cldev->events = 0;
Alexander Usyskinbb2ef9c2015-07-26 09:54:23 +0300296 cldev->events_mask = events_mask;
Tomas Winkler62382992015-07-23 15:08:35 +0300297 cldev->event_cb = event_cb;
298 cldev->event_context = context;
299 INIT_WORK(&cldev->event_work, mei_bus_event_work);
300
Alexander Usyskinbb2ef9c2015-07-26 09:54:23 +0300301 if (cldev->events_mask & BIT(MEI_CL_EVENT_RX)) {
302 ret = mei_cl_read_start(cldev->cl, 0, NULL);
303 if (ret && ret != -EBUSY)
304 return ret;
305 }
306
307 if (cldev->events_mask & BIT(MEI_CL_EVENT_NOTIF)) {
308 mutex_lock(&cldev->cl->dev->device_lock);
309 ret = mei_cl_notify_request(cldev->cl, NULL, event_cb ? 1 : 0);
310 mutex_unlock(&cldev->cl->dev->device_lock);
311 if (ret)
312 return ret;
313 }
Tomas Winkler62382992015-07-23 15:08:35 +0300314
315 return 0;
316}
317EXPORT_SYMBOL_GPL(mei_cl_register_event_cb);
318
319/**
320 * mei_cl_get_drvdata - driver data getter
321 *
322 * @cldev: mei client device
323 *
324 * Return: driver private data
325 */
326void *mei_cl_get_drvdata(const struct mei_cl_device *cldev)
327{
328 return dev_get_drvdata(&cldev->dev);
329}
330EXPORT_SYMBOL_GPL(mei_cl_get_drvdata);
331
332/**
333 * mei_cl_set_drvdata - driver data setter
334 *
335 * @cldev: mei client device
336 * @data: data to store
337 */
338void mei_cl_set_drvdata(struct mei_cl_device *cldev, void *data)
339{
340 dev_set_drvdata(&cldev->dev, data);
341}
342EXPORT_SYMBOL_GPL(mei_cl_set_drvdata);
343
344/**
Tomas Winklerbaeacd02015-09-10 10:18:02 +0300345 * mei_cldev_uuid - return uuid of the underlying me client
346 *
347 * @cldev: mei client device
348 *
349 * Return: me client uuid
350 */
351const uuid_le *mei_cldev_uuid(const struct mei_cl_device *cldev)
352{
353 return mei_me_cl_uuid(cldev->me_cl);
354}
355EXPORT_SYMBOL_GPL(mei_cldev_uuid);
356
357/**
358 * mei_cldev_ver - return protocol version of the underlying me client
359 *
360 * @cldev: mei client device
361 *
362 * Return: me client protocol version
363 */
364u8 mei_cldev_ver(const struct mei_cl_device *cldev)
365{
366 return mei_me_cl_ver(cldev->me_cl);
367}
368EXPORT_SYMBOL_GPL(mei_cldev_ver);
369
370/**
Tomas Winkler01a14ed2015-09-10 10:18:03 +0300371 * mei_cldev_enabled - check whether the device is enabled
372 *
373 * @cldev: mei client device
374 *
375 * Return: true if me client is initialized and connected
376 */
377bool mei_cldev_enabled(struct mei_cl_device *cldev)
378{
379 return cldev->cl && mei_cl_is_connected(cldev->cl);
380}
381EXPORT_SYMBOL_GPL(mei_cldev_enabled);
382
383/**
Tomas Winkler62382992015-07-23 15:08:35 +0300384 * mei_cl_enable_device - enable me client device
385 * create connection with me client
386 *
387 * @cldev: me client device
388 *
389 * Return: 0 on success and < 0 on error
390 */
391int mei_cl_enable_device(struct mei_cl_device *cldev)
392{
Tomas Winkler60095952015-07-23 15:08:47 +0300393 struct mei_device *bus = cldev->bus;
394 struct mei_cl *cl;
395 int ret;
Tomas Winkler62382992015-07-23 15:08:35 +0300396
Tomas Winkler60095952015-07-23 15:08:47 +0300397 cl = cldev->cl;
Tomas Winkler62382992015-07-23 15:08:35 +0300398
Tomas Winkler60095952015-07-23 15:08:47 +0300399 if (!cl) {
400 mutex_lock(&bus->device_lock);
401 cl = mei_cl_alloc_linked(bus, MEI_HOST_CLIENT_ID_ANY);
402 mutex_unlock(&bus->device_lock);
403 if (IS_ERR(cl))
404 return PTR_ERR(cl);
405 /* update pointers */
406 cldev->cl = cl;
407 cl->cldev = cldev;
408 }
Tomas Winkler62382992015-07-23 15:08:35 +0300409
410 mutex_lock(&bus->device_lock);
Tomas Winkler62382992015-07-23 15:08:35 +0300411 if (mei_cl_is_connected(cl)) {
Tomas Winkler60095952015-07-23 15:08:47 +0300412 ret = 0;
413 goto out;
Tomas Winkler62382992015-07-23 15:08:35 +0300414 }
415
Tomas Winkler60095952015-07-23 15:08:47 +0300416 if (!mei_me_cl_is_active(cldev->me_cl)) {
417 dev_err(&cldev->dev, "me client is not active\n");
418 ret = -ENOTTY;
419 goto out;
Tomas Winkler62382992015-07-23 15:08:35 +0300420 }
421
Tomas Winkler60095952015-07-23 15:08:47 +0300422 ret = mei_cl_connect(cl, cldev->me_cl, NULL);
423 if (ret < 0)
424 dev_err(&cldev->dev, "cannot connect\n");
425
426out:
Tomas Winkler62382992015-07-23 15:08:35 +0300427 mutex_unlock(&bus->device_lock);
428
Tomas Winkler60095952015-07-23 15:08:47 +0300429 return ret;
Tomas Winkler62382992015-07-23 15:08:35 +0300430}
431EXPORT_SYMBOL_GPL(mei_cl_enable_device);
432
433/**
434 * mei_cl_disable_device - disable me client device
435 * disconnect form the me client
436 *
437 * @cldev: me client device
438 *
439 * Return: 0 on success and < 0 on error
440 */
441int mei_cl_disable_device(struct mei_cl_device *cldev)
442{
Tomas Winkler62382992015-07-23 15:08:35 +0300443 struct mei_device *bus;
Tomas Winkler60095952015-07-23 15:08:47 +0300444 struct mei_cl *cl;
445 int err;
Tomas Winkler62382992015-07-23 15:08:35 +0300446
Tomas Winkler60095952015-07-23 15:08:47 +0300447 if (!cldev || !cldev->cl)
Tomas Winkler62382992015-07-23 15:08:35 +0300448 return -ENODEV;
449
Tomas Winkler60095952015-07-23 15:08:47 +0300450 cl = cldev->cl;
451
452 bus = cldev->bus;
Tomas Winkler62382992015-07-23 15:08:35 +0300453
454 cldev->event_cb = NULL;
455
456 mutex_lock(&bus->device_lock);
457
458 if (!mei_cl_is_connected(cl)) {
459 dev_err(bus->dev, "Already disconnected");
460 err = 0;
461 goto out;
462 }
463
464 err = mei_cl_disconnect(cl);
Tomas Winkler60095952015-07-23 15:08:47 +0300465 if (err < 0)
Tomas Winkler62382992015-07-23 15:08:35 +0300466 dev_err(bus->dev, "Could not disconnect from the ME client");
Tomas Winkler62382992015-07-23 15:08:35 +0300467
468out:
Tomas Winkler60095952015-07-23 15:08:47 +0300469 /* Flush queues and remove any pending read */
470 mei_cl_flush_queues(cl, NULL);
471 mei_cl_unlink(cl);
472
473 kfree(cl);
474 cldev->cl = NULL;
475
Tomas Winkler62382992015-07-23 15:08:35 +0300476 mutex_unlock(&bus->device_lock);
477 return err;
Tomas Winkler62382992015-07-23 15:08:35 +0300478}
479EXPORT_SYMBOL_GPL(mei_cl_disable_device);
480
Tomas Winkler688a9cc2015-07-23 15:08:39 +0300481/**
482 * mei_cl_device_find - find matching entry in the driver id table
483 *
484 * @cldev: me client device
485 * @cldrv: me client driver
486 *
487 * Return: id on success; NULL if no id is matching
488 */
489static const
490struct mei_cl_device_id *mei_cl_device_find(struct mei_cl_device *cldev,
491 struct mei_cl_driver *cldrv)
Samuel Ortize5354102013-03-27 17:29:53 +0200492{
Samuel Ortize5354102013-03-27 17:29:53 +0200493 const struct mei_cl_device_id *id;
Tomas Winklerc93b76b2015-05-07 15:54:02 +0300494 const uuid_le *uuid;
Tomas Winklerb26864c2015-09-10 10:18:01 +0300495 u8 version;
496 bool match;
Samuel Ortize5354102013-03-27 17:29:53 +0200497
Tomas Winklerb37719c32015-07-23 15:08:33 +0300498 uuid = mei_me_cl_uuid(cldev->me_cl);
Tomas Winklerb26864c2015-09-10 10:18:01 +0300499 version = mei_me_cl_ver(cldev->me_cl);
Samuel Ortize5354102013-03-27 17:29:53 +0200500
Tomas Winklerb37719c32015-07-23 15:08:33 +0300501 id = cldrv->id_table;
Greg Kroah-Hartmanb144ce22015-05-27 17:17:27 -0700502 while (uuid_le_cmp(NULL_UUID_LE, id->uuid)) {
Greg Kroah-Hartmanb144ce22015-05-27 17:17:27 -0700503 if (!uuid_le_cmp(*uuid, id->uuid)) {
Tomas Winklerb26864c2015-09-10 10:18:01 +0300504 match = true;
Tomas Winkler688a9cc2015-07-23 15:08:39 +0300505
Tomas Winklerb26864c2015-09-10 10:18:01 +0300506 if (cldev->name[0])
507 if (strncmp(cldev->name, id->name,
508 sizeof(id->name)))
509 match = false;
Tomas Winkler688a9cc2015-07-23 15:08:39 +0300510
Tomas Winklerb26864c2015-09-10 10:18:01 +0300511 if (id->version != MEI_CL_VERSION_ANY)
512 if (id->version != version)
513 match = false;
514 if (match)
Tomas Winkler688a9cc2015-07-23 15:08:39 +0300515 return id;
Tomas Winklerc93b76b2015-05-07 15:54:02 +0300516 }
Samuel Ortize5354102013-03-27 17:29:53 +0200517
518 id++;
519 }
520
Tomas Winkler688a9cc2015-07-23 15:08:39 +0300521 return NULL;
522}
523
524/**
525 * mei_cl_device_match - device match function
526 *
527 * @dev: device
528 * @drv: driver
529 *
530 * Return: 1 if matching device was found 0 otherwise
531 */
532static int mei_cl_device_match(struct device *dev, struct device_driver *drv)
533{
534 struct mei_cl_device *cldev = to_mei_cl_device(dev);
535 struct mei_cl_driver *cldrv = to_mei_cl_driver(drv);
536 const struct mei_cl_device_id *found_id;
537
538 if (!cldev)
539 return 0;
540
Tomas Winkler71ce7892015-07-23 15:08:43 +0300541 if (!cldev->do_match)
542 return 0;
543
Tomas Winkler688a9cc2015-07-23 15:08:39 +0300544 if (!cldrv || !cldrv->id_table)
545 return 0;
546
547 found_id = mei_cl_device_find(cldev, cldrv);
548 if (found_id)
549 return 1;
550
Samuel Ortize5354102013-03-27 17:29:53 +0200551 return 0;
552}
553
Tomas Winklerfeb8cd02015-07-23 15:08:40 +0300554/**
555 * mei_cl_device_probe - bus probe function
556 *
557 * @dev: device
558 *
559 * Return: 0 on success; < 0 otherwise
560 */
Samuel Ortize5354102013-03-27 17:29:53 +0200561static int mei_cl_device_probe(struct device *dev)
562{
Tomas Winklerfeb8cd02015-07-23 15:08:40 +0300563 struct mei_cl_device *cldev;
Tomas Winklerb37719c32015-07-23 15:08:33 +0300564 struct mei_cl_driver *cldrv;
Tomas Winklerfeb8cd02015-07-23 15:08:40 +0300565 const struct mei_cl_device_id *id;
566
567 cldev = to_mei_cl_device(dev);
568 cldrv = to_mei_cl_driver(dev->driver);
Samuel Ortize5354102013-03-27 17:29:53 +0200569
Tomas Winklerb37719c32015-07-23 15:08:33 +0300570 if (!cldev)
Samuel Ortize5354102013-03-27 17:29:53 +0200571 return 0;
572
Tomas Winklerb37719c32015-07-23 15:08:33 +0300573 if (!cldrv || !cldrv->probe)
Samuel Ortize5354102013-03-27 17:29:53 +0200574 return -ENODEV;
575
Tomas Winklerfeb8cd02015-07-23 15:08:40 +0300576 id = mei_cl_device_find(cldev, cldrv);
577 if (!id)
578 return -ENODEV;
Samuel Ortize5354102013-03-27 17:29:53 +0200579
Tomas Winklerfeb8cd02015-07-23 15:08:40 +0300580 __module_get(THIS_MODULE);
Samuel Ortize5354102013-03-27 17:29:53 +0200581
Tomas Winklerfeb8cd02015-07-23 15:08:40 +0300582 return cldrv->probe(cldev, id);
Samuel Ortize5354102013-03-27 17:29:53 +0200583}
584
Tomas Winklerfeb8cd02015-07-23 15:08:40 +0300585/**
586 * mei_cl_device_remove - remove device from the bus
587 *
588 * @dev: device
589 *
590 * Return: 0 on success; < 0 otherwise
591 */
Samuel Ortize5354102013-03-27 17:29:53 +0200592static int mei_cl_device_remove(struct device *dev)
593{
Tomas Winklerb37719c32015-07-23 15:08:33 +0300594 struct mei_cl_device *cldev = to_mei_cl_device(dev);
595 struct mei_cl_driver *cldrv;
Tomas Winklerfeb8cd02015-07-23 15:08:40 +0300596 int ret = 0;
Samuel Ortize5354102013-03-27 17:29:53 +0200597
Tomas Winklerb37719c32015-07-23 15:08:33 +0300598 if (!cldev || !dev->driver)
Samuel Ortize5354102013-03-27 17:29:53 +0200599 return 0;
600
Tomas Winklerb37719c32015-07-23 15:08:33 +0300601 if (cldev->event_cb) {
602 cldev->event_cb = NULL;
603 cancel_work_sync(&cldev->event_work);
Samuel Ortiz3e833292013-03-27 17:29:55 +0200604 }
605
Tomas Winklerb37719c32015-07-23 15:08:33 +0300606 cldrv = to_mei_cl_driver(dev->driver);
Tomas Winklerfeb8cd02015-07-23 15:08:40 +0300607 if (cldrv->remove)
608 ret = cldrv->remove(cldev);
Samuel Ortize5354102013-03-27 17:29:53 +0200609
Tomas Winklerfeb8cd02015-07-23 15:08:40 +0300610 module_put(THIS_MODULE);
611 dev->driver = NULL;
612 return ret;
Samuel Ortize5354102013-03-27 17:29:53 +0200613
Samuel Ortize5354102013-03-27 17:29:53 +0200614}
615
Tomas Winkler007d64e2015-05-07 15:54:03 +0300616static ssize_t name_show(struct device *dev, struct device_attribute *a,
617 char *buf)
618{
Tomas Winklerb37719c32015-07-23 15:08:33 +0300619 struct mei_cl_device *cldev = to_mei_cl_device(dev);
Tomas Winkler007d64e2015-05-07 15:54:03 +0300620 size_t len;
621
Tomas Winklerb37719c32015-07-23 15:08:33 +0300622 len = snprintf(buf, PAGE_SIZE, "%s", cldev->name);
Tomas Winkler007d64e2015-05-07 15:54:03 +0300623
624 return (len >= PAGE_SIZE) ? (PAGE_SIZE - 1) : len;
625}
626static DEVICE_ATTR_RO(name);
627
628static ssize_t uuid_show(struct device *dev, struct device_attribute *a,
629 char *buf)
630{
Tomas Winklerb37719c32015-07-23 15:08:33 +0300631 struct mei_cl_device *cldev = to_mei_cl_device(dev);
632 const uuid_le *uuid = mei_me_cl_uuid(cldev->me_cl);
Tomas Winkler007d64e2015-05-07 15:54:03 +0300633 size_t len;
634
635 len = snprintf(buf, PAGE_SIZE, "%pUl", uuid);
636
637 return (len >= PAGE_SIZE) ? (PAGE_SIZE - 1) : len;
638}
639static DEVICE_ATTR_RO(uuid);
640
Tomas Winkler40b73202015-09-10 10:18:00 +0300641static ssize_t version_show(struct device *dev, struct device_attribute *a,
642 char *buf)
643{
644 struct mei_cl_device *cldev = to_mei_cl_device(dev);
645 u8 version = mei_me_cl_ver(cldev->me_cl);
646 size_t len;
647
648 len = snprintf(buf, PAGE_SIZE, "%02X", version);
649
650 return (len >= PAGE_SIZE) ? (PAGE_SIZE - 1) : len;
651}
652static DEVICE_ATTR_RO(version);
653
Samuel Ortize5354102013-03-27 17:29:53 +0200654static ssize_t modalias_show(struct device *dev, struct device_attribute *a,
655 char *buf)
656{
Tomas Winklerb37719c32015-07-23 15:08:33 +0300657 struct mei_cl_device *cldev = to_mei_cl_device(dev);
658 const uuid_le *uuid = mei_me_cl_uuid(cldev->me_cl);
Tomas Winklerc93b76b2015-05-07 15:54:02 +0300659 size_t len;
Samuel Ortize5354102013-03-27 17:29:53 +0200660
Prarit Bhargava59796ed2015-09-10 10:17:59 +0300661 len = snprintf(buf, PAGE_SIZE, "mei:%s:%pUl:", cldev->name, uuid);
Samuel Ortize5354102013-03-27 17:29:53 +0200662 return (len >= PAGE_SIZE) ? (PAGE_SIZE - 1) : len;
663}
Greg Kroah-Hartman32f389ec2013-08-23 14:24:39 -0700664static DEVICE_ATTR_RO(modalias);
Samuel Ortize5354102013-03-27 17:29:53 +0200665
Greg Kroah-Hartman32f389ec2013-08-23 14:24:39 -0700666static struct attribute *mei_cl_dev_attrs[] = {
Tomas Winkler007d64e2015-05-07 15:54:03 +0300667 &dev_attr_name.attr,
668 &dev_attr_uuid.attr,
Tomas Winkler40b73202015-09-10 10:18:00 +0300669 &dev_attr_version.attr,
Greg Kroah-Hartman32f389ec2013-08-23 14:24:39 -0700670 &dev_attr_modalias.attr,
671 NULL,
Samuel Ortize5354102013-03-27 17:29:53 +0200672};
Greg Kroah-Hartman32f389ec2013-08-23 14:24:39 -0700673ATTRIBUTE_GROUPS(mei_cl_dev);
Samuel Ortize5354102013-03-27 17:29:53 +0200674
Tomas Winkler38d3c002015-07-23 15:08:36 +0300675/**
676 * mei_cl_device_uevent - me client bus uevent handler
677 *
678 * @dev: device
679 * @env: uevent kobject
680 *
681 * Return: 0 on success -ENOMEM on when add_uevent_var fails
682 */
683static int mei_cl_device_uevent(struct device *dev, struct kobj_uevent_env *env)
Samuel Ortize5354102013-03-27 17:29:53 +0200684{
Tomas Winklerb37719c32015-07-23 15:08:33 +0300685 struct mei_cl_device *cldev = to_mei_cl_device(dev);
686 const uuid_le *uuid = mei_me_cl_uuid(cldev->me_cl);
Tomas Winkler40b73202015-09-10 10:18:00 +0300687 u8 version = mei_me_cl_ver(cldev->me_cl);
688
689 if (add_uevent_var(env, "MEI_CL_VERSION=%d", version))
690 return -ENOMEM;
Tomas Winklerc93b76b2015-05-07 15:54:02 +0300691
Tomas Winkler007d64e2015-05-07 15:54:03 +0300692 if (add_uevent_var(env, "MEI_CL_UUID=%pUl", uuid))
693 return -ENOMEM;
694
Tomas Winklerb37719c32015-07-23 15:08:33 +0300695 if (add_uevent_var(env, "MEI_CL_NAME=%s", cldev->name))
Tomas Winkler007d64e2015-05-07 15:54:03 +0300696 return -ENOMEM;
697
Tomas Winklerb26864c2015-09-10 10:18:01 +0300698 if (add_uevent_var(env, "MODALIAS=mei:%s:%pUl:%02X:",
699 cldev->name, uuid, version))
Samuel Ortize5354102013-03-27 17:29:53 +0200700 return -ENOMEM;
701
702 return 0;
703}
704
705static struct bus_type mei_cl_bus_type = {
706 .name = "mei",
Greg Kroah-Hartman32f389ec2013-08-23 14:24:39 -0700707 .dev_groups = mei_cl_dev_groups,
Samuel Ortize5354102013-03-27 17:29:53 +0200708 .match = mei_cl_device_match,
709 .probe = mei_cl_device_probe,
710 .remove = mei_cl_device_remove,
Tomas Winkler38d3c002015-07-23 15:08:36 +0300711 .uevent = mei_cl_device_uevent,
Samuel Ortize5354102013-03-27 17:29:53 +0200712};
713
Tomas Winkler512f64d2015-07-23 15:08:41 +0300714static struct mei_device *mei_dev_bus_get(struct mei_device *bus)
715{
716 if (bus)
717 get_device(bus->dev);
718
719 return bus;
720}
721
722static void mei_dev_bus_put(struct mei_device *bus)
723{
724 if (bus)
725 put_device(bus->dev);
726}
727
Samuel Ortize5354102013-03-27 17:29:53 +0200728static void mei_cl_dev_release(struct device *dev)
729{
Tomas Winklerb37719c32015-07-23 15:08:33 +0300730 struct mei_cl_device *cldev = to_mei_cl_device(dev);
Alexander Usyskind49ed642015-05-04 09:43:54 +0300731
Tomas Winklerb37719c32015-07-23 15:08:33 +0300732 if (!cldev)
Alexander Usyskind49ed642015-05-04 09:43:54 +0300733 return;
734
Tomas Winklerb37719c32015-07-23 15:08:33 +0300735 mei_me_cl_put(cldev->me_cl);
Tomas Winkler512f64d2015-07-23 15:08:41 +0300736 mei_dev_bus_put(cldev->bus);
Tomas Winklerb37719c32015-07-23 15:08:33 +0300737 kfree(cldev);
Samuel Ortize5354102013-03-27 17:29:53 +0200738}
739
740static struct device_type mei_cl_device_type = {
741 .release = mei_cl_dev_release,
742};
743
Tomas Winkler71ce7892015-07-23 15:08:43 +0300744/**
745 * mei_cl_dev_alloc - initialize and allocate mei client device
746 *
747 * @bus: mei device
748 * @me_cl: me client
749 *
750 * Return: allocated device structur or NULL on allocation failure
751 */
752static struct mei_cl_device *mei_cl_dev_alloc(struct mei_device *bus,
753 struct mei_me_client *me_cl)
754{
755 struct mei_cl_device *cldev;
756
757 cldev = kzalloc(sizeof(struct mei_cl_device), GFP_KERNEL);
758 if (!cldev)
759 return NULL;
760
761 device_initialize(&cldev->dev);
762 cldev->dev.parent = bus->dev;
763 cldev->dev.bus = &mei_cl_bus_type;
764 cldev->dev.type = &mei_cl_device_type;
765 cldev->bus = mei_dev_bus_get(bus);
766 cldev->me_cl = mei_me_cl_get(me_cl);
767 cldev->is_added = 0;
768 INIT_LIST_HEAD(&cldev->bus_list);
769
770 return cldev;
771}
772
773/**
774 * mei_cl_dev_setup - setup me client device
775 * run fix up routines and set the device name
776 *
777 * @bus: mei device
778 * @cldev: me client device
779 *
780 * Return: true if the device is eligible for enumeration
781 */
782static bool mei_cl_dev_setup(struct mei_device *bus,
783 struct mei_cl_device *cldev)
784{
785 cldev->do_match = 1;
786 mei_cl_dev_fixup(cldev);
787
788 if (cldev->do_match)
Tomas Winklerb26864c2015-09-10 10:18:01 +0300789 dev_set_name(&cldev->dev, "mei:%s:%pUl:%02X",
790 cldev->name,
791 mei_me_cl_uuid(cldev->me_cl),
792 mei_me_cl_ver(cldev->me_cl));
Tomas Winkler71ce7892015-07-23 15:08:43 +0300793
794 return cldev->do_match == 1;
795}
796
797/**
798 * mei_cl_bus_dev_add - add me client devices
799 *
800 * @cldev: me client device
801 *
802 * Return: 0 on success; < 0 on failre
803 */
804static int mei_cl_bus_dev_add(struct mei_cl_device *cldev)
805{
806 int ret;
807
Tomas Winklerb26864c2015-09-10 10:18:01 +0300808 dev_dbg(cldev->bus->dev, "adding %pUL:%02X\n",
809 mei_me_cl_uuid(cldev->me_cl),
810 mei_me_cl_ver(cldev->me_cl));
Tomas Winkler71ce7892015-07-23 15:08:43 +0300811 ret = device_add(&cldev->dev);
812 if (!ret)
813 cldev->is_added = 1;
814
815 return ret;
816}
817
Tomas Winkler60095952015-07-23 15:08:47 +0300818/**
819 * mei_cl_bus_dev_stop - stop the driver
820 *
821 * @cldev: me client device
822 */
823static void mei_cl_bus_dev_stop(struct mei_cl_device *cldev)
824{
825 if (cldev->is_added)
826 device_release_driver(&cldev->dev);
827}
828
829/**
830 * mei_cl_bus_dev_destroy - destroy me client devices object
831 *
832 * @cldev: me client device
833 */
834static void mei_cl_bus_dev_destroy(struct mei_cl_device *cldev)
835{
836 if (!cldev->is_added)
837 return;
838
839 device_del(&cldev->dev);
840
841 mutex_lock(&cldev->bus->cl_bus_lock);
842 list_del_init(&cldev->bus_list);
843 mutex_unlock(&cldev->bus->cl_bus_lock);
844
845 cldev->is_added = 0;
846 put_device(&cldev->dev);
847}
848
849/**
850 * mei_cl_bus_remove_device - remove a devices form the bus
851 *
852 * @cldev: me client device
853 */
854static void mei_cl_bus_remove_device(struct mei_cl_device *cldev)
855{
856 mei_cl_bus_dev_stop(cldev);
857 mei_cl_bus_dev_destroy(cldev);
858}
859
860/**
861 * mei_cl_bus_remove_devices - remove all devices form the bus
862 *
863 * @bus: mei device
864 */
865void mei_cl_bus_remove_devices(struct mei_device *bus)
866{
867 struct mei_cl_device *cldev, *next;
868
869 list_for_each_entry_safe(cldev, next, &bus->device_list, bus_list)
870 mei_cl_bus_remove_device(cldev);
871}
872
873
874/**
875 * mei_cl_dev_init - allocate and initializes an mei client devices
876 * based on me client
877 *
878 * @bus: mei device
879 * @me_cl: me client
880 */
881static void mei_cl_dev_init(struct mei_device *bus, struct mei_me_client *me_cl)
Samuel Ortize5354102013-03-27 17:29:53 +0200882{
Tomas Winklerb37719c32015-07-23 15:08:33 +0300883 struct mei_cl_device *cldev;
Tomas Winkler60095952015-07-23 15:08:47 +0300884
885 dev_dbg(bus->dev, "initializing %pUl", mei_me_cl_uuid(me_cl));
886
887 if (me_cl->bus_added)
888 return;
Samuel Ortize5354102013-03-27 17:29:53 +0200889
Tomas Winkler71ce7892015-07-23 15:08:43 +0300890 cldev = mei_cl_dev_alloc(bus, me_cl);
Tomas Winklerb37719c32015-07-23 15:08:33 +0300891 if (!cldev)
Tomas Winkler60095952015-07-23 15:08:47 +0300892 return;
Samuel Ortize5354102013-03-27 17:29:53 +0200893
Tomas Winkler60095952015-07-23 15:08:47 +0300894 mutex_lock(&cldev->bus->cl_bus_lock);
895 me_cl->bus_added = true;
896 list_add_tail(&cldev->bus_list, &bus->device_list);
897 mutex_unlock(&cldev->bus->cl_bus_lock);
Tomas Winklerc93b76b2015-05-07 15:54:02 +0300898
Samuel Ortize5354102013-03-27 17:29:53 +0200899}
Samuel Ortize5354102013-03-27 17:29:53 +0200900
Tomas Winkler60095952015-07-23 15:08:47 +0300901/**
902 * mei_cl_bus_rescan - scan me clients list and add create
903 * devices for eligible clients
904 *
905 * @bus: mei device
906 */
907void mei_cl_bus_rescan(struct mei_device *bus)
Samuel Ortize5354102013-03-27 17:29:53 +0200908{
Tomas Winkler60095952015-07-23 15:08:47 +0300909 struct mei_cl_device *cldev, *n;
910 struct mei_me_client *me_cl;
911
912 down_read(&bus->me_clients_rwsem);
913 list_for_each_entry(me_cl, &bus->me_clients, list)
914 mei_cl_dev_init(bus, me_cl);
915 up_read(&bus->me_clients_rwsem);
916
917 mutex_lock(&bus->cl_bus_lock);
918 list_for_each_entry_safe(cldev, n, &bus->device_list, bus_list) {
919
920 if (!mei_me_cl_is_active(cldev->me_cl)) {
921 mei_cl_bus_remove_device(cldev);
922 continue;
923 }
924
925 if (cldev->is_added)
926 continue;
927
928 if (mei_cl_dev_setup(bus, cldev))
929 mei_cl_bus_dev_add(cldev);
930 else {
931 list_del_init(&cldev->bus_list);
932 put_device(&cldev->dev);
933 }
934 }
935 mutex_unlock(&bus->cl_bus_lock);
936
937 dev_dbg(bus->dev, "rescan end");
Samuel Ortize5354102013-03-27 17:29:53 +0200938}
Samuel Ortiz333e4ee2013-03-27 17:29:54 +0200939
Tomas Winklerb37719c32015-07-23 15:08:33 +0300940int __mei_cl_driver_register(struct mei_cl_driver *cldrv, struct module *owner)
Samuel Ortiz333e4ee2013-03-27 17:29:54 +0200941{
942 int err;
943
Tomas Winklerb37719c32015-07-23 15:08:33 +0300944 cldrv->driver.name = cldrv->name;
945 cldrv->driver.owner = owner;
946 cldrv->driver.bus = &mei_cl_bus_type;
Samuel Ortiz333e4ee2013-03-27 17:29:54 +0200947
Tomas Winklerb37719c32015-07-23 15:08:33 +0300948 err = driver_register(&cldrv->driver);
Samuel Ortiz333e4ee2013-03-27 17:29:54 +0200949 if (err)
950 return err;
951
Tomas Winklerb37719c32015-07-23 15:08:33 +0300952 pr_debug("mei: driver [%s] registered\n", cldrv->driver.name);
Samuel Ortiz333e4ee2013-03-27 17:29:54 +0200953
954 return 0;
955}
956EXPORT_SYMBOL_GPL(__mei_cl_driver_register);
957
Tomas Winklerb37719c32015-07-23 15:08:33 +0300958void mei_cl_driver_unregister(struct mei_cl_driver *cldrv)
Samuel Ortiz333e4ee2013-03-27 17:29:54 +0200959{
Tomas Winklerb37719c32015-07-23 15:08:33 +0300960 driver_unregister(&cldrv->driver);
Samuel Ortiz333e4ee2013-03-27 17:29:54 +0200961
Tomas Winklerb37719c32015-07-23 15:08:33 +0300962 pr_debug("mei: driver [%s] unregistered\n", cldrv->driver.name);
Samuel Ortiz333e4ee2013-03-27 17:29:54 +0200963}
964EXPORT_SYMBOL_GPL(mei_cl_driver_unregister);
Samuel Ortiz3e833292013-03-27 17:29:55 +0200965
Tomas Winkler60095952015-07-23 15:08:47 +0300966
Samuel Ortizcf3baef2013-03-27 17:29:57 +0200967int __init mei_cl_bus_init(void)
968{
969 return bus_register(&mei_cl_bus_type);
970}
971
972void __exit mei_cl_bus_exit(void)
973{
974 bus_unregister(&mei_cl_bus_type);
975}