qxl: add fb and ttm entry points for use by suspend/resume.
[deliverable/linux.git] / drivers / gpu / drm / qxl / qxl_drv.c
CommitLineData
f64122c1
DA
1/* vim: set ts=8 sw=8 tw=78 ai noexpandtab */
2/* qxl_drv.c -- QXL driver -*- linux-c -*-
3 *
4 * Copyright 2011 Red Hat, Inc.
5 * All Rights Reserved.
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the "Software"),
9 * to deal in the Software without restriction, including without limitation
10 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
11 * and/or sell copies of the Software, and to permit persons to whom the
12 * Software is furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the next
15 * paragraph) shall be included in all copies or substantial portions of the
16 * Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
21 * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
22 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
23 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
24 * OTHER DEALINGS IN THE SOFTWARE.
25 *
26 * Authors:
27 * Dave Airlie <airlie@redhat.com>
28 * Alon Levy <alevy@redhat.com>
29 */
30
31#include <linux/module.h>
32#include <linux/console.h>
33
34#include "drmP.h"
35#include "drm/drm.h"
36
37#include "qxl_drv.h"
38
39extern int qxl_max_ioctls;
40static DEFINE_PCI_DEVICE_TABLE(pciidlist) = {
41 { 0x1b36, 0x100, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA << 8,
42 0xffff00, 0 },
43 { 0x1b36, 0x100, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_OTHER << 8,
44 0xffff00, 0 },
45 { 0, 0, 0 },
46};
47MODULE_DEVICE_TABLE(pci, pciidlist);
48
6d01f1f5 49static int qxl_modeset = -1;
07f8d9bd 50int qxl_num_crtc = 4;
f64122c1
DA
51
52MODULE_PARM_DESC(modeset, "Disable/Enable modesetting");
53module_param_named(modeset, qxl_modeset, int, 0400);
54
07f8d9bd
DA
55MODULE_PARM_DESC(num_heads, "Number of virtual crtcs to expose (default 4)");
56module_param_named(num_heads, qxl_num_crtc, int, 0400);
57
f64122c1
DA
58static struct drm_driver qxl_driver;
59static struct pci_driver qxl_pci_driver;
60
61static int
62qxl_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
63{
64 if (pdev->revision < 4) {
65 DRM_ERROR("qxl too old, doesn't support client_monitors_config,"
66 " use xf86-video-qxl in user mode");
67 return -EINVAL; /* TODO: ENODEV ? */
68 }
69 return drm_get_pci_dev(pdev, ent, &qxl_driver);
70}
71
72static void
73qxl_pci_remove(struct pci_dev *pdev)
74{
75 struct drm_device *dev = pci_get_drvdata(pdev);
76
77 drm_put_dev(dev);
78}
79
80static struct pci_driver qxl_pci_driver = {
81 .name = DRIVER_NAME,
82 .id_table = pciidlist,
83 .probe = qxl_pci_probe,
84 .remove = qxl_pci_remove,
85};
86
87static const struct file_operations qxl_fops = {
88 .owner = THIS_MODULE,
89 .open = drm_open,
90 .release = drm_release,
91 .unlocked_ioctl = drm_ioctl,
92 .poll = drm_poll,
93 .fasync = drm_fasync,
94 .mmap = qxl_mmap,
95};
96
97static struct drm_driver qxl_driver = {
98 .driver_features = DRIVER_GEM | DRIVER_MODESET |
99 DRIVER_HAVE_IRQ | DRIVER_IRQ_SHARED,
100 .dev_priv_size = 0,
101 .load = qxl_driver_load,
102 .unload = qxl_driver_unload,
103
104 .dumb_create = qxl_mode_dumb_create,
105 .dumb_map_offset = qxl_mode_dumb_mmap,
106 .dumb_destroy = qxl_mode_dumb_destroy,
107#if defined(CONFIG_DEBUG_FS)
108 .debugfs_init = qxl_debugfs_init,
109 .debugfs_cleanup = qxl_debugfs_takedown,
110#endif
111 .gem_init_object = qxl_gem_object_init,
112 .gem_free_object = qxl_gem_object_free,
113 .gem_open_object = qxl_gem_object_open,
114 .gem_close_object = qxl_gem_object_close,
115 .fops = &qxl_fops,
116 .ioctls = qxl_ioctls,
117 .irq_handler = qxl_irq_handler,
118 .name = DRIVER_NAME,
119 .desc = DRIVER_DESC,
120 .date = DRIVER_DATE,
121 .major = 0,
122 .minor = 1,
123 .patchlevel = 0,
124};
125
126static int __init qxl_init(void)
127{
128#ifdef CONFIG_VGA_CONSOLE
129 if (vgacon_text_force() && qxl_modeset == -1)
130 return -EINVAL;
131#endif
132
133 if (qxl_modeset == 0)
134 return -EINVAL;
135 qxl_driver.num_ioctls = qxl_max_ioctls;
136 return drm_pci_init(&qxl_driver, &qxl_pci_driver);
137}
138
139static void __exit qxl_exit(void)
140{
141 drm_pci_exit(&qxl_driver, &qxl_pci_driver);
142}
143
144module_init(qxl_init);
145module_exit(qxl_exit);
146
147MODULE_AUTHOR(DRIVER_AUTHOR);
148MODULE_DESCRIPTION(DRIVER_DESC);
149MODULE_LICENSE("GPL and additional rights");
This page took 0.042998 seconds and 5 git commands to generate.