diff options
author | Alex Deucher <alexdeucher@gmail.com> | 2011-06-24 13:15:38 +0000 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2011-06-30 10:12:17 +1000 |
commit | b271a988eb9c3944c50fb62c21ac61860090d3ba (patch) | |
tree | 2e4dfde9f138bfc2f835fc14e5f38311f531dd98 /drivers/gpu | |
parent | c017d0d1351f916c0ced3f358afc491fdcf490b4 (diff) |
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.c | 2 |
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)) |