cs->flush_data = flush_ctx;
cs->ring_type = ring_type;
+ cs->main.ib_type = IB_MAIN;
+ cs->const_ib.ib_type = IB_CONST;
+ cs->const_preamble_ib.ib_type = IB_CONST_PREAMBLE;
+
if (!amdgpu_init_cs_context(&cs->csc1, ring_type)) {
FREE(cs);
return NULL;
enum radeon_bo_domain domains;
};
+enum ib_type {
+ IB_CONST_PREAMBLE = 0,
+ IB_CONST = 1, /* the const IB must be first */
+ IB_MAIN = 2,
+ IB_NUM
+};
+
struct amdgpu_ib {
struct radeon_winsys_cs base;
struct pb_buffer *big_ib_buffer;
uint8_t *ib_mapped;
unsigned used_ib_space;
-};
-
-enum ib_type {
- IB_CONST_PREAMBLE = 0,
- IB_CONST = 1, /* the const IB must be first */
- IB_MAIN = 2,
- IB_NUM
+ enum ib_type ib_type;
};
struct amdgpu_cs_context {
int amdgpu_lookup_buffer(struct amdgpu_cs_context *cs, struct amdgpu_winsys_bo *bo);
+static inline struct amdgpu_ib *
+amdgpu_ib(struct radeon_winsys_cs *base)
+{
+ return (struct amdgpu_ib *)base;
+}
+
static inline struct amdgpu_cs *
amdgpu_cs(struct radeon_winsys_cs *base)
{
+ assert(amdgpu_ib(base)->ib_type == IB_MAIN);
return (struct amdgpu_cs*)base;
}
+#define get_container(member_ptr, container_type, container_member) \
+ (container_type *)((char *)(member_ptr) - offsetof(container_type, container_member))
+
+static inline struct amdgpu_cs *
+amdgpu_cs_from_ib(struct amdgpu_ib *ib)
+{
+ switch (ib->ib_type) {
+ case IB_MAIN:
+ return get_container(ib, struct amdgpu_cs, main);
+ case IB_CONST:
+ return get_container(ib, struct amdgpu_cs, const_ib);
+ case IB_CONST_PREAMBLE:
+ return get_container(ib, struct amdgpu_cs, const_preamble_ib);
+ default:
+ unreachable("bad ib_type");
+ }
+}
+
static inline boolean
amdgpu_bo_is_referenced_by_cs(struct amdgpu_cs *cs,
struct amdgpu_winsys_bo *bo)