diff options
author | Alex Deucher <alexdeucher@gmail.com> | 2010-08-05 17:26:28 -0400 |
---|---|---|
committer | Alex Deucher <alexdeucher@gmail.com> | 2010-08-05 17:36:36 -0400 |
commit | b5bfdbd70d9671250957ccd41dfc8818850d257e (patch) | |
tree | 315fb46fde7773a628ad0b301a27278b48ff65a8 /src/radeon.h | |
parent | a3c59c6f6be7067421e348142da0ca13428dcd57 (diff) |
r6xx/r7xx: add support for tiling with kms (v3)
Requires radeon drm 2.6.0 and updated mesa.
v2: - fix lockup due to not emiting DB_DEPTH_INFO
https://bugs.freedesktop.org/show_bug.cgi?id=28342
- fix drm minor version to deal with evergreen accel
v3: rebase on current ddx git
Signed-off-by: Alex Deucher <alexdeucher@gmail.com>
Diffstat (limited to 'src/radeon.h')
-rw-r--r-- | src/radeon.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/radeon.h b/src/radeon.h index 55d673a3..d66cdd93 100644 --- a/src/radeon.h +++ b/src/radeon.h @@ -1035,6 +1035,12 @@ typedef struct { uint64_t vram_size; uint64_t gart_size; drmmode_rec drmmode; + /* r6xx+ tile config */ + uint32_t tile_config; + int group_bytes; + int num_channels; + int num_banks; + int r7xx_bank_op; #else /* fake bool */ Bool cs; |