Loading...
1/*
2 * Copyright 2015 Advanced Micro Devices, Inc.
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 * OTHER DEALINGS IN THE SOFTWARE.
21 *
22 * Authors: AMD
23 *
24 */
25
26#ifndef __DAL_HW_SHARED_H__
27#define __DAL_HW_SHARED_H__
28
29#include "os_types.h"
30#include "fixed31_32.h"
31#include "dc_hw_types.h"
32
33/******************************************************************************
34 * Data types shared between different Virtual HW blocks
35 ******************************************************************************/
36
37#define MAX_AUDIOS 7
38
39/**
40 * @MAX_PIPES:
41 *
42 * Every ASIC support a fixed number of pipes; MAX_PIPES defines a large number
43 * to be used inside loops and for determining array sizes.
44 */
45#define MAX_PIPES 6
46#define MAX_PHANTOM_PIPES (MAX_PIPES / 2)
47#define MAX_DIG_LINK_ENCODERS 7
48#define MAX_DWB_PIPES 1
49#define MAX_HPO_DP2_ENCODERS 4
50#define MAX_HPO_DP2_LINK_ENCODERS 2
51
52struct gamma_curve {
53 uint32_t offset;
54 uint32_t segments_num;
55};
56
57struct curve_points {
58 struct fixed31_32 x;
59 struct fixed31_32 y;
60 struct fixed31_32 offset;
61 struct fixed31_32 slope;
62
63 uint32_t custom_float_x;
64 uint32_t custom_float_y;
65 uint32_t custom_float_offset;
66 uint32_t custom_float_slope;
67};
68
69struct curve_points3 {
70 struct curve_points red;
71 struct curve_points green;
72 struct curve_points blue;
73};
74
75struct pwl_result_data {
76 struct fixed31_32 red;
77 struct fixed31_32 green;
78 struct fixed31_32 blue;
79
80 struct fixed31_32 delta_red;
81 struct fixed31_32 delta_green;
82 struct fixed31_32 delta_blue;
83
84 uint32_t red_reg;
85 uint32_t green_reg;
86 uint32_t blue_reg;
87
88 uint32_t delta_red_reg;
89 uint32_t delta_green_reg;
90 uint32_t delta_blue_reg;
91};
92
93struct dc_rgb {
94 uint32_t red;
95 uint32_t green;
96 uint32_t blue;
97};
98
99struct tetrahedral_17x17x17 {
100 struct dc_rgb lut0[1229];
101 struct dc_rgb lut1[1228];
102 struct dc_rgb lut2[1228];
103 struct dc_rgb lut3[1228];
104};
105struct tetrahedral_9x9x9 {
106 struct dc_rgb lut0[183];
107 struct dc_rgb lut1[182];
108 struct dc_rgb lut2[182];
109 struct dc_rgb lut3[182];
110};
111
112struct tetrahedral_params {
113 union {
114 struct tetrahedral_17x17x17 tetrahedral_17;
115 struct tetrahedral_9x9x9 tetrahedral_9;
116 };
117 bool use_tetrahedral_9;
118 bool use_12bits;
119
120};
121
122/* arr_curve_points - regamma regions/segments specification
123 * arr_points - beginning and end point specified separately (only one on DCE)
124 * corner_points - beginning and end point for all 3 colors (DCN)
125 * rgb_resulted - final curve
126 */
127struct pwl_params {
128 struct gamma_curve arr_curve_points[34];
129 union {
130 struct curve_points arr_points[2];
131 struct curve_points3 corner_points[2];
132 };
133 struct pwl_result_data rgb_resulted[256 + 3];
134 uint32_t hw_points_num;
135};
136
137/* move to dpp
138 * while we are moving functionality out of opp to dpp to align
139 * HW programming to HW IP, we define these struct in hw_shared
140 * so we can still compile while refactoring
141 */
142
143enum lb_pixel_depth {
144 /* do not change the values because it is used as bit vector */
145 LB_PIXEL_DEPTH_18BPP = 1,
146 LB_PIXEL_DEPTH_24BPP = 2,
147 LB_PIXEL_DEPTH_30BPP = 4,
148 LB_PIXEL_DEPTH_36BPP = 8
149};
150
151enum graphics_csc_adjust_type {
152 GRAPHICS_CSC_ADJUST_TYPE_BYPASS = 0,
153 GRAPHICS_CSC_ADJUST_TYPE_HW, /* without adjustments */
154 GRAPHICS_CSC_ADJUST_TYPE_SW /*use adjustments */
155};
156
157enum ipp_degamma_mode {
158 IPP_DEGAMMA_MODE_BYPASS,
159 IPP_DEGAMMA_MODE_HW_sRGB,
160 IPP_DEGAMMA_MODE_HW_xvYCC,
161 IPP_DEGAMMA_MODE_USER_PWL
162};
163
164enum gamcor_mode {
165 GAMCOR_MODE_BYPASS,
166 GAMCOR_MODE_RESERVED_1,
167 GAMCOR_MODE_USER_PWL,
168 GAMCOR_MODE_RESERVED_3
169};
170
171enum ipp_output_format {
172 IPP_OUTPUT_FORMAT_12_BIT_FIX,
173 IPP_OUTPUT_FORMAT_16_BIT_BYPASS,
174 IPP_OUTPUT_FORMAT_FLOAT
175};
176
177enum expansion_mode {
178 EXPANSION_MODE_DYNAMIC,
179 EXPANSION_MODE_ZERO
180};
181
182struct default_adjustment {
183 enum lb_pixel_depth lb_color_depth;
184 enum dc_color_space out_color_space;
185 enum dc_color_space in_color_space;
186 enum dc_color_depth color_depth;
187 enum pixel_format surface_pixel_format;
188 enum graphics_csc_adjust_type csc_adjust_type;
189 bool force_hw_default;
190};
191
192
193struct out_csc_color_matrix {
194 enum dc_color_space color_space;
195 uint16_t regval[12];
196};
197
198enum gamut_remap_select {
199 GAMUT_REMAP_BYPASS = 0,
200 GAMUT_REMAP_COEFF,
201 GAMUT_REMAP_COMA_COEFF,
202 GAMUT_REMAP_COMB_COEFF
203};
204
205enum opp_regamma {
206 OPP_REGAMMA_BYPASS = 0,
207 OPP_REGAMMA_SRGB,
208 OPP_REGAMMA_XVYCC,
209 OPP_REGAMMA_USER
210};
211
212enum optc_dsc_mode {
213 OPTC_DSC_DISABLED = 0,
214 OPTC_DSC_ENABLED_444 = 1, /* 'RGB 444' or 'Simple YCbCr 4:2:2' (4:2:2 upsampled to 4:4:4) */
215 OPTC_DSC_ENABLED_NATIVE_SUBSAMPLED = 2 /* Native 4:2:2 or 4:2:0 */
216};
217
218struct dc_bias_and_scale {
219 uint16_t scale_red;
220 uint16_t bias_red;
221 uint16_t scale_green;
222 uint16_t bias_green;
223 uint16_t scale_blue;
224 uint16_t bias_blue;
225};
226
227enum test_pattern_dyn_range {
228 TEST_PATTERN_DYN_RANGE_VESA = 0,
229 TEST_PATTERN_DYN_RANGE_CEA
230};
231
232enum test_pattern_mode {
233 TEST_PATTERN_MODE_COLORSQUARES_RGB = 0,
234 TEST_PATTERN_MODE_COLORSQUARES_YCBCR601,
235 TEST_PATTERN_MODE_COLORSQUARES_YCBCR709,
236 TEST_PATTERN_MODE_VERTICALBARS,
237 TEST_PATTERN_MODE_HORIZONTALBARS,
238 TEST_PATTERN_MODE_SINGLERAMP_RGB,
239 TEST_PATTERN_MODE_DUALRAMP_RGB,
240 TEST_PATTERN_MODE_XR_BIAS_RGB
241};
242
243enum test_pattern_color_format {
244 TEST_PATTERN_COLOR_FORMAT_BPC_6 = 0,
245 TEST_PATTERN_COLOR_FORMAT_BPC_8,
246 TEST_PATTERN_COLOR_FORMAT_BPC_10,
247 TEST_PATTERN_COLOR_FORMAT_BPC_12
248};
249
250enum controller_dp_test_pattern {
251 CONTROLLER_DP_TEST_PATTERN_D102 = 0,
252 CONTROLLER_DP_TEST_PATTERN_SYMBOLERROR,
253 CONTROLLER_DP_TEST_PATTERN_PRBS7,
254 CONTROLLER_DP_TEST_PATTERN_COLORSQUARES,
255 CONTROLLER_DP_TEST_PATTERN_VERTICALBARS,
256 CONTROLLER_DP_TEST_PATTERN_HORIZONTALBARS,
257 CONTROLLER_DP_TEST_PATTERN_COLORRAMP,
258 CONTROLLER_DP_TEST_PATTERN_VIDEOMODE,
259 CONTROLLER_DP_TEST_PATTERN_RESERVED_8,
260 CONTROLLER_DP_TEST_PATTERN_RESERVED_9,
261 CONTROLLER_DP_TEST_PATTERN_RESERVED_A,
262 CONTROLLER_DP_TEST_PATTERN_COLORSQUARES_CEA,
263 CONTROLLER_DP_TEST_PATTERN_SOLID_COLOR
264};
265
266enum controller_dp_color_space {
267 CONTROLLER_DP_COLOR_SPACE_RGB,
268 CONTROLLER_DP_COLOR_SPACE_YCBCR601,
269 CONTROLLER_DP_COLOR_SPACE_YCBCR709,
270 CONTROLLER_DP_COLOR_SPACE_UDEFINED
271};
272
273enum dc_lut_mode {
274 LUT_BYPASS,
275 LUT_RAM_A,
276 LUT_RAM_B
277};
278
279/**
280 * speakersToChannels
281 *
282 * @brief
283 * translate speakers to channels
284 *
285 * FL - Front Left
286 * FR - Front Right
287 * RL - Rear Left
288 * RR - Rear Right
289 * RC - Rear Center
290 * FC - Front Center
291 * FLC - Front Left Center
292 * FRC - Front Right Center
293 * RLC - Rear Left Center
294 * RRC - Rear Right Center
295 * LFE - Low Freq Effect
296 *
297 * FC
298 * FLC FRC
299 * FL FR
300 *
301 * LFE
302 * ()
303 *
304 *
305 * RL RR
306 * RLC RRC
307 * RC
308 *
309 * ch 8 7 6 5 4 3 2 1
310 * 0b00000011 - - - - - - FR FL
311 * 0b00000111 - - - - - LFE FR FL
312 * 0b00001011 - - - - FC - FR FL
313 * 0b00001111 - - - - FC LFE FR FL
314 * 0b00010011 - - - RC - - FR FL
315 * 0b00010111 - - - RC - LFE FR FL
316 * 0b00011011 - - - RC FC - FR FL
317 * 0b00011111 - - - RC FC LFE FR FL
318 * 0b00110011 - - RR RL - - FR FL
319 * 0b00110111 - - RR RL - LFE FR FL
320 * 0b00111011 - - RR RL FC - FR FL
321 * 0b00111111 - - RR RL FC LFE FR FL
322 * 0b01110011 - RC RR RL - - FR FL
323 * 0b01110111 - RC RR RL - LFE FR FL
324 * 0b01111011 - RC RR RL FC - FR FL
325 * 0b01111111 - RC RR RL FC LFE FR FL
326 * 0b11110011 RRC RLC RR RL - - FR FL
327 * 0b11110111 RRC RLC RR RL - LFE FR FL
328 * 0b11111011 RRC RLC RR RL FC - FR FL
329 * 0b11111111 RRC RLC RR RL FC LFE FR FL
330 * 0b11000011 FRC FLC - - - - FR FL
331 * 0b11000111 FRC FLC - - - LFE FR FL
332 * 0b11001011 FRC FLC - - FC - FR FL
333 * 0b11001111 FRC FLC - - FC LFE FR FL
334 * 0b11010011 FRC FLC - RC - - FR FL
335 * 0b11010111 FRC FLC - RC - LFE FR FL
336 * 0b11011011 FRC FLC - RC FC - FR FL
337 * 0b11011111 FRC FLC - RC FC LFE FR FL
338 * 0b11110011 FRC FLC RR RL - - FR FL
339 * 0b11110111 FRC FLC RR RL - LFE FR FL
340 * 0b11111011 FRC FLC RR RL FC - FR FL
341 * 0b11111111 FRC FLC RR RL FC LFE FR FL
342 *
343 * @param
344 * speakers - speaker information as it comes from CEA audio block
345 */
346/* translate speakers to channels */
347
348union audio_cea_channels {
349 uint8_t all;
350 struct audio_cea_channels_bits {
351 uint32_t FL:1;
352 uint32_t FR:1;
353 uint32_t LFE:1;
354 uint32_t FC:1;
355 uint32_t RL_RC:1;
356 uint32_t RR:1;
357 uint32_t RC_RLC_FLC:1;
358 uint32_t RRC_FRC:1;
359 } channels;
360};
361
362#endif /* __DAL_HW_SHARED_H__ */
1/*
2 * Copyright 2015 Advanced Micro Devices, Inc.
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 * OTHER DEALINGS IN THE SOFTWARE.
21 *
22 * Authors: AMD
23 *
24 */
25
26#ifndef __DAL_HW_SHARED_H__
27#define __DAL_HW_SHARED_H__
28
29#include "os_types.h"
30#include "fixed31_32.h"
31#include "dc_hw_types.h"
32
33/******************************************************************************
34 * Data types shared between different Virtual HW blocks
35 ******************************************************************************/
36
37#define MAX_AUDIOS 7
38#define MAX_PIPES 6
39#define MAX_DIG_LINK_ENCODERS 7
40#define MAX_DWB_PIPES 1
41
42struct gamma_curve {
43 uint32_t offset;
44 uint32_t segments_num;
45};
46
47struct curve_points {
48 struct fixed31_32 x;
49 struct fixed31_32 y;
50 struct fixed31_32 offset;
51 struct fixed31_32 slope;
52
53 uint32_t custom_float_x;
54 uint32_t custom_float_y;
55 uint32_t custom_float_offset;
56 uint32_t custom_float_slope;
57};
58
59struct curve_points3 {
60 struct curve_points red;
61 struct curve_points green;
62 struct curve_points blue;
63};
64
65struct pwl_result_data {
66 struct fixed31_32 red;
67 struct fixed31_32 green;
68 struct fixed31_32 blue;
69
70 struct fixed31_32 delta_red;
71 struct fixed31_32 delta_green;
72 struct fixed31_32 delta_blue;
73
74 uint32_t red_reg;
75 uint32_t green_reg;
76 uint32_t blue_reg;
77
78 uint32_t delta_red_reg;
79 uint32_t delta_green_reg;
80 uint32_t delta_blue_reg;
81};
82
83struct dc_rgb {
84 uint32_t red;
85 uint32_t green;
86 uint32_t blue;
87};
88
89struct tetrahedral_17x17x17 {
90 struct dc_rgb lut0[1229];
91 struct dc_rgb lut1[1228];
92 struct dc_rgb lut2[1228];
93 struct dc_rgb lut3[1228];
94};
95struct tetrahedral_9x9x9 {
96 struct dc_rgb lut0[183];
97 struct dc_rgb lut1[182];
98 struct dc_rgb lut2[182];
99 struct dc_rgb lut3[182];
100};
101
102struct tetrahedral_params {
103 union {
104 struct tetrahedral_17x17x17 tetrahedral_17;
105 struct tetrahedral_9x9x9 tetrahedral_9;
106 };
107 bool use_tetrahedral_9;
108 bool use_12bits;
109
110};
111
112/* arr_curve_points - regamma regions/segments specification
113 * arr_points - beginning and end point specified separately (only one on DCE)
114 * corner_points - beginning and end point for all 3 colors (DCN)
115 * rgb_resulted - final curve
116 */
117struct pwl_params {
118 struct gamma_curve arr_curve_points[34];
119 union {
120 struct curve_points arr_points[2];
121 struct curve_points3 corner_points[2];
122 };
123 struct pwl_result_data rgb_resulted[256 + 3];
124 uint32_t hw_points_num;
125};
126
127/* move to dpp
128 * while we are moving functionality out of opp to dpp to align
129 * HW programming to HW IP, we define these struct in hw_shared
130 * so we can still compile while refactoring
131 */
132
133enum lb_pixel_depth {
134 /* do not change the values because it is used as bit vector */
135 LB_PIXEL_DEPTH_18BPP = 1,
136 LB_PIXEL_DEPTH_24BPP = 2,
137 LB_PIXEL_DEPTH_30BPP = 4,
138 LB_PIXEL_DEPTH_36BPP = 8
139};
140
141enum graphics_csc_adjust_type {
142 GRAPHICS_CSC_ADJUST_TYPE_BYPASS = 0,
143 GRAPHICS_CSC_ADJUST_TYPE_HW, /* without adjustments */
144 GRAPHICS_CSC_ADJUST_TYPE_SW /*use adjustments */
145};
146
147enum ipp_degamma_mode {
148 IPP_DEGAMMA_MODE_BYPASS,
149 IPP_DEGAMMA_MODE_HW_sRGB,
150 IPP_DEGAMMA_MODE_HW_xvYCC,
151 IPP_DEGAMMA_MODE_USER_PWL
152};
153
154enum gamcor_mode {
155 GAMCOR_MODE_BYPASS,
156 GAMCOR_MODE_RESERVED_1,
157 GAMCOR_MODE_USER_PWL,
158 GAMCOR_MODE_RESERVED_3
159};
160
161enum ipp_output_format {
162 IPP_OUTPUT_FORMAT_12_BIT_FIX,
163 IPP_OUTPUT_FORMAT_16_BIT_BYPASS,
164 IPP_OUTPUT_FORMAT_FLOAT
165};
166
167enum expansion_mode {
168 EXPANSION_MODE_DYNAMIC,
169 EXPANSION_MODE_ZERO
170};
171
172struct default_adjustment {
173 enum lb_pixel_depth lb_color_depth;
174 enum dc_color_space out_color_space;
175 enum dc_color_space in_color_space;
176 enum dc_color_depth color_depth;
177 enum pixel_format surface_pixel_format;
178 enum graphics_csc_adjust_type csc_adjust_type;
179 bool force_hw_default;
180};
181
182
183struct out_csc_color_matrix {
184 enum dc_color_space color_space;
185 uint16_t regval[12];
186};
187
188enum gamut_remap_select {
189 GAMUT_REMAP_BYPASS = 0,
190 GAMUT_REMAP_COEFF,
191 GAMUT_REMAP_COMA_COEFF,
192 GAMUT_REMAP_COMB_COEFF
193};
194
195enum opp_regamma {
196 OPP_REGAMMA_BYPASS = 0,
197 OPP_REGAMMA_SRGB,
198 OPP_REGAMMA_XVYCC,
199 OPP_REGAMMA_USER
200};
201
202enum optc_dsc_mode {
203 OPTC_DSC_DISABLED = 0,
204 OPTC_DSC_ENABLED_444 = 1, /* 'RGB 444' or 'Simple YCbCr 4:2:2' (4:2:2 upsampled to 4:4:4) */
205 OPTC_DSC_ENABLED_NATIVE_SUBSAMPLED = 2 /* Native 4:2:2 or 4:2:0 */
206};
207
208struct dc_bias_and_scale {
209 uint16_t scale_red;
210 uint16_t bias_red;
211 uint16_t scale_green;
212 uint16_t bias_green;
213 uint16_t scale_blue;
214 uint16_t bias_blue;
215};
216
217enum test_pattern_dyn_range {
218 TEST_PATTERN_DYN_RANGE_VESA = 0,
219 TEST_PATTERN_DYN_RANGE_CEA
220};
221
222enum test_pattern_mode {
223 TEST_PATTERN_MODE_COLORSQUARES_RGB = 0,
224 TEST_PATTERN_MODE_COLORSQUARES_YCBCR601,
225 TEST_PATTERN_MODE_COLORSQUARES_YCBCR709,
226 TEST_PATTERN_MODE_VERTICALBARS,
227 TEST_PATTERN_MODE_HORIZONTALBARS,
228 TEST_PATTERN_MODE_SINGLERAMP_RGB,
229 TEST_PATTERN_MODE_DUALRAMP_RGB,
230 TEST_PATTERN_MODE_XR_BIAS_RGB
231};
232
233enum test_pattern_color_format {
234 TEST_PATTERN_COLOR_FORMAT_BPC_6 = 0,
235 TEST_PATTERN_COLOR_FORMAT_BPC_8,
236 TEST_PATTERN_COLOR_FORMAT_BPC_10,
237 TEST_PATTERN_COLOR_FORMAT_BPC_12
238};
239
240enum controller_dp_test_pattern {
241 CONTROLLER_DP_TEST_PATTERN_D102 = 0,
242 CONTROLLER_DP_TEST_PATTERN_SYMBOLERROR,
243 CONTROLLER_DP_TEST_PATTERN_PRBS7,
244 CONTROLLER_DP_TEST_PATTERN_COLORSQUARES,
245 CONTROLLER_DP_TEST_PATTERN_VERTICALBARS,
246 CONTROLLER_DP_TEST_PATTERN_HORIZONTALBARS,
247 CONTROLLER_DP_TEST_PATTERN_COLORRAMP,
248 CONTROLLER_DP_TEST_PATTERN_VIDEOMODE,
249 CONTROLLER_DP_TEST_PATTERN_RESERVED_8,
250 CONTROLLER_DP_TEST_PATTERN_RESERVED_9,
251 CONTROLLER_DP_TEST_PATTERN_RESERVED_A,
252 CONTROLLER_DP_TEST_PATTERN_COLORSQUARES_CEA,
253 CONTROLLER_DP_TEST_PATTERN_SOLID_COLOR
254};
255
256enum controller_dp_color_space {
257 CONTROLLER_DP_COLOR_SPACE_RGB,
258 CONTROLLER_DP_COLOR_SPACE_YCBCR601,
259 CONTROLLER_DP_COLOR_SPACE_YCBCR709,
260 CONTROLLER_DP_COLOR_SPACE_UDEFINED
261};
262
263enum dc_lut_mode {
264 LUT_BYPASS,
265 LUT_RAM_A,
266 LUT_RAM_B
267};
268
269/**
270 * speakersToChannels
271 *
272 * @brief
273 * translate speakers to channels
274 *
275 * FL - Front Left
276 * FR - Front Right
277 * RL - Rear Left
278 * RR - Rear Right
279 * RC - Rear Center
280 * FC - Front Center
281 * FLC - Front Left Center
282 * FRC - Front Right Center
283 * RLC - Rear Left Center
284 * RRC - Rear Right Center
285 * LFE - Low Freq Effect
286 *
287 * FC
288 * FLC FRC
289 * FL FR
290 *
291 * LFE
292 * ()
293 *
294 *
295 * RL RR
296 * RLC RRC
297 * RC
298 *
299 * ch 8 7 6 5 4 3 2 1
300 * 0b00000011 - - - - - - FR FL
301 * 0b00000111 - - - - - LFE FR FL
302 * 0b00001011 - - - - FC - FR FL
303 * 0b00001111 - - - - FC LFE FR FL
304 * 0b00010011 - - - RC - - FR FL
305 * 0b00010111 - - - RC - LFE FR FL
306 * 0b00011011 - - - RC FC - FR FL
307 * 0b00011111 - - - RC FC LFE FR FL
308 * 0b00110011 - - RR RL - - FR FL
309 * 0b00110111 - - RR RL - LFE FR FL
310 * 0b00111011 - - RR RL FC - FR FL
311 * 0b00111111 - - RR RL FC LFE FR FL
312 * 0b01110011 - RC RR RL - - FR FL
313 * 0b01110111 - RC RR RL - LFE FR FL
314 * 0b01111011 - RC RR RL FC - FR FL
315 * 0b01111111 - RC RR RL FC LFE FR FL
316 * 0b11110011 RRC RLC RR RL - - FR FL
317 * 0b11110111 RRC RLC RR RL - LFE FR FL
318 * 0b11111011 RRC RLC RR RL FC - FR FL
319 * 0b11111111 RRC RLC RR RL FC LFE FR FL
320 * 0b11000011 FRC FLC - - - - FR FL
321 * 0b11000111 FRC FLC - - - LFE FR FL
322 * 0b11001011 FRC FLC - - FC - FR FL
323 * 0b11001111 FRC FLC - - FC LFE FR FL
324 * 0b11010011 FRC FLC - RC - - FR FL
325 * 0b11010111 FRC FLC - RC - LFE FR FL
326 * 0b11011011 FRC FLC - RC FC - FR FL
327 * 0b11011111 FRC FLC - RC FC LFE FR FL
328 * 0b11110011 FRC FLC RR RL - - FR FL
329 * 0b11110111 FRC FLC RR RL - LFE FR FL
330 * 0b11111011 FRC FLC RR RL FC - FR FL
331 * 0b11111111 FRC FLC RR RL FC LFE FR FL
332 *
333 * @param
334 * speakers - speaker information as it comes from CEA audio block
335 */
336/* translate speakers to channels */
337
338union audio_cea_channels {
339 uint8_t all;
340 struct audio_cea_channels_bits {
341 uint32_t FL:1;
342 uint32_t FR:1;
343 uint32_t LFE:1;
344 uint32_t FC:1;
345 uint32_t RL_RC:1;
346 uint32_t RR:1;
347 uint32_t RC_RLC_FLC:1;
348 uint32_t RRC_FRC:1;
349 } channels;
350};
351
352#endif /* __DAL_HW_SHARED_H__ */