diff options
author | Dave Airlie <airlied@redhat.com> | 2008-10-16 10:59:31 +1000 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2008-10-16 10:59:31 +1000 |
commit | 26076bf24a4e720e389d0a3ea616a8350397fdfc (patch) | |
tree | 391dac618b8b25df6f326a8776f4bad589010ccf /linux-core | |
parent | 8d9a11c55cf3692bd537c68044b4378aba53f438 (diff) |
radeon: add initial agp support.
This add agpmode command line option.
Diffstat (limited to 'linux-core')
-rw-r--r-- | linux-core/radeon_drv.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/linux-core/radeon_drv.c b/linux-core/radeon_drv.c index 79bcc3e6..f1fe3012 100644 --- a/linux-core/radeon_drv.c +++ b/linux-core/radeon_drv.c @@ -39,6 +39,7 @@ int radeon_no_wb; int radeon_dynclks = 1; int radeon_r4xx_atom = 0; +int radeon_agpmode = 0; MODULE_PARM_DESC(no_wb, "Disable AGP writeback for scratch registers\n"); module_param_named(no_wb, radeon_no_wb, int, 0444); @@ -52,6 +53,10 @@ module_param_named(dynclks, radeon_dynclks, int, 0444); MODULE_PARM_DESC(r4xx_atom, "Enable ATOMBIOS modesetting for R4xx"); module_param_named(r4xx_atom, radeon_r4xx_atom, int, 0444); +MODULE_PARM_DESC(agpmode, "AGP Mode (-1 == PCI)"); +module_param_named(agpmode, radeon_agpmode, int, 0444); + + static int dri_library_name(struct drm_device * dev, char * buf) { drm_radeon_private_t *dev_priv = dev->dev_private; |