blob: 7df8d0c9026acb81e6bf25bf7bc19c2ba0911cc8 [file] [log] [blame]
Dave Airliedc5698e2013-09-09 10:02:56 +10001/*
2 * Copyright (C) 2015 Red Hat, Inc.
3 * All Rights Reserved.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining
6 * a copy of this software and associated documentation files (the
7 * "Software"), to deal in the Software without restriction, including
8 * without limitation the rights to use, copy, modify, merge, publish,
9 * distribute, sublicense, and/or sell copies of the Software, and to
10 * permit persons to whom the Software is furnished to do so, subject to
11 * the following conditions:
12 *
13 * The above copyright notice and this permission notice (including the
14 * next paragraph) shall be included in all copies or substantial
15 * portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
18 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
20 * IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE
21 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
22 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
23 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24 */
25
26#include <linux/pci.h>
Daniel Vetter44adece2016-08-10 18:52:34 +020027#include <drm/drm_fb_helper.h>
Dave Airliedc5698e2013-09-09 10:02:56 +100028
29#include "virtgpu_drv.h"
30
Gerd Hoffmann50cb9412015-03-26 16:29:29 +010031static void virtio_pci_kick_out_firmware_fb(struct pci_dev *pci_dev)
32{
33 struct apertures_struct *ap;
34 bool primary;
35
36 ap = alloc_apertures(1);
37 if (!ap)
38 return;
39
40 ap->ranges[0].base = pci_resource_start(pci_dev, 0);
41 ap->ranges[0].size = pci_resource_len(pci_dev, 0);
42
43 primary = pci_dev->resource[PCI_ROM_RESOURCE].flags
44 & IORESOURCE_ROM_SHADOW;
45
Daniel Vetter44adece2016-08-10 18:52:34 +020046 drm_fb_helper_remove_conflicting_framebuffers(ap, "virtiodrmfb", primary);
Gerd Hoffmann50cb9412015-03-26 16:29:29 +010047
48 kfree(ap);
49}
50
Dave Airliedc5698e2013-09-09 10:02:56 +100051int drm_virtio_init(struct drm_driver *driver, struct virtio_device *vdev)
52{
53 struct drm_device *dev;
54 int ret;
55
56 dev = drm_dev_alloc(driver, &vdev->dev);
Tom Gundersen0f288602016-09-21 16:59:19 +020057 if (IS_ERR(dev))
58 return PTR_ERR(dev);
Dave Airliedc5698e2013-09-09 10:02:56 +100059 vdev->priv = dev;
60
61 if (strcmp(vdev->dev.parent->bus->name, "pci") == 0) {
62 struct pci_dev *pdev = to_pci_dev(vdev->dev.parent);
Gerd Hoffmann9785b432016-10-04 11:19:08 +020063 const char *pname = dev_name(&pdev->dev);
Dave Airliedc5698e2013-09-09 10:02:56 +100064 bool vga = (pdev->class >> 8) == PCI_CLASS_DISPLAY_VGA;
Gerd Hoffmann9785b432016-10-04 11:19:08 +020065 char unique[20];
Dave Airliedc5698e2013-09-09 10:02:56 +100066
Gerd Hoffmann9785b432016-10-04 11:19:08 +020067 DRM_INFO("pci: %s detected at %s\n",
68 vga ? "virtio-vga" : "virtio-gpu-pci",
69 pname);
Dave Airliedc5698e2013-09-09 10:02:56 +100070 dev->pdev = pdev;
Gerd Hoffmann50cb9412015-03-26 16:29:29 +010071 if (vga)
72 virtio_pci_kick_out_firmware_fb(pdev);
Gerd Hoffmann9785b432016-10-04 11:19:08 +020073
74 snprintf(unique, sizeof(unique), "pci:%s", pname);
75 ret = drm_dev_set_unique(dev, unique);
76 if (ret)
77 goto err_free;
78
Dave Airliedc5698e2013-09-09 10:02:56 +100079 }
80
81 ret = drm_dev_register(dev, 0);
82 if (ret)
83 goto err_free;
84
Dave Airliedc5698e2013-09-09 10:02:56 +100085 return 0;
86
87err_free:
88 drm_dev_unref(dev);
89 return ret;
90}