forked from rdkcentral/rdk-halif-device_settings
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dsHost.h
190 lines (172 loc) · 5.87 KB
/
dsHost.h
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
/*
* If not stated otherwise in this file or this component's LICENSE file the
* following copyright and licenses apply:
*
* Copyright 2016 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.
*/
/**
* @addtogroup HPK Hardware Porting Kit
* @{
* @par The Hardware Porting Kit
* HPK is the next evolution of the well-defined Hardware Abstraction Layer
* (HAL), but augmented with more comprehensive documentation and test suites
* that OEM or SOC vendors can use to self-certify their ports before taking
* them to RDKM for validation or to an operator for final integration and
* deployment. The Hardware Porting Kit effectively enables an OEM and/or SOC
* vendor to self-certify their own Video Accelerator devices, with minimal RDKM
* assistance.
*
*/
/**
* @defgroup Device_Settings Device Settings Module
* @{
*/
/**
* @defgroup Device_Settings_HAL Device Settings HAL
* @par Application API Specification
* Described herein are the DeviceSettings HAL types and functions that are part of
* the Host subsystem. The Host subsystem manages system-specific HAL operations.
* @{
*/
/**
* @defgroup dsHOST_HAL Device Settings Host HAL
* @{
* @par Application API Specification
* dsHost HAL provides an interface for managing the host settings for the device settings module
*/
/**
* @defgroup DSHAL_HOST_API Device Settings HAL Host Public API
* @{
*/
/**
* Describe the details about Device Settings HAL API specifications.
*
* <b> Following abbreviations present in Device Settings Host HAL APIs </b>
*
* @par Abbreviations
* - cb: Callback function (suffix).
* - DS: Device Settings.
* - HAL: Hardware Abstraction Layer.
* - EDID: Extended Display Information Data.
* - CPU: Central Processing Unit
* - SoC: System on chip
*/
#ifndef __DS_HOST_H__
#define __DS_HOST_H__
#ifdef __cplusplus
extern "C" {
#endif
#include "dsError.h"
#define EDID_DATA_SIZE 256
#define EDID_MAX_DATA_SIZE 512
/**
* @brief Initializes the Host HAL sub-system
*
* This function initializes any needed resources within the module.
*
* @return dsError_t - Status
* @retval dsERR_NONE - Success
* @retval dsERR_ALREADY_INITIALIZED - Function is already initialized
* @retval dsERR_GENERAL - Underlying undefined platform error
*
* @warning This API is Not thread safe.
* @see dsHostTerm()
*
*
*
*/
dsError_t dsHostInit();
/**
* @brief Terminates the Host sub-system
*
* This function has to release all the resources allocated in the initialisation function.
*
* @return dsError_t - Status
* @retval dsERR_NONE - Success
* @retval dsERR_NOT_INITIALIZED - Module is not initialised
* @retval dsERR_GENERAL - General failure
*
* @warning This API is Not thread safe.
*
* @see dsHostInit()
*
*/
dsError_t dsHostTerm();
/**
* @brief Gets the CPU temperature in centigrade
*
* @param[out] cpuTemperature - CPU temperature value returned in centigrade
*
* @return dsError_t - Status
* @retval dsERR_NONE - Success
* @retval dsERR_NOT_INITIALIZED - Module is not initialised
* @retval dsERR_INVALID_PARAM - Parameter passed to this function is invalid
* @retval dsERR_OPERATION_NOT_SUPPORTED - The attempted operation is not supported
* @retval dsERR_GENERAL - Underlying undefined platform error
*
* @pre dsHostInit() must be called before this function
*
* @warning This API is Not thread safe.
*
*/
dsError_t dsGetCPUTemperature(float *cpuTemperature);
/**
* @brief Returns the SOC ID
*
* @param[out] socID - 8 byte Chip ID programmed to the CHIP One Time Programmable area
*
* @return dsError_t - Status
* @retval dsERR_NONE - Success
* @retval dsERR_NOT_INITIALIZED - Module is not initialised
* @retval dsERR_INVALID_PARAM - Parameter passed to this function is invalid
* @retval dsERR_OPERATION_NOT_SUPPORTED - The attempted operation is not supported
* @retval dsERR_GENERAL - Underlying undefined platform error
*
* @pre dsHostInit() must be called before this function
*
* @warning This API is Not thread safe.
*
*/
dsError_t dsGetSocIDFromSDK(char *socID);
/**
* @brief Gets the host EDID and length
*
* The host EDID will be used on devices supporting HDMI input feature.
*
* @param[out] edid - host EDID.
* @param[out] length - length of host EDID. Min value of 0. Max value of 2048
*
* @return dsError_t - Status
* @retval dsERR_NONE - Success
* @retval dsERR_NOT_INITIALIZED - Module is not initialised
* @retval dsERR_INVALID_PARAM - Parameter passed to this function is invalid
* @retval dsERR_OPERATION_NOT_SUPPORTED - The attempted operation is not supported
* @retval dsERR_GENERAL - Underlying undefined platform error
*
* @pre dsHostInit() must be called before this function
*
* @warning This API is Not thread safe.
*
*/
dsError_t dsGetHostEDID(unsigned char *edid, int *length);
/** @} */ // End of DSHAL_HOST_API doxygen group
/** @} */ // End of DS Host HAL
/** @} */ // End of Device Settings HAL
/** @} */ // End of Device Settings Module
/** @} */ // End of HPK
#ifdef __cplusplus
}
#endif
#endif /* __DS_HOST_H__ */