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>
14 static bool enable_fbdev
= true;
15 module_param_named(fbdev
, enable_fbdev
, bool, 0444);
16 MODULE_PARM_DESC(fbdev
, "register fbdev device");
18 /* ---------------------------------------------------------------------- */
21 static int bochs_unload(struct drm_device
*dev
)
23 struct bochs_device
*bochs
= dev
->dev_private
;
25 bochs_fbdev_fini(bochs
);
26 bochs_kms_fini(bochs
);
30 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
,
73 .compat_ioctl
= drm_compat_ioctl
,
81 static struct drm_driver bochs_driver
= {
82 .driver_features
= DRIVER_GEM
| DRIVER_MODESET
,
84 .unload
= bochs_unload
,
87 .desc
= "bochs dispi vga interface (qemu stdvga)",
91 .gem_free_object
= bochs_gem_free_object
,
92 .dumb_create
= bochs_dumb_create
,
93 .dumb_map_offset
= bochs_dumb_mmap_offset
,
94 .dumb_destroy
= drm_gem_dumb_destroy
,
97 /* ---------------------------------------------------------------------- */
100 static int bochs_kick_out_firmware_fb(struct pci_dev
*pdev
)
102 struct apertures_struct
*ap
;
104 ap
= alloc_apertures(1);
108 ap
->ranges
[0].base
= pci_resource_start(pdev
, 0);
109 ap
->ranges
[0].size
= pci_resource_len(pdev
, 0);
110 remove_conflicting_framebuffers(ap
, "bochsdrmfb", false);
116 static int bochs_pci_probe(struct pci_dev
*pdev
,
117 const struct pci_device_id
*ent
)
121 ret
= bochs_kick_out_firmware_fb(pdev
);
125 return drm_get_pci_dev(pdev
, ent
, &bochs_driver
);
128 static void bochs_pci_remove(struct pci_dev
*pdev
)
130 struct drm_device
*dev
= pci_get_drvdata(pdev
);
135 static DEFINE_PCI_DEVICE_TABLE(bochs_pci_tbl
) = {
141 .driver_data
= BOCHS_QEMU_STDVGA
,
146 .subvendor
= PCI_ANY_ID
,
147 .subdevice
= PCI_ANY_ID
,
148 .driver_data
= BOCHS_UNKNOWN
,
150 { /* end of list */ }
153 static struct pci_driver bochs_pci_driver
= {
155 .id_table
= bochs_pci_tbl
,
156 .probe
= bochs_pci_probe
,
157 .remove
= bochs_pci_remove
,
160 /* ---------------------------------------------------------------------- */
161 /* module init/exit */
163 static int __init
bochs_init(void)
165 return drm_pci_init(&bochs_driver
, &bochs_pci_driver
);
168 static void __exit
bochs_exit(void)
170 drm_pci_exit(&bochs_driver
, &bochs_pci_driver
);
173 module_init(bochs_init
);
174 module_exit(bochs_exit
);
176 MODULE_DEVICE_TABLE(pci
, bochs_pci_tbl
);
177 MODULE_AUTHOR("Gerd Hoffmann <kraxel@redhat.com>");
178 MODULE_LICENSE("GPL");