blob: 9c0210b0dd7a16d3fd669e6cb7f37bc028f7a588 [file] [log] [blame]
Eino-Ville Talvala7fa43f32013-02-06 17:20:07 -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
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -080017#ifndef ANDROID_SERVERS_CAMERA3DEVICE_H
18#define ANDROID_SERVERS_CAMERA3DEVICE_H
Eino-Ville Talvala7fa43f32013-02-06 17:20:07 -080019
Eino-Ville Talvala0b1cb142016-12-19 16:29:17 -080020#include <utility>
21#include <unordered_map>
22
Eino-Ville Talvala7fa43f32013-02-06 17:20:07 -080023#include <utils/Condition.h>
24#include <utils/Errors.h>
25#include <utils/List.h>
26#include <utils/Mutex.h>
27#include <utils/Thread.h>
Eino-Ville Talvala7b82efe2013-07-25 17:12:35 -070028#include <utils/KeyedVector.h>
Shuzhen Wangc28dccc2016-02-11 23:48:46 -080029#include <utils/Timers.h>
Eino-Ville Talvala0b1cb142016-12-19 16:29:17 -080030
31#include <android/hardware/camera/device/3.2/ICameraDevice.h>
32#include <android/hardware/camera/device/3.2/ICameraDeviceSession.h>
33#include <android/hardware/camera/device/3.2/ICameraDeviceCallback.h>
Eino-Ville Talvala7b82efe2013-07-25 17:12:35 -070034#include <hardware/camera3.h>
Eino-Ville Talvala0b1cb142016-12-19 16:29:17 -080035
Jianing Weicb0652e2014-03-12 18:29:36 -070036#include <camera/CaptureResult.h>
Eino-Ville Talvala7fa43f32013-02-06 17:20:07 -080037
Eino-Ville Talvala7b82efe2013-07-25 17:12:35 -070038#include "common/CameraDeviceBase.h"
Eino-Ville Talvalaf1e98d82013-09-06 09:32:43 -070039#include "device3/StatusTracker.h"
Zhijun He125684a2015-12-26 15:07:30 -080040#include "device3/Camera3BufferManager.h"
Eino-Ville Talvala4d453832016-07-15 11:56:53 -070041#include "utils/TagMonitor.h"
Emilian Peev71c73a22017-03-21 16:35:51 +000042#include <camera_metadata_hidden.h>
Eino-Ville Talvala7fa43f32013-02-06 17:20:07 -080043
44/**
45 * Function pointer types with C calling convention to
46 * use for HAL callback functions.
47 */
48extern "C" {
49 typedef void (callbacks_process_capture_result_t)(
50 const struct camera3_callback_ops *,
51 const camera3_capture_result_t *);
52
53 typedef void (callbacks_notify_t)(
54 const struct camera3_callback_ops *,
55 const camera3_notify_msg_t *);
56}
57
58namespace android {
59
Eino-Ville Talvala7b82efe2013-07-25 17:12:35 -070060namespace camera3 {
61
62class Camera3Stream;
63class Camera3ZslStream;
64class Camera3OutputStreamInterface;
65class Camera3StreamInterface;
66
Eino-Ville Talvala0b1cb142016-12-19 16:29:17 -080067} // namespace camera3
Eino-Ville Talvala7b82efe2013-07-25 17:12:35 -070068
Eino-Ville Talvala7fa43f32013-02-06 17:20:07 -080069/**
Zhijun He95dd5ba2014-03-26 18:18:00 -070070 * CameraDevice for HAL devices with version CAMERA_DEVICE_API_VERSION_3_0 or higher.
Eino-Ville Talvala7fa43f32013-02-06 17:20:07 -080071 */
72class Camera3Device :
73 public CameraDeviceBase,
Eino-Ville Talvala0b1cb142016-12-19 16:29:17 -080074 virtual public hardware::camera::device::V3_2::ICameraDeviceCallback,
Eino-Ville Talvala7fa43f32013-02-06 17:20:07 -080075 private camera3_callback_ops {
76 public:
Ruben Brunkc78ac262015-08-13 17:58:46 -070077
Eino-Ville Talvala2f09bac2016-12-13 11:29:54 -080078 explicit Camera3Device(const String8& id);
Eino-Ville Talvala7fa43f32013-02-06 17:20:07 -080079
80 virtual ~Camera3Device();
81
82 /**
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -080083 * CameraDeviceBase interface
Eino-Ville Talvala7fa43f32013-02-06 17:20:07 -080084 */
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -080085
Eino-Ville Talvala0b1cb142016-12-19 16:29:17 -080086 const String8& getId() const override;
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -080087
88 // Transitions to idle state on success.
Eino-Ville Talvala0b1cb142016-12-19 16:29:17 -080089 status_t initialize(CameraModule *module) override;
90 status_t initialize(sp<CameraProviderManager> manager) override;
91 status_t disconnect() override;
92 status_t dump(int fd, const Vector<String16> &args) override;
93 const CameraMetadata& info() const override;
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -080094
95 // Capture and setStreamingRequest will configure streams if currently in
96 // idle state
Eino-Ville Talvala0b1cb142016-12-19 16:29:17 -080097 status_t capture(CameraMetadata &request, int64_t *lastFrameNumber = NULL) override;
98 status_t captureList(const List<const CameraMetadata> &requests,
Shuzhen Wang0129d522016-10-30 22:43:41 -070099 const std::list<const SurfaceMap> &surfaceMaps,
Eino-Ville Talvala0b1cb142016-12-19 16:29:17 -0800100 int64_t *lastFrameNumber = NULL) override;
101 status_t setStreamingRequest(const CameraMetadata &request,
102 int64_t *lastFrameNumber = NULL) override;
103 status_t setStreamingRequestList(const List<const CameraMetadata> &requests,
Shuzhen Wang0129d522016-10-30 22:43:41 -0700104 const std::list<const SurfaceMap> &surfaceMaps,
Eino-Ville Talvala0b1cb142016-12-19 16:29:17 -0800105 int64_t *lastFrameNumber = NULL) override;
106 status_t clearStreamingRequest(int64_t *lastFrameNumber = NULL) override;
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -0800107
Eino-Ville Talvala0b1cb142016-12-19 16:29:17 -0800108 status_t waitUntilRequestReceived(int32_t requestId, nsecs_t timeout) override;
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -0800109
110 // Actual stream creation/deletion is delayed until first request is submitted
111 // If adding streams while actively capturing, will pause device before adding
Zhijun He5d677d12016-05-29 16:52:39 -0700112 // stream, reconfiguring device, and unpausing. If the client create a stream
Shuzhen Wang758c2152017-01-10 18:26:18 -0800113 // with nullptr consumer surface, the client must then call setConsumers()
Zhijun He5d677d12016-05-29 16:52:39 -0700114 // and finish the stream configuration before starting output streaming.
Eino-Ville Talvala0b1cb142016-12-19 16:29:17 -0800115 status_t createStream(sp<Surface> consumer,
Eino-Ville Talvala3d82c0d2015-02-23 15:19:19 -0800116 uint32_t width, uint32_t height, int format,
Zhijun He125684a2015-12-26 15:07:30 -0800117 android_dataspace dataSpace, camera3_stream_rotation_t rotation, int *id,
Zhijun He5d677d12016-05-29 16:52:39 -0700118 int streamSetId = camera3::CAMERA3_STREAM_SET_ID_INVALID,
Shuzhen Wang758c2152017-01-10 18:26:18 -0800119 bool isShared = false, uint32_t consumerUsage = 0) override;
Shuzhen Wang0129d522016-10-30 22:43:41 -0700120 status_t createStream(const std::vector<sp<Surface>>& consumers,
121 bool hasDeferredConsumer, uint32_t width, uint32_t height, int format,
122 android_dataspace dataSpace, camera3_stream_rotation_t rotation, int *id,
123 int streamSetId = camera3::CAMERA3_STREAM_SET_ID_INVALID,
Shuzhen Wang758c2152017-01-10 18:26:18 -0800124 bool isShared = false, uint32_t consumerUsage = 0) override;
Shuzhen Wang0129d522016-10-30 22:43:41 -0700125
Eino-Ville Talvala0b1cb142016-12-19 16:29:17 -0800126 status_t createInputStream(
Igor Murashkin5a269fa2013-04-15 14:59:22 -0700127 uint32_t width, uint32_t height, int format,
Eino-Ville Talvala0b1cb142016-12-19 16:29:17 -0800128 int *id) override;
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -0800129
Eino-Ville Talvala0b1cb142016-12-19 16:29:17 -0800130 status_t getStreamInfo(int id,
Eino-Ville Talvalad46a6b92015-05-14 17:26:24 -0700131 uint32_t *width, uint32_t *height,
Eino-Ville Talvala0b1cb142016-12-19 16:29:17 -0800132 uint32_t *format, android_dataspace *dataSpace) override;
133 status_t setStreamTransform(int id, int transform) override;
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -0800134
Eino-Ville Talvala0b1cb142016-12-19 16:29:17 -0800135 status_t deleteStream(int id) override;
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -0800136
Eino-Ville Talvalabbbbe842017-02-28 17:50:56 -0800137 status_t configureStreams(int operatingMode =
138 static_cast<int>(hardware::camera::device::V3_2::StreamConfigurationMode::NORMAL_MODE))
139 override;
Eino-Ville Talvala0b1cb142016-12-19 16:29:17 -0800140 status_t getInputBufferProducer(
141 sp<IGraphicBufferProducer> *producer) override;
Igor Murashkine2d167e2014-08-19 16:19:59 -0700142
Eino-Ville Talvala0b1cb142016-12-19 16:29:17 -0800143 status_t createDefaultRequest(int templateId, CameraMetadata *request) override;
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -0800144
145 // Transitions to the idle state on success
Eino-Ville Talvala0b1cb142016-12-19 16:29:17 -0800146 status_t waitUntilDrained() override;
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -0800147
Eino-Ville Talvala0b1cb142016-12-19 16:29:17 -0800148 status_t setNotifyCallback(wp<NotificationListener> listener) override;
149 bool willNotify3A() override;
150 status_t waitForNextFrame(nsecs_t timeout) override;
151 status_t getNextResult(CaptureResult *frame) override;
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -0800152
Eino-Ville Talvala0b1cb142016-12-19 16:29:17 -0800153 status_t triggerAutofocus(uint32_t id) override;
154 status_t triggerCancelAutofocus(uint32_t id) override;
155 status_t triggerPrecaptureMetering(uint32_t id) override;
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -0800156
Eino-Ville Talvala0b1cb142016-12-19 16:29:17 -0800157 status_t flush(int64_t *lastFrameNumber = NULL) override;
Eino-Ville Talvalaabaa51d2013-08-14 11:37:00 -0700158
Eino-Ville Talvala0b1cb142016-12-19 16:29:17 -0800159 status_t prepare(int streamId) override;
Eino-Ville Talvala4d44cad2015-04-11 13:15:45 -0700160
Eino-Ville Talvala0b1cb142016-12-19 16:29:17 -0800161 status_t tearDown(int streamId) override;
Eino-Ville Talvalab25e3c82015-07-15 16:04:27 -0700162
Eino-Ville Talvala0b1cb142016-12-19 16:29:17 -0800163 status_t addBufferListenerForStream(int streamId,
164 wp<camera3::Camera3StreamBufferListener> listener) override;
Shuzhen Wangb0fdc1e2016-03-20 23:21:39 -0700165
Eino-Ville Talvala0b1cb142016-12-19 16:29:17 -0800166 status_t prepare(int maxCount, int streamId) override;
Ruben Brunkc78ac262015-08-13 17:58:46 -0700167
Eino-Ville Talvala0b1cb142016-12-19 16:29:17 -0800168 uint32_t getDeviceVersion() override;
Zhijun He204e3292014-07-14 17:09:23 -0700169
Eino-Ville Talvala0b1cb142016-12-19 16:29:17 -0800170 ssize_t getJpegBufferSize(uint32_t width, uint32_t height) const override;
Eino-Ville Talvala95a1d0f2015-08-11 15:08:53 -0700171 ssize_t getPointCloudBufferSize() const;
Eino-Ville Talvalad56db1d2015-12-17 16:50:35 -0800172 ssize_t getRawOpaqueBufferSize(int32_t width, int32_t height) const;
Zhijun He28c9b6f2014-08-08 12:00:47 -0700173
Eino-Ville Talvalaf1e98d82013-09-06 09:32:43 -0700174 // Methods called by subclasses
175 void notifyStatus(bool idle); // updates from StatusTracker
176
Zhijun He5d677d12016-05-29 16:52:39 -0700177 /**
Shuzhen Wang758c2152017-01-10 18:26:18 -0800178 * Set the deferred consumer surfaces to the output stream and finish the deferred
Zhijun He5d677d12016-05-29 16:52:39 -0700179 * consumer configuration.
180 */
Shuzhen Wang758c2152017-01-10 18:26:18 -0800181 status_t setConsumerSurfaces(int streamId, const std::vector<sp<Surface>>& consumers) override;
Zhijun He5d677d12016-05-29 16:52:39 -0700182
Eino-Ville Talvala7fa43f32013-02-06 17:20:07 -0800183 private:
Igor Murashkin1e479c02013-09-06 16:55:14 -0700184 static const size_t kDumpLockAttempts = 10;
185 static const size_t kDumpSleepDuration = 100000; // 0.10 sec
Eino-Ville Talvala42368d92013-04-09 14:13:50 -0700186 static const nsecs_t kShutdownTimeout = 5000000000; // 5 sec
Eino-Ville Talvalaf1e98d82013-09-06 09:32:43 -0700187 static const nsecs_t kActiveTimeout = 500000000; // 500 ms
Chien-Yu Chenc96ac8d2015-08-12 16:46:24 -0700188 static const size_t kInFlightWarnLimit = 20;
189 static const size_t kInFlightWarnLimitHighSpeed = 256; // batch size 32 * pipe depth 8
Eino-Ville Talvalaf99498e2015-09-25 16:52:55 -0700190 // SCHED_FIFO priority for request submission thread in HFR mode
Zhijun He7ee4c072016-07-25 13:52:28 -0700191 static const int kRequestThreadPriority = 1;
Chien-Yu Chenc96ac8d2015-08-12 16:46:24 -0700192
Igor Murashkin4d2f2e82013-04-01 17:29:07 -0700193 struct RequestTrigger;
Zhijun Hef7da0962014-04-24 13:27:56 -0700194 // minimal jpeg buffer size: 256KB + blob header
195 static const ssize_t kMinJpegBufferSize = 256 * 1024 + sizeof(camera3_jpeg_blob);
Eino-Ville Talvala16a2ada2014-08-27 14:41:33 -0700196 // Constant to use for stream ID when one doesn't exist
197 static const int NO_STREAM = -1;
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -0800198
Eino-Ville Talvalaf1e98d82013-09-06 09:32:43 -0700199 // A lock to enforce serialization on the input/configure side
200 // of the public interface.
201 // Only locked by public methods inherited from CameraDeviceBase.
202 // Not locked by methods guarded by mOutputLock, since they may act
203 // concurrently to the input/configure side of the interface.
204 // Must be locked before mLock if both will be locked by a method
205 Mutex mInterfaceLock;
206
207 // The main lock on internal state
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -0800208 Mutex mLock;
209
Eino-Ville Talvalaf1e98d82013-09-06 09:32:43 -0700210 // Camera device ID
Eino-Ville Talvala0b1cb142016-12-19 16:29:17 -0800211 const String8 mId;
Eino-Ville Talvalaf1e98d82013-09-06 09:32:43 -0700212
Eino-Ville Talvalabbbbe842017-02-28 17:50:56 -0800213 // Current stream configuration mode;
214 int mOperatingMode;
215 // Constant to use for no set operating mode
216 static const int NO_MODE = -1;
217
Zhijun He1fa89992015-06-01 15:44:31 -0700218 // Flag indicating is the current active stream configuration is constrained high speed.
219 bool mIsConstrainedHighSpeedConfiguration;
220
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -0800221 /**** Scope for mLock ****/
222
Eino-Ville Talvala0b1cb142016-12-19 16:29:17 -0800223 /**
224 * Adapter for legacy HAL / HIDL HAL interface calls; calls either into legacy HALv3 or the
225 * HIDL HALv3 interfaces.
226 */
Yin-Chia Yehbe83fa72017-03-30 13:35:36 -0700227 class HalInterface : public camera3::Camera3StreamBufferFreedListener {
Eino-Ville Talvala0b1cb142016-12-19 16:29:17 -0800228 public:
229 HalInterface(camera3_device_t *device);
230 HalInterface(sp<hardware::camera::device::V3_2::ICameraDeviceSession> &session);
231 HalInterface(const HalInterface &other);
232 HalInterface();
233
234 // Returns true if constructed with a valid device or session, and not yet cleared
235 bool valid();
236
237 // Reset this HalInterface object (does not call close())
238 void clear();
239
Yin-Chia Yeh94c68e02017-03-06 14:09:44 -0800240 // Check if HalInterface support sending requests in batch
241 bool supportBatchRequest();
242
Eino-Ville Talvala0b1cb142016-12-19 16:29:17 -0800243 // Calls into the HAL interface
244
245 // Caller takes ownership of requestTemplate
246 status_t constructDefaultRequestSettings(camera3_request_template_t templateId,
247 /*out*/ camera_metadata_t **requestTemplate);
248 status_t configureStreams(/*inout*/ camera3_stream_configuration *config);
249 status_t processCaptureRequest(camera3_capture_request_t *request);
Yin-Chia Yeh94c68e02017-03-06 14:09:44 -0800250 status_t processBatchCaptureRequests(
251 std::vector<camera3_capture_request_t*>& requests,
252 /*out*/uint32_t* numRequestProcessed);
Eino-Ville Talvala0b1cb142016-12-19 16:29:17 -0800253 status_t flush();
254 status_t dump(int fd);
255 status_t close();
256
257 // Find a buffer_handle_t based on frame number and stream ID
258 status_t popInflightBuffer(int32_t frameNumber, int32_t streamId,
259 /*out*/ buffer_handle_t **buffer);
260
261 private:
262 camera3_device_t *mHal3Device;
263 sp<hardware::camera::device::V3_2::ICameraDeviceSession> mHidlSession;
264
265 std::mutex mInflightLock;
266
Yin-Chia Yeh94c68e02017-03-06 14:09:44 -0800267 // The output HIDL request still depends on input camera3_capture_request_t
268 // Do not free input camera3_capture_request_t before output HIDL request
269 void wrapAsHidlRequest(camera3_capture_request_t* in,
270 /*out*/hardware::camera::device::V3_2::CaptureRequest* out,
271 /*out*/std::vector<native_handle_t*>* handlesCreated);
272
Eino-Ville Talvala0b1cb142016-12-19 16:29:17 -0800273 status_t pushInflightBufferLocked(int32_t frameNumber, int32_t streamId,
Yin-Chia Yehf4650602017-01-10 13:13:39 -0800274 buffer_handle_t *buffer, int acquireFence);
Eino-Ville Talvala0b1cb142016-12-19 16:29:17 -0800275 // Cache of buffer handles keyed off (frameNumber << 32 | streamId)
Yin-Chia Yehf4650602017-01-10 13:13:39 -0800276 // value is a pair of (buffer_handle_t*, acquire_fence FD)
277 std::unordered_map<uint64_t, std::pair<buffer_handle_t*, int>> mInflightBufferMap;
Yin-Chia Yeh77327052017-01-09 18:23:07 -0800278
279 struct BufferHasher {
280 size_t operator()(const buffer_handle_t& buf) const {
281 if (buf == nullptr)
282 return 0;
283
284 size_t result = 1;
285 result = 31 * result + buf->numFds;
286 result = 31 * result + buf->numInts;
287 int length = buf->numFds + buf->numInts;
288 for (int i = 0; i < length; i++) {
289 result = 31 * result + buf->data[i];
290 }
291 return result;
292 }
293 };
294
295 struct BufferComparator {
296 bool operator()(const buffer_handle_t& buf1, const buffer_handle_t& buf2) const {
297 if (buf1->numFds == buf2->numFds && buf1->numInts == buf2->numInts) {
298 int length = buf1->numFds + buf1->numInts;
299 for (int i = 0; i < length; i++) {
300 if (buf1->data[i] != buf2->data[i]) {
301 return false;
302 }
303 }
304 return true;
305 }
306 return false;
307 }
308 };
309
310 std::mutex mBufferIdMapLock; // protecting mBufferIdMaps and mNextBufferId
311 typedef std::unordered_map<const buffer_handle_t, uint64_t,
312 BufferHasher, BufferComparator> BufferIdMap;
313 // stream ID -> per stream buffer ID map
314 std::unordered_map<int, BufferIdMap> mBufferIdMaps;
315 uint64_t mNextBufferId = 1; // 0 means no buffer
316 static const uint64_t BUFFER_ID_NO_BUFFER = 0;
317
318 // method to extract buffer's unique ID
319 // TODO: we should switch to use gralloc mapper's getBackingStore API
320 // once we ran in binderized gralloc mode, but before that is ready,
321 // we need to rely on the conventional buffer queue behavior where
322 // buffer_handle_t's FD won't change.
323 // return pair of (newlySeenBuffer?, bufferId)
324 std::pair<bool, uint64_t> getBufferId(const buffer_handle_t& buf, int streamId);
Yin-Chia Yehbe83fa72017-03-30 13:35:36 -0700325
326 virtual void onBufferFreed(int streamId, const native_handle_t* handle) override;
327
328 std::vector<std::pair<int, uint64_t>> mFreedBuffers;
Eino-Ville Talvala0b1cb142016-12-19 16:29:17 -0800329 };
330
331 std::unique_ptr<HalInterface> mInterface;
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -0800332
333 CameraMetadata mDeviceInfo;
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -0800334
Zhijun Hea1530f12014-09-14 12:44:20 -0700335 CameraMetadata mRequestTemplateCache[CAMERA3_TEMPLATE_COUNT];
336
Zhijun He204e3292014-07-14 17:09:23 -0700337 uint32_t mDeviceVersion;
Yin-Chia Yehcd8fce82014-06-18 10:51:34 -0700338
Yin-Chia Yeh4c060992016-04-11 17:40:12 -0700339 // whether Camera3Device should derive ANDROID_CONTROL_POST_RAW_SENSITIVITY_BOOST for
340 // backward compatibility. Should not be changed after initialization.
341 bool mDerivePostRawSensKey = false;
342
Chien-Yu Chen618ff8a2015-03-13 11:27:17 -0700343 struct Size {
344 uint32_t width;
345 uint32_t height;
Chih-Hung Hsieh8b0b9712016-08-09 14:25:53 -0700346 explicit Size(uint32_t w = 0, uint32_t h = 0) : width(w), height(h){}
Chien-Yu Chen618ff8a2015-03-13 11:27:17 -0700347 };
348 // Map from format to size.
349 Vector<Size> mSupportedOpaqueInputSizes;
350
Eino-Ville Talvalaf1e98d82013-09-06 09:32:43 -0700351 enum Status {
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -0800352 STATUS_ERROR,
353 STATUS_UNINITIALIZED,
Eino-Ville Talvalaf1e98d82013-09-06 09:32:43 -0700354 STATUS_UNCONFIGURED,
355 STATUS_CONFIGURED,
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -0800356 STATUS_ACTIVE
357 } mStatus;
Ruben Brunk183f0562015-08-12 12:55:02 -0700358
359 // Only clear mRecentStatusUpdates, mStatusWaiters from waitUntilStateThenRelock
Eino-Ville Talvalaf1e98d82013-09-06 09:32:43 -0700360 Vector<Status> mRecentStatusUpdates;
Ruben Brunk183f0562015-08-12 12:55:02 -0700361 int mStatusWaiters;
362
Eino-Ville Talvalaf1e98d82013-09-06 09:32:43 -0700363 Condition mStatusChanged;
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -0800364
Eino-Ville Talvalab2058d12013-04-09 13:49:56 -0700365 // Tracking cause of fatal errors when in STATUS_ERROR
366 String8 mErrorCause;
367
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -0800368 // Mapping of stream IDs to stream instances
Igor Murashkin2fba5842013-04-22 14:03:54 -0700369 typedef KeyedVector<int, sp<camera3::Camera3OutputStreamInterface> >
370 StreamSet;
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -0800371
372 StreamSet mOutputStreams;
373 sp<camera3::Camera3Stream> mInputStream;
374 int mNextStreamId;
Eino-Ville Talvalaea26c772013-06-11 16:04:06 -0700375 bool mNeedConfig;
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -0800376
Eino-Ville Talvala16a2ada2014-08-27 14:41:33 -0700377 int mDummyStreamId;
378
Eino-Ville Talvalaf1e98d82013-09-06 09:32:43 -0700379 // Whether to send state updates upstream
380 // Pause when doing transparent reconfiguration
381 bool mPauseStateNotify;
382
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -0800383 // Need to hold on to stream references until configure completes.
Igor Murashkin2fba5842013-04-22 14:03:54 -0700384 Vector<sp<camera3::Camera3StreamInterface> > mDeletedStreams;
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -0800385
Zhijun He204e3292014-07-14 17:09:23 -0700386 // Whether the HAL will send partial result
387 bool mUsePartialResult;
388
389 // Number of partial results that will be delivered by the HAL.
390 uint32_t mNumPartialResults;
Eino-Ville Talvalafd6ecdd2013-10-11 09:51:09 -0700391
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -0800392 /**** End scope for mLock ****/
393
Shuzhen Wangc28dccc2016-02-11 23:48:46 -0800394 // The offset converting from clock domain of other subsystem
395 // (video/hardware composer) to that of camera. Assumption is that this
396 // offset won't change during the life cycle of the camera device. In other
397 // words, camera device shouldn't be open during CPU suspend.
398 nsecs_t mTimestampOffset;
399
Chien-Yu Chend196d612015-06-22 19:49:01 -0700400 typedef struct AeTriggerCancelOverride {
401 bool applyAeLock;
402 uint8_t aeLock;
403 bool applyAePrecaptureTrigger;
404 uint8_t aePrecaptureTrigger;
405 } AeTriggerCancelOverride_t;
406
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -0800407 class CaptureRequest : public LightRefBase<CaptureRequest> {
408 public:
409 CameraMetadata mSettings;
410 sp<camera3::Camera3Stream> mInputStream;
Chien-Yu Chenc2adf482015-05-27 14:27:49 -0700411 camera3_stream_buffer_t mInputBuffer;
Igor Murashkin2fba5842013-04-22 14:03:54 -0700412 Vector<sp<camera3::Camera3OutputStreamInterface> >
413 mOutputStreams;
Shuzhen Wang0129d522016-10-30 22:43:41 -0700414 SurfaceMap mOutputSurfaces;
Jianing Weicb0652e2014-03-12 18:29:36 -0700415 CaptureResultExtras mResultExtras;
Chien-Yu Chend196d612015-06-22 19:49:01 -0700416 // Used to cancel AE precapture trigger for devices doesn't support
417 // CONTROL_AE_PRECAPTURE_TRIGGER_CANCEL
418 AeTriggerCancelOverride_t mAeTriggerCancelOverride;
Chien-Yu Chen85a64552015-08-28 15:46:12 -0700419 // The number of requests that should be submitted to HAL at a time.
420 // For example, if batch size is 8, this request and the following 7
421 // requests will be submitted to HAL at a time. The batch size for
422 // the following 7 requests will be ignored by the request thread.
423 int mBatchSize;
Shuzhen Wang9d066012016-09-30 11:30:20 -0700424 // Whether this request is from a repeating or repeating burst.
425 bool mRepeating;
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -0800426 };
427 typedef List<sp<CaptureRequest> > RequestList;
428
Jianing Wei90e59c92014-03-12 18:29:36 -0700429 status_t checkStatusOkToCaptureLocked();
430
431 status_t convertMetadataListToRequestListLocked(
432 const List<const CameraMetadata> &metadataList,
Shuzhen Wang0129d522016-10-30 22:43:41 -0700433 const std::list<const SurfaceMap> &surfaceMaps,
Shuzhen Wang9d066012016-09-30 11:30:20 -0700434 bool repeating,
Jianing Wei2d6bb3f2014-04-11 10:00:31 -0700435 /*out*/
436 RequestList *requestList);
Jianing Wei90e59c92014-03-12 18:29:36 -0700437
Shuzhen Wang0129d522016-10-30 22:43:41 -0700438 void convertToRequestList(List<const CameraMetadata>& requests,
439 std::list<const SurfaceMap>& surfaceMaps,
440 const CameraMetadata& request);
441
442 status_t submitRequestsHelper(const List<const CameraMetadata> &requests,
443 const std::list<const SurfaceMap> &surfaceMaps,
444 bool repeating,
Jianing Weicb0652e2014-03-12 18:29:36 -0700445 int64_t *lastFrameNumber = NULL);
Jianing Wei90e59c92014-03-12 18:29:36 -0700446
Eino-Ville Talvala0b1cb142016-12-19 16:29:17 -0800447
448 /**
449 * Implementation of android::hardware::camera::device::V3_2::ICameraDeviceCallback
450 */
451
452 hardware::Return<void> processCaptureResult(
Yin-Chia Yeh94c68e02017-03-06 14:09:44 -0800453 const hardware::hidl_vec<
454 hardware::camera::device::V3_2::CaptureResult>& results) override;
Eino-Ville Talvala0b1cb142016-12-19 16:29:17 -0800455 hardware::Return<void> notify(
Yin-Chia Yeh94c68e02017-03-06 14:09:44 -0800456 const hardware::hidl_vec<
457 hardware::camera::device::V3_2::NotifyMsg>& msgs) override;
458
459 // Handle one capture result
460 void processOneCaptureResult(
461 const hardware::camera::device::V3_2::CaptureResult& results);
462 // Handle one notify message
463 void notify(const hardware::camera::device::V3_2::NotifyMsg& msg);
Eino-Ville Talvala0b1cb142016-12-19 16:29:17 -0800464
465 /**
466 * Common initialization code shared by both HAL paths
467 *
468 * Must be called with mLock and mInterfaceLock held.
469 */
470 status_t initializeCommonLocked();
471
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -0800472 /**
Igor Murashkin1e479c02013-09-06 16:55:14 -0700473 * Get the last request submitted to the hal by the request thread.
474 *
Eino-Ville Talvala0b1cb142016-12-19 16:29:17 -0800475 * Must be called with mLock held.
Igor Murashkin1e479c02013-09-06 16:55:14 -0700476 */
Eino-Ville Talvalaf1e98d82013-09-06 09:32:43 -0700477 virtual CameraMetadata getLatestRequestLocked();
Igor Murashkin1e479c02013-09-06 16:55:14 -0700478
479 /**
Ruben Brunk183f0562015-08-12 12:55:02 -0700480 * Update the current device status and wake all waiting threads.
481 *
482 * Must be called with mLock held.
483 */
484 void internalUpdateStatusLocked(Status status);
485
486 /**
Eino-Ville Talvalaf1e98d82013-09-06 09:32:43 -0700487 * Pause processing and flush everything, but don't tell the clients.
488 * This is for reconfiguring outputs transparently when according to the
489 * CameraDeviceBase interface we shouldn't need to.
490 * Must be called with mLock and mInterfaceLock both held.
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -0800491 */
Eino-Ville Talvalaf1e98d82013-09-06 09:32:43 -0700492 status_t internalPauseAndWaitLocked();
493
494 /**
495 * Resume work after internalPauseAndWaitLocked()
496 * Must be called with mLock and mInterfaceLock both held.
497 */
498 status_t internalResumeLocked();
499
500 /**
501 * Wait until status tracker tells us we've transitioned to the target state
502 * set, which is either ACTIVE when active==true or IDLE (which is any
503 * non-ACTIVE state) when active==false.
504 *
505 * Needs to be called with mLock and mInterfaceLock held. This means there
506 * can ever only be one waiter at most.
507 *
508 * During the wait mLock is released.
509 *
510 */
511 status_t waitUntilStateThenRelock(bool active, nsecs_t timeout);
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -0800512
513 /**
Zhijun He69a37482014-03-23 18:44:49 -0700514 * Implementation of waitUntilDrained. On success, will transition to IDLE state.
515 *
516 * Need to be called with mLock and mInterfaceLock held.
517 */
518 status_t waitUntilDrainedLocked();
519
520 /**
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -0800521 * Do common work for setting up a streaming or single capture request.
522 * On success, will transition to ACTIVE if in IDLE.
523 */
Shuzhen Wang0129d522016-10-30 22:43:41 -0700524 sp<CaptureRequest> setUpRequestLocked(const CameraMetadata &request,
525 const SurfaceMap &surfaceMap);
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -0800526
527 /**
528 * Build a CaptureRequest request from the CameraDeviceBase request
529 * settings.
530 */
Shuzhen Wang0129d522016-10-30 22:43:41 -0700531 sp<CaptureRequest> createCaptureRequest(const CameraMetadata &request,
532 const SurfaceMap &surfaceMap);
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -0800533
534 /**
535 * Take the currently-defined set of streams and configure the HAL to use
536 * them. This is a long-running operation (may be several hundered ms).
537 */
Eino-Ville Talvalae7091aa2017-03-07 15:23:06 -0800538 status_t configureStreamsLocked(int operatingMode);
Eino-Ville Talvala7fa43f32013-02-06 17:20:07 -0800539
Eino-Ville Talvalab2058d12013-04-09 13:49:56 -0700540 /**
Chien-Yu Chen9b5860b2016-06-10 13:39:09 -0700541 * Cancel stream configuration that did not finish successfully.
542 */
543 void cancelStreamsConfigurationLocked();
544
545 /**
Eino-Ville Talvala16a2ada2014-08-27 14:41:33 -0700546 * Add a dummy stream to the current stream set as a workaround for
547 * not allowing 0 streams in the camera HAL spec.
548 */
549 status_t addDummyStreamLocked();
550
551 /**
552 * Remove a dummy stream if the current config includes real streams.
553 */
554 status_t tryRemoveDummyStreamLocked();
555
556 /**
Eino-Ville Talvalab2058d12013-04-09 13:49:56 -0700557 * Set device into an error state due to some fatal failure, and set an
558 * error message to indicate why. Only the first call's message will be
559 * used. The message is also sent to the log.
560 */
561 void setErrorState(const char *fmt, ...);
562 void setErrorStateV(const char *fmt, va_list args);
563 void setErrorStateLocked(const char *fmt, ...);
564 void setErrorStateLockedV(const char *fmt, va_list args);
565
Eino-Ville Talvalaf1e98d82013-09-06 09:32:43 -0700566 /**
567 * Debugging trylock/spin method
568 * Try to acquire a lock a few times with sleeps between before giving up.
569 */
570 bool tryLockSpinRightRound(Mutex& lock);
571
Chien-Yu Chen618ff8a2015-03-13 11:27:17 -0700572 /**
573 * Helper function to determine if an input size for implementation defined
574 * format is supported.
575 */
576 bool isOpaqueInputSizeSupported(uint32_t width, uint32_t height);
Yin-Chia Yehcd8fce82014-06-18 10:51:34 -0700577
578 /**
579 * Helper function to get the largest Jpeg resolution (in area)
580 * Return Size(0, 0) if static metatdata is invalid
581 */
582 Size getMaxJpegResolution() const;
583
Shuzhen Wangc28dccc2016-02-11 23:48:46 -0800584 /**
585 * Helper function to get the offset between MONOTONIC and BOOTTIME
586 * timestamp.
587 */
588 static nsecs_t getMonoToBoottimeOffset();
589
Eino-Ville Talvala2cbf6ce2016-03-14 13:03:25 -0700590 /**
591 * Helper function to map between legacy and new dataspace enums
592 */
593 static android_dataspace mapToLegacyDataspace(android_dataspace dataSpace);
594
Eino-Ville Talvala0b1cb142016-12-19 16:29:17 -0800595 /**
596 * Helper functions to map between framework and HIDL values
597 */
598 static hardware::graphics::common::V1_0::PixelFormat mapToPixelFormat(int frameworkFormat);
599 static hardware::camera::device::V3_2::DataspaceFlags mapToHidlDataspace(
600 android_dataspace dataSpace);
Chia-I Wu67a0c0e2017-04-06 13:37:01 -0700601 static hardware::camera::device::V3_2::BufferUsageFlags mapToConsumerUsage(uint32_t usage);
Eino-Ville Talvala0b1cb142016-12-19 16:29:17 -0800602 static hardware::camera::device::V3_2::StreamRotation mapToStreamRotation(
603 camera3_stream_rotation_t rotation);
Eino-Ville Talvalabbbbe842017-02-28 17:50:56 -0800604 // Returns a negative error code if the passed-in operation mode is not valid.
605 static status_t mapToStreamConfigurationMode(camera3_stream_configuration_mode_t operationMode,
606 /*out*/ hardware::camera::device::V3_2::StreamConfigurationMode *mode);
Eino-Ville Talvala0b1cb142016-12-19 16:29:17 -0800607 static camera3_buffer_status_t mapHidlBufferStatus(hardware::camera::device::V3_2::BufferStatus status);
608 static int mapToFrameworkFormat(hardware::graphics::common::V1_0::PixelFormat pixelFormat);
Yin-Chia Yeh47cf8e62017-04-04 13:00:03 -0700609 static uint32_t mapConsumerToFrameworkUsage(
Chia-I Wu67a0c0e2017-04-06 13:37:01 -0700610 hardware::camera::device::V3_2::BufferUsageFlags usage);
Yin-Chia Yeh47cf8e62017-04-04 13:00:03 -0700611 static uint32_t mapProducerToFrameworkUsage(
Chia-I Wu67a0c0e2017-04-06 13:37:01 -0700612 hardware::camera::device::V3_2::BufferUsageFlags usage);
Eino-Ville Talvala0b1cb142016-12-19 16:29:17 -0800613
Igor Murashkin4d2f2e82013-04-01 17:29:07 -0700614 struct RequestTrigger {
615 // Metadata tag number, e.g. android.control.aePrecaptureTrigger
616 uint32_t metadataTag;
617 // Metadata value, e.g. 'START' or the trigger ID
618 int32_t entryValue;
619
620 // The last part of the fully qualified path, e.g. afTrigger
621 const char *getTagName() const {
622 return get_camera_metadata_tag_name(metadataTag) ?: "NULL";
623 }
624
625 // e.g. TYPE_BYTE, TYPE_INT32, etc.
626 int getTagType() const {
627 return get_camera_metadata_tag_type(metadataTag);
628 }
629 };
630
Eino-Ville Talvala7fa43f32013-02-06 17:20:07 -0800631 /**
632 * Thread for managing capture request submission to HAL device.
633 */
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -0800634 class RequestThread : public Thread {
Eino-Ville Talvala7fa43f32013-02-06 17:20:07 -0800635
636 public:
637
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -0800638 RequestThread(wp<Camera3Device> parent,
Eino-Ville Talvalaf1e98d82013-09-06 09:32:43 -0700639 sp<camera3::StatusTracker> statusTracker,
Eino-Ville Talvala0b1cb142016-12-19 16:29:17 -0800640 HalInterface* interface,
641 uint32_t deviceVersion,
Chien-Yu Chenab5135b2015-06-30 11:20:58 -0700642 bool aeLockAvailable);
Eino-Ville Talvala0b1cb142016-12-19 16:29:17 -0800643 ~RequestThread();
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -0800644
Yin-Chia Yehe1c80632016-08-08 14:48:05 -0700645 void setNotificationListener(wp<NotificationListener> listener);
Eino-Ville Talvala17543512014-08-06 14:32:02 -0700646
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -0800647 /**
648 * Call after stream (re)-configuration is completed.
649 */
Chien-Yu Chenc66969b2016-05-19 16:37:51 -0700650 void configurationComplete(bool isConstrainedHighSpeed);
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -0800651
652 /**
653 * Set or clear the list of repeating requests. Does not block
654 * on either. Use waitUntilPaused to wait until request queue
655 * has emptied out.
656 */
Jianing Wei2d6bb3f2014-04-11 10:00:31 -0700657 status_t setRepeatingRequests(const RequestList& requests,
658 /*out*/
659 int64_t *lastFrameNumber = NULL);
660 status_t clearRepeatingRequests(/*out*/
661 int64_t *lastFrameNumber = NULL);
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -0800662
Jianing Wei2d6bb3f2014-04-11 10:00:31 -0700663 status_t queueRequestList(List<sp<CaptureRequest> > &requests,
664 /*out*/
665 int64_t *lastFrameNumber = NULL);
Jianing Wei90e59c92014-03-12 18:29:36 -0700666
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -0800667 /**
Eino-Ville Talvalaabaa51d2013-08-14 11:37:00 -0700668 * Remove all queued and repeating requests, and pending triggers
669 */
Yin-Chia Yehe1c80632016-08-08 14:48:05 -0700670 status_t clear(/*out*/int64_t *lastFrameNumber = NULL);
Eino-Ville Talvalaabaa51d2013-08-14 11:37:00 -0700671
672 /**
Chien-Yu Chen85a64552015-08-28 15:46:12 -0700673 * Flush all pending requests in HAL.
674 */
675 status_t flush();
676
677 /**
Igor Murashkin4d2f2e82013-04-01 17:29:07 -0700678 * Queue a trigger to be dispatched with the next outgoing
679 * process_capture_request. The settings for that request only
680 * will be temporarily rewritten to add the trigger tag/value.
681 * Subsequent requests will not be rewritten (for this tag).
682 */
683 status_t queueTrigger(RequestTrigger trigger[], size_t count);
684
685 /**
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -0800686 * Pause/unpause the capture thread. Doesn't block, so use
687 * waitUntilPaused to wait until the thread is paused.
688 */
689 void setPaused(bool paused);
690
691 /**
Igor Murashkin4d2f2e82013-04-01 17:29:07 -0700692 * Wait until thread processes the capture request with settings'
693 * android.request.id == requestId.
694 *
695 * Returns TIMED_OUT in case the thread does not process the request
696 * within the timeout.
697 */
698 status_t waitUntilRequestProcessed(int32_t requestId, nsecs_t timeout);
699
Igor Murashkin1e479c02013-09-06 16:55:14 -0700700 /**
Eino-Ville Talvalaf1e98d82013-09-06 09:32:43 -0700701 * Shut down the thread. Shutdown is asynchronous, so thread may
702 * still be running once this method returns.
703 */
704 virtual void requestExit();
705
706 /**
Igor Murashkin1e479c02013-09-06 16:55:14 -0700707 * Get the latest request that was sent to the HAL
708 * with process_capture_request.
709 */
710 CameraMetadata getLatestRequest() const;
711
Eino-Ville Talvala4d44cad2015-04-11 13:15:45 -0700712 /**
713 * Returns true if the stream is a target of any queued or repeating
714 * capture request
715 */
716 bool isStreamPending(sp<camera3::Camera3StreamInterface>& stream);
717
Eino-Ville Talvala7fa43f32013-02-06 17:20:07 -0800718 protected:
719
720 virtual bool threadLoop();
721
722 private:
Eino-Ville Talvala0b1cb142016-12-19 16:29:17 -0800723 static const String8& getId(const wp<Camera3Device> &device);
Eino-Ville Talvala42368d92013-04-09 14:13:50 -0700724
Igor Murashkin4d2f2e82013-04-01 17:29:07 -0700725 status_t queueTriggerLocked(RequestTrigger trigger);
726 // Mix-in queued triggers into this request
727 int32_t insertTriggers(const sp<CaptureRequest> &request);
728 // Purge the queued triggers from this request,
729 // restoring the old field values for those tags.
730 status_t removeTriggers(const sp<CaptureRequest> &request);
731
Eino-Ville Talvala2f876f92013-09-13 11:39:24 -0700732 // HAL workaround: Make sure a trigger ID always exists if
733 // a trigger does
734 status_t addDummyTriggerIds(const sp<CaptureRequest> &request);
735
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -0800736 static const nsecs_t kRequestTimeout = 50e6; // 50 ms
Eino-Ville Talvala7fa43f32013-02-06 17:20:07 -0800737
Chien-Yu Chen85a64552015-08-28 15:46:12 -0700738 // Used to prepare a batch of requests.
739 struct NextRequest {
740 sp<CaptureRequest> captureRequest;
741 camera3_capture_request_t halRequest;
742 Vector<camera3_stream_buffer_t> outputBuffers;
743 bool submitted;
744 };
Eino-Ville Talvala7fa43f32013-02-06 17:20:07 -0800745
Chien-Yu Chen57ea2922015-09-04 12:58:56 -0700746 // Wait for the next batch of requests and put them in mNextRequests. mNextRequests will
747 // be empty if it times out.
748 void waitForNextRequestBatch();
Chien-Yu Chen85a64552015-08-28 15:46:12 -0700749
750 // Waits for a request, or returns NULL if times out. Must be called with mRequestLock hold.
751 sp<CaptureRequest> waitForNextRequestLocked();
752
Chien-Yu Chen57ea2922015-09-04 12:58:56 -0700753 // Prepare HAL requests and output buffers in mNextRequests. Return TIMED_OUT if getting any
754 // output buffer timed out. If an error is returned, the caller should clean up the pending
755 // request batch.
756 status_t prepareHalRequests();
Chien-Yu Chen85a64552015-08-28 15:46:12 -0700757
Chien-Yu Chen57ea2922015-09-04 12:58:56 -0700758 // Return buffers, etc, for requests in mNextRequests that couldn't be fully constructed and
759 // send request errors if sendRequestError is true. The buffers will be returned in the
760 // ERROR state to mark them as not having valid data. mNextRequests will be cleared.
761 void cleanUpFailedRequests(bool sendRequestError);
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -0800762
Chien-Yu Chene8c535e2016-04-14 12:18:26 -0700763 // Stop the repeating request if any of its output streams is abandoned.
764 void checkAndStopRepeatingRequest();
765
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -0800766 // Pause handling
767 bool waitIfPaused();
Eino-Ville Talvala26fe6c72013-08-29 12:46:18 -0700768 void unpauseForNewRequests();
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -0800769
Eino-Ville Talvalab2058d12013-04-09 13:49:56 -0700770 // Relay error to parent device object setErrorState
771 void setErrorState(const char *fmt, ...);
772
Yin-Chia Yeh8684b7f2014-06-13 14:53:05 -0700773 // If the input request is in mRepeatingRequests. Must be called with mRequestLock hold
Chih-Hung Hsieh8b0b9712016-08-09 14:25:53 -0700774 bool isRepeatingRequestLocked(const sp<CaptureRequest>&);
Yin-Chia Yeh8684b7f2014-06-13 14:53:05 -0700775
Chien-Yu Chend196d612015-06-22 19:49:01 -0700776 // Handle AE precapture trigger cancel for devices <= CAMERA_DEVICE_API_VERSION_3_2.
Chih-Hung Hsieh8b0b9712016-08-09 14:25:53 -0700777 void handleAePrecaptureCancelRequest(const sp<CaptureRequest>& request);
Chien-Yu Chend196d612015-06-22 19:49:01 -0700778
Chien-Yu Chene8c535e2016-04-14 12:18:26 -0700779 // Clear repeating requests. Must be called with mRequestLock held.
780 status_t clearRepeatingRequestsLocked(/*out*/ int64_t *lastFrameNumber = NULL);
781
Yin-Chia Yeh94c68e02017-03-06 14:09:44 -0800782 // send request in mNextRequests to HAL one by one. Return true = sucssess
783 bool sendRequestsOneByOne();
784
785 // send request in mNextRequests to HAL in a batch. Return true = sucssess
786 bool sendRequestsBatch();
787
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -0800788 wp<Camera3Device> mParent;
Eino-Ville Talvalaf1e98d82013-09-06 09:32:43 -0700789 wp<camera3::StatusTracker> mStatusTracker;
Eino-Ville Talvala0b1cb142016-12-19 16:29:17 -0800790 HalInterface* mInterface;
791 uint32_t mDeviceVersion;
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -0800792
Yin-Chia Yehe1c80632016-08-08 14:48:05 -0700793 wp<NotificationListener> mListener;
Eino-Ville Talvala17543512014-08-06 14:32:02 -0700794
Eino-Ville Talvala0b1cb142016-12-19 16:29:17 -0800795 const String8& mId; // The camera ID
Eino-Ville Talvalaf1e98d82013-09-06 09:32:43 -0700796 int mStatusId; // The RequestThread's component ID for
797 // status tracking
Eino-Ville Talvala42368d92013-04-09 14:13:50 -0700798
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -0800799 Mutex mRequestLock;
800 Condition mRequestSignal;
801 RequestList mRequestQueue;
802 RequestList mRepeatingRequests;
Chien-Yu Chen57ea2922015-09-04 12:58:56 -0700803 // The next batch of requests being prepped for submission to the HAL, no longer
Eino-Ville Talvalae74c2282015-05-27 14:46:23 -0700804 // on the request queue. Read-only even with mRequestLock held, outside
805 // of threadLoop
Chien-Yu Chen57ea2922015-09-04 12:58:56 -0700806 Vector<NextRequest> mNextRequests;
Chien-Yu Chen85a64552015-08-28 15:46:12 -0700807
808 // To protect flush() and sending a request batch to HAL.
809 Mutex mFlushLock;
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -0800810
811 bool mReconfigured;
812
813 // Used by waitIfPaused, waitForNextRequest, and waitUntilPaused
814 Mutex mPauseLock;
815 bool mDoPause;
816 Condition mDoPauseSignal;
817 bool mPaused;
818 Condition mPausedSignal;
819
820 sp<CaptureRequest> mPrevRequest;
Igor Murashkin4d2f2e82013-04-01 17:29:07 -0700821 int32_t mPrevTriggers;
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -0800822
Eino-Ville Talvala42368d92013-04-09 14:13:50 -0700823 uint32_t mFrameNumber;
Igor Murashkin4d2f2e82013-04-01 17:29:07 -0700824
Igor Murashkin1e479c02013-09-06 16:55:14 -0700825 mutable Mutex mLatestRequestMutex;
Igor Murashkin4d2f2e82013-04-01 17:29:07 -0700826 Condition mLatestRequestSignal;
827 // android.request.id for latest process_capture_request
828 int32_t mLatestRequestId;
Igor Murashkin1e479c02013-09-06 16:55:14 -0700829 CameraMetadata mLatestRequest;
Igor Murashkin4d2f2e82013-04-01 17:29:07 -0700830
831 typedef KeyedVector<uint32_t/*tag*/, RequestTrigger> TriggerMap;
832 Mutex mTriggerMutex;
833 TriggerMap mTriggerMap;
834 TriggerMap mTriggerRemovedMap;
835 TriggerMap mTriggerReplacedMap;
Yin-Chia Yehc00a25c2014-08-21 14:27:44 -0700836 uint32_t mCurrentAfTriggerId;
837 uint32_t mCurrentPreCaptureTriggerId;
Jianing Weicb0652e2014-03-12 18:29:36 -0700838
Jianing Wei2d6bb3f2014-04-11 10:00:31 -0700839 int64_t mRepeatingLastFrameNumber;
Chien-Yu Chend196d612015-06-22 19:49:01 -0700840
841 // Whether the device supports AE lock
842 bool mAeLockAvailable;
Chien-Yu Chenc66969b2016-05-19 16:37:51 -0700843
844 // Flag indicating if we should prepare video stream for video requests.
845 bool mPrepareVideoStream;
Eino-Ville Talvala7fa43f32013-02-06 17:20:07 -0800846 };
Eino-Ville Talvalaf76e0272013-02-27 18:02:26 -0800847 sp<RequestThread> mRequestThread;
Eino-Ville Talvala7fa43f32013-02-06 17:20:07 -0800848
849 /**
Eino-Ville Talvala42368d92013-04-09 14:13:50 -0700850 * In-flight queue for tracking completion of capture requests.
851 */
852
853 struct InFlightRequest {
854 // Set by notify() SHUTTER call.
Chien-Yu Chen43e69a62014-11-25 16:38:33 -0800855 nsecs_t shutterTimestamp;
856 // Set by process_capture_result().
857 nsecs_t sensorTimestamp;
Zhijun He1d1f8462013-10-02 16:29:51 -0700858 int requestStatus;
Eino-Ville Talvala42368d92013-04-09 14:13:50 -0700859 // Set by process_capture_result call with valid metadata
860 bool haveResultMetadata;
861 // Decremented by calls to process_capture_result with valid output
Zhijun Hef0d962a2014-06-30 10:24:11 -0700862 // and input buffers
Eino-Ville Talvala42368d92013-04-09 14:13:50 -0700863 int numBuffersLeft;
Jianing Weicb0652e2014-03-12 18:29:36 -0700864 CaptureResultExtras resultExtras;
Zhijun Hec98bd8d2014-07-07 12:44:10 -0700865 // If this request has any input buffer
866 bool hasInputBuffer;
Eino-Ville Talvala42368d92013-04-09 14:13:50 -0700867
Chien-Yu Chen43e69a62014-11-25 16:38:33 -0800868 // The last metadata that framework receives from HAL and
869 // not yet send out because the shutter event hasn't arrived.
870 // It's added by process_capture_result and sent when framework
871 // receives the shutter event.
872 CameraMetadata pendingMetadata;
873
Chien-Yu Chen5cd8d642016-03-08 14:46:58 -0800874 // The metadata of the partial results that framework receives from HAL so far
875 // and has sent out.
876 CameraMetadata collectedPartialResult;
877
Chien-Yu Chen43e69a62014-11-25 16:38:33 -0800878 // Buffers are added by process_capture_result when output buffers
879 // return from HAL but framework has not yet received the shutter
880 // event. They will be returned to the streams when framework receives
881 // the shutter event.
882 Vector<camera3_stream_buffer_t> pendingOutputBuffers;
883
Chien-Yu Chend196d612015-06-22 19:49:01 -0700884 // Used to cancel AE precapture trigger for devices doesn't support
885 // CONTROL_AE_PRECAPTURE_TRIGGER_CANCEL
886 AeTriggerCancelOverride_t aeTriggerCancelOverride;
887
Shuzhen Wang4a472662017-02-26 23:29:04 -0800888 // Whether this inflight request's shutter and result callback are to be
889 // called. The policy is that if the request is the last one in the constrained
890 // high speed recording request list, this flag will be true. If the request list
891 // is not for constrained high speed recording, this flag will also be true.
892 bool hasCallback;
893
Eino-Ville Talvalaf1e98d82013-09-06 09:32:43 -0700894 // Default constructor needed by KeyedVector
Eino-Ville Talvala42368d92013-04-09 14:13:50 -0700895 InFlightRequest() :
Chien-Yu Chen43e69a62014-11-25 16:38:33 -0800896 shutterTimestamp(0),
897 sensorTimestamp(0),
Zhijun He1d1f8462013-10-02 16:29:51 -0700898 requestStatus(OK),
Eino-Ville Talvala42368d92013-04-09 14:13:50 -0700899 haveResultMetadata(false),
Zhijun Hec98bd8d2014-07-07 12:44:10 -0700900 numBuffersLeft(0),
Chien-Yu Chend196d612015-06-22 19:49:01 -0700901 hasInputBuffer(false),
Shuzhen Wang4a472662017-02-26 23:29:04 -0800902 aeTriggerCancelOverride({false, 0, false, 0}),
903 hasCallback(true) {
Eino-Ville Talvala42368d92013-04-09 14:13:50 -0700904 }
905
Chien-Yu Chend196d612015-06-22 19:49:01 -0700906 InFlightRequest(int numBuffers, CaptureResultExtras extras, bool hasInput,
Shuzhen Wang4a472662017-02-26 23:29:04 -0800907 AeTriggerCancelOverride aeTriggerCancelOverride, bool hasAppCallback) :
Chien-Yu Chen43e69a62014-11-25 16:38:33 -0800908 shutterTimestamp(0),
909 sensorTimestamp(0),
Jianing Weicb0652e2014-03-12 18:29:36 -0700910 requestStatus(OK),
911 haveResultMetadata(false),
912 numBuffersLeft(numBuffers),
Zhijun Hec98bd8d2014-07-07 12:44:10 -0700913 resultExtras(extras),
Chien-Yu Chend196d612015-06-22 19:49:01 -0700914 hasInputBuffer(hasInput),
Shuzhen Wang4a472662017-02-26 23:29:04 -0800915 aeTriggerCancelOverride(aeTriggerCancelOverride),
916 hasCallback(hasAppCallback) {
Zhijun Hec98bd8d2014-07-07 12:44:10 -0700917 }
Eino-Ville Talvala4d44cad2015-04-11 13:15:45 -0700918 };
919
Eino-Ville Talvala42368d92013-04-09 14:13:50 -0700920 // Map from frame number to the in-flight request state
921 typedef KeyedVector<uint32_t, InFlightRequest> InFlightMap;
922
923 Mutex mInFlightLock; // Protects mInFlightMap
924 InFlightMap mInFlightMap;
Eino-Ville Talvala24b366e2016-07-21 12:53:07 -0700925 int mInFlightStatusId;
Eino-Ville Talvala42368d92013-04-09 14:13:50 -0700926
Jianing Weicb0652e2014-03-12 18:29:36 -0700927 status_t registerInFlight(uint32_t frameNumber,
Chien-Yu Chend196d612015-06-22 19:49:01 -0700928 int32_t numBuffers, CaptureResultExtras resultExtras, bool hasInput,
Shuzhen Wang4a472662017-02-26 23:29:04 -0800929 const AeTriggerCancelOverride_t &aeTriggerCancelOverride, bool callback);
Eino-Ville Talvalaf1e98d82013-09-06 09:32:43 -0700930
931 /**
Chien-Yu Chend196d612015-06-22 19:49:01 -0700932 * Override result metadata for cancelling AE precapture trigger applied in
933 * handleAePrecaptureCancelRequest().
934 */
935 void overrideResultForPrecaptureCancel(CameraMetadata* result,
936 const AeTriggerCancelOverride_t &aeTriggerCancelOverride);
937
Eino-Ville Talvalafd6ecdd2013-10-11 09:51:09 -0700938 /**
Eino-Ville Talvalaf1e98d82013-09-06 09:32:43 -0700939 * Tracking for idle detection
940 */
941 sp<camera3::StatusTracker> mStatusTracker;
Eino-Ville Talvala42368d92013-04-09 14:13:50 -0700942
943 /**
Zhijun He125684a2015-12-26 15:07:30 -0800944 * Graphic buffer manager for output streams. Each device has a buffer manager, which is used
945 * by the output streams to get and return buffers if these streams are registered to this
946 * buffer manager.
947 */
948 sp<camera3::Camera3BufferManager> mBufferManager;
949
950 /**
Eino-Ville Talvala4d44cad2015-04-11 13:15:45 -0700951 * Thread for preparing streams
952 */
953 class PreparerThread : private Thread, public virtual RefBase {
954 public:
955 PreparerThread();
956 ~PreparerThread();
957
Yin-Chia Yehe1c80632016-08-08 14:48:05 -0700958 void setNotificationListener(wp<NotificationListener> listener);
Eino-Ville Talvala4d44cad2015-04-11 13:15:45 -0700959
960 /**
Ruben Brunkc78ac262015-08-13 17:58:46 -0700961 * Queue up a stream to be prepared. Streams are processed by a background thread in FIFO
962 * order. Pre-allocate up to maxCount buffers for the stream, or the maximum number needed
963 * for the pipeline if maxCount is ALLOCATE_PIPELINE_MAX.
Eino-Ville Talvala4d44cad2015-04-11 13:15:45 -0700964 */
Ruben Brunkc78ac262015-08-13 17:58:46 -0700965 status_t prepare(int maxCount, sp<camera3::Camera3StreamInterface>& stream);
Eino-Ville Talvala4d44cad2015-04-11 13:15:45 -0700966
967 /**
968 * Cancel all current and pending stream preparation
969 */
970 status_t clear();
971
972 private:
973 Mutex mLock;
974
975 virtual bool threadLoop();
976
977 // Guarded by mLock
978
Yin-Chia Yehe1c80632016-08-08 14:48:05 -0700979 wp<NotificationListener> mListener;
Eino-Ville Talvala4d44cad2015-04-11 13:15:45 -0700980 List<sp<camera3::Camera3StreamInterface> > mPendingStreams;
981 bool mActive;
982 bool mCancelNow;
983
984 // Only accessed by threadLoop and the destructor
985
986 sp<camera3::Camera3StreamInterface> mCurrentStream;
987 };
988 sp<PreparerThread> mPreparerThread;
989
990 /**
Eino-Ville Talvala7d346fa2013-03-11 14:13:50 -0700991 * Output result queue and current HAL device 3A state
992 */
993
994 // Lock for output side of device
995 Mutex mOutputLock;
996
997 /**** Scope for mOutputLock ****/
Chien-Yu Chen618ff8a2015-03-13 11:27:17 -0700998 // the minimal frame number of the next non-reprocess result
Eino-Ville Talvala42368d92013-04-09 14:13:50 -0700999 uint32_t mNextResultFrameNumber;
Chien-Yu Chen618ff8a2015-03-13 11:27:17 -07001000 // the minimal frame number of the next reprocess result
1001 uint32_t mNextReprocessResultFrameNumber;
Chien-Yu Chen3df11ce2015-09-30 14:13:30 -07001002 // the minimal frame number of the next non-reprocess shutter
Eino-Ville Talvala42368d92013-04-09 14:13:50 -07001003 uint32_t mNextShutterFrameNumber;
Chien-Yu Chen3df11ce2015-09-30 14:13:30 -07001004 // the minimal frame number of the next reprocess shutter
1005 uint32_t mNextReprocessShutterFrameNumber;
Jianing Weicb0652e2014-03-12 18:29:36 -07001006 List<CaptureResult> mResultQueue;
Eino-Ville Talvala7d346fa2013-03-11 14:13:50 -07001007 Condition mResultSignal;
Yin-Chia Yehe1c80632016-08-08 14:48:05 -07001008 wp<NotificationListener> mListener;
Eino-Ville Talvala7d346fa2013-03-11 14:13:50 -07001009
Eino-Ville Talvala7d346fa2013-03-11 14:13:50 -07001010 /**** End scope for mOutputLock ****/
1011
1012 /**
Eino-Ville Talvala7fa43f32013-02-06 17:20:07 -08001013 * Callback functions from HAL device
1014 */
1015 void processCaptureResult(const camera3_capture_result *result);
1016
1017 void notify(const camera3_notify_msg *msg);
1018
Eino-Ville Talvala17543512014-08-06 14:32:02 -07001019 // Specific notify handlers
1020 void notifyError(const camera3_error_msg_t &msg,
Yin-Chia Yehe1c80632016-08-08 14:48:05 -07001021 sp<NotificationListener> listener);
Eino-Ville Talvala17543512014-08-06 14:32:02 -07001022 void notifyShutter(const camera3_shutter_msg_t &msg,
Yin-Chia Yehe1c80632016-08-08 14:48:05 -07001023 sp<NotificationListener> listener);
Eino-Ville Talvala17543512014-08-06 14:32:02 -07001024
Chien-Yu Chen43e69a62014-11-25 16:38:33 -08001025 // helper function to return the output buffers to the streams.
1026 void returnOutputBuffers(const camera3_stream_buffer_t *outputBuffers,
1027 size_t numBuffers, nsecs_t timestamp);
1028
Chien-Yu Chen5cd8d642016-03-08 14:46:58 -08001029 // Send a partial capture result.
1030 void sendPartialCaptureResult(const camera_metadata_t * partialResult,
1031 const CaptureResultExtras &resultExtras, uint32_t frameNumber,
1032 const AeTriggerCancelOverride_t &aeTriggerCancelOverride);
1033
1034 // Send a total capture result given the pending metadata and result extras,
Chien-Yu Chen43e69a62014-11-25 16:38:33 -08001035 // partial results, and the frame number to the result queue.
1036 void sendCaptureResult(CameraMetadata &pendingMetadata,
1037 CaptureResultExtras &resultExtras,
Chien-Yu Chen618ff8a2015-03-13 11:27:17 -07001038 CameraMetadata &collectedPartialResult, uint32_t frameNumber,
Chien-Yu Chend196d612015-06-22 19:49:01 -07001039 bool reprocess, const AeTriggerCancelOverride_t &aeTriggerCancelOverride);
Chien-Yu Chen43e69a62014-11-25 16:38:33 -08001040
Chien-Yu Chen5cd8d642016-03-08 14:46:58 -08001041 // Insert the result to the result queue after updating frame number and overriding AE
1042 // trigger cancel.
1043 // mOutputLock must be held when calling this function.
1044 void insertResultLocked(CaptureResult *result, uint32_t frameNumber,
1045 const AeTriggerCancelOverride_t &aeTriggerCancelOverride);
1046
Chien-Yu Chen43e69a62014-11-25 16:38:33 -08001047 /**** Scope for mInFlightLock ****/
1048
Shuzhen Wangcadb3302016-11-04 14:17:56 -07001049 // Remove the in-flight map entry of the given index from mInFlightMap.
1050 // It must only be called with mInFlightLock held.
1051 void removeInFlightMapEntryLocked(int idx);
Chien-Yu Chen43e69a62014-11-25 16:38:33 -08001052 // Remove the in-flight request of the given index from mInFlightMap
1053 // if it's no longer needed. It must only be called with mInFlightLock held.
1054 void removeInFlightRequestIfReadyLocked(int idx);
1055
1056 /**** End scope for mInFlightLock ****/
1057
Eino-Ville Talvala4d453832016-07-15 11:56:53 -07001058 // Debug tracker for metadata tag value changes
1059 // - Enabled with the -m <taglist> option to dumpsys, such as
1060 // dumpsys -m android.control.aeState,android.control.aeMode
1061 // - Disabled with -m off
1062 // - dumpsys -m 3a is a shortcut for ae/af/awbMode, State, and Triggers
1063 TagMonitor mTagMonitor;
1064
1065 void monitorMetadata(TagMonitor::eventSource source, int64_t frameNumber,
1066 nsecs_t timestamp, const CameraMetadata& metadata);
1067
Emilian Peev71c73a22017-03-21 16:35:51 +00001068 metadata_vendor_id_t mVendorTagId;
1069
Eino-Ville Talvala7fa43f32013-02-06 17:20:07 -08001070 /**
1071 * Static callback forwarding methods from HAL to instance
1072 */
1073 static callbacks_process_capture_result_t sProcessCaptureResult;
1074
1075 static callbacks_notify_t sNotify;
1076
1077}; // class Camera3Device
1078
1079}; // namespace android
1080
1081#endif