Skip to content
Navigation Menu
Toggle navigation
Sign in
In this repository
All GitHub Enterprise
↵
Jump to
↵
No suggested jump to results
In this repository
All GitHub Enterprise
↵
Jump to
↵
In this organization
All GitHub Enterprise
↵
Jump to
↵
In this repository
All GitHub Enterprise
↵
Jump to
↵
Sign in
Reseting focus
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
mariux64
/
linux
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
1
Pull requests
0
Actions
Projects
0
Wiki
Security
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security
Insights
Files
c186c13
Breadcrumbs
linux
/
drivers
/
gpu
/
drm
/
amd
/
display
/
dc
/
inc
/
hw
/
dwb.h
Copy path
Blame
Blame
Latest commit
History
History
228 lines (190 loc) · 5.84 KB
Breadcrumbs
linux
/
drivers
/
gpu
/
drm
/
amd
/
display
/
dc
/
inc
/
hw
/
dwb.h
Top
File metadata and controls
Code
Blame
228 lines (190 loc) · 5.84 KB
Raw
/* Copyright 2012-17 Advanced Micro Devices, Inc. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR * OTHER DEALINGS IN THE SOFTWARE. * * Authors: AMD * */ #ifndef __DC_DWBC_H__ #define __DC_DWBC_H__ #include "dal_types.h" #include "dc_hw_types.h" #define DWB_SW_V2 1 #define DWB_MCIF_BUF_COUNT 4 /* forward declaration of mcif_wb struct */ struct mcif_wb; enum dwb_sw_version { dwb_ver_1_0 = 1, dwb_ver_2_0 = 2, }; enum dwb_source { dwb_src_scl = 0, /* for DCE7x/9x, DCN won't support. */ dwb_src_blnd, /* for DCE7x/9x */ dwb_src_fmt, /* for DCE7x/9x */ dwb_src_otg0 = 0x100, /* for DCN1.x/DCN2.x, register: mmDWB_SOURCE_SELECT */ dwb_src_otg1, /* for DCN1.x/DCN2.x */ dwb_src_otg2, /* for DCN1.x/DCN2.x */ dwb_src_otg3, /* for DCN1.x/DCN2.x */ }; /* DCN1.x, DCN2.x support 2 pipes */ enum dwb_pipe { dwb_pipe0 = 0, dwb_pipe1, dwb_pipe_max_num, }; enum dwb_frame_capture_enable { DWB_FRAME_CAPTURE_DISABLE = 0, DWB_FRAME_CAPTURE_ENABLE = 1, }; enum wbscl_coef_filter_type_sel { WBSCL_COEF_LUMA_VERT_FILTER = 0, WBSCL_COEF_CHROMA_VERT_FILTER = 1, WBSCL_COEF_LUMA_HORZ_FILTER = 2, WBSCL_COEF_CHROMA_HORZ_FILTER = 3 }; enum dwb_boundary_mode { DWBSCL_BOUNDARY_MODE_EDGE = 0, DWBSCL_BOUNDARY_MODE_BLACK = 1 }; enum dwb_output_csc_mode { DWB_OUTPUT_CSC_DISABLE = 0, DWB_OUTPUT_CSC_COEF_A = 1, DWB_OUTPUT_CSC_COEF_B = 2 }; enum dwb_ogam_lut_mode { DWB_OGAM_MODE_BYPASS, DWB_OGAM_RAMA_LUT, DWB_OGAM_RAMB_LUT }; enum dwb_color_volume { DWB_SRGB_BT709 = 0, //SDR DWB_PQ = 1, //HDR DWB_HLG = 2, //HDR }; enum dwb_color_space { DWB_SRGB = 0, //SDR DWB_BT709 = 1, //SDR DWB_BT2020 = 2, //HDR }; struct dwb_efc_hdr_metadata { /*display chromaticities and white point in units of 0.00001 */ unsigned int chromaticity_green_x; unsigned int chromaticity_green_y; unsigned int chromaticity_blue_x; unsigned int chromaticity_blue_y; unsigned int chromaticity_red_x; unsigned int chromaticity_red_y; unsigned int chromaticity_white_point_x; unsigned int chromaticity_white_point_y; /*in units of candelas per square meter */ unsigned int min_luminance; unsigned int max_luminance; /*in units of nits */ unsigned int maximum_content_light_level; unsigned int maximum_frame_average_light_level; }; struct dwb_efc_display_settings { unsigned int inputColorVolume; unsigned int inputColorSpace; unsigned int inputBitDepthMinus8; struct dwb_efc_hdr_metadata hdr_metadata; unsigned int dwbOutputBlack; // 0 - Normal, 1 - Output Black }; struct dwb_warmup_params { bool warmup_en; /* false: normal mode, true: enable pattern generator */ bool warmup_mode; /* false: 420, true: 444 */ bool warmup_depth; /* false: 8bit, true: 10bit */ int warmup_data; /* Data to be sent by pattern generator (same for each pixel component) */ int warmup_width; /* Pattern width (pixels) */ int warmup_height; /* Pattern height (lines) */ }; struct dwb_caps { enum dce_version hw_version; /* DCN engine version. */ enum dwb_sw_version sw_version; /* DWB sw implementation version. */ unsigned int reserved[6]; /* Reserved for future use, MUST BE 0. */ unsigned int adapter_id; unsigned int num_pipes; /* number of DWB pipes */ struct { unsigned int support_dwb :1; unsigned int support_ogam :1; unsigned int support_wbscl :1; unsigned int support_ocsc :1; unsigned int support_stereo :1; } caps; unsigned int reserved2[9]; /* Reserved for future use, MUST BE 0. */ }; struct dwbc { const struct dwbc_funcs *funcs; struct dc_context *ctx; int inst; struct mcif_wb *mcif; bool status; int inputSrcSelect; bool dwb_output_black; enum dc_transfer_func_predefined tf; enum dc_color_space output_color_space; bool dwb_is_efc_transition; bool dwb_is_drc; int wb_src_plane_inst;/*hubp, mpcc, inst*/ uint32_t mask_id; int otg_inst; bool mvc_cfg; }; struct dwbc_funcs { bool (*get_caps)( struct dwbc *dwbc, struct dwb_caps *caps); bool (*enable)( struct dwbc *dwbc, struct dc_dwb_params *params); bool (*disable)(struct dwbc *dwbc); bool (*update)( struct dwbc *dwbc, struct dc_dwb_params *params); bool (*is_enabled)( struct dwbc *dwbc); void (*set_stereo)( struct dwbc *dwbc, struct dwb_stereo_params *stereo_params); void (*set_new_content)( struct dwbc *dwbc, bool is_new_content); void (*set_warmup)( struct dwbc *dwbc, struct dwb_warmup_params *warmup_params); #if defined(CONFIG_DRM_AMD_DC_DCN) void (*dwb_program_output_csc)( struct dwbc *dwbc, enum dc_color_space color_space, enum dwb_output_csc_mode mode); bool (*dwb_ogam_set_output_transfer_func)( struct dwbc *dwbc, const struct dc_transfer_func *in_transfer_func_dwb_ogam); //TODO: merge with output_transfer_func? bool (*dwb_ogam_set_input_transfer_func)( struct dwbc *dwbc, const struct dc_transfer_func *in_transfer_func_dwb_ogam); #endif bool (*get_dwb_status)( struct dwbc *dwbc); void (*dwb_set_scaler)( struct dwbc *dwbc, struct dc_dwb_params *params); }; #endif
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
You can’t perform that action at this time.