blob: 32ec0cc6be92bd2422ea8b46be678ab91ed90dc5 [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
Jerome Glisse771fe6b2009-06-05 14:42:42 +020051 */
52#define KMS_DRIVER_MAJOR 2
Dave Airlief30df2f2010-10-21 13:55:40 +100053#define KMS_DRIVER_MINOR 7
Jerome Glisse771fe6b2009-06-05 14:42:42 +020054#define KMS_DRIVER_PATCHLEVEL 0
55int radeon_driver_load_kms(struct drm_device *dev, unsigned long flags);
56int radeon_driver_unload_kms(struct drm_device *dev);
57int radeon_driver_firstopen_kms(struct drm_device *dev);
58void radeon_driver_lastclose_kms(struct drm_device *dev);
59int radeon_driver_open_kms(struct drm_device *dev, struct drm_file *file_priv);
60void radeon_driver_postclose_kms(struct drm_device *dev,
61 struct drm_file *file_priv);
62void radeon_driver_preclose_kms(struct drm_device *dev,
63 struct drm_file *file_priv);
64int radeon_suspend_kms(struct drm_device *dev, pm_message_t state);
65int radeon_resume_kms(struct drm_device *dev);
66u32 radeon_get_vblank_counter_kms(struct drm_device *dev, int crtc);
67int radeon_enable_vblank_kms(struct drm_device *dev, int crtc);
68void radeon_disable_vblank_kms(struct drm_device *dev, int crtc);
Mario Kleinerf5a80202010-10-23 04:42:17 +020069int radeon_get_vblank_timestamp_kms(struct drm_device *dev, int crtc,
70 int *max_error,
71 struct timeval *vblank_time,
72 unsigned flags);
Jerome Glisse771fe6b2009-06-05 14:42:42 +020073void radeon_driver_irq_preinstall_kms(struct drm_device *dev);
74int radeon_driver_irq_postinstall_kms(struct drm_device *dev);
75void radeon_driver_irq_uninstall_kms(struct drm_device *dev);
76irqreturn_t radeon_driver_irq_handler_kms(DRM_IRQ_ARGS);
Jerome Glisse771fe6b2009-06-05 14:42:42 +020077int radeon_dma_ioctl_kms(struct drm_device *dev, void *data,
78 struct drm_file *file_priv);
79int radeon_gem_object_init(struct drm_gem_object *obj);
80void radeon_gem_object_free(struct drm_gem_object *obj);
Mario Kleinerf5a80202010-10-23 04:42:17 +020081extern int radeon_get_crtc_scanoutpos(struct drm_device *dev, int crtc,
82 int *vpos, int *hpos);
Jerome Glisse771fe6b2009-06-05 14:42:42 +020083extern struct drm_ioctl_desc radeon_ioctls_kms[];
84extern int radeon_max_kms_ioctl;
85int radeon_mmap(struct file *filp, struct vm_area_struct *vma);
86#if defined(CONFIG_DEBUG_FS)
87int radeon_debugfs_init(struct drm_minor *minor);
88void radeon_debugfs_cleanup(struct drm_minor *minor);
89#endif
Jerome Glisse771fe6b2009-06-05 14:42:42 +020090
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Dave Airlie689b9d72005-09-30 17:09:07 +100092int radeon_no_wb;
Jerome Glisse771fe6b2009-06-05 14:42:42 +020093int radeon_modeset = -1;
94int radeon_dynclks = -1;
95int radeon_r4xx_atom = 0;
96int radeon_agpmode = 0;
97int radeon_vram_limit = 0;
98int radeon_gart_size = 512; /* default gart size */
99int radeon_benchmarking = 0;
Michel Dänzerecc0b322009-07-21 11:23:57 +0200100int radeon_testing = 0;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200101int radeon_connector_table = 0;
Dave Airlie4ce001a2009-08-13 16:32:14 +1000102int radeon_tv = 1;
Christian Koenigdafc3bd2009-10-11 23:49:13 +0200103int radeon_audio = 1;
Alex Deucherf46c0122010-03-31 00:33:27 -0400104int radeon_disp_priority = 0;
Alex Deuchere2b0a8e2010-03-17 02:07:37 -0400105int radeon_hw_i2c = 0;
Dave Airlie689b9d72005-09-30 17:09:07 +1000106
Niels de Vos61a2d072008-07-31 00:07:23 -0700107MODULE_PARM_DESC(no_wb, "Disable AGP writeback for scratch registers");
Dave Airlie689b9d72005-09-30 17:09:07 +1000108module_param_named(no_wb, radeon_no_wb, int, 0444);
109
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200110MODULE_PARM_DESC(modeset, "Disable/Enable modesetting");
111module_param_named(modeset, radeon_modeset, int, 0400);
112
113MODULE_PARM_DESC(dynclks, "Disable/Enable dynamic clocks");
114module_param_named(dynclks, radeon_dynclks, int, 0444);
115
116MODULE_PARM_DESC(r4xx_atom, "Enable ATOMBIOS modesetting for R4xx");
117module_param_named(r4xx_atom, radeon_r4xx_atom, int, 0444);
118
119MODULE_PARM_DESC(vramlimit, "Restrict VRAM for testing");
120module_param_named(vramlimit, radeon_vram_limit, int, 0600);
121
122MODULE_PARM_DESC(agpmode, "AGP Mode (-1 == PCI)");
123module_param_named(agpmode, radeon_agpmode, int, 0444);
124
125MODULE_PARM_DESC(gartsize, "Size of PCIE/IGP gart to setup in megabytes (32,64, etc)\n");
126module_param_named(gartsize, radeon_gart_size, int, 0600);
127
128MODULE_PARM_DESC(benchmark, "Run benchmark");
129module_param_named(benchmark, radeon_benchmarking, int, 0444);
130
Michel Dänzerecc0b322009-07-21 11:23:57 +0200131MODULE_PARM_DESC(test, "Run tests");
132module_param_named(test, radeon_testing, int, 0444);
133
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200134MODULE_PARM_DESC(connector_table, "Force connector table");
135module_param_named(connector_table, radeon_connector_table, int, 0444);
Dave Airlie4ce001a2009-08-13 16:32:14 +1000136
137MODULE_PARM_DESC(tv, "TV enable (0 = disable)");
138module_param_named(tv, radeon_tv, int, 0444);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200139
Christian Koenigdafc3bd2009-10-11 23:49:13 +0200140MODULE_PARM_DESC(audio, "Audio enable (0 = disable)");
141module_param_named(audio, radeon_audio, int, 0444);
142
Alex Deucherf46c0122010-03-31 00:33:27 -0400143MODULE_PARM_DESC(disp_priority, "Display Priority (0 = auto, 1 = normal, 2 = high)");
144module_param_named(disp_priority, radeon_disp_priority, int, 0444);
145
Alex Deuchere2b0a8e2010-03-17 02:07:37 -0400146MODULE_PARM_DESC(hw_i2c, "hw i2c engine enable (0 = disable)");
147module_param_named(hw_i2c, radeon_hw_i2c, int, 0444);
148
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700149static int radeon_suspend(struct drm_device *dev, pm_message_t state)
150{
151 drm_radeon_private_t *dev_priv = dev->dev_private;
152
Dave Airlie03efb882009-03-10 18:36:38 +1000153 if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_R600)
154 return 0;
155
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700156 /* Disable *all* interrupts */
Alex Deucher800b6992009-03-06 11:47:54 -0500157 if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_RS600)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700158 RADEON_WRITE(R500_DxMODE_INT_MASK, 0);
159 RADEON_WRITE(RADEON_GEN_INT_CNTL, 0);
160 return 0;
161}
162
163static int radeon_resume(struct drm_device *dev)
164{
165 drm_radeon_private_t *dev_priv = dev->dev_private;
166
Dave Airlie03efb882009-03-10 18:36:38 +1000167 if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_R600)
168 return 0;
169
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700170 /* Restore interrupt registers */
Alex Deucher800b6992009-03-06 11:47:54 -0500171 if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_RS600)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700172 RADEON_WRITE(R500_DxMODE_INT_MASK, dev_priv->r500_disp_irq_reg);
173 RADEON_WRITE(RADEON_GEN_INT_CNTL, dev_priv->irq_enable_reg);
174 return 0;
175}
176
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177static struct pci_device_id pciidlist[] = {
178 radeon_PCI_IDS
179};
180
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200181#if defined(CONFIG_DRM_RADEON_KMS)
182MODULE_DEVICE_TABLE(pci, pciidlist);
183#endif
184
185static struct drm_driver driver_old = {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000186 .driver_features =
187 DRIVER_USE_AGP | DRIVER_USE_MTRR | DRIVER_PCI_DMA | DRIVER_SG |
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700188 DRIVER_HAVE_IRQ | DRIVER_HAVE_DMA | DRIVER_IRQ_SHARED,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 .dev_priv_size = sizeof(drm_radeon_buf_priv_t),
Dave Airlie22eae942005-11-10 22:16:34 +1100190 .load = radeon_driver_load,
191 .firstopen = radeon_driver_firstopen,
192 .open = radeon_driver_open,
193 .preclose = radeon_driver_preclose,
194 .postclose = radeon_driver_postclose,
195 .lastclose = radeon_driver_lastclose,
196 .unload = radeon_driver_unload,
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700197 .suspend = radeon_suspend,
198 .resume = radeon_resume,
199 .get_vblank_counter = radeon_get_vblank_counter,
200 .enable_vblank = radeon_enable_vblank,
201 .disable_vblank = radeon_disable_vblank,
Dave Airlie60f2ee02008-12-19 10:22:02 +1100202 .master_create = radeon_master_create,
203 .master_destroy = radeon_master_destroy,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 .irq_preinstall = radeon_driver_irq_preinstall,
205 .irq_postinstall = radeon_driver_irq_postinstall,
206 .irq_uninstall = radeon_driver_irq_uninstall,
207 .irq_handler = radeon_driver_irq_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 .reclaim_buffers = drm_core_reclaim_buffers,
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
Arnd Bergmanndc880ab2010-07-06 18:54:47 +0200223 .llseek = noop_llseek,
Dave Airlie22eae942005-11-10 22:16:34 +1100224 },
225
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 .pci_driver = {
Dave Airlie22eae942005-11-10 22:16:34 +1100227 .name = DRIVER_NAME,
228 .id_table = pciidlist,
229 },
230
231 .name = DRIVER_NAME,
232 .desc = DRIVER_DESC,
233 .date = DRIVER_DATE,
234 .major = DRIVER_MAJOR,
235 .minor = DRIVER_MINOR,
236 .patchlevel = DRIVER_PATCHLEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237};
238
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200239static struct drm_driver kms_driver;
240
241static int __devinit
242radeon_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
243{
Jordan Crousedcdb1672010-05-27 13:40:25 -0600244 return drm_get_pci_dev(pdev, ent, &kms_driver);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200245}
246
247static void
248radeon_pci_remove(struct pci_dev *pdev)
249{
250 struct drm_device *dev = pci_get_drvdata(pdev);
251
252 drm_put_dev(dev);
253}
254
255static int
256radeon_pci_suspend(struct pci_dev *pdev, pm_message_t state)
257{
258 struct drm_device *dev = pci_get_drvdata(pdev);
259 return radeon_suspend_kms(dev, state);
260}
261
262static int
263radeon_pci_resume(struct pci_dev *pdev)
264{
265 struct drm_device *dev = pci_get_drvdata(pdev);
266 return radeon_resume_kms(dev);
267}
268
269static struct drm_driver kms_driver = {
270 .driver_features =
271 DRIVER_USE_AGP | DRIVER_USE_MTRR | DRIVER_PCI_DMA | DRIVER_SG |
272 DRIVER_HAVE_IRQ | DRIVER_HAVE_DMA | DRIVER_IRQ_SHARED | DRIVER_GEM,
273 .dev_priv_size = 0,
274 .load = radeon_driver_load_kms,
275 .firstopen = radeon_driver_firstopen_kms,
276 .open = radeon_driver_open_kms,
277 .preclose = radeon_driver_preclose_kms,
278 .postclose = radeon_driver_postclose_kms,
279 .lastclose = radeon_driver_lastclose_kms,
280 .unload = radeon_driver_unload_kms,
281 .suspend = radeon_suspend_kms,
282 .resume = radeon_resume_kms,
283 .get_vblank_counter = radeon_get_vblank_counter_kms,
284 .enable_vblank = radeon_enable_vblank_kms,
285 .disable_vblank = radeon_disable_vblank_kms,
Mario Kleinerf5a80202010-10-23 04:42:17 +0200286 .get_vblank_timestamp = radeon_get_vblank_timestamp_kms,
287 .get_scanout_position = radeon_get_crtc_scanoutpos,
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200288#if defined(CONFIG_DEBUG_FS)
289 .debugfs_init = radeon_debugfs_init,
290 .debugfs_cleanup = radeon_debugfs_cleanup,
291#endif
292 .irq_preinstall = radeon_driver_irq_preinstall_kms,
293 .irq_postinstall = radeon_driver_irq_postinstall_kms,
294 .irq_uninstall = radeon_driver_irq_uninstall_kms,
295 .irq_handler = radeon_driver_irq_handler_kms,
296 .reclaim_buffers = drm_core_reclaim_buffers,
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200297 .ioctls = radeon_ioctls_kms,
298 .gem_init_object = radeon_gem_object_init,
299 .gem_free_object = radeon_gem_object_free,
300 .dma_ioctl = radeon_dma_ioctl_kms,
301 .fops = {
302 .owner = THIS_MODULE,
303 .open = drm_open,
304 .release = drm_release,
Arnd Bergmanned8b6702009-12-16 22:17:09 +0000305 .unlocked_ioctl = drm_ioctl,
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200306 .mmap = radeon_mmap,
307 .poll = drm_poll,
308 .fasync = drm_fasync,
Jerome Glisse4fa07bf2010-05-06 18:52:14 +0200309 .read = drm_read,
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200310#ifdef CONFIG_COMPAT
Dave Airlie70ba2a32009-09-15 09:03:43 +1000311 .compat_ioctl = radeon_kms_compat_ioctl,
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200312#endif
313 },
314
315 .pci_driver = {
316 .name = DRIVER_NAME,
317 .id_table = pciidlist,
318 .probe = radeon_pci_probe,
319 .remove = radeon_pci_remove,
320 .suspend = radeon_pci_suspend,
321 .resume = radeon_pci_resume,
322 },
323
324 .name = DRIVER_NAME,
325 .desc = DRIVER_DESC,
326 .date = DRIVER_DATE,
327 .major = KMS_DRIVER_MAJOR,
328 .minor = KMS_DRIVER_MINOR,
329 .patchlevel = KMS_DRIVER_PATCHLEVEL,
330};
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200331
332static struct drm_driver *driver;
333
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334static int __init radeon_init(void)
335{
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200336 driver = &driver_old;
337 driver->num_ioctls = radeon_max_ioctl;
Dave Airliede050652009-08-03 12:05:34 +1000338#ifdef CONFIG_VGA_CONSOLE
339 if (vgacon_text_force() && radeon_modeset == -1) {
340 DRM_INFO("VGACON disable radeon kernel modesetting.\n");
341 driver = &driver_old;
342 driver->driver_features &= ~DRIVER_MODESET;
343 radeon_modeset = 0;
344 }
345#endif
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200346 /* if enabled by default */
347 if (radeon_modeset == -1) {
Dave Airliea0cdc642009-09-08 11:09:50 +1000348#ifdef CONFIG_DRM_RADEON_KMS
349 DRM_INFO("radeon defaulting to kernel modesetting.\n");
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200350 radeon_modeset = 1;
Dave Airliea0cdc642009-09-08 11:09:50 +1000351#else
352 DRM_INFO("radeon defaulting to userspace modesetting.\n");
353 radeon_modeset = 0;
354#endif
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200355 }
356 if (radeon_modeset == 1) {
357 DRM_INFO("radeon kernel modesetting enabled.\n");
358 driver = &kms_driver;
359 driver->driver_features |= DRIVER_MODESET;
360 driver->num_ioctls = radeon_max_kms_ioctl;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000361 radeon_register_atpx_handler();
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200362 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200363 /* if the vga console setting is enabled still
364 * let modprobe override it */
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200365 return drm_init(driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366}
367
368static void __exit radeon_exit(void)
369{
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200370 drm_exit(driver);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000371 radeon_unregister_atpx_handler();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372}
373
Jerome Glisse176f6132009-06-22 18:16:13 +0200374module_init(radeon_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375module_exit(radeon_exit);
376
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000377MODULE_AUTHOR(DRIVER_AUTHOR);
378MODULE_DESCRIPTION(DRIVER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379MODULE_LICENSE("GPL and additional rights");