sched: Remove double_rq_lock() from __migrate_task()
[linux/fpc-iii.git] / drivers / gpu / drm / bochs / bochs_drv.c
blob9c13df29fd20ea2306f3d4b57369d9ce971566ec
1 /*
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.
6 */
8 #include <linux/mm.h>
9 #include <linux/module.h>
10 #include <linux/slab.h>
12 #include "bochs.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 /* ---------------------------------------------------------------------- */
19 /* drm interface */
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);
27 bochs_mm_fini(bochs);
28 bochs_hw_fini(dev);
29 kfree(bochs);
30 dev->dev_private = NULL;
31 return 0;
34 static int bochs_load(struct drm_device *dev, unsigned long flags)
36 struct bochs_device *bochs;
37 int ret;
39 bochs = kzalloc(sizeof(*bochs), GFP_KERNEL);
40 if (bochs == NULL)
41 return -ENOMEM;
42 dev->dev_private = bochs;
43 bochs->dev = dev;
45 ret = bochs_hw_init(dev, flags);
46 if (ret)
47 goto err;
49 ret = bochs_mm_init(bochs);
50 if (ret)
51 goto err;
53 ret = bochs_kms_init(bochs);
54 if (ret)
55 goto err;
57 if (enable_fbdev)
58 bochs_fbdev_init(bochs);
60 return 0;
62 err:
63 bochs_unload(dev);
64 return ret;
67 static const struct file_operations bochs_fops = {
68 .owner = THIS_MODULE,
69 .open = drm_open,
70 .release = drm_release,
71 .unlocked_ioctl = drm_ioctl,
72 #ifdef CONFIG_COMPAT
73 .compat_ioctl = drm_compat_ioctl,
74 #endif
75 .poll = drm_poll,
76 .read = drm_read,
77 .llseek = no_llseek,
78 .mmap = bochs_mmap,
81 static struct drm_driver bochs_driver = {
82 .driver_features = DRIVER_GEM | DRIVER_MODESET,
83 .load = bochs_load,
84 .unload = bochs_unload,
85 .fops = &bochs_fops,
86 .name = "bochs-drm",
87 .desc = "bochs dispi vga interface (qemu stdvga)",
88 .date = "20130925",
89 .major = 1,
90 .minor = 0,
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 /* ---------------------------------------------------------------------- */
98 /* pm interface */
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) {
109 console_lock();
110 fb_set_suspend(bochs->fb.helper.fbdev, 1);
111 console_unlock();
114 return 0;
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) {
126 console_lock();
127 fb_set_suspend(bochs->fb.helper.fbdev, 0);
128 console_unlock();
131 drm_kms_helper_poll_enable(drm_dev);
132 return 0;
135 static const struct dev_pm_ops bochs_pm_ops = {
136 SET_SYSTEM_SLEEP_PM_OPS(bochs_pm_suspend,
137 bochs_pm_resume)
140 /* ---------------------------------------------------------------------- */
141 /* pci interface */
143 static int bochs_kick_out_firmware_fb(struct pci_dev *pdev)
145 struct apertures_struct *ap;
147 ap = alloc_apertures(1);
148 if (!ap)
149 return -ENOMEM;
151 ap->ranges[0].base = pci_resource_start(pdev, 0);
152 ap->ranges[0].size = pci_resource_len(pdev, 0);
153 remove_conflicting_framebuffers(ap, "bochsdrmfb", false);
154 kfree(ap);
156 return 0;
159 static int bochs_pci_probe(struct pci_dev *pdev,
160 const struct pci_device_id *ent)
162 int ret;
164 ret = bochs_kick_out_firmware_fb(pdev);
165 if (ret)
166 return ret;
168 return drm_get_pci_dev(pdev, ent, &bochs_driver);
171 static void bochs_pci_remove(struct pci_dev *pdev)
173 struct drm_device *dev = pci_get_drvdata(pdev);
175 drm_put_dev(dev);
178 static DEFINE_PCI_DEVICE_TABLE(bochs_pci_tbl) = {
180 .vendor = 0x1234,
181 .device = 0x1111,
182 .subvendor = 0x1af4,
183 .subdevice = 0x1100,
184 .driver_data = BOCHS_QEMU_STDVGA,
187 .vendor = 0x1234,
188 .device = 0x1111,
189 .subvendor = PCI_ANY_ID,
190 .subdevice = PCI_ANY_ID,
191 .driver_data = BOCHS_UNKNOWN,
193 { /* end of list */ }
196 static struct pci_driver bochs_pci_driver = {
197 .name = "bochs-drm",
198 .id_table = bochs_pci_tbl,
199 .probe = bochs_pci_probe,
200 .remove = bochs_pci_remove,
201 .driver.pm = &bochs_pm_ops,
204 /* ---------------------------------------------------------------------- */
205 /* module init/exit */
207 static int __init bochs_init(void)
209 return drm_pci_init(&bochs_driver, &bochs_pci_driver);
212 static void __exit bochs_exit(void)
214 drm_pci_exit(&bochs_driver, &bochs_pci_driver);
217 module_init(bochs_init);
218 module_exit(bochs_exit);
220 MODULE_DEVICE_TABLE(pci, bochs_pci_tbl);
221 MODULE_AUTHOR("Gerd Hoffmann <kraxel@redhat.com>");
222 MODULE_LICENSE("GPL");