blob: 28077247f4f3a16e837be6abe8618004af512063 [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);
Jerome Glisse771fe6b2009-06-05 14:42:42 +020065int radeon_dma_ioctl_kms(struct drm_device *dev, void *data,
66 struct drm_file *file_priv);
67int radeon_gem_object_init(struct drm_gem_object *obj);
68void radeon_gem_object_free(struct drm_gem_object *obj);
69extern struct drm_ioctl_desc radeon_ioctls_kms[];
70extern int radeon_max_kms_ioctl;
71int radeon_mmap(struct file *filp, struct vm_area_struct *vma);
72#if defined(CONFIG_DEBUG_FS)
73int radeon_debugfs_init(struct drm_minor *minor);
74void radeon_debugfs_cleanup(struct drm_minor *minor);
75#endif
Jerome Glisse771fe6b2009-06-05 14:42:42 +020076
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Dave Airlie689b9d72005-09-30 17:09:07 +100078int radeon_no_wb;
Jerome Glisse771fe6b2009-06-05 14:42:42 +020079int radeon_modeset = -1;
80int radeon_dynclks = -1;
81int radeon_r4xx_atom = 0;
82int radeon_agpmode = 0;
83int radeon_vram_limit = 0;
84int radeon_gart_size = 512; /* default gart size */
85int radeon_benchmarking = 0;
Michel Dänzerecc0b322009-07-21 11:23:57 +020086int radeon_testing = 0;
Jerome Glisse771fe6b2009-06-05 14:42:42 +020087int radeon_connector_table = 0;
Dave Airlie4ce001a2009-08-13 16:32:14 +100088int radeon_tv = 1;
Alex Deucherb27b6372009-12-09 17:44:25 -050089int radeon_new_pll = 1;
Dave Airlie689b9d72005-09-30 17:09:07 +100090
Niels de Vos61a2d072008-07-31 00:07:23 -070091MODULE_PARM_DESC(no_wb, "Disable AGP writeback for scratch registers");
Dave Airlie689b9d72005-09-30 17:09:07 +100092module_param_named(no_wb, radeon_no_wb, int, 0444);
93
Jerome Glisse771fe6b2009-06-05 14:42:42 +020094MODULE_PARM_DESC(modeset, "Disable/Enable modesetting");
95module_param_named(modeset, radeon_modeset, int, 0400);
96
97MODULE_PARM_DESC(dynclks, "Disable/Enable dynamic clocks");
98module_param_named(dynclks, radeon_dynclks, int, 0444);
99
100MODULE_PARM_DESC(r4xx_atom, "Enable ATOMBIOS modesetting for R4xx");
101module_param_named(r4xx_atom, radeon_r4xx_atom, int, 0444);
102
103MODULE_PARM_DESC(vramlimit, "Restrict VRAM for testing");
104module_param_named(vramlimit, radeon_vram_limit, int, 0600);
105
106MODULE_PARM_DESC(agpmode, "AGP Mode (-1 == PCI)");
107module_param_named(agpmode, radeon_agpmode, int, 0444);
108
109MODULE_PARM_DESC(gartsize, "Size of PCIE/IGP gart to setup in megabytes (32,64, etc)\n");
110module_param_named(gartsize, radeon_gart_size, int, 0600);
111
112MODULE_PARM_DESC(benchmark, "Run benchmark");
113module_param_named(benchmark, radeon_benchmarking, int, 0444);
114
Michel Dänzerecc0b322009-07-21 11:23:57 +0200115MODULE_PARM_DESC(test, "Run tests");
116module_param_named(test, radeon_testing, int, 0444);
117
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200118MODULE_PARM_DESC(connector_table, "Force connector table");
119module_param_named(connector_table, radeon_connector_table, int, 0444);
Dave Airlie4ce001a2009-08-13 16:32:14 +1000120
121MODULE_PARM_DESC(tv, "TV enable (0 = disable)");
122module_param_named(tv, radeon_tv, int, 0444);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200123
Alex Deucherb27b6372009-12-09 17:44:25 -0500124MODULE_PARM_DESC(r4xx_atom, "Select new PLL code for AVIVO chips");
125module_param_named(new_pll, radeon_new_pll, int, 0444);
126
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700127static int radeon_suspend(struct drm_device *dev, pm_message_t state)
128{
129 drm_radeon_private_t *dev_priv = dev->dev_private;
130
Dave Airlie03efb882009-03-10 18:36:38 +1000131 if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_R600)
132 return 0;
133
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700134 /* Disable *all* interrupts */
Alex Deucher800b6992009-03-06 11:47:54 -0500135 if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_RS600)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700136 RADEON_WRITE(R500_DxMODE_INT_MASK, 0);
137 RADEON_WRITE(RADEON_GEN_INT_CNTL, 0);
138 return 0;
139}
140
141static int radeon_resume(struct drm_device *dev)
142{
143 drm_radeon_private_t *dev_priv = dev->dev_private;
144
Dave Airlie03efb882009-03-10 18:36:38 +1000145 if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_R600)
146 return 0;
147
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700148 /* Restore interrupt registers */
Alex Deucher800b6992009-03-06 11:47:54 -0500149 if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_RS600)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700150 RADEON_WRITE(R500_DxMODE_INT_MASK, dev_priv->r500_disp_irq_reg);
151 RADEON_WRITE(RADEON_GEN_INT_CNTL, dev_priv->irq_enable_reg);
152 return 0;
153}
154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155static struct pci_device_id pciidlist[] = {
156 radeon_PCI_IDS
157};
158
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200159#if defined(CONFIG_DRM_RADEON_KMS)
160MODULE_DEVICE_TABLE(pci, pciidlist);
161#endif
162
163static struct drm_driver driver_old = {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000164 .driver_features =
165 DRIVER_USE_AGP | DRIVER_USE_MTRR | DRIVER_PCI_DMA | DRIVER_SG |
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700166 DRIVER_HAVE_IRQ | DRIVER_HAVE_DMA | DRIVER_IRQ_SHARED,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 .dev_priv_size = sizeof(drm_radeon_buf_priv_t),
Dave Airlie22eae942005-11-10 22:16:34 +1100168 .load = radeon_driver_load,
169 .firstopen = radeon_driver_firstopen,
170 .open = radeon_driver_open,
171 .preclose = radeon_driver_preclose,
172 .postclose = radeon_driver_postclose,
173 .lastclose = radeon_driver_lastclose,
174 .unload = radeon_driver_unload,
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700175 .suspend = radeon_suspend,
176 .resume = radeon_resume,
177 .get_vblank_counter = radeon_get_vblank_counter,
178 .enable_vblank = radeon_enable_vblank,
179 .disable_vblank = radeon_disable_vblank,
Dave Airlie60f2ee02008-12-19 10:22:02 +1100180 .master_create = radeon_master_create,
181 .master_destroy = radeon_master_destroy,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 .irq_preinstall = radeon_driver_irq_preinstall,
183 .irq_postinstall = radeon_driver_irq_postinstall,
184 .irq_uninstall = radeon_driver_irq_uninstall,
185 .irq_handler = radeon_driver_irq_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 .reclaim_buffers = drm_core_reclaim_buffers,
187 .get_map_ofs = drm_core_get_map_ofs,
188 .get_reg_ofs = drm_core_get_reg_ofs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 .ioctls = radeon_ioctls,
190 .dma_ioctl = radeon_cp_buffers,
191 .fops = {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000192 .owner = THIS_MODULE,
193 .open = drm_open,
194 .release = drm_release,
195 .ioctl = drm_ioctl,
196 .mmap = drm_mmap,
197 .poll = drm_poll,
198 .fasync = drm_fasync,
Dave Airlie9a186642005-06-23 21:29:18 +1000199#ifdef CONFIG_COMPAT
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000200 .compat_ioctl = radeon_compat_ioctl,
Dave Airlie9a186642005-06-23 21:29:18 +1000201#endif
Dave Airlie22eae942005-11-10 22:16:34 +1100202 },
203
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 .pci_driver = {
Dave Airlie22eae942005-11-10 22:16:34 +1100205 .name = DRIVER_NAME,
206 .id_table = pciidlist,
207 },
208
209 .name = DRIVER_NAME,
210 .desc = DRIVER_DESC,
211 .date = DRIVER_DATE,
212 .major = DRIVER_MAJOR,
213 .minor = DRIVER_MINOR,
214 .patchlevel = DRIVER_PATCHLEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215};
216
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200217static struct drm_driver kms_driver;
218
219static int __devinit
220radeon_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
221{
222 return drm_get_dev(pdev, ent, &kms_driver);
223}
224
225static void
226radeon_pci_remove(struct pci_dev *pdev)
227{
228 struct drm_device *dev = pci_get_drvdata(pdev);
229
230 drm_put_dev(dev);
231}
232
233static int
234radeon_pci_suspend(struct pci_dev *pdev, pm_message_t state)
235{
236 struct drm_device *dev = pci_get_drvdata(pdev);
237 return radeon_suspend_kms(dev, state);
238}
239
240static int
241radeon_pci_resume(struct pci_dev *pdev)
242{
243 struct drm_device *dev = pci_get_drvdata(pdev);
244 return radeon_resume_kms(dev);
245}
246
247static struct drm_driver kms_driver = {
248 .driver_features =
249 DRIVER_USE_AGP | DRIVER_USE_MTRR | DRIVER_PCI_DMA | DRIVER_SG |
250 DRIVER_HAVE_IRQ | DRIVER_HAVE_DMA | DRIVER_IRQ_SHARED | DRIVER_GEM,
251 .dev_priv_size = 0,
252 .load = radeon_driver_load_kms,
253 .firstopen = radeon_driver_firstopen_kms,
254 .open = radeon_driver_open_kms,
255 .preclose = radeon_driver_preclose_kms,
256 .postclose = radeon_driver_postclose_kms,
257 .lastclose = radeon_driver_lastclose_kms,
258 .unload = radeon_driver_unload_kms,
259 .suspend = radeon_suspend_kms,
260 .resume = radeon_resume_kms,
261 .get_vblank_counter = radeon_get_vblank_counter_kms,
262 .enable_vblank = radeon_enable_vblank_kms,
263 .disable_vblank = radeon_disable_vblank_kms,
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200264#if defined(CONFIG_DEBUG_FS)
265 .debugfs_init = radeon_debugfs_init,
266 .debugfs_cleanup = radeon_debugfs_cleanup,
267#endif
268 .irq_preinstall = radeon_driver_irq_preinstall_kms,
269 .irq_postinstall = radeon_driver_irq_postinstall_kms,
270 .irq_uninstall = radeon_driver_irq_uninstall_kms,
271 .irq_handler = radeon_driver_irq_handler_kms,
272 .reclaim_buffers = drm_core_reclaim_buffers,
273 .get_map_ofs = drm_core_get_map_ofs,
274 .get_reg_ofs = drm_core_get_reg_ofs,
275 .ioctls = radeon_ioctls_kms,
276 .gem_init_object = radeon_gem_object_init,
277 .gem_free_object = radeon_gem_object_free,
278 .dma_ioctl = radeon_dma_ioctl_kms,
279 .fops = {
280 .owner = THIS_MODULE,
281 .open = drm_open,
282 .release = drm_release,
283 .ioctl = drm_ioctl,
284 .mmap = radeon_mmap,
285 .poll = drm_poll,
286 .fasync = drm_fasync,
287#ifdef CONFIG_COMPAT
Dave Airlie70ba2a32009-09-15 09:03:43 +1000288 .compat_ioctl = radeon_kms_compat_ioctl,
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200289#endif
290 },
291
292 .pci_driver = {
293 .name = DRIVER_NAME,
294 .id_table = pciidlist,
295 .probe = radeon_pci_probe,
296 .remove = radeon_pci_remove,
297 .suspend = radeon_pci_suspend,
298 .resume = radeon_pci_resume,
299 },
300
301 .name = DRIVER_NAME,
302 .desc = DRIVER_DESC,
303 .date = DRIVER_DATE,
304 .major = KMS_DRIVER_MAJOR,
305 .minor = KMS_DRIVER_MINOR,
306 .patchlevel = KMS_DRIVER_PATCHLEVEL,
307};
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200308
309static struct drm_driver *driver;
310
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311static int __init radeon_init(void)
312{
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200313 driver = &driver_old;
314 driver->num_ioctls = radeon_max_ioctl;
Dave Airliede050652009-08-03 12:05:34 +1000315#ifdef CONFIG_VGA_CONSOLE
316 if (vgacon_text_force() && radeon_modeset == -1) {
317 DRM_INFO("VGACON disable radeon kernel modesetting.\n");
318 driver = &driver_old;
319 driver->driver_features &= ~DRIVER_MODESET;
320 radeon_modeset = 0;
321 }
322#endif
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200323 /* if enabled by default */
324 if (radeon_modeset == -1) {
Dave Airliea0cdc642009-09-08 11:09:50 +1000325#ifdef CONFIG_DRM_RADEON_KMS
326 DRM_INFO("radeon defaulting to kernel modesetting.\n");
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200327 radeon_modeset = 1;
Dave Airliea0cdc642009-09-08 11:09:50 +1000328#else
329 DRM_INFO("radeon defaulting to userspace modesetting.\n");
330 radeon_modeset = 0;
331#endif
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200332 }
333 if (radeon_modeset == 1) {
334 DRM_INFO("radeon kernel modesetting enabled.\n");
335 driver = &kms_driver;
336 driver->driver_features |= DRIVER_MODESET;
337 driver->num_ioctls = radeon_max_kms_ioctl;
338 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200339 /* if the vga console setting is enabled still
340 * let modprobe override it */
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200341 return drm_init(driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342}
343
344static void __exit radeon_exit(void)
345{
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200346 drm_exit(driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347}
348
Jerome Glisse176f6132009-06-22 18:16:13 +0200349module_init(radeon_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350module_exit(radeon_exit);
351
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000352MODULE_AUTHOR(DRIVER_AUTHOR);
353MODULE_DESCRIPTION(DRIVER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354MODULE_LICENSE("GPL and additional rights");