6 #include "va_backend.h"
8 #include "intel_batchbuffer.h"
9 #include "intel_driver.h"
11 #include "i965_defines.h"
12 #include "i965_drv_video.h"
13 #include "i965_media.h"
14 #include "i965_media_h264.h"
26 struct intra_kernel_header
29 unsigned char intra_4x4_luma_mode_0_offset;
30 unsigned char intra_4x4_luma_mode_1_offset;
31 unsigned char intra_4x4_luma_mode_2_offset;
32 unsigned char intra_4x4_luma_mode_3_offset;
34 unsigned char intra_4x4_luma_mode_4_offset;
35 unsigned char intra_4x4_luma_mode_5_offset;
36 unsigned char intra_4x4_luma_mode_6_offset;
37 unsigned char intra_4x4_luma_mode_7_offset;
39 unsigned char intra_4x4_luma_mode_8_offset;
41 unsigned short top_reference_offset;
43 unsigned char intra_8x8_luma_mode_0_offset;
44 unsigned char intra_8x8_luma_mode_1_offset;
45 unsigned char intra_8x8_luma_mode_2_offset;
46 unsigned char intra_8x8_luma_mode_3_offset;
48 unsigned char intra_8x8_luma_mode_4_offset;
49 unsigned char intra_8x8_luma_mode_5_offset;
50 unsigned char intra_8x8_luma_mode_6_offset;
51 unsigned char intra_8x8_luma_mode_7_offset;
53 unsigned char intra_8x8_luma_mode_8_offset;
55 unsigned short const_reverse_data_transfer_intra_8x8;
57 unsigned char intra_16x16_luma_mode_0_offset;
58 unsigned char intra_16x16_luma_mode_1_offset;
59 unsigned char intra_16x16_luma_mode_2_offset;
60 unsigned char intra_16x16_luma_mode_3_offset;
62 unsigned char intra_chroma_mode_0_offset;
63 unsigned char intra_chroma_mode_1_offset;
64 unsigned char intra_chroma_mode_2_offset;
65 unsigned char intra_chroma_mode_3_offset;
67 unsigned int const_intra_16x16_plane_0;
69 unsigned int const_intra_16x16_chroma_plane_0;
71 unsigned int const_intra_16x16_chroma_plane_1;
73 unsigned int const_intra_16x16_plane_1;
75 unsigned int left_shift_count_reverse_dw_ordering;
77 unsigned int const_reverse_data_transfer_intra_4x4;
79 unsigned int intra_4x4_pred_mode_offset;
82 struct inter_kernel_header
84 unsigned short weight_offset;
85 unsigned char weight_offset_flag;
89 #include "shaders/h264/mc/export.inc"
90 static unsigned long avc_mc_kernel_offset_gen4[] = {
91 INTRA_16x16_IP * INST_UNIT_GEN4,
92 INTRA_8x8_IP * INST_UNIT_GEN4,
93 INTRA_4x4_IP * INST_UNIT_GEN4,
94 INTRA_PCM_IP * INST_UNIT_GEN4,
95 FRAME_MB_IP * INST_UNIT_GEN4,
96 FIELD_MB_IP * INST_UNIT_GEN4,
97 MBAFF_MB_IP * INST_UNIT_GEN4
100 struct intra_kernel_header intra_kernel_header_gen4 = {
102 (INTRA_4X4_HORIZONTAL_IP - INTRA_4X4_VERTICAL_IP),
103 (INTRA_4X4_DC_IP - INTRA_4X4_VERTICAL_IP),
104 (INTRA_4X4_DIAG_DOWN_LEFT_IP - INTRA_4X4_VERTICAL_IP),
106 (INTRA_4X4_DIAG_DOWN_RIGHT_IP - INTRA_4X4_VERTICAL_IP),
107 (INTRA_4X4_VERT_RIGHT_IP - INTRA_4X4_VERTICAL_IP),
108 (INTRA_4X4_HOR_DOWN_IP - INTRA_4X4_VERTICAL_IP),
109 (INTRA_4X4_VERT_LEFT_IP - INTRA_4X4_VERTICAL_IP),
111 (INTRA_4X4_HOR_UP_IP - INTRA_4X4_VERTICAL_IP),
116 (INTRA_8X8_HORIZONTAL_IP - INTRA_8X8_VERTICAL_IP),
117 (INTRA_8X8_DC_IP - INTRA_8X8_VERTICAL_IP),
118 (INTRA_8X8_DIAG_DOWN_LEFT_IP - INTRA_8X8_VERTICAL_IP),
120 (INTRA_8X8_DIAG_DOWN_RIGHT_IP - INTRA_8X8_VERTICAL_IP),
121 (INTRA_8X8_VERT_RIGHT_IP - INTRA_8X8_VERTICAL_IP),
122 (INTRA_8X8_HOR_DOWN_IP - INTRA_8X8_VERTICAL_IP),
123 (INTRA_8X8_VERT_LEFT_IP - INTRA_8X8_VERTICAL_IP),
125 (INTRA_8X8_HOR_UP_IP - INTRA_8X8_VERTICAL_IP),
130 (INTRA_16x16_HORIZONTAL_IP - INTRA_16x16_VERTICAL_IP),
131 (INTRA_16x16_DC_IP - INTRA_16x16_VERTICAL_IP),
132 (INTRA_16x16_PLANE_IP - INTRA_16x16_VERTICAL_IP),
135 (INTRA_CHROMA_HORIZONTAL_IP - INTRA_CHROMA_DC_IP),
136 (INTRA_CHROMA_VERTICAL_IP - INTRA_CHROMA_DC_IP),
137 (INTRA_Chroma_PLANE_IP - INTRA_CHROMA_DC_IP),
151 (intra_Pred_4x4_Y_IP - ADD_ERROR_SB3_IP) * 0x1000000 +
152 (intra_Pred_4x4_Y_IP - ADD_ERROR_SB2_IP) * 0x10000 +
153 (intra_Pred_4x4_Y_IP - ADD_ERROR_SB1_IP) * 0x100 +
154 (intra_Pred_4x4_Y_IP - ADD_ERROR_SB0_IP)
157 static const uint32_t h264_avc_combined_gen4[][4] = {
158 #include "shaders/h264/mc/avc_mc.g4b"
161 static const uint32_t h264_avc_null_gen4[][4] = {
162 #include "shaders/h264/mc/null.g4b"
165 static struct i965_kernel h264_avc_kernels_gen4[] = {
167 "AVC combined kernel",
169 h264_avc_combined_gen4,
170 sizeof(h264_avc_combined_gen4),
178 sizeof(h264_avc_null_gen4),
184 #include "shaders/h264/mc/export.inc.gen5"
185 static unsigned long avc_mc_kernel_offset_gen5[] = {
186 INTRA_16x16_IP_GEN5 * INST_UNIT_GEN5,
187 INTRA_8x8_IP_GEN5 * INST_UNIT_GEN5,
188 INTRA_4x4_IP_GEN5 * INST_UNIT_GEN5,
189 INTRA_PCM_IP_GEN5 * INST_UNIT_GEN5,
190 FRAME_MB_IP_GEN5 * INST_UNIT_GEN5,
191 FIELD_MB_IP_GEN5 * INST_UNIT_GEN5,
192 MBAFF_MB_IP_GEN5 * INST_UNIT_GEN5
195 struct intra_kernel_header intra_kernel_header_gen5 = {
197 (INTRA_4X4_HORIZONTAL_IP_GEN5 - INTRA_4X4_VERTICAL_IP_GEN5),
198 (INTRA_4X4_DC_IP_GEN5 - INTRA_4X4_VERTICAL_IP_GEN5),
199 (INTRA_4X4_DIAG_DOWN_LEFT_IP_GEN5 - INTRA_4X4_VERTICAL_IP_GEN5),
201 (INTRA_4X4_DIAG_DOWN_RIGHT_IP_GEN5 - INTRA_4X4_VERTICAL_IP_GEN5),
202 (INTRA_4X4_VERT_RIGHT_IP_GEN5 - INTRA_4X4_VERTICAL_IP_GEN5),
203 (INTRA_4X4_HOR_DOWN_IP_GEN5 - INTRA_4X4_VERTICAL_IP_GEN5),
204 (INTRA_4X4_VERT_LEFT_IP_GEN5 - INTRA_4X4_VERTICAL_IP_GEN5),
206 (INTRA_4X4_HOR_UP_IP_GEN5 - INTRA_4X4_VERTICAL_IP_GEN5),
211 (INTRA_8X8_HORIZONTAL_IP_GEN5 - INTRA_8X8_VERTICAL_IP_GEN5),
212 (INTRA_8X8_DC_IP_GEN5 - INTRA_8X8_VERTICAL_IP_GEN5),
213 (INTRA_8X8_DIAG_DOWN_LEFT_IP_GEN5 - INTRA_8X8_VERTICAL_IP_GEN5),
215 (INTRA_8X8_DIAG_DOWN_RIGHT_IP_GEN5 - INTRA_8X8_VERTICAL_IP_GEN5),
216 (INTRA_8X8_VERT_RIGHT_IP_GEN5 - INTRA_8X8_VERTICAL_IP_GEN5),
217 (INTRA_8X8_HOR_DOWN_IP_GEN5 - INTRA_8X8_VERTICAL_IP_GEN5),
218 (INTRA_8X8_VERT_LEFT_IP_GEN5 - INTRA_8X8_VERTICAL_IP_GEN5),
220 (INTRA_8X8_HOR_UP_IP_GEN5 - INTRA_8X8_VERTICAL_IP_GEN5),
225 (INTRA_16x16_HORIZONTAL_IP_GEN5 - INTRA_16x16_VERTICAL_IP_GEN5),
226 (INTRA_16x16_DC_IP_GEN5 - INTRA_16x16_VERTICAL_IP_GEN5),
227 (INTRA_16x16_PLANE_IP_GEN5 - INTRA_16x16_VERTICAL_IP_GEN5),
230 (INTRA_CHROMA_HORIZONTAL_IP_GEN5 - INTRA_CHROMA_DC_IP_GEN5),
231 (INTRA_CHROMA_VERTICAL_IP_GEN5 - INTRA_CHROMA_DC_IP_GEN5),
232 (INTRA_Chroma_PLANE_IP_GEN5 - INTRA_CHROMA_DC_IP_GEN5),
246 (intra_Pred_4x4_Y_IP_GEN5 - ADD_ERROR_SB3_IP_GEN5) * 0x1000000 +
247 (intra_Pred_4x4_Y_IP_GEN5 - ADD_ERROR_SB2_IP_GEN5) * 0x10000 +
248 (intra_Pred_4x4_Y_IP_GEN5 - ADD_ERROR_SB1_IP_GEN5) * 0x100 +
249 (intra_Pred_4x4_Y_IP_GEN5 - ADD_ERROR_SB0_IP_GEN5)
252 static const uint32_t h264_avc_combined_gen5[][4] = {
253 #include "shaders/h264/mc/avc_mc.g4b.gen5"
256 static const uint32_t h264_avc_null_gen5[][4] = {
257 #include "shaders/h264/mc/null.g4b.gen5"
260 static struct i965_kernel h264_avc_kernels_gen5[] = {
262 "AVC combined kernel",
264 h264_avc_combined_gen5,
265 sizeof(h264_avc_combined_gen5),
273 sizeof(h264_avc_null_gen5),
278 #define NUM_H264_AVC_KERNELS (sizeof(h264_avc_kernels_gen4) / sizeof(h264_avc_kernels_gen4[0]))
279 struct i965_kernel *h264_avc_kernels = NULL;
281 #define NUM_AVC_MC_INTERFACES (sizeof(avc_mc_kernel_offset_gen4) / sizeof(avc_mc_kernel_offset_gen4[0]))
282 static unsigned long *avc_mc_kernel_offset = NULL;
284 static struct intra_kernel_header *intra_kernel_header = NULL;
287 i965_media_h264_surface_state(VADriverContextP ctx,
289 struct object_surface *obj_surface,
290 unsigned long offset,
291 int w, int h, int pitch,
293 int vert_line_stride,
294 int vert_line_stride_ofs,
296 struct i965_media_context *media_context)
298 struct i965_driver_data *i965 = i965_driver_data(ctx);
299 struct i965_surface_state *ss;
301 uint32_t write_domain, read_domain;
303 bo = dri_bo_alloc(i965->intel.bufmgr,
305 sizeof(struct i965_surface_state), 32);
310 memset(ss, 0, sizeof(*ss));
311 ss->ss0.surface_type = I965_SURFACE_2D;
312 ss->ss0.surface_format = format;
313 ss->ss0.vert_line_stride = vert_line_stride;
314 ss->ss0.vert_line_stride_ofs = vert_line_stride_ofs;
315 ss->ss1.base_addr = obj_surface->bo->offset + offset;
316 ss->ss2.width = w - 1;
317 ss->ss2.height = h - 1;
318 ss->ss3.pitch = pitch - 1;
321 write_domain = I915_GEM_DOMAIN_RENDER;
322 read_domain = I915_GEM_DOMAIN_RENDER;
325 read_domain = I915_GEM_DOMAIN_SAMPLER;
328 dri_bo_emit_reloc(bo,
329 read_domain, write_domain,
331 offsetof(struct i965_surface_state, ss1),
335 assert(index < MAX_MEDIA_SURFACES);
336 media_context->surface_state[index].bo = bo;
340 i965_media_h264_surfaces_setup(VADriverContextP ctx,
341 struct decode_state *decode_state,
342 struct i965_media_context *media_context)
344 struct i965_driver_data *i965 = i965_driver_data(ctx);
345 struct i965_h264_context *i965_h264_context;
346 struct object_surface *obj_surface;
347 VAPictureParameterBufferH264 *pic_param;
348 VAPictureH264 *va_pic;
352 assert(media_context->private_context);
353 i965_h264_context = (struct i965_h264_context *)media_context->private_context;
355 assert(decode_state->pic_param && decode_state->pic_param->buffer);
356 pic_param = (VAPictureParameterBufferH264 *)decode_state->pic_param->buffer;
359 va_pic = &pic_param->CurrPic;
360 assert(!(va_pic->flags & VA_PICTURE_H264_INVALID));
361 obj_surface = SURFACE(va_pic->picture_id);
363 w = obj_surface->width;
364 h = obj_surface->height;
365 field_picture = !!(va_pic->flags & (VA_PICTURE_H264_TOP_FIELD | VA_PICTURE_H264_BOTTOM_FIELD));
366 i965_media_h264_surface_state(ctx, 0, obj_surface,
367 0, w / 4, h / (1 + field_picture), w,
370 !!(va_pic->flags & VA_PICTURE_H264_BOTTOM_FIELD),
371 I965_SURFACEFORMAT_R8_SINT, /* Y */
373 i965_media_h264_surface_state(ctx, 1, obj_surface,
374 w * h, w / 4, h / 2 / (1 + field_picture), w,
377 !!(va_pic->flags & VA_PICTURE_H264_BOTTOM_FIELD),
378 I965_SURFACEFORMAT_R8G8_SINT, /* INTERLEAVED U/V */
381 /* Reference Pictures */
382 for (i = 0; i < ARRAY_ELEMS(i965_h264_context->fsid_list); i++) {
383 if (i965_h264_context->fsid_list[i].surface_id != VA_INVALID_ID) {
385 for (j = 0; j < ARRAY_ELEMS(pic_param->ReferenceFrames); j++) {
386 va_pic = &pic_param->ReferenceFrames[j];
388 if (va_pic->flags & VA_PICTURE_H264_INVALID)
391 if (va_pic->picture_id == i965_h264_context->fsid_list[i].surface_id) {
399 obj_surface = SURFACE(va_pic->picture_id);
401 w = obj_surface->width;
402 h = obj_surface->height;
403 field_picture = !!(va_pic->flags & (VA_PICTURE_H264_TOP_FIELD | VA_PICTURE_H264_BOTTOM_FIELD));
404 i965_media_h264_surface_state(ctx, 2 + i, obj_surface,
405 0, w / 4, h / (1 + field_picture), w,
408 !!(va_pic->flags & VA_PICTURE_H264_BOTTOM_FIELD),
409 I965_SURFACEFORMAT_R8_SINT, /* Y */
411 i965_media_h264_surface_state(ctx, 18 + i, obj_surface,
412 w * h, w / 4, h / 2 / (1 + field_picture), w,
415 !!(va_pic->flags & VA_PICTURE_H264_BOTTOM_FIELD),
416 I965_SURFACEFORMAT_R8G8_SINT, /* INTERLEAVED U/V */
423 i965_media_h264_binding_table(VADriverContextP ctx, struct i965_media_context *media_context)
426 unsigned int *binding_table;
427 dri_bo *bo = media_context->binding_table.bo;
431 binding_table = bo->virtual;
432 memset(binding_table, 0, bo->size);
434 for (i = 0; i < MAX_MEDIA_SURFACES; i++) {
435 if (media_context->surface_state[i].bo) {
436 binding_table[i] = media_context->surface_state[i].bo->offset;
437 dri_bo_emit_reloc(bo,
438 I915_GEM_DOMAIN_INSTRUCTION, 0,
440 i * sizeof(*binding_table),
441 media_context->surface_state[i].bo);
445 dri_bo_unmap(media_context->binding_table.bo);
449 i965_media_h264_interface_descriptor_remap_table(VADriverContextP ctx, struct i965_media_context *media_context)
451 struct i965_interface_descriptor *desc;
455 bo = media_context->idrt.bo;
460 for (i = 0; i < NUM_AVC_MC_INTERFACES; i++) {
461 int kernel_offset = avc_mc_kernel_offset[i];
462 memset(desc, 0, sizeof(*desc));
463 desc->desc0.grf_reg_blocks = 7;
464 desc->desc0.kernel_start_pointer = (h264_avc_kernels[H264_AVC_COMBINED].bo->offset + kernel_offset) >> 6; /* reloc */
465 desc->desc1.const_urb_entry_read_offset = 0;
466 desc->desc1.const_urb_entry_read_len = 2;
467 desc->desc3.binding_table_entry_count = 0;
468 desc->desc3.binding_table_pointer =
469 media_context->binding_table.bo->offset >> 5; /*reloc */
471 dri_bo_emit_reloc(bo,
472 I915_GEM_DOMAIN_INSTRUCTION, 0,
473 desc->desc0.grf_reg_blocks + kernel_offset,
474 i * sizeof(*desc) + offsetof(struct i965_interface_descriptor, desc0),
475 h264_avc_kernels[H264_AVC_COMBINED].bo);
477 dri_bo_emit_reloc(bo,
478 I915_GEM_DOMAIN_INSTRUCTION, 0,
479 desc->desc3.binding_table_entry_count,
480 i * sizeof(*desc) + offsetof(struct i965_interface_descriptor, desc3),
481 media_context->binding_table.bo);
489 i965_media_h264_vfe_state(VADriverContextP ctx, struct i965_media_context *media_context)
491 struct i965_vfe_state *vfe_state;
494 bo = media_context->vfe_state.bo;
497 vfe_state = bo->virtual;
498 memset(vfe_state, 0, sizeof(*vfe_state));
499 vfe_state->vfe0.extend_vfe_state_present = 1;
500 vfe_state->vfe1.max_threads = media_context->urb.num_vfe_entries - 1;
501 vfe_state->vfe1.urb_entry_alloc_size = media_context->urb.size_vfe_entry - 1;
502 vfe_state->vfe1.num_urb_entries = media_context->urb.num_vfe_entries;
503 vfe_state->vfe1.vfe_mode = VFE_AVC_IT_MODE;
504 vfe_state->vfe1.children_present = 0;
505 vfe_state->vfe2.interface_descriptor_base =
506 media_context->idrt.bo->offset >> 4; /* reloc */
507 dri_bo_emit_reloc(bo,
508 I915_GEM_DOMAIN_INSTRUCTION, 0,
510 offsetof(struct i965_vfe_state, vfe2),
511 media_context->idrt.bo);
516 i965_media_h264_vfe_state_extension(VADriverContextP ctx,
517 struct decode_state *decode_state,
518 struct i965_media_context *media_context)
520 struct i965_h264_context *i965_h264_context;
521 struct i965_vfe_state_ex *vfe_state_ex;
522 VAPictureParameterBufferH264 *pic_param;
523 int mbaff_frame_flag;
525 assert(media_context->private_context);
526 i965_h264_context = (struct i965_h264_context *)media_context->private_context;
528 assert(decode_state->pic_param && decode_state->pic_param->buffer);
529 pic_param = (VAPictureParameterBufferH264 *)decode_state->pic_param->buffer;
530 mbaff_frame_flag = (pic_param->seq_fields.bits.mb_adaptive_frame_field_flag &&
531 !pic_param->pic_fields.bits.field_pic_flag);
533 assert(media_context->extended_state.bo);
534 dri_bo_map(media_context->extended_state.bo, 1);
535 assert(media_context->extended_state.bo->virtual);
536 vfe_state_ex = media_context->extended_state.bo->virtual;
537 memset(vfe_state_ex, 0, sizeof(*vfe_state_ex));
540 * Indirect data buffer:
541 * --------------------------------------------------------
542 * | Motion Vectors | Weight/Offset data | Residual data |
543 * --------------------------------------------------------
544 * R4-R7: Motion Vectors
545 * R8-R9: Weight/Offset
546 * R10-R33: Residual data
548 vfe_state_ex->vfex1.avc.residual_data_fix_offset_flag = !!RESIDUAL_DATA_OFFSET;
549 vfe_state_ex->vfex1.avc.residual_data_offset = RESIDUAL_DATA_OFFSET;
551 if (i965_h264_context->picture.i_flag) {
552 vfe_state_ex->vfex1.avc.sub_field_present_flag = PRESENT_NOMV; /* NoMV */
553 vfe_state_ex->vfex1.avc.weight_grf_offset = 0;
554 vfe_state_ex->vfex1.avc.residual_grf_offset = 0;
556 vfe_state_ex->vfex1.avc.sub_field_present_flag = PRESENT_MV_WO; /* Both MV and W/O */
557 vfe_state_ex->vfex1.avc.weight_grf_offset = 4;
558 vfe_state_ex->vfex1.avc.residual_grf_offset = 6;
561 if (!pic_param->pic_fields.bits.field_pic_flag) {
562 if (mbaff_frame_flag) {
563 vfe_state_ex->remap_table0.remap_index_0 = INTRA_16X16;
564 vfe_state_ex->remap_table0.remap_index_1 = INTRA_8X8;
565 vfe_state_ex->remap_table0.remap_index_2 = INTRA_4X4;
566 vfe_state_ex->remap_table0.remap_index_3 = INTRA_PCM;
567 vfe_state_ex->remap_table0.remap_index_4 = MBAFF_MOTION;
568 vfe_state_ex->remap_table0.remap_index_5 = MBAFF_MOTION;
569 vfe_state_ex->remap_table0.remap_index_6 = MBAFF_MOTION;
570 vfe_state_ex->remap_table0.remap_index_7 = MBAFF_MOTION;
572 vfe_state_ex->remap_table1.remap_index_8 = MBAFF_MOTION;
573 vfe_state_ex->remap_table1.remap_index_9 = MBAFF_MOTION;
574 vfe_state_ex->remap_table1.remap_index_10 = MBAFF_MOTION;
575 vfe_state_ex->remap_table1.remap_index_11 = MBAFF_MOTION;
576 vfe_state_ex->remap_table1.remap_index_12 = MBAFF_MOTION;
577 vfe_state_ex->remap_table1.remap_index_13 = MBAFF_MOTION;
578 vfe_state_ex->remap_table1.remap_index_14 = MBAFF_MOTION;
579 vfe_state_ex->remap_table1.remap_index_15 = MBAFF_MOTION;
581 vfe_state_ex->remap_table0.remap_index_0 = INTRA_16X16;
582 vfe_state_ex->remap_table0.remap_index_1 = INTRA_8X8;
583 vfe_state_ex->remap_table0.remap_index_2 = INTRA_4X4;
584 vfe_state_ex->remap_table0.remap_index_3 = INTRA_PCM;
585 vfe_state_ex->remap_table0.remap_index_4 = FRAMEMB_MOTION;
586 vfe_state_ex->remap_table0.remap_index_5 = FRAMEMB_MOTION;
587 vfe_state_ex->remap_table0.remap_index_6 = FRAMEMB_MOTION;
588 vfe_state_ex->remap_table0.remap_index_7 = FRAMEMB_MOTION;
590 vfe_state_ex->remap_table1.remap_index_8 = FRAMEMB_MOTION;
591 vfe_state_ex->remap_table1.remap_index_9 = FRAMEMB_MOTION;
592 vfe_state_ex->remap_table1.remap_index_10 = FRAMEMB_MOTION;
593 vfe_state_ex->remap_table1.remap_index_11 = FRAMEMB_MOTION;
594 vfe_state_ex->remap_table1.remap_index_12 = FRAMEMB_MOTION;
595 vfe_state_ex->remap_table1.remap_index_13 = FRAMEMB_MOTION;
596 vfe_state_ex->remap_table1.remap_index_14 = FRAMEMB_MOTION;
597 vfe_state_ex->remap_table1.remap_index_15 = FRAMEMB_MOTION;
600 vfe_state_ex->remap_table0.remap_index_0 = INTRA_16X16;
601 vfe_state_ex->remap_table0.remap_index_1 = INTRA_8X8;
602 vfe_state_ex->remap_table0.remap_index_2 = INTRA_4X4;
603 vfe_state_ex->remap_table0.remap_index_3 = INTRA_PCM;
604 vfe_state_ex->remap_table0.remap_index_4 = FIELDMB_MOTION;
605 vfe_state_ex->remap_table0.remap_index_5 = FIELDMB_MOTION;
606 vfe_state_ex->remap_table0.remap_index_6 = FIELDMB_MOTION;
607 vfe_state_ex->remap_table0.remap_index_7 = FIELDMB_MOTION;
609 vfe_state_ex->remap_table1.remap_index_8 = FIELDMB_MOTION;
610 vfe_state_ex->remap_table1.remap_index_9 = FIELDMB_MOTION;
611 vfe_state_ex->remap_table1.remap_index_10 = FIELDMB_MOTION;
612 vfe_state_ex->remap_table1.remap_index_11 = FIELDMB_MOTION;
613 vfe_state_ex->remap_table1.remap_index_12 = FIELDMB_MOTION;
614 vfe_state_ex->remap_table1.remap_index_13 = FIELDMB_MOTION;
615 vfe_state_ex->remap_table1.remap_index_14 = FIELDMB_MOTION;
616 vfe_state_ex->remap_table1.remap_index_15 = FIELDMB_MOTION;
619 if (i965_h264_context->use_avc_hw_scoreboard) {
620 vfe_state_ex->scoreboard0.enable = 1;
621 vfe_state_ex->scoreboard0.type = SCOREBOARD_STALLING;
622 vfe_state_ex->scoreboard0.mask = 0xff;
624 vfe_state_ex->scoreboard1.delta_x0 = -1;
625 vfe_state_ex->scoreboard1.delta_y0 = 0;
626 vfe_state_ex->scoreboard1.delta_x1 = 0;
627 vfe_state_ex->scoreboard1.delta_y1 = -1;
628 vfe_state_ex->scoreboard1.delta_x2 = 1;
629 vfe_state_ex->scoreboard1.delta_y2 = -1;
630 vfe_state_ex->scoreboard1.delta_x3 = -1;
631 vfe_state_ex->scoreboard1.delta_y3 = -1;
633 vfe_state_ex->scoreboard2.delta_x4 = -1;
634 vfe_state_ex->scoreboard2.delta_y4 = 1;
635 vfe_state_ex->scoreboard2.delta_x5 = 0;
636 vfe_state_ex->scoreboard2.delta_y5 = -2;
637 vfe_state_ex->scoreboard2.delta_x6 = 1;
638 vfe_state_ex->scoreboard2.delta_y6 = -2;
639 vfe_state_ex->scoreboard2.delta_x7 = -1;
640 vfe_state_ex->scoreboard2.delta_y7 = -2;
643 dri_bo_unmap(media_context->extended_state.bo);
647 i965_media_h264_upload_constants(VADriverContextP ctx,
648 struct decode_state *decode_state,
649 struct i965_media_context *media_context)
651 struct i965_h264_context *i965_h264_context;
652 unsigned char *constant_buffer;
653 VASliceParameterBufferH264 *slice_param;
655 assert(media_context->private_context);
656 i965_h264_context = (struct i965_h264_context *)media_context->private_context;
658 assert(decode_state->slice_params[0] && decode_state->slice_params[0]->buffer);
659 slice_param = (VASliceParameterBufferH264 *)decode_state->slice_params[0]->buffer;
661 dri_bo_map(media_context->curbe.bo, 1);
662 assert(media_context->curbe.bo->virtual);
663 constant_buffer = media_context->curbe.bo->virtual;
665 /* HW solution for W=128 */
666 if (i965_h264_context->use_hw_w128) {
667 memcpy(constant_buffer, intra_kernel_header, sizeof(*intra_kernel_header));
669 if (slice_param->slice_type == SLICE_TYPE_I ||
670 slice_param->slice_type == SLICE_TYPE_SI) {
671 memcpy(constant_buffer, intra_kernel_header, sizeof(*intra_kernel_header));
673 /* FIXME: Need to upload CURBE data to inter kernel interface
674 * to support weighted prediction work-around
676 *(short *)constant_buffer = i965_h264_context->weight128_offset0;
677 constant_buffer += 2;
678 *(char *)constant_buffer = i965_h264_context->weight128_offset0_flag;
680 *constant_buffer = 0;
684 dri_bo_unmap(media_context->curbe.bo);
688 i965_media_h264_states_setup(VADriverContextP ctx,
689 struct decode_state *decode_state,
690 struct i965_media_context *media_context)
692 struct i965_h264_context *i965_h264_context;
694 assert(media_context->private_context);
695 i965_h264_context = (struct i965_h264_context *)media_context->private_context;
697 i965_avc_bsd_pipeline(ctx, decode_state, i965_h264_context);
699 if (i965_h264_context->use_avc_hw_scoreboard)
700 i965_avc_hw_scoreboard(ctx, decode_state, i965_h264_context);
702 i965_media_h264_surfaces_setup(ctx, decode_state, media_context);
703 i965_media_h264_binding_table(ctx, media_context);
704 i965_media_h264_interface_descriptor_remap_table(ctx, media_context);
705 i965_media_h264_vfe_state_extension(ctx, decode_state, media_context);
706 i965_media_h264_vfe_state(ctx, media_context);
707 i965_media_h264_upload_constants(ctx, decode_state, media_context);
711 i965_media_h264_objects(VADriverContextP ctx,
712 struct decode_state *decode_state,
713 struct i965_media_context *media_context)
715 struct i965_h264_context *i965_h264_context;
716 unsigned int *object_command;
718 assert(media_context->private_context);
719 i965_h264_context = (struct i965_h264_context *)media_context->private_context;
721 dri_bo_map(i965_h264_context->avc_it_command_mb_info.bo, True);
722 assert(i965_h264_context->avc_it_command_mb_info.bo->virtual);
723 object_command = i965_h264_context->avc_it_command_mb_info.bo->virtual;
724 memset(object_command, 0, i965_h264_context->avc_it_command_mb_info.mbs * i965_h264_context->use_avc_hw_scoreboard * MB_CMD_IN_BYTES);
725 object_command += i965_h264_context->avc_it_command_mb_info.mbs * (1 + i965_h264_context->use_avc_hw_scoreboard) * MB_CMD_IN_DWS;
726 *object_command++ = 0;
727 *object_command = MI_BATCH_BUFFER_END;
728 dri_bo_unmap(i965_h264_context->avc_it_command_mb_info.bo);
731 OUT_BATCH(ctx, MI_BATCH_BUFFER_START | (2 << 6));
732 OUT_RELOC(ctx, i965_h264_context->avc_it_command_mb_info.bo,
733 I915_GEM_DOMAIN_COMMAND, 0,
737 /* Have to execute the batch buffer here becuase MI_BATCH_BUFFER_END
738 * will cause control to pass back to ring buffer
740 intel_batchbuffer_end_atomic(ctx);
741 intel_batchbuffer_flush(ctx);
742 intel_batchbuffer_start_atomic(ctx, 0x1000);
743 i965_avc_ildb(ctx, decode_state, i965_h264_context);
747 i965_media_h264_free_private_context(void **data)
749 struct i965_h264_context *i965_h264_context = *data;
752 if (i965_h264_context == NULL)
755 i965_avc_ildb_ternimate(&i965_h264_context->avc_ildb_context);
756 i965_avc_hw_scoreboard_ternimate(&i965_h264_context->avc_hw_scoreboard_context);
757 i965_avc_bsd_ternimate(&i965_h264_context->i965_avc_bsd_context);
758 dri_bo_unreference(i965_h264_context->avc_it_command_mb_info.bo);
759 dri_bo_unreference(i965_h264_context->avc_it_data.bo);
760 dri_bo_unreference(i965_h264_context->avc_ildb_data.bo);
761 free(i965_h264_context);
764 for (i = 0; i < NUM_H264_AVC_KERNELS; i++) {
765 struct i965_kernel *kernel = &h264_avc_kernels[i];
767 dri_bo_unreference(kernel->bo);
773 i965_media_h264_decode_init(VADriverContextP ctx,
774 struct decode_state *decode_state,
775 struct i965_media_context *media_context)
777 struct i965_driver_data *i965 = i965_driver_data(ctx);
778 struct i965_h264_context *i965_h264_context = media_context->private_context;
780 VAPictureParameterBufferH264 *pic_param;
782 assert(decode_state->pic_param && decode_state->pic_param->buffer);
783 pic_param = (VAPictureParameterBufferH264 *)decode_state->pic_param->buffer;
784 i965_h264_context->picture.width_in_mbs = ((pic_param->picture_width_in_mbs_minus1 + 1) & 0xff);
785 i965_h264_context->picture.height_in_mbs = ((pic_param->picture_height_in_mbs_minus1 + 1) & 0xff) /
786 (1 + !!pic_param->pic_fields.bits.field_pic_flag); /* picture height */
787 i965_h264_context->picture.mbaff_frame_flag = (pic_param->seq_fields.bits.mb_adaptive_frame_field_flag &&
788 !pic_param->pic_fields.bits.field_pic_flag);
789 i965_h264_context->avc_it_command_mb_info.mbs = (i965_h264_context->picture.width_in_mbs *
790 i965_h264_context->picture.height_in_mbs);
792 dri_bo_unreference(i965_h264_context->avc_it_command_mb_info.bo);
793 bo = dri_bo_alloc(i965->intel.bufmgr,
794 "avc it command mb info",
795 i965_h264_context->avc_it_command_mb_info.mbs * MB_CMD_IN_BYTES * (1 + i965_h264_context->use_avc_hw_scoreboard) + 8,
798 i965_h264_context->avc_it_command_mb_info.bo = bo;
800 dri_bo_unreference(i965_h264_context->avc_it_data.bo);
801 bo = dri_bo_alloc(i965->intel.bufmgr,
803 i965_h264_context->avc_it_command_mb_info.mbs *
805 (1 + !!pic_param->pic_fields.bits.field_pic_flag),
808 i965_h264_context->avc_it_data.bo = bo;
809 i965_h264_context->avc_it_data.write_offset = 0;
810 dri_bo_unreference(media_context->indirect_object.bo);
811 media_context->indirect_object.bo = bo;
812 dri_bo_reference(media_context->indirect_object.bo);
813 media_context->indirect_object.offset = i965_h264_context->avc_it_data.write_offset;
815 dri_bo_unreference(i965_h264_context->avc_ildb_data.bo);
816 bo = dri_bo_alloc(i965->intel.bufmgr,
817 "AVC-ILDB Data Buffer",
818 i965_h264_context->avc_it_command_mb_info.mbs * 64 * 2,
821 i965_h264_context->avc_ildb_data.bo = bo;
824 i965_avc_bsd_decode_init(ctx, i965_h264_context);
827 if (i965_h264_context->use_avc_hw_scoreboard)
828 i965_avc_hw_scoreboard_decode_init(ctx, i965_h264_context);
831 i965_avc_ildb_decode_init(ctx, i965_h264_context);
833 /* for Media pipeline */
834 media_context->extended_state.enabled = 1;
835 dri_bo_unreference(media_context->extended_state.bo);
836 bo = dri_bo_alloc(i965->intel.bufmgr,
838 sizeof(struct i965_vfe_state_ex), 32);
840 media_context->extended_state.bo = bo;
844 i965_media_h264_dec_context_init(VADriverContextP ctx, struct i965_media_context *media_context)
846 struct i965_driver_data *i965 = i965_driver_data(ctx);
847 struct i965_h264_context *i965_h264_context;
850 i965_h264_context = calloc(1, sizeof(struct i965_h264_context));
853 if (h264_avc_kernels == NULL) {
854 assert(NUM_H264_AVC_KERNELS == (sizeof(h264_avc_kernels_gen5) /
855 sizeof(h264_avc_kernels_gen5[0])));
856 assert(NUM_AVC_MC_INTERFACES == (sizeof(avc_mc_kernel_offset_gen5) /
857 sizeof(avc_mc_kernel_offset_gen5[0])));
859 if (IS_IRONLAKE(i965->intel.device_id)) {
860 h264_avc_kernels = h264_avc_kernels_gen5;
861 avc_mc_kernel_offset = avc_mc_kernel_offset_gen5;
862 intra_kernel_header = &intra_kernel_header_gen5;
863 i965_h264_context->use_avc_hw_scoreboard = 1;
864 i965_h264_context->use_hw_w128 = 1;
866 h264_avc_kernels = h264_avc_kernels_gen4;
867 avc_mc_kernel_offset = avc_mc_kernel_offset_gen4;
868 intra_kernel_header = &intra_kernel_header_gen4;
869 i965_h264_context->use_avc_hw_scoreboard = 0;
870 i965_h264_context->use_hw_w128 = 0;
873 for (i = 0; i < NUM_H264_AVC_KERNELS; i++) {
874 struct i965_kernel *kernel = &h264_avc_kernels[i];
875 kernel->bo = dri_bo_alloc(i965->intel.bufmgr,
877 kernel->size, 0x1000);
879 dri_bo_subdata(kernel->bo, 0, kernel->size, kernel->bin);
883 for (i = 0; i < 16; i++) {
884 i965_h264_context->fsid_list[i].surface_id = VA_INVALID_ID;
885 i965_h264_context->fsid_list[i].frame_store_id = -1;
888 media_context->private_context = i965_h264_context;
889 media_context->free_private_context = i965_media_h264_free_private_context;
892 if (IS_IRONLAKE(i965->intel.device_id)) {
893 media_context->urb.num_vfe_entries = 63;
895 media_context->urb.num_vfe_entries = 23;
898 media_context->urb.size_vfe_entry = 16;
900 media_context->urb.num_cs_entries = 1;
901 media_context->urb.size_cs_entry = 1;
903 media_context->urb.vfe_start = 0;
904 media_context->urb.cs_start = media_context->urb.vfe_start +
905 media_context->urb.num_vfe_entries * media_context->urb.size_vfe_entry;
906 assert(media_context->urb.cs_start +
907 media_context->urb.num_cs_entries * media_context->urb.size_cs_entry <= URB_SIZE((&i965->intel)));
910 media_context->media_states_setup = i965_media_h264_states_setup;
911 media_context->media_objects = i965_media_h264_objects;