Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Virtio memory mapped device driver |
| 3 | * |
Pawel Moll | 1862ee2 | 2015-01-23 14:45:55 +1030 | [diff] [blame] | 4 | * Copyright 2011-2014, ARM Ltd. |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 5 | * |
| 6 | * This module allows virtio devices to be used over a virtual, memory mapped |
| 7 | * platform device. |
| 8 | * |
Pawel Moll | 81a054c | 2012-05-09 18:30:16 +0100 | [diff] [blame] | 9 | * The guest device(s) may be instantiated in one of three equivalent ways: |
| 10 | * |
| 11 | * 1. Static platform device in board's code, eg.: |
| 12 | * |
| 13 | * static struct platform_device v2m_virtio_device = { |
| 14 | * .name = "virtio-mmio", |
| 15 | * .id = -1, |
| 16 | * .num_resources = 2, |
| 17 | * .resource = (struct resource []) { |
| 18 | * { |
| 19 | * .start = 0x1001e000, |
| 20 | * .end = 0x1001e0ff, |
| 21 | * .flags = IORESOURCE_MEM, |
| 22 | * }, { |
| 23 | * .start = 42 + 32, |
| 24 | * .end = 42 + 32, |
| 25 | * .flags = IORESOURCE_IRQ, |
| 26 | * }, |
| 27 | * } |
| 28 | * }; |
| 29 | * |
| 30 | * 2. Device Tree node, eg.: |
| 31 | * |
| 32 | * virtio_block@1e000 { |
| 33 | * compatible = "virtio,mmio"; |
| 34 | * reg = <0x1e000 0x100>; |
| 35 | * interrupts = <42>; |
| 36 | * } |
| 37 | * |
| 38 | * 3. Kernel module (or command line) parameter. Can be used more than once - |
| 39 | * one device will be created for each one. Syntax: |
| 40 | * |
| 41 | * [virtio_mmio.]device=<size>@<baseaddr>:<irq>[:<id>] |
| 42 | * where: |
| 43 | * <size> := size (can use standard suffixes like K, M or G) |
| 44 | * <baseaddr> := physical base address |
| 45 | * <irq> := interrupt number (as passed to request_irq()) |
| 46 | * <id> := (optional) platform device id |
| 47 | * eg.: |
| 48 | * virtio_mmio.device=0x100@0x100b0000:48 \ |
| 49 | * virtio_mmio.device=1K@0x1001e000:74 |
| 50 | * |
| 51 | * |
| 52 | * |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 53 | * Based on Virtio PCI driver by Anthony Liguori, copyright IBM Corp. 2007 |
| 54 | * |
| 55 | * This work is licensed under the terms of the GNU GPL, version 2 or later. |
| 56 | * See the COPYING file in the top-level directory. |
| 57 | */ |
| 58 | |
Pawel Moll | 81a054c | 2012-05-09 18:30:16 +0100 | [diff] [blame] | 59 | #define pr_fmt(fmt) "virtio-mmio: " fmt |
| 60 | |
Graeme Gregory | 38c4ab8 | 2015-07-28 10:44:02 +0100 | [diff] [blame] | 61 | #include <linux/acpi.h> |
Robin Murphy | f7f6634 | 2017-01-10 17:51:17 +0000 | [diff] [blame] | 62 | #include <linux/dma-mapping.h> |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 63 | #include <linux/highmem.h> |
| 64 | #include <linux/interrupt.h> |
| 65 | #include <linux/io.h> |
| 66 | #include <linux/list.h> |
| 67 | #include <linux/module.h> |
| 68 | #include <linux/platform_device.h> |
| 69 | #include <linux/slab.h> |
| 70 | #include <linux/spinlock.h> |
| 71 | #include <linux/virtio.h> |
| 72 | #include <linux/virtio_config.h> |
Michael S. Tsirkin | 51be7a9 | 2017-01-12 23:36:32 +0200 | [diff] [blame] | 73 | #include <uapi/linux/virtio_mmio.h> |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 74 | #include <linux/virtio_ring.h> |
| 75 | |
| 76 | |
| 77 | |
| 78 | /* The alignment to use between consumer and producer parts of vring. |
| 79 | * Currently hardcoded to the page size. */ |
| 80 | #define VIRTIO_MMIO_VRING_ALIGN PAGE_SIZE |
| 81 | |
| 82 | |
| 83 | |
| 84 | #define to_virtio_mmio_device(_plat_dev) \ |
| 85 | container_of(_plat_dev, struct virtio_mmio_device, vdev) |
| 86 | |
| 87 | struct virtio_mmio_device { |
| 88 | struct virtio_device vdev; |
| 89 | struct platform_device *pdev; |
| 90 | |
| 91 | void __iomem *base; |
| 92 | unsigned long version; |
| 93 | |
| 94 | /* a list of queues so we can dispatch IRQs */ |
| 95 | spinlock_t lock; |
| 96 | struct list_head virtqueues; |
| 97 | }; |
| 98 | |
| 99 | struct virtio_mmio_vq_info { |
| 100 | /* the actual virtqueue */ |
| 101 | struct virtqueue *vq; |
| 102 | |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 103 | /* the list node for the virtqueues list */ |
| 104 | struct list_head node; |
| 105 | }; |
| 106 | |
| 107 | |
| 108 | |
| 109 | /* Configuration interface */ |
| 110 | |
Michael S. Tsirkin | d025477 | 2014-10-07 16:39:43 +0200 | [diff] [blame] | 111 | static u64 vm_get_features(struct virtio_device *vdev) |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 112 | { |
| 113 | struct virtio_mmio_device *vm_dev = to_virtio_mmio_device(vdev); |
Pawel Moll | 1862ee2 | 2015-01-23 14:45:55 +1030 | [diff] [blame] | 114 | u64 features; |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 115 | |
Pawel Moll | 1862ee2 | 2015-01-23 14:45:55 +1030 | [diff] [blame] | 116 | writel(1, vm_dev->base + VIRTIO_MMIO_DEVICE_FEATURES_SEL); |
| 117 | features = readl(vm_dev->base + VIRTIO_MMIO_DEVICE_FEATURES); |
| 118 | features <<= 32; |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 119 | |
Pawel Moll | 1862ee2 | 2015-01-23 14:45:55 +1030 | [diff] [blame] | 120 | writel(0, vm_dev->base + VIRTIO_MMIO_DEVICE_FEATURES_SEL); |
| 121 | features |= readl(vm_dev->base + VIRTIO_MMIO_DEVICE_FEATURES); |
| 122 | |
| 123 | return features; |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 124 | } |
| 125 | |
Michael S. Tsirkin | 5c609a5 | 2014-12-04 20:20:27 +0200 | [diff] [blame] | 126 | static int vm_finalize_features(struct virtio_device *vdev) |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 127 | { |
| 128 | struct virtio_mmio_device *vm_dev = to_virtio_mmio_device(vdev); |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 129 | |
| 130 | /* Give virtio_ring a chance to accept features. */ |
| 131 | vring_transport_features(vdev); |
| 132 | |
Pawel Moll | 1862ee2 | 2015-01-23 14:45:55 +1030 | [diff] [blame] | 133 | /* Make sure there is are no mixed devices */ |
| 134 | if (vm_dev->version == 2 && |
| 135 | !__virtio_test_bit(vdev, VIRTIO_F_VERSION_1)) { |
| 136 | dev_err(&vdev->dev, "New virtio-mmio devices (version 2) must provide VIRTIO_F_VERSION_1 feature!\n"); |
| 137 | return -EINVAL; |
| 138 | } |
Michael S. Tsirkin | 93d389f | 2014-11-27 13:45:58 +0200 | [diff] [blame] | 139 | |
Pawel Moll | 1862ee2 | 2015-01-23 14:45:55 +1030 | [diff] [blame] | 140 | writel(1, vm_dev->base + VIRTIO_MMIO_DRIVER_FEATURES_SEL); |
| 141 | writel((u32)(vdev->features >> 32), |
| 142 | vm_dev->base + VIRTIO_MMIO_DRIVER_FEATURES); |
| 143 | |
| 144 | writel(0, vm_dev->base + VIRTIO_MMIO_DRIVER_FEATURES_SEL); |
| 145 | writel((u32)vdev->features, |
| 146 | vm_dev->base + VIRTIO_MMIO_DRIVER_FEATURES); |
Michael S. Tsirkin | 5c609a5 | 2014-12-04 20:20:27 +0200 | [diff] [blame] | 147 | |
| 148 | return 0; |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 149 | } |
| 150 | |
| 151 | static void vm_get(struct virtio_device *vdev, unsigned offset, |
| 152 | void *buf, unsigned len) |
| 153 | { |
| 154 | struct virtio_mmio_device *vm_dev = to_virtio_mmio_device(vdev); |
Michael S. Tsirkin | 704a0b5 | 2015-03-17 12:11:30 +1030 | [diff] [blame] | 155 | void __iomem *base = vm_dev->base + VIRTIO_MMIO_CONFIG; |
| 156 | u8 b; |
| 157 | __le16 w; |
| 158 | __le32 l; |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 159 | |
Michael S. Tsirkin | 704a0b5 | 2015-03-17 12:11:30 +1030 | [diff] [blame] | 160 | if (vm_dev->version == 1) { |
| 161 | u8 *ptr = buf; |
| 162 | int i; |
| 163 | |
| 164 | for (i = 0; i < len; i++) |
| 165 | ptr[i] = readb(base + offset + i); |
| 166 | return; |
| 167 | } |
| 168 | |
| 169 | switch (len) { |
| 170 | case 1: |
| 171 | b = readb(base + offset); |
| 172 | memcpy(buf, &b, sizeof b); |
| 173 | break; |
| 174 | case 2: |
| 175 | w = cpu_to_le16(readw(base + offset)); |
| 176 | memcpy(buf, &w, sizeof w); |
| 177 | break; |
| 178 | case 4: |
| 179 | l = cpu_to_le32(readl(base + offset)); |
| 180 | memcpy(buf, &l, sizeof l); |
| 181 | break; |
| 182 | case 8: |
| 183 | l = cpu_to_le32(readl(base + offset)); |
| 184 | memcpy(buf, &l, sizeof l); |
| 185 | l = cpu_to_le32(ioread32(base + offset + sizeof l)); |
| 186 | memcpy(buf + sizeof l, &l, sizeof l); |
| 187 | break; |
| 188 | default: |
| 189 | BUG(); |
| 190 | } |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 191 | } |
| 192 | |
| 193 | static void vm_set(struct virtio_device *vdev, unsigned offset, |
| 194 | const void *buf, unsigned len) |
| 195 | { |
| 196 | struct virtio_mmio_device *vm_dev = to_virtio_mmio_device(vdev); |
Michael S. Tsirkin | 704a0b5 | 2015-03-17 12:11:30 +1030 | [diff] [blame] | 197 | void __iomem *base = vm_dev->base + VIRTIO_MMIO_CONFIG; |
| 198 | u8 b; |
| 199 | __le16 w; |
| 200 | __le32 l; |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 201 | |
Michael S. Tsirkin | 704a0b5 | 2015-03-17 12:11:30 +1030 | [diff] [blame] | 202 | if (vm_dev->version == 1) { |
| 203 | const u8 *ptr = buf; |
| 204 | int i; |
| 205 | |
| 206 | for (i = 0; i < len; i++) |
| 207 | writeb(ptr[i], base + offset + i); |
| 208 | |
| 209 | return; |
| 210 | } |
| 211 | |
| 212 | switch (len) { |
| 213 | case 1: |
| 214 | memcpy(&b, buf, sizeof b); |
| 215 | writeb(b, base + offset); |
| 216 | break; |
| 217 | case 2: |
| 218 | memcpy(&w, buf, sizeof w); |
| 219 | writew(le16_to_cpu(w), base + offset); |
| 220 | break; |
| 221 | case 4: |
| 222 | memcpy(&l, buf, sizeof l); |
| 223 | writel(le32_to_cpu(l), base + offset); |
| 224 | break; |
| 225 | case 8: |
| 226 | memcpy(&l, buf, sizeof l); |
| 227 | writel(le32_to_cpu(l), base + offset); |
| 228 | memcpy(&l, buf + sizeof l, sizeof l); |
| 229 | writel(le32_to_cpu(l), base + offset + sizeof l); |
| 230 | break; |
| 231 | default: |
| 232 | BUG(); |
| 233 | } |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 234 | } |
| 235 | |
Michael S. Tsirkin | 87e7bf1 | 2015-03-12 12:56:43 +1030 | [diff] [blame] | 236 | static u32 vm_generation(struct virtio_device *vdev) |
| 237 | { |
| 238 | struct virtio_mmio_device *vm_dev = to_virtio_mmio_device(vdev); |
| 239 | |
| 240 | if (vm_dev->version == 1) |
| 241 | return 0; |
| 242 | else |
| 243 | return readl(vm_dev->base + VIRTIO_MMIO_CONFIG_GENERATION); |
| 244 | } |
| 245 | |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 246 | static u8 vm_get_status(struct virtio_device *vdev) |
| 247 | { |
| 248 | struct virtio_mmio_device *vm_dev = to_virtio_mmio_device(vdev); |
| 249 | |
| 250 | return readl(vm_dev->base + VIRTIO_MMIO_STATUS) & 0xff; |
| 251 | } |
| 252 | |
| 253 | static void vm_set_status(struct virtio_device *vdev, u8 status) |
| 254 | { |
| 255 | struct virtio_mmio_device *vm_dev = to_virtio_mmio_device(vdev); |
| 256 | |
| 257 | /* We should never be setting status to 0. */ |
| 258 | BUG_ON(status == 0); |
| 259 | |
| 260 | writel(status, vm_dev->base + VIRTIO_MMIO_STATUS); |
| 261 | } |
| 262 | |
| 263 | static void vm_reset(struct virtio_device *vdev) |
| 264 | { |
| 265 | struct virtio_mmio_device *vm_dev = to_virtio_mmio_device(vdev); |
| 266 | |
| 267 | /* 0 status means a reset. */ |
| 268 | writel(0, vm_dev->base + VIRTIO_MMIO_STATUS); |
| 269 | } |
| 270 | |
| 271 | |
| 272 | |
| 273 | /* Transport interface */ |
| 274 | |
| 275 | /* the notify function used when creating a virt queue */ |
Heinz Graalfs | 46f9c2b | 2013-10-29 09:38:50 +1030 | [diff] [blame] | 276 | static bool vm_notify(struct virtqueue *vq) |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 277 | { |
| 278 | struct virtio_mmio_device *vm_dev = to_virtio_mmio_device(vq->vdev); |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 279 | |
| 280 | /* We write the queue's selector into the notification register to |
| 281 | * signal the other end */ |
Rusty Russell | 06ca287 | 2012-10-16 23:56:14 +1030 | [diff] [blame] | 282 | writel(vq->index, vm_dev->base + VIRTIO_MMIO_QUEUE_NOTIFY); |
Heinz Graalfs | 46f9c2b | 2013-10-29 09:38:50 +1030 | [diff] [blame] | 283 | return true; |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 284 | } |
| 285 | |
| 286 | /* Notify all virtqueues on an interrupt. */ |
| 287 | static irqreturn_t vm_interrupt(int irq, void *opaque) |
| 288 | { |
| 289 | struct virtio_mmio_device *vm_dev = opaque; |
| 290 | struct virtio_mmio_vq_info *info; |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 291 | unsigned long status; |
| 292 | unsigned long flags; |
| 293 | irqreturn_t ret = IRQ_NONE; |
| 294 | |
| 295 | /* Read and acknowledge interrupts */ |
| 296 | status = readl(vm_dev->base + VIRTIO_MMIO_INTERRUPT_STATUS); |
| 297 | writel(status, vm_dev->base + VIRTIO_MMIO_INTERRUPT_ACK); |
| 298 | |
Michael S. Tsirkin | 016c98c | 2014-10-14 10:40:34 +1030 | [diff] [blame] | 299 | if (unlikely(status & VIRTIO_MMIO_INT_CONFIG)) { |
| 300 | virtio_config_changed(&vm_dev->vdev); |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 301 | ret = IRQ_HANDLED; |
| 302 | } |
| 303 | |
| 304 | if (likely(status & VIRTIO_MMIO_INT_VRING)) { |
| 305 | spin_lock_irqsave(&vm_dev->lock, flags); |
| 306 | list_for_each_entry(info, &vm_dev->virtqueues, node) |
| 307 | ret |= vring_interrupt(irq, info->vq); |
| 308 | spin_unlock_irqrestore(&vm_dev->lock, flags); |
| 309 | } |
| 310 | |
| 311 | return ret; |
| 312 | } |
| 313 | |
| 314 | |
| 315 | |
| 316 | static void vm_del_vq(struct virtqueue *vq) |
| 317 | { |
| 318 | struct virtio_mmio_device *vm_dev = to_virtio_mmio_device(vq->vdev); |
| 319 | struct virtio_mmio_vq_info *info = vq->priv; |
Andy Lutomirski | b421113 | 2016-02-02 21:46:38 -0800 | [diff] [blame] | 320 | unsigned long flags; |
Rusty Russell | 06ca287 | 2012-10-16 23:56:14 +1030 | [diff] [blame] | 321 | unsigned int index = vq->index; |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 322 | |
| 323 | spin_lock_irqsave(&vm_dev->lock, flags); |
| 324 | list_del(&info->node); |
| 325 | spin_unlock_irqrestore(&vm_dev->lock, flags); |
| 326 | |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 327 | /* Select and deactivate the queue */ |
Jason Wang | 17bb6d4 | 2012-08-28 13:54:13 +0200 | [diff] [blame] | 328 | writel(index, vm_dev->base + VIRTIO_MMIO_QUEUE_SEL); |
Pawel Moll | 1862ee2 | 2015-01-23 14:45:55 +1030 | [diff] [blame] | 329 | if (vm_dev->version == 1) { |
| 330 | writel(0, vm_dev->base + VIRTIO_MMIO_QUEUE_PFN); |
| 331 | } else { |
| 332 | writel(0, vm_dev->base + VIRTIO_MMIO_QUEUE_READY); |
| 333 | WARN_ON(readl(vm_dev->base + VIRTIO_MMIO_QUEUE_READY)); |
| 334 | } |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 335 | |
Andy Lutomirski | b421113 | 2016-02-02 21:46:38 -0800 | [diff] [blame] | 336 | vring_del_virtqueue(vq); |
| 337 | |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 338 | kfree(info); |
| 339 | } |
| 340 | |
| 341 | static void vm_del_vqs(struct virtio_device *vdev) |
| 342 | { |
| 343 | struct virtio_mmio_device *vm_dev = to_virtio_mmio_device(vdev); |
| 344 | struct virtqueue *vq, *n; |
| 345 | |
| 346 | list_for_each_entry_safe(vq, n, &vdev->vqs, list) |
| 347 | vm_del_vq(vq); |
| 348 | |
| 349 | free_irq(platform_get_irq(vm_dev->pdev, 0), vm_dev); |
| 350 | } |
| 351 | |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 352 | static struct virtqueue *vm_setup_vq(struct virtio_device *vdev, unsigned index, |
| 353 | void (*callback)(struct virtqueue *vq), |
Michael S. Tsirkin | f94682d | 2017-03-06 18:32:29 +0200 | [diff] [blame] | 354 | const char *name, bool ctx) |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 355 | { |
| 356 | struct virtio_mmio_device *vm_dev = to_virtio_mmio_device(vdev); |
| 357 | struct virtio_mmio_vq_info *info; |
| 358 | struct virtqueue *vq; |
Andy Lutomirski | b421113 | 2016-02-02 21:46:38 -0800 | [diff] [blame] | 359 | unsigned long flags; |
| 360 | unsigned int num; |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 361 | int err; |
| 362 | |
Michael S. Tsirkin | 6457f126 | 2012-09-05 21:47:45 +0300 | [diff] [blame] | 363 | if (!name) |
| 364 | return NULL; |
| 365 | |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 366 | /* Select the queue we're interested in */ |
| 367 | writel(index, vm_dev->base + VIRTIO_MMIO_QUEUE_SEL); |
| 368 | |
| 369 | /* Queue shouldn't already be set up. */ |
Pawel Moll | 1862ee2 | 2015-01-23 14:45:55 +1030 | [diff] [blame] | 370 | if (readl(vm_dev->base + (vm_dev->version == 1 ? |
| 371 | VIRTIO_MMIO_QUEUE_PFN : VIRTIO_MMIO_QUEUE_READY))) { |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 372 | err = -ENOENT; |
| 373 | goto error_available; |
| 374 | } |
| 375 | |
| 376 | /* Allocate and fill out our active queue description */ |
| 377 | info = kmalloc(sizeof(*info), GFP_KERNEL); |
| 378 | if (!info) { |
| 379 | err = -ENOMEM; |
| 380 | goto error_kmalloc; |
| 381 | } |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 382 | |
Andy Lutomirski | b421113 | 2016-02-02 21:46:38 -0800 | [diff] [blame] | 383 | num = readl(vm_dev->base + VIRTIO_MMIO_QUEUE_NUM_MAX); |
| 384 | if (num == 0) { |
Brian Foley | d78b519 | 2012-09-24 14:33:42 +0100 | [diff] [blame] | 385 | err = -ENOENT; |
Andy Lutomirski | b421113 | 2016-02-02 21:46:38 -0800 | [diff] [blame] | 386 | goto error_new_virtqueue; |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 387 | } |
| 388 | |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 389 | /* Create the vring */ |
Andy Lutomirski | b421113 | 2016-02-02 21:46:38 -0800 | [diff] [blame] | 390 | vq = vring_create_virtqueue(index, num, VIRTIO_MMIO_VRING_ALIGN, vdev, |
Michael S. Tsirkin | f94682d | 2017-03-06 18:32:29 +0200 | [diff] [blame] | 391 | true, true, ctx, vm_notify, callback, name); |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 392 | if (!vq) { |
| 393 | err = -ENOMEM; |
| 394 | goto error_new_virtqueue; |
| 395 | } |
| 396 | |
Pawel Moll | 1862ee2 | 2015-01-23 14:45:55 +1030 | [diff] [blame] | 397 | /* Activate the queue */ |
Andy Lutomirski | b421113 | 2016-02-02 21:46:38 -0800 | [diff] [blame] | 398 | writel(virtqueue_get_vring_size(vq), vm_dev->base + VIRTIO_MMIO_QUEUE_NUM); |
Pawel Moll | 1862ee2 | 2015-01-23 14:45:55 +1030 | [diff] [blame] | 399 | if (vm_dev->version == 1) { |
| 400 | writel(PAGE_SIZE, vm_dev->base + VIRTIO_MMIO_QUEUE_ALIGN); |
Andy Lutomirski | b421113 | 2016-02-02 21:46:38 -0800 | [diff] [blame] | 401 | writel(virtqueue_get_desc_addr(vq) >> PAGE_SHIFT, |
Pawel Moll | 1862ee2 | 2015-01-23 14:45:55 +1030 | [diff] [blame] | 402 | vm_dev->base + VIRTIO_MMIO_QUEUE_PFN); |
| 403 | } else { |
| 404 | u64 addr; |
| 405 | |
Andy Lutomirski | b421113 | 2016-02-02 21:46:38 -0800 | [diff] [blame] | 406 | addr = virtqueue_get_desc_addr(vq); |
Pawel Moll | 1862ee2 | 2015-01-23 14:45:55 +1030 | [diff] [blame] | 407 | writel((u32)addr, vm_dev->base + VIRTIO_MMIO_QUEUE_DESC_LOW); |
| 408 | writel((u32)(addr >> 32), |
| 409 | vm_dev->base + VIRTIO_MMIO_QUEUE_DESC_HIGH); |
| 410 | |
Andy Lutomirski | b421113 | 2016-02-02 21:46:38 -0800 | [diff] [blame] | 411 | addr = virtqueue_get_avail_addr(vq); |
Pawel Moll | 1862ee2 | 2015-01-23 14:45:55 +1030 | [diff] [blame] | 412 | writel((u32)addr, vm_dev->base + VIRTIO_MMIO_QUEUE_AVAIL_LOW); |
| 413 | writel((u32)(addr >> 32), |
| 414 | vm_dev->base + VIRTIO_MMIO_QUEUE_AVAIL_HIGH); |
| 415 | |
Andy Lutomirski | b421113 | 2016-02-02 21:46:38 -0800 | [diff] [blame] | 416 | addr = virtqueue_get_used_addr(vq); |
Pawel Moll | 1862ee2 | 2015-01-23 14:45:55 +1030 | [diff] [blame] | 417 | writel((u32)addr, vm_dev->base + VIRTIO_MMIO_QUEUE_USED_LOW); |
| 418 | writel((u32)(addr >> 32), |
| 419 | vm_dev->base + VIRTIO_MMIO_QUEUE_USED_HIGH); |
| 420 | |
| 421 | writel(1, vm_dev->base + VIRTIO_MMIO_QUEUE_READY); |
| 422 | } |
| 423 | |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 424 | vq->priv = info; |
| 425 | info->vq = vq; |
| 426 | |
| 427 | spin_lock_irqsave(&vm_dev->lock, flags); |
| 428 | list_add(&info->node, &vm_dev->virtqueues); |
| 429 | spin_unlock_irqrestore(&vm_dev->lock, flags); |
| 430 | |
| 431 | return vq; |
| 432 | |
| 433 | error_new_virtqueue: |
Pawel Moll | 1862ee2 | 2015-01-23 14:45:55 +1030 | [diff] [blame] | 434 | if (vm_dev->version == 1) { |
| 435 | writel(0, vm_dev->base + VIRTIO_MMIO_QUEUE_PFN); |
| 436 | } else { |
| 437 | writel(0, vm_dev->base + VIRTIO_MMIO_QUEUE_READY); |
| 438 | WARN_ON(readl(vm_dev->base + VIRTIO_MMIO_QUEUE_READY)); |
| 439 | } |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 440 | kfree(info); |
| 441 | error_kmalloc: |
| 442 | error_available: |
| 443 | return ERR_PTR(err); |
| 444 | } |
| 445 | |
| 446 | static int vm_find_vqs(struct virtio_device *vdev, unsigned nvqs, |
| 447 | struct virtqueue *vqs[], |
| 448 | vq_callback_t *callbacks[], |
Christoph Hellwig | fb5e31d | 2017-02-05 18:15:22 +0100 | [diff] [blame] | 449 | const char * const names[], |
Michael S. Tsirkin | f94682d | 2017-03-06 18:32:29 +0200 | [diff] [blame] | 450 | const bool *ctx, |
Christoph Hellwig | fb5e31d | 2017-02-05 18:15:22 +0100 | [diff] [blame] | 451 | struct irq_affinity *desc) |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 452 | { |
| 453 | struct virtio_mmio_device *vm_dev = to_virtio_mmio_device(vdev); |
| 454 | unsigned int irq = platform_get_irq(vm_dev->pdev, 0); |
| 455 | int i, err; |
| 456 | |
| 457 | err = request_irq(irq, vm_interrupt, IRQF_SHARED, |
| 458 | dev_name(&vdev->dev), vm_dev); |
| 459 | if (err) |
| 460 | return err; |
| 461 | |
| 462 | for (i = 0; i < nvqs; ++i) { |
Michael S. Tsirkin | f94682d | 2017-03-06 18:32:29 +0200 | [diff] [blame] | 463 | vqs[i] = vm_setup_vq(vdev, i, callbacks[i], names[i], |
| 464 | ctx ? ctx[i] : false); |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 465 | if (IS_ERR(vqs[i])) { |
| 466 | vm_del_vqs(vdev); |
| 467 | return PTR_ERR(vqs[i]); |
| 468 | } |
| 469 | } |
| 470 | |
| 471 | return 0; |
| 472 | } |
| 473 | |
Rick Jones | 6684604 | 2011-11-14 14:17:08 +0000 | [diff] [blame] | 474 | static const char *vm_bus_name(struct virtio_device *vdev) |
| 475 | { |
| 476 | struct virtio_mmio_device *vm_dev = to_virtio_mmio_device(vdev); |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 477 | |
Rick Jones | 6684604 | 2011-11-14 14:17:08 +0000 | [diff] [blame] | 478 | return vm_dev->pdev->name; |
| 479 | } |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 480 | |
Stephen Hemminger | 9350393 | 2013-02-10 15:57:38 +1030 | [diff] [blame] | 481 | static const struct virtio_config_ops virtio_mmio_config_ops = { |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 482 | .get = vm_get, |
| 483 | .set = vm_set, |
Michael S. Tsirkin | 87e7bf1 | 2015-03-12 12:56:43 +1030 | [diff] [blame] | 484 | .generation = vm_generation, |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 485 | .get_status = vm_get_status, |
| 486 | .set_status = vm_set_status, |
| 487 | .reset = vm_reset, |
| 488 | .find_vqs = vm_find_vqs, |
| 489 | .del_vqs = vm_del_vqs, |
| 490 | .get_features = vm_get_features, |
| 491 | .finalize_features = vm_finalize_features, |
Rick Jones | 6684604 | 2011-11-14 14:17:08 +0000 | [diff] [blame] | 492 | .bus_name = vm_bus_name, |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 493 | }; |
| 494 | |
| 495 | |
weiping zhang | 7eb781b | 2017-12-06 21:59:16 +0800 | [diff] [blame] | 496 | static void virtio_mmio_release_dev(struct device *_d) |
| 497 | { |
| 498 | struct virtio_device *vdev = |
| 499 | container_of(_d, struct virtio_device, dev); |
| 500 | struct virtio_mmio_device *vm_dev = |
| 501 | container_of(vdev, struct virtio_mmio_device, vdev); |
| 502 | struct platform_device *pdev = vm_dev->pdev; |
| 503 | |
| 504 | devm_kfree(&pdev->dev, vm_dev); |
| 505 | } |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 506 | |
| 507 | /* Platform device */ |
| 508 | |
Greg Kroah-Hartman | 8590dbc | 2012-12-21 13:05:30 -0800 | [diff] [blame] | 509 | static int virtio_mmio_probe(struct platform_device *pdev) |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 510 | { |
| 511 | struct virtio_mmio_device *vm_dev; |
| 512 | struct resource *mem; |
| 513 | unsigned long magic; |
Robin Murphy | f7f6634 | 2017-01-10 17:51:17 +0000 | [diff] [blame] | 514 | int rc; |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 515 | |
| 516 | mem = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 517 | if (!mem) |
| 518 | return -EINVAL; |
| 519 | |
| 520 | if (!devm_request_mem_region(&pdev->dev, mem->start, |
| 521 | resource_size(mem), pdev->name)) |
| 522 | return -EBUSY; |
| 523 | |
| 524 | vm_dev = devm_kzalloc(&pdev->dev, sizeof(*vm_dev), GFP_KERNEL); |
Mark Rutland | c2e9080 | 2017-12-12 13:45:50 +0000 | [diff] [blame] | 525 | if (!vm_dev) |
| 526 | return -ENOMEM; |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 527 | |
| 528 | vm_dev->vdev.dev.parent = &pdev->dev; |
weiping zhang | 7eb781b | 2017-12-06 21:59:16 +0800 | [diff] [blame] | 529 | vm_dev->vdev.dev.release = virtio_mmio_release_dev; |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 530 | vm_dev->vdev.config = &virtio_mmio_config_ops; |
| 531 | vm_dev->pdev = pdev; |
| 532 | INIT_LIST_HEAD(&vm_dev->virtqueues); |
| 533 | spin_lock_init(&vm_dev->lock); |
| 534 | |
| 535 | vm_dev->base = devm_ioremap(&pdev->dev, mem->start, resource_size(mem)); |
Mark Rutland | c2e9080 | 2017-12-12 13:45:50 +0000 | [diff] [blame] | 536 | if (vm_dev->base == NULL) |
| 537 | return -EFAULT; |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 538 | |
| 539 | /* Check magic value */ |
| 540 | magic = readl(vm_dev->base + VIRTIO_MMIO_MAGIC_VALUE); |
Marc Zyngier | 4ae8537 | 2013-11-05 21:21:28 +1030 | [diff] [blame] | 541 | if (magic != ('v' | 'i' << 8 | 'r' << 16 | 't' << 24)) { |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 542 | dev_warn(&pdev->dev, "Wrong magic value 0x%08lx!\n", magic); |
Mark Rutland | c2e9080 | 2017-12-12 13:45:50 +0000 | [diff] [blame] | 543 | return -ENODEV; |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 544 | } |
| 545 | |
| 546 | /* Check device version */ |
| 547 | vm_dev->version = readl(vm_dev->base + VIRTIO_MMIO_VERSION); |
Pawel Moll | 1862ee2 | 2015-01-23 14:45:55 +1030 | [diff] [blame] | 548 | if (vm_dev->version < 1 || vm_dev->version > 2) { |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 549 | dev_err(&pdev->dev, "Version %ld not supported!\n", |
| 550 | vm_dev->version); |
Mark Rutland | c2e9080 | 2017-12-12 13:45:50 +0000 | [diff] [blame] | 551 | return -ENXIO; |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 552 | } |
| 553 | |
| 554 | vm_dev->vdev.id.device = readl(vm_dev->base + VIRTIO_MMIO_DEVICE_ID); |
Pawel Moll | 1862ee2 | 2015-01-23 14:45:55 +1030 | [diff] [blame] | 555 | if (vm_dev->vdev.id.device == 0) { |
| 556 | /* |
| 557 | * virtio-mmio device with an ID 0 is a (dummy) placeholder |
| 558 | * with no function. End probing now with no error reported. |
| 559 | */ |
Mark Rutland | c2e9080 | 2017-12-12 13:45:50 +0000 | [diff] [blame] | 560 | return -ENODEV; |
Pawel Moll | 1862ee2 | 2015-01-23 14:45:55 +1030 | [diff] [blame] | 561 | } |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 562 | vm_dev->vdev.id.vendor = readl(vm_dev->base + VIRTIO_MMIO_VENDOR_ID); |
| 563 | |
Robin Murphy | f7f6634 | 2017-01-10 17:51:17 +0000 | [diff] [blame] | 564 | if (vm_dev->version == 1) { |
Pawel Moll | 1862ee2 | 2015-01-23 14:45:55 +1030 | [diff] [blame] | 565 | writel(PAGE_SIZE, vm_dev->base + VIRTIO_MMIO_GUEST_PAGE_SIZE); |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 566 | |
Robin Murphy | f7f6634 | 2017-01-10 17:51:17 +0000 | [diff] [blame] | 567 | rc = dma_set_mask(&pdev->dev, DMA_BIT_MASK(64)); |
| 568 | /* |
| 569 | * In the legacy case, ensure our coherently-allocated virtio |
| 570 | * ring will be at an address expressable as a 32-bit PFN. |
| 571 | */ |
| 572 | if (!rc) |
| 573 | dma_set_coherent_mask(&pdev->dev, |
| 574 | DMA_BIT_MASK(32 + PAGE_SHIFT)); |
| 575 | } else { |
| 576 | rc = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64)); |
| 577 | } |
| 578 | if (rc) |
| 579 | rc = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32)); |
| 580 | if (rc) |
| 581 | dev_warn(&pdev->dev, "Failed to enable 64-bit or 32-bit DMA. Trying to continue, but this might not work.\n"); |
| 582 | |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 583 | platform_set_drvdata(pdev, vm_dev); |
| 584 | |
weiping zhang | 7eb781b | 2017-12-06 21:59:16 +0800 | [diff] [blame] | 585 | rc = register_virtio_device(&vm_dev->vdev); |
Mark Rutland | c2e9080 | 2017-12-12 13:45:50 +0000 | [diff] [blame] | 586 | if (rc) |
weiping zhang | 7eb781b | 2017-12-06 21:59:16 +0800 | [diff] [blame] | 587 | put_device(&vm_dev->vdev.dev); |
Mark Rutland | c2e9080 | 2017-12-12 13:45:50 +0000 | [diff] [blame] | 588 | |
weiping zhang | 7eb781b | 2017-12-06 21:59:16 +0800 | [diff] [blame] | 589 | return rc; |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 590 | } |
| 591 | |
Greg Kroah-Hartman | 8590dbc | 2012-12-21 13:05:30 -0800 | [diff] [blame] | 592 | static int virtio_mmio_remove(struct platform_device *pdev) |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 593 | { |
| 594 | struct virtio_mmio_device *vm_dev = platform_get_drvdata(pdev); |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 595 | unregister_virtio_device(&vm_dev->vdev); |
| 596 | |
| 597 | return 0; |
| 598 | } |
| 599 | |
| 600 | |
| 601 | |
Pawel Moll | 81a054c | 2012-05-09 18:30:16 +0100 | [diff] [blame] | 602 | /* Devices list parameter */ |
| 603 | |
| 604 | #if defined(CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES) |
| 605 | |
| 606 | static struct device vm_cmdline_parent = { |
| 607 | .init_name = "virtio-mmio-cmdline", |
| 608 | }; |
| 609 | |
| 610 | static int vm_cmdline_parent_registered; |
| 611 | static int vm_cmdline_id; |
| 612 | |
| 613 | static int vm_cmdline_set(const char *device, |
| 614 | const struct kernel_param *kp) |
| 615 | { |
| 616 | int err; |
| 617 | struct resource resources[2] = {}; |
| 618 | char *str; |
Pawel Moll | 40f9938 | 2012-11-22 12:30:24 +1030 | [diff] [blame] | 619 | long long int base, size; |
| 620 | unsigned int irq; |
Pawel Moll | 81a054c | 2012-05-09 18:30:16 +0100 | [diff] [blame] | 621 | int processed, consumed = 0; |
| 622 | struct platform_device *pdev; |
| 623 | |
Pawel Moll | 40f9938 | 2012-11-22 12:30:24 +1030 | [diff] [blame] | 624 | /* Consume "size" part of the command line parameter */ |
| 625 | size = memparse(device, &str); |
Pawel Moll | 81a054c | 2012-05-09 18:30:16 +0100 | [diff] [blame] | 626 | |
Pawel Moll | 40f9938 | 2012-11-22 12:30:24 +1030 | [diff] [blame] | 627 | /* Get "@<base>:<irq>[:<id>]" chunks */ |
Pawel Moll | 81a054c | 2012-05-09 18:30:16 +0100 | [diff] [blame] | 628 | processed = sscanf(str, "@%lli:%u%n:%d%n", |
Pawel Moll | 40f9938 | 2012-11-22 12:30:24 +1030 | [diff] [blame] | 629 | &base, &irq, &consumed, |
Pawel Moll | 81a054c | 2012-05-09 18:30:16 +0100 | [diff] [blame] | 630 | &vm_cmdline_id, &consumed); |
| 631 | |
Pawel Moll | 40f9938 | 2012-11-22 12:30:24 +1030 | [diff] [blame] | 632 | /* |
| 633 | * sscanf() must processes at least 2 chunks; also there |
| 634 | * must be no extra characters after the last chunk, so |
| 635 | * str[consumed] must be '\0' |
| 636 | */ |
| 637 | if (processed < 2 || str[consumed]) |
Pawel Moll | 81a054c | 2012-05-09 18:30:16 +0100 | [diff] [blame] | 638 | return -EINVAL; |
| 639 | |
Pawel Moll | 40f9938 | 2012-11-22 12:30:24 +1030 | [diff] [blame] | 640 | resources[0].flags = IORESOURCE_MEM; |
Pawel Moll | 81a054c | 2012-05-09 18:30:16 +0100 | [diff] [blame] | 641 | resources[0].start = base; |
Pawel Moll | 40f9938 | 2012-11-22 12:30:24 +1030 | [diff] [blame] | 642 | resources[0].end = base + size - 1; |
| 643 | |
| 644 | resources[1].flags = IORESOURCE_IRQ; |
| 645 | resources[1].start = resources[1].end = irq; |
Pawel Moll | 81a054c | 2012-05-09 18:30:16 +0100 | [diff] [blame] | 646 | |
| 647 | if (!vm_cmdline_parent_registered) { |
| 648 | err = device_register(&vm_cmdline_parent); |
| 649 | if (err) { |
| 650 | pr_err("Failed to register parent device!\n"); |
| 651 | return err; |
| 652 | } |
| 653 | vm_cmdline_parent_registered = 1; |
| 654 | } |
| 655 | |
| 656 | pr_info("Registering device virtio-mmio.%d at 0x%llx-0x%llx, IRQ %d.\n", |
| 657 | vm_cmdline_id, |
| 658 | (unsigned long long)resources[0].start, |
| 659 | (unsigned long long)resources[0].end, |
| 660 | (int)resources[1].start); |
| 661 | |
| 662 | pdev = platform_device_register_resndata(&vm_cmdline_parent, |
| 663 | "virtio-mmio", vm_cmdline_id++, |
| 664 | resources, ARRAY_SIZE(resources), NULL, 0); |
Pawel Moll | 81a054c | 2012-05-09 18:30:16 +0100 | [diff] [blame] | 665 | |
Vasyl Gomonovych | c2c9f9b | 2017-11-28 16:15:47 +0100 | [diff] [blame^] | 666 | return PTR_ERR_OR_ZERO(pdev); |
Pawel Moll | 81a054c | 2012-05-09 18:30:16 +0100 | [diff] [blame] | 667 | } |
| 668 | |
| 669 | static int vm_cmdline_get_device(struct device *dev, void *data) |
| 670 | { |
| 671 | char *buffer = data; |
| 672 | unsigned int len = strlen(buffer); |
| 673 | struct platform_device *pdev = to_platform_device(dev); |
| 674 | |
| 675 | snprintf(buffer + len, PAGE_SIZE - len, "0x%llx@0x%llx:%llu:%d\n", |
| 676 | pdev->resource[0].end - pdev->resource[0].start + 1ULL, |
| 677 | (unsigned long long)pdev->resource[0].start, |
| 678 | (unsigned long long)pdev->resource[1].start, |
| 679 | pdev->id); |
| 680 | return 0; |
| 681 | } |
| 682 | |
| 683 | static int vm_cmdline_get(char *buffer, const struct kernel_param *kp) |
| 684 | { |
| 685 | buffer[0] = '\0'; |
| 686 | device_for_each_child(&vm_cmdline_parent, buffer, |
| 687 | vm_cmdline_get_device); |
| 688 | return strlen(buffer) + 1; |
| 689 | } |
| 690 | |
Luis R. Rodriguez | 9c27847 | 2015-05-27 11:09:38 +0930 | [diff] [blame] | 691 | static const struct kernel_param_ops vm_cmdline_param_ops = { |
Pawel Moll | 81a054c | 2012-05-09 18:30:16 +0100 | [diff] [blame] | 692 | .set = vm_cmdline_set, |
| 693 | .get = vm_cmdline_get, |
| 694 | }; |
| 695 | |
| 696 | device_param_cb(device, &vm_cmdline_param_ops, NULL, S_IRUSR); |
| 697 | |
| 698 | static int vm_unregister_cmdline_device(struct device *dev, |
| 699 | void *data) |
| 700 | { |
| 701 | platform_device_unregister(to_platform_device(dev)); |
| 702 | |
| 703 | return 0; |
| 704 | } |
| 705 | |
| 706 | static void vm_unregister_cmdline_devices(void) |
| 707 | { |
| 708 | if (vm_cmdline_parent_registered) { |
| 709 | device_for_each_child(&vm_cmdline_parent, NULL, |
| 710 | vm_unregister_cmdline_device); |
| 711 | device_unregister(&vm_cmdline_parent); |
| 712 | vm_cmdline_parent_registered = 0; |
| 713 | } |
| 714 | } |
| 715 | |
| 716 | #else |
| 717 | |
| 718 | static void vm_unregister_cmdline_devices(void) |
| 719 | { |
| 720 | } |
| 721 | |
| 722 | #endif |
| 723 | |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 724 | /* Platform driver */ |
| 725 | |
| 726 | static struct of_device_id virtio_mmio_match[] = { |
| 727 | { .compatible = "virtio,mmio", }, |
| 728 | {}, |
| 729 | }; |
| 730 | MODULE_DEVICE_TABLE(of, virtio_mmio_match); |
| 731 | |
Graeme Gregory | 38c4ab8 | 2015-07-28 10:44:02 +0100 | [diff] [blame] | 732 | #ifdef CONFIG_ACPI |
| 733 | static const struct acpi_device_id virtio_mmio_acpi_match[] = { |
| 734 | { "LNRO0005", }, |
| 735 | { } |
| 736 | }; |
| 737 | MODULE_DEVICE_TABLE(acpi, virtio_mmio_acpi_match); |
| 738 | #endif |
| 739 | |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 740 | static struct platform_driver virtio_mmio_driver = { |
| 741 | .probe = virtio_mmio_probe, |
Greg Kroah-Hartman | 8590dbc | 2012-12-21 13:05:30 -0800 | [diff] [blame] | 742 | .remove = virtio_mmio_remove, |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 743 | .driver = { |
| 744 | .name = "virtio-mmio", |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 745 | .of_match_table = virtio_mmio_match, |
Graeme Gregory | 38c4ab8 | 2015-07-28 10:44:02 +0100 | [diff] [blame] | 746 | .acpi_match_table = ACPI_PTR(virtio_mmio_acpi_match), |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 747 | }, |
| 748 | }; |
| 749 | |
| 750 | static int __init virtio_mmio_init(void) |
| 751 | { |
| 752 | return platform_driver_register(&virtio_mmio_driver); |
| 753 | } |
| 754 | |
| 755 | static void __exit virtio_mmio_exit(void) |
| 756 | { |
| 757 | platform_driver_unregister(&virtio_mmio_driver); |
Pawel Moll | 81a054c | 2012-05-09 18:30:16 +0100 | [diff] [blame] | 758 | vm_unregister_cmdline_devices(); |
Pawel Moll | edfd52e | 2011-10-24 14:07:03 +0100 | [diff] [blame] | 759 | } |
| 760 | |
| 761 | module_init(virtio_mmio_init); |
| 762 | module_exit(virtio_mmio_exit); |
| 763 | |
| 764 | MODULE_AUTHOR("Pawel Moll <pawel.moll@arm.com>"); |
| 765 | MODULE_DESCRIPTION("Platform bus driver for memory mapped virtio devices"); |
| 766 | MODULE_LICENSE("GPL"); |