blob: ddb7426325455957384e2ef6ceb0e1bf6e0aa7f7 [file] [log] [blame]
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08001/*
2 * Copyright (C) 2013 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_INCLUDE_CAMERA3_H
18#define ANDROID_INCLUDE_CAMERA3_H
19
Eino-Ville Talvala7effe0c2013-02-15 12:09:48 -080020#include <system/camera_metadata.h>
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -080021#include "camera_common.h"
22
23/**
24 * Camera device HAL 3.0 [ CAMERA_DEVICE_API_VERSION_3_0 ]
25 *
26 * EXPERIMENTAL.
27 *
28 * Supports the android.hardware.Camera API.
29 *
30 * Camera devices that support this version of the HAL must return
31 * CAMERA_DEVICE_API_VERSION_3_0 in camera_device_t.common.version and in
32 * camera_info_t.device_version (from camera_module_t.get_camera_info).
33 *
34 * Camera modules that may contain version 3.0 devices must implement at least
35 * version 2.0 of the camera module interface (as defined by
36 * camera_module_t.common.module_api_version).
37 *
38 * See camera_common.h for more versioning details.
39 *
Eino-Ville Talvalaacbc4512013-03-16 16:53:28 -070040 * Documentation index:
41 * S1. Version history
42 * S2. Startup and operation sequencing
43 * S3. Operational modes
44 * S4. 3A modes and state machines
Eino-Ville Talvalab6059442013-04-29 15:26:16 -070045 * S5. Cropping
46 * S6. Error management
Eino-Ville Talvalaacbc4512013-03-16 16:53:28 -070047 */
48
49/**
50 * S1. Version history:
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -080051 *
52 * 1.0: Initial Android camera HAL (Android 4.0) [camera.h]:
53 *
54 * - Converted from C++ CameraHardwareInterface abstraction layer.
55 *
56 * - Supports android.hardware.Camera API.
57 *
58 * 2.0: Initial release of expanded-capability HAL (Android 4.2) [camera2.h]:
59 *
60 * - Sufficient for implementing existing android.hardware.Camera API.
61 *
62 * - Allows for ZSL queue in camera service layer
63 *
64 * - Not tested for any new features such manual capture control, Bayer RAW
65 * capture, reprocessing of RAW data.
66 *
67 * 3.0: First revision of expanded-capability HAL:
68 *
69 * - Major version change since the ABI is completely different. No change to
70 * the required hardware capabilities or operational model from 2.0.
71 *
72 * - Reworked input request and stream queue interfaces: Framework calls into
73 * HAL with next request and stream buffers already dequeued. Sync framework
74 * support is included, necessary for efficient implementations.
75 *
76 * - Moved triggers into requests, most notifications into results.
77 *
78 * - Consolidated all callbacks into framework into one structure, and all
79 * setup methods into a single initialize() call.
80 *
81 * - Made stream configuration into a single call to simplify stream
82 * management. Bidirectional streams replace STREAM_FROM_STREAM construct.
83 *
84 * - Limited mode semantics for older/limited hardware devices.
Alex Ray2ce219a2013-06-14 15:09:30 -070085 *
86 * 3.1: Minor revision of expanded-capability HAL:
87 *
88 * - configure_streams passes consumer usage flags to the HAL.
Alex Ray5f2fd852013-06-24 11:28:05 -070089 *
90 * - flush call to drop all in-flight requests/buffers as fast as possible.
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -080091 */
92
93/**
Eino-Ville Talvalaacbc4512013-03-16 16:53:28 -070094 * S2. Startup and general expected operation sequence:
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -080095 *
96 * 1. Framework calls camera_module_t->common.open(), which returns a
97 * hardware_device_t structure.
98 *
99 * 2. Framework inspects the hardware_device_t->version field, and instantiates
100 * the appropriate handler for that version of the camera hardware device. In
101 * case the version is CAMERA_DEVICE_API_VERSION_3_0, the device is cast to
102 * a camera3_device_t.
103 *
104 * 3. Framework calls camera3_device_t->ops->initialize() with the framework
105 * callback function pointers. This will only be called this one time after
106 * open(), before any other functions in the ops structure are called.
107 *
108 * 4. The framework calls camera3_device_t->ops->configure_streams() with a list
109 * of input/output streams to the HAL device.
110 *
111 * 5. The framework allocates gralloc buffers and calls
112 * camera3_device_t->ops->register_stream_buffers() for at least one of the
113 * output streams listed in configure_streams. The same stream is registered
114 * only once.
115 *
116 * 5. The framework requests default settings for some number of use cases with
117 * calls to camera3_device_t->ops->construct_default_request_settings(). This
118 * may occur any time after step 3.
119 *
120 * 7. The framework constructs and sends the first capture request to the HAL,
121 * with settings based on one of the sets of default settings, and with at
122 * least one output stream, which has been registered earlier by the
123 * framework. This is sent to the HAL with
124 * camera3_device_t->ops->process_capture_request(). The HAL must block the
125 * return of this call until it is ready for the next request to be sent.
126 *
127 * 8. The framework continues to submit requests, and possibly call
128 * register_stream_buffers() for not-yet-registered streams, and call
129 * construct_default_request_settings to get default settings buffers for
130 * other use cases.
131 *
132 * 9. When the capture of a request begins (sensor starts exposing for the
133 * capture), the HAL calls camera3_callback_ops_t->notify() with the SHUTTER
134 * event, including the frame number and the timestamp for start of exposure.
Eino-Ville Talvala71af1022013-04-22 14:19:21 -0700135 * This notify call must be made before the first call to
136 * process_capture_result() for that frame number.
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -0800137 *
138 * 10. After some pipeline delay, the HAL begins to return completed captures to
139 * the framework with camera3_callback_ops_t->process_capture_result(). These
140 * are returned in the same order as the requests were submitted. Multiple
141 * requests can be in flight at once, depending on the pipeline depth of the
142 * camera HAL device.
143 *
144 * 11. After some time, the framework may stop submitting new requests, wait for
145 * the existing captures to complete (all buffers filled, all results
146 * returned), and then call configure_streams() again. This resets the camera
147 * hardware and pipeline for a new set of input/output streams. Some streams
148 * may be reused from the previous configuration; if these streams' buffers
149 * had already been registered with the HAL, they will not be registered
150 * again. The framework then continues from step 7, if at least one
151 * registered output stream remains (otherwise, step 5 is required first).
152 *
153 * 12. Alternatively, the framework may call camera3_device_t->common->close()
Eino-Ville Talvala2f8cf5c2013-03-06 13:23:31 -0800154 * to end the camera session. This may be called at any time when no other
155 * calls from the framework are active, although the call may block until all
156 * in-flight captures have completed (all results returned, all buffers
157 * filled). After the close call returns, no more calls to the
158 * camera3_callback_ops_t functions are allowed from the HAL. Once the
159 * close() call is underway, the framework may not call any other HAL device
160 * functions.
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -0800161 *
162 * 13. In case of an error or other asynchronous event, the HAL must call
163 * camera3_callback_ops_t->notify() with the appropriate error/event
164 * message. After returning from a fatal device-wide error notification, the
165 * HAL should act as if close() had been called on it. However, the HAL must
166 * either cancel or complete all outstanding captures before calling
167 * notify(), so that once notify() is called with a fatal error, the
168 * framework will not receive further callbacks from the device. Methods
169 * besides close() should return -ENODEV or NULL after the notify() method
170 * returns from a fatal error message.
171 */
172
173/**
Eino-Ville Talvalaacbc4512013-03-16 16:53:28 -0700174 * S3. Operational modes:
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -0800175 *
176 * The camera 3 HAL device can implement one of two possible operational modes;
177 * limited and full. Full support is expected from new higher-end
178 * devices. Limited mode has hardware requirements roughly in line with those
179 * for a camera HAL device v1 implementation, and is expected from older or
180 * inexpensive devices. Full is a strict superset of limited, and they share the
181 * same essential operational flow, as documented above.
182 *
183 * The HAL must indicate its level of support with the
184 * android.info.supportedHardwareLevel static metadata entry, with 0 indicating
185 * limited mode, and 1 indicating full mode support.
186 *
187 * Roughly speaking, limited-mode devices do not allow for application control
188 * of capture settings (3A control only), high-rate capture of high-resolution
Eino-Ville Talvalaacbc4512013-03-16 16:53:28 -0700189 * images, raw sensor readout, or support for YUV output streams above maximum
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -0800190 * recording resolution (JPEG only for large images).
191 *
192 * ** Details of limited mode behavior:
193 *
194 * - Limited-mode devices do not need to implement accurate synchronization
195 * between capture request settings and the actual image data
196 * captured. Instead, changes to settings may take effect some time in the
197 * future, and possibly not for the same output frame for each settings
198 * entry. Rapid changes in settings may result in some settings never being
199 * used for a capture. However, captures that include high-resolution output
200 * buffers ( > 1080p ) have to use the settings as specified (but see below
201 * for processing rate).
202 *
203 * - Limited-mode devices do not need to support most of the
204 * settings/result/static info metadata. Full-mode devices must support all
205 * metadata fields listed in TODO. Specifically, only the following settings
206 * are expected to be consumed or produced by a limited-mode HAL device:
207 *
208 * android.control.aeAntibandingMode (controls)
209 * android.control.aeExposureCompensation (controls)
210 * android.control.aeLock (controls)
211 * android.control.aeMode (controls)
212 * [OFF means ON_FLASH_TORCH - TODO]
213 * android.control.aeRegions (controls)
214 * android.control.aeTargetFpsRange (controls)
215 * android.control.afMode (controls)
216 * [OFF means infinity focus]
217 * android.control.afRegions (controls)
218 * android.control.awbLock (controls)
219 * android.control.awbMode (controls)
220 * [OFF not supported]
221 * android.control.awbRegions (controls)
222 * android.control.captureIntent (controls)
223 * android.control.effectMode (controls)
224 * android.control.mode (controls)
225 * [OFF not supported]
226 * android.control.sceneMode (controls)
227 * android.control.videoStabilizationMode (controls)
228 * android.control.aeAvailableAntibandingModes (static)
229 * android.control.aeAvailableModes (static)
230 * android.control.aeAvailableTargetFpsRanges (static)
231 * android.control.aeCompensationRange (static)
232 * android.control.aeCompensationStep (static)
233 * android.control.afAvailableModes (static)
234 * android.control.availableEffects (static)
235 * android.control.availableSceneModes (static)
236 * android.control.availableVideoStabilizationModes (static)
237 * android.control.awbAvailableModes (static)
238 * android.control.maxRegions (static)
239 * android.control.sceneModeOverrides (static)
240 * android.control.aeRegions (dynamic)
241 * android.control.aeState (dynamic)
242 * android.control.afMode (dynamic)
243 * android.control.afRegions (dynamic)
244 * android.control.afState (dynamic)
245 * android.control.awbMode (dynamic)
246 * android.control.awbRegions (dynamic)
247 * android.control.awbState (dynamic)
248 * android.control.mode (dynamic)
249 *
250 * android.flash.info.available (static)
251 *
252 * android.info.supportedHardwareLevel (static)
253 *
254 * android.jpeg.gpsCoordinates (controls)
255 * android.jpeg.gpsProcessingMethod (controls)
256 * android.jpeg.gpsTimestamp (controls)
257 * android.jpeg.orientation (controls)
258 * android.jpeg.quality (controls)
259 * android.jpeg.thumbnailQuality (controls)
260 * android.jpeg.thumbnailSize (controls)
261 * android.jpeg.availableThumbnailSizes (static)
262 * android.jpeg.maxSize (static)
263 * android.jpeg.gpsCoordinates (dynamic)
264 * android.jpeg.gpsProcessingMethod (dynamic)
265 * android.jpeg.gpsTimestamp (dynamic)
266 * android.jpeg.orientation (dynamic)
267 * android.jpeg.quality (dynamic)
268 * android.jpeg.size (dynamic)
269 * android.jpeg.thumbnailQuality (dynamic)
270 * android.jpeg.thumbnailSize (dynamic)
271 *
272 * android.lens.info.minimumFocusDistance (static)
273 *
274 * android.request.id (controls)
275 * android.request.id (dynamic)
276 *
277 * android.scaler.cropRegion (controls)
278 * [ignores (x,y), assumes center-zoom]
279 * android.scaler.availableFormats (static)
280 * [RAW not supported]
281 * android.scaler.availableJpegMinDurations (static)
282 * android.scaler.availableJpegSizes (static)
283 * android.scaler.availableMaxDigitalZoom (static)
284 * android.scaler.availableProcessedMinDurations (static)
285 * android.scaler.availableProcessedSizes (static)
286 * [full resolution not supported]
287 * android.scaler.maxDigitalZoom (static)
288 * android.scaler.cropRegion (dynamic)
289 *
290 * android.sensor.orientation (static)
291 * android.sensor.timestamp (dynamic)
292 *
293 * android.statistics.faceDetectMode (controls)
294 * android.statistics.info.availableFaceDetectModes (static)
295 * android.statistics.faceDetectMode (dynamic)
296 * android.statistics.faceIds (dynamic)
297 * android.statistics.faceLandmarks (dynamic)
298 * android.statistics.faceRectangles (dynamic)
299 * android.statistics.faceScores (dynamic)
300 *
301 * - Captures in limited mode that include high-resolution (> 1080p) output
302 * buffers may block in process_capture_request() until all the output buffers
303 * have been filled. A full-mode HAL device must process sequences of
304 * high-resolution requests at the rate indicated in the static metadata for
305 * that pixel format. The HAL must still call process_capture_result() to
306 * provide the output; the framework must simply be prepared for
307 * process_capture_request() to block until after process_capture_result() for
308 * that request completes for high-resolution captures for limited-mode
309 * devices.
310 *
311 */
312
313/**
Eino-Ville Talvalaacbc4512013-03-16 16:53:28 -0700314 * S4. 3A modes and state machines:
315 *
316 * While the actual 3A algorithms are up to the HAL implementation, a high-level
317 * state machine description is defined by the HAL interface, to allow the HAL
318 * device and the framework to communicate about the current state of 3A, and to
319 * trigger 3A events.
320 *
321 * When the device is opened, all the individual 3A states must be
322 * STATE_INACTIVE. Stream configuration does not reset 3A. For example, locked
323 * focus must be maintained across the configure() call.
324 *
325 * Triggering a 3A action involves simply setting the relevant trigger entry in
326 * the settings for the next request to indicate start of trigger. For example,
327 * the trigger for starting an autofocus scan is setting the entry
328 * ANDROID_CONTROL_AF_TRIGGER to ANDROID_CONTROL_AF_TRIGGER_START for one
329 * request, and cancelling an autofocus scan is triggered by setting
330 * ANDROID_CONTROL_AF_TRIGGER to ANDROID_CONTRL_AF_TRIGGER_CANCEL. Otherwise,
331 * the entry will not exist, or be set to ANDROID_CONTROL_AF_TRIGGER_IDLE. Each
332 * request with a trigger entry set to a non-IDLE value will be treated as an
333 * independent triggering event.
334 *
335 * At the top level, 3A is controlled by the ANDROID_CONTROL_MODE setting, which
336 * selects between no 3A (ANDROID_CONTROL_MODE_OFF), normal AUTO mode
337 * (ANDROID_CONTROL_MODE_AUTO), and using the scene mode setting
338 * (ANDROID_CONTROL_USE_SCENE_MODE).
339 *
340 * - In OFF mode, each of the individual AE/AF/AWB modes are effectively OFF,
341 * and none of the capture controls may be overridden by the 3A routines.
342 *
343 * - In AUTO mode, Auto-focus, auto-exposure, and auto-whitebalance all run
344 * their own independent algorithms, and have their own mode, state, and
345 * trigger metadata entries, as listed in the next section.
346 *
347 * - In USE_SCENE_MODE, the value of the ANDROID_CONTROL_SCENE_MODE entry must
348 * be used to determine the behavior of 3A routines. In SCENE_MODEs other than
349 * FACE_PRIORITY, the HAL must override the values of
350 * ANDROId_CONTROL_AE/AWB/AF_MODE to be the mode it prefers for the selected
351 * SCENE_MODE. For example, the HAL may prefer SCENE_MODE_NIGHT to use
352 * CONTINUOUS_FOCUS AF mode. Any user selection of AE/AWB/AF_MODE when scene
353 * must be ignored for these scene modes.
354 *
355 * - For SCENE_MODE_FACE_PRIORITY, the AE/AWB/AF_MODE controls work as in
356 * ANDROID_CONTROL_MODE_AUTO, but the 3A routines must bias toward metering
357 * and focusing on any detected faces in the scene.
358 *
359 * S4.1. Auto-focus settings and result entries:
360 *
361 * Main metadata entries:
362 *
363 * ANDROID_CONTROL_AF_MODE: Control for selecting the current autofocus
364 * mode. Set by the framework in the request settings.
365 *
366 * AF_MODE_OFF: AF is disabled; the framework/app directly controls lens
367 * position.
368 *
369 * AF_MODE_AUTO: Single-sweep autofocus. No lens movement unless AF is
370 * triggered.
371 *
372 * AF_MODE_MACRO: Single-sweep up-close autofocus. No lens movement unless
373 * AF is triggered.
374 *
375 * AF_MODE_CONTINUOUS_VIDEO: Smooth continuous focusing, for recording
376 * video. Triggering immediately locks focus in current
377 * position. Canceling resumes cotinuous focusing.
378 *
379 * AF_MODE_CONTINUOUS_PICTURE: Fast continuous focusing, for
380 * zero-shutter-lag still capture. Triggering locks focus once currently
381 * active sweep concludes. Canceling resumes continuous focusing.
382 *
383 * AF_MODE_EDOF: Advanced extended depth of field focusing. There is no
384 * autofocus scan, so triggering one or canceling one has no effect.
385 * Images are focused automatically by the HAL.
386 *
387 * ANDROID_CONTROL_AF_STATE: Dynamic metadata describing the current AF
388 * algorithm state, reported by the HAL in the result metadata.
389 *
390 * AF_STATE_INACTIVE: No focusing has been done, or algorithm was
391 * reset. Lens is not moving. Always the state for MODE_OFF or MODE_EDOF.
392 * When the device is opened, it must start in this state.
393 *
394 * AF_STATE_PASSIVE_SCAN: A continuous focus algorithm is currently scanning
395 * for good focus. The lens is moving.
396 *
397 * AF_STATE_PASSIVE_FOCUSED: A continuous focus algorithm believes it is
398 * well focused. The lens is not moving. The HAL may spontaneously leave
399 * this state.
400 *
401 * AF_STATE_ACTIVE_SCAN: A scan triggered by the user is underway.
402 *
403 * AF_STATE_FOCUSED_LOCKED: The AF algorithm believes it is focused. The
404 * lens is not moving.
405 *
406 * AF_STATE_NOT_FOCUSED_LOCKED: The AF algorithm has been unable to
407 * focus. The lens is not moving.
408 *
409 * ANDROID_CONTROL_AF_TRIGGER: Control for starting an autofocus scan, the
410 * meaning of which is mode- and state- dependent. Set by the framework in
411 * the request settings.
412 *
413 * AF_TRIGGER_IDLE: No current trigger.
414 *
415 * AF_TRIGGER_START: Trigger start of AF scan. Effect is mode and state
416 * dependent.
417 *
418 * AF_TRIGGER_CANCEL: Cancel current AF scan if any, and reset algorithm to
419 * default.
420 *
421 * Additional metadata entries:
422 *
423 * ANDROID_CONTROL_AF_REGIONS: Control for selecting the regions of the FOV
424 * that should be used to determine good focus. This applies to all AF
425 * modes that scan for focus. Set by the framework in the request
426 * settings.
427 *
428 * S4.2. Auto-exposure settings and result entries:
429 *
430 * Main metadata entries:
431 *
432 * ANDROID_CONTROL_AE_MODE: Control for selecting the current auto-exposure
433 * mode. Set by the framework in the request settings.
434 *
435 * AE_MODE_OFF: Autoexposure is disabled; the user controls exposure, gain,
436 * frame duration, and flash.
437 *
438 * AE_MODE_ON: Standard autoexposure, with flash control disabled. User may
439 * set flash to fire or to torch mode.
440 *
441 * AE_MODE_ON_AUTO_FLASH: Standard autoexposure, with flash on at HAL's
442 * discretion for precapture and still capture. User control of flash
443 * disabled.
444 *
445 * AE_MODE_ON_ALWAYS_FLASH: Standard autoexposure, with flash always fired
446 * for capture, and at HAL's discretion for precapture.. User control of
447 * flash disabled.
448 *
449 * AE_MODE_ON_AUTO_FLASH_REDEYE: Standard autoexposure, with flash on at
450 * HAL's discretion for precapture and still capture. Use a flash burst
451 * at end of precapture sequence to reduce redeye in the final
452 * picture. User control of flash disabled.
453 *
454 * ANDROID_CONTROL_AE_STATE: Dynamic metadata describing the current AE
455 * algorithm state, reported by the HAL in the result metadata.
456 *
457 * AE_STATE_INACTIVE: Initial AE state after mode switch. When the device is
458 * opened, it must start in this state.
459 *
460 * AE_STATE_SEARCHING: AE is not converged to a good value, and is adjusting
461 * exposure parameters.
462 *
463 * AE_STATE_CONVERGED: AE has found good exposure values for the current
464 * scene, and the exposure parameters are not changing. HAL may
465 * spontaneously leave this state to search for better solution.
466 *
467 * AE_STATE_LOCKED: AE has been locked with the AE_LOCK control. Exposure
468 * values are not changing.
469 *
470 * AE_STATE_FLASH_REQUIRED: The HAL has converged exposure, but believes
471 * flash is required for a sufficiently bright picture. Used for
472 * determining if a zero-shutter-lag frame can be used.
473 *
474 * AE_STATE_PRECAPTURE: The HAL is in the middle of a precapture
475 * sequence. Depending on AE mode, this mode may involve firing the
476 * flash for metering, or a burst of flash pulses for redeye reduction.
477 *
478 * ANDROID_CONTROL_AE_PRECAPTURE_TRIGGER: Control for starting a metering
479 * sequence before capturing a high-quality image. Set by the framework in
480 * the request settings.
481 *
482 * PRECAPTURE_TRIGGER_IDLE: No current trigger.
483 *
484 * PRECAPTURE_TRIGGER_START: Start a precapture sequence. The HAL should
485 * use the subsequent requests to measure good exposure/white balance
486 * for an upcoming high-resolution capture.
487 *
488 * Additional metadata entries:
489 *
490 * ANDROID_CONTROL_AE_LOCK: Control for locking AE controls to their current
491 * values
492 *
493 * ANDROID_CONTROL_AE_EXPOSURE_COMPENSATION: Control for adjusting AE
494 * algorithm target brightness point.
495 *
496 * ANDROID_CONTROL_AE_TARGET_FPS_RANGE: Control for selecting the target frame
497 * rate range for the AE algorithm. The AE routine cannot change the frame
498 * rate to be outside these bounds.
499 *
500 * ANDROID_CONTROL_AE_REGIONS: Control for selecting the regions of the FOV
501 * that should be used to determine good exposure levels. This applies to
502 * all AE modes besides OFF.
503 *
504 * S4.3. Auto-whitebalance settings and result entries:
505 *
506 * Main metadata entries:
507 *
508 * ANDROID_CONTROL_AWB_MODE: Control for selecting the current white-balance
509 * mode.
510 *
511 * AWB_MODE_OFF: Auto-whitebalance is disabled. User controls color matrix.
512 *
513 * AWB_MODE_AUTO: Automatic white balance is enabled; 3A controls color
514 * transform, possibly using more complex transforms than a simple
515 * matrix.
516 *
517 * AWB_MODE_INCANDESCENT: Fixed white balance settings good for indoor
518 * incandescent (tungsten) lighting, roughly 2700K.
519 *
520 * AWB_MODE_FLUORESCENT: Fixed white balance settings good for fluorescent
521 * lighting, roughly 5000K.
522 *
523 * AWB_MODE_WARM_FLUORESCENT: Fixed white balance settings good for
524 * fluorescent lighting, roughly 3000K.
525 *
526 * AWB_MODE_DAYLIGHT: Fixed white balance settings good for daylight,
527 * roughly 5500K.
528 *
529 * AWB_MODE_CLOUDY_DAYLIGHT: Fixed white balance settings good for clouded
530 * daylight, roughly 6500K.
531 *
532 * AWB_MODE_TWILIGHT: Fixed white balance settings good for
533 * near-sunset/sunrise, roughly 15000K.
534 *
535 * AWB_MODE_SHADE: Fixed white balance settings good for areas indirectly
536 * lit by the sun, roughly 7500K.
537 *
538 * ANDROID_CONTROL_AWB_STATE: Dynamic metadata describing the current AWB
539 * algorithm state, reported by the HAL in the result metadata.
540 *
541 * AWB_STATE_INACTIVE: Initial AWB state after mode switch. When the device
542 * is opened, it must start in this state.
543 *
544 * AWB_STATE_SEARCHING: AWB is not converged to a good value, and is
545 * changing color adjustment parameters.
546 *
547 * AWB_STATE_CONVERGED: AWB has found good color adjustment values for the
548 * current scene, and the parameters are not changing. HAL may
549 * spontaneously leave this state to search for better solution.
550 *
551 * AWB_STATE_LOCKED: AWB has been locked with the AWB_LOCK control. Color
552 * adjustment values are not changing.
553 *
554 * Additional metadata entries:
555 *
556 * ANDROID_CONTROL_AWB_LOCK: Control for locking AWB color adjustments to
557 * their current values.
558 *
559 * ANDROID_CONTROL_AWB_REGIONS: Control for selecting the regions of the FOV
560 * that should be used to determine good color balance. This applies only
561 * to auto-WB mode.
562 *
563 * S4.4. General state machine transition notes
564 *
565 * Switching between AF, AE, or AWB modes always resets the algorithm's state
566 * to INACTIVE. Similarly, switching between CONTROL_MODE or
567 * CONTROL_SCENE_MODE if CONTROL_MODE == USE_SCENE_MODE resets all the
568 * algorithm states to INACTIVE.
569 *
570 * The tables below are per-mode.
571 *
572 * S4.5. AF state machines
573 *
574 * mode = AF_MODE_OFF or AF_MODE_EDOF
575 *| state | trans. cause | new state | notes |
576 *+--------------------+---------------+--------------------+------------------+
577 *| INACTIVE | | | AF is disabled |
578 *+--------------------+---------------+--------------------+------------------+
579 *
580 * mode = AF_MODE_AUTO or AF_MODE_MACRO
581 *| state | trans. cause | new state | notes |
582 *+--------------------+---------------+--------------------+------------------+
583 *| INACTIVE | AF_TRIGGER | ACTIVE_SCAN | Start AF sweep |
584 *| | | | Lens now moving |
585 *+--------------------+---------------+--------------------+------------------+
586 *| ACTIVE_SCAN | AF sweep done | FOCUSED_LOCKED | If AF successful |
587 *| | | | Lens now locked |
588 *+--------------------+---------------+--------------------+------------------+
589 *| ACTIVE_SCAN | AF sweep done | NOT_FOCUSED_LOCKED | If AF successful |
590 *| | | | Lens now locked |
591 *+--------------------+---------------+--------------------+------------------+
592 *| ACTIVE_SCAN | AF_CANCEL | INACTIVE | Cancel/reset AF |
593 *| | | | Lens now locked |
594 *+--------------------+---------------+--------------------+------------------+
595 *| FOCUSED_LOCKED | AF_CANCEL | INACTIVE | Cancel/reset AF |
596 *+--------------------+---------------+--------------------+------------------+
597 *| FOCUSED_LOCKED | AF_TRIGGER | ACTIVE_SCAN | Start new sweep |
598 *| | | | Lens now moving |
599 *+--------------------+---------------+--------------------+------------------+
600 *| NOT_FOCUSED_LOCKED | AF_CANCEL | INACTIVE | Cancel/reset AF |
601 *+--------------------+---------------+--------------------+------------------+
602 *| NOT_FOCUSED_LOCKED | AF_TRIGGER | ACTIVE_SCAN | Start new sweep |
603 *| | | | Lens now moving |
604 *+--------------------+---------------+--------------------+------------------+
605 *| All states | mode change | INACTIVE | |
606 *+--------------------+---------------+--------------------+------------------+
607 *
608 * mode = AF_MODE_CONTINUOUS_VIDEO
609 *| state | trans. cause | new state | notes |
610 *+--------------------+---------------+--------------------+------------------+
611 *| INACTIVE | HAL initiates | PASSIVE_SCAN | Start AF scan |
612 *| | new scan | | Lens now moving |
613 *+--------------------+---------------+--------------------+------------------+
614 *| INACTIVE | AF_TRIGGER | NOT_FOCUSED_LOCKED | AF state query |
615 *| | | | Lens now locked |
616 *+--------------------+---------------+--------------------+------------------+
617 *| PASSIVE_SCAN | HAL completes | PASSIVE_FOCUSED | End AF scan |
618 *| | current scan | | Lens now locked |
619 *+--------------------+---------------+--------------------+------------------+
620 *| PASSIVE_SCAN | AF_TRIGGER | FOCUSED_LOCKED | Immediate trans. |
621 *| | | | if focus is good |
622 *| | | | Lens now locked |
623 *+--------------------+---------------+--------------------+------------------+
624 *| PASSIVE_SCAN | AF_TRIGGER | NOT_FOCUSED_LOCKED | Immediate trans. |
625 *| | | | if focus is bad |
626 *| | | | Lens now locked |
627 *+--------------------+---------------+--------------------+------------------+
628 *| PASSIVE_SCAN | AF_CANCEL | INACTIVE | Reset lens |
629 *| | | | position |
630 *| | | | Lens now locked |
631 *+--------------------+---------------+--------------------+------------------+
632 *| PASSIVE_FOCUSED | HAL initiates | PASSIVE_SCAN | Start AF scan |
633 *| | new scan | | Lens now moving |
634 *+--------------------+---------------+--------------------+------------------+
635 *| PASSIVE_FOCUSED | AF_TRIGGER | FOCUSED_LOCKED | Immediate trans. |
636 *| | | | if focus is good |
637 *| | | | Lens now locked |
638 *+--------------------+---------------+--------------------+------------------+
639 *| PASSIVE_FOCUSED | AF_TRIGGER | NOT_FOCUSED_LOCKED | Immediate trans. |
640 *| | | | if focus is bad |
641 *| | | | Lens now locked |
642 *+--------------------+---------------+--------------------+------------------+
643 *| FOCUSED_LOCKED | AF_TRIGGER | FOCUSED_LOCKED | No effect |
644 *+--------------------+---------------+--------------------+------------------+
645 *| FOCUSED_LOCKED | AF_CANCEL | INACTIVE | Restart AF scan |
646 *+--------------------+---------------+--------------------+------------------+
647 *| NOT_FOCUSED_LOCKED | AF_TRIGGER | NOT_FOCUSED_LOCKED | No effect |
648 *+--------------------+---------------+--------------------+------------------+
649 *| NOT_FOCUSED_LOCKED | AF_CANCEL | INACTIVE | Restart AF scan |
650 *+--------------------+---------------+--------------------+------------------+
651 *
652 * mode = AF_MODE_CONTINUOUS_PICTURE
653 *| state | trans. cause | new state | notes |
654 *+--------------------+---------------+--------------------+------------------+
655 *| INACTIVE | HAL initiates | PASSIVE_SCAN | Start AF scan |
656 *| | new scan | | Lens now moving |
657 *+--------------------+---------------+--------------------+------------------+
658 *| INACTIVE | AF_TRIGGER | NOT_FOCUSED_LOCKED | AF state query |
659 *| | | | Lens now locked |
660 *+--------------------+---------------+--------------------+------------------+
661 *| PASSIVE_SCAN | HAL completes | PASSIVE_FOCUSED | End AF scan |
662 *| | current scan | | Lens now locked |
663 *+--------------------+---------------+--------------------+------------------+
664 *| PASSIVE_SCAN | AF_TRIGGER | FOCUSED_LOCKED | Eventual trans. |
665 *| | | | once focus good |
666 *| | | | Lens now locked |
667 *+--------------------+---------------+--------------------+------------------+
668 *| PASSIVE_SCAN | AF_TRIGGER | NOT_FOCUSED_LOCKED | Eventual trans. |
669 *| | | | if cannot focus |
670 *| | | | Lens now locked |
671 *+--------------------+---------------+--------------------+------------------+
672 *| PASSIVE_SCAN | AF_CANCEL | INACTIVE | Reset lens |
673 *| | | | position |
674 *| | | | Lens now locked |
675 *+--------------------+---------------+--------------------+------------------+
676 *| PASSIVE_FOCUSED | HAL initiates | PASSIVE_SCAN | Start AF scan |
677 *| | new scan | | Lens now moving |
678 *+--------------------+---------------+--------------------+------------------+
679 *| PASSIVE_FOCUSED | AF_TRIGGER | FOCUSED_LOCKED | Immediate trans. |
680 *| | | | if focus is good |
681 *| | | | Lens now locked |
682 *+--------------------+---------------+--------------------+------------------+
683 *| PASSIVE_FOCUSED | AF_TRIGGER | NOT_FOCUSED_LOCKED | Immediate trans. |
684 *| | | | if focus is bad |
685 *| | | | Lens now locked |
686 *+--------------------+---------------+--------------------+------------------+
687 *| FOCUSED_LOCKED | AF_TRIGGER | FOCUSED_LOCKED | No effect |
688 *+--------------------+---------------+--------------------+------------------+
689 *| FOCUSED_LOCKED | AF_CANCEL | INACTIVE | Restart AF scan |
690 *+--------------------+---------------+--------------------+------------------+
691 *| NOT_FOCUSED_LOCKED | AF_TRIGGER | NOT_FOCUSED_LOCKED | No effect |
692 *+--------------------+---------------+--------------------+------------------+
693 *| NOT_FOCUSED_LOCKED | AF_CANCEL | INACTIVE | Restart AF scan |
694 *+--------------------+---------------+--------------------+------------------+
695 *
696 * S4.6. AE and AWB state machines
697 *
698 * The AE and AWB state machines are mostly identical. AE has additional
699 * FLASH_REQUIRED and PRECAPTURE states. So rows below that refer to those two
700 * states should be ignored for the AWB state machine.
701 *
702 * mode = AE_MODE_OFF / AWB mode not AUTO
703 *| state | trans. cause | new state | notes |
704 *+--------------------+---------------+--------------------+------------------+
705 *| INACTIVE | | | AE/AWB disabled |
706 *+--------------------+---------------+--------------------+------------------+
707 *
708 * mode = AE_MODE_ON_* / AWB_MODE_AUTO
709 *| state | trans. cause | new state | notes |
710 *+--------------------+---------------+--------------------+------------------+
711 *| INACTIVE | HAL initiates | SEARCHING | |
712 *| | AE/AWB scan | | |
713 *+--------------------+---------------+--------------------+------------------+
714 *| INACTIVE | AE/AWB_LOCK | LOCKED | values locked |
715 *| | on | | |
716 *+--------------------+---------------+--------------------+------------------+
717 *| SEARCHING | HAL finishes | CONVERGED | good values, not |
718 *| | AE/AWB scan | | changing |
719 *+--------------------+---------------+--------------------+------------------+
720 *| SEARCHING | HAL finishes | FLASH_REQUIRED | converged but too|
721 *| | AE scan | | dark w/o flash |
722 *+--------------------+---------------+--------------------+------------------+
723 *| SEARCHING | AE/AWB_LOCK | LOCKED | values locked |
724 *| | on | | |
725 *+--------------------+---------------+--------------------+------------------+
726 *| CONVERGED | HAL initiates | SEARCHING | values locked |
727 *| | AE/AWB scan | | |
728 *+--------------------+---------------+--------------------+------------------+
729 *| CONVERGED | AE/AWB_LOCK | LOCKED | values locked |
730 *| | on | | |
731 *+--------------------+---------------+--------------------+------------------+
Eino-Ville Talvala73dba5e2013-05-21 16:29:14 -0700732 *| FLASH_REQUIRED | HAL initiates | SEARCHING | values locked |
733 *| | AE/AWB scan | | |
734 *+--------------------+---------------+--------------------+------------------+
735 *| FLASH_REQUIRED | AE/AWB_LOCK | LOCKED | values locked |
736 *| | on | | |
737 *+--------------------+---------------+--------------------+------------------+
Eino-Ville Talvalaacbc4512013-03-16 16:53:28 -0700738 *| LOCKED | AE/AWB_LOCK | SEARCHING | values not good |
739 *| | off | | after unlock |
740 *+--------------------+---------------+--------------------+------------------+
741 *| LOCKED | AE/AWB_LOCK | CONVERGED | values good |
742 *| | off | | after unlock |
743 *+--------------------+---------------+--------------------+------------------+
744 *| LOCKED | AE_LOCK | FLASH_REQUIRED | exposure good, |
745 *| | off | | but too dark |
746 *+--------------------+---------------+--------------------+------------------+
747 *| All AE states | PRECAPTURE_ | PRECAPTURE | Start precapture |
748 *| | START | | sequence |
749 *+--------------------+---------------+--------------------+------------------+
750 *| PRECAPTURE | Sequence done.| CONVERGED | Ready for high- |
751 *| | AE_LOCK off | | quality capture |
752 *+--------------------+---------------+--------------------+------------------+
753 *| PRECAPTURE | Sequence done.| LOCKED | Ready for high- |
754 *| | AE_LOCK on | | quality capture |
755 *+--------------------+---------------+--------------------+------------------+
756 *
757 */
758
759/**
Eino-Ville Talvalab6059442013-04-29 15:26:16 -0700760 * S5. Cropping:
761 *
762 * Cropping of the full pixel array (for digital zoom and other use cases where
763 * a smaller FOV is desirable) is communicated through the
764 * ANDROID_SCALER_CROP_REGION setting. This is a per-request setting, and can
765 * change on a per-request basis, which is critical for implementing smooth
766 * digital zoom.
767 *
768 * The region is defined as a rectangle (x, y, width, height), with (x, y)
769 * describing the top-left corner of the rectangle. The rectangle is defined on
770 * the coordinate system of the sensor active pixel array, with (0,0) being the
771 * top-left pixel of the active pixel array. Therefore, the width and height
772 * cannot be larger than the dimensions reported in the
773 * ANDROID_SENSOR_ACTIVE_PIXEL_ARRAY static info field. The minimum allowed
774 * width and height are reported by the HAL through the
775 * ANDROID_SCALER_MAX_DIGITAL_ZOOM static info field, which describes the
776 * maximum supported zoom factor. Therefore, the minimum crop region width and
777 * height are:
778 *
779 * {width, height} =
780 * { floor(ANDROID_SENSOR_ACTIVE_PIXEL_ARRAY[0] /
781 * ANDROID_SCALER_MAX_DIGITAL_ZOOM),
782 * floor(ANDROID_SENSOR_ACTIVE_PIXEL_ARRAY[1] /
783 * ANDROID_SCALER_MAX_DIGITAL_ZOOM) }
784 *
785 * If the crop region needs to fulfill specific requirements (for example, it
786 * needs to start on even coordinates, and its width/height needs to be even),
787 * the HAL must do the necessary rounding and write out the final crop region
788 * used in the output result metadata. Similarly, if the HAL implements video
789 * stabilization, it must adjust the result crop region to describe the region
790 * actually included in the output after video stabilization is applied. In
791 * general, a camera-using application must be able to determine the field of
792 * view it is receiving based on the crop region, the dimensions of the image
793 * sensor, and the lens focal length.
794 *
795 * Since the crop region applies to all streams, which may have different aspect
796 * ratios than the crop region, the exact sensor region used for each stream may
797 * be smaller than the crop region. Specifically, each stream should maintain
798 * square pixels and its aspect ratio by minimally further cropping the defined
799 * crop region. If the stream's aspect ratio is wider than the crop region, the
800 * stream should be further cropped vertically, and if the stream's aspect ratio
801 * is narrower than the crop region, the stream should be further cropped
802 * horizontally.
803 *
804 * In all cases, the stream crop must be centered within the full crop region,
805 * and each stream is only either cropped horizontally or vertical relative to
806 * the full crop region, never both.
807 *
808 * For example, if two streams are defined, a 640x480 stream (4:3 aspect), and a
809 * 1280x720 stream (16:9 aspect), below demonstrates the expected output regions
810 * for each stream for a few sample crop regions, on a hypothetical 3 MP (2000 x
811 * 1500 pixel array) sensor.
812 *
813 * Crop region: (500, 375, 1000, 750) (4:3 aspect ratio)
814 *
815 * 640x480 stream crop: (500, 375, 1000, 750) (equal to crop region)
816 * 1280x720 stream crop: (500, 469, 1000, 562) (marked with =)
817 *
818 * 0 1000 2000
819 * +---------+---------+---------+----------+
820 * | Active pixel array |
821 * | |
822 * | |
823 * + +-------------------+ + 375
824 * | | | |
825 * | O===================O |
826 * | I 1280x720 stream I |
827 * + I I + 750
828 * | I I |
829 * | O===================O |
830 * | | | |
831 * + +-------------------+ + 1125
832 * | Crop region, 640x480 stream |
833 * | |
834 * | |
835 * +---------+---------+---------+----------+ 1500
836 *
837 * Crop region: (500, 375, 1333, 750) (16:9 aspect ratio)
838 *
839 * 640x480 stream crop: (666, 375, 1000, 750) (marked with =)
840 * 1280x720 stream crop: (500, 375, 1333, 750) (equal to crop region)
841 *
842 * 0 1000 2000
843 * +---------+---------+---------+----------+
844 * | Active pixel array |
845 * | |
846 * | |
847 * + +---O==================O---+ + 375
848 * | | I 640x480 stream I | |
849 * | | I I | |
850 * | | I I | |
851 * + | I I | + 750
852 * | | I I | |
853 * | | I I | |
854 * | | I I | |
855 * + +---O==================O---+ + 1125
856 * | Crop region, 1280x720 stream |
857 * | |
858 * | |
859 * +---------+---------+---------+----------+ 1500
860 *
861 * Crop region: (500, 375, 750, 750) (1:1 aspect ratio)
862 *
863 * 640x480 stream crop: (500, 469, 750, 562) (marked with =)
864 * 1280x720 stream crop: (500, 543, 750, 414) (marged with #)
865 *
866 * 0 1000 2000
867 * +---------+---------+---------+----------+
868 * | Active pixel array |
869 * | |
870 * | |
871 * + +--------------+ + 375
872 * | O==============O |
873 * | ################ |
874 * | # # |
875 * + # # + 750
876 * | # # |
877 * | ################ 1280x720 |
878 * | O==============O 640x480 |
879 * + +--------------+ + 1125
880 * | Crop region |
881 * | |
882 * | |
883 * +---------+---------+---------+----------+ 1500
884 *
885 * And a final example, a 1024x1024 square aspect ratio stream instead of the
886 * 480p stream:
887 *
888 * Crop region: (500, 375, 1000, 750) (4:3 aspect ratio)
889 *
890 * 1024x1024 stream crop: (625, 375, 750, 750) (marked with #)
891 * 1280x720 stream crop: (500, 469, 1000, 562) (marked with =)
892 *
893 * 0 1000 2000
894 * +---------+---------+---------+----------+
895 * | Active pixel array |
896 * | |
897 * | 1024x1024 stream |
898 * + +--###############--+ + 375
899 * | | # # | |
900 * | O===================O |
901 * | I 1280x720 stream I |
902 * + I I + 750
903 * | I I |
904 * | O===================O |
905 * | | # # | |
906 * + +--###############--+ + 1125
907 * | Crop region |
908 * | |
909 * | |
910 * +---------+---------+---------+----------+ 1500
911 *
912 */
913
914/**
915 * S6. Error management:
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -0800916 *
917 * Camera HAL device ops functions that have a return value will all return
918 * -ENODEV / NULL in case of a serious error. This means the device cannot
919 * continue operation, and must be closed by the framework. Once this error is
Alex Rayd5ddbc92013-02-15 13:47:24 -0800920 * returned by some method, or if notify() is called with ERROR_DEVICE, only
921 * the close() method can be called successfully. All other methods will return
922 * -ENODEV / NULL.
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -0800923 *
Eino-Ville Talvalaacbc4512013-03-16 16:53:28 -0700924 * If a device op is called in the wrong sequence, for example if the framework
925 * calls configure_streams() is called before initialize(), the device must
926 * return -ENOSYS from the call, and do nothing.
927 *
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -0800928 * Transient errors in image capture must be reported through notify() as follows:
929 *
930 * - The failure of an entire capture to occur must be reported by the HAL by
931 * calling notify() with ERROR_REQUEST. Individual errors for the result
932 * metadata or the output buffers must not be reported in this case.
933 *
934 * - If the metadata for a capture cannot be produced, but some image buffers
935 * were filled, the HAL must call notify() with ERROR_RESULT.
936 *
937 * - If an output image buffer could not be filled, but either the metadata was
938 * produced or some other buffers were filled, the HAL must call notify() with
939 * ERROR_BUFFER for each failed buffer.
940 *
941 * In each of these transient failure cases, the HAL must still call
942 * process_capture_result, with valid output buffer_handle_t. If the result
943 * metadata could not be produced, it should be NULL. If some buffers could not
944 * be filled, their sync fences must be set to the error state.
945 *
Eino-Ville Talvalaacbc4512013-03-16 16:53:28 -0700946 * Invalid input arguments result in -EINVAL from the appropriate methods. In
947 * that case, the framework must act as if that call had never been made.
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -0800948 *
949 */
950
951__BEGIN_DECLS
952
953struct camera3_device;
954
955/**********************************************************************
956 *
957 * Camera3 stream and stream buffer definitions.
958 *
959 * These structs and enums define the handles and contents of the input and
960 * output streams connecting the HAL to various framework and application buffer
961 * consumers. Each stream is backed by a gralloc buffer queue.
962 *
963 */
964
965/**
966 * camera3_stream_type_t:
967 *
968 * The type of the camera stream, which defines whether the camera HAL device is
969 * the producer or the consumer for that stream, and how the buffers of the
970 * stream relate to the other streams.
971 */
972typedef enum camera3_stream_type {
973 /**
974 * This stream is an output stream; the camera HAL device will be
975 * responsible for filling buffers from this stream with newly captured or
976 * reprocessed image data.
977 */
978 CAMERA3_STREAM_OUTPUT = 0,
979
980 /**
981 * This stream is an input stream; the camera HAL device will be responsible
982 * for reading buffers from this stream and sending them through the camera
983 * processing pipeline, as if the buffer was a newly captured image from the
984 * imager.
985 */
986 CAMERA3_STREAM_INPUT = 1,
987
988 /**
989 * This stream can be used for input and output. Typically, the stream is
990 * used as an output stream, but occasionally one already-filled buffer may
991 * be sent back to the HAL device for reprocessing.
992 *
993 * This kind of stream is meant generally for zero-shutter-lag features,
994 * where copying the captured image from the output buffer to the
995 * reprocessing input buffer would be expensive. The stream will be used by
996 * the framework as follows:
997 *
998 * 1. The framework includes a buffer from this stream as output buffer in a
999 * request as normal.
1000 *
1001 * 2. Once the HAL device returns a filled output buffer to the framework,
1002 * the framework may do one of two things with the filled buffer:
1003 *
1004 * 2. a. The framework uses the filled data, and returns the now-used buffer
1005 * to the stream queue for reuse. This behavior exactly matches the
1006 * OUTPUT type of stream.
1007 *
1008 * 2. b. The framework wants to reprocess the filled data, and uses the
1009 * buffer as an input buffer for a request. Once the HAL device has
1010 * used the reprocessing buffer, it then returns it to the
1011 * framework. The framework then returns the now-used buffer to the
1012 * stream queue for reuse.
1013 *
1014 * 3. The HAL device will be given the buffer again as an output buffer for
1015 * a request at some future point.
1016 *
1017 * Note that the HAL will always be reprocessing data it produced.
1018 *
1019 */
1020 CAMERA3_STREAM_BIDIRECTIONAL = 2,
1021
1022 /**
1023 * Total number of framework-defined stream types
1024 */
1025 CAMERA3_NUM_STREAM_TYPES
1026
1027} camera3_stream_type_t;
1028
1029/**
1030 * camera3_stream_t:
1031 *
1032 * A handle to a single camera input or output stream. A stream is defined by
1033 * the framework by its buffer resolution and format, and additionally by the
1034 * HAL with the gralloc usage flags and the maximum in-flight buffer count.
1035 *
1036 * The stream structures are owned by the framework, but pointers to a
1037 * camera3_stream passed into the HAL by configure_streams() are valid until the
1038 * end of the first subsequent configure_streams() call that _does not_ include
1039 * that camera3_stream as an argument, or until the end of the close() call.
1040 *
1041 * All camera3_stream framework-controlled members are immutable once the
1042 * camera3_stream is passed into configure_streams(). The HAL may only change
1043 * the HAL-controlled parameters during a configure_streams() call, except for
1044 * the contents of the private pointer.
1045 *
1046 * If a configure_streams() call returns a non-fatal error, all active streams
1047 * remain valid as if configure_streams() had not been called.
1048 *
1049 * The endpoint of the stream is not visible to the camera HAL device.
Alex Ray2ce219a2013-06-14 15:09:30 -07001050 * In DEVICE_API_VERSION_3_1, this was changed to share consumer usage flags
1051 * on streams where the camera is a producer (OUTPUT and BIDIRECTIONAL stream
1052 * types) see the usage field below.
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08001053 */
1054typedef struct camera3_stream {
1055
1056 /*****
1057 * Set by framework before configure_streams()
1058 */
1059
1060 /**
1061 * The type of the stream, one of the camera3_stream_type_t values.
1062 */
1063 int stream_type;
1064
1065 /**
1066 * The width in pixels of the buffers in this stream
1067 */
1068 uint32_t width;
1069
1070 /**
1071 * The height in pixels of the buffers in this stream
1072 */
1073 uint32_t height;
1074
1075 /**
1076 * The pixel format for the buffers in this stream. Format is a value from
1077 * the HAL_PIXEL_FORMAT_* list in system/core/include/system/graphics.h, or
1078 * from device-specific headers.
1079 *
1080 * If HAL_PIXEL_FORMAT_IMPLEMENTATION_DEFINED is used, then the platform
1081 * gralloc module will select a format based on the usage flags provided by
1082 * the camera device and the other endpoint of the stream.
1083 *
1084 * The camera HAL device must inspect the buffers handed to it in the
1085 * subsequent register_stream_buffers() call to obtain the
1086 * implementation-specific format details, if necessary.
1087 */
1088 int format;
1089
1090 /*****
1091 * Set by HAL during configure_streams().
1092 */
1093
1094 /**
1095 * The gralloc usage flags for this stream, as needed by the HAL. The usage
1096 * flags are defined in gralloc.h (GRALLOC_USAGE_*), or in device-specific
1097 * headers.
1098 *
1099 * For output streams, these are the HAL's producer usage flags. For input
1100 * streams, these are the HAL's consumer usage flags. The usage flags from
1101 * the producer and the consumer will be combined together and then passed
1102 * to the platform gralloc HAL module for allocating the gralloc buffers for
1103 * each stream.
Alex Ray2ce219a2013-06-14 15:09:30 -07001104 *
1105 * Version information:
1106 *
1107 * == CAMERA_DEVICE_API_VERSION_3_0:
1108 *
1109 * No initial value guaranteed when passed via configure_streams().
1110 * HAL may not use this field as input, and must write over this field
1111 * with its usage flags.
1112 *
1113 * >= CAMERA_DEVICE_API_VERSION_3_1:
1114 *
1115 * For stream_type OUTPUT and BIDIRECTIONAL, when passed via
1116 * configure_streams(), the initial value of this is the consumer's
1117 * usage flags. The HAL may use these consumer flags to decide stream
1118 * configuration.
1119 * For stream_type INPUT, when passed via configure_streams(), the initial
1120 * value of this is 0.
1121 * For all streams passed via configure_streams(), the HAL must write
1122 * over this field with its usage flags.
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08001123 */
1124 uint32_t usage;
1125
1126 /**
1127 * The maximum number of buffers the HAL device may need to have dequeued at
1128 * the same time. The HAL device may not have more buffers in-flight from
1129 * this stream than this value.
1130 */
1131 uint32_t max_buffers;
1132
1133 /**
1134 * A handle to HAL-private information for the stream. Will not be inspected
1135 * by the framework code.
1136 */
1137 void *priv;
1138
1139} camera3_stream_t;
1140
1141/**
1142 * camera3_stream_configuration_t:
1143 *
1144 * A structure of stream definitions, used by configure_streams(). This
1145 * structure defines all the output streams and the reprocessing input
1146 * stream for the current camera use case.
1147 */
1148typedef struct camera3_stream_configuration {
1149 /**
1150 * The total number of streams requested by the framework. This includes
1151 * both input and output streams. The number of streams will be at least 1,
1152 * and there will be at least one output-capable stream.
1153 */
1154 uint32_t num_streams;
1155
1156 /**
Eino-Ville Talvala3a6e6b42013-03-06 13:21:11 -08001157 * An array of camera stream pointers, defining the input/output
1158 * configuration for the camera HAL device.
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08001159 *
1160 * At most one input-capable stream may be defined (INPUT or BIDIRECTIONAL)
1161 * in a single configuration.
1162 *
1163 * At least one output-capable stream must be defined (OUTPUT or
1164 * BIDIRECTIONAL).
1165 */
Eino-Ville Talvala3a6e6b42013-03-06 13:21:11 -08001166 camera3_stream_t **streams;
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08001167
1168} camera3_stream_configuration_t;
1169
1170/**
Eino-Ville Talvala2f8cf5c2013-03-06 13:23:31 -08001171 * camera3_buffer_status_t:
1172 *
1173 * The current status of a single stream buffer.
1174 */
1175typedef enum camera3_buffer_status {
1176 /**
1177 * The buffer is in a normal state, and can be used after waiting on its
1178 * sync fence.
1179 */
1180 CAMERA3_BUFFER_STATUS_OK = 0,
1181
1182 /**
1183 * The buffer does not contain valid data, and the data in it should not be
1184 * used. The sync fence must still be waited on before reusing the buffer.
1185 */
1186 CAMERA3_BUFFER_STATUS_ERROR = 1
1187
1188} camera3_buffer_status_t;
1189
1190/**
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08001191 * camera3_stream_buffer_t:
1192 *
1193 * A single buffer from a camera3 stream. It includes a handle to its parent
1194 * stream, the handle to the gralloc buffer itself, and sync fences
1195 *
1196 * The buffer does not specify whether it is to be used for input or output;
1197 * that is determined by its parent stream type and how the buffer is passed to
1198 * the HAL device.
1199 */
1200typedef struct camera3_stream_buffer {
1201 /**
1202 * The handle of the stream this buffer is associated with
1203 */
1204 camera3_stream_t *stream;
1205
1206 /**
1207 * The native handle to the buffer
1208 */
1209 buffer_handle_t *buffer;
1210
1211 /**
Eino-Ville Talvala2f8cf5c2013-03-06 13:23:31 -08001212 * Current state of the buffer, one of the camera3_buffer_status_t
1213 * values. The framework will not pass buffers to the HAL that are in an
1214 * error state. In case a buffer could not be filled by the HAL, it must
1215 * have its status set to CAMERA3_BUFFER_STATUS_ERROR when returned to the
1216 * framework with process_capture_result().
1217 */
1218 int status;
1219
1220 /**
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08001221 * The acquire sync fence for this buffer. The HAL must wait on this fence
1222 * fd before attempting to read from or write to this buffer.
1223 *
1224 * The framework may be set to -1 to indicate that no waiting is necessary
Eino-Ville Talvala2f8cf5c2013-03-06 13:23:31 -08001225 * for this buffer.
1226 *
1227 * When the HAL returns an output buffer to the framework with
1228 * process_capture_result(), the acquire_fence must be set to -1. If the HAL
1229 * never waits on the acquire_fence due to an error in filling a buffer,
1230 * when calling process_capture_result() the HAL must set the release_fence
1231 * of the buffer to be the acquire_fence passed to it by the framework. This
1232 * will allow the framework to wait on the fence before reusing the buffer.
1233 *
1234 * For input buffers, the HAL must not change the acquire_fence field during
1235 * the process_capture_request() call.
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08001236 */
1237 int acquire_fence;
1238
1239 /**
1240 * The release sync fence for this buffer. The HAL must set this fence when
1241 * returning buffers to the framework, or write -1 to indicate that no
1242 * waiting is required for this buffer.
1243 *
1244 * For the input buffer, the release fence must be set by the
1245 * process_capture_request() call. For the output buffers, the fences must
1246 * be set in the output_buffers array passed to process_capture_result().
Eino-Ville Talvala2f8cf5c2013-03-06 13:23:31 -08001247 *
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08001248 */
1249 int release_fence;
1250
1251} camera3_stream_buffer_t;
1252
1253/**
1254 * camera3_stream_buffer_set_t:
1255 *
1256 * The complete set of gralloc buffers for a stream. This structure is given to
1257 * register_stream_buffers() to allow the camera HAL device to register/map/etc
1258 * newly allocated stream buffers.
1259 */
1260typedef struct camera3_stream_buffer_set {
1261 /**
1262 * The stream handle for the stream these buffers belong to
1263 */
1264 camera3_stream_t *stream;
1265
1266 /**
1267 * The number of buffers in this stream. It is guaranteed to be at least
1268 * stream->max_buffers.
1269 */
1270 uint32_t num_buffers;
1271
1272 /**
1273 * The array of gralloc buffer handles for this stream. If the stream format
1274 * is set to HAL_PIXEL_FORMAT_IMPLEMENTATION_DEFINED, the camera HAL device
1275 * should inspect the passed-in buffers to determine any platform-private
1276 * pixel format information.
1277 */
Eino-Ville Talvala3a6e6b42013-03-06 13:21:11 -08001278 buffer_handle_t **buffers;
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08001279
1280} camera3_stream_buffer_set_t;
1281
1282/**
1283 * camera3_jpeg_blob:
1284 *
1285 * Transport header for compressed JPEG buffers in output streams.
1286 *
1287 * To capture JPEG images, a stream is created using the pixel format
1288 * HAL_PIXEL_FORMAT_BLOB, and the static metadata field android.jpeg.maxSize is
1289 * used as the buffer size. Since compressed JPEG images are of variable size,
1290 * the HAL needs to include the final size of the compressed image using this
1291 * structure inside the output stream buffer. The JPEG blob ID field must be set
1292 * to CAMERA3_JPEG_BLOB_ID.
1293 *
1294 * Transport header should be at the end of the JPEG output stream buffer. That
1295 * means the jpeg_blob_id must start at byte[android.jpeg.maxSize -
1296 * sizeof(camera3_jpeg_blob)]. Any HAL using this transport header must
1297 * account for it in android.jpeg.maxSize. The JPEG data itself starts at
1298 * the beginning of the buffer and should be jpeg_size bytes long.
1299 */
1300typedef struct camera3_jpeg_blob {
1301 uint16_t jpeg_blob_id;
1302 uint32_t jpeg_size;
1303} camera3_jpeg_blob_t;
1304
1305enum {
1306 CAMERA3_JPEG_BLOB_ID = 0x00FF
1307};
1308
1309/**********************************************************************
1310 *
1311 * Message definitions for the HAL notify() callback.
1312 *
1313 * These definitions are used for the HAL notify callback, to signal
1314 * asynchronous events from the HAL device to the Android framework.
1315 *
1316 */
1317
1318/**
1319 * camera3_msg_type:
1320 *
1321 * Indicates the type of message sent, which specifies which member of the
1322 * message union is valid.
1323 *
1324 */
1325typedef enum camera3_msg_type {
1326 /**
1327 * An error has occurred. camera3_notify_msg.message.error contains the
1328 * error information.
1329 */
1330 CAMERA3_MSG_ERROR = 1,
1331
1332 /**
1333 * The exposure of a given request has
1334 * begun. camera3_notify_msg.message.shutter contains the information
1335 * the capture.
1336 */
1337 CAMERA3_MSG_SHUTTER = 2,
1338
1339 /**
1340 * Number of framework message types
1341 */
1342 CAMERA3_NUM_MESSAGES
1343
1344} camera3_msg_type_t;
1345
1346/**
1347 * Defined error codes for CAMERA_MSG_ERROR
1348 */
1349typedef enum camera3_error_msg_code {
1350 /**
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08001351 * A serious failure occured. No further frames or buffer streams will
1352 * be produced by the device. Device should be treated as closed. The
1353 * client must reopen the device to use it again. The frame_number field
1354 * is unused.
1355 */
Alex Rayd5ddbc92013-02-15 13:47:24 -08001356 CAMERA3_MSG_ERROR_DEVICE = 1,
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08001357
1358 /**
1359 * An error has occurred in processing a request. No output (metadata or
1360 * buffers) will be produced for this request. The frame_number field
1361 * specifies which request has been dropped. Subsequent requests are
1362 * unaffected, and the device remains operational.
1363 */
Alex Rayd5ddbc92013-02-15 13:47:24 -08001364 CAMERA3_MSG_ERROR_REQUEST = 2,
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08001365
1366 /**
1367 * An error has occurred in producing an output result metadata buffer
1368 * for a request, but output stream buffers for it will still be
1369 * available. Subsequent requests are unaffected, and the device remains
1370 * operational. The frame_number field specifies the request for which
1371 * result metadata won't be available.
1372 */
Alex Rayd5ddbc92013-02-15 13:47:24 -08001373 CAMERA3_MSG_ERROR_RESULT = 3,
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08001374
1375 /**
1376 * An error has occurred in placing an output buffer into a stream for a
1377 * request. The frame metadata and other buffers may still be
1378 * available. Subsequent requests are unaffected, and the device remains
1379 * operational. The frame_number field specifies the request for which the
1380 * buffer was dropped, and error_stream contains a pointer to the stream
1381 * that dropped the frame.u
1382 */
Alex Rayd5ddbc92013-02-15 13:47:24 -08001383 CAMERA3_MSG_ERROR_BUFFER = 4,
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08001384
1385 /**
1386 * Number of error types
1387 */
1388 CAMERA3_MSG_NUM_ERRORS
1389
1390} camera3_error_msg_code_t;
1391
1392/**
1393 * camera3_error_msg_t:
1394 *
1395 * Message contents for CAMERA3_MSG_ERROR
1396 */
1397typedef struct camera3_error_msg {
1398 /**
1399 * Frame number of the request the error applies to. 0 if the frame number
1400 * isn't applicable to the error.
1401 */
1402 uint32_t frame_number;
1403
1404 /**
1405 * Pointer to the stream that had a failure. NULL if the stream isn't
1406 * applicable to the error.
1407 */
1408 camera3_stream_t *error_stream;
1409
1410 /**
1411 * The code for this error; one of the CAMERA_MSG_ERROR enum values.
1412 */
1413 int error_code;
1414
1415} camera3_error_msg_t;
1416
1417/**
1418 * camera3_shutter_msg_t:
1419 *
1420 * Message contents for CAMERA3_MSG_SHUTTER
1421 */
1422typedef struct camera3_shutter_msg {
1423 /**
1424 * Frame number of the request that has begun exposure
1425 */
1426 uint32_t frame_number;
1427
1428 /**
1429 * Timestamp for the start of capture. This must match the capture result
1430 * metadata's sensor exposure start timestamp.
1431 */
1432 uint64_t timestamp;
1433
1434} camera3_shutter_msg_t;
1435
1436/**
1437 * camera3_notify_msg_t:
1438 *
1439 * The message structure sent to camera3_callback_ops_t.notify()
1440 */
1441typedef struct camera3_notify_msg {
1442
1443 /**
1444 * The message type. One of camera3_notify_msg_type, or a private extension.
1445 */
1446 int type;
1447
1448 union {
1449 /**
1450 * Error message contents. Valid if type is CAMERA3_MSG_ERROR
1451 */
1452 camera3_error_msg_t error;
1453
1454 /**
1455 * Shutter message contents. Valid if type is CAMERA3_MSG_SHUTTER
1456 */
1457 camera3_shutter_msg_t shutter;
1458
1459 /**
1460 * Generic message contents. Used to ensure a minimum size for custom
1461 * message types.
1462 */
1463 uint8_t generic[32];
1464 } message;
1465
1466} camera3_notify_msg_t;
1467
1468/**********************************************************************
1469 *
1470 * Capture request/result definitions for the HAL process_capture_request()
1471 * method, and the process_capture_result() callback.
1472 *
1473 */
1474
1475/**
1476 * camera3_request_template_t:
1477 *
1478 * Available template types for
1479 * camera3_device_ops.construct_default_request_settings()
1480 */
1481typedef enum camera3_request_template {
1482 /**
1483 * Standard camera preview operation with 3A on auto.
1484 */
1485 CAMERA3_TEMPLATE_PREVIEW = 1,
1486
1487 /**
1488 * Standard camera high-quality still capture with 3A and flash on auto.
1489 */
1490 CAMERA3_TEMPLATE_STILL_CAPTURE = 2,
1491
1492 /**
1493 * Standard video recording plus preview with 3A on auto, torch off.
1494 */
1495 CAMERA3_TEMPLATE_VIDEO_RECORD = 3,
1496
1497 /**
1498 * High-quality still capture while recording video. Application will
1499 * include preview, video record, and full-resolution YUV or JPEG streams in
1500 * request. Must not cause stuttering on video stream. 3A on auto.
1501 */
1502 CAMERA3_TEMPLATE_VIDEO_SNAPSHOT = 4,
1503
1504 /**
1505 * Zero-shutter-lag mode. Application will request preview and
1506 * full-resolution data for each frame, and reprocess it to JPEG when a
1507 * still image is requested by user. Settings should provide highest-quality
1508 * full-resolution images without compromising preview frame rate. 3A on
1509 * auto.
1510 */
1511 CAMERA3_TEMPLATE_ZERO_SHUTTER_LAG = 5,
1512
1513 /* Total number of templates */
1514 CAMERA3_TEMPLATE_COUNT,
1515
1516 /**
1517 * First value for vendor-defined request templates
1518 */
1519 CAMERA3_VENDOR_TEMPLATE_START = 0x40000000
1520
1521} camera3_request_template_t;
1522
1523/**
1524 * camera3_capture_request_t:
1525 *
1526 * A single request for image capture/buffer reprocessing, sent to the Camera
1527 * HAL device by the framework in process_capture_request().
1528 *
1529 * The request contains the settings to be used for this capture, and the set of
1530 * output buffers to write the resulting image data in. It may optionally
1531 * contain an input buffer, in which case the request is for reprocessing that
1532 * input buffer instead of capturing a new image with the camera sensor. The
1533 * capture is identified by the frame_number.
1534 *
1535 * In response, the camera HAL device must send a camera3_capture_result
1536 * structure asynchronously to the framework, using the process_capture_result()
1537 * callback.
1538 */
1539typedef struct camera3_capture_request {
1540 /**
1541 * The frame number is an incrementing integer set by the framework to
1542 * uniquely identify this capture. It needs to be returned in the result
1543 * call, and is also used to identify the request in asynchronous
1544 * notifications sent to camera3_callback_ops_t.notify().
1545 */
1546 uint32_t frame_number;
1547
1548 /**
1549 * The settings buffer contains the capture and processing parameters for
1550 * the request. As a special case, a NULL settings buffer indicates that the
1551 * settings are identical to the most-recently submitted capture request. A
1552 * NULL buffer cannot be used as the first submitted request after a
1553 * configure_streams() call.
1554 */
1555 const camera_metadata_t *settings;
1556
1557 /**
1558 * The input stream buffer to use for this request, if any.
1559 *
1560 * If input_buffer is NULL, then the request is for a new capture from the
1561 * imager. If input_buffer is valid, the request is for reprocessing the
1562 * image contained in input_buffer.
1563 *
1564 * In the latter case, the HAL must set the release_fence of the
1565 * input_buffer to a valid sync fence, or to -1 if the HAL does not support
1566 * sync, before process_capture_request() returns.
1567 *
1568 * The HAL is required to wait on the acquire sync fence of the input buffer
1569 * before accessing it.
1570 *
1571 * Any input buffer included here will have been registered with the HAL
1572 * through register_stream_buffers() before its inclusion in a request.
1573 */
1574 camera3_stream_buffer_t *input_buffer;
1575
1576 /**
1577 * The number of output buffers for this capture request. Must be at least
1578 * 1.
1579 */
1580 uint32_t num_output_buffers;
1581
1582 /**
1583 * An array of num_output_buffers stream buffers, to be filled with image
1584 * data from this capture/reprocess. The HAL must wait on the acquire fences
1585 * of each stream buffer before writing to them. All the buffers included
1586 * here will have been registered with the HAL through
1587 * register_stream_buffers() before their inclusion in a request.
1588 *
1589 * The HAL takes ownership of the actual buffer_handle_t entries in
1590 * output_buffers; the framework does not access them until they are
1591 * returned in a camera3_capture_result_t.
1592 */
1593 const camera3_stream_buffer_t *output_buffers;
1594
1595} camera3_capture_request_t;
1596
1597/**
1598 * camera3_capture_result_t:
1599 *
1600 * The result of a single capture/reprocess by the camera HAL device. This is
1601 * sent to the framework asynchronously with process_capture_result(), in
1602 * response to a single capture request sent to the HAL with
Eino-Ville Talvala7c9416b2013-04-03 15:18:20 -07001603 * process_capture_request(). Multiple process_capture_result() calls may be
1604 * performed by the HAL for each request. Each call, all with the same frame
1605 * number, may contain some subset of the output buffers, and/or the result
1606 * metadata. The metadata may only be provided once for a given frame number;
1607 * all other calls must set the result metadata to NULL.
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08001608 *
1609 * The result structure contains the output metadata from this capture, and the
1610 * set of output buffers that have been/will be filled for this capture. Each
1611 * output buffer may come with a release sync fence that the framework will wait
1612 * on before reading, in case the buffer has not yet been filled by the HAL.
1613 *
1614 */
1615typedef struct camera3_capture_result {
1616 /**
1617 * The frame number is an incrementing integer set by the framework in the
1618 * submitted request to uniquely identify this capture. It is also used to
1619 * identify the request in asynchronous notifications sent to
1620 * camera3_callback_ops_t.notify().
1621 */
1622 uint32_t frame_number;
1623
1624 /**
1625 * The result metadata for this capture. This contains information about the
1626 * final capture parameters, the state of the capture and post-processing
1627 * hardware, the state of the 3A algorithms, if enabled, and the output of
1628 * any enabled statistics units.
Eino-Ville Talvala7c9416b2013-04-03 15:18:20 -07001629 *
1630 * Only one call to process_capture_result() with a given frame_number may
1631 * include the result metadata. All other calls for the same frame_number
1632 * must set this to NULL.
1633 *
1634 * If there was an error producing the result metadata, result must be an
1635 * empty metadata buffer, and notify() must be called with ERROR_RESULT.
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08001636 */
1637 const camera_metadata_t *result;
1638
1639 /**
Eino-Ville Talvala7c9416b2013-04-03 15:18:20 -07001640 * The number of output buffers returned in this result structure. Must be
1641 * less than or equal to the matching capture request's count. If this is
1642 * less than the buffer count in the capture request, at least one more call
1643 * to process_capture_result with the same frame_number must be made, to
1644 * return the remaining output buffers to the framework. This may only be
1645 * zero if the structure includes valid result metadata.
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08001646 */
1647 uint32_t num_output_buffers;
1648
1649 /**
1650 * The handles for the output stream buffers for this capture. They may not
1651 * yet be filled at the time the HAL calls process_capture_result(); the
1652 * framework will wait on the release sync fences provided by the HAL before
1653 * reading the buffers.
1654 *
1655 * The HAL must set the stream buffer's release sync fence to a valid sync
1656 * fd, or to -1 if the buffer has already been filled.
Eino-Ville Talvala2f8cf5c2013-03-06 13:23:31 -08001657 *
1658 * If the HAL encounters an error while processing the buffer, and the
1659 * buffer is not filled, the buffer's status field must be set to
1660 * CAMERA3_BUFFER_STATUS_ERROR. If the HAL did not wait on the acquire fence
1661 * before encountering the error, the acquire fence should be copied into
1662 * the release fence, to allow the framework to wait on the fence before
1663 * reusing the buffer.
1664 *
Eino-Ville Talvala7c9416b2013-04-03 15:18:20 -07001665 * The acquire fence must be set to -1 for all output buffers. If
1666 * num_output_buffers is zero, this may be NULL. In that case, at least one
1667 * more process_capture_result call must be made by the HAL to provide the
1668 * output buffers.
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08001669 */
1670 const camera3_stream_buffer_t *output_buffers;
1671
1672} camera3_capture_result_t;
1673
1674/**********************************************************************
1675 *
1676 * Callback methods for the HAL to call into the framework.
1677 *
1678 * These methods are used to return metadata and image buffers for a completed
1679 * or failed captures, and to notify the framework of asynchronous events such
1680 * as errors.
1681 *
1682 * The framework will not call back into the HAL from within these callbacks,
1683 * and these calls will not block for extended periods.
1684 *
1685 */
1686typedef struct camera3_callback_ops {
1687
1688 /**
1689 * process_capture_result:
1690 *
Eino-Ville Talvala7c9416b2013-04-03 15:18:20 -07001691 * Send results from a completed capture to the framework.
1692 * process_capture_result() may be invoked multiple times by the HAL in
1693 * response to a single capture request. This allows, for example, the
1694 * metadata and low-resolution buffers to be returned in one call, and
1695 * post-processed JPEG buffers in a later call, once it is available. Each
1696 * call must include the frame number of the request it is returning
1697 * metadata or buffers for.
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08001698 *
Eino-Ville Talvala7c9416b2013-04-03 15:18:20 -07001699 * A component (buffer or metadata) of the complete result may only be
1700 * included in one process_capture_result call. A buffer for each stream,
1701 * and the result metadata, must be returned by the HAL for each request in
1702 * one of the process_capture_result calls, even in case of errors producing
1703 * some of the output. A call to process_capture_result() with neither
1704 * output buffers or result metadata is not allowed.
1705 *
1706 * The order of returning metadata and buffers for a single result does not
1707 * matter, but buffers for a given stream must be returned in FIFO order. So
1708 * the buffer for request 5 for stream A must always be returned before the
1709 * buffer for request 6 for stream A. This also applies to the result
1710 * metadata; the metadata for request 5 must be returned before the metadata
1711 * for request 6.
1712 *
1713 * However, different streams are independent of each other, so it is
1714 * acceptable and expected that the buffer for request 5 for stream A may be
1715 * returned after the buffer for request 6 for stream B is. And it is
1716 * acceptable that the result metadata for request 6 for stream B is
1717 * returned before the buffer for request 5 for stream A is.
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08001718 *
1719 * The HAL retains ownership of result structure, which only needs to be
1720 * valid to access during this call. The framework will copy whatever it
1721 * needs before this call returns.
1722 *
1723 * The output buffers do not need to be filled yet; the framework will wait
1724 * on the stream buffer release sync fence before reading the buffer
Eino-Ville Talvala7c9416b2013-04-03 15:18:20 -07001725 * data. Therefore, this method should be called by the HAL as soon as
1726 * possible, even if some or all of the output buffers are still in
1727 * being filled. The HAL must include valid release sync fences into each
1728 * output_buffers stream buffer entry, or -1 if that stream buffer is
1729 * already filled.
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08001730 *
1731 * If the result buffer cannot be constructed for a request, the HAL should
Eino-Ville Talvala7c9416b2013-04-03 15:18:20 -07001732 * return an empty metadata buffer, but still provide the output buffers and
1733 * their sync fences. In addition, notify() must be called with an
1734 * ERROR_RESULT message.
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08001735 *
Eino-Ville Talvala2f8cf5c2013-03-06 13:23:31 -08001736 * If an output buffer cannot be filled, its status field must be set to
1737 * STATUS_ERROR. In addition, notify() must be called with a ERROR_BUFFER
1738 * message.
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08001739 *
1740 * If the entire capture has failed, then this method still needs to be
Eino-Ville Talvala2f8cf5c2013-03-06 13:23:31 -08001741 * called to return the output buffers to the framework. All the buffer
Eino-Ville Talvala7c9416b2013-04-03 15:18:20 -07001742 * statuses should be STATUS_ERROR, and the result metadata should be an
1743 * empty buffer. In addition, notify() must be called with a ERROR_REQUEST
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08001744 * message. In this case, individual ERROR_RESULT/ERROR_BUFFER messages
1745 * should not be sent.
1746 *
1747 */
1748 void (*process_capture_result)(const struct camera3_callback_ops *,
1749 const camera3_capture_result_t *result);
1750
1751 /**
1752 * notify:
1753 *
1754 * Asynchronous notification callback from the HAL, fired for various
1755 * reasons. Only for information independent of frame capture, or that
1756 * require specific timing. The ownership of the message structure remains
1757 * with the HAL, and the msg only needs to be valid for the duration of this
1758 * call.
1759 *
Eino-Ville Talvala71af1022013-04-22 14:19:21 -07001760 * The notification for the start of exposure for a given request must be
1761 * sent by the HAL before the first call to process_capture_result() for
1762 * that request is made.
1763 *
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08001764 * Multiple threads may call notify() simultaneously.
1765 */
1766 void (*notify)(const struct camera3_callback_ops *,
1767 const camera3_notify_msg_t *msg);
1768
1769} camera3_callback_ops_t;
1770
1771/**********************************************************************
1772 *
1773 * Camera device operations
1774 *
1775 */
1776typedef struct camera3_device_ops {
1777
1778 /**
1779 * initialize:
1780 *
1781 * One-time initialization to pass framework callback function pointers to
1782 * the HAL. Will be called once after a successful open() call, before any
1783 * other functions are called on the camera3_device_ops structure.
1784 *
1785 * Return values:
1786 *
1787 * 0: On successful initialization
1788 *
1789 * -ENODEV: If initialization fails. Only close() can be called successfully
1790 * by the framework after this.
1791 */
1792 int (*initialize)(const struct camera3_device *,
1793 const camera3_callback_ops_t *callback_ops);
1794
1795 /**********************************************************************
1796 * Stream management
1797 */
1798
1799 /**
1800 * configure_streams:
1801 *
1802 * Reset the HAL camera device processing pipeline and set up new input and
1803 * output streams. This call replaces any existing stream configuration with
1804 * the streams defined in the stream_list. This method will be called at
1805 * least once after initialize() before a request is submitted with
1806 * process_capture_request().
1807 *
1808 * The stream_list must contain at least one output-capable stream, and may
1809 * not contain more than one input-capable stream.
1810 *
1811 * The stream_list may contain streams that are also in the currently-active
1812 * set of streams (from the previous call to configure_stream()). These
1813 * streams will already have valid values for usage, max_buffers, and the
1814 * private pointer. If such a stream has already had its buffers registered,
1815 * register_stream_buffers() will not be called again for the stream, and
1816 * buffers from the stream can be immediately included in input requests.
1817 *
1818 * If the HAL needs to change the stream configuration for an existing
1819 * stream due to the new configuration, it may rewrite the values of usage
1820 * and/or max_buffers during the configure call. The framework will detect
1821 * such a change, and will then reallocate the stream buffers, and call
1822 * register_stream_buffers() again before using buffers from that stream in
1823 * a request.
1824 *
1825 * If a currently-active stream is not included in stream_list, the HAL may
1826 * safely remove any references to that stream. It will not be reused in a
1827 * later configure() call by the framework, and all the gralloc buffers for
1828 * it will be freed after the configure_streams() call returns.
1829 *
1830 * The stream_list structure is owned by the framework, and may not be
1831 * accessed once this call completes. The address of an individual
1832 * camera3_stream_t structure will remain valid for access by the HAL until
1833 * the end of the first configure_stream() call which no longer includes
1834 * that camera3_stream_t in the stream_list argument. The HAL may not change
1835 * values in the stream structure outside of the private pointer, except for
1836 * the usage and max_buffers members during the configure_streams() call
1837 * itself.
1838 *
1839 * If the stream is new, the usage, max_buffer, and private pointer fields
1840 * of the stream structure will all be set to 0. The HAL device must set
1841 * these fields before the configure_streams() call returns. These fields
1842 * are then used by the framework and the platform gralloc module to
1843 * allocate the gralloc buffers for each stream.
1844 *
1845 * Before such a new stream can have its buffers included in a capture
1846 * request, the framework will call register_stream_buffers() with that
1847 * stream. However, the framework is not required to register buffers for
1848 * _all_ streams before submitting a request. This allows for quick startup
1849 * of (for example) a preview stream, with allocation for other streams
1850 * happening later or concurrently.
1851 *
1852 * Preconditions:
1853 *
1854 * The framework will only call this method when no captures are being
1855 * processed. That is, all results have been returned to the framework, and
1856 * all in-flight input and output buffers have been returned and their
1857 * release sync fences have been signaled by the HAL. The framework will not
1858 * submit new requests for capture while the configure_streams() call is
1859 * underway.
1860 *
1861 * Postconditions:
1862 *
1863 * The HAL device must configure itself to provide maximum possible output
1864 * frame rate given the sizes and formats of the output streams, as
1865 * documented in the camera device's static metadata.
1866 *
1867 * Performance expectations:
1868 *
1869 * This call is expected to be heavyweight and possibly take several hundred
1870 * milliseconds to complete, since it may require resetting and
1871 * reconfiguring the image sensor and the camera processing pipeline.
1872 * Nevertheless, the HAL device should attempt to minimize the
1873 * reconfiguration delay to minimize the user-visible pauses during
1874 * application operational mode changes (such as switching from still
1875 * capture to video recording).
1876 *
1877 * Return values:
1878 *
1879 * 0: On successful stream configuration
1880 *
1881 * -EINVAL: If the requested stream configuration is invalid. Some examples
1882 * of invalid stream configurations include:
1883 *
1884 * - Including more than 1 input-capable stream (INPUT or
1885 * BIDIRECTIONAL)
1886 *
1887 * - Not including any output-capable streams (OUTPUT or
1888 * BIDIRECTIONAL)
1889 *
1890 * - Including streams with unsupported formats, or an unsupported
1891 * size for that format.
1892 *
1893 * - Including too many output streams of a certain format.
1894 *
Eino-Ville Talvala7effe0c2013-02-15 12:09:48 -08001895 * Note that the framework submitting an invalid stream
1896 * configuration is not normal operation, since stream
1897 * configurations are checked before configure. An invalid
1898 * configuration means that a bug exists in the framework code, or
1899 * there is a mismatch between the HAL's static metadata and the
1900 * requirements on streams.
1901 *
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08001902 * -ENODEV: If there has been a fatal error and the device is no longer
1903 * operational. Only close() can be called successfully by the
1904 * framework after this error is returned.
1905 */
1906 int (*configure_streams)(const struct camera3_device *,
1907 camera3_stream_configuration_t *stream_list);
1908
1909 /**
1910 * register_stream_buffers:
1911 *
1912 * Register buffers for a given stream with the HAL device. This method is
1913 * called by the framework after a new stream is defined by
1914 * configure_streams, and before buffers from that stream are included in a
1915 * capture request. If the same stream is listed in a subsequent
1916 * configure_streams() call, register_stream_buffers will _not_ be called
1917 * again for that stream.
1918 *
1919 * The framework does not need to register buffers for all configured
1920 * streams before it submits the first capture request. This allows quick
1921 * startup for preview (or similar use cases) while other streams are still
1922 * being allocated.
1923 *
1924 * This method is intended to allow the HAL device to map or otherwise
1925 * prepare the buffers for later use. The buffers passed in will already be
1926 * locked for use. At the end of the call, all the buffers must be ready to
1927 * be returned to the stream. The buffer_set argument is only valid for the
1928 * duration of this call.
1929 *
1930 * If the stream format was set to HAL_PIXEL_FORMAT_IMPLEMENTATION_DEFINED,
1931 * the camera HAL should inspect the passed-in buffers here to determine any
1932 * platform-private pixel format information.
1933 *
1934 * Return values:
1935 *
1936 * 0: On successful registration of the new stream buffers
1937 *
1938 * -EINVAL: If the stream_buffer_set does not refer to a valid active
1939 * stream, or if the buffers array is invalid.
1940 *
1941 * -ENOMEM: If there was a failure in registering the buffers. The framework
1942 * must consider all the stream buffers to be unregistered, and can
1943 * try to register again later.
1944 *
1945 * -ENODEV: If there is a fatal error, and the device is no longer
1946 * operational. Only close() can be called successfully by the
1947 * framework after this error is returned.
1948 */
1949 int (*register_stream_buffers)(const struct camera3_device *,
1950 const camera3_stream_buffer_set_t *buffer_set);
1951
1952 /**********************************************************************
1953 * Request creation and submission
1954 */
1955
1956 /**
1957 * construct_default_request_settings:
1958 *
1959 * Create capture settings for standard camera use cases.
1960 *
1961 * The device must return a settings buffer that is configured to meet the
1962 * requested use case, which must be one of the CAMERA3_TEMPLATE_*
1963 * enums. All request control fields must be included.
1964 *
1965 * The HAL retains ownership of this structure, but the pointer to the
1966 * structure must be valid until the device is closed. The framework and the
1967 * HAL may not modify the buffer once it is returned by this call. The same
1968 * buffer may be returned for subsequent calls for the same template, or for
1969 * other templates.
1970 *
1971 * Return values:
1972 *
1973 * Valid metadata: On successful creation of a default settings
1974 * buffer.
1975 *
1976 * NULL: In case of a fatal error. After this is returned, only
Eino-Ville Talvalaacbc4512013-03-16 16:53:28 -07001977 * the close() method can be called successfully by the
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08001978 * framework.
1979 */
1980 const camera_metadata_t* (*construct_default_request_settings)(
1981 const struct camera3_device *,
1982 int type);
1983
1984 /**
1985 * process_capture_request:
1986 *
1987 * Send a new capture request to the HAL. The HAL should not return from
1988 * this call until it is ready to accept the next request to process. Only
1989 * one call to process_capture_request() will be made at a time by the
1990 * framework, and the calls will all be from the same thread. The next call
1991 * to process_capture_request() will be made as soon as a new request and
1992 * its associated buffers are available. In a normal preview scenario, this
1993 * means the function will be called again by the framework almost
1994 * instantly.
1995 *
1996 * The actual request processing is asynchronous, with the results of
1997 * capture being returned by the HAL through the process_capture_result()
1998 * call. This call requires the result metadata to be available, but output
1999 * buffers may simply provide sync fences to wait on. Multiple requests are
2000 * expected to be in flight at once, to maintain full output frame rate.
2001 *
2002 * The framework retains ownership of the request structure. It is only
2003 * guaranteed to be valid during this call. The HAL device must make copies
Eino-Ville Talvala71af1022013-04-22 14:19:21 -07002004 * of the information it needs to retain for the capture processing. The HAL
2005 * is responsible for waiting on and closing the buffers' fences and
2006 * returning the buffer handles to the framework.
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08002007 *
2008 * The HAL must write the file descriptor for the input buffer's release
2009 * sync fence into input_buffer->release_fence, if input_buffer is not
2010 * NULL. If the HAL returns -1 for the input buffer release sync fence, the
2011 * framework is free to immediately reuse the input buffer. Otherwise, the
2012 * framework will wait on the sync fence before refilling and reusing the
2013 * input buffer.
2014 *
2015 * Return values:
2016 *
2017 * 0: On a successful start to processing the capture request
2018 *
2019 * -EINVAL: If the input is malformed (the settings are NULL when not
2020 * allowed, there are 0 output buffers, etc) and capture processing
2021 * cannot start. Failures during request processing should be
Eino-Ville Talvala71af1022013-04-22 14:19:21 -07002022 * handled by calling camera3_callback_ops_t.notify(). In case of
2023 * this error, the framework will retain responsibility for the
2024 * stream buffers' fences and the buffer handles; the HAL should
2025 * not close the fences or return these buffers with
2026 * process_capture_result.
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08002027 *
2028 * -ENODEV: If the camera device has encountered a serious error. After this
2029 * error is returned, only the close() method can be successfully
2030 * called by the framework.
2031 *
2032 */
2033 int (*process_capture_request)(const struct camera3_device *,
2034 camera3_capture_request_t *request);
2035
2036 /**********************************************************************
2037 * Miscellaneous methods
2038 */
2039
2040 /**
2041 * get_metadata_vendor_tag_ops:
2042 *
Eino-Ville Talvalaacbc4512013-03-16 16:53:28 -07002043 * Get methods to query for vendor extension metadata tag information. The
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08002044 * HAL should fill in all the vendor tag operation methods, or leave ops
2045 * unchanged if no vendor tags are defined.
2046 *
2047 * The definition of vendor_tag_query_ops_t can be found in
2048 * system/media/camera/include/system/camera_metadata.h.
2049 *
2050 */
2051 void (*get_metadata_vendor_tag_ops)(const struct camera3_device*,
2052 vendor_tag_query_ops_t* ops);
2053
2054 /**
2055 * dump:
2056 *
2057 * Print out debugging state for the camera device. This will be called by
2058 * the framework when the camera service is asked for a debug dump, which
2059 * happens when using the dumpsys tool, or when capturing a bugreport.
2060 *
2061 * The passed-in file descriptor can be used to write debugging text using
2062 * dprintf() or write(). The text should be in ASCII encoding only.
2063 */
2064 void (*dump)(const struct camera3_device *, int fd);
2065
Alex Ray5f2fd852013-06-24 11:28:05 -07002066 /**
2067 * flush:
2068 *
2069 * Flush all currently in-process captures and all buffers in the pipeline
2070 * on the given device. The framework will use this to dump all state as
2071 * quickly as possible in order to prepare for a configure_streams() call.
2072 *
2073 * No buffers are required to be successfully returned, so every buffer
2074 * held at the time of flush() (whether sucessfully filled or not) may be
2075 * returned with CAMERA3_BUFFER_STATUS_ERROR. Note the HAL is still allowed
2076 * to return valid (STATUS_OK) buffers during this call, provided they are
2077 * succesfully filled.
2078 *
2079 * All requests currently in the HAL are expected to be returned as soon as
2080 * possible. Not-in-process requests should return errors immediately. Any
2081 * interruptible hardware blocks should be stopped, and any uninterruptible
2082 * blocks should be waited on.
2083 *
2084 * flush() should only return when there are no more outstanding buffers or
2085 * requests left in the HAL. The framework may call configure_streams (as
2086 * the HAL state is now quiesced) or may issue new requests.
2087 *
2088 * A flush() call should only take 100ms or less. The maximum time it can
2089 * take is 1 second.
2090 *
2091 * Version information:
2092 *
2093 * only available if device version >= CAMERA_DEVICE_API_VERSION_3_1.
2094 *
2095 * Return values:
2096 *
2097 * 0: On a successful flush of the camera HAL.
2098 *
2099 * -EINVAL: If the input is malformed (the device is not valid).
2100 *
2101 * -ENODEV: If the camera device has encountered a serious error. After this
2102 * error is returned, only the close() method can be successfully
2103 * called by the framework.
2104 */
2105 int (*flush)(const struct camera3_device *);
2106
2107 /* reserved for future use */
2108 void *reserved[8];
Eino-Ville Talvalad2a87752012-11-27 18:06:06 -08002109} camera3_device_ops_t;
2110
2111/**********************************************************************
2112 *
2113 * Camera device definition
2114 *
2115 */
2116typedef struct camera3_device {
2117 /**
2118 * common.version must equal CAMERA_DEVICE_API_VERSION_3_0 to identify this
2119 * device as implementing version 3.0 of the camera device HAL.
2120 */
2121 hw_device_t common;
2122 camera3_device_ops_t *ops;
2123 void *priv;
2124} camera3_device_t;
2125
2126__END_DECLS
2127
2128#endif /* #ifdef ANDROID_INCLUDE_CAMERA3_H */