blob: 29f040a7861b4e4b67a5282e4c7e9733ebb7075b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/**
2 * \file radeon_drv.c
3 * ATI Radeon driver
4 *
5 * \author Gareth Hughes <gareth@valinux.com>
6 */
7
8/*
9 * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
10 * All Rights Reserved.
11 *
12 * Permission is hereby granted, free of charge, to any person obtaining a
13 * copy of this software and associated documentation files (the "Software"),
14 * to deal in the Software without restriction, including without limitation
15 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
16 * and/or sell copies of the Software, and to permit persons to whom the
17 * Software is furnished to do so, subject to the following conditions:
18 *
19 * The above copyright notice and this permission notice (including the next
20 * paragraph) shall be included in all copies or substantial portions of the
21 * Software.
22 *
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
24 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
26 * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
27 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
28 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
29 * OTHER DEALINGS IN THE SOFTWARE.
30 */
31
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include "drmP.h"
33#include "drm.h"
34#include "radeon_drm.h"
35#include "radeon_drv.h"
36
37#include "drm_pciids.h"
Jerome Glisse771fe6b2009-06-05 14:42:42 +020038#include <linux/console.h>
39
40
Jerome Glisse771fe6b2009-06-05 14:42:42 +020041/*
42 * KMS wrapper.
43 */
44#define KMS_DRIVER_MAJOR 2
45#define KMS_DRIVER_MINOR 0
46#define KMS_DRIVER_PATCHLEVEL 0
47int radeon_driver_load_kms(struct drm_device *dev, unsigned long flags);
48int radeon_driver_unload_kms(struct drm_device *dev);
49int radeon_driver_firstopen_kms(struct drm_device *dev);
50void radeon_driver_lastclose_kms(struct drm_device *dev);
51int radeon_driver_open_kms(struct drm_device *dev, struct drm_file *file_priv);
52void radeon_driver_postclose_kms(struct drm_device *dev,
53 struct drm_file *file_priv);
54void radeon_driver_preclose_kms(struct drm_device *dev,
55 struct drm_file *file_priv);
56int radeon_suspend_kms(struct drm_device *dev, pm_message_t state);
57int radeon_resume_kms(struct drm_device *dev);
58u32 radeon_get_vblank_counter_kms(struct drm_device *dev, int crtc);
59int radeon_enable_vblank_kms(struct drm_device *dev, int crtc);
60void radeon_disable_vblank_kms(struct drm_device *dev, int crtc);
61void radeon_driver_irq_preinstall_kms(struct drm_device *dev);
62int radeon_driver_irq_postinstall_kms(struct drm_device *dev);
63void radeon_driver_irq_uninstall_kms(struct drm_device *dev);
64irqreturn_t radeon_driver_irq_handler_kms(DRM_IRQ_ARGS);
65int radeon_master_create_kms(struct drm_device *dev, struct drm_master *master);
66void radeon_master_destroy_kms(struct drm_device *dev,
67 struct drm_master *master);
68int radeon_dma_ioctl_kms(struct drm_device *dev, void *data,
69 struct drm_file *file_priv);
70int radeon_gem_object_init(struct drm_gem_object *obj);
71void radeon_gem_object_free(struct drm_gem_object *obj);
72extern struct drm_ioctl_desc radeon_ioctls_kms[];
73extern int radeon_max_kms_ioctl;
74int radeon_mmap(struct file *filp, struct vm_area_struct *vma);
75#if defined(CONFIG_DEBUG_FS)
76int radeon_debugfs_init(struct drm_minor *minor);
77void radeon_debugfs_cleanup(struct drm_minor *minor);
78#endif
Jerome Glisse771fe6b2009-06-05 14:42:42 +020079
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Dave Airlie689b9d72005-09-30 17:09:07 +100081int radeon_no_wb;
Jerome Glisse771fe6b2009-06-05 14:42:42 +020082int radeon_modeset = -1;
83int radeon_dynclks = -1;
84int radeon_r4xx_atom = 0;
85int radeon_agpmode = 0;
86int radeon_vram_limit = 0;
87int radeon_gart_size = 512; /* default gart size */
88int radeon_benchmarking = 0;
Michel Dänzerecc0b322009-07-21 11:23:57 +020089int radeon_testing = 0;
Jerome Glisse771fe6b2009-06-05 14:42:42 +020090int radeon_connector_table = 0;
Dave Airlie4ce001a2009-08-13 16:32:14 +100091int radeon_tv = 1;
Dave Airlie689b9d72005-09-30 17:09:07 +100092
Niels de Vos61a2d072008-07-31 00:07:23 -070093MODULE_PARM_DESC(no_wb, "Disable AGP writeback for scratch registers");
Dave Airlie689b9d72005-09-30 17:09:07 +100094module_param_named(no_wb, radeon_no_wb, int, 0444);
95
Jerome Glisse771fe6b2009-06-05 14:42:42 +020096MODULE_PARM_DESC(modeset, "Disable/Enable modesetting");
97module_param_named(modeset, radeon_modeset, int, 0400);
98
99MODULE_PARM_DESC(dynclks, "Disable/Enable dynamic clocks");
100module_param_named(dynclks, radeon_dynclks, int, 0444);
101
102MODULE_PARM_DESC(r4xx_atom, "Enable ATOMBIOS modesetting for R4xx");
103module_param_named(r4xx_atom, radeon_r4xx_atom, int, 0444);
104
105MODULE_PARM_DESC(vramlimit, "Restrict VRAM for testing");
106module_param_named(vramlimit, radeon_vram_limit, int, 0600);
107
108MODULE_PARM_DESC(agpmode, "AGP Mode (-1 == PCI)");
109module_param_named(agpmode, radeon_agpmode, int, 0444);
110
111MODULE_PARM_DESC(gartsize, "Size of PCIE/IGP gart to setup in megabytes (32,64, etc)\n");
112module_param_named(gartsize, radeon_gart_size, int, 0600);
113
114MODULE_PARM_DESC(benchmark, "Run benchmark");
115module_param_named(benchmark, radeon_benchmarking, int, 0444);
116
Michel Dänzerecc0b322009-07-21 11:23:57 +0200117MODULE_PARM_DESC(test, "Run tests");
118module_param_named(test, radeon_testing, int, 0444);
119
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200120MODULE_PARM_DESC(connector_table, "Force connector table");
121module_param_named(connector_table, radeon_connector_table, int, 0444);
Dave Airlie4ce001a2009-08-13 16:32:14 +1000122
123MODULE_PARM_DESC(tv, "TV enable (0 = disable)");
124module_param_named(tv, radeon_tv, int, 0444);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200125
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700126static int radeon_suspend(struct drm_device *dev, pm_message_t state)
127{
128 drm_radeon_private_t *dev_priv = dev->dev_private;
129
Dave Airlie03efb882009-03-10 18:36:38 +1000130 if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_R600)
131 return 0;
132
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700133 /* Disable *all* interrupts */
Alex Deucher800b6992009-03-06 11:47:54 -0500134 if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_RS600)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700135 RADEON_WRITE(R500_DxMODE_INT_MASK, 0);
136 RADEON_WRITE(RADEON_GEN_INT_CNTL, 0);
137 return 0;
138}
139
140static int radeon_resume(struct drm_device *dev)
141{
142 drm_radeon_private_t *dev_priv = dev->dev_private;
143
Dave Airlie03efb882009-03-10 18:36:38 +1000144 if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_R600)
145 return 0;
146
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700147 /* Restore interrupt registers */
Alex Deucher800b6992009-03-06 11:47:54 -0500148 if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_RS600)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700149 RADEON_WRITE(R500_DxMODE_INT_MASK, dev_priv->r500_disp_irq_reg);
150 RADEON_WRITE(RADEON_GEN_INT_CNTL, dev_priv->irq_enable_reg);
151 return 0;
152}
153
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154static struct pci_device_id pciidlist[] = {
155 radeon_PCI_IDS
156};
157
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200158#if defined(CONFIG_DRM_RADEON_KMS)
159MODULE_DEVICE_TABLE(pci, pciidlist);
160#endif
161
162static struct drm_driver driver_old = {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000163 .driver_features =
164 DRIVER_USE_AGP | DRIVER_USE_MTRR | DRIVER_PCI_DMA | DRIVER_SG |
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700165 DRIVER_HAVE_IRQ | DRIVER_HAVE_DMA | DRIVER_IRQ_SHARED,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 .dev_priv_size = sizeof(drm_radeon_buf_priv_t),
Dave Airlie22eae942005-11-10 22:16:34 +1100167 .load = radeon_driver_load,
168 .firstopen = radeon_driver_firstopen,
169 .open = radeon_driver_open,
170 .preclose = radeon_driver_preclose,
171 .postclose = radeon_driver_postclose,
172 .lastclose = radeon_driver_lastclose,
173 .unload = radeon_driver_unload,
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700174 .suspend = radeon_suspend,
175 .resume = radeon_resume,
176 .get_vblank_counter = radeon_get_vblank_counter,
177 .enable_vblank = radeon_enable_vblank,
178 .disable_vblank = radeon_disable_vblank,
Dave Airlie60f2ee02008-12-19 10:22:02 +1100179 .master_create = radeon_master_create,
180 .master_destroy = radeon_master_destroy,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 .irq_preinstall = radeon_driver_irq_preinstall,
182 .irq_postinstall = radeon_driver_irq_postinstall,
183 .irq_uninstall = radeon_driver_irq_uninstall,
184 .irq_handler = radeon_driver_irq_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 .reclaim_buffers = drm_core_reclaim_buffers,
186 .get_map_ofs = drm_core_get_map_ofs,
187 .get_reg_ofs = drm_core_get_reg_ofs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 .ioctls = radeon_ioctls,
189 .dma_ioctl = radeon_cp_buffers,
190 .fops = {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000191 .owner = THIS_MODULE,
192 .open = drm_open,
193 .release = drm_release,
194 .ioctl = drm_ioctl,
195 .mmap = drm_mmap,
196 .poll = drm_poll,
197 .fasync = drm_fasync,
Dave Airlie9a186642005-06-23 21:29:18 +1000198#ifdef CONFIG_COMPAT
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000199 .compat_ioctl = radeon_compat_ioctl,
Dave Airlie9a186642005-06-23 21:29:18 +1000200#endif
Dave Airlie22eae942005-11-10 22:16:34 +1100201 },
202
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 .pci_driver = {
Dave Airlie22eae942005-11-10 22:16:34 +1100204 .name = DRIVER_NAME,
205 .id_table = pciidlist,
206 },
207
208 .name = DRIVER_NAME,
209 .desc = DRIVER_DESC,
210 .date = DRIVER_DATE,
211 .major = DRIVER_MAJOR,
212 .minor = DRIVER_MINOR,
213 .patchlevel = DRIVER_PATCHLEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214};
215
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200216static struct drm_driver kms_driver;
217
218static int __devinit
219radeon_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
220{
221 return drm_get_dev(pdev, ent, &kms_driver);
222}
223
224static void
225radeon_pci_remove(struct pci_dev *pdev)
226{
227 struct drm_device *dev = pci_get_drvdata(pdev);
228
229 drm_put_dev(dev);
230}
231
232static int
233radeon_pci_suspend(struct pci_dev *pdev, pm_message_t state)
234{
235 struct drm_device *dev = pci_get_drvdata(pdev);
236 return radeon_suspend_kms(dev, state);
237}
238
239static int
240radeon_pci_resume(struct pci_dev *pdev)
241{
242 struct drm_device *dev = pci_get_drvdata(pdev);
243 return radeon_resume_kms(dev);
244}
245
246static struct drm_driver kms_driver = {
247 .driver_features =
248 DRIVER_USE_AGP | DRIVER_USE_MTRR | DRIVER_PCI_DMA | DRIVER_SG |
249 DRIVER_HAVE_IRQ | DRIVER_HAVE_DMA | DRIVER_IRQ_SHARED | DRIVER_GEM,
250 .dev_priv_size = 0,
251 .load = radeon_driver_load_kms,
252 .firstopen = radeon_driver_firstopen_kms,
253 .open = radeon_driver_open_kms,
254 .preclose = radeon_driver_preclose_kms,
255 .postclose = radeon_driver_postclose_kms,
256 .lastclose = radeon_driver_lastclose_kms,
257 .unload = radeon_driver_unload_kms,
258 .suspend = radeon_suspend_kms,
259 .resume = radeon_resume_kms,
260 .get_vblank_counter = radeon_get_vblank_counter_kms,
261 .enable_vblank = radeon_enable_vblank_kms,
262 .disable_vblank = radeon_disable_vblank_kms,
263 .master_create = radeon_master_create_kms,
264 .master_destroy = radeon_master_destroy_kms,
265#if defined(CONFIG_DEBUG_FS)
266 .debugfs_init = radeon_debugfs_init,
267 .debugfs_cleanup = radeon_debugfs_cleanup,
268#endif
269 .irq_preinstall = radeon_driver_irq_preinstall_kms,
270 .irq_postinstall = radeon_driver_irq_postinstall_kms,
271 .irq_uninstall = radeon_driver_irq_uninstall_kms,
272 .irq_handler = radeon_driver_irq_handler_kms,
273 .reclaim_buffers = drm_core_reclaim_buffers,
274 .get_map_ofs = drm_core_get_map_ofs,
275 .get_reg_ofs = drm_core_get_reg_ofs,
276 .ioctls = radeon_ioctls_kms,
277 .gem_init_object = radeon_gem_object_init,
278 .gem_free_object = radeon_gem_object_free,
279 .dma_ioctl = radeon_dma_ioctl_kms,
280 .fops = {
281 .owner = THIS_MODULE,
282 .open = drm_open,
283 .release = drm_release,
284 .ioctl = drm_ioctl,
285 .mmap = radeon_mmap,
286 .poll = drm_poll,
287 .fasync = drm_fasync,
288#ifdef CONFIG_COMPAT
289 .compat_ioctl = NULL,
290#endif
291 },
292
293 .pci_driver = {
294 .name = DRIVER_NAME,
295 .id_table = pciidlist,
296 .probe = radeon_pci_probe,
297 .remove = radeon_pci_remove,
298 .suspend = radeon_pci_suspend,
299 .resume = radeon_pci_resume,
300 },
301
302 .name = DRIVER_NAME,
303 .desc = DRIVER_DESC,
304 .date = DRIVER_DATE,
305 .major = KMS_DRIVER_MAJOR,
306 .minor = KMS_DRIVER_MINOR,
307 .patchlevel = KMS_DRIVER_PATCHLEVEL,
308};
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200309
310static struct drm_driver *driver;
311
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312static int __init radeon_init(void)
313{
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200314 driver = &driver_old;
315 driver->num_ioctls = radeon_max_ioctl;
Dave Airliede050652009-08-03 12:05:34 +1000316#ifdef CONFIG_VGA_CONSOLE
317 if (vgacon_text_force() && radeon_modeset == -1) {
318 DRM_INFO("VGACON disable radeon kernel modesetting.\n");
319 driver = &driver_old;
320 driver->driver_features &= ~DRIVER_MODESET;
321 radeon_modeset = 0;
322 }
323#endif
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200324 /* if enabled by default */
325 if (radeon_modeset == -1) {
Dave Airliea0cdc642009-09-08 11:09:50 +1000326#ifdef CONFIG_DRM_RADEON_KMS
327 DRM_INFO("radeon defaulting to kernel modesetting.\n");
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200328 radeon_modeset = 1;
Dave Airliea0cdc642009-09-08 11:09:50 +1000329#else
330 DRM_INFO("radeon defaulting to userspace modesetting.\n");
331 radeon_modeset = 0;
332#endif
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200333 }
334 if (radeon_modeset == 1) {
335 DRM_INFO("radeon kernel modesetting enabled.\n");
336 driver = &kms_driver;
337 driver->driver_features |= DRIVER_MODESET;
338 driver->num_ioctls = radeon_max_kms_ioctl;
339 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200340 /* if the vga console setting is enabled still
341 * let modprobe override it */
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200342 return drm_init(driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343}
344
345static void __exit radeon_exit(void)
346{
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200347 drm_exit(driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348}
349
Jerome Glisse176f6132009-06-22 18:16:13 +0200350module_init(radeon_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351module_exit(radeon_exit);
352
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000353MODULE_AUTHOR(DRIVER_AUTHOR);
354MODULE_DESCRIPTION(DRIVER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355MODULE_LICENSE("GPL and additional rights");