i965_drv_video: improved MV quality for VME
[platform/upstream/libva.git] / i965_drv_video / gen7_mfd.h
1 /*
2  * Copyright © 2011 Intel Corporation
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a
5  * copy of this software and associated documentation files (the
6  * "Software"), to deal in the Software without restriction, including
7  * without limitation the rights to use, copy, modify, merge, publish,
8  * distribute, sub license, and/or sell copies of the Software, and to
9  * permit persons to whom the Software is furnished to do so, subject to
10  * the following conditions:
11  *
12  * The above copyright notice and this permission notice (including the
13  * next paragraph) shall be included in all copies or substantial portions
14  * of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
17  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
19  * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR
20  * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
21  * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
22  * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23  *
24  * Authors:
25  *    Xiang Haihao <haihao.xiang@intel.com>
26  *
27  */
28
29 #ifndef _GEN7_MFD_H_
30 #define _GEN7_MFD_H_
31
32 #include <xf86drm.h>
33 #include <drm.h>
34 #include <i915_drm.h>
35 #include <intel_bufmgr.h>
36
37 struct gen7_avc_surface
38 {
39     dri_bo *dmv_top;
40     dri_bo *dmv_bottom;
41     int dmv_bottom_flag;
42 };
43
44 #define GEN7_VC1_I_PICTURE              0
45 #define GEN7_VC1_P_PICTURE              1
46 #define GEN7_VC1_B_PICTURE              2
47 #define GEN7_VC1_BI_PICTURE             3
48 #define GEN7_VC1_SKIPPED_PICTURE        4
49
50 #define GEN7_VC1_SIMPLE_PROFILE         0
51 #define GEN7_VC1_MAIN_PROFILE           1
52 #define GEN7_VC1_ADVANCED_PROFILE       2
53 #define GEN7_VC1_RESERVED_PROFILE       3
54
55 struct gen7_vc1_surface
56 {
57     dri_bo *dmv;
58     int picture_type;
59 };
60
61 #define MAX_MFX_REFERENCE_SURFACES        16
62 struct hw_context;
63
64 struct gen7_mfd_context
65 {
66     struct hw_context base;
67
68     struct {
69         VASurfaceID surface_id;
70         int frame_store_id;
71     } reference_surface[MAX_MFX_REFERENCE_SURFACES];
72
73     struct {
74         dri_bo *bo;
75         int valid;
76     } post_deblocking_output;
77
78     struct {
79         dri_bo *bo;
80         int valid;
81     } pre_deblocking_output;
82
83     struct {
84         dri_bo *bo;
85         int valid;
86     } intra_row_store_scratch_buffer;
87
88     struct {
89         dri_bo *bo;
90         int valid;
91     } deblocking_filter_row_store_scratch_buffer;
92
93     struct {
94         dri_bo *bo;
95         int valid;
96     } bsd_mpc_row_store_scratch_buffer;
97
98     struct {
99         dri_bo *bo;
100         int valid;
101     } mpr_row_store_scratch_buffer;
102
103     struct {
104         dri_bo *bo;
105         int valid;
106     } bitplane_read_buffer;
107 };
108
109 #endif /* _GEN7_MFD_H_ */