1 /* vim: set ts=8 sw=8 tw=78 ai noexpandtab */
2 /* qxl_drv.c -- QXL driver -*- linux-c -*-
4 * Copyright 2011 Red Hat, Inc.
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:
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
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.
27 * Dave Airlie <airlie@redhat.com>
28 * Alon Levy <alevy@redhat.com>
32 #include <linux/console.h>
33 #include <linux/module.h>
34 #include <linux/pci.h>
37 #include <drm/drm_drv.h>
38 #include <drm/drm_file.h>
39 #include <drm/drm_modeset_helper.h>
40 #include <drm/drm_prime.h>
41 #include <drm/drm_probe_helper.h>
43 #include "qxl_object.h"
45 static const struct pci_device_id pciidlist
[] = {
46 { 0x1b36, 0x100, PCI_ANY_ID
, PCI_ANY_ID
, PCI_CLASS_DISPLAY_VGA
<< 8,
48 { 0x1b36, 0x100, PCI_ANY_ID
, PCI_ANY_ID
, PCI_CLASS_DISPLAY_OTHER
<< 8,
52 MODULE_DEVICE_TABLE(pci
, pciidlist
);
54 static int qxl_modeset
= -1;
57 MODULE_PARM_DESC(modeset
, "Disable/Enable modesetting");
58 module_param_named(modeset
, qxl_modeset
, int, 0400);
60 MODULE_PARM_DESC(num_heads
, "Number of virtual crtcs to expose (default 4)");
61 module_param_named(num_heads
, qxl_num_crtc
, int, 0400);
63 static struct drm_driver qxl_driver
;
64 static struct pci_driver qxl_pci_driver
;
66 static bool is_vga(struct pci_dev
*pdev
)
68 return pdev
->class == PCI_CLASS_DISPLAY_VGA
<< 8;
72 qxl_pci_probe(struct pci_dev
*pdev
, const struct pci_device_id
*ent
)
74 struct qxl_device
*qdev
;
77 if (pdev
->revision
< 4) {
78 DRM_ERROR("qxl too old, doesn't support client_monitors_config,"
79 " use xf86-video-qxl in user mode");
80 return -EINVAL
; /* TODO: ENODEV ? */
83 qdev
= kzalloc(sizeof(struct qxl_device
), GFP_KERNEL
);
87 ret
= pci_enable_device(pdev
);
91 ret
= drm_fb_helper_remove_conflicting_pci_framebuffers(pdev
, "qxl");
96 ret
= vga_get_interruptible(pdev
, VGA_RSRC_LEGACY_IO
);
98 DRM_ERROR("can't get legacy vga ioports\n");
103 ret
= qxl_device_init(qdev
, &qxl_driver
, pdev
);
107 ret
= qxl_modeset_init(qdev
);
111 drm_kms_helper_poll_init(&qdev
->ddev
);
113 /* Complete initialization. */
114 ret
= drm_dev_register(&qdev
->ddev
, ent
->driver_data
);
116 goto modeset_cleanup
;
118 drm_fbdev_generic_setup(&qdev
->ddev
, 32);
122 qxl_modeset_fini(qdev
);
124 qxl_device_fini(qdev
);
127 vga_put(pdev
, VGA_RSRC_LEGACY_IO
);
129 pci_disable_device(pdev
);
136 qxl_pci_remove(struct pci_dev
*pdev
)
138 struct drm_device
*dev
= pci_get_drvdata(pdev
);
139 struct qxl_device
*qdev
= dev
->dev_private
;
141 drm_dev_unregister(dev
);
143 qxl_modeset_fini(qdev
);
144 qxl_device_fini(qdev
);
146 vga_put(pdev
, VGA_RSRC_LEGACY_IO
);
148 dev
->dev_private
= NULL
;
153 DEFINE_DRM_GEM_FOPS(qxl_fops
);
155 static int qxl_drm_freeze(struct drm_device
*dev
)
157 struct pci_dev
*pdev
= dev
->pdev
;
158 struct qxl_device
*qdev
= dev
->dev_private
;
161 ret
= drm_mode_config_helper_suspend(dev
);
165 qxl_destroy_monitors_object(qdev
);
166 qxl_surf_evict(qdev
);
167 qxl_vram_evict(qdev
);
169 while (!qxl_check_idle(qdev
->command_ring
));
170 while (!qxl_check_idle(qdev
->release_ring
))
171 qxl_queue_garbage_collect(qdev
, 1);
173 pci_save_state(pdev
);
178 static int qxl_drm_resume(struct drm_device
*dev
, bool thaw
)
180 struct qxl_device
*qdev
= dev
->dev_private
;
182 qdev
->ram_header
->int_mask
= QXL_INTERRUPT_MASK
;
184 qxl_reinit_memslots(qdev
);
185 qxl_ring_init_hdr(qdev
->release_ring
);
188 qxl_create_monitors_object(qdev
);
189 return drm_mode_config_helper_resume(dev
);
192 static int qxl_pm_suspend(struct device
*dev
)
194 struct pci_dev
*pdev
= to_pci_dev(dev
);
195 struct drm_device
*drm_dev
= pci_get_drvdata(pdev
);
198 error
= qxl_drm_freeze(drm_dev
);
202 pci_disable_device(pdev
);
203 pci_set_power_state(pdev
, PCI_D3hot
);
207 static int qxl_pm_resume(struct device
*dev
)
209 struct pci_dev
*pdev
= to_pci_dev(dev
);
210 struct drm_device
*drm_dev
= pci_get_drvdata(pdev
);
212 pci_set_power_state(pdev
, PCI_D0
);
213 pci_restore_state(pdev
);
214 if (pci_enable_device(pdev
)) {
218 return qxl_drm_resume(drm_dev
, false);
221 static int qxl_pm_thaw(struct device
*dev
)
223 struct drm_device
*drm_dev
= dev_get_drvdata(dev
);
225 return qxl_drm_resume(drm_dev
, true);
228 static int qxl_pm_freeze(struct device
*dev
)
230 struct drm_device
*drm_dev
= dev_get_drvdata(dev
);
232 return qxl_drm_freeze(drm_dev
);
235 static int qxl_pm_restore(struct device
*dev
)
237 struct pci_dev
*pdev
= to_pci_dev(dev
);
238 struct drm_device
*drm_dev
= pci_get_drvdata(pdev
);
239 struct qxl_device
*qdev
= drm_dev
->dev_private
;
242 return qxl_drm_resume(drm_dev
, false);
245 static const struct dev_pm_ops qxl_pm_ops
= {
246 .suspend
= qxl_pm_suspend
,
247 .resume
= qxl_pm_resume
,
248 .freeze
= qxl_pm_freeze
,
250 .poweroff
= qxl_pm_freeze
,
251 .restore
= qxl_pm_restore
,
253 static struct pci_driver qxl_pci_driver
= {
255 .id_table
= pciidlist
,
256 .probe
= qxl_pci_probe
,
257 .remove
= qxl_pci_remove
,
258 .driver
.pm
= &qxl_pm_ops
,
261 static struct drm_driver qxl_driver
= {
262 .driver_features
= DRIVER_GEM
| DRIVER_MODESET
| DRIVER_ATOMIC
,
264 .dumb_create
= qxl_mode_dumb_create
,
265 .dumb_map_offset
= qxl_mode_dumb_mmap
,
266 #if defined(CONFIG_DEBUG_FS)
267 .debugfs_init
= qxl_debugfs_init
,
269 .prime_handle_to_fd
= drm_gem_prime_handle_to_fd
,
270 .prime_fd_to_handle
= drm_gem_prime_fd_to_handle
,
271 .gem_prime_import_sg_table
= qxl_gem_prime_import_sg_table
,
272 .gem_prime_mmap
= qxl_gem_prime_mmap
,
274 .ioctls
= qxl_ioctls
,
275 .irq_handler
= qxl_irq_handler
,
284 static int __init
qxl_init(void)
286 if (vgacon_text_force() && qxl_modeset
== -1)
289 if (qxl_modeset
== 0)
291 qxl_driver
.num_ioctls
= qxl_max_ioctls
;
292 return pci_register_driver(&qxl_pci_driver
);
295 static void __exit
qxl_exit(void)
297 pci_unregister_driver(&qxl_pci_driver
);
300 module_init(qxl_init
);
301 module_exit(qxl_exit
);
303 MODULE_AUTHOR(DRIVER_AUTHOR
);
304 MODULE_DESCRIPTION(DRIVER_DESC
);
305 MODULE_LICENSE("GPL and additional rights");