diff options
author | Dave Airlie <airlied@redhat.com> | 2009-08-20 20:07:54 -0400 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2009-08-20 20:07:54 -0400 |
commit | 17782d99502851dc7e48114ee9c5a6d6741cba18 (patch) | |
tree | e1c02cb262e9fc5e7f50d4a6899d13041d4706f0 /drivers/gpu/drm/radeon/r100.c | |
parent | 08e4d534743f4e9af3602aebbc1cca9372762028 (diff) |
drm/radeon/kms: add r100/r200 OQ support.
This adds the relocation necessary for OQ support on the r100/r200
chipsets.
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/radeon/r100.c')
-rw-r--r-- | drivers/gpu/drm/radeon/r100.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/drivers/gpu/drm/radeon/r100.c b/drivers/gpu/drm/radeon/r100.c index 90ff8e0ac04e..68e728e8be4d 100644 --- a/drivers/gpu/drm/radeon/r100.c +++ b/drivers/gpu/drm/radeon/r100.c | |||
@@ -1091,6 +1091,16 @@ static int r100_packet0_check(struct radeon_cs_parser *p, | |||
1091 | tmp |= tile_flags; | 1091 | tmp |= tile_flags; |
1092 | ib[idx] = tmp; | 1092 | ib[idx] = tmp; |
1093 | break; | 1093 | break; |
1094 | case RADEON_RB3D_ZPASS_ADDR: | ||
1095 | r = r100_cs_packet_next_reloc(p, &reloc); | ||
1096 | if (r) { | ||
1097 | DRM_ERROR("No reloc for ib[%d]=0x%04X\n", | ||
1098 | idx, reg); | ||
1099 | r100_cs_dump_packet(p, pkt); | ||
1100 | return r; | ||
1101 | } | ||
1102 | ib[idx] = ib_chunk->kdata[idx] + ((u32)reloc->lobj.gpu_offset); | ||
1103 | break; | ||
1094 | default: | 1104 | default: |
1095 | /* FIXME: we don't want to allow anyothers packet */ | 1105 | /* FIXME: we don't want to allow anyothers packet */ |
1096 | break; | 1106 | break; |