blob: ef7bb3f6ecae9e0c5e7c647947122b9364c93f78 [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>
Paul Gortmakere0cd3602011-08-30 11:04:30 -040039#include <linux/module.h>
Jerome Glisse771fe6b2009-06-05 14:42:42 +020040
41
Jerome Glisse771fe6b2009-06-05 14:42:42 +020042/*
43 * KMS wrapper.
Dave Airlie0de1a572010-03-01 16:32:15 +100044 * - 2.0.0 - initial interface
45 * - 2.1.0 - add square tiling interface
Alex Deucherfdb43522010-03-26 15:24:14 -040046 * - 2.2.0 - add r6xx/r7xx const buffer support
Marek Olšákcae94b02010-02-21 21:24:15 +010047 * - 2.3.0 - add MSPOS + 3D texture + r500 VAP regs
Jerome Glissebc35afd2010-05-12 18:01:13 +020048 * - 2.4.0 - add crtc id query
Alex Deucher148a03b2010-06-03 19:00:03 -040049 * - 2.5.0 - add get accel 2 to work around ddx breakage for evergreen
Dave Airlieab9e1f52010-07-13 11:11:11 +100050 * - 2.6.0 - add tiling config query (r6xx+), add initial HiZ support (r300->r500)
Alex Deucher71901cc2010-10-21 13:45:30 -040051 * 2.7.0 - fixups for r600 2D tiling support. (no external ABI change), add eg dyn gpr regs
Alex Deucher58bbf012011-01-24 17:14:26 -050052 * 2.8.0 - pageflip support, r500 US_FORMAT regs. r500 ARGB2101010 colorbuf, r300->r500 CMASK, clock crystal query
Dave Airlie486af182011-03-01 14:32:27 +100053 * 2.9.0 - r600 tiling (s3tc,rgtc) working, SET_PREDICATION packet 3 on r600 + eg, backend query
Alex Deucherb8709892011-07-27 04:17:25 +000054 * 2.10.0 - fusion 2D tiling
55 * 2.11.0 - backend map, initial compute support for the CS checker
Marek Olšáke70f2242011-10-25 01:38:45 +020056 * 2.12.0 - RADEON_CS_KEEP_TILING_FLAGS
Marek Olšákdd220a02012-01-27 12:17:59 -050057 * 2.13.0 - virtual memory support, streamout
Jerome Glisse285484e2011-12-16 17:03:42 -050058 * 2.14.0 - add evergreen tiling informations
Tom Stellard609c1e12012-03-20 17:17:55 -040059 * 2.15.0 - add max_pipes query
Jerome Glisse771fe6b2009-06-05 14:42:42 +020060 */
61#define KMS_DRIVER_MAJOR 2
Tom Stellard609c1e12012-03-20 17:17:55 -040062#define KMS_DRIVER_MINOR 15
Jerome Glisse771fe6b2009-06-05 14:42:42 +020063#define KMS_DRIVER_PATCHLEVEL 0
64int radeon_driver_load_kms(struct drm_device *dev, unsigned long flags);
65int radeon_driver_unload_kms(struct drm_device *dev);
66int radeon_driver_firstopen_kms(struct drm_device *dev);
67void radeon_driver_lastclose_kms(struct drm_device *dev);
68int radeon_driver_open_kms(struct drm_device *dev, struct drm_file *file_priv);
69void radeon_driver_postclose_kms(struct drm_device *dev,
70 struct drm_file *file_priv);
71void radeon_driver_preclose_kms(struct drm_device *dev,
72 struct drm_file *file_priv);
73int radeon_suspend_kms(struct drm_device *dev, pm_message_t state);
74int radeon_resume_kms(struct drm_device *dev);
75u32 radeon_get_vblank_counter_kms(struct drm_device *dev, int crtc);
76int radeon_enable_vblank_kms(struct drm_device *dev, int crtc);
77void radeon_disable_vblank_kms(struct drm_device *dev, int crtc);
Mario Kleinerf5a80202010-10-23 04:42:17 +020078int radeon_get_vblank_timestamp_kms(struct drm_device *dev, int crtc,
79 int *max_error,
80 struct timeval *vblank_time,
81 unsigned flags);
Jerome Glisse771fe6b2009-06-05 14:42:42 +020082void radeon_driver_irq_preinstall_kms(struct drm_device *dev);
83int radeon_driver_irq_postinstall_kms(struct drm_device *dev);
84void radeon_driver_irq_uninstall_kms(struct drm_device *dev);
85irqreturn_t radeon_driver_irq_handler_kms(DRM_IRQ_ARGS);
Jerome Glisse771fe6b2009-06-05 14:42:42 +020086int radeon_dma_ioctl_kms(struct drm_device *dev, void *data,
87 struct drm_file *file_priv);
88int radeon_gem_object_init(struct drm_gem_object *obj);
89void radeon_gem_object_free(struct drm_gem_object *obj);
Jerome Glisse721604a2012-01-05 22:11:05 -050090int radeon_gem_object_open(struct drm_gem_object *obj,
91 struct drm_file *file_priv);
92void radeon_gem_object_close(struct drm_gem_object *obj,
93 struct drm_file *file_priv);
Mario Kleinerf5a80202010-10-23 04:42:17 +020094extern int radeon_get_crtc_scanoutpos(struct drm_device *dev, int crtc,
95 int *vpos, int *hpos);
Jerome Glisse771fe6b2009-06-05 14:42:42 +020096extern struct drm_ioctl_desc radeon_ioctls_kms[];
97extern int radeon_max_kms_ioctl;
98int radeon_mmap(struct file *filp, struct vm_area_struct *vma);
Dave Airlieff72145b2011-02-07 12:16:14 +100099int radeon_mode_dumb_mmap(struct drm_file *filp,
100 struct drm_device *dev,
101 uint32_t handle, uint64_t *offset_p);
102int radeon_mode_dumb_create(struct drm_file *file_priv,
103 struct drm_device *dev,
104 struct drm_mode_create_dumb *args);
105int radeon_mode_dumb_destroy(struct drm_file *file_priv,
106 struct drm_device *dev,
107 uint32_t handle);
108
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200109#if defined(CONFIG_DEBUG_FS)
110int radeon_debugfs_init(struct drm_minor *minor);
111void radeon_debugfs_cleanup(struct drm_minor *minor);
112#endif
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Dave Airlie689b9d72005-09-30 17:09:07 +1000115int radeon_no_wb;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200116int radeon_modeset = -1;
117int radeon_dynclks = -1;
118int radeon_r4xx_atom = 0;
119int radeon_agpmode = 0;
120int radeon_vram_limit = 0;
121int radeon_gart_size = 512; /* default gart size */
122int radeon_benchmarking = 0;
Michel Dänzerecc0b322009-07-21 11:23:57 +0200123int radeon_testing = 0;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200124int radeon_connector_table = 0;
Dave Airlie4ce001a2009-08-13 16:32:14 +1000125int radeon_tv = 1;
Alex Deucher805c2212011-06-06 17:39:16 -0400126int radeon_audio = 0;
Alex Deucherf46c0122010-03-31 00:33:27 -0400127int radeon_disp_priority = 0;
Alex Deuchere2b0a8e2010-03-17 02:07:37 -0400128int radeon_hw_i2c = 0;
Alex Deucherd42dd572011-01-12 20:05:11 -0500129int radeon_pcie_gen2 = 0;
Alex Deuchera18cee12011-11-01 14:20:30 -0400130int radeon_msi = -1;
Dave Airlie689b9d72005-09-30 17:09:07 +1000131
Niels de Vos61a2d072008-07-31 00:07:23 -0700132MODULE_PARM_DESC(no_wb, "Disable AGP writeback for scratch registers");
Dave Airlie689b9d72005-09-30 17:09:07 +1000133module_param_named(no_wb, radeon_no_wb, int, 0444);
134
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200135MODULE_PARM_DESC(modeset, "Disable/Enable modesetting");
136module_param_named(modeset, radeon_modeset, int, 0400);
137
138MODULE_PARM_DESC(dynclks, "Disable/Enable dynamic clocks");
139module_param_named(dynclks, radeon_dynclks, int, 0444);
140
141MODULE_PARM_DESC(r4xx_atom, "Enable ATOMBIOS modesetting for R4xx");
142module_param_named(r4xx_atom, radeon_r4xx_atom, int, 0444);
143
144MODULE_PARM_DESC(vramlimit, "Restrict VRAM for testing");
145module_param_named(vramlimit, radeon_vram_limit, int, 0600);
146
147MODULE_PARM_DESC(agpmode, "AGP Mode (-1 == PCI)");
148module_param_named(agpmode, radeon_agpmode, int, 0444);
149
Jean Delvare27d4d052011-11-30 17:22:55 +0100150MODULE_PARM_DESC(gartsize, "Size of PCIE/IGP gart to setup in megabytes (32, 64, etc)");
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200151module_param_named(gartsize, radeon_gart_size, int, 0600);
152
153MODULE_PARM_DESC(benchmark, "Run benchmark");
154module_param_named(benchmark, radeon_benchmarking, int, 0444);
155
Michel Dänzerecc0b322009-07-21 11:23:57 +0200156MODULE_PARM_DESC(test, "Run tests");
157module_param_named(test, radeon_testing, int, 0444);
158
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200159MODULE_PARM_DESC(connector_table, "Force connector table");
160module_param_named(connector_table, radeon_connector_table, int, 0444);
Dave Airlie4ce001a2009-08-13 16:32:14 +1000161
162MODULE_PARM_DESC(tv, "TV enable (0 = disable)");
163module_param_named(tv, radeon_tv, int, 0444);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200164
Alex Deucher805c2212011-06-06 17:39:16 -0400165MODULE_PARM_DESC(audio, "Audio enable (1 = enable)");
Christian Koenigdafc3bd2009-10-11 23:49:13 +0200166module_param_named(audio, radeon_audio, int, 0444);
167
Alex Deucherf46c0122010-03-31 00:33:27 -0400168MODULE_PARM_DESC(disp_priority, "Display Priority (0 = auto, 1 = normal, 2 = high)");
169module_param_named(disp_priority, radeon_disp_priority, int, 0444);
170
Alex Deuchere2b0a8e2010-03-17 02:07:37 -0400171MODULE_PARM_DESC(hw_i2c, "hw i2c engine enable (0 = disable)");
172module_param_named(hw_i2c, radeon_hw_i2c, int, 0444);
173
Alex Deucherd42dd572011-01-12 20:05:11 -0500174MODULE_PARM_DESC(pcie_gen2, "PCIE Gen2 mode (1 = enable)");
175module_param_named(pcie_gen2, radeon_pcie_gen2, int, 0444);
176
Alex Deuchera18cee12011-11-01 14:20:30 -0400177MODULE_PARM_DESC(msi, "MSI support (1 = enable, 0 = disable, -1 = auto)");
178module_param_named(msi, radeon_msi, int, 0444);
179
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700180static int radeon_suspend(struct drm_device *dev, pm_message_t state)
181{
182 drm_radeon_private_t *dev_priv = dev->dev_private;
183
Dave Airlie03efb882009-03-10 18:36:38 +1000184 if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_R600)
185 return 0;
186
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700187 /* Disable *all* interrupts */
Alex Deucher800b6992009-03-06 11:47:54 -0500188 if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_RS600)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700189 RADEON_WRITE(R500_DxMODE_INT_MASK, 0);
190 RADEON_WRITE(RADEON_GEN_INT_CNTL, 0);
191 return 0;
192}
193
194static int radeon_resume(struct drm_device *dev)
195{
196 drm_radeon_private_t *dev_priv = dev->dev_private;
197
Dave Airlie03efb882009-03-10 18:36:38 +1000198 if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_R600)
199 return 0;
200
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700201 /* Restore interrupt registers */
Alex Deucher800b6992009-03-06 11:47:54 -0500202 if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_RS600)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700203 RADEON_WRITE(R500_DxMODE_INT_MASK, dev_priv->r500_disp_irq_reg);
204 RADEON_WRITE(RADEON_GEN_INT_CNTL, dev_priv->irq_enable_reg);
205 return 0;
206}
207
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208static struct pci_device_id pciidlist[] = {
209 radeon_PCI_IDS
210};
211
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200212#if defined(CONFIG_DRM_RADEON_KMS)
213MODULE_DEVICE_TABLE(pci, pciidlist);
214#endif
215
Arjan van de Vene08e96d2011-10-31 07:28:57 -0700216static const struct file_operations radeon_driver_old_fops = {
217 .owner = THIS_MODULE,
218 .open = drm_open,
219 .release = drm_release,
220 .unlocked_ioctl = drm_ioctl,
221 .mmap = drm_mmap,
222 .poll = drm_poll,
223 .fasync = drm_fasync,
224 .read = drm_read,
225#ifdef CONFIG_COMPAT
226 .compat_ioctl = radeon_compat_ioctl,
227#endif
228 .llseek = noop_llseek,
229};
230
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200231static struct drm_driver driver_old = {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000232 .driver_features =
233 DRIVER_USE_AGP | DRIVER_USE_MTRR | DRIVER_PCI_DMA | DRIVER_SG |
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700234 DRIVER_HAVE_IRQ | DRIVER_HAVE_DMA | DRIVER_IRQ_SHARED,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 .dev_priv_size = sizeof(drm_radeon_buf_priv_t),
Dave Airlie22eae942005-11-10 22:16:34 +1100236 .load = radeon_driver_load,
237 .firstopen = radeon_driver_firstopen,
238 .open = radeon_driver_open,
239 .preclose = radeon_driver_preclose,
240 .postclose = radeon_driver_postclose,
241 .lastclose = radeon_driver_lastclose,
242 .unload = radeon_driver_unload,
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700243 .suspend = radeon_suspend,
244 .resume = radeon_resume,
245 .get_vblank_counter = radeon_get_vblank_counter,
246 .enable_vblank = radeon_enable_vblank,
247 .disable_vblank = radeon_disable_vblank,
Dave Airlie60f2ee02008-12-19 10:22:02 +1100248 .master_create = radeon_master_create,
249 .master_destroy = radeon_master_destroy,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 .irq_preinstall = radeon_driver_irq_preinstall,
251 .irq_postinstall = radeon_driver_irq_postinstall,
252 .irq_uninstall = radeon_driver_irq_uninstall,
253 .irq_handler = radeon_driver_irq_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 .reclaim_buffers = drm_core_reclaim_buffers,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 .ioctls = radeon_ioctls,
256 .dma_ioctl = radeon_cp_buffers,
Arjan van de Vene08e96d2011-10-31 07:28:57 -0700257 .fops = &radeon_driver_old_fops,
Dave Airlie22eae942005-11-10 22:16:34 +1100258 .name = DRIVER_NAME,
259 .desc = DRIVER_DESC,
260 .date = DRIVER_DATE,
261 .major = DRIVER_MAJOR,
262 .minor = DRIVER_MINOR,
263 .patchlevel = DRIVER_PATCHLEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264};
265
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200266static struct drm_driver kms_driver;
267
Benjamin Herrenschmidta56f7422010-10-06 16:39:07 +0000268static void radeon_kick_out_firmware_fb(struct pci_dev *pdev)
269{
270 struct apertures_struct *ap;
271 bool primary = false;
272
273 ap = alloc_apertures(1);
274 ap->ranges[0].base = pci_resource_start(pdev, 0);
275 ap->ranges[0].size = pci_resource_len(pdev, 0);
276
277#ifdef CONFIG_X86
278 primary = pdev->resource[PCI_ROM_RESOURCE].flags & IORESOURCE_ROM_SHADOW;
279#endif
280 remove_conflicting_framebuffers(ap, "radeondrmfb", primary);
281 kfree(ap);
282}
283
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200284static int __devinit
285radeon_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
286{
Benjamin Herrenschmidta56f7422010-10-06 16:39:07 +0000287 /* Get rid of things like offb */
288 radeon_kick_out_firmware_fb(pdev);
289
Jordan Crousedcdb1672010-05-27 13:40:25 -0600290 return drm_get_pci_dev(pdev, ent, &kms_driver);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200291}
292
293static void
294radeon_pci_remove(struct pci_dev *pdev)
295{
296 struct drm_device *dev = pci_get_drvdata(pdev);
297
298 drm_put_dev(dev);
299}
300
301static int
302radeon_pci_suspend(struct pci_dev *pdev, pm_message_t state)
303{
304 struct drm_device *dev = pci_get_drvdata(pdev);
305 return radeon_suspend_kms(dev, state);
306}
307
308static int
309radeon_pci_resume(struct pci_dev *pdev)
310{
311 struct drm_device *dev = pci_get_drvdata(pdev);
312 return radeon_resume_kms(dev);
313}
314
Arjan van de Vene08e96d2011-10-31 07:28:57 -0700315static const struct file_operations radeon_driver_kms_fops = {
316 .owner = THIS_MODULE,
317 .open = drm_open,
318 .release = drm_release,
319 .unlocked_ioctl = drm_ioctl,
320 .mmap = radeon_mmap,
321 .poll = drm_poll,
322 .fasync = drm_fasync,
323 .read = drm_read,
324#ifdef CONFIG_COMPAT
325 .compat_ioctl = radeon_kms_compat_ioctl,
326#endif
327};
328
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200329static struct drm_driver kms_driver = {
330 .driver_features =
331 DRIVER_USE_AGP | DRIVER_USE_MTRR | DRIVER_PCI_DMA | DRIVER_SG |
332 DRIVER_HAVE_IRQ | DRIVER_HAVE_DMA | DRIVER_IRQ_SHARED | DRIVER_GEM,
333 .dev_priv_size = 0,
334 .load = radeon_driver_load_kms,
335 .firstopen = radeon_driver_firstopen_kms,
336 .open = radeon_driver_open_kms,
337 .preclose = radeon_driver_preclose_kms,
338 .postclose = radeon_driver_postclose_kms,
339 .lastclose = radeon_driver_lastclose_kms,
340 .unload = radeon_driver_unload_kms,
341 .suspend = radeon_suspend_kms,
342 .resume = radeon_resume_kms,
343 .get_vblank_counter = radeon_get_vblank_counter_kms,
344 .enable_vblank = radeon_enable_vblank_kms,
345 .disable_vblank = radeon_disable_vblank_kms,
Mario Kleinerf5a80202010-10-23 04:42:17 +0200346 .get_vblank_timestamp = radeon_get_vblank_timestamp_kms,
347 .get_scanout_position = radeon_get_crtc_scanoutpos,
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200348#if defined(CONFIG_DEBUG_FS)
349 .debugfs_init = radeon_debugfs_init,
350 .debugfs_cleanup = radeon_debugfs_cleanup,
351#endif
352 .irq_preinstall = radeon_driver_irq_preinstall_kms,
353 .irq_postinstall = radeon_driver_irq_postinstall_kms,
354 .irq_uninstall = radeon_driver_irq_uninstall_kms,
355 .irq_handler = radeon_driver_irq_handler_kms,
356 .reclaim_buffers = drm_core_reclaim_buffers,
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200357 .ioctls = radeon_ioctls_kms,
358 .gem_init_object = radeon_gem_object_init,
359 .gem_free_object = radeon_gem_object_free,
Jerome Glisse721604a2012-01-05 22:11:05 -0500360 .gem_open_object = radeon_gem_object_open,
361 .gem_close_object = radeon_gem_object_close,
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200362 .dma_ioctl = radeon_dma_ioctl_kms,
Dave Airlieff72145b2011-02-07 12:16:14 +1000363 .dumb_create = radeon_mode_dumb_create,
364 .dumb_map_offset = radeon_mode_dumb_mmap,
365 .dumb_destroy = radeon_mode_dumb_destroy,
Arjan van de Vene08e96d2011-10-31 07:28:57 -0700366 .fops = &radeon_driver_kms_fops,
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200367 .name = DRIVER_NAME,
368 .desc = DRIVER_DESC,
369 .date = DRIVER_DATE,
370 .major = KMS_DRIVER_MAJOR,
371 .minor = KMS_DRIVER_MINOR,
372 .patchlevel = KMS_DRIVER_PATCHLEVEL,
373};
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200374
375static struct drm_driver *driver;
Dave Airlie8410ea32010-12-15 03:16:38 +1000376static struct pci_driver *pdriver;
377
378static struct pci_driver radeon_pci_driver = {
379 .name = DRIVER_NAME,
380 .id_table = pciidlist,
381};
382
383static struct pci_driver radeon_kms_pci_driver = {
384 .name = DRIVER_NAME,
385 .id_table = pciidlist,
386 .probe = radeon_pci_probe,
387 .remove = radeon_pci_remove,
388 .suspend = radeon_pci_suspend,
389 .resume = radeon_pci_resume,
390};
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200391
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392static int __init radeon_init(void)
393{
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200394 driver = &driver_old;
Dave Airlie8410ea32010-12-15 03:16:38 +1000395 pdriver = &radeon_pci_driver;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200396 driver->num_ioctls = radeon_max_ioctl;
Dave Airliede050652009-08-03 12:05:34 +1000397#ifdef CONFIG_VGA_CONSOLE
398 if (vgacon_text_force() && radeon_modeset == -1) {
399 DRM_INFO("VGACON disable radeon kernel modesetting.\n");
400 driver = &driver_old;
Dave Airlie8410ea32010-12-15 03:16:38 +1000401 pdriver = &radeon_pci_driver;
Dave Airliede050652009-08-03 12:05:34 +1000402 driver->driver_features &= ~DRIVER_MODESET;
403 radeon_modeset = 0;
404 }
405#endif
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200406 /* if enabled by default */
407 if (radeon_modeset == -1) {
Dave Airliea0cdc642009-09-08 11:09:50 +1000408#ifdef CONFIG_DRM_RADEON_KMS
409 DRM_INFO("radeon defaulting to kernel modesetting.\n");
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200410 radeon_modeset = 1;
Dave Airliea0cdc642009-09-08 11:09:50 +1000411#else
412 DRM_INFO("radeon defaulting to userspace modesetting.\n");
413 radeon_modeset = 0;
414#endif
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200415 }
416 if (radeon_modeset == 1) {
417 DRM_INFO("radeon kernel modesetting enabled.\n");
418 driver = &kms_driver;
Dave Airlie8410ea32010-12-15 03:16:38 +1000419 pdriver = &radeon_kms_pci_driver;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200420 driver->driver_features |= DRIVER_MODESET;
421 driver->num_ioctls = radeon_max_kms_ioctl;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000422 radeon_register_atpx_handler();
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200423 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200424 /* if the vga console setting is enabled still
425 * let modprobe override it */
Dave Airlie8410ea32010-12-15 03:16:38 +1000426 return drm_pci_init(driver, pdriver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427}
428
429static void __exit radeon_exit(void)
430{
Dave Airlie8410ea32010-12-15 03:16:38 +1000431 drm_pci_exit(driver, pdriver);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000432 radeon_unregister_atpx_handler();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433}
434
Jerome Glisse176f6132009-06-22 18:16:13 +0200435module_init(radeon_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436module_exit(radeon_exit);
437
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000438MODULE_AUTHOR(DRIVER_AUTHOR);
439MODULE_DESCRIPTION(DRIVER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440MODULE_LICENSE("GPL and additional rights");