OSDN Git Service

clk: at91: fix masterck name
[uclinux-h8/linux.git] / drivers / misc / mic / vop / vop_main.c
1 /*
2  * Intel MIC Platform Software Stack (MPSS)
3  *
4  * Copyright(c) 2016 Intel Corporation.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License, version 2, as
8  * published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13  * General Public License for more details.
14  *
15  * The full GNU General Public License is included in this distribution in
16  * the file called "COPYING".
17  *
18  * Adapted from:
19  *
20  * virtio for kvm on s390
21  *
22  * Copyright IBM Corp. 2008
23  *
24  * This program is free software; you can redistribute it and/or modify
25  * it under the terms of the GNU General Public License (version 2 only)
26  * as published by the Free Software Foundation.
27  *
28  *    Author(s): Christian Borntraeger <borntraeger@de.ibm.com>
29  *
30  * Intel Virtio Over PCIe (VOP) driver.
31  *
32  */
33 #include <linux/delay.h>
34 #include <linux/module.h>
35 #include <linux/sched.h>
36 #include <linux/dma-mapping.h>
37
38 #include "vop_main.h"
39
40 #define VOP_MAX_VRINGS 4
41
42 /*
43  * _vop_vdev - Allocated per virtio device instance injected by the peer.
44  *
45  * @vdev: Virtio device
46  * @desc: Virtio device page descriptor
47  * @dc: Virtio device control
48  * @vpdev: VOP device which is the parent for this virtio device
49  * @vr: Buffer for accessing the VRING
50  * @used: Buffer for used
51  * @used_size: Size of the used buffer
52  * @reset_done: Track whether VOP reset is complete
53  * @virtio_cookie: Cookie returned upon requesting a interrupt
54  * @c2h_vdev_db: The doorbell used by the guest to interrupt the host
55  * @h2c_vdev_db: The doorbell used by the host to interrupt the guest
56  * @dnode: The destination node
57  */
58 struct _vop_vdev {
59         struct virtio_device vdev;
60         struct mic_device_desc __iomem *desc;
61         struct mic_device_ctrl __iomem *dc;
62         struct vop_device *vpdev;
63         void __iomem *vr[VOP_MAX_VRINGS];
64         dma_addr_t used[VOP_MAX_VRINGS];
65         int used_size[VOP_MAX_VRINGS];
66         struct completion reset_done;
67         struct mic_irq *virtio_cookie;
68         int c2h_vdev_db;
69         int h2c_vdev_db;
70         int dnode;
71 };
72
73 #define to_vopvdev(vd) container_of(vd, struct _vop_vdev, vdev)
74
75 #define _vop_aligned_desc_size(d) __mic_align(_vop_desc_size(d), 8)
76
77 /* Helper API to obtain the parent of the virtio device */
78 static inline struct device *_vop_dev(struct _vop_vdev *vdev)
79 {
80         return vdev->vdev.dev.parent;
81 }
82
83 static inline unsigned _vop_desc_size(struct mic_device_desc __iomem *desc)
84 {
85         return sizeof(*desc)
86                 + ioread8(&desc->num_vq) * sizeof(struct mic_vqconfig)
87                 + ioread8(&desc->feature_len) * 2
88                 + ioread8(&desc->config_len);
89 }
90
91 static inline struct mic_vqconfig __iomem *
92 _vop_vq_config(struct mic_device_desc __iomem *desc)
93 {
94         return (struct mic_vqconfig __iomem *)(desc + 1);
95 }
96
97 static inline u8 __iomem *
98 _vop_vq_features(struct mic_device_desc __iomem *desc)
99 {
100         return (u8 __iomem *)(_vop_vq_config(desc) + ioread8(&desc->num_vq));
101 }
102
103 static inline u8 __iomem *
104 _vop_vq_configspace(struct mic_device_desc __iomem *desc)
105 {
106         return _vop_vq_features(desc) + ioread8(&desc->feature_len) * 2;
107 }
108
109 static inline unsigned
110 _vop_total_desc_size(struct mic_device_desc __iomem *desc)
111 {
112         return _vop_aligned_desc_size(desc) + sizeof(struct mic_device_ctrl);
113 }
114
115 /* This gets the device's feature bits. */
116 static u64 vop_get_features(struct virtio_device *vdev)
117 {
118         unsigned int i, bits;
119         u32 features = 0;
120         struct mic_device_desc __iomem *desc = to_vopvdev(vdev)->desc;
121         u8 __iomem *in_features = _vop_vq_features(desc);
122         int feature_len = ioread8(&desc->feature_len);
123
124         bits = min_t(unsigned, feature_len, sizeof(vdev->features)) * 8;
125         for (i = 0; i < bits; i++)
126                 if (ioread8(&in_features[i / 8]) & (BIT(i % 8)))
127                         features |= BIT(i);
128
129         return features;
130 }
131
132 static void vop_transport_features(struct virtio_device *vdev)
133 {
134         /*
135          * Packed ring isn't enabled on virtio_vop for now,
136          * because virtio_vop uses vring_new_virtqueue() which
137          * creates virtio rings on preallocated memory.
138          */
139         __virtio_clear_bit(vdev, VIRTIO_F_RING_PACKED);
140 }
141
142 static int vop_finalize_features(struct virtio_device *vdev)
143 {
144         unsigned int i, bits;
145         struct mic_device_desc __iomem *desc = to_vopvdev(vdev)->desc;
146         u8 feature_len = ioread8(&desc->feature_len);
147         /* Second half of bitmap is features we accept. */
148         u8 __iomem *out_features =
149                 _vop_vq_features(desc) + feature_len;
150
151         /* Give virtio_ring a chance to accept features. */
152         vring_transport_features(vdev);
153
154         /* Give virtio_vop a chance to accept features. */
155         vop_transport_features(vdev);
156
157         memset_io(out_features, 0, feature_len);
158         bits = min_t(unsigned, feature_len,
159                      sizeof(vdev->features)) * 8;
160         for (i = 0; i < bits; i++) {
161                 if (__virtio_test_bit(vdev, i))
162                         iowrite8(ioread8(&out_features[i / 8]) | (1 << (i % 8)),
163                                  &out_features[i / 8]);
164         }
165         return 0;
166 }
167
168 /*
169  * Reading and writing elements in config space
170  */
171 static void vop_get(struct virtio_device *vdev, unsigned int offset,
172                     void *buf, unsigned len)
173 {
174         struct mic_device_desc __iomem *desc = to_vopvdev(vdev)->desc;
175
176         if (offset + len > ioread8(&desc->config_len))
177                 return;
178         memcpy_fromio(buf, _vop_vq_configspace(desc) + offset, len);
179 }
180
181 static void vop_set(struct virtio_device *vdev, unsigned int offset,
182                     const void *buf, unsigned len)
183 {
184         struct mic_device_desc __iomem *desc = to_vopvdev(vdev)->desc;
185
186         if (offset + len > ioread8(&desc->config_len))
187                 return;
188         memcpy_toio(_vop_vq_configspace(desc) + offset, buf, len);
189 }
190
191 /*
192  * The operations to get and set the status word just access the status
193  * field of the device descriptor. set_status also interrupts the host
194  * to tell about status changes.
195  */
196 static u8 vop_get_status(struct virtio_device *vdev)
197 {
198         return ioread8(&to_vopvdev(vdev)->desc->status);
199 }
200
201 static void vop_set_status(struct virtio_device *dev, u8 status)
202 {
203         struct _vop_vdev *vdev = to_vopvdev(dev);
204         struct vop_device *vpdev = vdev->vpdev;
205
206         if (!status)
207                 return;
208         iowrite8(status, &vdev->desc->status);
209         vpdev->hw_ops->send_intr(vpdev, vdev->c2h_vdev_db);
210 }
211
212 /* Inform host on a virtio device reset and wait for ack from host */
213 static void vop_reset_inform_host(struct virtio_device *dev)
214 {
215         struct _vop_vdev *vdev = to_vopvdev(dev);
216         struct mic_device_ctrl __iomem *dc = vdev->dc;
217         struct vop_device *vpdev = vdev->vpdev;
218         int retry;
219
220         iowrite8(0, &dc->host_ack);
221         iowrite8(1, &dc->vdev_reset);
222         vpdev->hw_ops->send_intr(vpdev, vdev->c2h_vdev_db);
223
224         /* Wait till host completes all card accesses and acks the reset */
225         for (retry = 100; retry--;) {
226                 if (ioread8(&dc->host_ack))
227                         break;
228                 msleep(100);
229         };
230
231         dev_dbg(_vop_dev(vdev), "%s: retry: %d\n", __func__, retry);
232
233         /* Reset status to 0 in case we timed out */
234         iowrite8(0, &vdev->desc->status);
235 }
236
237 static void vop_reset(struct virtio_device *dev)
238 {
239         struct _vop_vdev *vdev = to_vopvdev(dev);
240
241         dev_dbg(_vop_dev(vdev), "%s: virtio id %d\n",
242                 __func__, dev->id.device);
243
244         vop_reset_inform_host(dev);
245         complete_all(&vdev->reset_done);
246 }
247
248 /*
249  * The virtio_ring code calls this API when it wants to notify the Host.
250  */
251 static bool vop_notify(struct virtqueue *vq)
252 {
253         struct _vop_vdev *vdev = vq->priv;
254         struct vop_device *vpdev = vdev->vpdev;
255
256         vpdev->hw_ops->send_intr(vpdev, vdev->c2h_vdev_db);
257         return true;
258 }
259
260 static void vop_del_vq(struct virtqueue *vq, int n)
261 {
262         struct _vop_vdev *vdev = to_vopvdev(vq->vdev);
263         struct vring *vr = (struct vring *)(vq + 1);
264         struct vop_device *vpdev = vdev->vpdev;
265
266         dma_unmap_single(&vpdev->dev, vdev->used[n],
267                          vdev->used_size[n], DMA_BIDIRECTIONAL);
268         free_pages((unsigned long)vr->used, get_order(vdev->used_size[n]));
269         vring_del_virtqueue(vq);
270         vpdev->hw_ops->iounmap(vpdev, vdev->vr[n]);
271         vdev->vr[n] = NULL;
272 }
273
274 static void vop_del_vqs(struct virtio_device *dev)
275 {
276         struct _vop_vdev *vdev = to_vopvdev(dev);
277         struct virtqueue *vq, *n;
278         int idx = 0;
279
280         dev_dbg(_vop_dev(vdev), "%s\n", __func__);
281
282         list_for_each_entry_safe(vq, n, &dev->vqs, list)
283                 vop_del_vq(vq, idx++);
284 }
285
286 /*
287  * This routine will assign vring's allocated in host/io memory. Code in
288  * virtio_ring.c however continues to access this io memory as if it were local
289  * memory without io accessors.
290  */
291 static struct virtqueue *vop_find_vq(struct virtio_device *dev,
292                                      unsigned index,
293                                      void (*callback)(struct virtqueue *vq),
294                                      const char *name, bool ctx)
295 {
296         struct _vop_vdev *vdev = to_vopvdev(dev);
297         struct vop_device *vpdev = vdev->vpdev;
298         struct mic_vqconfig __iomem *vqconfig;
299         struct mic_vqconfig config;
300         struct virtqueue *vq;
301         void __iomem *va;
302         struct _mic_vring_info __iomem *info;
303         void *used;
304         int vr_size, _vr_size, err, magic;
305         struct vring *vr;
306         u8 type = ioread8(&vdev->desc->type);
307
308         if (index >= ioread8(&vdev->desc->num_vq))
309                 return ERR_PTR(-ENOENT);
310
311         if (!name)
312                 return ERR_PTR(-ENOENT);
313
314         /* First assign the vring's allocated in host memory */
315         vqconfig = _vop_vq_config(vdev->desc) + index;
316         memcpy_fromio(&config, vqconfig, sizeof(config));
317         _vr_size = vring_size(le16_to_cpu(config.num), MIC_VIRTIO_RING_ALIGN);
318         vr_size = PAGE_ALIGN(_vr_size + sizeof(struct _mic_vring_info));
319         va = vpdev->hw_ops->ioremap(vpdev, le64_to_cpu(config.address),
320                         vr_size);
321         if (!va)
322                 return ERR_PTR(-ENOMEM);
323         vdev->vr[index] = va;
324         memset_io(va, 0x0, _vr_size);
325         vq = vring_new_virtqueue(
326                                 index,
327                                 le16_to_cpu(config.num), MIC_VIRTIO_RING_ALIGN,
328                                 dev,
329                                 false,
330                                 ctx,
331                                 (void __force *)va, vop_notify, callback, name);
332         if (!vq) {
333                 err = -ENOMEM;
334                 goto unmap;
335         }
336         info = va + _vr_size;
337         magic = ioread32(&info->magic);
338
339         if (WARN(magic != MIC_MAGIC + type + index, "magic mismatch")) {
340                 err = -EIO;
341                 goto unmap;
342         }
343
344         /* Allocate and reassign used ring now */
345         vdev->used_size[index] = PAGE_ALIGN(sizeof(__u16) * 3 +
346                                              sizeof(struct vring_used_elem) *
347                                              le16_to_cpu(config.num));
348         used = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
349                                         get_order(vdev->used_size[index]));
350         if (!used) {
351                 err = -ENOMEM;
352                 dev_err(_vop_dev(vdev), "%s %d err %d\n",
353                         __func__, __LINE__, err);
354                 goto del_vq;
355         }
356         vdev->used[index] = dma_map_single(&vpdev->dev, used,
357                                             vdev->used_size[index],
358                                             DMA_BIDIRECTIONAL);
359         if (dma_mapping_error(&vpdev->dev, vdev->used[index])) {
360                 err = -ENOMEM;
361                 dev_err(_vop_dev(vdev), "%s %d err %d\n",
362                         __func__, __LINE__, err);
363                 goto free_used;
364         }
365         writeq(vdev->used[index], &vqconfig->used_address);
366         /*
367          * To reassign the used ring here we are directly accessing
368          * struct vring_virtqueue which is a private data structure
369          * in virtio_ring.c. At the minimum, a BUILD_BUG_ON() in
370          * vring_new_virtqueue() would ensure that
371          *  (&vq->vring == (struct vring *) (&vq->vq + 1));
372          */
373         vr = (struct vring *)(vq + 1);
374         vr->used = used;
375
376         vq->priv = vdev;
377         return vq;
378 free_used:
379         free_pages((unsigned long)used,
380                    get_order(vdev->used_size[index]));
381 del_vq:
382         vring_del_virtqueue(vq);
383 unmap:
384         vpdev->hw_ops->iounmap(vpdev, vdev->vr[index]);
385         return ERR_PTR(err);
386 }
387
388 static int vop_find_vqs(struct virtio_device *dev, unsigned nvqs,
389                         struct virtqueue *vqs[],
390                         vq_callback_t *callbacks[],
391                         const char * const names[], const bool *ctx,
392                         struct irq_affinity *desc)
393 {
394         struct _vop_vdev *vdev = to_vopvdev(dev);
395         struct vop_device *vpdev = vdev->vpdev;
396         struct mic_device_ctrl __iomem *dc = vdev->dc;
397         int i, err, retry;
398
399         /* We must have this many virtqueues. */
400         if (nvqs > ioread8(&vdev->desc->num_vq))
401                 return -ENOENT;
402
403         for (i = 0; i < nvqs; ++i) {
404                 dev_dbg(_vop_dev(vdev), "%s: %d: %s\n",
405                         __func__, i, names[i]);
406                 vqs[i] = vop_find_vq(dev, i, callbacks[i], names[i],
407                                      ctx ? ctx[i] : false);
408                 if (IS_ERR(vqs[i])) {
409                         err = PTR_ERR(vqs[i]);
410                         goto error;
411                 }
412         }
413
414         iowrite8(1, &dc->used_address_updated);
415         /*
416          * Send an interrupt to the host to inform it that used
417          * rings have been re-assigned.
418          */
419         vpdev->hw_ops->send_intr(vpdev, vdev->c2h_vdev_db);
420         for (retry = 100; --retry;) {
421                 if (!ioread8(&dc->used_address_updated))
422                         break;
423                 msleep(100);
424         };
425
426         dev_dbg(_vop_dev(vdev), "%s: retry: %d\n", __func__, retry);
427         if (!retry) {
428                 err = -ENODEV;
429                 goto error;
430         }
431
432         return 0;
433 error:
434         vop_del_vqs(dev);
435         return err;
436 }
437
438 /*
439  * The config ops structure as defined by virtio config
440  */
441 static struct virtio_config_ops vop_vq_config_ops = {
442         .get_features = vop_get_features,
443         .finalize_features = vop_finalize_features,
444         .get = vop_get,
445         .set = vop_set,
446         .get_status = vop_get_status,
447         .set_status = vop_set_status,
448         .reset = vop_reset,
449         .find_vqs = vop_find_vqs,
450         .del_vqs = vop_del_vqs,
451 };
452
453 static irqreturn_t vop_virtio_intr_handler(int irq, void *data)
454 {
455         struct _vop_vdev *vdev = data;
456         struct vop_device *vpdev = vdev->vpdev;
457         struct virtqueue *vq;
458
459         vpdev->hw_ops->ack_interrupt(vpdev, vdev->h2c_vdev_db);
460         list_for_each_entry(vq, &vdev->vdev.vqs, list)
461                 vring_interrupt(0, vq);
462
463         return IRQ_HANDLED;
464 }
465
466 static void vop_virtio_release_dev(struct device *_d)
467 {
468         struct virtio_device *vdev =
469                         container_of(_d, struct virtio_device, dev);
470         struct _vop_vdev *vop_vdev =
471                         container_of(vdev, struct _vop_vdev, vdev);
472
473         kfree(vop_vdev);
474 }
475
476 /*
477  * adds a new device and register it with virtio
478  * appropriate drivers are loaded by the device model
479  */
480 static int _vop_add_device(struct mic_device_desc __iomem *d,
481                            unsigned int offset, struct vop_device *vpdev,
482                            int dnode)
483 {
484         struct _vop_vdev *vdev, *reg_dev = NULL;
485         int ret;
486         u8 type = ioread8(&d->type);
487
488         vdev = kzalloc(sizeof(*vdev), GFP_KERNEL);
489         if (!vdev)
490                 return -ENOMEM;
491
492         vdev->vpdev = vpdev;
493         vdev->vdev.dev.parent = &vpdev->dev;
494         vdev->vdev.dev.release = vop_virtio_release_dev;
495         vdev->vdev.id.device = type;
496         vdev->vdev.config = &vop_vq_config_ops;
497         vdev->desc = d;
498         vdev->dc = (void __iomem *)d + _vop_aligned_desc_size(d);
499         vdev->dnode = dnode;
500         vdev->vdev.priv = (void *)(u64)dnode;
501         init_completion(&vdev->reset_done);
502
503         vdev->h2c_vdev_db = vpdev->hw_ops->next_db(vpdev);
504         vdev->virtio_cookie = vpdev->hw_ops->request_irq(vpdev,
505                         vop_virtio_intr_handler, "virtio intr",
506                         vdev, vdev->h2c_vdev_db);
507         if (IS_ERR(vdev->virtio_cookie)) {
508                 ret = PTR_ERR(vdev->virtio_cookie);
509                 goto kfree;
510         }
511         iowrite8((u8)vdev->h2c_vdev_db, &vdev->dc->h2c_vdev_db);
512         vdev->c2h_vdev_db = ioread8(&vdev->dc->c2h_vdev_db);
513
514         ret = register_virtio_device(&vdev->vdev);
515         reg_dev = vdev;
516         if (ret) {
517                 dev_err(_vop_dev(vdev),
518                         "Failed to register vop device %u type %u\n",
519                         offset, type);
520                 goto free_irq;
521         }
522         writeq((u64)vdev, &vdev->dc->vdev);
523         dev_dbg(_vop_dev(vdev), "%s: registered vop device %u type %u vdev %p\n",
524                 __func__, offset, type, vdev);
525
526         return 0;
527
528 free_irq:
529         vpdev->hw_ops->free_irq(vpdev, vdev->virtio_cookie, vdev);
530 kfree:
531         if (reg_dev)
532                 put_device(&vdev->vdev.dev);
533         else
534                 kfree(vdev);
535         return ret;
536 }
537
538 /*
539  * match for a vop device with a specific desc pointer
540  */
541 static int vop_match_desc(struct device *dev, void *data)
542 {
543         struct virtio_device *_dev = dev_to_virtio(dev);
544         struct _vop_vdev *vdev = to_vopvdev(_dev);
545
546         return vdev->desc == (void __iomem *)data;
547 }
548
549 static void _vop_handle_config_change(struct mic_device_desc __iomem *d,
550                                       unsigned int offset,
551                                       struct vop_device *vpdev)
552 {
553         struct mic_device_ctrl __iomem *dc
554                 = (void __iomem *)d + _vop_aligned_desc_size(d);
555         struct _vop_vdev *vdev = (struct _vop_vdev *)readq(&dc->vdev);
556
557         if (ioread8(&dc->config_change) != MIC_VIRTIO_PARAM_CONFIG_CHANGED)
558                 return;
559
560         dev_dbg(&vpdev->dev, "%s %d\n", __func__, __LINE__);
561         virtio_config_changed(&vdev->vdev);
562         iowrite8(1, &dc->guest_ack);
563 }
564
565 /*
566  * removes a virtio device if a hot remove event has been
567  * requested by the host.
568  */
569 static int _vop_remove_device(struct mic_device_desc __iomem *d,
570                               unsigned int offset, struct vop_device *vpdev)
571 {
572         struct mic_device_ctrl __iomem *dc
573                 = (void __iomem *)d + _vop_aligned_desc_size(d);
574         struct _vop_vdev *vdev = (struct _vop_vdev *)readq(&dc->vdev);
575         u8 status;
576         int ret = -1;
577
578         if (ioread8(&dc->config_change) == MIC_VIRTIO_PARAM_DEV_REMOVE) {
579                 dev_dbg(&vpdev->dev,
580                         "%s %d config_change %d type %d vdev %p\n",
581                         __func__, __LINE__,
582                         ioread8(&dc->config_change), ioread8(&d->type), vdev);
583                 status = ioread8(&d->status);
584                 reinit_completion(&vdev->reset_done);
585                 unregister_virtio_device(&vdev->vdev);
586                 vpdev->hw_ops->free_irq(vpdev, vdev->virtio_cookie, vdev);
587                 iowrite8(-1, &dc->h2c_vdev_db);
588                 if (status & VIRTIO_CONFIG_S_DRIVER_OK)
589                         wait_for_completion(&vdev->reset_done);
590                 put_device(&vdev->vdev.dev);
591                 iowrite8(1, &dc->guest_ack);
592                 dev_dbg(&vpdev->dev, "%s %d guest_ack %d\n",
593                         __func__, __LINE__, ioread8(&dc->guest_ack));
594                 iowrite8(-1, &d->type);
595                 ret = 0;
596         }
597         return ret;
598 }
599
600 #define REMOVE_DEVICES true
601
602 static void _vop_scan_devices(void __iomem *dp, struct vop_device *vpdev,
603                               bool remove, int dnode)
604 {
605         s8 type;
606         unsigned int i;
607         struct mic_device_desc __iomem *d;
608         struct mic_device_ctrl __iomem *dc;
609         struct device *dev;
610         int ret;
611
612         for (i = sizeof(struct mic_bootparam);
613                         i < MIC_DP_SIZE; i += _vop_total_desc_size(d)) {
614                 d = dp + i;
615                 dc = (void __iomem *)d + _vop_aligned_desc_size(d);
616                 /*
617                  * This read barrier is paired with the corresponding write
618                  * barrier on the host which is inserted before adding or
619                  * removing a virtio device descriptor, by updating the type.
620                  */
621                 rmb();
622                 type = ioread8(&d->type);
623
624                 /* end of list */
625                 if (type == 0)
626                         break;
627
628                 if (type == -1)
629                         continue;
630
631                 /* device already exists */
632                 dev = device_find_child(&vpdev->dev, (void __force *)d,
633                                         vop_match_desc);
634                 if (dev) {
635                         if (remove)
636                                 iowrite8(MIC_VIRTIO_PARAM_DEV_REMOVE,
637                                          &dc->config_change);
638                         put_device(dev);
639                         _vop_handle_config_change(d, i, vpdev);
640                         ret = _vop_remove_device(d, i, vpdev);
641                         if (remove) {
642                                 iowrite8(0, &dc->config_change);
643                                 iowrite8(0, &dc->guest_ack);
644                         }
645                         continue;
646                 }
647
648                 /* new device */
649                 dev_dbg(&vpdev->dev, "%s %d Adding new virtio device %p\n",
650                         __func__, __LINE__, d);
651                 if (!remove)
652                         _vop_add_device(d, i, vpdev, dnode);
653         }
654 }
655
656 static void vop_scan_devices(struct vop_info *vi,
657                              struct vop_device *vpdev, bool remove)
658 {
659         void __iomem *dp = vpdev->hw_ops->get_remote_dp(vpdev);
660
661         if (!dp)
662                 return;
663         mutex_lock(&vi->vop_mutex);
664         _vop_scan_devices(dp, vpdev, remove, vpdev->dnode);
665         mutex_unlock(&vi->vop_mutex);
666 }
667
668 /*
669  * vop_hotplug_device tries to find changes in the device page.
670  */
671 static void vop_hotplug_devices(struct work_struct *work)
672 {
673         struct vop_info *vi = container_of(work, struct vop_info,
674                                              hotplug_work);
675
676         vop_scan_devices(vi, vi->vpdev, !REMOVE_DEVICES);
677 }
678
679 /*
680  * Interrupt handler for hot plug/config changes etc.
681  */
682 static irqreturn_t vop_extint_handler(int irq, void *data)
683 {
684         struct vop_info *vi = data;
685         struct mic_bootparam __iomem *bp;
686         struct vop_device *vpdev = vi->vpdev;
687
688         bp = vpdev->hw_ops->get_remote_dp(vpdev);
689         dev_dbg(&vpdev->dev, "%s %d hotplug work\n",
690                 __func__, __LINE__);
691         vpdev->hw_ops->ack_interrupt(vpdev, ioread8(&bp->h2c_config_db));
692         schedule_work(&vi->hotplug_work);
693         return IRQ_HANDLED;
694 }
695
696 static int vop_driver_probe(struct vop_device *vpdev)
697 {
698         struct vop_info *vi;
699         int rc;
700
701         vi = kzalloc(sizeof(*vi), GFP_KERNEL);
702         if (!vi) {
703                 rc = -ENOMEM;
704                 goto exit;
705         }
706         dev_set_drvdata(&vpdev->dev, vi);
707         vi->vpdev = vpdev;
708
709         mutex_init(&vi->vop_mutex);
710         INIT_WORK(&vi->hotplug_work, vop_hotplug_devices);
711         if (vpdev->dnode) {
712                 rc = vop_host_init(vi);
713                 if (rc < 0)
714                         goto free;
715         } else {
716                 struct mic_bootparam __iomem *bootparam;
717
718                 vop_scan_devices(vi, vpdev, !REMOVE_DEVICES);
719
720                 vi->h2c_config_db = vpdev->hw_ops->next_db(vpdev);
721                 vi->cookie = vpdev->hw_ops->request_irq(vpdev,
722                                                         vop_extint_handler,
723                                                         "virtio_config_intr",
724                                                         vi, vi->h2c_config_db);
725                 if (IS_ERR(vi->cookie)) {
726                         rc = PTR_ERR(vi->cookie);
727                         goto free;
728                 }
729                 bootparam = vpdev->hw_ops->get_remote_dp(vpdev);
730                 iowrite8(vi->h2c_config_db, &bootparam->h2c_config_db);
731         }
732         vop_init_debugfs(vi);
733         return 0;
734 free:
735         kfree(vi);
736 exit:
737         return rc;
738 }
739
740 static void vop_driver_remove(struct vop_device *vpdev)
741 {
742         struct vop_info *vi = dev_get_drvdata(&vpdev->dev);
743
744         if (vpdev->dnode) {
745                 vop_host_uninit(vi);
746         } else {
747                 struct mic_bootparam __iomem *bootparam =
748                         vpdev->hw_ops->get_remote_dp(vpdev);
749                 if (bootparam)
750                         iowrite8(-1, &bootparam->h2c_config_db);
751                 vpdev->hw_ops->free_irq(vpdev, vi->cookie, vi);
752                 flush_work(&vi->hotplug_work);
753                 vop_scan_devices(vi, vpdev, REMOVE_DEVICES);
754         }
755         vop_exit_debugfs(vi);
756         kfree(vi);
757 }
758
759 static struct vop_device_id id_table[] = {
760         { VOP_DEV_TRNSP, VOP_DEV_ANY_ID },
761         { 0 },
762 };
763
764 static struct vop_driver vop_driver = {
765         .driver.name =  KBUILD_MODNAME,
766         .driver.owner = THIS_MODULE,
767         .id_table = id_table,
768         .probe = vop_driver_probe,
769         .remove = vop_driver_remove,
770 };
771
772 module_vop_driver(vop_driver);
773
774 MODULE_DEVICE_TABLE(mbus, id_table);
775 MODULE_AUTHOR("Intel Corporation");
776 MODULE_DESCRIPTION("Intel(R) Virtio Over PCIe (VOP) driver");
777 MODULE_LICENSE("GPL v2");