summaryrefslogtreecommitdiff
path: root/drivers/maru/sensors/maru_virtio_sensor.c
blob: 3b7b06017a75b1779a7a94b98830e31e33c0186c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
/*
 * Maru Virtio Sensor Device Driver
 *
 * Copyright (c) 2012 Samsung Electronics Co., Ltd. All rights reserved.
 *
 * Contact:
 *  Jinhyung Choi <jinhyung2.choi@samsung.com>
 *  Daiyoung Kim <daiyoung777.kim@samsung.com>
 *  YeongKyoon Lee <yeongkyoon.lee@samsung.com>
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 *
 * Contributors:
 * - S-Core Co., Ltd
 *
 */

#include <linux/module.h>
#include <linux/init.h>
#include <linux/fs.h>
#include <linux/uaccess.h>
#include <linux/miscdevice.h>
#include <linux/slab.h>
#include <linux/virtio.h>
#include <linux/virtio_ids.h>
#include <linux/virtio_config.h>
#include <linux/wait.h>
#include <linux/sched.h>
#include <linux/cdev.h>

#include "maru_virtio_sensor.h"

int sensor_driver_debug = 0;
module_param(sensor_driver_debug, int, 0644);
MODULE_PARM_DESC(sensor_driver_debug, "Turn on/off maru sensor debugging (default:off).");

static struct virtio_device_id id_table[] = { { VIRTIO_ID_SENSOR,
		VIRTIO_DEV_ANY_ID }, { 0 }, };

static char sensor_data[__MAX_BUF_SENSOR];

struct virtio_sensor *vs;

static DECLARE_WAIT_QUEUE_HEAD(wq);

int sensor_atoi(const char *value)
{
    int val = 0;

    for (;; value++) {
        switch (*value) {
            case '0' ... '9':
                val = 10*val+(*value-'0');
                break;
            default:
                return val;
        }
    }
}

int register_sensor_device(struct device *dev, struct virtio_sensor *vs,
		struct device_attribute *attributes[], const char* name)
{
	int i = 0, err = 0;

	if (!vs->sensor_class) {
		ERR("sensor class is not created before make device");
		return -1;
	}

	INFO("device creation: %s.", name);

	dev = device_create(vs->sensor_class, NULL, MKDEV(0,0), NULL, "%s", name);
	if (dev < 0) {
		ERR("register_device_create failed!");
		return -1;
	}

	if (attributes == NULL) {
		ERR("attributes is NULL.");
		return -1;
	}

	for (i = 0; attributes[i] != NULL; i++) {
		if ((err = device_create_file(dev, attributes[i])) < 0) {
			ERR("failed to create device file with attribute[%d - %d]", i, err);
			return -1;
		}
	}

	INFO("register_sensor_device ends: %s.", name);

	return 0;
}

#ifdef SUPPORT_LEGACY_SENSOR

int l_register_sensor_device(struct device *dev, struct virtio_sensor *vs,
		struct device_attribute *attributes[], const char* name)
{
	int i = 0, err = 0;

	if (!vs->l_sensor_class) {
		ERR("l sensor class is not created before make device");
		return -1;
	}

	dev = device_create(vs->l_sensor_class, NULL, MKDEV(0,0), NULL, "%s", name);
	if (dev < 0) {
		ERR("legacy register_device_create failed!");
		return -1;
	}

	if (attributes == NULL) {
		ERR("l sensor attributes is NULL.");
		return -1;
	}

	for (i = 0; attributes[i] != NULL; i++) {
		if ((err = device_create_file(dev, attributes[i])) < 0) {
			ERR("failed to create legacy device file with attribute[%d - %d]", i, err);
			return -1;
		}
	}

	return 0;
}

#endif

static void sensor_vq_done(struct virtqueue *rvq) {
	unsigned int len;
	struct msg_info* msg;

	msg = (struct msg_info*) virtqueue_get_buf(vs->vq, &len);
	if (msg == NULL) {
		ERR("failed to virtqueue_get_buf");
		return;
	}

	if (msg->req != request_answer) {
		LOG(1, "set_sensor_data callback.");
		mutex_lock(&vs->lock);
		vs->flags = 1;
		mutex_unlock(&vs->lock);

		wake_up_interruptible(&wq);
		return;
	}

	if (msg->buf == NULL) {
		ERR("receive queue- message from host is NULL.");
		return;
	}

	mutex_lock(&vs->lock);
	LOG(1, "msg buf: %s, req: %d, type: %d, vs->flags: %d", msg->buf, msg->req, msg->type, vs->flags);

	memset(sensor_data, 0, sizeof(sensor_data));
	strcpy(sensor_data, msg->buf);
	vs->flags = 1;
	mutex_unlock(&vs->lock);

	wake_up_interruptible(&wq);
}

void set_sensor_data(int type, const char* buf)
{
	int err = 0;

	if (buf == NULL) {
		ERR("set_sensor buf is NULL.");
		return;
	}

	if (vs == NULL) {
		ERR("Invalid sensor handle");
		return;
	}

	mutex_lock(&vs->lock);
	memset(&vs->msginfo, 0, sizeof(vs->msginfo));

	vs->msginfo.req = request_set;
	vs->msginfo.type = type;
	strcpy(vs->msginfo.buf, buf);

	LOG(1, "set_sensor_data type: %d, req: %d, buf: %s",
			vs->msginfo.type, vs->msginfo.req, vs->msginfo.buf);

	mutex_unlock(&vs->lock);

	err = virtqueue_add_outbuf(vs->vq, vs->sg_svq, 1, &vs->msginfo, GFP_ATOMIC);
	if (err < 0) {
		ERR("failed to add_outbuf buffer to virtqueue (err = %d)", err);
		return;
	}

	virtqueue_kick(vs->vq);

	wait_event_interruptible(wq, vs->flags != 0);

	mutex_lock(&vs->lock);
	vs->flags = 0;
	mutex_unlock(&vs->lock);
}

int get_sensor_data(int type, char* data)
{
	struct scatterlist *sgs[2];
	int err = 0;

	if (vs == NULL || data == NULL) {
		ERR("Invalid sensor handle or data is NULL.");
		return -1;
	}

	mutex_lock(&vs->lock);
	memset(&vs->msginfo, 0, sizeof(vs->msginfo));

	vs->msginfo.req = request_get;
	vs->msginfo.type = type;

	LOG(1, "get_sensor_data start type: %d, req: %d",
			vs->msginfo.type, vs->msginfo.req);

	sgs[0] = &vs->sg_vq[0];
	sgs[1] = &vs->sg_vq[1];
	mutex_unlock(&vs->lock);

	err = virtqueue_add_sgs(vs->vq, sgs, 1, 1, &vs->msginfo, GFP_ATOMIC);
	if (err < 0) {
		ERR("failed to add_sgs buffer to virtqueue (err = %d)", err);
		return err;
	}

	virtqueue_kick(vs->vq);

	wait_event_interruptible(wq, vs->flags != 0);

	mutex_lock(&vs->lock);
	vs->flags = 0;
	memcpy(data, sensor_data, strlen(sensor_data));
	mutex_unlock(&vs->lock);

	LOG(1, "get_sensor_data end type: %d, data: %p", type, data);
	return 0;
}

static void device_init(struct virtio_sensor *vs)
{
	int ret = 0;

	if (vs->sensor_capability & sensor_cap_accel) {
		ret = maru_accel_init(vs);
		if (ret) {
			vs->sensor_fail_init |= sensor_cap_accel;
			ERR("failed to init accel with error %d", ret);
		}
	}

	if (vs->sensor_capability & sensor_cap_geo) {
		ret = maru_geo_init(vs);
		if (ret) {
			vs->sensor_fail_init |= sensor_cap_geo;
			ERR("failed to init geo with error %d", ret);
		}
	}

	if (vs->sensor_capability & sensor_cap_gyro) {
		ret = maru_gyro_init(vs);
		if (ret) {
			vs->sensor_fail_init |= sensor_cap_gyro;
			ERR("failed to init gyro with error %d", ret);
		}
	}

	if (vs->sensor_capability & sensor_cap_light) {
		ret = maru_light_init(vs);
		if (ret) {
			vs->sensor_fail_init |= sensor_cap_light;
			ERR("failed to init light with error %d", ret);
		}
	}

	if (vs->sensor_capability & sensor_cap_proxi) {
		ret = maru_proxi_init(vs);
		if (ret) {
			vs->sensor_fail_init |= sensor_cap_proxi;
			ERR("failed to init proxi with error %d", ret);
		}
	}

	if (vs->sensor_capability & sensor_cap_rotation_vector) {
		ret = maru_rotation_vector_init(vs);
		if (ret) {
			vs->sensor_fail_init |= sensor_cap_rotation_vector;
			ERR("failed to init rotation vector with error %d", ret);
		}
	}

	if (vs->sensor_capability & sensor_cap_haptic) {
		ret = maru_haptic_init(vs);
		if (ret) {
			vs->sensor_fail_init |= sensor_cap_haptic;
			ERR("failed to init haptic with error %d", ret);
		}
	}

	if (vs->sensor_capability & sensor_cap_pressure) {
		ret = maru_pressure_init(vs);
		if (ret) {
			vs->sensor_fail_init |= sensor_cap_pressure;
			ERR("failed to init pressure with error %d", ret);
		}
	}

	if (vs->sensor_capability & sensor_cap_uv) {
		ret = maru_uv_init(vs);
		if (ret) {
			vs->sensor_fail_init |= sensor_cap_uv;
			ERR("failed to init uv with error %d", ret);
		}
	}

	if (vs->sensor_capability & sensor_cap_hrm) {
		ret = maru_hrm_init(vs);
		if (ret) {
			vs->sensor_fail_init |= sensor_cap_hrm;
			ERR("failed to init hrm with error %d", ret);
		}
	}
}

static void device_exit(struct virtio_sensor *vs)
{
	if (vs->sensor_capability & sensor_cap_accel &&
			!(vs->sensor_fail_init & sensor_cap_accel)) {
		maru_accel_exit(vs);
	}

	if (vs->sensor_capability & sensor_cap_geo &&
			!(vs->sensor_fail_init & sensor_cap_geo)) {
		maru_geo_exit(vs);
	}

	if (vs->sensor_capability & sensor_cap_gyro &&
			!(vs->sensor_fail_init & sensor_cap_gyro)) {
		maru_gyro_exit(vs);
	}

	if (vs->sensor_capability & sensor_cap_light &&
			!(vs->sensor_fail_init & sensor_cap_light)) {
		maru_light_exit(vs);
	}

	if (vs->sensor_capability & sensor_cap_proxi &&
			!(vs->sensor_fail_init & sensor_cap_proxi)) {
		maru_proxi_exit(vs);
	}

	if (vs->sensor_capability & sensor_cap_rotation_vector &&
			!(vs->sensor_fail_init & sensor_cap_rotation_vector)) {
		maru_rotation_vector_exit(vs);
	}

	if (vs->sensor_capability & sensor_cap_haptic &&
			!(vs->sensor_fail_init & sensor_cap_haptic)) {
		maru_haptic_exit(vs);
	}

	if (vs->sensor_capability & sensor_cap_pressure &&
			!(vs->sensor_fail_init & sensor_cap_pressure)) {
		maru_pressure_exit(vs);
	}

	if (vs->sensor_capability & sensor_cap_uv &&
			!(vs->sensor_fail_init & sensor_cap_uv)) {
		maru_uv_exit(vs);
	}

	if (vs->sensor_capability & sensor_cap_hrm &&
			!(vs->sensor_fail_init & sensor_cap_hrm)) {
		maru_hrm_exit(vs);
	}
}

static void cleanup(struct virtio_device* dev) {
	dev->config->del_vqs(dev);

	if (vs == NULL)
		return;

	if (vs->sensor_class) {
		device_destroy(vs->sensor_class, MKDEV(0,0));
		class_destroy(vs->sensor_class);
	}

#ifdef SUPPORT_LEGACY_SENSOR
	if (vs->l_sensor_class) {
		device_destroy(vs->l_sensor_class, MKDEV(0,0));
		class_destroy(vs->l_sensor_class);
	}
#endif

	kfree(vs);
	vs = NULL;
}

static int sensor_probe(struct virtio_device* dev)
{
	int ret = 0;
	char sensor_data[__MAX_BUF_SENSOR];

	INFO("Sensor probe starts");

	vs = kzalloc(sizeof(struct virtio_sensor), GFP_KERNEL);
	if (!vs) {
		ERR("failed to allocate sensor structure.");
		return -ENOMEM;
	}

	vs->vdev = dev;
	dev->priv = vs;

	vs->sensor_class = class_create(THIS_MODULE, SENSOR_CLASS_NAME);
	if (IS_ERR(vs->sensor_class)) {
		ERR("sensor class creation is failed.");
		return PTR_ERR(vs->sensor_class);
	}

#ifdef SUPPORT_LEGACY_SENSOR
	vs->l_sensor_class = class_create(THIS_MODULE, L_SENSOR_CLASS_NAME);
	if (IS_ERR(vs->sensor_class)) {
		ERR("sensor class creation is failed.");
		return PTR_ERR(vs->sensor_class);
	}
#endif

	vs->vq = virtio_find_single_vq(dev, sensor_vq_done, "sensor");
	if (IS_ERR(vs->vq)) {
		cleanup(dev);
		ERR("failed to init virt queue");
		return ret;
	}

	virtqueue_enable_cb(vs->vq);

	sg_init_one(&vs->sg_vq[0], &vs->msginfo, sizeof(vs->msginfo));
	sg_init_one(&vs->sg_vq[1], &vs->msginfo, sizeof(vs->msginfo));

	sg_init_one(vs->sg_svq, &vs->msginfo, sizeof(vs->msginfo));

	mutex_init(&vs->lock);
	mutex_init(&vs->vqlock);

	memset(sensor_data, 0, sizeof(sensor_data));
	mutex_lock(&vs->vqlock);
	ret = get_sensor_data(sensor_type_list, sensor_data);
	mutex_unlock(&vs->vqlock);
	if (ret) {
		ERR("sensor capability data is null.");
		cleanup(dev);
		return ret;
	}

	INFO("sensor raw capability is %s", sensor_data);
	vs->sensor_capability = sensor_atoi(sensor_data);
	INFO("sensor capability is %02x", vs->sensor_capability);

	if (vs->sensor_capability == 0) {
		ERR("No sensor devices ");
		cleanup(dev);
		return ret;
	}

	device_init(vs);

	if (vs->sensor_capability == vs->sensor_fail_init) {
		ERR("failed initialing all devices");
		cleanup(dev);
		return ret;
	}

	INFO("Sensor probe completes");

	return ret;
}

static void sensor_remove(struct virtio_device* dev)
{
	struct virtio_sensor* vs = dev->priv;
	if (!vs)
	{
		ERR("vs is NULL");
		return;
	}

	dev->config->reset(dev);

	device_exit(vs);

	cleanup(dev);

	INFO("Sensor driver is removed.");
}

MODULE_DEVICE_TABLE(virtio, id_table);

static struct virtio_driver virtio_sensor_driver = {
		.driver = {
				.name = KBUILD_MODNAME,
				.owner = THIS_MODULE ,
		},
		.id_table = id_table,
		.probe = sensor_probe,
		.remove = sensor_remove,
};


static int __init sensor_init(void)
{
	INFO("Sensor driver initialized.");

	return register_virtio_driver(&virtio_sensor_driver);
}

static void __exit sensor_exit(void)
{
	unregister_virtio_driver(&virtio_sensor_driver);

	INFO("Sensor driver is destroyed.");
}

module_init(sensor_init);
module_exit(sensor_exit);

MODULE_LICENSE("GPL2");
MODULE_AUTHOR("Jinhyung Choi <jinhyung2.choi@samsung.com>");
MODULE_DESCRIPTION("Emulator Virtio Sensor Driver");