blob: b3749d47be7bfaa16c4a1bc082d892c2896e2194 [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.
Dave Airlie0de1a572010-03-01 16:32:15 +100043 * - 2.0.0 - initial interface
44 * - 2.1.0 - add square tiling interface
Alex Deucherfdb43522010-03-26 15:24:14 -040045 * - 2.2.0 - add r6xx/r7xx const buffer support
Marek Olšákcae94b02010-02-21 21:24:15 +010046 * - 2.3.0 - add MSPOS + 3D texture + r500 VAP regs
Jerome Glisse771fe6b2009-06-05 14:42:42 +020047 */
48#define KMS_DRIVER_MAJOR 2
Marek Olšákcae94b02010-02-21 21:24:15 +010049#define KMS_DRIVER_MINOR 3
Jerome Glisse771fe6b2009-06-05 14:42:42 +020050#define KMS_DRIVER_PATCHLEVEL 0
51int radeon_driver_load_kms(struct drm_device *dev, unsigned long flags);
52int radeon_driver_unload_kms(struct drm_device *dev);
53int radeon_driver_firstopen_kms(struct drm_device *dev);
54void radeon_driver_lastclose_kms(struct drm_device *dev);
55int radeon_driver_open_kms(struct drm_device *dev, struct drm_file *file_priv);
56void radeon_driver_postclose_kms(struct drm_device *dev,
57 struct drm_file *file_priv);
58void radeon_driver_preclose_kms(struct drm_device *dev,
59 struct drm_file *file_priv);
60int radeon_suspend_kms(struct drm_device *dev, pm_message_t state);
61int radeon_resume_kms(struct drm_device *dev);
62u32 radeon_get_vblank_counter_kms(struct drm_device *dev, int crtc);
63int radeon_enable_vblank_kms(struct drm_device *dev, int crtc);
64void radeon_disable_vblank_kms(struct drm_device *dev, int crtc);
65void radeon_driver_irq_preinstall_kms(struct drm_device *dev);
66int radeon_driver_irq_postinstall_kms(struct drm_device *dev);
67void radeon_driver_irq_uninstall_kms(struct drm_device *dev);
68irqreturn_t radeon_driver_irq_handler_kms(DRM_IRQ_ARGS);
Jerome Glisse771fe6b2009-06-05 14:42:42 +020069int radeon_dma_ioctl_kms(struct drm_device *dev, void *data,
70 struct drm_file *file_priv);
71int radeon_gem_object_init(struct drm_gem_object *obj);
72void radeon_gem_object_free(struct drm_gem_object *obj);
73extern struct drm_ioctl_desc radeon_ioctls_kms[];
74extern int radeon_max_kms_ioctl;
75int radeon_mmap(struct file *filp, struct vm_area_struct *vma);
76#if defined(CONFIG_DEBUG_FS)
77int radeon_debugfs_init(struct drm_minor *minor);
78void radeon_debugfs_cleanup(struct drm_minor *minor);
79#endif
Jerome Glisse771fe6b2009-06-05 14:42:42 +020080
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Dave Airlie689b9d72005-09-30 17:09:07 +100082int radeon_no_wb;
Jerome Glisse771fe6b2009-06-05 14:42:42 +020083int radeon_modeset = -1;
84int radeon_dynclks = -1;
85int radeon_r4xx_atom = 0;
86int radeon_agpmode = 0;
87int radeon_vram_limit = 0;
88int radeon_gart_size = 512; /* default gart size */
89int radeon_benchmarking = 0;
Michel Dänzerecc0b322009-07-21 11:23:57 +020090int radeon_testing = 0;
Jerome Glisse771fe6b2009-06-05 14:42:42 +020091int radeon_connector_table = 0;
Dave Airlie4ce001a2009-08-13 16:32:14 +100092int radeon_tv = 1;
Alex Deucher383be5d2010-02-23 03:24:38 -050093int radeon_new_pll = -1;
Rafał Miłeckic913e232009-12-22 23:02:16 +010094int radeon_dynpm = -1;
Christian Koenigdafc3bd2009-10-11 23:49:13 +020095int radeon_audio = 1;
Alex Deucherf46c0122010-03-31 00:33:27 -040096int radeon_disp_priority = 0;
Alex Deuchere2b0a8e2010-03-17 02:07:37 -040097int radeon_hw_i2c = 0;
Dave Airlie689b9d72005-09-30 17:09:07 +100098
Niels de Vos61a2d072008-07-31 00:07:23 -070099MODULE_PARM_DESC(no_wb, "Disable AGP writeback for scratch registers");
Dave Airlie689b9d72005-09-30 17:09:07 +1000100module_param_named(no_wb, radeon_no_wb, int, 0444);
101
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200102MODULE_PARM_DESC(modeset, "Disable/Enable modesetting");
103module_param_named(modeset, radeon_modeset, int, 0400);
104
105MODULE_PARM_DESC(dynclks, "Disable/Enable dynamic clocks");
106module_param_named(dynclks, radeon_dynclks, int, 0444);
107
108MODULE_PARM_DESC(r4xx_atom, "Enable ATOMBIOS modesetting for R4xx");
109module_param_named(r4xx_atom, radeon_r4xx_atom, int, 0444);
110
111MODULE_PARM_DESC(vramlimit, "Restrict VRAM for testing");
112module_param_named(vramlimit, radeon_vram_limit, int, 0600);
113
114MODULE_PARM_DESC(agpmode, "AGP Mode (-1 == PCI)");
115module_param_named(agpmode, radeon_agpmode, int, 0444);
116
117MODULE_PARM_DESC(gartsize, "Size of PCIE/IGP gart to setup in megabytes (32,64, etc)\n");
118module_param_named(gartsize, radeon_gart_size, int, 0600);
119
120MODULE_PARM_DESC(benchmark, "Run benchmark");
121module_param_named(benchmark, radeon_benchmarking, int, 0444);
122
Michel Dänzerecc0b322009-07-21 11:23:57 +0200123MODULE_PARM_DESC(test, "Run tests");
124module_param_named(test, radeon_testing, int, 0444);
125
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200126MODULE_PARM_DESC(connector_table, "Force connector table");
127module_param_named(connector_table, radeon_connector_table, int, 0444);
Dave Airlie4ce001a2009-08-13 16:32:14 +1000128
129MODULE_PARM_DESC(tv, "TV enable (0 = disable)");
130module_param_named(tv, radeon_tv, int, 0444);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200131
Alex Deucher383be5d2010-02-23 03:24:38 -0500132MODULE_PARM_DESC(new_pll, "Select new PLL code");
Alex Deucherb27b6372009-12-09 17:44:25 -0500133module_param_named(new_pll, radeon_new_pll, int, 0444);
134
Rafał Miłeckic913e232009-12-22 23:02:16 +0100135MODULE_PARM_DESC(dynpm, "Disable/Enable dynamic power management (1 = enable)");
136module_param_named(dynpm, radeon_dynpm, int, 0444);
137
Christian Koenigdafc3bd2009-10-11 23:49:13 +0200138MODULE_PARM_DESC(audio, "Audio enable (0 = disable)");
139module_param_named(audio, radeon_audio, int, 0444);
140
Alex Deucherf46c0122010-03-31 00:33:27 -0400141MODULE_PARM_DESC(disp_priority, "Display Priority (0 = auto, 1 = normal, 2 = high)");
142module_param_named(disp_priority, radeon_disp_priority, int, 0444);
143
Alex Deuchere2b0a8e2010-03-17 02:07:37 -0400144MODULE_PARM_DESC(hw_i2c, "hw i2c engine enable (0 = disable)");
145module_param_named(hw_i2c, radeon_hw_i2c, int, 0444);
146
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700147static int radeon_suspend(struct drm_device *dev, pm_message_t state)
148{
149 drm_radeon_private_t *dev_priv = dev->dev_private;
150
Dave Airlie03efb882009-03-10 18:36:38 +1000151 if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_R600)
152 return 0;
153
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700154 /* Disable *all* interrupts */
Alex Deucher800b6992009-03-06 11:47:54 -0500155 if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_RS600)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700156 RADEON_WRITE(R500_DxMODE_INT_MASK, 0);
157 RADEON_WRITE(RADEON_GEN_INT_CNTL, 0);
158 return 0;
159}
160
161static int radeon_resume(struct drm_device *dev)
162{
163 drm_radeon_private_t *dev_priv = dev->dev_private;
164
Dave Airlie03efb882009-03-10 18:36:38 +1000165 if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_R600)
166 return 0;
167
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700168 /* Restore interrupt registers */
Alex Deucher800b6992009-03-06 11:47:54 -0500169 if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_RS600)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700170 RADEON_WRITE(R500_DxMODE_INT_MASK, dev_priv->r500_disp_irq_reg);
171 RADEON_WRITE(RADEON_GEN_INT_CNTL, dev_priv->irq_enable_reg);
172 return 0;
173}
174
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175static struct pci_device_id pciidlist[] = {
176 radeon_PCI_IDS
177};
178
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200179#if defined(CONFIG_DRM_RADEON_KMS)
180MODULE_DEVICE_TABLE(pci, pciidlist);
181#endif
182
183static struct drm_driver driver_old = {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000184 .driver_features =
185 DRIVER_USE_AGP | DRIVER_USE_MTRR | DRIVER_PCI_DMA | DRIVER_SG |
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700186 DRIVER_HAVE_IRQ | DRIVER_HAVE_DMA | DRIVER_IRQ_SHARED,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 .dev_priv_size = sizeof(drm_radeon_buf_priv_t),
Dave Airlie22eae942005-11-10 22:16:34 +1100188 .load = radeon_driver_load,
189 .firstopen = radeon_driver_firstopen,
190 .open = radeon_driver_open,
191 .preclose = radeon_driver_preclose,
192 .postclose = radeon_driver_postclose,
193 .lastclose = radeon_driver_lastclose,
194 .unload = radeon_driver_unload,
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700195 .suspend = radeon_suspend,
196 .resume = radeon_resume,
197 .get_vblank_counter = radeon_get_vblank_counter,
198 .enable_vblank = radeon_enable_vblank,
199 .disable_vblank = radeon_disable_vblank,
Dave Airlie60f2ee02008-12-19 10:22:02 +1100200 .master_create = radeon_master_create,
201 .master_destroy = radeon_master_destroy,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 .irq_preinstall = radeon_driver_irq_preinstall,
203 .irq_postinstall = radeon_driver_irq_postinstall,
204 .irq_uninstall = radeon_driver_irq_uninstall,
205 .irq_handler = radeon_driver_irq_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 .reclaim_buffers = drm_core_reclaim_buffers,
207 .get_map_ofs = drm_core_get_map_ofs,
208 .get_reg_ofs = drm_core_get_reg_ofs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 .ioctls = radeon_ioctls,
210 .dma_ioctl = radeon_cp_buffers,
211 .fops = {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000212 .owner = THIS_MODULE,
213 .open = drm_open,
214 .release = drm_release,
Arnd Bergmanned8b6702009-12-16 22:17:09 +0000215 .unlocked_ioctl = drm_ioctl,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000216 .mmap = drm_mmap,
217 .poll = drm_poll,
218 .fasync = drm_fasync,
Jerome Glisse4fa07bf2010-05-06 18:52:14 +0200219 .read = drm_read,
Dave Airlie9a186642005-06-23 21:29:18 +1000220#ifdef CONFIG_COMPAT
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000221 .compat_ioctl = radeon_compat_ioctl,
Dave Airlie9a186642005-06-23 21:29:18 +1000222#endif
Dave Airlie22eae942005-11-10 22:16:34 +1100223 },
224
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 .pci_driver = {
Dave Airlie22eae942005-11-10 22:16:34 +1100226 .name = DRIVER_NAME,
227 .id_table = pciidlist,
228 },
229
230 .name = DRIVER_NAME,
231 .desc = DRIVER_DESC,
232 .date = DRIVER_DATE,
233 .major = DRIVER_MAJOR,
234 .minor = DRIVER_MINOR,
235 .patchlevel = DRIVER_PATCHLEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236};
237
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200238static struct drm_driver kms_driver;
239
240static int __devinit
241radeon_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
242{
243 return drm_get_dev(pdev, ent, &kms_driver);
244}
245
246static void
247radeon_pci_remove(struct pci_dev *pdev)
248{
249 struct drm_device *dev = pci_get_drvdata(pdev);
250
251 drm_put_dev(dev);
252}
253
254static int
255radeon_pci_suspend(struct pci_dev *pdev, pm_message_t state)
256{
257 struct drm_device *dev = pci_get_drvdata(pdev);
258 return radeon_suspend_kms(dev, state);
259}
260
261static int
262radeon_pci_resume(struct pci_dev *pdev)
263{
264 struct drm_device *dev = pci_get_drvdata(pdev);
265 return radeon_resume_kms(dev);
266}
267
268static struct drm_driver kms_driver = {
269 .driver_features =
270 DRIVER_USE_AGP | DRIVER_USE_MTRR | DRIVER_PCI_DMA | DRIVER_SG |
271 DRIVER_HAVE_IRQ | DRIVER_HAVE_DMA | DRIVER_IRQ_SHARED | DRIVER_GEM,
272 .dev_priv_size = 0,
273 .load = radeon_driver_load_kms,
274 .firstopen = radeon_driver_firstopen_kms,
275 .open = radeon_driver_open_kms,
276 .preclose = radeon_driver_preclose_kms,
277 .postclose = radeon_driver_postclose_kms,
278 .lastclose = radeon_driver_lastclose_kms,
279 .unload = radeon_driver_unload_kms,
280 .suspend = radeon_suspend_kms,
281 .resume = radeon_resume_kms,
282 .get_vblank_counter = radeon_get_vblank_counter_kms,
283 .enable_vblank = radeon_enable_vblank_kms,
284 .disable_vblank = radeon_disable_vblank_kms,
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200285#if defined(CONFIG_DEBUG_FS)
286 .debugfs_init = radeon_debugfs_init,
287 .debugfs_cleanup = radeon_debugfs_cleanup,
288#endif
289 .irq_preinstall = radeon_driver_irq_preinstall_kms,
290 .irq_postinstall = radeon_driver_irq_postinstall_kms,
291 .irq_uninstall = radeon_driver_irq_uninstall_kms,
292 .irq_handler = radeon_driver_irq_handler_kms,
293 .reclaim_buffers = drm_core_reclaim_buffers,
294 .get_map_ofs = drm_core_get_map_ofs,
295 .get_reg_ofs = drm_core_get_reg_ofs,
296 .ioctls = radeon_ioctls_kms,
297 .gem_init_object = radeon_gem_object_init,
298 .gem_free_object = radeon_gem_object_free,
299 .dma_ioctl = radeon_dma_ioctl_kms,
300 .fops = {
301 .owner = THIS_MODULE,
302 .open = drm_open,
303 .release = drm_release,
Arnd Bergmanned8b6702009-12-16 22:17:09 +0000304 .unlocked_ioctl = drm_ioctl,
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200305 .mmap = radeon_mmap,
306 .poll = drm_poll,
307 .fasync = drm_fasync,
Jerome Glisse4fa07bf2010-05-06 18:52:14 +0200308 .read = drm_read,
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200309#ifdef CONFIG_COMPAT
Dave Airlie70ba2a32009-09-15 09:03:43 +1000310 .compat_ioctl = radeon_kms_compat_ioctl,
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200311#endif
312 },
313
314 .pci_driver = {
315 .name = DRIVER_NAME,
316 .id_table = pciidlist,
317 .probe = radeon_pci_probe,
318 .remove = radeon_pci_remove,
319 .suspend = radeon_pci_suspend,
320 .resume = radeon_pci_resume,
321 },
322
323 .name = DRIVER_NAME,
324 .desc = DRIVER_DESC,
325 .date = DRIVER_DATE,
326 .major = KMS_DRIVER_MAJOR,
327 .minor = KMS_DRIVER_MINOR,
328 .patchlevel = KMS_DRIVER_PATCHLEVEL,
329};
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200330
331static struct drm_driver *driver;
332
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333static int __init radeon_init(void)
334{
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200335 driver = &driver_old;
336 driver->num_ioctls = radeon_max_ioctl;
Dave Airliede050652009-08-03 12:05:34 +1000337#ifdef CONFIG_VGA_CONSOLE
338 if (vgacon_text_force() && radeon_modeset == -1) {
339 DRM_INFO("VGACON disable radeon kernel modesetting.\n");
340 driver = &driver_old;
341 driver->driver_features &= ~DRIVER_MODESET;
342 radeon_modeset = 0;
343 }
344#endif
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200345 /* if enabled by default */
346 if (radeon_modeset == -1) {
Dave Airliea0cdc642009-09-08 11:09:50 +1000347#ifdef CONFIG_DRM_RADEON_KMS
348 DRM_INFO("radeon defaulting to kernel modesetting.\n");
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200349 radeon_modeset = 1;
Dave Airliea0cdc642009-09-08 11:09:50 +1000350#else
351 DRM_INFO("radeon defaulting to userspace modesetting.\n");
352 radeon_modeset = 0;
353#endif
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200354 }
355 if (radeon_modeset == 1) {
356 DRM_INFO("radeon kernel modesetting enabled.\n");
357 driver = &kms_driver;
358 driver->driver_features |= DRIVER_MODESET;
359 driver->num_ioctls = radeon_max_kms_ioctl;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000360 radeon_register_atpx_handler();
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200361 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200362 /* if the vga console setting is enabled still
363 * let modprobe override it */
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200364 return drm_init(driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365}
366
367static void __exit radeon_exit(void)
368{
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200369 drm_exit(driver);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000370 radeon_unregister_atpx_handler();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371}
372
Jerome Glisse176f6132009-06-22 18:16:13 +0200373module_init(radeon_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374module_exit(radeon_exit);
375
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000376MODULE_AUTHOR(DRIVER_AUTHOR);
377MODULE_DESCRIPTION(DRIVER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378MODULE_LICENSE("GPL and additional rights");