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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
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
229
230
231
232
233
234
235
236
237
238
|
/*
SiI8348 Linux Driver
Copyright (C) 2013 Silicon Image, Inc.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
published by the Free Software Foundation version 2.
This program is distributed AS-IS WITHOUT ANY WARRANTY of any
kind, whether express or implied; INCLUDING without the implied warranty
of MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE or NON-INFRINGEMENT. See
the GNU General Public License for more details at http://www.gnu.org/licenses/gpl-2.0.html.
*/
#if !defined(SI_INFOFRAME_H)
#define SI_INFOFRAME_H
#include "sii_hal.h"
typedef struct __attribute__((__packed__)) _info_frame_header_t {
uint8_t type_code;
uint8_t version_number;
uint8_t length;
} info_frame_header_t;
typedef enum
{
acsRGB = 0
,acsYCbCr422 = 1
,acsYCbCr444 = 2
,acsFuture = 3
}AviColorSpace_e;
/*
* AVI Info Frame Structure
*/
typedef struct __attribute__((__packed__)) _avi_info_frame_data_byte_1_t {
uint8_t ScanInfo:2;
uint8_t BarInfo:2;
uint8_t ActiveFormatInfoPresent:1;
AviColorSpace_e colorSpace:2;
uint8_t futureMustBeZero:1;
} avi_info_frame_data_byte_1_t;
typedef struct __attribute__((__packed__)) _avi_info_frame_data_byte_2_t {
uint8_t ActiveFormatAspectRatio:4;
uint8_t PictureAspectRatio:2;
uint8_t Colorimetry:2;
} avi_info_frame_data_byte_2_t;
typedef struct __attribute__((__packed__)) _avi_info_frame_data_byte_3_t {
uint8_t NonUniformPictureScaling:2;
uint8_t RGBQuantizationRange:2;
uint8_t ExtendedColorimetry:3;
uint8_t ITContent:1;
} avi_info_frame_data_byte_3_t;
typedef struct __attribute__((__packed__)) _avi_info_frame_data_byte_4_t {
uint8_t VIC:7;
uint8_t futureMustBeZero:1;
} avi_info_frame_data_byte_4_t;
typedef enum
{
cnGraphics = 0
,cnPhoto = 1
,cnCinema = 2
,cnGame = 3
}BitsContent_e;
typedef enum
{
aqLimitedRange = 0
,aqFullRange = 1
,aqReserved0 = 2
,aqReserved1 = 3
}AviQuantization_e;
typedef struct __attribute__((__packed__)) _avi_info_frame_data_byte_5_t {
uint8_t pixelRepetionFactor:4;
BitsContent_e content :2;
AviQuantization_e quantization :2;
} avi_info_frame_data_byte_5_t;
typedef struct __attribute__((__packed__)) _hw_avi_named_payload_t {
uint8_t checksum;
union {
struct __attribute__((__packed__)) {
avi_info_frame_data_byte_1_t pb1;
avi_info_frame_data_byte_2_t colorimetryAspectRatio;
avi_info_frame_data_byte_3_t pb3;
avi_info_frame_data_byte_4_t VIC;
avi_info_frame_data_byte_5_t pb5;
uint8_t LineNumEndTopBarLow;
uint8_t LineNumEndTopBarHigh;
uint8_t LineNumStartBottomBarLow;
uint8_t LineNumStartBottomBarHigh;
uint8_t LineNumEndLeftBarLow;
uint8_t LineNumEndLeftBarHigh;
uint8_t LineNumStartRightBarLow;
uint8_t LineNumStartRightBarHigh;
} bitFields;
uint8_t infoFrameData[13];
} ifData_u;
} hw_avi_named_payload_t;
// this union overlays the TPI HW for AVI InfoFrames, starting at REG_TPI_AVI_CHSUM.
typedef union _hw_avi_payload_t {
hw_avi_named_payload_t namedIfData;
uint8_t ifData[14];
} hw_avi_payload_t;
typedef struct __attribute__((__packed__)) _avi_payload_t {
hw_avi_payload_t hwPayLoad;
uint8_t byte_14;
uint8_t byte_15;
} avi_payload_t;
typedef struct __attribute__((__packed__)) _avi_info_frame_t {
info_frame_header_t header;
avi_payload_t payLoad;
} avi_info_frame_t;
// these values determine the interpretation of PB5
typedef enum
{
hvfNoAdditionalHDMIVideoFormatPresent =0
,hvfExtendedResolutionFormatPresent =1
,hvf3DFormatIndicationPresent =2
}HDMI_Video_Format_e;
typedef enum {
tdsFramePacking = 0x00
,tdsTopAndBottom = 0x06
,tdsSideBySide = 0x08
} _3D_structure_e;
typedef enum
{
tdedHorizontalSubSampling = 0x0
,tdedQuincunxOddLeftOddRight = 0x4
,tdedQuincunxOddLeftEvenRight = 0x5
,tdedQuincunxEvenLeftOddRight = 0x6
,tdedQuincunxEvenLeftEvenRight= 0x7
}ThreeDExtData_e;
typedef enum
{
tdmdParallaxIso23022_3Section6_x_2_2 = 0
}ThreeDMetaDataType_e;
typedef struct __attribute__((__packed__)) _vendor_specific_payload_t {
uint8_t checksum;
uint8_t IEEERegistrationIdentifier[3]; // must be 0x000C03 Little Endian
struct __attribute__((__packed__)){
unsigned reserved:5;
HDMI_Video_Format_e HDMI_Video_Format:3; //HDMI_Video_Format_e
} pb4;
union {
uint8_t HDMI_VIC;
struct __attribute__((__packed__)) _ThreeDStructure {
unsigned reserved:3;
unsigned ThreeDMetaPresent:1;
_3D_structure_e threeDStructure:4; //_3D_structure_e
} ThreeDStructure;
} pb5;
struct __attribute__((__packed__)) {
uint8_t reserved:4;
uint8_t threeDExtData:4; //ThreeDExtData_e
} pb6;
struct __attribute__((__packed__)) _PB7 {
uint8_t threeDMetaDataLength:5;
uint8_t threeDMetaDataType:3; //ThreeDMetaDataType_e
} pb7;
} vendor_specific_payload_t;
typedef struct __attribute__((__packed__)) _vendor_specific_info_frame_t {
info_frame_header_t header;
vendor_specific_payload_t payLoad;
} vendor_specific_info_frame_t;
/*
* MPEG Info Frame Structure
* Table 8-11 on page 141 of HDMI Spec v1.4
*/
typedef struct __attribute__((__packed__)) {
info_frame_header_t header;
uint8_t checksum;
uint8_t byte_1;
uint8_t byte_2;
uint8_t byte_3;
uint8_t byte_4;
uint8_t byte_5;
uint8_t byte_6;
} unr_info_frame_t;
typedef struct __attribute__((__packed__)) _info_frame_t {
union {
info_frame_header_t header;
avi_info_frame_t avi;
vendor_specific_info_frame_t vendorSpecific;
unr_info_frame_t unr;
} body;
} info_frame_t;
typedef enum
{
// just define these three for now
InfoFrameType_AVI
,InfoFrameType_VendorSpecific
,InfoFrameType_Audio
}InfoFrameType_e;
#define ENABLE_DUMP_INFOFRAME
#ifdef ENABLE_DUMP_INFOFRAME //(
void DumpIncomingInfoFrameImpl(char *pszId,char *pszFile,int iLine,info_frame_t *pInfoFrame,uint8_t length);
#define DumpIncomingInfoFrame(pData,length) DumpIncomingInfoFrameImpl(#pData,__FILE__,__LINE__,(info_frame_t *)pData,length)
#else //)(
#define DumpIncomingInfoFrame(pData,length) /* do nothing */
#endif //)
#ifdef ENABLE_COLOR_SPACE_DEBUG_PRINT //(
#define COLOR_SPACE_DEBUG_PRINT_WRAPPER(...) SiiOsDebugPrint(__FILE__,__LINE__,SII_OSAL_DEBUG_TX,__VA_ARGS__)
#define COLOR_SPACE_DEBUG_PRINT(x) COLOR_SPACE_DEBUG_PRINT_WRAPPER x
#else //)(
#define COLOR_SPACE_DEBUG_PRINT(...) /* nothing */
#endif //)
#endif /* if !defined(SI_INFOFRAME_H) */
|