aboutsummaryrefslogtreecommitdiffstats
path: root/virtio_loopback_device.c
blob: e0b19a62036c1ada4d9bf416c48f0f655927e042 (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
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
// SPDX-License-Identifier: GPL-2.0-or-later
/*
 * Based on virtio_mmio.c
 *   Copyright 2011-2014, ARM Ltd.
 *
 * Copyright 2022-2024 Virtual Open Systems SAS
 *
 * 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 */

#define pr_fmt(fmt) "virtio-loopback-transport: " fmt

/* Loopback header file */
#include "virtio_loopback_driver.h"

static void print_neg_flag(uint64_t neg_flag, bool read)
{
	if (read)
		pr_debug("Read:\n");
	else
		pr_debug("Write:\n");

	switch (neg_flag) {
	case VIRTIO_MMIO_MAGIC_VALUE:			//0x000
		pr_debug("\tVIRTIO_MMIO_MAGIC_VALUE\n");
		break;
	case VIRTIO_MMIO_VERSION:				//0x004
		pr_debug("\tVIRTIO_MMIO_VERSION\n");
		break;
	case VIRTIO_MMIO_DEVICE_ID:				//0x008
		pr_debug("\tVIRTIO_MMIO_DEVICE_ID\n");
		break;
	case VIRTIO_MMIO_VENDOR_ID:				//0x00c
		pr_debug("\tVIRTIO_MMIO_VENDOR_ID\n");
		break;
	case VIRTIO_MMIO_DEVICE_FEATURES:		//0x010
		pr_debug("\tVIRTIO_MMIO_DEVICE_FEATURES\n");
		break;
	case VIRTIO_MMIO_DEVICE_FEATURES_SEL:	//0x014
		pr_debug("\tVIRTIO_MMIO_DEVICE_FEATURES_SEL\n");
		break;
	case VIRTIO_MMIO_DRIVER_FEATURES:		//0x020
		pr_debug("\tVIRTIO_MMIO_DRIVER_FEATURES\n");
		break;
	case VIRTIO_MMIO_DRIVER_FEATURES_SEL:	//0x024
		pr_debug("\tVIRTIO_MMIO_DRIVER_FEATURES_SEL\n");
		break;
	case VIRTIO_MMIO_GUEST_PAGE_SIZE:		//0x028
		pr_debug("\tVIRTIO_MMIO_GUEST_PAGE_SIZE\n");
		break;
	case VIRTIO_MMIO_QUEUE_SEL:				//0x030
		pr_debug("\tVIRTIO_MMIO_QUEUE_SEL\n");
		break;
	case VIRTIO_MMIO_QUEUE_NUM_MAX:			//0x034
		pr_debug("\tVIRTIO_MMIO_QUEUE_NUM_MAX\n");
		break;
	case VIRTIO_MMIO_QUEUE_NUM:				//0x038
		pr_debug("\tVIRTIO_MMIO_QUEUE_NUM\n");
		break;
	case VIRTIO_MMIO_QUEUE_ALIGN:			//0x03c
		pr_debug("\tVIRTIO_MMIO_QUEUE_ALIGN\n");
		break;
	case VIRTIO_MMIO_QUEUE_PFN:				//0x040
		pr_debug("\tVIRTIO_MMIO_QUEUE_PFN\n");
		break;
	case VIRTIO_MMIO_QUEUE_READY:			//0x044
		pr_debug("\tVIRTIO_MMIO_QUEUE_READY\n");
		break;
	case VIRTIO_MMIO_QUEUE_NOTIFY:			//0x050
		pr_debug("\tVIRTIO_MMIO_QUEUE_NOTIFY\n");
		break;
	case VIRTIO_MMIO_INTERRUPT_STATUS:		//0x060
		pr_debug("\tVIRTIO_MMIO_INTERRUPT_STATUS\n");
		break;
	case VIRTIO_MMIO_INTERRUPT_ACK:			//0x064
		pr_debug("\tVIRTIO_MMIO_INTERRUPT_ACK\n");
		break;
	case VIRTIO_MMIO_STATUS:				//0x070
		pr_debug("\tVIRTIO_MMIO_STATUS\n");
		break;
	case VIRTIO_MMIO_QUEUE_DESC_LOW:		//0x080
		pr_debug("\tVIRTIO_MMIO_QUEUE_DESC_LOW\n");
		break;
	case VIRTIO_MMIO_QUEUE_DESC_HIGH:		//0x084
		pr_debug("\tVIRTIO_MMIO_QUEUE_DESC_HIGH\n");
		break;
	case VIRTIO_MMIO_QUEUE_AVAIL_LOW:		//0x090
		pr_debug("\tVIRTIO_MMIO_QUEUE_AVAIL_LOW\n");
		break;
	case VIRTIO_MMIO_QUEUE_AVAIL_HIGH:		//0x094
		pr_debug("\tVIRTIO_MMIO_QUEUE_AVAIL_HIGH\n");
		break;
	case VIRTIO_MMIO_QUEUE_USED_LOW:		//0x0a0
		pr_debug("\tVIRTIO_MMIO_QUEUE_USED_LOW\n");
		break;
	case VIRTIO_MMIO_QUEUE_USED_HIGH:		//0x0a4
		pr_debug("\tVIRTIO_MMIO_QUEUE_USED_HIGH\n");
		break;
	case VIRTIO_MMIO_SHM_SEL:				//0x0ac
		pr_debug("\tVIRTIO_MMIO_SHM_SEL\n");
		break;
	case VIRTIO_MMIO_SHM_LEN_LOW:			//0x0b0
		pr_debug("\tVIRTIO_MMIO_SHM_LEN_LOW\n");
		break;
	case VIRTIO_MMIO_SHM_LEN_HIGH:			//0x0b4
		pr_debug("\tVIRTIO_MMIO_SHM_LEN_HIGH\n");
		break;
	case VIRTIO_MMIO_SHM_BASE_LOW:			//0x0b8
		pr_debug("\tVIRTIO_MMIO_SHM_BASE_LOW\n");
		break;
	case VIRTIO_MMIO_SHM_BASE_HIGH:			//0x0bc
		pr_debug("\tVIRTIO_MMIO_SHM_BASE_HIGH\n");
		break;
	case VIRTIO_MMIO_CONFIG_GENERATION:		//0x0fc
		pr_debug("\tVIRTIO_MMIO_CONFIG_GENERATION\n");
		break;
	default:
		if (neg_flag >= VIRTIO_MMIO_CONFIG)
			pr_debug("\tVIRTIO_MMIO_CONFIG\n");
		else
			pr_debug("\tNegotiation flag Unknown: %lld\n", neg_flag);
		return;
	}
}

/*
 * Print the pdev:
 *
 *static void print_virtio_pdev(struct platform_device *pdev)
 *{
 *	int i;
 *
 *	pr_info("Print the pdev:\n");
 *	pr_info("\t.name = %s\n", pdev->name);
 *	pr_info("\t.id = %d\n", pdev->id);
 *	pr_info("\t.num_resources = %d\n", pdev->num_resources);
 *
 *	for (i=0; i < pdev->num_resources; i++) {
 *		pr_info("\t.num_resource = %d\n", i);
 *		pr_info("\t\t.start = 0x%llx\n", pdev->resource[i].start);
 *		pr_info("\t\t.end = 0x%llx\n", pdev->resource[i].end);
 *		pr_info("\t\t.flags = 0x%lx\n", pdev->resource[i].flags);
 *	}
 *}
 *
 *Result:
 *
 *	.name = a003e00.virtio_loopback
 *	.id = -1
 *	.num_resources = 2
 *	.num_resource = 0
 *		.start = 0xa003e00
 *		.end = 0xa003fff
 *		.flags = 0x200
 *	.num_resource = 1
 *		.start = 0x2c
 *		.end = 0x2c
 *		.flags = 0x401
 */

/* function declaration */
static uint64_t read_adapter(uint64_t fn_id, uint64_t size, struct device_data *dev_data);
static void write_adapter(uint64_t data, uint64_t fn_id, uint64_t size, struct device_data *dev_data);

/* Configuration interface */
static u64 vl_get_features(struct virtio_device *vdev)
{
	struct virtio_loopback_device *vl_dev = to_virtio_loopback_device(vdev, vdev);
	struct device_data *data = vl_dev->data;
	u64 features;

	/* Take feature bits 0-31 */
	write_adapter(1, VIRTIO_MMIO_DEVICE_FEATURES_SEL, 4, data);
	features = read_adapter(VIRTIO_MMIO_DEVICE_FEATURES, 4, data);
	features <<= 32;

	/* Take feature bits 32-63 */
	write_adapter(0, VIRTIO_MMIO_DEVICE_FEATURES_SEL, 4, data);
	features |= read_adapter(VIRTIO_MMIO_DEVICE_FEATURES, 4, data);

	return features;
}

static int vl_finalize_features(struct virtio_device *vdev)
{
	struct virtio_loopback_device *vl_dev = to_virtio_loopback_device(vdev, vdev);
	struct device_data *data = vl_dev->data;

	/* Give virtio_ring a chance to accept features. */
	vring_transport_features(vdev);

	/* Make sure there are no mixed devices */
	if (vl_dev->version == 2 &&
		!__virtio_test_bit(vdev, VIRTIO_F_VERSION_1)) {
		dev_err(&vdev->dev, "New virtio-loopback devices (version 2) "
				"must provide VIRTIO_F_VERSION_1 feature!\n");
		return -EINVAL;
	}

	write_adapter(1, VIRTIO_MMIO_DRIVER_FEATURES_SEL, 4, data);
	write_adapter((u32)(vdev->features >> 32), VIRTIO_MMIO_DRIVER_FEATURES, 4, data);

	write_adapter(0, VIRTIO_MMIO_DRIVER_FEATURES_SEL, 4, data);
	write_adapter((u32)vdev->features, VIRTIO_MMIO_DRIVER_FEATURES, 4, data);

	return 0;
}

static void vl_get(struct virtio_device *vdev, unsigned int offset,
				   void *buf, unsigned int len)
{
	struct virtio_loopback_device *vl_dev = to_virtio_loopback_device(vdev, vdev);
	struct device_data *data = vl_dev->data;

	u8 b;
	__le16 w;
	__le32 l;

	if (vl_dev->version == 1) {
		u8 *ptr = buf;
		int i;

		for (i = 0; i < len; i++)
			ptr[i] = read_adapter(VIRTIO_MMIO_CONFIG + offset + i, 1, data);
		return;
	}

	switch (len) {
	case 1:
		b = read_adapter(VIRTIO_MMIO_CONFIG + offset, 1, data);
		memcpy(buf, &b, sizeof(b));
		break;
	case 2:
		w = cpu_to_le16(read_adapter(VIRTIO_MMIO_CONFIG + offset, 2, data));
		memcpy(buf, &w, sizeof(w));
		break;
	case 4:
		l = cpu_to_le32(read_adapter(VIRTIO_MMIO_CONFIG + offset, 4, data));
		memcpy(buf, &l, sizeof(l));
		break;
	case 8:
		l = cpu_to_le32(read_adapter(VIRTIO_MMIO_CONFIG + offset, 4, data));
		memcpy(buf, &l, sizeof(l));
		l = cpu_to_le32(read_adapter(VIRTIO_MMIO_CONFIG + offset + sizeof(l), 4, data));
		memcpy(buf + sizeof(l), &l, sizeof(l));
		break;
	default:
		BUG();
	}
}

static void vl_set(struct virtio_device *vdev, unsigned int offset,
					const void *buf, unsigned int len)
{
	struct virtio_loopback_device *vl_dev = to_virtio_loopback_device(vdev, vdev);
	struct device_data *data = vl_dev->data;

	u8 b;
	__le16 w;
	__le32 l;

	if (vl_dev->version == 1) {
		const u8 *ptr = buf;
		int i;

		for (i = 0; i < len; i++)
			write_adapter(ptr[i], VIRTIO_MMIO_CONFIG + offset + i, 1, data);

		return;
	}

	switch (len) {
	case 1:
		memcpy(&b, buf, sizeof(b));
		write_adapter(b, VIRTIO_MMIO_CONFIG + offset, 1, data);
		break;
	case 2:
		memcpy(&w, buf, sizeof(w));
		write_adapter(le16_to_cpu(w), VIRTIO_MMIO_CONFIG + offset, 2, data);
		break;
	case 4:
		memcpy(&l, buf, sizeof(l));
		write_adapter(le32_to_cpu(l), VIRTIO_MMIO_CONFIG + offset, 4, data);
		break;
	case 8:
		memcpy(&l, buf, sizeof(l));
		write_adapter(le32_to_cpu(l), VIRTIO_MMIO_CONFIG + offset, 4, data);
		memcpy(&l, buf + sizeof(l), sizeof(l));
		write_adapter(le32_to_cpu(l), VIRTIO_MMIO_CONFIG + offset + sizeof(l), 4, data);
		break;
	default:
		BUG();
	}
}

static u32 vl_generation(struct virtio_device *vdev)
{
	struct virtio_loopback_device *vl_dev = to_virtio_loopback_device(vdev, vdev);
	struct device_data *data = vl_dev->data;

	if (vl_dev->version == 1)
		return 0;
	else
		return read_adapter(VIRTIO_MMIO_CONFIG_GENERATION, 4, data);
}

static u8 vl_get_status(struct virtio_device *vdev)
{
	struct virtio_loopback_device *vl_dev = to_virtio_loopback_device(vdev, vdev);
	struct device_data *data = vl_dev->data;

	return read_adapter(VIRTIO_MMIO_STATUS, 4, data) & 0xff;
}

static void vl_set_status(struct virtio_device *vdev, u8 status)
{
	struct virtio_loopback_device *vl_dev = to_virtio_loopback_device(vdev, vdev);
	struct device_data *data = vl_dev->data;

	write_adapter(status, VIRTIO_MMIO_STATUS, 4, data);
}

static void vl_reset(struct virtio_device *vdev)
{
	struct virtio_loopback_device *vl_dev = to_virtio_loopback_device(vdev, vdev);
	struct device_data *data = vl_dev->data;

	/* 0 status means a reset. */
	write_adapter(0, VIRTIO_MMIO_STATUS, 4, data);
}

/* Notify work handling function */
static void notify_work_handler(struct work_struct *work)
{
	struct virtio_loopback_device *vl_dev = to_virtio_loopback_device(work, notify_work);
	struct device_data *dev_data = vl_dev->data;
	struct notify_data *entry, *tmp;
	uint32_t index;

	spin_lock(&vl_dev->notify_q_lock);
	list_for_each_entry_safe(entry, tmp, &vl_dev->notify_list, list) {
		index = entry->index;
		list_del(&entry->list);
		kfree(entry);
		/* Proceed in dispatching the notification to the adapter */
		spin_unlock(&vl_dev->notify_q_lock);
		write_adapter(index, VIRTIO_MMIO_QUEUE_NOTIFY, 4, dev_data);
		spin_lock(&vl_dev->notify_q_lock);
	}
	spin_unlock(&vl_dev->notify_q_lock);
}

/* The notify function used when creating a virtqueue */
static bool vl_notify(struct virtqueue *vq)
{
	struct virtio_loopback_device *vl_dev = to_virtio_loopback_device(vq->vdev, vdev);
	struct notify_data *data;
	int ret = 1;

	/* Create the new node */
	data = kmalloc(sizeof(struct notify_data), GFP_ATOMIC);
	if (!data)
		return false;

	data->index = vq->index;
	INIT_LIST_HEAD(&data->list);

	/* Add in the notify_list, which should be protected! */
	spin_lock(&vl_dev->notify_q_lock);
	list_add_tail(&data->list, &vl_dev->notify_list);
	spin_unlock(&vl_dev->notify_q_lock);

	/* Schedule the element */
	while (ret) {
		/* Force scheduling if queue_work fails and list is not empty */
		ret = !queue_work(loopback_data.notify_workqueue, &vl_dev->notify_work);
		spin_lock(&vl_dev->notify_q_lock);
		ret &= !list_empty(&vl_dev->notify_list);
		spin_unlock(&vl_dev->notify_q_lock);
	}

	return true;
}

/* the interrupt function used when receiving an IRQ */
bool vl_interrupt(struct virtio_loopback_device *vl_dev, int irq)
{
	struct device_data *data = vl_dev->data;
	struct virtio_loopback_vq_info *info;
	unsigned long status;

	pr_debug("Received interrupt!\n");
	/* STATUS and ACK should be done without any intermediate status change */
	/* Read and acknowledge interrupts */
	status = read_adapter(VIRTIO_MMIO_INTERRUPT_STATUS, 4, data);
	write_adapter(status, VIRTIO_MMIO_INTERRUPT_ACK, 4, data);

	if (unlikely(status & VIRTIO_MMIO_INT_CONFIG))
		virtio_config_changed(&vl_dev->vdev);

	if (likely(status & VIRTIO_MMIO_INT_VRING)) {
		spin_lock(&vl_dev->lock);
		list_for_each_entry(info, &vl_dev->virtqueues, node) {
			(void)vring_interrupt(irq, info->vq);
		}
		spin_unlock(&vl_dev->lock);
	}

	return true;
}

static void vl_del_vq(struct virtqueue *vq)
{
	struct virtio_loopback_device *vl_dev = to_virtio_loopback_device(vq->vdev, vdev);
	struct device_data *data = vl_dev->data;

	struct virtio_loopback_vq_info *info = vq->priv;
	unsigned long flags;
	unsigned int index = vq->index;

	spin_lock_irqsave(&vl_dev->lock, flags);
	list_del(&info->node);
	spin_unlock_irqrestore(&vl_dev->lock, flags);

	/* Select and deactivate the queue */
	write_adapter(index, VIRTIO_MMIO_QUEUE_SEL, 4, data);

	if (vl_dev->version == 1) {
		write_adapter(0, VIRTIO_MMIO_QUEUE_PFN, 4, data);
	} else {
		write_adapter(0, VIRTIO_MMIO_QUEUE_READY, 4, data);
		WARN_ON(read_adapter(VIRTIO_MMIO_QUEUE_READY, 4, data));
	}

	vring_del_virtqueue(vq);
	kfree(info);
}

static void vl_del_vqs(struct virtio_device *vdev)
{
	struct virtqueue *vq, *n;

	list_for_each_entry_safe(vq, n, &vdev->vqs, list)
		vl_del_vq(vq);
}

static struct virtqueue *vl_setup_vq(struct virtio_device *vdev, unsigned int index,
				  void (*callback)(struct virtqueue *vq),
				  const char *name, bool ctx)
{
	struct virtio_loopback_device *vl_dev = to_virtio_loopback_device(vdev, vdev);
	struct device_data *data = vl_dev->data;
	struct virtio_loopback_vq_info *info;
	struct virtqueue *vq;
	unsigned long flags;
	unsigned int num;
	int err;

	if (!name)
		return NULL;

	/* Select the queue we're interested in */
	write_adapter(index, VIRTIO_MMIO_QUEUE_SEL, 4, data);

	/* Queue shouldn't already be set up. */
	if (read_adapter((vl_dev->version == 1 ?
			VIRTIO_MMIO_QUEUE_PFN : VIRTIO_MMIO_QUEUE_READY), 4, data)) {
		err = -ENOENT;
		goto error_available;
	}

	/* Allocate and fill out our active queue description */
	info = kmalloc(sizeof(*info), GFP_KERNEL);
	if (!info) {
		err = -ENOMEM;
		goto error_kmalloc;
	}

	num = read_adapter(VIRTIO_MMIO_QUEUE_NUM_MAX, 4, data);
	if (num == 0) {
		err = -ENOENT;
		goto error_new_virtqueue;
	}

	/* Create the vring */
	vq = vring_create_virtqueue(index, num, VIRTIO_MMIO_VRING_ALIGN, vdev,
					 true, true, ctx, vl_notify, callback, name);
	if (!vq) {
		err = -ENOMEM;
		goto error_new_virtqueue;
	}

#if LINUX_VERSION_CODE > KERNEL_VERSION(6, 0, 0)
	vq->num_max = num;
#endif

	/* Activate the queue */
	write_adapter(virtqueue_get_vring_size(vq), VIRTIO_MMIO_QUEUE_NUM, 4, data);
	if (vl_dev->version == 1) {
		u64 q_pfn = virtqueue_get_desc_addr(vq);

		q_pfn = q_pfn >> PAGE_SHIFT;

		/* Copy the physical address and enable the mmap */
		data->vq_data.vq_pfn = q_pfn;
		data->vq_data.vq_pfns[data->vq_data.vq_index++] = q_pfn;

		/*
		 * virtio-loopback v1 uses a 32bit QUEUE PFN. If we have something
		 * that doesn't fit in 32bit, fail the setup rather than
		 * pretending to be successful.
		 */
		if (q_pfn >> 32) {
			dev_err(&vdev->dev,
				"platform bug: legacy virtio-loopback must not "
				"be used with RAM above 0x%llxGB\n",
				0x1ULL << (32 + PAGE_SHIFT - 30));
			err = -E2BIG;
			goto error_bad_pfn;
		}

		write_adapter(PAGE_SIZE, VIRTIO_MMIO_QUEUE_ALIGN, 4, data);
		write_adapter(q_pfn, VIRTIO_MMIO_QUEUE_PFN, 4, data);
	} else {
		u64 addr;

		addr = virtqueue_get_desc_addr(vq);
		write_adapter((u32)addr, VIRTIO_MMIO_QUEUE_DESC_LOW, 4, data);
		write_adapter((u32)(addr >> 32), VIRTIO_MMIO_QUEUE_DESC_HIGH, 4, data);

		addr = virtqueue_get_avail_addr(vq);
		write_adapter((u32)addr, VIRTIO_MMIO_QUEUE_AVAIL_LOW, 4, data);
		write_adapter((u32)(addr >> 32), VIRTIO_MMIO_QUEUE_AVAIL_HIGH, 4, data);

		addr = virtqueue_get_used_addr(vq);
		write_adapter((u32)addr, VIRTIO_MMIO_QUEUE_USED_LOW, 4, data);
		write_adapter((u32)(addr >> 32), VIRTIO_MMIO_QUEUE_USED_HIGH, 4, data);

		write_adapter(1, VIRTIO_MMIO_QUEUE_READY, 4, data);
	}

	vq->priv = info;
	info->vq = vq;

	spin_lock_irqsave(&vl_dev->lock, flags);
	list_add(&info->node, &vl_dev->virtqueues);
	spin_unlock_irqrestore(&vl_dev->lock, flags);

	return vq;

error_bad_pfn:
	vring_del_virtqueue(vq);
error_new_virtqueue:
	if (vl_dev->version == 1) {
		write_adapter(0, VIRTIO_MMIO_QUEUE_PFN, 4, data);
	} else {
		write_adapter(0, VIRTIO_MMIO_QUEUE_READY, 4, data);
		WARN_ON(read_adapter(VIRTIO_MMIO_QUEUE_READY, 4, data));
	}
	kfree(info);
error_kmalloc:
error_available:
	return ERR_PTR(err);
}

#if LINUX_VERSION_CODE <= KERNEL_VERSION(6, 10, 8)
static int vl_find_vqs(struct virtio_device *vdev, unsigned int nvqs,
					   struct virtqueue *vqs[],
					   vq_callback_t *callbacks[],
					   const char * const names[],
					   const bool *ctx,
					   struct irq_affinity *desc)
{
	int i, queue_idx = 0;

	for (i = 0; i < nvqs; ++i) {
		if (!names[i]) {
			vqs[i] = NULL;
			continue;
		}

		vqs[i] = vl_setup_vq(vdev, queue_idx++, callbacks[i], names[i],
							 ctx ? ctx[i] : false);
		if (IS_ERR(vqs[i])) {
			vl_del_vqs(vdev);
			return PTR_ERR(vqs[i]);
		}
	}

	return 0;
}
#else
static int vl_find_vqs(struct virtio_device *vdev, unsigned int nvqs,
			   struct virtqueue *vqs[],
			   struct virtqueue_info vqs_info[],
			   struct irq_affinity *desc)
{
	int i, queue_idx = 0;

	for (i = 0; i < nvqs; ++i) {
		struct virtqueue_info *vqi = &vqs_info[i];

		if (!vqi->name) {
			vqs[i] = NULL;
			continue;
		}

		vqs[i] = vl_setup_vq(vdev, queue_idx++, vqi->callback,
					 vqi->name, vqi->ctx);
		if (IS_ERR(vqs[i])) {
			vl_del_vqs(vdev);
			return PTR_ERR(vqs[i]);
		}
	}

	return 0;
}
#endif

static const char *vl_bus_name(struct virtio_device *vdev)
{
	struct virtio_loopback_device *vl_dev = to_virtio_loopback_device(vdev, vdev);

	return vl_dev->pdev->name;
}

static bool vl_get_shm_region(struct virtio_device *vdev,
				  struct virtio_shm_region *region, u8 id)
{
	struct virtio_loopback_device *vl_dev = to_virtio_loopback_device(vdev, vdev);
	struct device_data *data = vl_dev->data;
	u64 len, addr;

	/* Select the region we're interested in */
	write_adapter(id, VIRTIO_MMIO_SHM_SEL, 4, data);

	/* Read the region size */
	len = (u64) read_adapter(VIRTIO_MMIO_SHM_LEN_LOW, 4, data);
	len |= (u64) read_adapter(VIRTIO_MMIO_SHM_LEN_HIGH, 4, data) << 32;

	region->len = len;

	/* Check if region length is -1. If that's the case, the shared memory
	 * region does not exist and there is no need to proceed further.
	 */
	if (len == ~(u64)0)
		return false;

	/* Read the region base address */
	addr = (u64) read_adapter(VIRTIO_MMIO_SHM_BASE_LOW, 4, data);
	addr |= (u64) read_adapter(VIRTIO_MMIO_SHM_BASE_HIGH, 4, data) << 32;

	region->addr = addr;

	return true;
}

static const struct virtio_config_ops virtio_loopback_config_ops = {
	.get				= vl_get,
	.set				= vl_set,
	.generation			= vl_generation,
	.get_status			= vl_get_status,
	.set_status			= vl_set_status,
	.reset				= vl_reset,
	.find_vqs			= vl_find_vqs,
	.del_vqs			= vl_del_vqs,
	.get_features		= vl_get_features,
	.finalize_features	= vl_finalize_features,
	.bus_name			= vl_bus_name,
	.get_shm_region		= vl_get_shm_region,
};

static void virtio_loopback_release_dev(struct device *_d)
{
	struct virtio_device *vdev = container_of(_d, struct virtio_device, dev);
	struct virtio_loopback_device *vl_dev = to_virtio_loopback_device(vdev, vdev);
	struct platform_device *pdev = vl_dev->pdev;

	devm_kfree(&pdev->dev, vl_dev);
}

/* Function to carry-out the registration of the virtio_loopback */
int loopback_register_virtio_dev(struct virtio_loopback_device *vl_dev)
{
	struct platform_device *pdev = vl_dev->pdev;
	struct device_data *data = vl_dev->data;
	unsigned long magic;
	int rc;

	/* Check magic value */
	magic = read_adapter(VIRTIO_MMIO_MAGIC_VALUE, 4, data);

	if (magic != ('v' | 'i' << 8 | 'r' << 16 | 't' << 24)) {
		dev_warn(&pdev->dev, "Wrong magic value 0x%08lx!\n", magic);
		return -ENODEV;
	}

	/* Check device version */
	vl_dev->version = read_adapter(VIRTIO_MMIO_VERSION, 4, data);

	if (vl_dev->version < 1 || vl_dev->version > 2) {
		dev_err(&pdev->dev, "Version %ld not supported!\n",
							vl_dev->version);
		return -ENXIO;
	}

	vl_dev->vdev.id.device = read_adapter(VIRTIO_MMIO_DEVICE_ID, 4, data);

	if (vl_dev->vdev.id.device == 0) {
		/*
		 * virtio-loopback device with an ID 0 is a (dummy) placeholder
		 * with no function. End probing now with no error reported.
		 */
		return -ENODEV;
	}

	vl_dev->vdev.id.vendor = read_adapter(VIRTIO_MMIO_VENDOR_ID, 4, data);

	if (vl_dev->version == 1) {
		write_adapter(PAGE_SIZE, VIRTIO_MMIO_GUEST_PAGE_SIZE, 4, data);

		rc = dma_set_mask(&pdev->dev, DMA_BIT_MASK(64));
		/*
		 * In the legacy case, ensure our coherently-allocated virtio
		 * ring will be at an address expressable as a 32-bit PFN.
		 */
		if (!rc)
			dma_set_coherent_mask(&pdev->dev,
				  DMA_BIT_MASK(32 + PAGE_SHIFT));
	} else {
		rc = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64));
	}
	if (rc)
		rc = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
	if (rc)
		dev_warn(&pdev->dev, "Failed to enable 64-bit or 32-bit DMA."
				"Trying to continue, but this might not work.\n");

	/* Register the virtio device in the system */
	rc = register_virtio_device(&vl_dev->vdev);
	if (rc)
		put_device(&vl_dev->vdev.dev);

	return 0;
}

static int virtio_loopback_probe(struct platform_device *pdev)
{
	int err;
	struct virtio_loopback_device *vl_dev;

	pr_info("Entered probe with id: %d!\n", pdev->id);
	vl_dev = devm_kzalloc(&pdev->dev, sizeof(*vl_dev), GFP_KERNEL);
	if (!vl_dev) {
		err = -ENOMEM;
		goto out;
	}

	vl_dev->vdev.dev.parent = &pdev->dev;
	vl_dev->vdev.dev.release = virtio_loopback_release_dev;
	vl_dev->vdev.config = &virtio_loopback_config_ops;
	vl_dev->pdev = pdev;
	INIT_LIST_HEAD(&vl_dev->virtqueues);
	spin_lock_init(&vl_dev->lock);
	/* Initialize the workqueue */
	INIT_WORK(&vl_dev->notify_work, notify_work_handler);
	INIT_LIST_HEAD(&vl_dev->notify_list);
	spin_lock_init(&vl_dev->notify_q_lock);

	platform_set_drvdata(pdev, vl_dev);

	/* Insert new entry data */
	err = insert_entry_data(vl_dev, pdev->id);

out:
	return err;
}

#if LINUX_VERSION_CODE > KERNEL_VERSION(6, 10, 8)
void virtio_loopback_remove(struct platform_device *pdev)
#else
int virtio_loopback_remove(struct platform_device *pdev)
#endif
{
	struct virtio_loopback_device *vl_dev = platform_get_drvdata(pdev);

	if (vl_dev->data) {
		unregister_virtio_device(&vl_dev->vdev);
		pr_info("unregister_virtio_device!\n");
		/* Proceed to de-activating the data for this entry */
		vl_dev->data = NULL;
	}

#if LINUX_VERSION_CODE <= KERNEL_VERSION(6, 10, 8)
	return 0;
#endif
}

/* No need of DTS and ACPI */
struct platform_driver virtio_loopback_driver = {
	.probe	 = virtio_loopback_probe,
	.remove	 = virtio_loopback_remove,
	.driver	 = {
		.name   = "loopback-transport",
	},
};

static uint64_t read_adapter(uint64_t fn_id, uint64_t size, struct device_data *dev_data)
{
	uint64_t result;

	mutex_lock(&(dev_data)->read_write_lock);

	/*
	 * By enabling the following line all
	 * read messages will be printed:
	 *
	 * print_neg_flag(fn_id, 1);
	 */
	print_neg_flag(fn_id, 1);

	((struct virtio_neg *)(dev_data->info->data))->notification = fn_id;
	((struct virtio_neg *)(dev_data->info->data))->data = 0;
	((struct virtio_neg *)(dev_data->info->data))->size = size;
	((struct virtio_neg *)(dev_data->info->data))->read = true;

	atomic_set(&((struct virtio_neg *)(dev_data->info->data))->done, 0);

#if LINUX_VERSION_CODE > KERNEL_VERSION(6, 7, 12)
	eventfd_signal(dev_data->efd_ctx);
#else
	eventfd_signal(dev_data->efd_ctx, 1);
#endif

	/*
	 * There is a chance virtio-loopback adapter to call "wake_up"
	 * before the current thread sleep. This is the reason that
	 * "wait_event_timeout" is used instead of "wait_event". In this
	 * way, virtio-loopback driver will wake up even if has missed the
	 * "wake_up" kick, check the updated "done" value and return.
	 */

	while (dev_data->valid_eventfd && atomic_read(&((struct virtio_neg *)(dev_data->info->data))->done) != 1)
		wait_event_timeout(dev_data->wq, atomic_read(&((struct virtio_neg *)(dev_data->info->data))->done) == 1, 1 * HZ);

	result = ((struct virtio_neg *)(dev_data->info->data))->data;

	mutex_unlock(&(dev_data)->read_write_lock);

	return result;
}

static void write_adapter(uint64_t data, uint64_t fn_id, uint64_t size, struct device_data *dev_data)
{

	mutex_lock(&(dev_data)->read_write_lock);

	/*
	 * By enabling the following line all
	 * write messages will be printed:
	 *
	 * print_neg_flag(fn_id, 1);
	 */
	print_neg_flag(fn_id, 0);

	((struct virtio_neg *)(dev_data->info->data))->notification = fn_id;
	((struct virtio_neg *)(dev_data->info->data))->data = data;
	((struct virtio_neg *)(dev_data->info->data))->size = size;
	((struct virtio_neg *)(dev_data->info->data))->read = false;

	atomic_set(&((struct virtio_neg *)(dev_data->info->data))->done, 0);

#if LINUX_VERSION_CODE > KERNEL_VERSION(6, 7, 12)
	eventfd_signal(dev_data->efd_ctx);
#else
	eventfd_signal(dev_data->efd_ctx, 1);
#endif

	/*
	 * There is a chance virtio-loopback adapter to call "wake_up"
	 * before the current thread sleep. This is the reason that
	 * "wait_event_timeout" is used instead of "wait_event". In this
	 * way, virtio-loopback driver will wake up even if has missed the
	 * "wake_up" kick, check the updated "done" value and return.
	 */
	while (dev_data->valid_eventfd && atomic_read(&((struct virtio_neg *)(dev_data->info->data))->done) != 1)
		wait_event_timeout(dev_data->wq, atomic_read(&((struct virtio_neg *)(dev_data->info->data))->done) == 1, 1 * HZ);

	mutex_unlock(&(dev_data)->read_write_lock);
}