summaryrefslogtreecommitdiffstats
path: root/drivers/gpu
diff options
context:
space:
mode:
authorAlex Deucher2011-06-24 15:15:38 +0200
committerDave Airlie2011-06-30 02:12:17 +0200
commitb271a988eb9c3944c50fb62c21ac61860090d3ba (patch)
tree2e4dfde9f138bfc2f835fc14e5f38311f531dd98 /drivers/gpu
parentMerge branch 'kvm-updates/3.0' of git://git.kernel.org/pub/scm/virt/kvm/kvm (diff)
downloadkernel-qcow2-linux-b271a988eb9c3944c50fb62c21ac61860090d3ba.tar.gz
kernel-qcow2-linux-b271a988eb9c3944c50fb62c21ac61860090d3ba.tar.xz
kernel-qcow2-linux-b271a988eb9c3944c50fb62c21ac61860090d3ba.zip
drm/radeon/kms: increase rom size for atrm method
The vbios rom is >64k on a lot of modern asics. Increase the fetch size for atrm to make sure we don't miss part of a larger rom. Signed-off-by: Alex Deucher <alexdeucher@gmail.com> Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu')
-rw-r--r--drivers/gpu/drm/radeon/radeon_bios.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/radeon/radeon_bios.c b/drivers/gpu/drm/radeon/radeon_bios.c
index 1aba85cad1a8..3fc5fa1aefd0 100644
--- a/drivers/gpu/drm/radeon/radeon_bios.c
+++ b/drivers/gpu/drm/radeon/radeon_bios.c
@@ -104,7 +104,7 @@ static bool radeon_read_bios(struct radeon_device *rdev)
static bool radeon_atrm_get_bios(struct radeon_device *rdev)
{
int ret;
- int size = 64 * 1024;
+ int size = 256 * 1024;
int i;
if (!radeon_atrm_supported(rdev->pdev))