blob: c12b0775d688cc148bdec2f3fc72f384b2bf7add [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 Deucher58bbf012011-01-24 17:14:26 -050051 * 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 +100052 * 2.9.0 - r600 tiling (s3tc,rgtc) working, SET_PREDICATION packet 3 on r600 + eg, backend query
Alex Deucherb8709892011-07-27 04:17:25 +000053 * 2.10.0 - fusion 2D tiling
54 * 2.11.0 - backend map, initial compute support for the CS checker
Jerome Glisse771fe6b2009-06-05 14:42:42 +020055 */
56#define KMS_DRIVER_MAJOR 2
Alex Deuchere55b9422011-07-15 19:53:52 +000057#define KMS_DRIVER_MINOR 11
Jerome Glisse771fe6b2009-06-05 14:42:42 +020058#define KMS_DRIVER_PATCHLEVEL 0
59int radeon_driver_load_kms(struct drm_device *dev, unsigned long flags);
60int radeon_driver_unload_kms(struct drm_device *dev);
61int radeon_driver_firstopen_kms(struct drm_device *dev);
62void radeon_driver_lastclose_kms(struct drm_device *dev);
63int radeon_driver_open_kms(struct drm_device *dev, struct drm_file *file_priv);
64void radeon_driver_postclose_kms(struct drm_device *dev,
65 struct drm_file *file_priv);
66void radeon_driver_preclose_kms(struct drm_device *dev,
67 struct drm_file *file_priv);
68int radeon_suspend_kms(struct drm_device *dev, pm_message_t state);
69int radeon_resume_kms(struct drm_device *dev);
70u32 radeon_get_vblank_counter_kms(struct drm_device *dev, int crtc);
71int radeon_enable_vblank_kms(struct drm_device *dev, int crtc);
72void radeon_disable_vblank_kms(struct drm_device *dev, int crtc);
Mario Kleinerf5a80202010-10-23 04:42:17 +020073int radeon_get_vblank_timestamp_kms(struct drm_device *dev, int crtc,
74 int *max_error,
75 struct timeval *vblank_time,
76 unsigned flags);
Jerome Glisse771fe6b2009-06-05 14:42:42 +020077void radeon_driver_irq_preinstall_kms(struct drm_device *dev);
78int radeon_driver_irq_postinstall_kms(struct drm_device *dev);
79void radeon_driver_irq_uninstall_kms(struct drm_device *dev);
80irqreturn_t radeon_driver_irq_handler_kms(DRM_IRQ_ARGS);
Jerome Glisse771fe6b2009-06-05 14:42:42 +020081int radeon_dma_ioctl_kms(struct drm_device *dev, void *data,
82 struct drm_file *file_priv);
83int radeon_gem_object_init(struct drm_gem_object *obj);
84void radeon_gem_object_free(struct drm_gem_object *obj);
Mario Kleinerf5a80202010-10-23 04:42:17 +020085extern int radeon_get_crtc_scanoutpos(struct drm_device *dev, int crtc,
86 int *vpos, int *hpos);
Jerome Glisse771fe6b2009-06-05 14:42:42 +020087extern struct drm_ioctl_desc radeon_ioctls_kms[];
88extern int radeon_max_kms_ioctl;
89int radeon_mmap(struct file *filp, struct vm_area_struct *vma);
Dave Airlieff72145b2011-02-07 12:16:14 +100090int radeon_mode_dumb_mmap(struct drm_file *filp,
91 struct drm_device *dev,
92 uint32_t handle, uint64_t *offset_p);
93int radeon_mode_dumb_create(struct drm_file *file_priv,
94 struct drm_device *dev,
95 struct drm_mode_create_dumb *args);
96int radeon_mode_dumb_destroy(struct drm_file *file_priv,
97 struct drm_device *dev,
98 uint32_t handle);
99
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200100#if defined(CONFIG_DEBUG_FS)
101int radeon_debugfs_init(struct drm_minor *minor);
102void radeon_debugfs_cleanup(struct drm_minor *minor);
103#endif
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Dave Airlie689b9d72005-09-30 17:09:07 +1000106int radeon_no_wb;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200107int radeon_modeset = -1;
108int radeon_dynclks = -1;
109int radeon_r4xx_atom = 0;
110int radeon_agpmode = 0;
111int radeon_vram_limit = 0;
112int radeon_gart_size = 512; /* default gart size */
113int radeon_benchmarking = 0;
Michel Dänzerecc0b322009-07-21 11:23:57 +0200114int radeon_testing = 0;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200115int radeon_connector_table = 0;
Dave Airlie4ce001a2009-08-13 16:32:14 +1000116int radeon_tv = 1;
Alex Deucher805c2212011-06-06 17:39:16 -0400117int radeon_audio = 0;
Alex Deucherf46c0122010-03-31 00:33:27 -0400118int radeon_disp_priority = 0;
Alex Deuchere2b0a8e2010-03-17 02:07:37 -0400119int radeon_hw_i2c = 0;
Alex Deucherd42dd572011-01-12 20:05:11 -0500120int radeon_pcie_gen2 = 0;
Alex Deuchera18cee12011-11-01 14:20:30 -0400121int radeon_msi = -1;
Dave Airlie689b9d72005-09-30 17:09:07 +1000122
Niels de Vos61a2d072008-07-31 00:07:23 -0700123MODULE_PARM_DESC(no_wb, "Disable AGP writeback for scratch registers");
Dave Airlie689b9d72005-09-30 17:09:07 +1000124module_param_named(no_wb, radeon_no_wb, int, 0444);
125
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200126MODULE_PARM_DESC(modeset, "Disable/Enable modesetting");
127module_param_named(modeset, radeon_modeset, int, 0400);
128
129MODULE_PARM_DESC(dynclks, "Disable/Enable dynamic clocks");
130module_param_named(dynclks, radeon_dynclks, int, 0444);
131
132MODULE_PARM_DESC(r4xx_atom, "Enable ATOMBIOS modesetting for R4xx");
133module_param_named(r4xx_atom, radeon_r4xx_atom, int, 0444);
134
135MODULE_PARM_DESC(vramlimit, "Restrict VRAM for testing");
136module_param_named(vramlimit, radeon_vram_limit, int, 0600);
137
138MODULE_PARM_DESC(agpmode, "AGP Mode (-1 == PCI)");
139module_param_named(agpmode, radeon_agpmode, int, 0444);
140
141MODULE_PARM_DESC(gartsize, "Size of PCIE/IGP gart to setup in megabytes (32,64, etc)\n");
142module_param_named(gartsize, radeon_gart_size, int, 0600);
143
144MODULE_PARM_DESC(benchmark, "Run benchmark");
145module_param_named(benchmark, radeon_benchmarking, int, 0444);
146
Michel Dänzerecc0b322009-07-21 11:23:57 +0200147MODULE_PARM_DESC(test, "Run tests");
148module_param_named(test, radeon_testing, int, 0444);
149
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200150MODULE_PARM_DESC(connector_table, "Force connector table");
151module_param_named(connector_table, radeon_connector_table, int, 0444);
Dave Airlie4ce001a2009-08-13 16:32:14 +1000152
153MODULE_PARM_DESC(tv, "TV enable (0 = disable)");
154module_param_named(tv, radeon_tv, int, 0444);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200155
Alex Deucher805c2212011-06-06 17:39:16 -0400156MODULE_PARM_DESC(audio, "Audio enable (1 = enable)");
Christian Koenigdafc3bd2009-10-11 23:49:13 +0200157module_param_named(audio, radeon_audio, int, 0444);
158
Alex Deucherf46c0122010-03-31 00:33:27 -0400159MODULE_PARM_DESC(disp_priority, "Display Priority (0 = auto, 1 = normal, 2 = high)");
160module_param_named(disp_priority, radeon_disp_priority, int, 0444);
161
Alex Deuchere2b0a8e2010-03-17 02:07:37 -0400162MODULE_PARM_DESC(hw_i2c, "hw i2c engine enable (0 = disable)");
163module_param_named(hw_i2c, radeon_hw_i2c, int, 0444);
164
Alex Deucherd42dd572011-01-12 20:05:11 -0500165MODULE_PARM_DESC(pcie_gen2, "PCIE Gen2 mode (1 = enable)");
166module_param_named(pcie_gen2, radeon_pcie_gen2, int, 0444);
167
Alex Deuchera18cee12011-11-01 14:20:30 -0400168MODULE_PARM_DESC(msi, "MSI support (1 = enable, 0 = disable, -1 = auto)");
169module_param_named(msi, radeon_msi, int, 0444);
170
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700171static int radeon_suspend(struct drm_device *dev, pm_message_t state)
172{
173 drm_radeon_private_t *dev_priv = dev->dev_private;
174
Dave Airlie03efb882009-03-10 18:36:38 +1000175 if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_R600)
176 return 0;
177
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700178 /* Disable *all* interrupts */
Alex Deucher800b6992009-03-06 11:47:54 -0500179 if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_RS600)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700180 RADEON_WRITE(R500_DxMODE_INT_MASK, 0);
181 RADEON_WRITE(RADEON_GEN_INT_CNTL, 0);
182 return 0;
183}
184
185static int radeon_resume(struct drm_device *dev)
186{
187 drm_radeon_private_t *dev_priv = dev->dev_private;
188
Dave Airlie03efb882009-03-10 18:36:38 +1000189 if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_R600)
190 return 0;
191
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700192 /* Restore interrupt registers */
Alex Deucher800b6992009-03-06 11:47:54 -0500193 if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_RS600)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700194 RADEON_WRITE(R500_DxMODE_INT_MASK, dev_priv->r500_disp_irq_reg);
195 RADEON_WRITE(RADEON_GEN_INT_CNTL, dev_priv->irq_enable_reg);
196 return 0;
197}
198
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199static struct pci_device_id pciidlist[] = {
200 radeon_PCI_IDS
201};
202
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200203#if defined(CONFIG_DRM_RADEON_KMS)
204MODULE_DEVICE_TABLE(pci, pciidlist);
205#endif
206
207static struct drm_driver driver_old = {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000208 .driver_features =
209 DRIVER_USE_AGP | DRIVER_USE_MTRR | DRIVER_PCI_DMA | DRIVER_SG |
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700210 DRIVER_HAVE_IRQ | DRIVER_HAVE_DMA | DRIVER_IRQ_SHARED,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 .dev_priv_size = sizeof(drm_radeon_buf_priv_t),
Dave Airlie22eae942005-11-10 22:16:34 +1100212 .load = radeon_driver_load,
213 .firstopen = radeon_driver_firstopen,
214 .open = radeon_driver_open,
215 .preclose = radeon_driver_preclose,
216 .postclose = radeon_driver_postclose,
217 .lastclose = radeon_driver_lastclose,
218 .unload = radeon_driver_unload,
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700219 .suspend = radeon_suspend,
220 .resume = radeon_resume,
221 .get_vblank_counter = radeon_get_vblank_counter,
222 .enable_vblank = radeon_enable_vblank,
223 .disable_vblank = radeon_disable_vblank,
Dave Airlie60f2ee02008-12-19 10:22:02 +1100224 .master_create = radeon_master_create,
225 .master_destroy = radeon_master_destroy,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 .irq_preinstall = radeon_driver_irq_preinstall,
227 .irq_postinstall = radeon_driver_irq_postinstall,
228 .irq_uninstall = radeon_driver_irq_uninstall,
229 .irq_handler = radeon_driver_irq_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 .reclaim_buffers = drm_core_reclaim_buffers,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 .ioctls = radeon_ioctls,
232 .dma_ioctl = radeon_cp_buffers,
233 .fops = {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000234 .owner = THIS_MODULE,
235 .open = drm_open,
236 .release = drm_release,
Arnd Bergmanned8b6702009-12-16 22:17:09 +0000237 .unlocked_ioctl = drm_ioctl,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000238 .mmap = drm_mmap,
239 .poll = drm_poll,
240 .fasync = drm_fasync,
Jerome Glisse4fa07bf2010-05-06 18:52:14 +0200241 .read = drm_read,
Dave Airlie9a186642005-06-23 21:29:18 +1000242#ifdef CONFIG_COMPAT
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000243 .compat_ioctl = radeon_compat_ioctl,
Dave Airlie9a186642005-06-23 21:29:18 +1000244#endif
Arnd Bergmanndc880ab2010-07-06 18:54:47 +0200245 .llseek = noop_llseek,
Dave Airlie22eae942005-11-10 22:16:34 +1100246 },
247
Dave Airlie22eae942005-11-10 22:16:34 +1100248 .name = DRIVER_NAME,
249 .desc = DRIVER_DESC,
250 .date = DRIVER_DATE,
251 .major = DRIVER_MAJOR,
252 .minor = DRIVER_MINOR,
253 .patchlevel = DRIVER_PATCHLEVEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254};
255
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200256static struct drm_driver kms_driver;
257
Benjamin Herrenschmidta56f7422010-10-06 16:39:07 +0000258static void radeon_kick_out_firmware_fb(struct pci_dev *pdev)
259{
260 struct apertures_struct *ap;
261 bool primary = false;
262
263 ap = alloc_apertures(1);
264 ap->ranges[0].base = pci_resource_start(pdev, 0);
265 ap->ranges[0].size = pci_resource_len(pdev, 0);
266
267#ifdef CONFIG_X86
268 primary = pdev->resource[PCI_ROM_RESOURCE].flags & IORESOURCE_ROM_SHADOW;
269#endif
270 remove_conflicting_framebuffers(ap, "radeondrmfb", primary);
271 kfree(ap);
272}
273
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200274static int __devinit
275radeon_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
276{
Benjamin Herrenschmidta56f7422010-10-06 16:39:07 +0000277 /* Get rid of things like offb */
278 radeon_kick_out_firmware_fb(pdev);
279
Jordan Crousedcdb1672010-05-27 13:40:25 -0600280 return drm_get_pci_dev(pdev, ent, &kms_driver);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200281}
282
283static void
284radeon_pci_remove(struct pci_dev *pdev)
285{
286 struct drm_device *dev = pci_get_drvdata(pdev);
287
288 drm_put_dev(dev);
289}
290
291static int
292radeon_pci_suspend(struct pci_dev *pdev, pm_message_t state)
293{
294 struct drm_device *dev = pci_get_drvdata(pdev);
295 return radeon_suspend_kms(dev, state);
296}
297
298static int
299radeon_pci_resume(struct pci_dev *pdev)
300{
301 struct drm_device *dev = pci_get_drvdata(pdev);
302 return radeon_resume_kms(dev);
303}
304
305static struct drm_driver kms_driver = {
306 .driver_features =
307 DRIVER_USE_AGP | DRIVER_USE_MTRR | DRIVER_PCI_DMA | DRIVER_SG |
308 DRIVER_HAVE_IRQ | DRIVER_HAVE_DMA | DRIVER_IRQ_SHARED | DRIVER_GEM,
309 .dev_priv_size = 0,
310 .load = radeon_driver_load_kms,
311 .firstopen = radeon_driver_firstopen_kms,
312 .open = radeon_driver_open_kms,
313 .preclose = radeon_driver_preclose_kms,
314 .postclose = radeon_driver_postclose_kms,
315 .lastclose = radeon_driver_lastclose_kms,
316 .unload = radeon_driver_unload_kms,
317 .suspend = radeon_suspend_kms,
318 .resume = radeon_resume_kms,
319 .get_vblank_counter = radeon_get_vblank_counter_kms,
320 .enable_vblank = radeon_enable_vblank_kms,
321 .disable_vblank = radeon_disable_vblank_kms,
Mario Kleinerf5a80202010-10-23 04:42:17 +0200322 .get_vblank_timestamp = radeon_get_vblank_timestamp_kms,
323 .get_scanout_position = radeon_get_crtc_scanoutpos,
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200324#if defined(CONFIG_DEBUG_FS)
325 .debugfs_init = radeon_debugfs_init,
326 .debugfs_cleanup = radeon_debugfs_cleanup,
327#endif
328 .irq_preinstall = radeon_driver_irq_preinstall_kms,
329 .irq_postinstall = radeon_driver_irq_postinstall_kms,
330 .irq_uninstall = radeon_driver_irq_uninstall_kms,
331 .irq_handler = radeon_driver_irq_handler_kms,
332 .reclaim_buffers = drm_core_reclaim_buffers,
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200333 .ioctls = radeon_ioctls_kms,
334 .gem_init_object = radeon_gem_object_init,
335 .gem_free_object = radeon_gem_object_free,
336 .dma_ioctl = radeon_dma_ioctl_kms,
Dave Airlieff72145b2011-02-07 12:16:14 +1000337 .dumb_create = radeon_mode_dumb_create,
338 .dumb_map_offset = radeon_mode_dumb_mmap,
339 .dumb_destroy = radeon_mode_dumb_destroy,
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200340 .fops = {
341 .owner = THIS_MODULE,
342 .open = drm_open,
343 .release = drm_release,
Arnd Bergmanned8b6702009-12-16 22:17:09 +0000344 .unlocked_ioctl = drm_ioctl,
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200345 .mmap = radeon_mmap,
346 .poll = drm_poll,
347 .fasync = drm_fasync,
Jerome Glisse4fa07bf2010-05-06 18:52:14 +0200348 .read = drm_read,
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200349#ifdef CONFIG_COMPAT
Dave Airlie70ba2a32009-09-15 09:03:43 +1000350 .compat_ioctl = radeon_kms_compat_ioctl,
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200351#endif
352 },
353
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200354 .name = DRIVER_NAME,
355 .desc = DRIVER_DESC,
356 .date = DRIVER_DATE,
357 .major = KMS_DRIVER_MAJOR,
358 .minor = KMS_DRIVER_MINOR,
359 .patchlevel = KMS_DRIVER_PATCHLEVEL,
360};
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200361
362static struct drm_driver *driver;
Dave Airlie8410ea32010-12-15 03:16:38 +1000363static struct pci_driver *pdriver;
364
365static struct pci_driver radeon_pci_driver = {
366 .name = DRIVER_NAME,
367 .id_table = pciidlist,
368};
369
370static struct pci_driver radeon_kms_pci_driver = {
371 .name = DRIVER_NAME,
372 .id_table = pciidlist,
373 .probe = radeon_pci_probe,
374 .remove = radeon_pci_remove,
375 .suspend = radeon_pci_suspend,
376 .resume = radeon_pci_resume,
377};
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200378
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379static int __init radeon_init(void)
380{
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200381 driver = &driver_old;
Dave Airlie8410ea32010-12-15 03:16:38 +1000382 pdriver = &radeon_pci_driver;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200383 driver->num_ioctls = radeon_max_ioctl;
Dave Airliede050652009-08-03 12:05:34 +1000384#ifdef CONFIG_VGA_CONSOLE
385 if (vgacon_text_force() && radeon_modeset == -1) {
386 DRM_INFO("VGACON disable radeon kernel modesetting.\n");
387 driver = &driver_old;
Dave Airlie8410ea32010-12-15 03:16:38 +1000388 pdriver = &radeon_pci_driver;
Dave Airliede050652009-08-03 12:05:34 +1000389 driver->driver_features &= ~DRIVER_MODESET;
390 radeon_modeset = 0;
391 }
392#endif
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200393 /* if enabled by default */
394 if (radeon_modeset == -1) {
Dave Airliea0cdc642009-09-08 11:09:50 +1000395#ifdef CONFIG_DRM_RADEON_KMS
396 DRM_INFO("radeon defaulting to kernel modesetting.\n");
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200397 radeon_modeset = 1;
Dave Airliea0cdc642009-09-08 11:09:50 +1000398#else
399 DRM_INFO("radeon defaulting to userspace modesetting.\n");
400 radeon_modeset = 0;
401#endif
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200402 }
403 if (radeon_modeset == 1) {
404 DRM_INFO("radeon kernel modesetting enabled.\n");
405 driver = &kms_driver;
Dave Airlie8410ea32010-12-15 03:16:38 +1000406 pdriver = &radeon_kms_pci_driver;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200407 driver->driver_features |= DRIVER_MODESET;
408 driver->num_ioctls = radeon_max_kms_ioctl;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000409 radeon_register_atpx_handler();
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200410 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200411 /* if the vga console setting is enabled still
412 * let modprobe override it */
Dave Airlie8410ea32010-12-15 03:16:38 +1000413 return drm_pci_init(driver, pdriver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414}
415
416static void __exit radeon_exit(void)
417{
Dave Airlie8410ea32010-12-15 03:16:38 +1000418 drm_pci_exit(driver, pdriver);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000419 radeon_unregister_atpx_handler();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420}
421
Jerome Glisse176f6132009-06-22 18:16:13 +0200422module_init(radeon_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423module_exit(radeon_exit);
424
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000425MODULE_AUTHOR(DRIVER_AUTHOR);
426MODULE_DESCRIPTION(DRIVER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427MODULE_LICENSE("GPL and additional rights");