-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathPlatformImplementation.cpp
More file actions
426 lines (357 loc) · 12.3 KB
/
PlatformImplementation.cpp
File metadata and controls
426 lines (357 loc) · 12.3 KB
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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
/*
* If not stated otherwise in this file or this component's LICENSE file the
* following copyright and licenses apply:
*
* Copyright 2020 RDK Management
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "../Module.h"
#include "../ExtendedDisplayIdentification.h"
#include <interfaces/IDisplayInfo.h>
#include <interfaces/IConfiguration.h>
#include <bcm_host.h>
#include <fstream>
namespace Thunder {
namespace Plugin {
class DisplayInfoImplementation : public Exchange::IHDRProperties,
public Exchange::IGraphicsProperties,
public Exchange::IConnectionProperties,
public Exchange::IDisplayProperties,
public Exchange::IConfiguration {
public:
DisplayInfoImplementation(const DisplayInfoImplementation&) = delete;
DisplayInfoImplementation& operator= (const DisplayInfoImplementation&) = delete;
DisplayInfoImplementation()
: _width(0)
, _height(0)
, _connected(false)
, _totalGpuRam(0)
, _audioPassthrough(false)
, _EDID()
, _value(HDCP_Unencrypted)
, _observers()
, _adminLock()
, _activity(*this) {
bcm_host_init();
UpdateTotalGpuRam(_totalGpuRam);
Dispatch();
vc_tv_register_callback(&DisplayCallback, reinterpret_cast<void*>(this));
}
~DisplayInfoImplementation() override
{
bcm_host_deinit();
}
uint32_t Configure(PluginHost::IShell* framework) override
{
Config config;
config.FromString(framework->ConfigLine());
_value = config.hdcpLevel.Value();
return Core::ERROR_NONE;
}
public:
// Graphics Properties interface
uint32_t TotalGpuRam(uint64_t& total) const override
{
total = _totalGpuRam;
return (Core::ERROR_NONE);
}
uint32_t FreeGpuRam(uint64_t& free) const override
{
uint64_t result;
Command("get_mem reloc ", result);
free = (result);
return (Core::ERROR_NONE);
}
// Connection Properties interface
uint32_t Register(INotification* notification) override
{
ASSERT(notification != nullptr);
_adminLock.Lock();
std::list<IConnectionProperties::INotification*>::iterator index(std::find(_observers.begin(), _observers.end(), notification));
// Make sure a sink is not registered multiple times.
ASSERT(index == _observers.end());
if (index == _observers.end()) {
_observers.push_back(notification);
notification->AddRef();
}
_adminLock.Unlock();
return (Core::ERROR_NONE);
}
uint32_t Unregister(const INotification* notification) override
{
ASSERT(notification != nullptr);
_adminLock.Lock();
std::list<IConnectionProperties::INotification*>::iterator index(std::find(_observers.begin(), _observers.end(), notification));
// Make sure you do not unregister something you did not register !!!
ASSERT(index != _observers.end());
if (index != _observers.end()) {
(*index)->Release();
_observers.erase(index);
}
_adminLock.Unlock();
return (Core::ERROR_NONE);
}
uint32_t IsAudioPassthrough (bool& passthru) const override
{
passthru = _audioPassthrough;
return (Core::ERROR_NONE);
}
uint32_t Connected(bool& isconnected) const override
{
isconnected = _connected;
return (Core::ERROR_NONE);
}
uint32_t Width(uint32_t& width) const override
{
width = _width;
return (Core::ERROR_NONE);
}
uint32_t Height(uint32_t& height) const override
{
height = _height;
return (Core::ERROR_NONE);
}
uint32_t VerticalFreq(uint32_t& vf) const override
{
vf = ~0;
return (Core::ERROR_NONE);
}
uint32_t HDCPProtection(HDCPProtectionType& value) const override
{
value = _value;
return (Core::ERROR_NONE);
}
uint32_t HDCPProtection(const HDCPProtectionType value) override
{
_value = value;
return (Core::ERROR_NONE);
}
uint32_t EDID (uint16_t& length, uint8_t data[]) const override
{
length = _EDID.Raw(length, data);
return (Core::ERROR_NONE);
}
uint32_t WidthInCentimeters(uint8_t& width) const override
{
width = _EDID.WidthInCentimeters();
return width ? (Core::ERROR_NONE) : Core::ERROR_UNAVAILABLE;
}
uint32_t HeightInCentimeters(uint8_t& height) const override
{
height = _EDID.HeightInCentimeters();
return height ? (Core::ERROR_NONE) : Core::ERROR_UNAVAILABLE;
}
uint32_t PortName(string&) const override
{
return (Core::ERROR_UNAVAILABLE);
}
uint32_t TVCapabilities(IHDRIterator*&) const override
{
return (Core::ERROR_UNAVAILABLE);
}
uint32_t STBCapabilities(IHDRIterator*&) const override
{
return (Core::ERROR_UNAVAILABLE);
}
uint32_t HDRSetting(HDRType& type) const override
{
type = HDR_OFF;
return (Core::ERROR_NONE);
}
void Dispatch()
{
TV_DISPLAY_STATE_T tvState;
if (vc_tv_get_display_state(&tvState) == 0) {
if (tvState.display.hdmi.width && tvState.display.hdmi.height) {
_width = tvState.display.hdmi.width;
_height = tvState.display.hdmi.height;
}
if ((tvState.state & VC_HDMI_ATTACHED) || ((tvState.state & VC_SDTV_ATTACHED) && ((tvState.state & VC_SDTV_NTSC) || (tvState.state & VC_SDTV_PAL)))) {
_connected = true;
} else {
_connected = false;
}
if (tvState.state & VC_HDMI_HDMI) {
_audioPassthrough = true;
} else {
_audioPassthrough = false;
}
}
TRACE(Trace::Information, (_T("Display event; resolution: %dx%d; state: %s; audio: %s passthrough"),
_width, _height,
(_connected) ? "connected" : "disconnected",
(_audioPassthrough) ? "is" : "is not" )
);
_adminLock.Lock();
if (_connected == true) {
RetrieveEDID(_EDID, -1);
}
else {
_EDID.Clear();
}
for (auto const& index : _observers) {
index->Updated(Exchange::IConnectionProperties::INotification::Source::HDMI_CHANGE);
}
_adminLock.Unlock();
}
uint32_t ColorSpace(ColourSpaceType&) const override
{
return (Core::ERROR_UNAVAILABLE);
}
uint32_t FrameRate(FrameRateType&) const override
{
return (Core::ERROR_UNAVAILABLE);
}
uint32_t ColourDepth(ColourDepthType&) const override
{
return (Core::ERROR_UNAVAILABLE);
}
uint32_t Colorimetry(IColorimetryIterator*&) const override
{
return (Core::ERROR_UNAVAILABLE);
}
uint32_t QuantizationRange(QuantizationRangeType&) const override
{
return (Core::ERROR_UNAVAILABLE);
}
uint32_t EOTF(EotfType&) const override
{
return (Core::ERROR_UNAVAILABLE);
}
BEGIN_INTERFACE_MAP(DisplayInfoImplementation)
INTERFACE_ENTRY(Exchange::IHDRProperties)
INTERFACE_ENTRY(Exchange::IGraphicsProperties)
INTERFACE_ENTRY(Exchange::IConnectionProperties)
INTERFACE_ENTRY(Exchange::IDisplayProperties)
INTERFACE_ENTRY(Exchange::IConfiguration)
END_INTERFACE_MAP
private:
class Config : public Core::JSON::Container {
public:
Config(const Config&) = delete;
Config& operator=(const Config&) = delete;
Config()
: Core::JSON::Container()
, hdcpLevel(Exchange::IConnectionProperties::HDCPProtectionType::HDCP_Unencrypted)
{
Add(_T("hdcplevel"), &hdcpLevel);
}
Core::JSON::EnumType<Exchange::IConnectionProperties::HDCPProtectionType> hdcpLevel;
};
inline void UpdateTotalGpuRam(uint64_t& totalRam) const
{
Command("get_mem reloc_total ", totalRam);
}
void Command(const char request[], string& value) const
{
char buffer[512];
// Reset the string
buffer[0] = '\0';
// Most VC API calls are guarded but we want to be sure anyway
_adminLock.Lock();
int VARIABLE_IS_NOT_USED status = vc_gencmd(buffer, sizeof(buffer), &request[0]);
assert((status == 0) && "Error: vc_gencmd failed.\n");
_adminLock.Unlock();
// Make sure it is null-terminated
buffer[sizeof(buffer) - 1] = '\0';
// We do not need the stuff that is before the '=', we know what we requested :-)
char* equal = strchr(buffer, '=');
if (equal != nullptr) {
equal++;
}
else {
equal = buffer;
}
// Create string from buffer.
Core::ToString(equal, value);
}
template<typename VALUE>
void Command(const char request[], VALUE& result) const
{
string response;
Command(request, response);
const char* start = response.c_str();
const char* index = start;
// move the index to the unit inidicatuion type
while (::isdigit(*index) || (*index == ' ') || (*index == '.') || (*index == ',')) {
index++;
}
result = Thunder::Core::NumberType<VALUE>(Thunder::Core::TextFragment(start, (index - start))).Value();
// Convert into bytes, if necessary.
if ( (*index == 'M') && (index[1] == '\0') ) {
// Multiply with MB
result *= (1024 * 1024);
}
else if ( (*index == 'K') && (index[1] == '\0') ) {
// Multiply with KB
result *= 1024;
}
}
static void DisplayCallback(void *cbData, uint32_t reason, uint32_t, uint32_t)
{
DisplayInfoImplementation* platform = static_cast<DisplayInfoImplementation*>(cbData);
ASSERT(platform != nullptr);
if (platform != nullptr) {
switch (reason) {
case VC_HDMI_UNPLUGGED:
case VC_SDTV_UNPLUGGED:
case VC_HDMI_ATTACHED:
case VC_SDTV_ATTACHED:
case VC_HDMI_DVI:
case VC_HDMI_HDMI:
case VC_HDMI_HDCP_UNAUTH:
case VC_HDMI_HDCP_AUTH:
case VC_HDMI_HDCP_KEY_DOWNLOAD:
case VC_HDMI_HDCP_SRM_DOWNLOAD:
platform->_activity.Submit();
break;
default: {
// Ignore all other reasons
break;
}
}
}
}
void RetrieveEDID(ExtendedDisplayIdentification& info, int displayId = -1) {
int size;
uint8_t index = 0;
do {
if (displayId != -1) {
#ifdef RPI4 // or higer
size = vc_tv_hdmi_ddc_read_id(displayId, index * info.Length(), info.Length(), info.Segment(index));
#endif
}
else {
uint8_t* buffer = info.Segment(index);
size = vc_tv_hdmi_ddc_read(index * info.Length(), info.Length(), buffer);
}
index++;
} while ( (index < info.Segments()) && (size == info.Length()) );
TRACE(Trace::Information, (_T("EDID, Read %d segments [%d]"), index, size));
}
private:
uint32_t _width;
uint32_t _height;
bool _connected;
uint64_t _totalGpuRam;
bool _audioPassthrough;
ExtendedDisplayIdentification _EDID;
HDCPProtectionType _value;
std::list<IConnectionProperties::INotification*> _observers;
mutable Core::CriticalSection _adminLock;
Core::WorkerPool::JobType< DisplayInfoImplementation& > _activity;
};
SERVICE_REGISTRATION(DisplayInfoImplementation, 1, 0)
}
}