blob: 75aafcee40e3a0a7e5fc8e9be52ed9175d1941e1 [file] [log] [blame]
Wonsik Kim0b78afb2014-03-03 11:33:08 +09001/*
2 * Copyright 2014 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef ANDROID_TV_INPUT_INTERFACE_H
18#define ANDROID_TV_INPUT_INTERFACE_H
19
20#include <stdint.h>
21#include <sys/cdefs.h>
22#include <sys/types.h>
23
24#include <hardware/hardware.h>
Wonsik Kim8b5714f2014-05-23 17:22:04 +090025#include <system/audio.h>
Wonsik Kimdce529a2014-04-01 11:34:33 +090026#include <system/window.h>
Wonsik Kim0b78afb2014-03-03 11:33:08 +090027
28__BEGIN_DECLS
29
30/*
31 * Module versioning information for the TV input hardware module, based on
32 * tv_input_module_t.common.module_api_version.
33 *
34 * Version History:
35 *
36 * TV_INPUT_MODULE_API_VERSION_0_1:
37 * Initial TV input hardware module API.
38 *
39 */
40
41#define TV_INPUT_MODULE_API_VERSION_0_1 HARDWARE_MODULE_API_VERSION(0, 1)
42
43#define TV_INPUT_DEVICE_API_VERSION_0_1 HARDWARE_DEVICE_API_VERSION(0, 1)
44
45/*
46 * The id of this module
47 */
48#define TV_INPUT_HARDWARE_MODULE_ID "tv_input"
49
50#define TV_INPUT_DEFAULT_DEVICE "default"
51
52/*****************************************************************************/
53
54/*
55 * Every hardware module must have a data structure named HAL_MODULE_INFO_SYM
56 * and the fields of this data structure must begin with hw_module_t
57 * followed by module specific information.
58 */
59typedef struct tv_input_module {
60 struct hw_module_t common;
61} tv_input_module_t;
62
63/*****************************************************************************/
64
65typedef enum tv_input_type {
66 /* HDMI */
67 TV_INPUT_TYPE_HDMI = 1,
68
69 /* Built-in tuners. */
70 TV_INPUT_TYPE_BUILT_IN_TUNER = 2,
71
72 /* Passthrough */
73 TV_INPUT_TYPE_PASSTHROUGH = 3,
74} tv_input_type_t;
75
76typedef struct tv_input_device_info {
77 /* Device ID */
78 int device_id;
79
80 /* Type of physical TV input. */
81 tv_input_type_t type;
82
83 /*
84 * TODO: A union of type specific information. For example, HDMI port
85 * identifier that HDMI hardware understands.
86 */
87
88 /* TODO: Add capability if necessary. */
89
Wonsik Kim8b5714f2014-05-23 17:22:04 +090090 /*
91 * Audio info
92 *
93 * audio_type == AUDIO_DEVICE_NONE if this input has no audio.
94 */
95 audio_devices_t audio_type;
96 char audio_address[AUDIO_DEVICE_MAX_ADDRESS_LEN];
Wonsik Kim0b78afb2014-03-03 11:33:08 +090097} tv_input_device_info_t;
98
99typedef enum {
100 /*
101 * Hardware notifies the framework that a device is available.
102 */
103 TV_INPUT_EVENT_DEVICE_AVAILABLE = 1,
104 /*
105 * Hardware notifies the framework that a device is unavailable.
106 */
107 TV_INPUT_EVENT_DEVICE_UNAVAILABLE = 2,
108 /*
109 * Stream configurations are changed. Client should regard all open streams
110 * at the specific device are closed, and should call
111 * get_stream_configurations() again, opening some of them if necessary.
112 */
113 TV_INPUT_EVENT_STREAM_CONFIGURATIONS_CHANGED = 3,
Wonsik Kimdce529a2014-04-01 11:34:33 +0900114 /*
115 * Hardware is done with capture request with the buffer. Client can assume
116 * ownership of the buffer again.
117 */
118 TV_INPUT_EVENT_CAPTURE_SUCCEEDED = 4,
119 /*
120 * Hardware met a failure while processing a capture request or client
121 * canceled the request. Client can assume ownership of the buffer again.
122 */
123 TV_INPUT_EVENT_CAPTURE_FAILED = 5,
Wonsik Kim0b78afb2014-03-03 11:33:08 +0900124} tv_input_event_type_t;
125
Wonsik Kimdce529a2014-04-01 11:34:33 +0900126typedef struct tv_input_capture_result {
127 /* Device ID */
128 int device_id;
129
130 /* Stream ID */
131 int stream_id;
132
133 /* Sequence number of the request */
134 uint32_t seq;
135
136 /*
137 * The buffer passed to hardware in request_capture(). The content of
138 * buffer is undefined (although buffer itself is valid) for
139 * TV_INPUT_CAPTURE_FAILED event.
140 */
141 buffer_handle_t buffer;
142
143 /*
144 * Error code for the request. -ECANCELED if request is cancelled; other
145 * error codes are unknown errors.
146 */
147 int error_code;
148} tv_input_capture_result_t;
149
Wonsik Kim0b78afb2014-03-03 11:33:08 +0900150typedef struct tv_input_event {
151 tv_input_event_type_t type;
152
153 union {
154 /*
155 * TV_INPUT_EVENT_DEVICE_AVAILABLE: all fields are relevant
156 * TV_INPUT_EVENT_DEVICE_UNAVAILABLE: only device_id is relevant
157 * TV_INPUT_EVENT_STREAM_CONFIGURATIONS_CHANGED: only device_id is
158 * relevant
159 */
160 tv_input_device_info_t device_info;
Wonsik Kimdce529a2014-04-01 11:34:33 +0900161 /*
162 * TV_INPUT_EVENT_CAPTURE_SUCCEEDED: error_code is not relevant
163 * TV_INPUT_EVENT_CAPTURE_FAILED: all fields are relevant
164 */
165 tv_input_capture_result_t capture_result;
Wonsik Kim0b78afb2014-03-03 11:33:08 +0900166 };
167} tv_input_event_t;
168
169typedef struct tv_input_callback_ops {
170 /*
171 * event contains the type of the event and additional data if necessary.
172 * The event object is guaranteed to be valid only for the duration of the
173 * call.
174 *
175 * data is an object supplied at device initialization, opaque to the
176 * hardware.
177     */
178 void (*notify)(struct tv_input_device* dev,
179 tv_input_event_t* event, void* data);
180} tv_input_callback_ops_t;
181
182typedef enum {
183 TV_STREAM_TYPE_INDEPENDENT_VIDEO_SOURCE = 1,
Wonsik Kimdce529a2014-04-01 11:34:33 +0900184 TV_STREAM_TYPE_BUFFER_PRODUCER = 2,
Wonsik Kim0b78afb2014-03-03 11:33:08 +0900185} tv_stream_type_t;
186
187typedef struct tv_stream_config {
188 /*
189 * ID number of the stream. This value is used to identify the whole stream
190 * configuration.
191 */
192 int stream_id;
193
194 /* Type of the stream */
195 tv_stream_type_t type;
196
197 /* Max width/height of the stream. */
198 uint32_t max_video_width;
199 uint32_t max_video_height;
200} tv_stream_config_t;
201
Wonsik Kimdce529a2014-04-01 11:34:33 +0900202typedef struct buffer_producer_stream {
203 /*
204 * IN/OUT: Width / height of the stream. Client may request for specific
205 * size but hardware may change it. Client must allocate buffers with
206 * specified width and height.
207 */
208 uint32_t width;
209 uint32_t height;
210
211 /* OUT: Client must set this usage when allocating buffer. */
212 uint32_t usage;
213
214 /* OUT: Client must allocate a buffer with this format. */
215 uint32_t format;
216} buffer_producer_stream_t;
217
Wonsik Kim0b78afb2014-03-03 11:33:08 +0900218typedef struct tv_stream {
Wonsik Kimdce529a2014-04-01 11:34:33 +0900219 /* IN: ID in the stream configuration */
Wonsik Kim0b78afb2014-03-03 11:33:08 +0900220 int stream_id;
221
222 /* OUT: Type of the stream (for convenience) */
223 tv_stream_type_t type;
224
Wonsik Kimdce529a2014-04-01 11:34:33 +0900225 /* Data associated with the stream for client's use */
Wonsik Kim0b78afb2014-03-03 11:33:08 +0900226 union {
Wonsik Kimdce529a2014-04-01 11:34:33 +0900227 /* OUT: A native handle describing the sideband stream source */
Wonsik Kim0b78afb2014-03-03 11:33:08 +0900228 native_handle_t* sideband_stream_source_handle;
Wonsik Kimdce529a2014-04-01 11:34:33 +0900229
230 /* IN/OUT: Details are in buffer_producer_stream_t */
231 buffer_producer_stream_t buffer_producer;
Wonsik Kim0b78afb2014-03-03 11:33:08 +0900232 };
233} tv_stream_t;
234
235/*
236 * Every device data structure must begin with hw_device_t
237 * followed by module specific public methods and attributes.
238 */
239typedef struct tv_input_device {
240 struct hw_device_t common;
241
242 /*
243 * initialize:
244 *
245 * Provide callbacks to the device and start operation. At first, no device
246 * is available and after initialize() completes, currently available
247 * devices including static devices should notify via callback.
248 *
249 * Framework owns callbacks object.
250 *
251 * data is a framework-owned object which would be sent back to the
252 * framework for each callback notifications.
253 *
254 * Return 0 on success.
255 */
256 int (*initialize)(struct tv_input_device* dev,
257 const tv_input_callback_ops_t* callback, void* data);
258
259 /*
260 * get_stream_configurations:
261 *
262 * Get stream configurations for a specific device. An input device may have
263 * multiple configurations.
264 *
265 * The configs object is guaranteed to be valid only until the next call to
266 * get_stream_configurations() or STREAM_CONFIGURATIONS_CHANGED event.
267 *
268 * Return 0 on success.
269 */
270 int (*get_stream_configurations)(const struct tv_input_device* dev,
271 int device_id, int* num_configurations,
272 const tv_stream_config_t** configs);
273
274 /*
275 * open_stream:
276 *
277 * Open a stream with given stream ID. Caller owns stream object, and the
278 * populated data is only valid until the stream is closed.
279 *
280 * Return 0 on success; -EBUSY if the client should close other streams to
281 * open the stream; -EEXIST if the stream with the given ID is already open;
282 * -EINVAL if device_id and/or stream_id are invalid; other non-zero value
283 * denotes unknown error.
284 */
285 int (*open_stream)(struct tv_input_device* dev, int device_id,
286 tv_stream_t* stream);
287
288 /*
289 * close_stream:
290 *
291 * Close a stream to a device. data in tv_stream_t* object associated with
292 * the stream_id is obsolete once this call finishes.
293 *
294 * Return 0 on success; -ENOENT if the stream is not open; -EINVAL if
295 * device_id and/or stream_id are invalid.
296 */
297 int (*close_stream)(struct tv_input_device* dev, int device_id,
298 int stream_id);
299
300 /*
Wonsik Kimdce529a2014-04-01 11:34:33 +0900301 * request_capture:
302 *
303 * Request buffer capture for a stream. This is only valid for buffer
304 * producer streams. The buffer should be created with size, format and
305 * usage specified in the stream. Framework provides seq in an
306 * increasing sequence per each stream. Hardware should provide the picture
307 * in a chronological order according to seq. For example, if two
308 * requests are being processed at the same time, the request with the
309 * smaller seq should get an earlier frame.
310 *
311 * The framework releases the ownership of the buffer upon calling this
312 * function. When the buffer is filled, hardware notifies the framework
313 * via TV_INPUT_EVENT_CAPTURE_FINISHED callback, and the ownership is
314 * transferred back to framework at that time.
315 *
316 * Return 0 on success; -ENOENT if the stream is not open; -EINVAL if
317 * device_id and/or stream_id are invalid; -EWOULDBLOCK if HAL cannot take
318 * additional requests until it releases a buffer.
Wonsik Kim0b78afb2014-03-03 11:33:08 +0900319 */
Wonsik Kimdce529a2014-04-01 11:34:33 +0900320 int (*request_capture)(struct tv_input_device* dev, int device_id,
321 int stream_id, buffer_handle_t buffer, uint32_t seq);
322
323 /*
324 * cancel_capture:
325 *
326 * Cancel an ongoing capture. Hardware should release the buffer as soon as
327 * possible via TV_INPUT_EVENT_CAPTURE_FAILED callback.
328 *
329 * Return 0 on success; -ENOENT if the stream is not open; -EINVAL if
330 * device_id, stream_id, and/or seq are invalid.
331 */
332 int (*cancel_capture)(struct tv_input_device* dev, int device_id,
333 int stream_id, uint32_t seq);
Wonsik Kim0b78afb2014-03-03 11:33:08 +0900334
335 void* reserved[16];
336} tv_input_device_t;
337
338__END_DECLS
339
340#endif // ANDROID_TV_INPUT_INTERFACE_H