Merge branch 'kirkwood/boards' of git://git.infradead.org/users/jcooper/linux into...
[deliverable/linux.git] / drivers / gpu / drm / cirrus / cirrus_drv.c
CommitLineData
f9aa76a8
DA
1/*
2 * Copyright 2012 Red Hat <mjg@redhat.com>
3 *
4 * This file is subject to the terms and conditions of the GNU General
5 * Public License version 2. See the file COPYING in the main
6 * directory of this archive for more details.
7 *
8 * Authors: Matthew Garrett
9 * Dave Airlie
10 */
11#include <linux/module.h>
12#include <linux/console.h>
13#include "drmP.h"
14#include "drm.h"
15
16#include "cirrus_drv.h"
17
18int cirrus_modeset = -1;
19
20MODULE_PARM_DESC(modeset, "Disable/Enable modesetting");
21module_param_named(modeset, cirrus_modeset, int, 0400);
22
23/*
24 * This is the generic driver code. This binds the driver to the drm core,
25 * which then performs further device association and calls our graphics init
26 * functions
27 */
28
29static struct drm_driver driver;
30
31/* only bind to the cirrus chip in qemu */
32static DEFINE_PCI_DEVICE_TABLE(pciidlist) = {
33 { PCI_VENDOR_ID_CIRRUS, PCI_DEVICE_ID_CIRRUS_5446, 0x1af4, 0x1100, 0,
34 0, 0 },
35 {0,}
36};
37
dedc14e2
DA
38
39static void cirrus_kick_out_firmware_fb(struct pci_dev *pdev)
40{
41 struct apertures_struct *ap;
42 bool primary = false;
43
44 ap = alloc_apertures(1);
45 ap->ranges[0].base = pci_resource_start(pdev, 0);
46 ap->ranges[0].size = pci_resource_len(pdev, 0);
47
48#ifdef CONFIG_X86
49 primary = pdev->resource[PCI_ROM_RESOURCE].flags & IORESOURCE_ROM_SHADOW;
50#endif
51 remove_conflicting_framebuffers(ap, "cirrusdrmfb", primary);
52 kfree(ap);
53}
54
f9aa76a8
DA
55static int __devinit
56cirrus_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
57{
dedc14e2
DA
58 cirrus_kick_out_firmware_fb(pdev);
59
f9aa76a8
DA
60 return drm_get_pci_dev(pdev, ent, &driver);
61}
62
63static void cirrus_pci_remove(struct pci_dev *pdev)
64{
65 struct drm_device *dev = pci_get_drvdata(pdev);
66
67 drm_put_dev(dev);
68}
69
70static const struct file_operations cirrus_driver_fops = {
71 .owner = THIS_MODULE,
72 .open = drm_open,
73 .release = drm_release,
74 .unlocked_ioctl = drm_ioctl,
75 .mmap = cirrus_mmap,
76 .poll = drm_poll,
804d74ab
KP
77#ifdef CONFIG_COMPAT
78 .compat_ioctl = drm_compat_ioctl,
79#endif
f9aa76a8
DA
80 .fasync = drm_fasync,
81};
82static struct drm_driver driver = {
83 .driver_features = DRIVER_MODESET | DRIVER_GEM | DRIVER_USE_MTRR,
84 .load = cirrus_driver_load,
85 .unload = cirrus_driver_unload,
86 .fops = &cirrus_driver_fops,
87 .name = DRIVER_NAME,
88 .desc = DRIVER_DESC,
89 .date = DRIVER_DATE,
90 .major = DRIVER_MAJOR,
91 .minor = DRIVER_MINOR,
92 .patchlevel = DRIVER_PATCHLEVEL,
93 .gem_init_object = cirrus_gem_init_object,
94 .gem_free_object = cirrus_gem_free_object,
95 .dumb_create = cirrus_dumb_create,
96 .dumb_map_offset = cirrus_dumb_mmap_offset,
97 .dumb_destroy = cirrus_dumb_destroy,
98};
99
100static struct pci_driver cirrus_pci_driver = {
101 .name = DRIVER_NAME,
102 .id_table = pciidlist,
103 .probe = cirrus_pci_probe,
104 .remove = cirrus_pci_remove,
105};
106
107static int __init cirrus_init(void)
108{
4688a69d 109#ifdef CONFIG_VGA_CONSOLE
f9aa76a8
DA
110 if (vgacon_text_force() && cirrus_modeset == -1)
111 return -EINVAL;
4688a69d 112#endif
f9aa76a8
DA
113
114 if (cirrus_modeset == 0)
115 return -EINVAL;
116 return drm_pci_init(&driver, &cirrus_pci_driver);
117}
118
119static void __exit cirrus_exit(void)
120{
121 drm_pci_exit(&driver, &cirrus_pci_driver);
122}
123
124module_init(cirrus_init);
125module_exit(cirrus_exit);
126
127MODULE_DEVICE_TABLE(pci, pciidlist);
128MODULE_AUTHOR(DRIVER_AUTHOR);
129MODULE_DESCRIPTION(DRIVER_DESC);
130MODULE_LICENSE("GPL");
This page took 0.0537879999999999 seconds and 5 git commands to generate.