Loading...
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * Copyright (C) 2020 Intel Corporation
4 * Author: Johannes Berg <johannes@sipsolutions.net>
5 */
6#include <linux/module.h>
7#include <linux/pci.h>
8#include <linux/virtio.h>
9#include <linux/virtio_config.h>
10#include <linux/logic_iomem.h>
11#include <linux/of_platform.h>
12#include <linux/irqdomain.h>
13#include <linux/virtio_pcidev.h>
14#include <linux/virtio-uml.h>
15#include <linux/delay.h>
16#include <linux/msi.h>
17#include <linux/unaligned.h>
18#include <irq_kern.h>
19
20#define MAX_DEVICES 8
21#define MAX_MSI_VECTORS 32
22#define CFG_SPACE_SIZE 4096
23
24/* for MSI-X we have a 32-bit payload */
25#define MAX_IRQ_MSG_SIZE (sizeof(struct virtio_pcidev_msg) + sizeof(u32))
26#define NUM_IRQ_MSGS 10
27
28#define HANDLE_NO_FREE(ptr) ((void *)((unsigned long)(ptr) | 1))
29#define HANDLE_IS_NO_FREE(ptr) ((unsigned long)(ptr) & 1)
30
31struct um_pci_device {
32 struct virtio_device *vdev;
33
34 /* for now just standard BARs */
35 u8 resptr[PCI_STD_NUM_BARS];
36
37 struct virtqueue *cmd_vq, *irq_vq;
38
39#define UM_PCI_STAT_WAITING 0
40 unsigned long status;
41
42 int irq;
43
44 bool platform;
45};
46
47struct um_pci_device_reg {
48 struct um_pci_device *dev;
49 void __iomem *iomem;
50};
51
52static struct pci_host_bridge *bridge;
53static DEFINE_MUTEX(um_pci_mtx);
54static struct um_pci_device *um_pci_platform_device;
55static struct um_pci_device_reg um_pci_devices[MAX_DEVICES];
56static struct fwnode_handle *um_pci_fwnode;
57static struct irq_domain *um_pci_inner_domain;
58static struct irq_domain *um_pci_msi_domain;
59static unsigned long um_pci_msi_used[BITS_TO_LONGS(MAX_MSI_VECTORS)];
60
61static unsigned int um_pci_max_delay_us = 40000;
62module_param_named(max_delay_us, um_pci_max_delay_us, uint, 0644);
63
64struct um_pci_message_buffer {
65 struct virtio_pcidev_msg hdr;
66 u8 data[8];
67};
68
69static struct um_pci_message_buffer __percpu *um_pci_msg_bufs;
70
71static int um_pci_send_cmd(struct um_pci_device *dev,
72 struct virtio_pcidev_msg *cmd,
73 unsigned int cmd_size,
74 const void *extra, unsigned int extra_size,
75 void *out, unsigned int out_size)
76{
77 struct scatterlist out_sg, extra_sg, in_sg;
78 struct scatterlist *sgs_list[] = {
79 [0] = &out_sg,
80 [1] = extra ? &extra_sg : &in_sg,
81 [2] = extra ? &in_sg : NULL,
82 };
83 struct um_pci_message_buffer *buf;
84 int delay_count = 0;
85 int ret, len;
86 bool posted;
87
88 if (WARN_ON(cmd_size < sizeof(*cmd) || cmd_size > sizeof(*buf)))
89 return -EINVAL;
90
91 switch (cmd->op) {
92 case VIRTIO_PCIDEV_OP_CFG_WRITE:
93 case VIRTIO_PCIDEV_OP_MMIO_WRITE:
94 case VIRTIO_PCIDEV_OP_MMIO_MEMSET:
95 /* in PCI, writes are posted, so don't wait */
96 posted = !out;
97 WARN_ON(!posted);
98 break;
99 default:
100 posted = false;
101 break;
102 }
103
104 buf = get_cpu_var(um_pci_msg_bufs);
105 if (buf)
106 memcpy(buf, cmd, cmd_size);
107
108 if (posted) {
109 u8 *ncmd = kmalloc(cmd_size + extra_size, GFP_ATOMIC);
110
111 if (ncmd) {
112 memcpy(ncmd, cmd, cmd_size);
113 if (extra)
114 memcpy(ncmd + cmd_size, extra, extra_size);
115 cmd = (void *)ncmd;
116 cmd_size += extra_size;
117 extra = NULL;
118 extra_size = 0;
119 } else {
120 /* try without allocating memory */
121 posted = false;
122 cmd = (void *)buf;
123 }
124 } else {
125 cmd = (void *)buf;
126 }
127
128 sg_init_one(&out_sg, cmd, cmd_size);
129 if (extra)
130 sg_init_one(&extra_sg, extra, extra_size);
131 if (out)
132 sg_init_one(&in_sg, out, out_size);
133
134 /* add to internal virtio queue */
135 ret = virtqueue_add_sgs(dev->cmd_vq, sgs_list,
136 extra ? 2 : 1,
137 out ? 1 : 0,
138 posted ? cmd : HANDLE_NO_FREE(cmd),
139 GFP_ATOMIC);
140 if (ret) {
141 if (posted)
142 kfree(cmd);
143 goto out;
144 }
145
146 if (posted) {
147 virtqueue_kick(dev->cmd_vq);
148 ret = 0;
149 goto out;
150 }
151
152 /* kick and poll for getting a response on the queue */
153 set_bit(UM_PCI_STAT_WAITING, &dev->status);
154 virtqueue_kick(dev->cmd_vq);
155
156 while (1) {
157 void *completed = virtqueue_get_buf(dev->cmd_vq, &len);
158
159 if (completed == HANDLE_NO_FREE(cmd))
160 break;
161
162 if (completed && !HANDLE_IS_NO_FREE(completed))
163 kfree(completed);
164
165 if (WARN_ONCE(virtqueue_is_broken(dev->cmd_vq) ||
166 ++delay_count > um_pci_max_delay_us,
167 "um virt-pci delay: %d", delay_count)) {
168 ret = -EIO;
169 break;
170 }
171 udelay(1);
172 }
173 clear_bit(UM_PCI_STAT_WAITING, &dev->status);
174
175out:
176 put_cpu_var(um_pci_msg_bufs);
177 return ret;
178}
179
180static unsigned long um_pci_cfgspace_read(void *priv, unsigned int offset,
181 int size)
182{
183 struct um_pci_device_reg *reg = priv;
184 struct um_pci_device *dev = reg->dev;
185 struct virtio_pcidev_msg hdr = {
186 .op = VIRTIO_PCIDEV_OP_CFG_READ,
187 .size = size,
188 .addr = offset,
189 };
190 /* buf->data is maximum size - we may only use parts of it */
191 struct um_pci_message_buffer *buf;
192 u8 *data;
193 unsigned long ret = ULONG_MAX;
194 size_t bytes = sizeof(buf->data);
195
196 if (!dev)
197 return ULONG_MAX;
198
199 buf = get_cpu_var(um_pci_msg_bufs);
200 data = buf->data;
201
202 if (buf)
203 memset(data, 0xff, bytes);
204
205 switch (size) {
206 case 1:
207 case 2:
208 case 4:
209#ifdef CONFIG_64BIT
210 case 8:
211#endif
212 break;
213 default:
214 WARN(1, "invalid config space read size %d\n", size);
215 goto out;
216 }
217
218 if (um_pci_send_cmd(dev, &hdr, sizeof(hdr), NULL, 0, data, bytes))
219 goto out;
220
221 switch (size) {
222 case 1:
223 ret = data[0];
224 break;
225 case 2:
226 ret = le16_to_cpup((void *)data);
227 break;
228 case 4:
229 ret = le32_to_cpup((void *)data);
230 break;
231#ifdef CONFIG_64BIT
232 case 8:
233 ret = le64_to_cpup((void *)data);
234 break;
235#endif
236 default:
237 break;
238 }
239
240out:
241 put_cpu_var(um_pci_msg_bufs);
242 return ret;
243}
244
245static void um_pci_cfgspace_write(void *priv, unsigned int offset, int size,
246 unsigned long val)
247{
248 struct um_pci_device_reg *reg = priv;
249 struct um_pci_device *dev = reg->dev;
250 struct {
251 struct virtio_pcidev_msg hdr;
252 /* maximum size - we may only use parts of it */
253 u8 data[8];
254 } msg = {
255 .hdr = {
256 .op = VIRTIO_PCIDEV_OP_CFG_WRITE,
257 .size = size,
258 .addr = offset,
259 },
260 };
261
262 if (!dev)
263 return;
264
265 switch (size) {
266 case 1:
267 msg.data[0] = (u8)val;
268 break;
269 case 2:
270 put_unaligned_le16(val, (void *)msg.data);
271 break;
272 case 4:
273 put_unaligned_le32(val, (void *)msg.data);
274 break;
275#ifdef CONFIG_64BIT
276 case 8:
277 put_unaligned_le64(val, (void *)msg.data);
278 break;
279#endif
280 default:
281 WARN(1, "invalid config space write size %d\n", size);
282 return;
283 }
284
285 WARN_ON(um_pci_send_cmd(dev, &msg.hdr, sizeof(msg), NULL, 0, NULL, 0));
286}
287
288static const struct logic_iomem_ops um_pci_device_cfgspace_ops = {
289 .read = um_pci_cfgspace_read,
290 .write = um_pci_cfgspace_write,
291};
292
293static void um_pci_bar_copy_from(void *priv, void *buffer,
294 unsigned int offset, int size)
295{
296 u8 *resptr = priv;
297 struct um_pci_device *dev = container_of(resptr - *resptr,
298 struct um_pci_device,
299 resptr[0]);
300 struct virtio_pcidev_msg hdr = {
301 .op = VIRTIO_PCIDEV_OP_MMIO_READ,
302 .bar = *resptr,
303 .size = size,
304 .addr = offset,
305 };
306
307 memset(buffer, 0xff, size);
308
309 um_pci_send_cmd(dev, &hdr, sizeof(hdr), NULL, 0, buffer, size);
310}
311
312static unsigned long um_pci_bar_read(void *priv, unsigned int offset,
313 int size)
314{
315 /* buf->data is maximum size - we may only use parts of it */
316 struct um_pci_message_buffer *buf;
317 u8 *data;
318 unsigned long ret = ULONG_MAX;
319
320 buf = get_cpu_var(um_pci_msg_bufs);
321 data = buf->data;
322
323 switch (size) {
324 case 1:
325 case 2:
326 case 4:
327#ifdef CONFIG_64BIT
328 case 8:
329#endif
330 break;
331 default:
332 WARN(1, "invalid config space read size %d\n", size);
333 goto out;
334 }
335
336 um_pci_bar_copy_from(priv, data, offset, size);
337
338 switch (size) {
339 case 1:
340 ret = data[0];
341 break;
342 case 2:
343 ret = le16_to_cpup((void *)data);
344 break;
345 case 4:
346 ret = le32_to_cpup((void *)data);
347 break;
348#ifdef CONFIG_64BIT
349 case 8:
350 ret = le64_to_cpup((void *)data);
351 break;
352#endif
353 default:
354 break;
355 }
356
357out:
358 put_cpu_var(um_pci_msg_bufs);
359 return ret;
360}
361
362static void um_pci_bar_copy_to(void *priv, unsigned int offset,
363 const void *buffer, int size)
364{
365 u8 *resptr = priv;
366 struct um_pci_device *dev = container_of(resptr - *resptr,
367 struct um_pci_device,
368 resptr[0]);
369 struct virtio_pcidev_msg hdr = {
370 .op = VIRTIO_PCIDEV_OP_MMIO_WRITE,
371 .bar = *resptr,
372 .size = size,
373 .addr = offset,
374 };
375
376 um_pci_send_cmd(dev, &hdr, sizeof(hdr), buffer, size, NULL, 0);
377}
378
379static void um_pci_bar_write(void *priv, unsigned int offset, int size,
380 unsigned long val)
381{
382 /* maximum size - we may only use parts of it */
383 u8 data[8];
384
385 switch (size) {
386 case 1:
387 data[0] = (u8)val;
388 break;
389 case 2:
390 put_unaligned_le16(val, (void *)data);
391 break;
392 case 4:
393 put_unaligned_le32(val, (void *)data);
394 break;
395#ifdef CONFIG_64BIT
396 case 8:
397 put_unaligned_le64(val, (void *)data);
398 break;
399#endif
400 default:
401 WARN(1, "invalid config space write size %d\n", size);
402 return;
403 }
404
405 um_pci_bar_copy_to(priv, offset, data, size);
406}
407
408static void um_pci_bar_set(void *priv, unsigned int offset, u8 value, int size)
409{
410 u8 *resptr = priv;
411 struct um_pci_device *dev = container_of(resptr - *resptr,
412 struct um_pci_device,
413 resptr[0]);
414 struct {
415 struct virtio_pcidev_msg hdr;
416 u8 data;
417 } msg = {
418 .hdr = {
419 .op = VIRTIO_PCIDEV_OP_CFG_WRITE,
420 .bar = *resptr,
421 .size = size,
422 .addr = offset,
423 },
424 .data = value,
425 };
426
427 um_pci_send_cmd(dev, &msg.hdr, sizeof(msg), NULL, 0, NULL, 0);
428}
429
430static const struct logic_iomem_ops um_pci_device_bar_ops = {
431 .read = um_pci_bar_read,
432 .write = um_pci_bar_write,
433 .set = um_pci_bar_set,
434 .copy_from = um_pci_bar_copy_from,
435 .copy_to = um_pci_bar_copy_to,
436};
437
438static void __iomem *um_pci_map_bus(struct pci_bus *bus, unsigned int devfn,
439 int where)
440{
441 struct um_pci_device_reg *dev;
442 unsigned int busn = bus->number;
443
444 if (busn > 0)
445 return NULL;
446
447 /* not allowing functions for now ... */
448 if (devfn % 8)
449 return NULL;
450
451 if (devfn / 8 >= ARRAY_SIZE(um_pci_devices))
452 return NULL;
453
454 dev = &um_pci_devices[devfn / 8];
455 if (!dev)
456 return NULL;
457
458 return (void __iomem *)((unsigned long)dev->iomem + where);
459}
460
461static struct pci_ops um_pci_ops = {
462 .map_bus = um_pci_map_bus,
463 .read = pci_generic_config_read,
464 .write = pci_generic_config_write,
465};
466
467static void um_pci_rescan(void)
468{
469 pci_lock_rescan_remove();
470 pci_rescan_bus(bridge->bus);
471 pci_unlock_rescan_remove();
472}
473
474static void um_pci_irq_vq_addbuf(struct virtqueue *vq, void *buf, bool kick)
475{
476 struct scatterlist sg[1];
477
478 sg_init_one(sg, buf, MAX_IRQ_MSG_SIZE);
479 if (virtqueue_add_inbuf(vq, sg, 1, buf, GFP_ATOMIC))
480 kfree(buf);
481 else if (kick)
482 virtqueue_kick(vq);
483}
484
485static void um_pci_handle_irq_message(struct virtqueue *vq,
486 struct virtio_pcidev_msg *msg)
487{
488 struct virtio_device *vdev = vq->vdev;
489 struct um_pci_device *dev = vdev->priv;
490
491 if (!dev->irq)
492 return;
493
494 /* we should properly chain interrupts, but on ARCH=um we don't care */
495
496 switch (msg->op) {
497 case VIRTIO_PCIDEV_OP_INT:
498 generic_handle_irq(dev->irq);
499 break;
500 case VIRTIO_PCIDEV_OP_MSI:
501 /* our MSI message is just the interrupt number */
502 if (msg->size == sizeof(u32))
503 generic_handle_irq(le32_to_cpup((void *)msg->data));
504 else
505 generic_handle_irq(le16_to_cpup((void *)msg->data));
506 break;
507 case VIRTIO_PCIDEV_OP_PME:
508 /* nothing to do - we already woke up due to the message */
509 break;
510 default:
511 dev_err(&vdev->dev, "unexpected virt-pci message %d\n", msg->op);
512 break;
513 }
514}
515
516static void um_pci_cmd_vq_cb(struct virtqueue *vq)
517{
518 struct virtio_device *vdev = vq->vdev;
519 struct um_pci_device *dev = vdev->priv;
520 void *cmd;
521 int len;
522
523 if (test_bit(UM_PCI_STAT_WAITING, &dev->status))
524 return;
525
526 while ((cmd = virtqueue_get_buf(vq, &len))) {
527 if (WARN_ON(HANDLE_IS_NO_FREE(cmd)))
528 continue;
529 kfree(cmd);
530 }
531}
532
533static void um_pci_irq_vq_cb(struct virtqueue *vq)
534{
535 struct virtio_pcidev_msg *msg;
536 int len;
537
538 while ((msg = virtqueue_get_buf(vq, &len))) {
539 if (len >= sizeof(*msg))
540 um_pci_handle_irq_message(vq, msg);
541
542 /* recycle the message buffer */
543 um_pci_irq_vq_addbuf(vq, msg, true);
544 }
545}
546
547#ifdef CONFIG_OF
548/* Copied from arch/x86/kernel/devicetree.c */
549struct device_node *pcibios_get_phb_of_node(struct pci_bus *bus)
550{
551 struct device_node *np;
552
553 for_each_node_by_type(np, "pci") {
554 const void *prop;
555 unsigned int bus_min;
556
557 prop = of_get_property(np, "bus-range", NULL);
558 if (!prop)
559 continue;
560 bus_min = be32_to_cpup(prop);
561 if (bus->number == bus_min)
562 return np;
563 }
564 return NULL;
565}
566#endif
567
568static int um_pci_init_vqs(struct um_pci_device *dev)
569{
570 struct virtqueue_info vqs_info[] = {
571 { "cmd", um_pci_cmd_vq_cb },
572 { "irq", um_pci_irq_vq_cb },
573 };
574 struct virtqueue *vqs[2];
575 int err, i;
576
577 err = virtio_find_vqs(dev->vdev, 2, vqs, vqs_info, NULL);
578 if (err)
579 return err;
580
581 dev->cmd_vq = vqs[0];
582 dev->irq_vq = vqs[1];
583
584 virtio_device_ready(dev->vdev);
585
586 for (i = 0; i < NUM_IRQ_MSGS; i++) {
587 void *msg = kzalloc(MAX_IRQ_MSG_SIZE, GFP_KERNEL);
588
589 if (msg)
590 um_pci_irq_vq_addbuf(dev->irq_vq, msg, false);
591 }
592
593 virtqueue_kick(dev->irq_vq);
594
595 return 0;
596}
597
598static void __um_pci_virtio_platform_remove(struct virtio_device *vdev,
599 struct um_pci_device *dev)
600{
601 virtio_reset_device(vdev);
602 vdev->config->del_vqs(vdev);
603
604 mutex_lock(&um_pci_mtx);
605 um_pci_platform_device = NULL;
606 mutex_unlock(&um_pci_mtx);
607
608 kfree(dev);
609}
610
611static int um_pci_virtio_platform_probe(struct virtio_device *vdev,
612 struct um_pci_device *dev)
613{
614 int ret;
615
616 dev->platform = true;
617
618 mutex_lock(&um_pci_mtx);
619
620 if (um_pci_platform_device) {
621 mutex_unlock(&um_pci_mtx);
622 ret = -EBUSY;
623 goto out_free;
624 }
625
626 ret = um_pci_init_vqs(dev);
627 if (ret) {
628 mutex_unlock(&um_pci_mtx);
629 goto out_free;
630 }
631
632 um_pci_platform_device = dev;
633
634 mutex_unlock(&um_pci_mtx);
635
636 ret = of_platform_default_populate(vdev->dev.of_node, NULL, &vdev->dev);
637 if (ret)
638 __um_pci_virtio_platform_remove(vdev, dev);
639
640 return ret;
641
642out_free:
643 kfree(dev);
644 return ret;
645}
646
647static int um_pci_virtio_probe(struct virtio_device *vdev)
648{
649 struct um_pci_device *dev;
650 int i, free = -1;
651 int err = -ENOSPC;
652
653 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
654 if (!dev)
655 return -ENOMEM;
656
657 dev->vdev = vdev;
658 vdev->priv = dev;
659
660 if (of_device_is_compatible(vdev->dev.of_node, "simple-bus"))
661 return um_pci_virtio_platform_probe(vdev, dev);
662
663 mutex_lock(&um_pci_mtx);
664 for (i = 0; i < MAX_DEVICES; i++) {
665 if (um_pci_devices[i].dev)
666 continue;
667 free = i;
668 break;
669 }
670
671 if (free < 0)
672 goto error;
673
674 err = um_pci_init_vqs(dev);
675 if (err)
676 goto error;
677
678 dev->irq = irq_alloc_desc(numa_node_id());
679 if (dev->irq < 0) {
680 err = dev->irq;
681 goto err_reset;
682 }
683 um_pci_devices[free].dev = dev;
684 vdev->priv = dev;
685
686 mutex_unlock(&um_pci_mtx);
687
688 device_set_wakeup_enable(&vdev->dev, true);
689
690 /*
691 * In order to do suspend-resume properly, don't allow VQs
692 * to be suspended.
693 */
694 virtio_uml_set_no_vq_suspend(vdev, true);
695
696 um_pci_rescan();
697 return 0;
698err_reset:
699 virtio_reset_device(vdev);
700 vdev->config->del_vqs(vdev);
701error:
702 mutex_unlock(&um_pci_mtx);
703 kfree(dev);
704 return err;
705}
706
707static void um_pci_virtio_remove(struct virtio_device *vdev)
708{
709 struct um_pci_device *dev = vdev->priv;
710 int i;
711
712 if (dev->platform) {
713 of_platform_depopulate(&vdev->dev);
714 __um_pci_virtio_platform_remove(vdev, dev);
715 return;
716 }
717
718 device_set_wakeup_enable(&vdev->dev, false);
719
720 mutex_lock(&um_pci_mtx);
721 for (i = 0; i < MAX_DEVICES; i++) {
722 if (um_pci_devices[i].dev != dev)
723 continue;
724
725 um_pci_devices[i].dev = NULL;
726 irq_free_desc(dev->irq);
727
728 break;
729 }
730 mutex_unlock(&um_pci_mtx);
731
732 if (i < MAX_DEVICES) {
733 struct pci_dev *pci_dev;
734
735 pci_dev = pci_get_slot(bridge->bus, i);
736 if (pci_dev)
737 pci_stop_and_remove_bus_device_locked(pci_dev);
738 }
739
740 /* Stop all virtqueues */
741 virtio_reset_device(vdev);
742 dev->cmd_vq = NULL;
743 dev->irq_vq = NULL;
744 vdev->config->del_vqs(vdev);
745
746 kfree(dev);
747}
748
749static struct virtio_device_id id_table[] = {
750 { CONFIG_UML_PCI_OVER_VIRTIO_DEVICE_ID, VIRTIO_DEV_ANY_ID },
751 { 0 },
752};
753MODULE_DEVICE_TABLE(virtio, id_table);
754
755static struct virtio_driver um_pci_virtio_driver = {
756 .driver.name = "virtio-pci",
757 .id_table = id_table,
758 .probe = um_pci_virtio_probe,
759 .remove = um_pci_virtio_remove,
760};
761
762static struct resource virt_cfgspace_resource = {
763 .name = "PCI config space",
764 .start = 0xf0000000 - MAX_DEVICES * CFG_SPACE_SIZE,
765 .end = 0xf0000000 - 1,
766 .flags = IORESOURCE_MEM,
767};
768
769static long um_pci_map_cfgspace(unsigned long offset, size_t size,
770 const struct logic_iomem_ops **ops,
771 void **priv)
772{
773 if (WARN_ON(size > CFG_SPACE_SIZE || offset % CFG_SPACE_SIZE))
774 return -EINVAL;
775
776 if (offset / CFG_SPACE_SIZE < MAX_DEVICES) {
777 *ops = &um_pci_device_cfgspace_ops;
778 *priv = &um_pci_devices[offset / CFG_SPACE_SIZE];
779 return 0;
780 }
781
782 WARN(1, "cannot map offset 0x%lx/0x%zx\n", offset, size);
783 return -ENOENT;
784}
785
786static const struct logic_iomem_region_ops um_pci_cfgspace_ops = {
787 .map = um_pci_map_cfgspace,
788};
789
790static struct resource virt_iomem_resource = {
791 .name = "PCI iomem",
792 .start = 0xf0000000,
793 .end = 0xffffffff,
794 .flags = IORESOURCE_MEM,
795};
796
797struct um_pci_map_iomem_data {
798 unsigned long offset;
799 size_t size;
800 const struct logic_iomem_ops **ops;
801 void **priv;
802 long ret;
803};
804
805static int um_pci_map_iomem_walk(struct pci_dev *pdev, void *_data)
806{
807 struct um_pci_map_iomem_data *data = _data;
808 struct um_pci_device_reg *reg = &um_pci_devices[pdev->devfn / 8];
809 struct um_pci_device *dev;
810 int i;
811
812 if (!reg->dev)
813 return 0;
814
815 for (i = 0; i < ARRAY_SIZE(dev->resptr); i++) {
816 struct resource *r = &pdev->resource[i];
817
818 if ((r->flags & IORESOURCE_TYPE_BITS) != IORESOURCE_MEM)
819 continue;
820
821 /*
822 * must be the whole or part of the resource,
823 * not allowed to only overlap
824 */
825 if (data->offset < r->start || data->offset > r->end)
826 continue;
827 if (data->offset + data->size - 1 > r->end)
828 continue;
829
830 dev = reg->dev;
831 *data->ops = &um_pci_device_bar_ops;
832 dev->resptr[i] = i;
833 *data->priv = &dev->resptr[i];
834 data->ret = data->offset - r->start;
835
836 /* no need to continue */
837 return 1;
838 }
839
840 return 0;
841}
842
843static long um_pci_map_iomem(unsigned long offset, size_t size,
844 const struct logic_iomem_ops **ops,
845 void **priv)
846{
847 struct um_pci_map_iomem_data data = {
848 /* we want the full address here */
849 .offset = offset + virt_iomem_resource.start,
850 .size = size,
851 .ops = ops,
852 .priv = priv,
853 .ret = -ENOENT,
854 };
855
856 pci_walk_bus(bridge->bus, um_pci_map_iomem_walk, &data);
857 return data.ret;
858}
859
860static const struct logic_iomem_region_ops um_pci_iomem_ops = {
861 .map = um_pci_map_iomem,
862};
863
864static void um_pci_compose_msi_msg(struct irq_data *data, struct msi_msg *msg)
865{
866 /*
867 * This is a very low address and not actually valid 'physical' memory
868 * in UML, so we can simply map MSI(-X) vectors to there, it cannot be
869 * legitimately written to by the device in any other way.
870 * We use the (virtual) IRQ number here as the message to simplify the
871 * code that receives the message, where for now we simply trust the
872 * device to send the correct message.
873 */
874 msg->address_hi = 0;
875 msg->address_lo = 0xa0000;
876 msg->data = data->irq;
877}
878
879static struct irq_chip um_pci_msi_bottom_irq_chip = {
880 .name = "UM virtio MSI",
881 .irq_compose_msi_msg = um_pci_compose_msi_msg,
882};
883
884static int um_pci_inner_domain_alloc(struct irq_domain *domain,
885 unsigned int virq, unsigned int nr_irqs,
886 void *args)
887{
888 unsigned long bit;
889
890 WARN_ON(nr_irqs != 1);
891
892 mutex_lock(&um_pci_mtx);
893 bit = find_first_zero_bit(um_pci_msi_used, MAX_MSI_VECTORS);
894 if (bit >= MAX_MSI_VECTORS) {
895 mutex_unlock(&um_pci_mtx);
896 return -ENOSPC;
897 }
898
899 set_bit(bit, um_pci_msi_used);
900 mutex_unlock(&um_pci_mtx);
901
902 irq_domain_set_info(domain, virq, bit, &um_pci_msi_bottom_irq_chip,
903 domain->host_data, handle_simple_irq,
904 NULL, NULL);
905
906 return 0;
907}
908
909static void um_pci_inner_domain_free(struct irq_domain *domain,
910 unsigned int virq, unsigned int nr_irqs)
911{
912 struct irq_data *d = irq_domain_get_irq_data(domain, virq);
913
914 mutex_lock(&um_pci_mtx);
915
916 if (!test_bit(d->hwirq, um_pci_msi_used))
917 pr_err("trying to free unused MSI#%lu\n", d->hwirq);
918 else
919 __clear_bit(d->hwirq, um_pci_msi_used);
920
921 mutex_unlock(&um_pci_mtx);
922}
923
924static const struct irq_domain_ops um_pci_inner_domain_ops = {
925 .alloc = um_pci_inner_domain_alloc,
926 .free = um_pci_inner_domain_free,
927};
928
929static struct irq_chip um_pci_msi_irq_chip = {
930 .name = "UM virtio PCIe MSI",
931 .irq_mask = pci_msi_mask_irq,
932 .irq_unmask = pci_msi_unmask_irq,
933};
934
935static struct msi_domain_info um_pci_msi_domain_info = {
936 .flags = MSI_FLAG_USE_DEF_DOM_OPS |
937 MSI_FLAG_USE_DEF_CHIP_OPS |
938 MSI_FLAG_PCI_MSIX,
939 .chip = &um_pci_msi_irq_chip,
940};
941
942static struct resource busn_resource = {
943 .name = "PCI busn",
944 .start = 0,
945 .end = 0,
946 .flags = IORESOURCE_BUS,
947};
948
949static int um_pci_map_irq(const struct pci_dev *pdev, u8 slot, u8 pin)
950{
951 struct um_pci_device_reg *reg = &um_pci_devices[pdev->devfn / 8];
952
953 if (WARN_ON(!reg->dev))
954 return -EINVAL;
955
956 /* Yes, we map all pins to the same IRQ ... doesn't matter for now. */
957 return reg->dev->irq;
958}
959
960void *pci_root_bus_fwnode(struct pci_bus *bus)
961{
962 return um_pci_fwnode;
963}
964
965static long um_pci_map_platform(unsigned long offset, size_t size,
966 const struct logic_iomem_ops **ops,
967 void **priv)
968{
969 if (!um_pci_platform_device)
970 return -ENOENT;
971
972 *ops = &um_pci_device_bar_ops;
973 *priv = &um_pci_platform_device->resptr[0];
974
975 return offset;
976}
977
978static const struct logic_iomem_region_ops um_pci_platform_ops = {
979 .map = um_pci_map_platform,
980};
981
982static struct resource virt_platform_resource = {
983 .name = "platform",
984 .start = 0x10000000,
985 .end = 0x1fffffff,
986 .flags = IORESOURCE_MEM,
987};
988
989static int __init um_pci_init(void)
990{
991 struct irq_domain_info inner_domain_info = {
992 .size = MAX_MSI_VECTORS,
993 .hwirq_max = MAX_MSI_VECTORS,
994 .ops = &um_pci_inner_domain_ops,
995 };
996 int err, i;
997
998 WARN_ON(logic_iomem_add_region(&virt_cfgspace_resource,
999 &um_pci_cfgspace_ops));
1000 WARN_ON(logic_iomem_add_region(&virt_iomem_resource,
1001 &um_pci_iomem_ops));
1002 WARN_ON(logic_iomem_add_region(&virt_platform_resource,
1003 &um_pci_platform_ops));
1004
1005 if (WARN(CONFIG_UML_PCI_OVER_VIRTIO_DEVICE_ID < 0,
1006 "No virtio device ID configured for PCI - no PCI support\n"))
1007 return 0;
1008
1009 um_pci_msg_bufs = alloc_percpu(struct um_pci_message_buffer);
1010 if (!um_pci_msg_bufs)
1011 return -ENOMEM;
1012
1013 bridge = pci_alloc_host_bridge(0);
1014 if (!bridge) {
1015 err = -ENOMEM;
1016 goto free;
1017 }
1018
1019 um_pci_fwnode = irq_domain_alloc_named_fwnode("um-pci");
1020 if (!um_pci_fwnode) {
1021 err = -ENOMEM;
1022 goto free;
1023 }
1024
1025 inner_domain_info.fwnode = um_pci_fwnode;
1026 um_pci_inner_domain = irq_domain_instantiate(&inner_domain_info);
1027 if (IS_ERR(um_pci_inner_domain)) {
1028 err = PTR_ERR(um_pci_inner_domain);
1029 goto free;
1030 }
1031
1032 um_pci_msi_domain = pci_msi_create_irq_domain(um_pci_fwnode,
1033 &um_pci_msi_domain_info,
1034 um_pci_inner_domain);
1035 if (!um_pci_msi_domain) {
1036 err = -ENOMEM;
1037 goto free;
1038 }
1039
1040 pci_add_resource(&bridge->windows, &virt_iomem_resource);
1041 pci_add_resource(&bridge->windows, &busn_resource);
1042 bridge->ops = &um_pci_ops;
1043 bridge->map_irq = um_pci_map_irq;
1044
1045 for (i = 0; i < MAX_DEVICES; i++) {
1046 resource_size_t start;
1047
1048 start = virt_cfgspace_resource.start + i * CFG_SPACE_SIZE;
1049 um_pci_devices[i].iomem = ioremap(start, CFG_SPACE_SIZE);
1050 if (WARN(!um_pci_devices[i].iomem, "failed to map %d\n", i)) {
1051 err = -ENOMEM;
1052 goto free;
1053 }
1054 }
1055
1056 err = pci_host_probe(bridge);
1057 if (err)
1058 goto free;
1059
1060 err = register_virtio_driver(&um_pci_virtio_driver);
1061 if (err)
1062 goto free;
1063 return 0;
1064free:
1065 if (!IS_ERR_OR_NULL(um_pci_inner_domain))
1066 irq_domain_remove(um_pci_inner_domain);
1067 if (um_pci_fwnode)
1068 irq_domain_free_fwnode(um_pci_fwnode);
1069 if (bridge) {
1070 pci_free_resource_list(&bridge->windows);
1071 pci_free_host_bridge(bridge);
1072 }
1073 free_percpu(um_pci_msg_bufs);
1074 return err;
1075}
1076module_init(um_pci_init);
1077
1078static void __exit um_pci_exit(void)
1079{
1080 unregister_virtio_driver(&um_pci_virtio_driver);
1081 irq_domain_remove(um_pci_msi_domain);
1082 irq_domain_remove(um_pci_inner_domain);
1083 pci_free_resource_list(&bridge->windows);
1084 pci_free_host_bridge(bridge);
1085 free_percpu(um_pci_msg_bufs);
1086}
1087module_exit(um_pci_exit);
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * Copyright (C) 2020 Intel Corporation
4 * Author: Johannes Berg <johannes@sipsolutions.net>
5 */
6#include <linux/module.h>
7#include <linux/pci.h>
8#include <linux/virtio.h>
9#include <linux/virtio_config.h>
10#include <linux/logic_iomem.h>
11#include <linux/irqdomain.h>
12#include <linux/virtio_pcidev.h>
13#include <linux/virtio-uml.h>
14#include <linux/delay.h>
15#include <linux/msi.h>
16#include <asm/unaligned.h>
17#include <irq_kern.h>
18
19#define MAX_DEVICES 8
20#define MAX_MSI_VECTORS 32
21#define CFG_SPACE_SIZE 4096
22
23/* for MSI-X we have a 32-bit payload */
24#define MAX_IRQ_MSG_SIZE (sizeof(struct virtio_pcidev_msg) + sizeof(u32))
25#define NUM_IRQ_MSGS 10
26
27#define HANDLE_NO_FREE(ptr) ((void *)((unsigned long)(ptr) | 1))
28#define HANDLE_IS_NO_FREE(ptr) ((unsigned long)(ptr) & 1)
29
30struct um_pci_device {
31 struct virtio_device *vdev;
32
33 /* for now just standard BARs */
34 u8 resptr[PCI_STD_NUM_BARS];
35
36 struct virtqueue *cmd_vq, *irq_vq;
37
38#define UM_PCI_STAT_WAITING 0
39 unsigned long status;
40
41 int irq;
42};
43
44struct um_pci_device_reg {
45 struct um_pci_device *dev;
46 void __iomem *iomem;
47};
48
49static struct pci_host_bridge *bridge;
50static DEFINE_MUTEX(um_pci_mtx);
51static struct um_pci_device_reg um_pci_devices[MAX_DEVICES];
52static struct fwnode_handle *um_pci_fwnode;
53static struct irq_domain *um_pci_inner_domain;
54static struct irq_domain *um_pci_msi_domain;
55static unsigned long um_pci_msi_used[BITS_TO_LONGS(MAX_MSI_VECTORS)];
56
57#define UM_VIRT_PCI_MAXDELAY 40000
58
59static int um_pci_send_cmd(struct um_pci_device *dev,
60 struct virtio_pcidev_msg *cmd,
61 unsigned int cmd_size,
62 const void *extra, unsigned int extra_size,
63 void *out, unsigned int out_size)
64{
65 struct scatterlist out_sg, extra_sg, in_sg;
66 struct scatterlist *sgs_list[] = {
67 [0] = &out_sg,
68 [1] = extra ? &extra_sg : &in_sg,
69 [2] = extra ? &in_sg : NULL,
70 };
71 int delay_count = 0;
72 int ret, len;
73 bool posted;
74
75 if (WARN_ON(cmd_size < sizeof(*cmd)))
76 return -EINVAL;
77
78 switch (cmd->op) {
79 case VIRTIO_PCIDEV_OP_CFG_WRITE:
80 case VIRTIO_PCIDEV_OP_MMIO_WRITE:
81 case VIRTIO_PCIDEV_OP_MMIO_MEMSET:
82 /* in PCI, writes are posted, so don't wait */
83 posted = !out;
84 WARN_ON(!posted);
85 break;
86 default:
87 posted = false;
88 break;
89 }
90
91 if (posted) {
92 u8 *ncmd = kmalloc(cmd_size + extra_size, GFP_ATOMIC);
93
94 if (ncmd) {
95 memcpy(ncmd, cmd, cmd_size);
96 if (extra)
97 memcpy(ncmd + cmd_size, extra, extra_size);
98 cmd = (void *)ncmd;
99 cmd_size += extra_size;
100 extra = NULL;
101 extra_size = 0;
102 } else {
103 /* try without allocating memory */
104 posted = false;
105 }
106 }
107
108 sg_init_one(&out_sg, cmd, cmd_size);
109 if (extra)
110 sg_init_one(&extra_sg, extra, extra_size);
111 if (out)
112 sg_init_one(&in_sg, out, out_size);
113
114 /* add to internal virtio queue */
115 ret = virtqueue_add_sgs(dev->cmd_vq, sgs_list,
116 extra ? 2 : 1,
117 out ? 1 : 0,
118 posted ? cmd : HANDLE_NO_FREE(cmd),
119 GFP_ATOMIC);
120 if (ret)
121 return ret;
122
123 if (posted) {
124 virtqueue_kick(dev->cmd_vq);
125 return 0;
126 }
127
128 /* kick and poll for getting a response on the queue */
129 set_bit(UM_PCI_STAT_WAITING, &dev->status);
130 virtqueue_kick(dev->cmd_vq);
131
132 while (1) {
133 void *completed = virtqueue_get_buf(dev->cmd_vq, &len);
134
135 if (completed == HANDLE_NO_FREE(cmd))
136 break;
137
138 if (completed && !HANDLE_IS_NO_FREE(completed))
139 kfree(completed);
140
141 if (WARN_ONCE(virtqueue_is_broken(dev->cmd_vq) ||
142 ++delay_count > UM_VIRT_PCI_MAXDELAY,
143 "um virt-pci delay: %d", delay_count)) {
144 ret = -EIO;
145 break;
146 }
147 udelay(1);
148 }
149 clear_bit(UM_PCI_STAT_WAITING, &dev->status);
150
151 return ret;
152}
153
154static unsigned long um_pci_cfgspace_read(void *priv, unsigned int offset,
155 int size)
156{
157 struct um_pci_device_reg *reg = priv;
158 struct um_pci_device *dev = reg->dev;
159 struct virtio_pcidev_msg hdr = {
160 .op = VIRTIO_PCIDEV_OP_CFG_READ,
161 .size = size,
162 .addr = offset,
163 };
164 /* maximum size - we may only use parts of it */
165 u8 data[8];
166
167 if (!dev)
168 return ~0ULL;
169
170 memset(data, 0xff, sizeof(data));
171
172 switch (size) {
173 case 1:
174 case 2:
175 case 4:
176#ifdef CONFIG_64BIT
177 case 8:
178#endif
179 break;
180 default:
181 WARN(1, "invalid config space read size %d\n", size);
182 return ~0ULL;
183 }
184
185 if (um_pci_send_cmd(dev, &hdr, sizeof(hdr), NULL, 0,
186 data, sizeof(data)))
187 return ~0ULL;
188
189 switch (size) {
190 case 1:
191 return data[0];
192 case 2:
193 return le16_to_cpup((void *)data);
194 case 4:
195 return le32_to_cpup((void *)data);
196#ifdef CONFIG_64BIT
197 case 8:
198 return le64_to_cpup((void *)data);
199#endif
200 default:
201 return ~0ULL;
202 }
203}
204
205static void um_pci_cfgspace_write(void *priv, unsigned int offset, int size,
206 unsigned long val)
207{
208 struct um_pci_device_reg *reg = priv;
209 struct um_pci_device *dev = reg->dev;
210 struct {
211 struct virtio_pcidev_msg hdr;
212 /* maximum size - we may only use parts of it */
213 u8 data[8];
214 } msg = {
215 .hdr = {
216 .op = VIRTIO_PCIDEV_OP_CFG_WRITE,
217 .size = size,
218 .addr = offset,
219 },
220 };
221
222 if (!dev)
223 return;
224
225 switch (size) {
226 case 1:
227 msg.data[0] = (u8)val;
228 break;
229 case 2:
230 put_unaligned_le16(val, (void *)msg.data);
231 break;
232 case 4:
233 put_unaligned_le32(val, (void *)msg.data);
234 break;
235#ifdef CONFIG_64BIT
236 case 8:
237 put_unaligned_le64(val, (void *)msg.data);
238 break;
239#endif
240 default:
241 WARN(1, "invalid config space write size %d\n", size);
242 return;
243 }
244
245 WARN_ON(um_pci_send_cmd(dev, &msg.hdr, sizeof(msg), NULL, 0, NULL, 0));
246}
247
248static const struct logic_iomem_ops um_pci_device_cfgspace_ops = {
249 .read = um_pci_cfgspace_read,
250 .write = um_pci_cfgspace_write,
251};
252
253static void um_pci_bar_copy_from(void *priv, void *buffer,
254 unsigned int offset, int size)
255{
256 u8 *resptr = priv;
257 struct um_pci_device *dev = container_of(resptr - *resptr,
258 struct um_pci_device,
259 resptr[0]);
260 struct virtio_pcidev_msg hdr = {
261 .op = VIRTIO_PCIDEV_OP_MMIO_READ,
262 .bar = *resptr,
263 .size = size,
264 .addr = offset,
265 };
266
267 memset(buffer, 0xff, size);
268
269 um_pci_send_cmd(dev, &hdr, sizeof(hdr), NULL, 0, buffer, size);
270}
271
272static unsigned long um_pci_bar_read(void *priv, unsigned int offset,
273 int size)
274{
275 /* maximum size - we may only use parts of it */
276 u8 data[8];
277
278 switch (size) {
279 case 1:
280 case 2:
281 case 4:
282#ifdef CONFIG_64BIT
283 case 8:
284#endif
285 break;
286 default:
287 WARN(1, "invalid config space read size %d\n", size);
288 return ~0ULL;
289 }
290
291 um_pci_bar_copy_from(priv, data, offset, size);
292
293 switch (size) {
294 case 1:
295 return data[0];
296 case 2:
297 return le16_to_cpup((void *)data);
298 case 4:
299 return le32_to_cpup((void *)data);
300#ifdef CONFIG_64BIT
301 case 8:
302 return le64_to_cpup((void *)data);
303#endif
304 default:
305 return ~0ULL;
306 }
307}
308
309static void um_pci_bar_copy_to(void *priv, unsigned int offset,
310 const void *buffer, int size)
311{
312 u8 *resptr = priv;
313 struct um_pci_device *dev = container_of(resptr - *resptr,
314 struct um_pci_device,
315 resptr[0]);
316 struct virtio_pcidev_msg hdr = {
317 .op = VIRTIO_PCIDEV_OP_MMIO_WRITE,
318 .bar = *resptr,
319 .size = size,
320 .addr = offset,
321 };
322
323 um_pci_send_cmd(dev, &hdr, sizeof(hdr), buffer, size, NULL, 0);
324}
325
326static void um_pci_bar_write(void *priv, unsigned int offset, int size,
327 unsigned long val)
328{
329 /* maximum size - we may only use parts of it */
330 u8 data[8];
331
332 switch (size) {
333 case 1:
334 data[0] = (u8)val;
335 break;
336 case 2:
337 put_unaligned_le16(val, (void *)data);
338 break;
339 case 4:
340 put_unaligned_le32(val, (void *)data);
341 break;
342#ifdef CONFIG_64BIT
343 case 8:
344 put_unaligned_le64(val, (void *)data);
345 break;
346#endif
347 default:
348 WARN(1, "invalid config space write size %d\n", size);
349 return;
350 }
351
352 um_pci_bar_copy_to(priv, offset, data, size);
353}
354
355static void um_pci_bar_set(void *priv, unsigned int offset, u8 value, int size)
356{
357 u8 *resptr = priv;
358 struct um_pci_device *dev = container_of(resptr - *resptr,
359 struct um_pci_device,
360 resptr[0]);
361 struct {
362 struct virtio_pcidev_msg hdr;
363 u8 data;
364 } msg = {
365 .hdr = {
366 .op = VIRTIO_PCIDEV_OP_CFG_WRITE,
367 .bar = *resptr,
368 .size = size,
369 .addr = offset,
370 },
371 .data = value,
372 };
373
374 um_pci_send_cmd(dev, &msg.hdr, sizeof(msg), NULL, 0, NULL, 0);
375}
376
377static const struct logic_iomem_ops um_pci_device_bar_ops = {
378 .read = um_pci_bar_read,
379 .write = um_pci_bar_write,
380 .set = um_pci_bar_set,
381 .copy_from = um_pci_bar_copy_from,
382 .copy_to = um_pci_bar_copy_to,
383};
384
385static void __iomem *um_pci_map_bus(struct pci_bus *bus, unsigned int devfn,
386 int where)
387{
388 struct um_pci_device_reg *dev;
389 unsigned int busn = bus->number;
390
391 if (busn > 0)
392 return NULL;
393
394 /* not allowing functions for now ... */
395 if (devfn % 8)
396 return NULL;
397
398 if (devfn / 8 >= ARRAY_SIZE(um_pci_devices))
399 return NULL;
400
401 dev = &um_pci_devices[devfn / 8];
402 if (!dev)
403 return NULL;
404
405 return (void __iomem *)((unsigned long)dev->iomem + where);
406}
407
408static struct pci_ops um_pci_ops = {
409 .map_bus = um_pci_map_bus,
410 .read = pci_generic_config_read,
411 .write = pci_generic_config_write,
412};
413
414static void um_pci_rescan(void)
415{
416 pci_lock_rescan_remove();
417 pci_rescan_bus(bridge->bus);
418 pci_unlock_rescan_remove();
419}
420
421static void um_pci_irq_vq_addbuf(struct virtqueue *vq, void *buf, bool kick)
422{
423 struct scatterlist sg[1];
424
425 sg_init_one(sg, buf, MAX_IRQ_MSG_SIZE);
426 if (virtqueue_add_inbuf(vq, sg, 1, buf, GFP_ATOMIC))
427 kfree(buf);
428 else if (kick)
429 virtqueue_kick(vq);
430}
431
432static void um_pci_handle_irq_message(struct virtqueue *vq,
433 struct virtio_pcidev_msg *msg)
434{
435 struct virtio_device *vdev = vq->vdev;
436 struct um_pci_device *dev = vdev->priv;
437
438 /* we should properly chain interrupts, but on ARCH=um we don't care */
439
440 switch (msg->op) {
441 case VIRTIO_PCIDEV_OP_INT:
442 generic_handle_irq(dev->irq);
443 break;
444 case VIRTIO_PCIDEV_OP_MSI:
445 /* our MSI message is just the interrupt number */
446 if (msg->size == sizeof(u32))
447 generic_handle_irq(le32_to_cpup((void *)msg->data));
448 else
449 generic_handle_irq(le16_to_cpup((void *)msg->data));
450 break;
451 case VIRTIO_PCIDEV_OP_PME:
452 /* nothing to do - we already woke up due to the message */
453 break;
454 default:
455 dev_err(&vdev->dev, "unexpected virt-pci message %d\n", msg->op);
456 break;
457 }
458}
459
460static void um_pci_cmd_vq_cb(struct virtqueue *vq)
461{
462 struct virtio_device *vdev = vq->vdev;
463 struct um_pci_device *dev = vdev->priv;
464 void *cmd;
465 int len;
466
467 if (test_bit(UM_PCI_STAT_WAITING, &dev->status))
468 return;
469
470 while ((cmd = virtqueue_get_buf(vq, &len))) {
471 if (WARN_ON(HANDLE_IS_NO_FREE(cmd)))
472 continue;
473 kfree(cmd);
474 }
475}
476
477static void um_pci_irq_vq_cb(struct virtqueue *vq)
478{
479 struct virtio_pcidev_msg *msg;
480 int len;
481
482 while ((msg = virtqueue_get_buf(vq, &len))) {
483 if (len >= sizeof(*msg))
484 um_pci_handle_irq_message(vq, msg);
485
486 /* recycle the message buffer */
487 um_pci_irq_vq_addbuf(vq, msg, true);
488 }
489}
490
491static int um_pci_init_vqs(struct um_pci_device *dev)
492{
493 struct virtqueue *vqs[2];
494 static const char *const names[2] = { "cmd", "irq" };
495 vq_callback_t *cbs[2] = { um_pci_cmd_vq_cb, um_pci_irq_vq_cb };
496 int err, i;
497
498 err = virtio_find_vqs(dev->vdev, 2, vqs, cbs, names, NULL);
499 if (err)
500 return err;
501
502 dev->cmd_vq = vqs[0];
503 dev->irq_vq = vqs[1];
504
505 for (i = 0; i < NUM_IRQ_MSGS; i++) {
506 void *msg = kzalloc(MAX_IRQ_MSG_SIZE, GFP_KERNEL);
507
508 if (msg)
509 um_pci_irq_vq_addbuf(dev->irq_vq, msg, false);
510 }
511
512 virtqueue_kick(dev->irq_vq);
513
514 return 0;
515}
516
517static int um_pci_virtio_probe(struct virtio_device *vdev)
518{
519 struct um_pci_device *dev;
520 int i, free = -1;
521 int err = -ENOSPC;
522
523 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
524 if (!dev)
525 return -ENOMEM;
526
527 dev->vdev = vdev;
528 vdev->priv = dev;
529
530 mutex_lock(&um_pci_mtx);
531 for (i = 0; i < MAX_DEVICES; i++) {
532 if (um_pci_devices[i].dev)
533 continue;
534 free = i;
535 break;
536 }
537
538 if (free < 0)
539 goto error;
540
541 err = um_pci_init_vqs(dev);
542 if (err)
543 goto error;
544
545 dev->irq = irq_alloc_desc(numa_node_id());
546 if (dev->irq < 0) {
547 err = dev->irq;
548 goto error;
549 }
550 um_pci_devices[free].dev = dev;
551 vdev->priv = dev;
552
553 mutex_unlock(&um_pci_mtx);
554
555 device_set_wakeup_enable(&vdev->dev, true);
556
557 /*
558 * In order to do suspend-resume properly, don't allow VQs
559 * to be suspended.
560 */
561 virtio_uml_set_no_vq_suspend(vdev, true);
562
563 um_pci_rescan();
564 return 0;
565error:
566 mutex_unlock(&um_pci_mtx);
567 kfree(dev);
568 return err;
569}
570
571static void um_pci_virtio_remove(struct virtio_device *vdev)
572{
573 struct um_pci_device *dev = vdev->priv;
574 int i;
575
576 /* Stop all virtqueues */
577 vdev->config->reset(vdev);
578 vdev->config->del_vqs(vdev);
579
580 device_set_wakeup_enable(&vdev->dev, false);
581
582 mutex_lock(&um_pci_mtx);
583 for (i = 0; i < MAX_DEVICES; i++) {
584 if (um_pci_devices[i].dev != dev)
585 continue;
586 um_pci_devices[i].dev = NULL;
587 irq_free_desc(dev->irq);
588 }
589 mutex_unlock(&um_pci_mtx);
590
591 um_pci_rescan();
592
593 kfree(dev);
594}
595
596static struct virtio_device_id id_table[] = {
597 { CONFIG_UML_PCI_OVER_VIRTIO_DEVICE_ID, VIRTIO_DEV_ANY_ID },
598 { 0 },
599};
600MODULE_DEVICE_TABLE(virtio, id_table);
601
602static struct virtio_driver um_pci_virtio_driver = {
603 .driver.name = "virtio-pci",
604 .driver.owner = THIS_MODULE,
605 .id_table = id_table,
606 .probe = um_pci_virtio_probe,
607 .remove = um_pci_virtio_remove,
608};
609
610static struct resource virt_cfgspace_resource = {
611 .name = "PCI config space",
612 .start = 0xf0000000 - MAX_DEVICES * CFG_SPACE_SIZE,
613 .end = 0xf0000000 - 1,
614 .flags = IORESOURCE_MEM,
615};
616
617static long um_pci_map_cfgspace(unsigned long offset, size_t size,
618 const struct logic_iomem_ops **ops,
619 void **priv)
620{
621 if (WARN_ON(size > CFG_SPACE_SIZE || offset % CFG_SPACE_SIZE))
622 return -EINVAL;
623
624 if (offset / CFG_SPACE_SIZE < MAX_DEVICES) {
625 *ops = &um_pci_device_cfgspace_ops;
626 *priv = &um_pci_devices[offset / CFG_SPACE_SIZE];
627 return 0;
628 }
629
630 WARN(1, "cannot map offset 0x%lx/0x%zx\n", offset, size);
631 return -ENOENT;
632}
633
634static const struct logic_iomem_region_ops um_pci_cfgspace_ops = {
635 .map = um_pci_map_cfgspace,
636};
637
638static struct resource virt_iomem_resource = {
639 .name = "PCI iomem",
640 .start = 0xf0000000,
641 .end = 0xffffffff,
642 .flags = IORESOURCE_MEM,
643};
644
645struct um_pci_map_iomem_data {
646 unsigned long offset;
647 size_t size;
648 const struct logic_iomem_ops **ops;
649 void **priv;
650 long ret;
651};
652
653static int um_pci_map_iomem_walk(struct pci_dev *pdev, void *_data)
654{
655 struct um_pci_map_iomem_data *data = _data;
656 struct um_pci_device_reg *reg = &um_pci_devices[pdev->devfn / 8];
657 struct um_pci_device *dev;
658 int i;
659
660 if (!reg->dev)
661 return 0;
662
663 for (i = 0; i < ARRAY_SIZE(dev->resptr); i++) {
664 struct resource *r = &pdev->resource[i];
665
666 if ((r->flags & IORESOURCE_TYPE_BITS) != IORESOURCE_MEM)
667 continue;
668
669 /*
670 * must be the whole or part of the resource,
671 * not allowed to only overlap
672 */
673 if (data->offset < r->start || data->offset > r->end)
674 continue;
675 if (data->offset + data->size - 1 > r->end)
676 continue;
677
678 dev = reg->dev;
679 *data->ops = &um_pci_device_bar_ops;
680 dev->resptr[i] = i;
681 *data->priv = &dev->resptr[i];
682 data->ret = data->offset - r->start;
683
684 /* no need to continue */
685 return 1;
686 }
687
688 return 0;
689}
690
691static long um_pci_map_iomem(unsigned long offset, size_t size,
692 const struct logic_iomem_ops **ops,
693 void **priv)
694{
695 struct um_pci_map_iomem_data data = {
696 /* we want the full address here */
697 .offset = offset + virt_iomem_resource.start,
698 .size = size,
699 .ops = ops,
700 .priv = priv,
701 .ret = -ENOENT,
702 };
703
704 pci_walk_bus(bridge->bus, um_pci_map_iomem_walk, &data);
705 return data.ret;
706}
707
708static const struct logic_iomem_region_ops um_pci_iomem_ops = {
709 .map = um_pci_map_iomem,
710};
711
712static void um_pci_compose_msi_msg(struct irq_data *data, struct msi_msg *msg)
713{
714 /*
715 * This is a very low address and not actually valid 'physical' memory
716 * in UML, so we can simply map MSI(-X) vectors to there, it cannot be
717 * legitimately written to by the device in any other way.
718 * We use the (virtual) IRQ number here as the message to simplify the
719 * code that receives the message, where for now we simply trust the
720 * device to send the correct message.
721 */
722 msg->address_hi = 0;
723 msg->address_lo = 0xa0000;
724 msg->data = data->irq;
725}
726
727static struct irq_chip um_pci_msi_bottom_irq_chip = {
728 .name = "UM virtio MSI",
729 .irq_compose_msi_msg = um_pci_compose_msi_msg,
730};
731
732static int um_pci_inner_domain_alloc(struct irq_domain *domain,
733 unsigned int virq, unsigned int nr_irqs,
734 void *args)
735{
736 unsigned long bit;
737
738 WARN_ON(nr_irqs != 1);
739
740 mutex_lock(&um_pci_mtx);
741 bit = find_first_zero_bit(um_pci_msi_used, MAX_MSI_VECTORS);
742 if (bit >= MAX_MSI_VECTORS) {
743 mutex_unlock(&um_pci_mtx);
744 return -ENOSPC;
745 }
746
747 set_bit(bit, um_pci_msi_used);
748 mutex_unlock(&um_pci_mtx);
749
750 irq_domain_set_info(domain, virq, bit, &um_pci_msi_bottom_irq_chip,
751 domain->host_data, handle_simple_irq,
752 NULL, NULL);
753
754 return 0;
755}
756
757static void um_pci_inner_domain_free(struct irq_domain *domain,
758 unsigned int virq, unsigned int nr_irqs)
759{
760 struct irq_data *d = irq_domain_get_irq_data(domain, virq);
761
762 mutex_lock(&um_pci_mtx);
763
764 if (!test_bit(d->hwirq, um_pci_msi_used))
765 pr_err("trying to free unused MSI#%lu\n", d->hwirq);
766 else
767 __clear_bit(d->hwirq, um_pci_msi_used);
768
769 mutex_unlock(&um_pci_mtx);
770}
771
772static const struct irq_domain_ops um_pci_inner_domain_ops = {
773 .alloc = um_pci_inner_domain_alloc,
774 .free = um_pci_inner_domain_free,
775};
776
777static struct irq_chip um_pci_msi_irq_chip = {
778 .name = "UM virtio PCIe MSI",
779 .irq_mask = pci_msi_mask_irq,
780 .irq_unmask = pci_msi_unmask_irq,
781};
782
783static struct msi_domain_info um_pci_msi_domain_info = {
784 .flags = MSI_FLAG_USE_DEF_DOM_OPS |
785 MSI_FLAG_USE_DEF_CHIP_OPS |
786 MSI_FLAG_PCI_MSIX,
787 .chip = &um_pci_msi_irq_chip,
788};
789
790static struct resource busn_resource = {
791 .name = "PCI busn",
792 .start = 0,
793 .end = 0,
794 .flags = IORESOURCE_BUS,
795};
796
797static int um_pci_map_irq(const struct pci_dev *pdev, u8 slot, u8 pin)
798{
799 struct um_pci_device_reg *reg = &um_pci_devices[pdev->devfn / 8];
800
801 if (WARN_ON(!reg->dev))
802 return -EINVAL;
803
804 /* Yes, we map all pins to the same IRQ ... doesn't matter for now. */
805 return reg->dev->irq;
806}
807
808void *pci_root_bus_fwnode(struct pci_bus *bus)
809{
810 return um_pci_fwnode;
811}
812
813int um_pci_init(void)
814{
815 int err, i;
816
817 WARN_ON(logic_iomem_add_region(&virt_cfgspace_resource,
818 &um_pci_cfgspace_ops));
819 WARN_ON(logic_iomem_add_region(&virt_iomem_resource,
820 &um_pci_iomem_ops));
821
822 if (WARN(CONFIG_UML_PCI_OVER_VIRTIO_DEVICE_ID < 0,
823 "No virtio device ID configured for PCI - no PCI support\n"))
824 return 0;
825
826 bridge = pci_alloc_host_bridge(0);
827 if (!bridge)
828 return -ENOMEM;
829
830 um_pci_fwnode = irq_domain_alloc_named_fwnode("um-pci");
831 if (!um_pci_fwnode) {
832 err = -ENOMEM;
833 goto free;
834 }
835
836 um_pci_inner_domain = __irq_domain_add(um_pci_fwnode, MAX_MSI_VECTORS,
837 MAX_MSI_VECTORS, 0,
838 &um_pci_inner_domain_ops, NULL);
839 if (!um_pci_inner_domain) {
840 err = -ENOMEM;
841 goto free;
842 }
843
844 um_pci_msi_domain = pci_msi_create_irq_domain(um_pci_fwnode,
845 &um_pci_msi_domain_info,
846 um_pci_inner_domain);
847 if (!um_pci_msi_domain) {
848 err = -ENOMEM;
849 goto free;
850 }
851
852 pci_add_resource(&bridge->windows, &virt_iomem_resource);
853 pci_add_resource(&bridge->windows, &busn_resource);
854 bridge->ops = &um_pci_ops;
855 bridge->map_irq = um_pci_map_irq;
856
857 for (i = 0; i < MAX_DEVICES; i++) {
858 resource_size_t start;
859
860 start = virt_cfgspace_resource.start + i * CFG_SPACE_SIZE;
861 um_pci_devices[i].iomem = ioremap(start, CFG_SPACE_SIZE);
862 if (WARN(!um_pci_devices[i].iomem, "failed to map %d\n", i)) {
863 err = -ENOMEM;
864 goto free;
865 }
866 }
867
868 err = pci_host_probe(bridge);
869 if (err)
870 goto free;
871
872 err = register_virtio_driver(&um_pci_virtio_driver);
873 if (err)
874 goto free;
875 return 0;
876free:
877 if (um_pci_inner_domain)
878 irq_domain_remove(um_pci_inner_domain);
879 if (um_pci_fwnode)
880 irq_domain_free_fwnode(um_pci_fwnode);
881 pci_free_resource_list(&bridge->windows);
882 pci_free_host_bridge(bridge);
883 return err;
884}
885module_init(um_pci_init);
886
887void um_pci_exit(void)
888{
889 unregister_virtio_driver(&um_pci_virtio_driver);
890 irq_domain_remove(um_pci_msi_domain);
891 irq_domain_remove(um_pci_inner_domain);
892 pci_free_resource_list(&bridge->windows);
893 pci_free_host_bridge(bridge);
894}
895module_exit(um_pci_exit);