blob: 5d7fee385b70f1b004218a5458f49ac6485e1fd0 [file] [log] [blame]
Pawel Molledfd52e2011-10-24 14:07:03 +01001/*
2 * Virtio memory mapped device driver
3 *
4 * Copyright 2011, ARM Ltd.
5 *
6 * This module allows virtio devices to be used over a virtual, memory mapped
7 * platform device.
8 *
Pawel Moll81a054c2012-05-09 18:30:16 +01009 * 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 Molledfd52e2011-10-24 14:07:03 +010053 * Registers layout (all 32-bit wide):
54 *
55 * offset d. name description
56 * ------ -- ---------------- -----------------
57 *
58 * 0x000 R MagicValue Magic value "virt"
59 * 0x004 R Version Device version (current max. 1)
60 * 0x008 R DeviceID Virtio device ID
61 * 0x00c R VendorID Virtio vendor ID
62 *
63 * 0x010 R HostFeatures Features supported by the host
64 * 0x014 W HostFeaturesSel Set of host features to access via HostFeatures
65 *
66 * 0x020 W GuestFeatures Features activated by the guest
67 * 0x024 W GuestFeaturesSel Set of activated features to set via GuestFeatures
68 * 0x028 W GuestPageSize Size of guest's memory page in bytes
69 *
70 * 0x030 W QueueSel Queue selector
71 * 0x034 R QueueNumMax Maximum size of the currently selected queue
72 * 0x038 W QueueNum Queue size for the currently selected queue
73 * 0x03c W QueueAlign Used Ring alignment for the current queue
74 * 0x040 RW QueuePFN PFN for the currently selected queue
75 *
76 * 0x050 W QueueNotify Queue notifier
77 * 0x060 R InterruptStatus Interrupt status register
78 * 0x060 W InterruptACK Interrupt acknowledge register
79 * 0x070 RW Status Device status register
80 *
81 * 0x100+ RW Device-specific configuration space
82 *
83 * Based on Virtio PCI driver by Anthony Liguori, copyright IBM Corp. 2007
84 *
85 * This work is licensed under the terms of the GNU GPL, version 2 or later.
86 * See the COPYING file in the top-level directory.
87 */
88
Pawel Moll81a054c2012-05-09 18:30:16 +010089#define pr_fmt(fmt) "virtio-mmio: " fmt
90
Pawel Molledfd52e2011-10-24 14:07:03 +010091#include <linux/highmem.h>
92#include <linux/interrupt.h>
93#include <linux/io.h>
94#include <linux/list.h>
95#include <linux/module.h>
96#include <linux/platform_device.h>
97#include <linux/slab.h>
98#include <linux/spinlock.h>
99#include <linux/virtio.h>
100#include <linux/virtio_config.h>
101#include <linux/virtio_mmio.h>
102#include <linux/virtio_ring.h>
103
104
105
106/* The alignment to use between consumer and producer parts of vring.
107 * Currently hardcoded to the page size. */
108#define VIRTIO_MMIO_VRING_ALIGN PAGE_SIZE
109
110
111
112#define to_virtio_mmio_device(_plat_dev) \
113 container_of(_plat_dev, struct virtio_mmio_device, vdev)
114
115struct virtio_mmio_device {
116 struct virtio_device vdev;
117 struct platform_device *pdev;
118
119 void __iomem *base;
120 unsigned long version;
121
122 /* a list of queues so we can dispatch IRQs */
123 spinlock_t lock;
124 struct list_head virtqueues;
125};
126
127struct virtio_mmio_vq_info {
128 /* the actual virtqueue */
129 struct virtqueue *vq;
130
131 /* the number of entries in the queue */
132 unsigned int num;
133
Pawel Molledfd52e2011-10-24 14:07:03 +0100134 /* the virtual address of the ring queue */
135 void *queue;
136
137 /* the list node for the virtqueues list */
138 struct list_head node;
139};
140
141
142
143/* Configuration interface */
144
145static u32 vm_get_features(struct virtio_device *vdev)
146{
147 struct virtio_mmio_device *vm_dev = to_virtio_mmio_device(vdev);
148
149 /* TODO: Features > 32 bits */
150 writel(0, vm_dev->base + VIRTIO_MMIO_HOST_FEATURES_SEL);
151
152 return readl(vm_dev->base + VIRTIO_MMIO_HOST_FEATURES);
153}
154
155static void vm_finalize_features(struct virtio_device *vdev)
156{
157 struct virtio_mmio_device *vm_dev = to_virtio_mmio_device(vdev);
158 int i;
159
160 /* Give virtio_ring a chance to accept features. */
161 vring_transport_features(vdev);
162
163 for (i = 0; i < ARRAY_SIZE(vdev->features); i++) {
Sasha Levinfe1a7fe2011-11-15 16:17:18 +0200164 writel(i, vm_dev->base + VIRTIO_MMIO_GUEST_FEATURES_SEL);
Pawel Molledfd52e2011-10-24 14:07:03 +0100165 writel(vdev->features[i],
166 vm_dev->base + VIRTIO_MMIO_GUEST_FEATURES);
167 }
168}
169
170static void vm_get(struct virtio_device *vdev, unsigned offset,
171 void *buf, unsigned len)
172{
173 struct virtio_mmio_device *vm_dev = to_virtio_mmio_device(vdev);
174 u8 *ptr = buf;
175 int i;
176
177 for (i = 0; i < len; i++)
178 ptr[i] = readb(vm_dev->base + VIRTIO_MMIO_CONFIG + offset + i);
179}
180
181static void vm_set(struct virtio_device *vdev, unsigned offset,
182 const void *buf, unsigned len)
183{
184 struct virtio_mmio_device *vm_dev = to_virtio_mmio_device(vdev);
185 const u8 *ptr = buf;
186 int i;
187
188 for (i = 0; i < len; i++)
189 writeb(ptr[i], vm_dev->base + VIRTIO_MMIO_CONFIG + offset + i);
190}
191
192static u8 vm_get_status(struct virtio_device *vdev)
193{
194 struct virtio_mmio_device *vm_dev = to_virtio_mmio_device(vdev);
195
196 return readl(vm_dev->base + VIRTIO_MMIO_STATUS) & 0xff;
197}
198
199static void vm_set_status(struct virtio_device *vdev, u8 status)
200{
201 struct virtio_mmio_device *vm_dev = to_virtio_mmio_device(vdev);
202
203 /* We should never be setting status to 0. */
204 BUG_ON(status == 0);
205
206 writel(status, vm_dev->base + VIRTIO_MMIO_STATUS);
207}
208
209static void vm_reset(struct virtio_device *vdev)
210{
211 struct virtio_mmio_device *vm_dev = to_virtio_mmio_device(vdev);
212
213 /* 0 status means a reset. */
214 writel(0, vm_dev->base + VIRTIO_MMIO_STATUS);
215}
216
217
218
219/* Transport interface */
220
221/* the notify function used when creating a virt queue */
222static void vm_notify(struct virtqueue *vq)
223{
224 struct virtio_mmio_device *vm_dev = to_virtio_mmio_device(vq->vdev);
Pawel Molledfd52e2011-10-24 14:07:03 +0100225
226 /* We write the queue's selector into the notification register to
227 * signal the other end */
Jason Wang17bb6d42012-08-28 13:54:13 +0200228 writel(virtqueue_get_queue_index(vq), vm_dev->base + VIRTIO_MMIO_QUEUE_NOTIFY);
Pawel Molledfd52e2011-10-24 14:07:03 +0100229}
230
231/* Notify all virtqueues on an interrupt. */
232static irqreturn_t vm_interrupt(int irq, void *opaque)
233{
234 struct virtio_mmio_device *vm_dev = opaque;
235 struct virtio_mmio_vq_info *info;
236 struct virtio_driver *vdrv = container_of(vm_dev->vdev.dev.driver,
237 struct virtio_driver, driver);
238 unsigned long status;
239 unsigned long flags;
240 irqreturn_t ret = IRQ_NONE;
241
242 /* Read and acknowledge interrupts */
243 status = readl(vm_dev->base + VIRTIO_MMIO_INTERRUPT_STATUS);
244 writel(status, vm_dev->base + VIRTIO_MMIO_INTERRUPT_ACK);
245
246 if (unlikely(status & VIRTIO_MMIO_INT_CONFIG)
247 && vdrv && vdrv->config_changed) {
248 vdrv->config_changed(&vm_dev->vdev);
249 ret = IRQ_HANDLED;
250 }
251
252 if (likely(status & VIRTIO_MMIO_INT_VRING)) {
253 spin_lock_irqsave(&vm_dev->lock, flags);
254 list_for_each_entry(info, &vm_dev->virtqueues, node)
255 ret |= vring_interrupt(irq, info->vq);
256 spin_unlock_irqrestore(&vm_dev->lock, flags);
257 }
258
259 return ret;
260}
261
262
263
264static void vm_del_vq(struct virtqueue *vq)
265{
266 struct virtio_mmio_device *vm_dev = to_virtio_mmio_device(vq->vdev);
267 struct virtio_mmio_vq_info *info = vq->priv;
268 unsigned long flags, size;
Jason Wang17bb6d42012-08-28 13:54:13 +0200269 unsigned int index = virtqueue_get_queue_index(vq);
Pawel Molledfd52e2011-10-24 14:07:03 +0100270
271 spin_lock_irqsave(&vm_dev->lock, flags);
272 list_del(&info->node);
273 spin_unlock_irqrestore(&vm_dev->lock, flags);
274
275 vring_del_virtqueue(vq);
276
277 /* Select and deactivate the queue */
Jason Wang17bb6d42012-08-28 13:54:13 +0200278 writel(index, vm_dev->base + VIRTIO_MMIO_QUEUE_SEL);
Pawel Molledfd52e2011-10-24 14:07:03 +0100279 writel(0, vm_dev->base + VIRTIO_MMIO_QUEUE_PFN);
280
281 size = PAGE_ALIGN(vring_size(info->num, VIRTIO_MMIO_VRING_ALIGN));
282 free_pages_exact(info->queue, size);
283 kfree(info);
284}
285
286static void vm_del_vqs(struct virtio_device *vdev)
287{
288 struct virtio_mmio_device *vm_dev = to_virtio_mmio_device(vdev);
289 struct virtqueue *vq, *n;
290
291 list_for_each_entry_safe(vq, n, &vdev->vqs, list)
292 vm_del_vq(vq);
293
294 free_irq(platform_get_irq(vm_dev->pdev, 0), vm_dev);
295}
296
297
298
299static struct virtqueue *vm_setup_vq(struct virtio_device *vdev, unsigned index,
300 void (*callback)(struct virtqueue *vq),
301 const char *name)
302{
303 struct virtio_mmio_device *vm_dev = to_virtio_mmio_device(vdev);
304 struct virtio_mmio_vq_info *info;
305 struct virtqueue *vq;
306 unsigned long flags, size;
307 int err;
308
Michael S. Tsirkin6457f122012-09-05 21:47:45 +0300309 if (!name)
310 return NULL;
311
Pawel Molledfd52e2011-10-24 14:07:03 +0100312 /* Select the queue we're interested in */
313 writel(index, vm_dev->base + VIRTIO_MMIO_QUEUE_SEL);
314
315 /* Queue shouldn't already be set up. */
316 if (readl(vm_dev->base + VIRTIO_MMIO_QUEUE_PFN)) {
317 err = -ENOENT;
318 goto error_available;
319 }
320
321 /* Allocate and fill out our active queue description */
322 info = kmalloc(sizeof(*info), GFP_KERNEL);
323 if (!info) {
324 err = -ENOMEM;
325 goto error_kmalloc;
326 }
Pawel Molledfd52e2011-10-24 14:07:03 +0100327
328 /* Allocate pages for the queue - start with a queue as big as
329 * possible (limited by maximum size allowed by device), drop down
330 * to a minimal size, just big enough to fit descriptor table
331 * and two rings (which makes it "alignment_size * 2")
332 */
333 info->num = readl(vm_dev->base + VIRTIO_MMIO_QUEUE_NUM_MAX);
334 while (1) {
335 size = PAGE_ALIGN(vring_size(info->num,
336 VIRTIO_MMIO_VRING_ALIGN));
337 /* Already smallest possible allocation? */
338 if (size <= VIRTIO_MMIO_VRING_ALIGN * 2) {
339 err = -ENOMEM;
340 goto error_alloc_pages;
341 }
342
343 info->queue = alloc_pages_exact(size, GFP_KERNEL | __GFP_ZERO);
344 if (info->queue)
345 break;
346
347 info->num /= 2;
348 }
349
350 /* Activate the queue */
351 writel(info->num, vm_dev->base + VIRTIO_MMIO_QUEUE_NUM);
352 writel(VIRTIO_MMIO_VRING_ALIGN,
353 vm_dev->base + VIRTIO_MMIO_QUEUE_ALIGN);
354 writel(virt_to_phys(info->queue) >> PAGE_SHIFT,
355 vm_dev->base + VIRTIO_MMIO_QUEUE_PFN);
356
357 /* Create the vring */
Jason Wang17bb6d42012-08-28 13:54:13 +0200358 vq = vring_new_virtqueue(index, info->num, VIRTIO_MMIO_VRING_ALIGN, vdev,
Rusty Russell7b21e342012-01-12 15:44:42 +1030359 true, info->queue, vm_notify, callback, name);
Pawel Molledfd52e2011-10-24 14:07:03 +0100360 if (!vq) {
361 err = -ENOMEM;
362 goto error_new_virtqueue;
363 }
364
365 vq->priv = info;
366 info->vq = vq;
367
368 spin_lock_irqsave(&vm_dev->lock, flags);
369 list_add(&info->node, &vm_dev->virtqueues);
370 spin_unlock_irqrestore(&vm_dev->lock, flags);
371
372 return vq;
373
374error_new_virtqueue:
375 writel(0, vm_dev->base + VIRTIO_MMIO_QUEUE_PFN);
376 free_pages_exact(info->queue, size);
377error_alloc_pages:
378 kfree(info);
379error_kmalloc:
380error_available:
381 return ERR_PTR(err);
382}
383
384static int vm_find_vqs(struct virtio_device *vdev, unsigned nvqs,
385 struct virtqueue *vqs[],
386 vq_callback_t *callbacks[],
387 const char *names[])
388{
389 struct virtio_mmio_device *vm_dev = to_virtio_mmio_device(vdev);
390 unsigned int irq = platform_get_irq(vm_dev->pdev, 0);
391 int i, err;
392
393 err = request_irq(irq, vm_interrupt, IRQF_SHARED,
394 dev_name(&vdev->dev), vm_dev);
395 if (err)
396 return err;
397
398 for (i = 0; i < nvqs; ++i) {
399 vqs[i] = vm_setup_vq(vdev, i, callbacks[i], names[i]);
400 if (IS_ERR(vqs[i])) {
401 vm_del_vqs(vdev);
402 return PTR_ERR(vqs[i]);
403 }
404 }
405
406 return 0;
407}
408
Rick Jones66846042011-11-14 14:17:08 +0000409static const char *vm_bus_name(struct virtio_device *vdev)
410{
411 struct virtio_mmio_device *vm_dev = to_virtio_mmio_device(vdev);
Pawel Molledfd52e2011-10-24 14:07:03 +0100412
Rick Jones66846042011-11-14 14:17:08 +0000413 return vm_dev->pdev->name;
414}
Pawel Molledfd52e2011-10-24 14:07:03 +0100415
416static struct virtio_config_ops virtio_mmio_config_ops = {
417 .get = vm_get,
418 .set = vm_set,
419 .get_status = vm_get_status,
420 .set_status = vm_set_status,
421 .reset = vm_reset,
422 .find_vqs = vm_find_vqs,
423 .del_vqs = vm_del_vqs,
424 .get_features = vm_get_features,
425 .finalize_features = vm_finalize_features,
Rick Jones66846042011-11-14 14:17:08 +0000426 .bus_name = vm_bus_name,
Pawel Molledfd52e2011-10-24 14:07:03 +0100427};
428
429
430
431/* Platform device */
432
433static int __devinit virtio_mmio_probe(struct platform_device *pdev)
434{
435 struct virtio_mmio_device *vm_dev;
436 struct resource *mem;
437 unsigned long magic;
438
439 mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
440 if (!mem)
441 return -EINVAL;
442
443 if (!devm_request_mem_region(&pdev->dev, mem->start,
444 resource_size(mem), pdev->name))
445 return -EBUSY;
446
447 vm_dev = devm_kzalloc(&pdev->dev, sizeof(*vm_dev), GFP_KERNEL);
448 if (!vm_dev)
449 return -ENOMEM;
450
451 vm_dev->vdev.dev.parent = &pdev->dev;
452 vm_dev->vdev.config = &virtio_mmio_config_ops;
453 vm_dev->pdev = pdev;
454 INIT_LIST_HEAD(&vm_dev->virtqueues);
455 spin_lock_init(&vm_dev->lock);
456
457 vm_dev->base = devm_ioremap(&pdev->dev, mem->start, resource_size(mem));
458 if (vm_dev->base == NULL)
459 return -EFAULT;
460
461 /* Check magic value */
462 magic = readl(vm_dev->base + VIRTIO_MMIO_MAGIC_VALUE);
463 if (memcmp(&magic, "virt", 4) != 0) {
464 dev_warn(&pdev->dev, "Wrong magic value 0x%08lx!\n", magic);
465 return -ENODEV;
466 }
467
468 /* Check device version */
469 vm_dev->version = readl(vm_dev->base + VIRTIO_MMIO_VERSION);
470 if (vm_dev->version != 1) {
471 dev_err(&pdev->dev, "Version %ld not supported!\n",
472 vm_dev->version);
473 return -ENXIO;
474 }
475
476 vm_dev->vdev.id.device = readl(vm_dev->base + VIRTIO_MMIO_DEVICE_ID);
477 vm_dev->vdev.id.vendor = readl(vm_dev->base + VIRTIO_MMIO_VENDOR_ID);
478
479 writel(PAGE_SIZE, vm_dev->base + VIRTIO_MMIO_GUEST_PAGE_SIZE);
480
481 platform_set_drvdata(pdev, vm_dev);
482
483 return register_virtio_device(&vm_dev->vdev);
484}
485
486static int __devexit virtio_mmio_remove(struct platform_device *pdev)
487{
488 struct virtio_mmio_device *vm_dev = platform_get_drvdata(pdev);
489
490 unregister_virtio_device(&vm_dev->vdev);
491
492 return 0;
493}
494
495
496
Pawel Moll81a054c2012-05-09 18:30:16 +0100497/* Devices list parameter */
498
499#if defined(CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES)
500
501static struct device vm_cmdline_parent = {
502 .init_name = "virtio-mmio-cmdline",
503};
504
505static int vm_cmdline_parent_registered;
506static int vm_cmdline_id;
507
508static int vm_cmdline_set(const char *device,
509 const struct kernel_param *kp)
510{
511 int err;
512 struct resource resources[2] = {};
513 char *str;
514 long long int base;
515 int processed, consumed = 0;
516 struct platform_device *pdev;
517
518 resources[0].flags = IORESOURCE_MEM;
519 resources[1].flags = IORESOURCE_IRQ;
520
521 resources[0].end = memparse(device, &str) - 1;
522
523 processed = sscanf(str, "@%lli:%u%n:%d%n",
524 &base, &resources[1].start, &consumed,
525 &vm_cmdline_id, &consumed);
526
527 if (processed < 2 || processed > 3 || str[consumed])
528 return -EINVAL;
529
530 resources[0].start = base;
531 resources[0].end += base;
532 resources[1].end = resources[1].start;
533
534 if (!vm_cmdline_parent_registered) {
535 err = device_register(&vm_cmdline_parent);
536 if (err) {
537 pr_err("Failed to register parent device!\n");
538 return err;
539 }
540 vm_cmdline_parent_registered = 1;
541 }
542
543 pr_info("Registering device virtio-mmio.%d at 0x%llx-0x%llx, IRQ %d.\n",
544 vm_cmdline_id,
545 (unsigned long long)resources[0].start,
546 (unsigned long long)resources[0].end,
547 (int)resources[1].start);
548
549 pdev = platform_device_register_resndata(&vm_cmdline_parent,
550 "virtio-mmio", vm_cmdline_id++,
551 resources, ARRAY_SIZE(resources), NULL, 0);
552 if (IS_ERR(pdev))
553 return PTR_ERR(pdev);
554
555 return 0;
556}
557
558static int vm_cmdline_get_device(struct device *dev, void *data)
559{
560 char *buffer = data;
561 unsigned int len = strlen(buffer);
562 struct platform_device *pdev = to_platform_device(dev);
563
564 snprintf(buffer + len, PAGE_SIZE - len, "0x%llx@0x%llx:%llu:%d\n",
565 pdev->resource[0].end - pdev->resource[0].start + 1ULL,
566 (unsigned long long)pdev->resource[0].start,
567 (unsigned long long)pdev->resource[1].start,
568 pdev->id);
569 return 0;
570}
571
572static int vm_cmdline_get(char *buffer, const struct kernel_param *kp)
573{
574 buffer[0] = '\0';
575 device_for_each_child(&vm_cmdline_parent, buffer,
576 vm_cmdline_get_device);
577 return strlen(buffer) + 1;
578}
579
580static struct kernel_param_ops vm_cmdline_param_ops = {
581 .set = vm_cmdline_set,
582 .get = vm_cmdline_get,
583};
584
585device_param_cb(device, &vm_cmdline_param_ops, NULL, S_IRUSR);
586
587static int vm_unregister_cmdline_device(struct device *dev,
588 void *data)
589{
590 platform_device_unregister(to_platform_device(dev));
591
592 return 0;
593}
594
595static void vm_unregister_cmdline_devices(void)
596{
597 if (vm_cmdline_parent_registered) {
598 device_for_each_child(&vm_cmdline_parent, NULL,
599 vm_unregister_cmdline_device);
600 device_unregister(&vm_cmdline_parent);
601 vm_cmdline_parent_registered = 0;
602 }
603}
604
605#else
606
607static void vm_unregister_cmdline_devices(void)
608{
609}
610
611#endif
612
Pawel Molledfd52e2011-10-24 14:07:03 +0100613/* Platform driver */
614
615static struct of_device_id virtio_mmio_match[] = {
616 { .compatible = "virtio,mmio", },
617 {},
618};
619MODULE_DEVICE_TABLE(of, virtio_mmio_match);
620
621static struct platform_driver virtio_mmio_driver = {
622 .probe = virtio_mmio_probe,
623 .remove = __devexit_p(virtio_mmio_remove),
624 .driver = {
625 .name = "virtio-mmio",
626 .owner = THIS_MODULE,
627 .of_match_table = virtio_mmio_match,
628 },
629};
630
631static int __init virtio_mmio_init(void)
632{
633 return platform_driver_register(&virtio_mmio_driver);
634}
635
636static void __exit virtio_mmio_exit(void)
637{
638 platform_driver_unregister(&virtio_mmio_driver);
Pawel Moll81a054c2012-05-09 18:30:16 +0100639 vm_unregister_cmdline_devices();
Pawel Molledfd52e2011-10-24 14:07:03 +0100640}
641
642module_init(virtio_mmio_init);
643module_exit(virtio_mmio_exit);
644
645MODULE_AUTHOR("Pawel Moll <pawel.moll@arm.com>");
646MODULE_DESCRIPTION("Platform bus driver for memory mapped virtio devices");
647MODULE_LICENSE("GPL");