summaryrefslogtreecommitdiff
path: root/radeon_device.h
diff options
context:
space:
mode:
Diffstat (limited to 'radeon_device.h')
-rw-r--r--radeon_device.h16
1 files changed, 6 insertions, 10 deletions
diff --git a/radeon_device.h b/radeon_device.h
index e84f69d..94f6495 100644
--- a/radeon_device.h
+++ b/radeon_device.h
@@ -25,24 +25,20 @@ struct radeon_device;
struct radeon_ib;
struct radeon_atom;
-/* R700 */
-struct r700_asic {
- struct r600_atoms atoms;
-};
-
-union radeon_asic {
- struct r700_asic r700;
-};
-
/* Wrapper to make it looks like kernel *************************************/
#define radeon_bo_size(bo) ((bo)->size)
struct radeon_device {
struct radeon *radeon;
int fd;
- union radeon_asic asic;
struct radeon_bo *bo[32];
u32 nbo;
+ struct idr idr;
+ struct mutex mutex;
+ struct r600_batches batches;
+ unsigned npipes;
+ unsigned nbanks;
+ unsigned group_bytes;
};
struct radeon_ib {