blob: a92d2a5cea90d4fde6d24fe4c4923a873385dbed [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 Glissebc35afd2010-05-12 18:01:13 +020047 * - 2.4.0 - add crtc id query
Alex Deucher148a03b2010-06-03 19:00:03 -040048 * - 2.5.0 - add get accel 2 to work around ddx breakage for evergreen
Dave Airlieab9e1f52010-07-13 11:11:11 +100049 * - 2.6.0 - add tiling config query (r6xx+), add initial HiZ support (r300->r500)
Alex Deucher71901cc2010-10-21 13:45:30 -040050 * 2.7.0 - fixups for r600 2D tiling support. (no external ABI change), add eg dyn gpr regs
Alex Deucher6f34be52010-11-21 10:59:01 -050051 * 2.8.0 - pageflip support
Jerome Glisse771fe6b2009-06-05 14:42:42 +020052 */
53#define KMS_DRIVER_MAJOR 2
Alex Deucher6f34be52010-11-21 10:59:01 -050054#define KMS_DRIVER_MINOR 8
Jerome Glisse771fe6b2009-06-05 14:42:42 +020055#define KMS_DRIVER_PATCHLEVEL 0
56int radeon_driver_load_kms(struct drm_device *dev, unsigned long flags);
57int radeon_driver_unload_kms(struct drm_device *dev);
58int radeon_driver_firstopen_kms(struct drm_device *dev);
59void radeon_driver_lastclose_kms(struct drm_device *dev);
60int radeon_driver_open_kms(struct drm_device *dev, struct drm_file *file_priv);
61void radeon_driver_postclose_kms(struct drm_device *dev,
62 struct drm_file *file_priv);
63void radeon_driver_preclose_kms(struct drm_device *dev,
64 struct drm_file *file_priv);
65int radeon_suspend_kms(struct drm_device *dev, pm_message_t state);
66int radeon_resume_kms(struct drm_device *dev);
67u32 radeon_get_vblank_counter_kms(struct drm_device *dev, int crtc);
68int radeon_enable_vblank_kms(struct drm_device *dev, int crtc);
69void radeon_disable_vblank_kms(struct drm_device *dev, int crtc);
Mario Kleinerf5a80202010-10-23 04:42:17 +020070int radeon_get_vblank_timestamp_kms(struct drm_device *dev, int crtc,
71 int *max_error,
72 struct timeval *vblank_time,
73 unsigned flags);
Jerome Glisse771fe6b2009-06-05 14:42:42 +020074void radeon_driver_irq_preinstall_kms(struct drm_device *dev);
75int radeon_driver_irq_postinstall_kms(struct drm_device *dev);
76void radeon_driver_irq_uninstall_kms(struct drm_device *dev);
77irqreturn_t radeon_driver_irq_handler_kms(DRM_IRQ_ARGS);
Jerome Glisse771fe6b2009-06-05 14:42:42 +020078int radeon_dma_ioctl_kms(struct drm_device *dev, void *data,
79 struct drm_file *file_priv);
80int radeon_gem_object_init(struct drm_gem_object *obj);
81void radeon_gem_object_free(struct drm_gem_object *obj);
Mario Kleinerf5a80202010-10-23 04:42:17 +020082extern int radeon_get_crtc_scanoutpos(struct drm_device *dev, int crtc,
83 int *vpos, int *hpos);
Jerome Glisse771fe6b2009-06-05 14:42:42 +020084extern struct drm_ioctl_desc radeon_ioctls_kms[];
85extern int radeon_max_kms_ioctl;
86int radeon_mmap(struct file *filp, struct vm_area_struct *vma);
87#if defined(CONFIG_DEBUG_FS)
88int radeon_debugfs_init(struct drm_minor *minor);
89void radeon_debugfs_cleanup(struct drm_minor *minor);
90#endif
Jerome Glisse771fe6b2009-06-05 14:42:42 +020091
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Dave Airlie689b9d72005-09-30 17:09:07 +100093int radeon_no_wb;
Jerome Glisse771fe6b2009-06-05 14:42:42 +020094int radeon_modeset = -1;
95int radeon_dynclks = -1;
96int radeon_r4xx_atom = 0;
97int radeon_agpmode = 0;
98int radeon_vram_limit = 0;
99int radeon_gart_size = 512; /* default gart size */
100int radeon_benchmarking = 0;
Michel Dänzerecc0b322009-07-21 11:23:57 +0200101int radeon_testing = 0;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200102int radeon_connector_table = 0;
Dave Airlie4ce001a2009-08-13 16:32:14 +1000103int radeon_tv = 1;
Christian Koenigdafc3bd2009-10-11 23:49:13 +0200104int radeon_audio = 1;
Alex Deucherf46c0122010-03-31 00:33:27 -0400105int radeon_disp_priority = 0;
Alex Deuchere2b0a8e2010-03-17 02:07:37 -0400106int radeon_hw_i2c = 0;
Dave Airlie689b9d72005-09-30 17:09:07 +1000107
Niels de Vos61a2d072008-07-31 00:07:23 -0700108MODULE_PARM_DESC(no_wb, "Disable AGP writeback for scratch registers");
Dave Airlie689b9d72005-09-30 17:09:07 +1000109module_param_named(no_wb, radeon_no_wb, int, 0444);
110
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200111MODULE_PARM_DESC(modeset, "Disable/Enable modesetting");
112module_param_named(modeset, radeon_modeset, int, 0400);
113
114MODULE_PARM_DESC(dynclks, "Disable/Enable dynamic clocks");
115module_param_named(dynclks, radeon_dynclks, int, 0444);
116
117MODULE_PARM_DESC(r4xx_atom, "Enable ATOMBIOS modesetting for R4xx");
118module_param_named(r4xx_atom, radeon_r4xx_atom, int, 0444);
119
120MODULE_PARM_DESC(vramlimit, "Restrict VRAM for testing");
121module_param_named(vramlimit, radeon_vram_limit, int, 0600);
122
123MODULE_PARM_DESC(agpmode, "AGP Mode (-1 == PCI)");
124module_param_named(agpmode, radeon_agpmode, int, 0444);
125
126MODULE_PARM_DESC(gartsize, "Size of PCIE/IGP gart to setup in megabytes (32,64, etc)\n");
127module_param_named(gartsize, radeon_gart_size, int, 0600);
128
129MODULE_PARM_DESC(benchmark, "Run benchmark");
130module_param_named(benchmark, radeon_benchmarking, int, 0444);
131
Michel Dänzerecc0b322009-07-21 11:23:57 +0200132MODULE_PARM_DESC(test, "Run tests");
133module_param_named(test, radeon_testing, int, 0444);
134
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200135MODULE_PARM_DESC(connector_table, "Force connector table");
136module_param_named(connector_table, radeon_connector_table, int, 0444);
Dave Airlie4ce001a2009-08-13 16:32:14 +1000137
138MODULE_PARM_DESC(tv, "TV enable (0 = disable)");
139module_param_named(tv, radeon_tv, int, 0444);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200140
Christian Koenigdafc3bd2009-10-11 23:49:13 +0200141MODULE_PARM_DESC(audio, "Audio enable (0 = disable)");
142module_param_named(audio, radeon_audio, int, 0444);
143
Alex Deucherf46c0122010-03-31 00:33:27 -0400144MODULE_PARM_DESC(disp_priority, "Display Priority (0 = auto, 1 = normal, 2 = high)");
145module_param_named(disp_priority, radeon_disp_priority, int, 0444);
146
Alex Deuchere2b0a8e2010-03-17 02:07:37 -0400147MODULE_PARM_DESC(hw_i2c, "hw i2c engine enable (0 = disable)");
148module_param_named(hw_i2c, radeon_hw_i2c, int, 0444);
149
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700150static int radeon_suspend(struct drm_device *dev, pm_message_t state)
151{
152 drm_radeon_private_t *dev_priv = dev->dev_private;
153
Dave Airlie03efb882009-03-10 18:36:38 +1000154 if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_R600)
155 return 0;
156
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700157 /* Disable *all* interrupts */
Alex Deucher800b6992009-03-06 11:47:54 -0500158 if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_RS600)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700159 RADEON_WRITE(R500_DxMODE_INT_MASK, 0);
160 RADEON_WRITE(RADEON_GEN_INT_CNTL, 0);
161 return 0;
162}
163
164static int radeon_resume(struct drm_device *dev)
165{
166 drm_radeon_private_t *dev_priv = dev->dev_private;
167
Dave Airlie03efb882009-03-10 18:36:38 +1000168 if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_R600)
169 return 0;
170
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700171 /* Restore interrupt registers */
Alex Deucher800b6992009-03-06 11:47:54 -0500172 if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_RS600)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700173 RADEON_WRITE(R500_DxMODE_INT_MASK, dev_priv->r500_disp_irq_reg);
174 RADEON_WRITE(RADEON_GEN_INT_CNTL, dev_priv->irq_enable_reg);
175 return 0;
176}
177
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178static struct pci_device_id pciidlist[] = {
179 radeon_PCI_IDS
180};
181
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200182#if defined(CONFIG_DRM_RADEON_KMS)
183MODULE_DEVICE_TABLE(pci, pciidlist);
184#endif
185
186static struct drm_driver driver_old = {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000187 .driver_features =
188 DRIVER_USE_AGP | DRIVER_USE_MTRR | DRIVER_PCI_DMA | DRIVER_SG |
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700189 DRIVER_HAVE_IRQ | DRIVER_HAVE_DMA | DRIVER_IRQ_SHARED,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 .dev_priv_size = sizeof(drm_radeon_buf_priv_t),
Dave Airlie22eae942005-11-10 22:16:34 +1100191 .load = radeon_driver_load,
192 .firstopen = radeon_driver_firstopen,
193 .open = radeon_driver_open,
194 .preclose = radeon_driver_preclose,
195 .postclose = radeon_driver_postclose,
196 .lastclose = radeon_driver_lastclose,
197 .unload = radeon_driver_unload,
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700198 .suspend = radeon_suspend,
199 .resume = radeon_resume,
200 .get_vblank_counter = radeon_get_vblank_counter,
201 .enable_vblank = radeon_enable_vblank,
202 .disable_vblank = radeon_disable_vblank,
Dave Airlie60f2ee02008-12-19 10:22:02 +1100203 .master_create = radeon_master_create,
204 .master_destroy = radeon_master_destroy,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 .irq_preinstall = radeon_driver_irq_preinstall,
206 .irq_postinstall = radeon_driver_irq_postinstall,
207 .irq_uninstall = radeon_driver_irq_uninstall,
208 .irq_handler = radeon_driver_irq_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 .reclaim_buffers = drm_core_reclaim_buffers,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 .ioctls = radeon_ioctls,
211 .dma_ioctl = radeon_cp_buffers,
212 .fops = {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000213 .owner = THIS_MODULE,
214 .open = drm_open,
215 .release = drm_release,
Arnd Bergmanned8b6702009-12-16 22:17:09 +0000216 .unlocked_ioctl = drm_ioctl,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000217 .mmap = drm_mmap,
218 .poll = drm_poll,
219 .fasync = drm_fasync,
Jerome Glisse4fa07bf2010-05-06 18:52:14 +0200220 .read = drm_read,
Dave Airlie9a186642005-06-23 21:29:18 +1000221#ifdef CONFIG_COMPAT
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000222 .compat_ioctl = radeon_compat_ioctl,
Dave Airlie9a186642005-06-23 21:29:18 +1000223#endif
Arnd Bergmanndc880ab2010-07-06 18:54:47 +0200224 .llseek = noop_llseek,
Dave Airlie22eae942005-11-10 22:16:34 +1100225 },
226
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 .pci_driver = {
Dave Airlie22eae942005-11-10 22:16:34 +1100228 .name = DRIVER_NAME,
229 .id_table = pciidlist,
230 },
231
232 .name = DRIVER_NAME,
233 .desc = DRIVER_DESC,
234 .date = DRIVER_DATE,
235 .major = DRIVER_MAJOR,
236 .minor = DRIVER_MINOR,
237 .patchlevel = DRIVER_PATCHLEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238};
239
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200240static struct drm_driver kms_driver;
241
242static int __devinit
243radeon_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
244{
Jordan Crousedcdb1672010-05-27 13:40:25 -0600245 return drm_get_pci_dev(pdev, ent, &kms_driver);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200246}
247
248static void
249radeon_pci_remove(struct pci_dev *pdev)
250{
251 struct drm_device *dev = pci_get_drvdata(pdev);
252
253 drm_put_dev(dev);
254}
255
256static int
257radeon_pci_suspend(struct pci_dev *pdev, pm_message_t state)
258{
259 struct drm_device *dev = pci_get_drvdata(pdev);
260 return radeon_suspend_kms(dev, state);
261}
262
263static int
264radeon_pci_resume(struct pci_dev *pdev)
265{
266 struct drm_device *dev = pci_get_drvdata(pdev);
267 return radeon_resume_kms(dev);
268}
269
270static struct drm_driver kms_driver = {
271 .driver_features =
272 DRIVER_USE_AGP | DRIVER_USE_MTRR | DRIVER_PCI_DMA | DRIVER_SG |
273 DRIVER_HAVE_IRQ | DRIVER_HAVE_DMA | DRIVER_IRQ_SHARED | DRIVER_GEM,
274 .dev_priv_size = 0,
275 .load = radeon_driver_load_kms,
276 .firstopen = radeon_driver_firstopen_kms,
277 .open = radeon_driver_open_kms,
278 .preclose = radeon_driver_preclose_kms,
279 .postclose = radeon_driver_postclose_kms,
280 .lastclose = radeon_driver_lastclose_kms,
281 .unload = radeon_driver_unload_kms,
282 .suspend = radeon_suspend_kms,
283 .resume = radeon_resume_kms,
284 .get_vblank_counter = radeon_get_vblank_counter_kms,
285 .enable_vblank = radeon_enable_vblank_kms,
286 .disable_vblank = radeon_disable_vblank_kms,
Mario Kleinerf5a80202010-10-23 04:42:17 +0200287 .get_vblank_timestamp = radeon_get_vblank_timestamp_kms,
288 .get_scanout_position = radeon_get_crtc_scanoutpos,
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200289#if defined(CONFIG_DEBUG_FS)
290 .debugfs_init = radeon_debugfs_init,
291 .debugfs_cleanup = radeon_debugfs_cleanup,
292#endif
293 .irq_preinstall = radeon_driver_irq_preinstall_kms,
294 .irq_postinstall = radeon_driver_irq_postinstall_kms,
295 .irq_uninstall = radeon_driver_irq_uninstall_kms,
296 .irq_handler = radeon_driver_irq_handler_kms,
297 .reclaim_buffers = drm_core_reclaim_buffers,
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200298 .ioctls = radeon_ioctls_kms,
299 .gem_init_object = radeon_gem_object_init,
300 .gem_free_object = radeon_gem_object_free,
301 .dma_ioctl = radeon_dma_ioctl_kms,
302 .fops = {
303 .owner = THIS_MODULE,
304 .open = drm_open,
305 .release = drm_release,
Arnd Bergmanned8b6702009-12-16 22:17:09 +0000306 .unlocked_ioctl = drm_ioctl,
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200307 .mmap = radeon_mmap,
308 .poll = drm_poll,
309 .fasync = drm_fasync,
Jerome Glisse4fa07bf2010-05-06 18:52:14 +0200310 .read = drm_read,
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200311#ifdef CONFIG_COMPAT
Dave Airlie70ba2a32009-09-15 09:03:43 +1000312 .compat_ioctl = radeon_kms_compat_ioctl,
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200313#endif
314 },
315
316 .pci_driver = {
317 .name = DRIVER_NAME,
318 .id_table = pciidlist,
319 .probe = radeon_pci_probe,
320 .remove = radeon_pci_remove,
321 .suspend = radeon_pci_suspend,
322 .resume = radeon_pci_resume,
323 },
324
325 .name = DRIVER_NAME,
326 .desc = DRIVER_DESC,
327 .date = DRIVER_DATE,
328 .major = KMS_DRIVER_MAJOR,
329 .minor = KMS_DRIVER_MINOR,
330 .patchlevel = KMS_DRIVER_PATCHLEVEL,
331};
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200332
333static struct drm_driver *driver;
334
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335static int __init radeon_init(void)
336{
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200337 driver = &driver_old;
338 driver->num_ioctls = radeon_max_ioctl;
Dave Airliede050652009-08-03 12:05:34 +1000339#ifdef CONFIG_VGA_CONSOLE
340 if (vgacon_text_force() && radeon_modeset == -1) {
341 DRM_INFO("VGACON disable radeon kernel modesetting.\n");
342 driver = &driver_old;
343 driver->driver_features &= ~DRIVER_MODESET;
344 radeon_modeset = 0;
345 }
346#endif
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200347 /* if enabled by default */
348 if (radeon_modeset == -1) {
Dave Airliea0cdc642009-09-08 11:09:50 +1000349#ifdef CONFIG_DRM_RADEON_KMS
350 DRM_INFO("radeon defaulting to kernel modesetting.\n");
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200351 radeon_modeset = 1;
Dave Airliea0cdc642009-09-08 11:09:50 +1000352#else
353 DRM_INFO("radeon defaulting to userspace modesetting.\n");
354 radeon_modeset = 0;
355#endif
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200356 }
357 if (radeon_modeset == 1) {
358 DRM_INFO("radeon kernel modesetting enabled.\n");
359 driver = &kms_driver;
360 driver->driver_features |= DRIVER_MODESET;
361 driver->num_ioctls = radeon_max_kms_ioctl;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000362 radeon_register_atpx_handler();
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200363 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200364 /* if the vga console setting is enabled still
365 * let modprobe override it */
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200366 return drm_init(driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367}
368
369static void __exit radeon_exit(void)
370{
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200371 drm_exit(driver);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000372 radeon_unregister_atpx_handler();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373}
374
Jerome Glisse176f6132009-06-22 18:16:13 +0200375module_init(radeon_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376module_exit(radeon_exit);
377
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000378MODULE_AUTHOR(DRIVER_AUTHOR);
379MODULE_DESCRIPTION(DRIVER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380MODULE_LICENSE("GPL and additional rights");