OSDN Git Service

a91a84a12bf1541684f05314a8ac3590258f6dd9
[android-x86/hardware-intel-intel-driver.git] / src / gen9_mfd.h
1 /*
2  * Copyright © 2014 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 GEN9_MFD_H
30 #define GEN9_MFD_H
31
32 #include <xf86drm.h>
33 #include <drm.h>
34 #include <i915_drm.h>
35 #include <intel_bufmgr.h>
36 #include "i965_decoder.h"
37 #include "vp9_probs.h"
38
39 struct hw_context;
40
41 typedef struct vp9_frame_status
42 {
43     uint16_t frame_width;
44     uint16_t frame_height;
45     uint8_t frame_type;
46     uint8_t show_frame;
47     uint8_t refresh_frame_context;
48     uint8_t frame_context_idx;
49     uint8_t intra_only;
50     uint8_t prob_buffer_saved_flag;
51     uint8_t prob_buffer_restored_flag;
52 }vp9_last_frame_status;
53
54 typedef struct vp9_mv_temporal_buffer
55 {
56     dri_bo *bo;
57     uint16_t frame_width;
58     uint16_t frame_height;
59 }VP9_MV_BUFFER;
60
61 struct gen9_hcpd_context
62 {
63     struct hw_context base;
64
65     GenFrameStoreContext fs_ctx;
66
67     GenFrameStore reference_surfaces[MAX_GEN_HCP_REFERENCE_FRAMES];
68
69     VAIQMatrixBufferHEVC  iq_matrix_hevc;
70
71     uint16_t picture_width_in_pixels;
72     uint16_t picture_height_in_pixels;
73     uint16_t picture_width_in_ctbs;
74     uint16_t picture_height_in_ctbs;
75     uint16_t picture_width_in_min_cb_minus1;
76     uint16_t picture_height_in_min_cb_minus1;
77     uint8_t ctb_size;
78     uint8_t min_cb_size;
79
80     GenBuffer deblocking_filter_line_buffer;
81     GenBuffer deblocking_filter_tile_line_buffer;
82     GenBuffer deblocking_filter_tile_column_buffer;
83     GenBuffer metadata_line_buffer;
84     GenBuffer metadata_tile_line_buffer;
85     GenBuffer metadata_tile_column_buffer;
86     GenBuffer sao_line_buffer;
87     GenBuffer sao_tile_line_buffer;
88     GenBuffer sao_tile_column_buffer;
89     GenBuffer hvd_line_rowstore_buffer;
90     GenBuffer hvd_tile_rowstore_buffer;
91     GenBuffer vp9_probability_buffer;
92     GenBuffer vp9_segment_id_buffer;
93     VP9_MV_BUFFER vp9_mv_temporal_buffer_curr;
94     VP9_MV_BUFFER vp9_mv_temporal_buffer_last;
95
96     unsigned short first_inter_slice_collocated_ref_idx;
97     unsigned short first_inter_slice_collocated_from_l0_flag;
98     int first_inter_slice_valid;
99
100     vp9_last_frame_status last_frame;
101     FRAME_CONTEXT vp9_frame_ctx[FRAME_CONTEXTS];
102     FRAME_CONTEXT vp9_fc_inter_default;
103     FRAME_CONTEXT vp9_fc_key_default;
104     FRAME_CONTEXT vp9_fc;
105     FRAME_CONTEXT vp9_saved_fc;
106 };
107
108 #endif /* GEN9_MFD_H */