mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-01 03:11:59 +00:00
drm/via: Disable AGP DMA for chips with the new 3D engine.
This commit is contained in:
parent
1d58420bad
commit
756db73df7
1 changed files with 5 additions and 0 deletions
|
@ -190,6 +190,11 @@ static int via_initialize(drm_device_t * dev,
|
||||||
return DRM_ERR(EFAULT);
|
return DRM_ERR(EFAULT);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (dev_priv->chipset == VIA_DX9_0) {
|
||||||
|
DRM_ERROR("AGP DMA is not supported on this chip\n");
|
||||||
|
return DRM_ERR(EINVAL);
|
||||||
|
}
|
||||||
|
|
||||||
dev_priv->ring.map.offset = dev->agp->base + init->offset;
|
dev_priv->ring.map.offset = dev->agp->base + init->offset;
|
||||||
dev_priv->ring.map.size = init->size;
|
dev_priv->ring.map.size = init->size;
|
||||||
dev_priv->ring.map.type = 0;
|
dev_priv->ring.map.type = 0;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue