diff options
author | Daniel Vetter <daniel.vetter@ffwll.ch> | 2010-03-02 21:53:13 +0100 |
---|---|---|
committer | Carl Worth <cworth@cworth.org> | 2010-03-04 09:38:37 -0800 |
commit | 04aa38a639fefcd00acb485f36ab18c2083ed1bb (patch) | |
tree | 46f5edeab35c445053411a1fe7fa2677998fec3a /src | |
parent | 24d787335a0c319b8d9243ea1f2726575cf73b2b (diff) |
i915 XvMC: switch one_time_state_emit to batchbuffer macros
This is in preparation for real relocatable drm_bo's instead
of memory at a fixed address. By switching to the batchbuffer
macros (like i965 xvmc) we can use the nice OUT_RELOC macro.
Also align the code more with coding-style elsewhere, i.e. bitops
instead of bitfield structures. The bitfield structures are
quite a mess to work with the batchbuffer macros, so they were
getting in the way, anyway.
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Reviewed-by: Carl Worth <cworth@cworth.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/xvmc/i915_structs.h | 103 | ||||
-rw-r--r-- | src/xvmc/i915_xvmc.c | 143 |
2 files changed, 74 insertions, 172 deletions
diff --git a/src/xvmc/i915_structs.h b/src/xvmc/i915_structs.h index f9e67477..7281fe58 100644 --- a/src/xvmc/i915_structs.h +++ b/src/xvmc/i915_structs.h @@ -84,6 +84,7 @@ struct i915_color_blt { /* 3D_INSTRUCTION */ #define CMD_3D 0x03 +#define OPCODE_3D(x) (CMD_3D << 29 | (x) << 16) #define OPC_3DMPEG_MACROBLOCK_IPICTURE (0x01 + (0x1e << 5)) #define OPC_3DMPEG_SET_ORIGIN (0x10 + (0x1e << 5)) @@ -96,9 +97,11 @@ struct i915_color_blt { #define OPC_3DSTATE_MAP_STATE (0x00 + (0x1d << 8)) #define OPC_3DSTATE_SAMPLER_STATE (0x01 + (0x1d << 8)) #define OPC_3DSTATE_LOAD_STATE_IMMEDIATE_1 (0x04 + (0x1d << 8)) +#define OP_3D_LOAD_STATE_IMMEDIATE_1 OPCODE_3D(OPC_3DSTATE_LOAD_STATE_IMMEDIATE_1) #define OPC_3DSTATE_PIXEL_SHADER_PROGRAM (0x05 + (0x1d << 8)) #define OPC_3DSTATE_PIXEL_SHADER_CONSTANTS (0x06 + (0x1d << 8)) #define OPC_3DSTATE_LOAD_INDIRECT (0x07 + (0x1d << 8)) +#define OP_3D_LOAD_INDIRECT OPCODE_3D(OPC_3DSTATE_LOAD_INDIRECT) #define OPC_3DSTATE_MODES_5 (0x0c) #define OPC_3DSTATE_COORD_SET_BINDINGS (0x16) @@ -746,6 +749,7 @@ struct i915_3dstate_pixel_shader_constants { #define BLOCK_MSB 0x08 #define BLOCK_PSP 0x10 #define BLOCK_PSC 0x20 +#define BLOCK_MASK_SHIFT 8 typedef struct _state_ddword { struct { @@ -758,15 +762,9 @@ typedef struct _state_ddword { unsigned length:9; unsigned pad0:23; } dw1; -} sis_state, ssb_state, msb_state, psp_state, psc_state; - -typedef struct _state_dword { - struct { - unsigned valid:1; - unsigned reset:1; - unsigned buffer_address:30; - } dw0; -} dis_state; +} sis_state, msb_state; +#define STATE_VALID 0x1 +#define STATE_FORCE 0x2 struct i915_3dstate_load_indirect { struct { @@ -779,6 +777,8 @@ struct i915_3dstate_load_indirect { } dw0; }; +#define OP_3D_LOAD_INDIRECT_GFX_ADDR (1 << 14) + #define TEXCOORDFMT_2FP 0x00 #define TEXCOORDFMT_3FP 0x01 #define TEXCOORDFMT_4FP 0x02 @@ -797,40 +797,14 @@ struct s2_dword { unsigned set7_texcoord_fmt:4; }; -struct s3_dword { - unsigned set0_pcd:1; - unsigned set0_ws_tcz:1; - unsigned set0_ws_tcy:1; - unsigned set0_ws_tcx:1; - unsigned set1_pcd:1; - unsigned set1_ws_tcz:1; - unsigned set1_ws_tcy:1; - unsigned set1_ws_tcx:1; - unsigned set2_pcd:1; - unsigned set2_ws_tcz:1; - unsigned set2_ws_tcy:1; - unsigned set2_ws_tcx:1; - unsigned set3_pcd:1; - unsigned set3_ws_tcz:1; - unsigned set3_ws_tcy:1; - unsigned set3_ws_tcx:1; - unsigned set4_pcd:1; - unsigned set4_ws_tcz:1; - unsigned set4_ws_tcy:1; - unsigned set4_ws_tcx:1; - unsigned set5_pcd:1; - unsigned set5_ws_tcz:1; - unsigned set5_ws_tcy:1; - unsigned set5_ws_tcx:1; - unsigned set6_pcd:1; - unsigned set6_ws_tcz:1; - unsigned set6_ws_tcy:1; - unsigned set6_ws_tcx:1; - unsigned set7_pcd:1; - unsigned set7_ws_tcz:1; - unsigned set7_ws_tcy:1; - unsigned set7_ws_tcx:1; -}; +#define S3_SET0_PCD (1 << 0*4) +#define S3_SET1_PCD (1 << 1*4) +#define S3_SET2_PCD (1 << 2*4) +#define S3_SET3_PCD (1 << 3*4) +#define S3_SET4_PCD (1 << 4*4) +#define S3_SET5_PCD (1 << 5*4) +#define S3_SET6_PCD (1 << 6*4) +#define S3_SET7_PCD (1 << 7*4) #define VERTEXHAS_XYZ 1 #define VERTEXHAS_XYZW 2 @@ -882,42 +856,23 @@ struct s5_dword { unsigned color_buffer_component_write_disable:4; }; -struct s6_dword { - unsigned triangle_pv:2; - unsigned color_buffer_write:1; - unsigned depth_buffer_write:1; - unsigned dest_blend_factor:4; - unsigned src_blend_factor:4; - unsigned color_blend_function:3; - unsigned color_buffer_blend:1; - unsigned depth_test_function:3; - unsigned depth_test_enable:1; - unsigned alpha_reference_value:8; - unsigned alpha_test_function:3; - unsigned alpha_test_enable:1; - -}; +#define S6_COLOR_BUFFER_WRITE (1 << 2) +#define S6_DST_BLEND_FACTOR_SHIFT 4 +#define S6_SRC_BLEND_FACTOR_SHIFT 8 +#define S6_DEPTH_TEST_ENABLE (1 << 19) struct s7_dword { unsigned global_depth_offset_const; }; -struct i915_3dstate_load_state_immediate_1 { - struct { - unsigned length:4; - unsigned load_s0:1; - unsigned load_s1:1; - unsigned load_s2:1; - unsigned load_s3:1; - unsigned load_s4:1; - unsigned load_s5:1; - unsigned load_s6:1; - unsigned load_s7:1; - unsigned pad0:4; - unsigned opcode:13; - unsigned type:3; - } dw0; -}; +#define OP_3D_LOAD_STATE_IMM_LOAD_S0 (1 << 4) +#define OP_3D_LOAD_STATE_IMM_LOAD_S1 (1 << 5) +#define OP_3D_LOAD_STATE_IMM_LOAD_S2 (1 << 6) +#define OP_3D_LOAD_STATE_IMM_LOAD_S3 (1 << 7) +#define OP_3D_LOAD_STATE_IMM_LOAD_S4 (1 << 8) +#define OP_3D_LOAD_STATE_IMM_LOAD_S5 (1 << 9) +#define OP_3D_LOAD_STATE_IMM_LOAD_S6 (1 << 10) +#define OP_3D_LOAD_STATE_IMM_LOAD_S7 (1 << 11) struct i915_3dstate_scissor_rectangle { struct { diff --git a/src/xvmc/i915_xvmc.c b/src/xvmc/i915_xvmc.c index 8063c5af..0faba95f 100644 --- a/src/xvmc/i915_xvmc.c +++ b/src/xvmc/i915_xvmc.c @@ -90,11 +90,6 @@ static void i915_emit_batch(void *data, int size, int flag) intelBatchbufferData(data, size, flag); } -/* one time context initialization buffer */ -static uint32_t *one_time_load_state_imm1; -static uint32_t *one_time_load_indirect; -static int one_time_load_state_imm1_size, one_time_load_indirect_size; - /* load indirect buffer for mc rendering */ static uint32_t *mc_render_load_indirect; static int mc_render_load_indirect_size; @@ -324,122 +319,77 @@ static void i915_mc_one_time_context_init(XvMCContext * context) } -static void i915_mc_one_time_state_init(XvMCContext * context) +static void i915_mc_one_time_state_emit(XvMCContext * context) { - struct s3_dword *s3 = NULL; - struct s6_dword *s6 = NULL; - dis_state *dis = NULL; - ssb_state *ssb = NULL; - psp_state *psp = NULL; - psc_state *psc = NULL; + uint32_t buffer_address; i915XvMCContext *pI915XvMC = (i915XvMCContext *) context->privData; - struct i915_3dstate_load_state_immediate_1 *load_state_immediate_1; - struct i915_3dstate_load_indirect *load_indirect; + uint32_t load_state_immediate_1, load_indirect, s3_dword, s6_dword; int mem_select; + BATCH_LOCALS; /* 3DSTATE_LOAD_STATE_IMMEDIATE_1 */ - one_time_load_state_imm1_size = - sizeof(*load_state_immediate_1) + sizeof(*s3) + sizeof(*s6); - one_time_load_state_imm1 = calloc(1, one_time_load_state_imm1_size); - load_state_immediate_1 = (struct i915_3dstate_load_state_immediate_1 *) - one_time_load_state_imm1; - load_state_immediate_1->dw0.type = CMD_3D; - load_state_immediate_1->dw0.opcode = OPC_3DSTATE_LOAD_STATE_IMMEDIATE_1; - load_state_immediate_1->dw0.load_s3 = 1; - load_state_immediate_1->dw0.load_s6 = 1; - load_state_immediate_1->dw0.length = - (one_time_load_state_imm1_size >> 2) - 2; - - s3 = (struct s3_dword *)(++load_state_immediate_1); - s3->set0_pcd = 1; - s3->set1_pcd = 1; - s3->set2_pcd = 1; - s3->set3_pcd = 1; - s3->set4_pcd = 1; - s3->set5_pcd = 1; - s3->set6_pcd = 1; - s3->set7_pcd = 1; - - s6 = (struct s6_dword *)(++s3); - s6->alpha_test_enable = 0; - s6->alpha_test_function = 0; - s6->alpha_reference_value = 0; - s6->depth_test_enable = 1; - s6->depth_test_function = 0; - s6->color_buffer_blend = 0; - s6->color_blend_function = 0; - s6->src_blend_factor = 1; - s6->dest_blend_factor = 1; - s6->depth_buffer_write = 0; - s6->color_buffer_write = 1; - s6->triangle_pv = 0; + BEGIN_BATCH(3 + 8); + load_state_immediate_1 = OP_3D_LOAD_STATE_IMMEDIATE_1; + load_state_immediate_1 |= OP_3D_LOAD_STATE_IMM_LOAD_S3; + load_state_immediate_1 |= OP_3D_LOAD_STATE_IMM_LOAD_S6; + load_state_immediate_1 |= 3 - 2; /* length */ + OUT_BATCH(load_state_immediate_1); + + s3_dword = S3_SET0_PCD | S3_SET1_PCD | + S3_SET2_PCD | S3_SET3_PCD | + S3_SET4_PCD | S3_SET5_PCD | + S3_SET6_PCD | S3_SET7_PCD; + OUT_BATCH(s3_dword); + + s6_dword = S6_COLOR_BUFFER_WRITE | S6_DEPTH_TEST_ENABLE; + s6_dword |= 1 << S6_SRC_BLEND_FACTOR_SHIFT; + s6_dword |= 1 << S6_DST_BLEND_FACTOR_SHIFT; + OUT_BATCH(s6_dword); /* 3DSTATE_LOAD_INDIRECT */ - one_time_load_indirect_size = - sizeof(*load_indirect) + sizeof(*dis) + sizeof(*ssb) + - sizeof(*psp) + sizeof(*psc); - one_time_load_indirect = calloc(1, one_time_load_indirect_size); - load_indirect = - (struct i915_3dstate_load_indirect *)one_time_load_indirect; - load_indirect->dw0.type = CMD_3D; - load_indirect->dw0.opcode = OPC_3DSTATE_LOAD_INDIRECT; - load_indirect->dw0.block_mask = - BLOCK_DIS | BLOCK_SSB | BLOCK_PSP | BLOCK_PSC; - load_indirect->dw0.length = (one_time_load_indirect_size >> 2) - 2; + load_indirect = OP_3D_LOAD_INDIRECT; + load_indirect |= (BLOCK_DIS | BLOCK_SSB | BLOCK_PSP | BLOCK_PSC) + << BLOCK_MASK_SHIFT; + load_indirect |= 8 - 2; /* length */ if (pI915XvMC->deviceID == PCI_CHIP_I915_G || pI915XvMC->deviceID == PCI_CHIP_I915_GM) mem_select = 0; /* use physical address */ - else + else { + load_indirect |= OP_3D_LOAD_INDIRECT_GFX_ADDR; mem_select = 1; /* use gfx address */ + } - load_indirect->dw0.mem_select = mem_select; + OUT_BATCH(load_indirect); /* Dynamic indirect state buffer */ - dis = (dis_state *) (++load_indirect); - dis->dw0.valid = 0; - dis->dw0.reset = 0; - dis->dw0.buffer_address = 0; + OUT_BATCH(0); /* no dynamic indirect state */ /* Sample state buffer */ - ssb = (ssb_state *) (++dis); - ssb->dw0.valid = 1; - ssb->dw0.force = 1; - ssb->dw1.length = 7; /* 8 - 1 */ - if (mem_select) - ssb->dw0.buffer_address = (pI915XvMC->ssb.offset >> 2); + buffer_address = pI915XvMC->ssb.offset; else - ssb->dw0.buffer_address = (pI915XvMC->ssb.bus_addr >> 2); + buffer_address = pI915XvMC->ssb.bus_addr; + OUT_BATCH(STATE_VALID | STATE_FORCE | buffer_address); + OUT_BATCH(7); /* 8 - 1 */ /* Pixel shader program buffer */ - psp = (psp_state *) (++ssb); - psp->dw0.valid = 1; - psp->dw0.force = 1; - psp->dw1.length = 66; /* 4 + 16 + 16 + 31 - 1 */ - if (mem_select) - psp->dw0.buffer_address = (pI915XvMC->psp.offset >> 2); + buffer_address = pI915XvMC->psp.offset; else - psp->dw0.buffer_address = (pI915XvMC->psp.bus_addr >> 2); + buffer_address = pI915XvMC->psp.bus_addr; - /* Pixel shader constant buffer */ - psc = (psc_state *) (++psp); - psc->dw0.valid = 1; - psc->dw0.force = 1; - psc->dw1.length = 5; /* 6 - 1 */ + OUT_BATCH(STATE_VALID | STATE_FORCE | buffer_address); + OUT_BATCH(66); /* 4 + 16 + 16 + 31 - 1 */ + /* Pixel shader constant buffer */ if (mem_select) - psc->dw0.buffer_address = (pI915XvMC->psc.offset >> 2); + buffer_address = pI915XvMC->psc.offset; else - psc->dw0.buffer_address = (pI915XvMC->psc.bus_addr >> 2); -} - -static void i915_mc_one_time_state_emit(void) -{ - i915_emit_batch(one_time_load_state_imm1, one_time_load_state_imm1_size, - 0); - i915_emit_batch(one_time_load_indirect, one_time_load_indirect_size, 0); + buffer_address = pI915XvMC->psc.bus_addr; + OUT_BATCH(STATE_VALID | STATE_FORCE | buffer_address); + OUT_BATCH(5); /* 6 - 1 */ + ADVANCE_BATCH(); } static void i915_mc_static_indirect_state_init(XvMCContext * context) @@ -1085,7 +1035,6 @@ static Status i915_xvmc_mc_create_context(Display * display, /* pre-init state buffers */ i915_mc_one_time_context_init(context); - i915_mc_one_time_state_init(context); i915_mc_static_indirect_state_init(context); @@ -1106,8 +1055,6 @@ static int i915_xvmc_mc_destroy_context(Display * display, /* Pass Control to the X server to destroy the drm_context_t */ i915_release_resource(display, context); - free(one_time_load_state_imm1); - free(one_time_load_indirect); free(mc_render_load_indirect); return Success; } @@ -1355,7 +1302,7 @@ static int i915_xvmc_mc_render_surface(Display * display, XvMCContext * context, // i915_mc_invalidate_subcontext_buffers(context, BLOCK_SIS | BLOCK_DIS | BLOCK_SSB // | BLOCK_MSB | BLOCK_PSP | BLOCK_PSC); - i915_mc_one_time_state_emit(); + i915_mc_one_time_state_emit(context); i915_mc_static_indirect_state_set(context, target_surface, picture_structure, flags, |