2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License as published by
4 * the Free Software Foundation; either version 2 of the License, or
5 * (at your option) any later version.
9 #include <linux/module.h>
10 #include <linux/slab.h>
11 #include <drm/drm_fb_helper.h>
15 static bool enable_fbdev
= true;
16 module_param_named(fbdev
, enable_fbdev
, bool, 0444);
17 MODULE_PARM_DESC(fbdev
, "register fbdev device");
19 /* ---------------------------------------------------------------------- */
22 static void bochs_unload(struct drm_device
*dev
)
24 struct bochs_device
*bochs
= dev
->dev_private
;
26 bochs_fbdev_fini(bochs
);
27 bochs_kms_fini(bochs
);
31 dev
->dev_private
= NULL
;
34 static int bochs_load(struct drm_device
*dev
, unsigned long flags
)
36 struct bochs_device
*bochs
;
39 bochs
= kzalloc(sizeof(*bochs
), GFP_KERNEL
);
42 dev
->dev_private
= bochs
;
45 ret
= bochs_hw_init(dev
, flags
);
49 ret
= bochs_mm_init(bochs
);
53 ret
= bochs_kms_init(bochs
);
58 bochs_fbdev_init(bochs
);
67 static const struct file_operations bochs_fops
= {
70 .release
= drm_release
,
71 .unlocked_ioctl
= drm_ioctl
,
72 .compat_ioctl
= drm_compat_ioctl
,
79 static struct drm_driver bochs_driver
= {
80 .driver_features
= DRIVER_GEM
| DRIVER_MODESET
,
82 .unload
= bochs_unload
,
83 .set_busid
= drm_pci_set_busid
,
86 .desc
= "bochs dispi vga interface (qemu stdvga)",
90 .gem_free_object_unlocked
= bochs_gem_free_object
,
91 .dumb_create
= bochs_dumb_create
,
92 .dumb_map_offset
= bochs_dumb_mmap_offset
,
93 .dumb_destroy
= drm_gem_dumb_destroy
,
96 /* ---------------------------------------------------------------------- */
99 #ifdef CONFIG_PM_SLEEP
100 static int bochs_pm_suspend(struct device
*dev
)
102 struct pci_dev
*pdev
= to_pci_dev(dev
);
103 struct drm_device
*drm_dev
= pci_get_drvdata(pdev
);
104 struct bochs_device
*bochs
= drm_dev
->dev_private
;
106 drm_kms_helper_poll_disable(drm_dev
);
108 if (bochs
->fb
.initialized
) {
110 drm_fb_helper_set_suspend(&bochs
->fb
.helper
, 1);
117 static int bochs_pm_resume(struct device
*dev
)
119 struct pci_dev
*pdev
= to_pci_dev(dev
);
120 struct drm_device
*drm_dev
= pci_get_drvdata(pdev
);
121 struct bochs_device
*bochs
= drm_dev
->dev_private
;
123 drm_helper_resume_force_mode(drm_dev
);
125 if (bochs
->fb
.initialized
) {
127 drm_fb_helper_set_suspend(&bochs
->fb
.helper
, 0);
131 drm_kms_helper_poll_enable(drm_dev
);
136 static const struct dev_pm_ops bochs_pm_ops
= {
137 SET_SYSTEM_SLEEP_PM_OPS(bochs_pm_suspend
,
141 /* ---------------------------------------------------------------------- */
144 static int bochs_kick_out_firmware_fb(struct pci_dev
*pdev
)
146 struct apertures_struct
*ap
;
148 ap
= alloc_apertures(1);
152 ap
->ranges
[0].base
= pci_resource_start(pdev
, 0);
153 ap
->ranges
[0].size
= pci_resource_len(pdev
, 0);
154 drm_fb_helper_remove_conflicting_framebuffers(ap
, "bochsdrmfb", false);
160 static int bochs_pci_probe(struct pci_dev
*pdev
,
161 const struct pci_device_id
*ent
)
163 unsigned long fbsize
;
166 fbsize
= pci_resource_len(pdev
, 0);
167 if (fbsize
< 4 * 1024 * 1024) {
168 DRM_ERROR("less than 4 MB video memory, ignoring device\n");
172 ret
= bochs_kick_out_firmware_fb(pdev
);
176 return drm_get_pci_dev(pdev
, ent
, &bochs_driver
);
179 static void bochs_pci_remove(struct pci_dev
*pdev
)
181 struct drm_device
*dev
= pci_get_drvdata(pdev
);
186 static const struct pci_device_id bochs_pci_tbl
[] = {
190 .subvendor
= PCI_SUBVENDOR_ID_REDHAT_QUMRANET
,
191 .subdevice
= PCI_SUBDEVICE_ID_QEMU
,
192 .driver_data
= BOCHS_QEMU_STDVGA
,
197 .subvendor
= PCI_ANY_ID
,
198 .subdevice
= PCI_ANY_ID
,
199 .driver_data
= BOCHS_UNKNOWN
,
201 { /* end of list */ }
204 static struct pci_driver bochs_pci_driver
= {
206 .id_table
= bochs_pci_tbl
,
207 .probe
= bochs_pci_probe
,
208 .remove
= bochs_pci_remove
,
209 .driver
.pm
= &bochs_pm_ops
,
212 /* ---------------------------------------------------------------------- */
213 /* module init/exit */
215 static int __init
bochs_init(void)
217 return drm_pci_init(&bochs_driver
, &bochs_pci_driver
);
220 static void __exit
bochs_exit(void)
222 drm_pci_exit(&bochs_driver
, &bochs_pci_driver
);
225 module_init(bochs_init
);
226 module_exit(bochs_exit
);
228 MODULE_DEVICE_TABLE(pci
, bochs_pci_tbl
);
229 MODULE_AUTHOR("Gerd Hoffmann <kraxel@redhat.com>");
230 MODULE_LICENSE("GPL");