summaryrefslogtreecommitdiff
path: root/drivers/accel/qaic/mhi_qaic_ctrl.c
blob: 0c7e571f1f12543e1960e98cfcf673d1c6f4c602 (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
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
// SPDX-License-Identifier: GPL-2.0-only
/* Copyright (c) 2022-2023 Qualcomm Innovation Center, Inc. All rights reserved. */

#include <linux/kernel.h>
#include <linux/mhi.h>
#include <linux/mod_devicetable.h>
#include <linux/module.h>
#include <linux/poll.h>
#include <linux/xarray.h>
#include <uapi/linux/eventpoll.h>

#include "mhi_qaic_ctrl.h"
#include "qaic.h"

#define MHI_QAIC_CTRL_DRIVER_NAME	"mhi_qaic_ctrl"
#define MHI_QAIC_CTRL_MAX_MINORS	128
#define MHI_MAX_MTU			0xffff
static DEFINE_XARRAY_ALLOC(mqc_xa);
static struct class *mqc_dev_class;
static int mqc_dev_major;

/**
 * struct mqc_buf - Buffer structure used to receive data from device
 * @data: Address of data to read from
 * @odata: Original address returned from *alloc() API. Used to free this buf.
 * @len: Length of data in byte
 * @node: This buffer will be part of list managed in struct mqc_dev
 */
struct mqc_buf {
	void *data;
	void *odata;
	size_t len;
	struct list_head node;
};

/**
 * struct mqc_dev - MHI QAIC Control Device
 * @minor: MQC device node minor number
 * @mhi_dev: Associated mhi device object
 * @mtu: Max TRE buffer length
 * @enabled: Flag to track the state of the MQC device
 * @lock: Mutex lock to serialize access to open_count
 * @read_lock: Mutex lock to serialize readers
 * @write_lock: Mutex lock to serialize writers
 * @ul_wq: Wait queue for writers
 * @dl_wq: Wait queue for readers
 * @dl_queue_lock: Spin lock to serialize access to download queue
 * @dl_queue: Queue of downloaded buffers
 * @open_count: Track open counts
 * @ref_count: Reference count for this structure
 */
struct mqc_dev {
	u32 minor;
	struct mhi_device *mhi_dev;
	size_t mtu;
	bool enabled;
	struct mutex lock;
	struct mutex read_lock;
	struct mutex write_lock;
	wait_queue_head_t ul_wq;
	wait_queue_head_t dl_wq;
	spinlock_t dl_queue_lock;
	struct list_head dl_queue;
	unsigned int open_count;
	struct kref ref_count;
};

static void mqc_dev_release(struct kref *ref)
{
	struct mqc_dev *mqcdev = container_of(ref, struct mqc_dev, ref_count);

	mutex_destroy(&mqcdev->read_lock);
	mutex_destroy(&mqcdev->write_lock);
	mutex_destroy(&mqcdev->lock);
	kfree(mqcdev);
}

static int mhi_qaic_ctrl_fill_dl_queue(struct mqc_dev *mqcdev)
{
	struct mhi_device *mhi_dev = mqcdev->mhi_dev;
	struct mqc_buf *ctrlbuf;
	int rx_budget;
	int ret = 0;
	void *data;

	rx_budget = mhi_get_free_desc_count(mhi_dev, DMA_FROM_DEVICE);
	if (rx_budget < 0)
		return -EIO;

	while (rx_budget--) {
		data = kzalloc(mqcdev->mtu + sizeof(*ctrlbuf), GFP_KERNEL);
		if (!data)
			return -ENOMEM;

		ctrlbuf = data + mqcdev->mtu;
		ctrlbuf->odata = data;

		ret = mhi_queue_buf(mhi_dev, DMA_FROM_DEVICE, data, mqcdev->mtu, MHI_EOT);
		if (ret) {
			kfree(data);
			dev_err(&mhi_dev->dev, "Failed to queue buffer\n");
			return ret;
		}
	}

	return ret;
}

static int mhi_qaic_ctrl_dev_start_chan(struct mqc_dev *mqcdev)
{
	struct device *dev = &mqcdev->mhi_dev->dev;
	int ret = 0;

	ret = mutex_lock_interruptible(&mqcdev->lock);
	if (ret)
		return ret;
	if (!mqcdev->enabled) {
		ret = -ENODEV;
		goto release_dev_lock;
	}
	if (!mqcdev->open_count) {
		ret = mhi_prepare_for_transfer(mqcdev->mhi_dev);
		if (ret) {
			dev_err(dev, "Error starting transfer channels\n");
			goto release_dev_lock;
		}

		ret = mhi_qaic_ctrl_fill_dl_queue(mqcdev);
		if (ret) {
			dev_err(dev, "Error filling download queue.\n");
			goto mhi_unprepare;
		}
	}
	mqcdev->open_count++;
	mutex_unlock(&mqcdev->lock);

	return 0;

mhi_unprepare:
	mhi_unprepare_from_transfer(mqcdev->mhi_dev);
release_dev_lock:
	mutex_unlock(&mqcdev->lock);
	return ret;
}

static struct mqc_dev *mqc_dev_get_by_minor(unsigned int minor)
{
	struct mqc_dev *mqcdev;

	xa_lock(&mqc_xa);
	mqcdev = xa_load(&mqc_xa, minor);
	if (mqcdev)
		kref_get(&mqcdev->ref_count);
	xa_unlock(&mqc_xa);

	return mqcdev;
}

static int mhi_qaic_ctrl_open(struct inode *inode, struct file *filp)
{
	struct mqc_dev *mqcdev;
	int ret;

	mqcdev = mqc_dev_get_by_minor(iminor(inode));
	if (!mqcdev) {
		pr_debug("mqc: minor %d not found\n", iminor(inode));
		return -EINVAL;
	}

	ret = mhi_qaic_ctrl_dev_start_chan(mqcdev);
	if (ret) {
		kref_put(&mqcdev->ref_count, mqc_dev_release);
		return ret;
	}

	filp->private_data = mqcdev;

	return 0;
}

static void mhi_qaic_ctrl_buf_free(struct mqc_buf *ctrlbuf)
{
	list_del(&ctrlbuf->node);
	kfree(ctrlbuf->odata);
}

static void __mhi_qaic_ctrl_release(struct mqc_dev *mqcdev)
{
	struct mqc_buf *ctrlbuf, *tmp;

	mhi_unprepare_from_transfer(mqcdev->mhi_dev);
	wake_up_interruptible(&mqcdev->ul_wq);
	wake_up_interruptible(&mqcdev->dl_wq);
	/*
	 * Free the dl_queue. As we have already unprepared mhi transfers, we
	 * do not expect any callback functions that update dl_queue hence no need
	 * to grab dl_queue lock.
	 */
	mutex_lock(&mqcdev->read_lock);
	list_for_each_entry_safe(ctrlbuf, tmp, &mqcdev->dl_queue, node)
		mhi_qaic_ctrl_buf_free(ctrlbuf);
	mutex_unlock(&mqcdev->read_lock);
}

static int mhi_qaic_ctrl_release(struct inode *inode, struct file *file)
{
	struct mqc_dev *mqcdev = file->private_data;

	mutex_lock(&mqcdev->lock);
	mqcdev->open_count--;
	if (!mqcdev->open_count && mqcdev->enabled)
		__mhi_qaic_ctrl_release(mqcdev);
	mutex_unlock(&mqcdev->lock);

	kref_put(&mqcdev->ref_count, mqc_dev_release);

	return 0;
}

static __poll_t mhi_qaic_ctrl_poll(struct file *file, poll_table *wait)
{
	struct mqc_dev *mqcdev = file->private_data;
	struct mhi_device *mhi_dev;
	__poll_t mask = 0;

	mhi_dev = mqcdev->mhi_dev;

	poll_wait(file, &mqcdev->ul_wq, wait);
	poll_wait(file, &mqcdev->dl_wq, wait);

	mutex_lock(&mqcdev->lock);
	if (!mqcdev->enabled) {
		mutex_unlock(&mqcdev->lock);
		return EPOLLERR;
	}

	spin_lock_bh(&mqcdev->dl_queue_lock);
	if (!list_empty(&mqcdev->dl_queue))
		mask |= EPOLLIN | EPOLLRDNORM;
	spin_unlock_bh(&mqcdev->dl_queue_lock);

	if (mutex_lock_interruptible(&mqcdev->write_lock)) {
		mutex_unlock(&mqcdev->lock);
		return EPOLLERR;
	}
	if (mhi_get_free_desc_count(mhi_dev, DMA_TO_DEVICE) > 0)
		mask |= EPOLLOUT | EPOLLWRNORM;
	mutex_unlock(&mqcdev->write_lock);
	mutex_unlock(&mqcdev->lock);

	dev_dbg(&mhi_dev->dev, "Client attempted to poll, returning mask 0x%x\n", mask);

	return mask;
}

static int mhi_qaic_ctrl_tx(struct mqc_dev *mqcdev)
{
	int ret;

	ret = wait_event_interruptible(mqcdev->ul_wq, !mqcdev->enabled ||
				       mhi_get_free_desc_count(mqcdev->mhi_dev, DMA_TO_DEVICE) > 0);

	if (!mqcdev->enabled)
		return -ENODEV;

	return ret;
}

static ssize_t mhi_qaic_ctrl_write(struct file *file, const char __user *buf, size_t count,
				   loff_t *offp)
{
	struct mqc_dev *mqcdev = file->private_data;
	struct mhi_device *mhi_dev;
	size_t bytes_xfered = 0;
	struct device *dev;
	int ret, nr_desc;

	mhi_dev = mqcdev->mhi_dev;
	dev = &mhi_dev->dev;

	if (!mhi_dev->ul_chan)
		return -EOPNOTSUPP;

	if (!buf || !count)
		return -EINVAL;

	dev_dbg(dev, "Request to transfer %zu bytes\n", count);

	ret = mhi_qaic_ctrl_tx(mqcdev);
	if (ret)
		return ret;

	if (mutex_lock_interruptible(&mqcdev->write_lock))
		return -EINTR;

	nr_desc = mhi_get_free_desc_count(mhi_dev, DMA_TO_DEVICE);
	if (nr_desc * mqcdev->mtu < count) {
		ret = -EMSGSIZE;
		dev_dbg(dev, "Buffer too big to transfer\n");
		goto unlock_mutex;
	}

	while (count != bytes_xfered) {
		enum mhi_flags flags;
		size_t to_copy;
		void *kbuf;

		to_copy = min_t(size_t, count - bytes_xfered, mqcdev->mtu);
		kbuf = kmalloc(to_copy, GFP_KERNEL);
		if (!kbuf) {
			ret = -ENOMEM;
			goto unlock_mutex;
		}

		ret = copy_from_user(kbuf, buf + bytes_xfered, to_copy);
		if (ret) {
			kfree(kbuf);
			ret = -EFAULT;
			goto unlock_mutex;
		}

		if (bytes_xfered + to_copy == count)
			flags = MHI_EOT;
		else
			flags = MHI_CHAIN;

		ret = mhi_queue_buf(mhi_dev, DMA_TO_DEVICE, kbuf, to_copy, flags);
		if (ret) {
			kfree(kbuf);
			dev_err(dev, "Failed to queue buf of size %zu\n", to_copy);
			goto unlock_mutex;
		}

		bytes_xfered += to_copy;
	}

	mutex_unlock(&mqcdev->write_lock);
	dev_dbg(dev, "bytes xferred: %zu\n", bytes_xfered);

	return bytes_xfered;

unlock_mutex:
	mutex_unlock(&mqcdev->write_lock);
	return ret;
}

static int mhi_qaic_ctrl_rx(struct mqc_dev *mqcdev)
{
	int ret;

	ret = wait_event_interruptible(mqcdev->dl_wq,
				       !mqcdev->enabled || !list_empty(&mqcdev->dl_queue));

	if (!mqcdev->enabled)
		return -ENODEV;

	return ret;
}

static ssize_t mhi_qaic_ctrl_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
{
	struct mqc_dev *mqcdev = file->private_data;
	struct mqc_buf *ctrlbuf;
	size_t to_copy;
	int ret;

	if (!mqcdev->mhi_dev->dl_chan)
		return -EOPNOTSUPP;

	ret = mhi_qaic_ctrl_rx(mqcdev);
	if (ret)
		return ret;

	if (mutex_lock_interruptible(&mqcdev->read_lock))
		return -EINTR;

	ctrlbuf = list_first_entry_or_null(&mqcdev->dl_queue, struct mqc_buf, node);
	if (!ctrlbuf) {
		mutex_unlock(&mqcdev->read_lock);
		ret = -ENODEV;
		goto error_out;
	}

	to_copy = min_t(size_t, count, ctrlbuf->len);
	if (copy_to_user(buf, ctrlbuf->data, to_copy)) {
		mutex_unlock(&mqcdev->read_lock);
		dev_dbg(&mqcdev->mhi_dev->dev, "Failed to copy data to user buffer\n");
		ret = -EFAULT;
		goto error_out;
	}

	ctrlbuf->len -= to_copy;
	ctrlbuf->data += to_copy;

	if (!ctrlbuf->len) {
		spin_lock_bh(&mqcdev->dl_queue_lock);
		mhi_qaic_ctrl_buf_free(ctrlbuf);
		spin_unlock_bh(&mqcdev->dl_queue_lock);
		mhi_qaic_ctrl_fill_dl_queue(mqcdev);
		dev_dbg(&mqcdev->mhi_dev->dev, "Read buf freed\n");
	}

	mutex_unlock(&mqcdev->read_lock);
	return to_copy;

error_out:
	mutex_unlock(&mqcdev->read_lock);
	return ret;
}

static const struct file_operations mhidev_fops = {
	.owner = THIS_MODULE,
	.open = mhi_qaic_ctrl_open,
	.release = mhi_qaic_ctrl_release,
	.read = mhi_qaic_ctrl_read,
	.write = mhi_qaic_ctrl_write,
	.poll = mhi_qaic_ctrl_poll,
};

static void mhi_qaic_ctrl_ul_xfer_cb(struct mhi_device *mhi_dev, struct mhi_result *mhi_result)
{
	struct mqc_dev *mqcdev = dev_get_drvdata(&mhi_dev->dev);

	dev_dbg(&mhi_dev->dev, "%s: status: %d xfer_len: %zu\n", __func__,
		mhi_result->transaction_status, mhi_result->bytes_xferd);

	kfree(mhi_result->buf_addr);

	if (!mhi_result->transaction_status)
		wake_up_interruptible(&mqcdev->ul_wq);
}

static void mhi_qaic_ctrl_dl_xfer_cb(struct mhi_device *mhi_dev, struct mhi_result *mhi_result)
{
	struct mqc_dev *mqcdev = dev_get_drvdata(&mhi_dev->dev);
	struct mqc_buf *ctrlbuf;

	dev_dbg(&mhi_dev->dev, "%s: status: %d receive_len: %zu\n", __func__,
		mhi_result->transaction_status, mhi_result->bytes_xferd);

	if (mhi_result->transaction_status &&
	    mhi_result->transaction_status != -EOVERFLOW) {
		kfree(mhi_result->buf_addr);
		return;
	}

	ctrlbuf = mhi_result->buf_addr + mqcdev->mtu;
	ctrlbuf->data = mhi_result->buf_addr;
	ctrlbuf->len = mhi_result->bytes_xferd;
	spin_lock_bh(&mqcdev->dl_queue_lock);
	list_add_tail(&ctrlbuf->node, &mqcdev->dl_queue);
	spin_unlock_bh(&mqcdev->dl_queue_lock);

	wake_up_interruptible(&mqcdev->dl_wq);
}

static int mhi_qaic_ctrl_probe(struct mhi_device *mhi_dev, const struct mhi_device_id *id)
{
	struct mqc_dev *mqcdev;
	struct device *dev;
	int ret;

	mqcdev = kzalloc(sizeof(*mqcdev), GFP_KERNEL);
	if (!mqcdev)
		return -ENOMEM;

	kref_init(&mqcdev->ref_count);
	mutex_init(&mqcdev->lock);
	mqcdev->mhi_dev = mhi_dev;

	ret = xa_alloc(&mqc_xa, &mqcdev->minor, mqcdev, XA_LIMIT(0, MHI_QAIC_CTRL_MAX_MINORS),
		       GFP_KERNEL);
	if (ret) {
		kfree(mqcdev);
		return ret;
	}

	init_waitqueue_head(&mqcdev->ul_wq);
	init_waitqueue_head(&mqcdev->dl_wq);
	mutex_init(&mqcdev->read_lock);
	mutex_init(&mqcdev->write_lock);
	spin_lock_init(&mqcdev->dl_queue_lock);
	INIT_LIST_HEAD(&mqcdev->dl_queue);
	mqcdev->mtu = min_t(size_t, id->driver_data, MHI_MAX_MTU);
	mqcdev->enabled = true;
	mqcdev->open_count = 0;
	dev_set_drvdata(&mhi_dev->dev, mqcdev);

	dev = device_create(mqc_dev_class, &mhi_dev->dev, MKDEV(mqc_dev_major, mqcdev->minor),
			    mqcdev, "%s", dev_name(&mhi_dev->dev));
	if (IS_ERR(dev)) {
		xa_erase(&mqc_xa, mqcdev->minor);
		dev_set_drvdata(&mhi_dev->dev, NULL);
		kfree(mqcdev);
		return PTR_ERR(dev);
	}

	return 0;
};

static void mhi_qaic_ctrl_remove(struct mhi_device *mhi_dev)
{
	struct mqc_dev *mqcdev = dev_get_drvdata(&mhi_dev->dev);

	device_destroy(mqc_dev_class, MKDEV(mqc_dev_major, mqcdev->minor));

	mutex_lock(&mqcdev->lock);
	mqcdev->enabled = false;
	if (mqcdev->open_count)
		__mhi_qaic_ctrl_release(mqcdev);
	mutex_unlock(&mqcdev->lock);

	xa_erase(&mqc_xa, mqcdev->minor);
	kref_put(&mqcdev->ref_count, mqc_dev_release);
}

/* .driver_data stores max mtu */
static const struct mhi_device_id mhi_qaic_ctrl_match_table[] = {
	{ .chan = "QAIC_SAHARA", .driver_data = SZ_32K},
	{},
};
MODULE_DEVICE_TABLE(mhi, mhi_qaic_ctrl_match_table);

static struct mhi_driver mhi_qaic_ctrl_driver = {
	.id_table = mhi_qaic_ctrl_match_table,
	.remove = mhi_qaic_ctrl_remove,
	.probe = mhi_qaic_ctrl_probe,
	.ul_xfer_cb = mhi_qaic_ctrl_ul_xfer_cb,
	.dl_xfer_cb = mhi_qaic_ctrl_dl_xfer_cb,
	.driver = {
		.name = MHI_QAIC_CTRL_DRIVER_NAME,
	},
};

int mhi_qaic_ctrl_init(void)
{
	int ret;

	ret = register_chrdev(0, MHI_QAIC_CTRL_DRIVER_NAME, &mhidev_fops);
	if (ret < 0)
		return ret;

	mqc_dev_major = ret;
	mqc_dev_class = class_create(THIS_MODULE, MHI_QAIC_CTRL_DRIVER_NAME);
	if (IS_ERR(mqc_dev_class)) {
		ret = PTR_ERR(mqc_dev_class);
		goto unregister_chrdev;
	}

	ret = mhi_driver_register(&mhi_qaic_ctrl_driver);
	if (ret)
		goto destroy_class;

	return 0;

destroy_class:
	class_destroy(mqc_dev_class);
unregister_chrdev:
	unregister_chrdev(mqc_dev_major, MHI_QAIC_CTRL_DRIVER_NAME);
	return ret;
}

void mhi_qaic_ctrl_deinit(void)
{
	mhi_driver_unregister(&mhi_qaic_ctrl_driver);
	class_destroy(mqc_dev_class);
	unregister_chrdev(mqc_dev_major, MHI_QAIC_CTRL_DRIVER_NAME);
	xa_destroy(&mqc_xa);
}