blob: 80805d6b0f941c48ce17857b3cb74e4f4b22ab8f [file] [log] [blame]
/*
**
** Copyright 2013, Samsung Electronics Co. LTD
**
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
**
** http://www.apache.org/licenses/LICENSE-2.0
**
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*/
/* #define LOG_NDEBUG 0 */
#define LOG_TAG "ExynosCameraFrameFactory"
#include <cutils/log.h>
#include "ExynosCameraFrameFactory.h"
namespace android {
ExynosCameraFrameFactory::~ExynosCameraFrameFactory()
{
status_t ret = NO_ERROR;
ret = destroy();
if (ret != NO_ERROR)
CLOGE("destroy fail");
}
status_t ExynosCameraFrameFactory::precreate(void)
{
CLOGE("Must use the concreate class, don't use superclass");
return INVALID_OPERATION;
}
status_t ExynosCameraFrameFactory::postcreate(void)
{
CLOGE("Must use the concreate class, don't use superclass");
return INVALID_OPERATION;
}
status_t ExynosCameraFrameFactory::destroy(void)
{
CLOGI("");
status_t ret = NO_ERROR;
for (int i = 0; i < MAX_NUM_PIPES; i++) {
if (m_pipes[i] != NULL) {
ret = m_pipes[i]->destroy();
if (ret != NO_ERROR) {
CLOGE("m_pipes[%d]->destroy() fail", i);
if (m_shot_ext != NULL) {
delete m_shot_ext;
m_shot_ext = NULL;
}
return ret;
}
SAFE_DELETE(m_pipes[i]);
CLOGD("Pipe(%d) destroyed", i);
}
}
if (m_shot_ext != NULL) {
delete m_shot_ext;
m_shot_ext = NULL;
}
m_setCreate(false);
return ret;
}
bool ExynosCameraFrameFactory::isCreated(void)
{
Mutex::Autolock lock(m_createLock);
return m_create;
}
status_t ExynosCameraFrameFactory::mapBuffers(void)
{
CLOGE("Must use the concreate class, don't use superclass");
return INVALID_OPERATION;
}
status_t ExynosCameraFrameFactory::fastenAeStable(__unused int32_t numFrames, __unused ExynosCameraBuffer *buffers)
{
CLOGE("Must use the concreate class, don't use superclass");
return NO_ERROR;
}
status_t ExynosCameraFrameFactory::setStopFlag(void)
{
CLOGE("Must use the concreate class, don't use superclass");
return INVALID_OPERATION;
}
status_t ExynosCameraFrameFactory::stopPipe(uint32_t pipeId)
{
status_t ret = NO_ERROR;
ret = m_pipes[INDEX(pipeId)]->stopThread();
if (ret != NO_ERROR) {
CLOGE("Pipe:%d stopThread fail, ret(%d)", pipeId, ret);
/* TODO: exception handling */
return INVALID_OPERATION;
}
ret = m_pipes[INDEX(pipeId)]->stop();
if (ret != NO_ERROR) {
CLOGE("Pipe:%d stop fail, ret(%d)", pipeId, ret);
/* TODO: exception handling */
/* return INVALID_OPERATION; */
}
return NO_ERROR;
}
status_t ExynosCameraFrameFactory::startThread(uint32_t pipeId)
{
status_t ret = NO_ERROR;
CLOGV("pipeId=%d", pipeId);
ret = m_pipes[INDEX(pipeId)]->startThread();
if (ret != NO_ERROR) {
CLOGE("start thread fail, pipeId(%d), ret(%d)", pipeId, ret);
/* TODO: exception handling */
}
return ret;
}
status_t ExynosCameraFrameFactory::stopThread(uint32_t pipeId)
{
status_t ret = NO_ERROR;
if (m_pipes[INDEX(pipeId)] == NULL) {
CLOGE("m_pipes[INDEX(%d)] == NULL. so, fail", pipeId);
return INVALID_OPERATION;
}
CLOGI("pipeId=%d", pipeId);
ret = m_pipes[INDEX(pipeId)]->stopThread();
if (ret != NO_ERROR) {
CLOGE("stop thread fail, pipeId(%d), ret(%d)", pipeId, ret);
/* TODO: exception handling */
}
return ret;
}
status_t ExynosCameraFrameFactory::stopThreadAndWait(uint32_t pipeId, int sleep, int times)
{
status_t ret = NO_ERROR;
if (m_pipes[INDEX(pipeId)] == NULL) {
CLOGE("m_pipes[INDEX(%d)] == NULL. so, fail", pipeId);
return INVALID_OPERATION;
}
CLOGI("pipeId=%d", pipeId);
ret = m_pipes[INDEX(pipeId)]->stopThreadAndWait(sleep, times);
if (ret != NO_ERROR) {
CLOGE("pipe(%d) stopThreadAndWait fail, ret(%d)", pipeId, ret);
/* TODO: exception handling */
ret = INVALID_OPERATION;
}
return ret;
}
bool ExynosCameraFrameFactory::checkPipeThreadRunning(uint32_t pipeId)
{
status_t ret = NO_ERROR;
ret = m_pipes[INDEX(pipeId)]->isThreadRunning();
return ret;
}
void ExynosCameraFrameFactory::setThreadOneShotMode(uint32_t pipeId, bool enable)
{
m_pipes[INDEX(pipeId)]->setOneShotMode(enable);
}
status_t ExynosCameraFrameFactory::setFrameManager(ExynosCameraFrameManager *manager)
{
m_frameMgr = manager;
return NO_ERROR;
}
status_t ExynosCameraFrameFactory::getFrameManager(ExynosCameraFrameManager **manager)
{
*manager = m_frameMgr;
return NO_ERROR;
}
status_t ExynosCameraFrameFactory::setBufferManagerToPipe(ExynosCameraBufferManager **bufferManager, uint32_t pipeId)
{
if (m_pipes[INDEX(pipeId)] == NULL) {
CLOGE("m_pipes[INDEX(%d)] == NULL. pipeId(%d)", INDEX(pipeId), pipeId);
return INVALID_OPERATION;
}
return m_pipes[INDEX(pipeId)]->setBufferManager(bufferManager);
}
status_t ExynosCameraFrameFactory::setOutputFrameQToPipe(frame_queue_t *outputQ, uint32_t pipeId)
{
m_pipes[INDEX(pipeId)]->setOutputFrameQ(outputQ);
return NO_ERROR;
}
status_t ExynosCameraFrameFactory::getOutputFrameQToPipe(frame_queue_t **outputQ, uint32_t pipeId)
{
CLOGV("pipeId=%d", pipeId);
m_pipes[INDEX(pipeId)]->getOutputFrameQ(outputQ);
return NO_ERROR;
}
status_t ExynosCameraFrameFactory::setFrameDoneQToPipe(frame_queue_t *frameDoneQ, uint32_t pipeId)
{
m_pipes[INDEX(pipeId)]->setFrameDoneQ(frameDoneQ);
return NO_ERROR;
}
status_t ExynosCameraFrameFactory::getFrameDoneQToPipe(frame_queue_t **frameDoneQ, uint32_t pipeId)
{
CLOGV("pipeId=%d", pipeId);
m_pipes[INDEX(pipeId)]->getFrameDoneQ(frameDoneQ);
return NO_ERROR;
}
status_t ExynosCameraFrameFactory::getInputFrameQToPipe(frame_queue_t **inputFrameQ, uint32_t pipeId)
{
CLOGV("pipeId=%d", pipeId);
m_pipes[INDEX(pipeId)]->getInputFrameQ(inputFrameQ);
if (inputFrameQ == NULL)
CLOGE("inputFrameQ is NULL");
return NO_ERROR;
}
status_t ExynosCameraFrameFactory::pushFrameToPipe(ExynosCameraFrameSP_dptr_t newFrame, uint32_t pipeId)
{
m_pipes[INDEX(pipeId)]->pushFrame(newFrame);
return NO_ERROR;
}
status_t ExynosCameraFrameFactory::setParam(struct v4l2_streamparm *streamParam, uint32_t pipeId)
{
status_t ret = NO_ERROR;
ret = m_pipes[INDEX(pipeId)]->setParam(*streamParam);
return ret;
}
status_t ExynosCameraFrameFactory::setControl(int cid, int value, uint32_t pipeId)
{
status_t ret = NO_ERROR;
ret = m_pipes[INDEX(pipeId)]->setControl(cid, value);
return ret;
}
status_t ExynosCameraFrameFactory::setControl(int cid, int value, uint32_t pipeId, enum NODE_TYPE nodeType)
{
status_t ret = NO_ERROR;
ret = m_pipes[INDEX(pipeId)]->setControl(cid, value, nodeType);
return ret;
}
status_t ExynosCameraFrameFactory::getControl(int cid, int *value, uint32_t pipeId)
{
status_t ret = NO_ERROR;
ret = m_pipes[INDEX(pipeId)]->getControl(cid, value);
return ret;
}
status_t ExynosCameraFrameFactory::setExtControl(struct v4l2_ext_controls *ctrl, uint32_t pipeId)
{
status_t ret = NO_ERROR;
ret = m_pipes[INDEX(pipeId)]->setExtControl(ctrl);
return ret;
}
void ExynosCameraFrameFactory::setRequest(int pipeId, bool enable)
{
switch (pipeId) {
case PIPE_FLITE:
case PIPE_FLITE_REPROCESSING:
android_printAssert(NULL, LOG_TAG, "ASSERT(%s[%d]):Invalid request on pipe_id(%d), assert!!!!",
__FUNCTION__, __LINE__, pipeId);
break;
case PIPE_VC0:
m_requestVC0 = enable ? 1 : 0;
break;
case PIPE_VC1:
m_requestVC1 = enable ? 1 : 0;
break;
case PIPE_VC2:
m_requestVC2 = enable ? 1 : 0;
break;
case PIPE_VC3:
m_requestVC3 = enable ? 1 : 0;
break;
case PIPE_3AC:
case PIPE_3AC_REPROCESSING:
m_request3AC = enable ? 1 : 0;
break;
case PIPE_3AP:
case PIPE_3AP_REPROCESSING:
m_request3AP = enable ? 1 : 0;
break;
case PIPE_ISPC:
case PIPE_ISPC_REPROCESSING:
m_requestISPC = enable ? 1 : 0;
break;
case PIPE_ISPP:
case PIPE_ISPP_REPROCESSING:
m_requestISPP = enable ? 1 : 0;
break;
case PIPE_MCSC0:
case PIPE_MCSC0_REPROCESSING:
m_requestMCSC0 = enable ? 1 : 0;
break;
case PIPE_MCSC1:
case PIPE_MCSC1_REPROCESSING:
m_requestMCSC1 = enable ? 1 : 0;
break;
case PIPE_MCSC2:
case PIPE_MCSC2_REPROCESSING:
m_requestMCSC2 = enable ? 1 : 0;
break;
case PIPE_MCSC3:
case PIPE_MCSC3_REPROCESSING:
m_requestMCSC3 = enable ? 1 : 0;
break;
case PIPE_MCSC4:
case PIPE_MCSC4_REPROCESSING:
m_requestMCSC4 = enable ? 1 : 0;
break;
case PIPE_HWFC_JPEG_SRC_REPROCESSING:
case PIPE_HWFC_JPEG_DST_REPROCESSING:
m_requestJPEG = enable ? 1 : 0;
break;
case PIPE_HWFC_THUMB_SRC_REPROCESSING:
case PIPE_HWFC_THUMB_DST_REPROCESSING:
m_requestThumbnail = enable ? 1 : 0;
break;
default:
CLOGW("Invalid pipeId(%d)", pipeId);
break;
}
}
void ExynosCameraFrameFactory::setRequestFLITE(bool enable)
{
android_printAssert(NULL, LOG_TAG, "ASSERT(%s[%d]):Don't use this call. call setRequestBayer(), when USE_MCPIPE_FOR_FLITE. assert!!!!",
__FUNCTION__, __LINE__);
}
void ExynosCameraFrameFactory::setRequestBayer(bool enable)
{
m_requestVC0 = enable ? 1 : 0;
}
void ExynosCameraFrameFactory::setRequest3AC(bool enable)
{
#if 1
m_request3AC = enable ? 1 : 0;
#else
/* From 74xx, Front will use reprocessing. so, we need to prepare BDS */
if (isReprocessing(m_cameraId) == true) {
if (m_parameters->getUsePureBayerReprocessing() == true) {
m_request3AC = 0;
} else {
m_request3AC = enable ? 1 : 0;
}
} else {
m_request3AC = 0;
}
#endif
}
void ExynosCameraFrameFactory::setRequestISPC(bool enable)
{
m_requestISPC = enable ? 1 : 0;
}
void ExynosCameraFrameFactory::setRequestISPP(bool enable)
{
m_requestISPP = enable ? 1 : 0;
}
void ExynosCameraFrameFactory::setRequestSCC(bool enable)
{
m_requestSCC = enable ? 1 : 0;
}
void ExynosCameraFrameFactory::setRequestDIS(bool enable)
{
m_requestDIS = enable ? 1 : 0;
}
status_t ExynosCameraFrameFactory::getThreadState(int **threadState, uint32_t pipeId)
{
m_pipes[INDEX(pipeId)]->getThreadState(threadState);
return NO_ERROR;
}
status_t ExynosCameraFrameFactory::getThreadInterval(uint64_t **threadInterval, uint32_t pipeId)
{
m_pipes[INDEX(pipeId)]->getThreadInterval(threadInterval);
return NO_ERROR;
}
status_t ExynosCameraFrameFactory::getThreadRenew(int **threadRenew, uint32_t pipeId)
{
m_pipes[INDEX(pipeId)]->getThreadRenew(threadRenew);
return NO_ERROR;
}
status_t ExynosCameraFrameFactory::incThreadRenew(uint32_t pipeId)
{
m_pipes[INDEX(pipeId)]->incThreadRenew();
return NO_ERROR;
}
int ExynosCameraFrameFactory::getRunningFrameCount(uint32_t pipeId)
{
int runningFrameCount = 0;
CLOGI("");
runningFrameCount = m_pipes[INDEX(pipeId)]->getRunningFrameCount();
return runningFrameCount;
}
enum NODE_TYPE ExynosCameraFrameFactory::getNodeType(uint32_t pipeId)
{
enum NODE_TYPE nodeType = INVALID_NODE;
switch (pipeId) {
case PIPE_FLITE:
case PIPE_FLITE_REPROCESSING:
nodeType = OUTPUT_NODE;
break;
case PIPE_VC0:
case PIPE_VC0_REPROCESSING:
nodeType = CAPTURE_NODE_1;
break;
case PIPE_VC1:
nodeType = CAPTURE_NODE_2;
break;
case PIPE_3AA:
#ifdef USE_FLITE_3AA_BUFFER_HIDING_MODE
if (USE_FLITE_3AA_BUFFER_HIDING_MODE == true
&& m_flagFlite3aaOTF == true
&& (m_cameraId == CAMERA_ID_BACK
|| m_parameters->getDualMode() == false))
nodeType = CAPTURE_NODE_2;
else
#endif
{
if (m_flagFlite3aaOTF == true)
nodeType = OTF_NODE_7;
else
nodeType = OUTPUT_NODE;
}
break;
case PIPE_3AA_REPROCESSING:
nodeType = OUTPUT_NODE;
break;
case PIPE_3AC:
case PIPE_3AC_REPROCESSING:
nodeType = CAPTURE_NODE_3;
break;
case PIPE_3AP:
if (m_flag3aaIspOTF == true)
#ifdef USE_3AA_ISP_BUFFER_HIDING_MODE
if (USE_3AA_ISP_BUFFER_HIDING_MODE == true
&& (m_cameraId == CAMERA_ID_BACK
|| m_parameters->getDualMode() == false))
nodeType = CAPTURE_NODE_4;
else
#endif
nodeType = OTF_NODE_1;
else
nodeType = CAPTURE_NODE_4;
break;
case PIPE_3AP_REPROCESSING:
nodeType = m_flag3aaIspOTF ? OTF_NODE_1 : CAPTURE_NODE_4;
break;
case PIPE_ISP:
if (m_flag3aaIspOTF == true)
#ifdef USE_3AA_ISP_BUFFER_HIDING_MODE
if (USE_3AA_ISP_BUFFER_HIDING_MODE == true
&& (m_cameraId == CAMERA_ID_BACK
|| m_parameters->getDualMode() == false))
nodeType = CAPTURE_NODE_5;
else
#endif
nodeType = OTF_NODE_2;
else
nodeType = OUTPUT_NODE;
break;
case PIPE_ISP_REPROCESSING:
nodeType = m_flag3aaIspOTF ? OTF_NODE_2 : OUTPUT_NODE;
break;
case PIPE_ISPC:
case PIPE_ISPC_REPROCESSING:
nodeType = CAPTURE_NODE_6;
break;
case PIPE_ISPP:
if (m_flagIspTpuOTF == true)
#ifdef USE_ISP_TPU_BUFFER_HIDING_MODE
if (USE_ISP_TPU_BUFFER_HIDING_MODE == true
&& (m_cameraId == CAMERA_ID_BACK
|| m_parameters->getDualMode() == false))
nodeType = CAPTURE_NODE_7;
else
#endif
nodeType = OTF_NODE_3;
else if (m_flagIspMcscOTF == true)
#ifdef USE_ISP_MCSC_BUFFER_HIDING_MODE
if (USE_ISP_MCSC_BUFFER_HIDING_MODE == true
&& (m_cameraId == CAMERA_ID_BACK
|| m_parameters->getDualMode() == false))
nodeType = CAPTURE_NODE_7;
else
#endif
nodeType = OTF_NODE_3;
else
nodeType = CAPTURE_NODE_7;
break;
case PIPE_ISPP_REPROCESSING:
nodeType = (m_flagIspTpuOTF || m_flagIspMcscOTF) ? OTF_NODE_3 : CAPTURE_NODE_7;
break;
case PIPE_TPU:
if (m_flagIspTpuOTF == true)
#ifdef USE_ISP_TPU_BUFFER_HIDING_MODE
if (USE_ISP_TPU_BUFFER_HIDING_MODE == true
&& (m_cameraId == CAMERA_ID_BACK
|| m_parameters->getDualMode() == false))
nodeType = CAPTURE_NODE_8;
else
#endif
nodeType = OTF_NODE_4;
else
nodeType = OUTPUT_NODE;
break;
case PIPE_TPUP:
if (m_flagTpuMcscOTF == true)
#ifdef USE_TPU_MCSC_BUFFER_HIDING_MODE
if (USE_TPU_MCSC_BUFFER_HIDING_MODE == true
&& (m_cameraId == CAMERA_ID_BACK
|| m_parameters->getDualMode() == false))
nodeType = CAPTURE_NODE_9;
else
#endif
nodeType = OTF_NODE_5;
else
nodeType = CAPTURE_NODE_9;
break;
case PIPE_MCSC:
if (m_flagIspMcscOTF == true)
#ifdef USE_ISP_MCSC_BUFFER_HIDING_MODE
if (USE_ISP_MCSC_BUFFER_HIDING_MODE == true
&& (m_cameraId == CAMERA_ID_BACK
|| m_parameters->getDualMode() == false))
nodeType = CAPTURE_NODE_10;
else
#endif
nodeType = OTF_NODE_6;
else if (m_flagTpuMcscOTF == true)
#ifdef USE_TPU_MCSC_BUFFER_HIDING_MODE
if (USE_TPU_MCSC_BUFFER_HIDING_MODE == true
&& (m_cameraId == CAMERA_ID_BACK
|| m_parameters->getDualMode() == false))
nodeType = CAPTURE_NODE_10;
else
#endif
nodeType = OTF_NODE_6;
else
nodeType = OUTPUT_NODE;
break;
case PIPE_MCSC_REPROCESSING:
nodeType = (m_flagIspMcscOTF || m_flagTpuMcscOTF) ? OTF_NODE_6 : OUTPUT_NODE;
break;
case PIPE_MCSC0:
case PIPE_MCSC3_REPROCESSING:
nodeType = CAPTURE_NODE_11;
break;
case PIPE_MCSC1:
case PIPE_MCSC4_REPROCESSING:
nodeType = CAPTURE_NODE_12;
break;
case PIPE_MCSC2:
case PIPE_MCSC1_REPROCESSING:
nodeType = CAPTURE_NODE_13;
break;
case PIPE_HWFC_JPEG_DST_REPROCESSING:
nodeType = CAPTURE_NODE_14;
break;
case PIPE_HWFC_JPEG_SRC_REPROCESSING:
nodeType = CAPTURE_NODE_15;
break;
case PIPE_HWFC_THUMB_SRC_REPROCESSING:
nodeType = CAPTURE_NODE_16;
break;
case PIPE_HWFC_THUMB_DST_REPROCESSING:
nodeType = CAPTURE_NODE_17;
break;
case PIPE_TPU1:
nodeType = OUTPUT_NODE;
break;
case PIPE_TPU1C:
nodeType = CAPTURE_NODE_18;
break;
default:
android_printAssert(NULL, LOG_TAG, "ASSERT(%s[%d]):Unexpected pipe_id(%d), assert!!!!",
__FUNCTION__, __LINE__, pipeId);
break;
}
return nodeType;
}
ExynosCameraFrameSP_sptr_t ExynosCameraFrameFactory::createNewFrameOnlyOnePipe(int pipeId, int frameCnt, uint32_t frameType)
{
Mutex::Autolock lock(m_frameLock);
status_t ret = NO_ERROR;
ExynosCameraFrameEntity *newEntity[MAX_NUM_PIPES] = {};
if (frameCnt < 0) {
frameCnt = m_frameCount;
}
ExynosCameraFrameSP_sptr_t frame = m_frameMgr->createFrame(m_parameters, frameCnt, frameType);
if (frame == NULL) {
CLOGE("ERR(%s[%d]):[F%d]Failed to createFrame. frameType %d",
__FUNCTION__, __LINE__, frameCnt, frameType);
return NULL;
}
/* set pipe to linkageList */
newEntity[INDEX(pipeId)] = new ExynosCameraFrameEntity(pipeId, ENTITY_TYPE_INPUT_OUTPUT, ENTITY_BUFFER_FIXED);
frame->addSiblingEntity(NULL, newEntity[INDEX(pipeId)]);
return frame;
}
ExynosCameraFrameSP_sptr_t ExynosCameraFrameFactory::createNewFrameVideoOnly(void)
{
status_t ret = NO_ERROR;
ExynosCameraFrameEntity *newEntity[MAX_NUM_PIPES] = {};
ExynosCameraFrameSP_sptr_t frame = m_frameMgr->createFrame(m_parameters, m_frameCount);
if (frame == NULL) {
CLOGE("ERR(%s[%d]):[F%d]Failed to createFrame",
__FUNCTION__, __LINE__, m_frameCount);
return NULL;
}
/* set GSC-Video pipe to linkageList */
newEntity[INDEX(PIPE_GSC_VIDEO)] = new ExynosCameraFrameEntity(PIPE_GSC_VIDEO, ENTITY_TYPE_INPUT_OUTPUT, ENTITY_BUFFER_FIXED);
frame->addSiblingEntity(NULL, newEntity[INDEX(PIPE_GSC_VIDEO)]);
return frame;
}
void ExynosCameraFrameFactory::dump()
{
CLOGI("");
for (int i = 0; i < MAX_NUM_PIPES; i++) {
if (m_pipes[i] != NULL) {
m_pipes[i]->dump();
}
}
return;
}
status_t ExynosCameraFrameFactory::dumpFimcIsInfo(uint32_t pipeId, bool bugOn)
{
status_t ret = NO_ERROR;
int pipeIdIsp = 0;
if (m_pipes[INDEX(pipeId)] != NULL)
ret = m_pipes[INDEX(pipeId)]->dumpFimcIsInfo(bugOn);
else
CLOGE(" pipe is not ready (%d/%d)", pipeId, bugOn);
return ret;
}
#ifdef MONITOR_LOG_SYNC
status_t ExynosCameraFrameFactory::syncLog(uint32_t pipeId, uint32_t syncId)
{
status_t ret = NO_ERROR;
int pipeIdIsp = 0;
if (m_pipes[INDEX(pipeId)] != NULL)
ret = m_pipes[INDEX(pipeId)]->syncLog(syncId);
else
CLOGE(" pipe is not ready (%d/%d)", pipeId, syncId);
return ret;
}
#endif
status_t ExynosCameraFrameFactory::m_setCreate(bool create)
{
Mutex::Autolock lock(m_createLock);
if (create != m_create)
CLOGD(" setCreate old(%s) new(%s)", (m_create)?"true":"false", (create)?"true":"false");
m_create = create;
return NO_ERROR;
}
status_t ExynosCameraFrameFactory::m_initFlitePipe(int sensorW, int sensorH, uint32_t frameRate)
{
CLOGI("");
status_t ret = NO_ERROR;
camera_pipe_info_t pipeInfo[MAX_NODE];
int pipeId = PIPE_FLITE;
if (m_parameters->isFlite3aaOtf() == true) {
pipeId = PIPE_3AA;
}
/* FLITE is old pipe, node type is 0 */
enum NODE_TYPE nodeType = (enum NODE_TYPE)0;
enum NODE_TYPE leaderNodeType = OUTPUT_NODE;
ExynosRect tempRect;
struct ExynosConfigInfo *config = m_parameters->getConfig();
int maxSensorW = 0, maxSensorH = 0, hwSensorW = 0, hwSensorH = 0;
int bayerFormat = m_parameters->getBayerFormat(PIPE_FLITE);
int perFramePos = 0;
#ifdef DEBUG_RAWDUMP
if (m_parameters->checkBayerDumpEnable()) {
bayerFormat = CAMERA_DUMP_BAYER_FORMAT;
}
#endif
CLOGI("SensorSize(%dx%d)", sensorW, sensorH);
/* set BNS ratio */
int bnsScaleRatio = 0;
if ((m_parameters->getDualMode() == false && m_parameters->getUseFastenAeStable() == true)
|| m_parameters->getHighSpeedRecording() == true
#ifdef USE_BINNING_MODE
|| m_parameters->getBinningMode() == true
#endif
) {
bnsScaleRatio = 1000;
} else {
bnsScaleRatio = m_parameters->getBnsScaleRatio();
}
ret = m_pipes[pipeId]->setControl(V4L2_CID_IS_S_BNS, bnsScaleRatio);
if (ret != NO_ERROR) {
CLOGE("Set BNS(%.1f) fail, ret(%d)",
(float)(bnsScaleRatio / 1000), ret);
} else {
int bnsSize = 0;
ret = m_pipes[pipeId]->getControl(V4L2_CID_IS_G_BNS_SIZE, &bnsSize);
if (ret != NO_ERROR) {
CLOGE("Get BNS size fail, ret(%d)", ret);
} else {
int bnsWidth = bnsSize >> 16;
int bnsHeight = bnsSize & 0xffff;
CLOGI("BNS scale down ratio(%.1f), size (%dx%d)",
(float)(bnsScaleRatio / 1000), bnsWidth, bnsHeight);
m_parameters->setBnsSize(bnsWidth, bnsHeight);
}
}
return NO_ERROR;
}
status_t ExynosCameraFrameFactory::m_initFrameMetadata(ExynosCameraFrameSP_sptr_t frame)
{
status_t ret = NO_ERROR;
if (m_shot_ext == NULL) {
CLOGE(" new struct camera2_shot_ext fail");
return INVALID_OPERATION;
}
memset(m_shot_ext, 0x0, sizeof(struct camera2_shot_ext));
m_shot_ext->shot.magicNumber = SHOT_MAGIC_NUMBER;
/* TODO: These bypass values are enabled at per-frame control */
if (m_flagReprocessing == true) {
frame->setRequest(PIPE_3AP_REPROCESSING, m_request3AP);
frame->setRequest(PIPE_ISPC_REPROCESSING, m_requestISPC);
frame->setRequest(PIPE_ISPP_REPROCESSING, m_requestISPP);
frame->setRequest(PIPE_MCSC1_REPROCESSING, m_requestMCSC1);
frame->setRequest(PIPE_MCSC3_REPROCESSING, m_requestMCSC3);
frame->setRequest(PIPE_MCSC4_REPROCESSING, m_requestMCSC4);
frame->setRequest(PIPE_HWFC_JPEG_SRC_REPROCESSING, m_requestJPEG);
frame->setRequest(PIPE_HWFC_JPEG_DST_REPROCESSING, m_requestJPEG);
frame->setRequest(PIPE_HWFC_THUMB_SRC_REPROCESSING, m_requestThumbnail);
frame->setRequest(PIPE_HWFC_THUMB_DST_REPROCESSING, m_requestThumbnail);
/* Reprocessing is not use this */
m_bypassDRC = 1; /* m_parameters->getDrcEnable(); */
m_bypassDNR = 1; /* m_parameters->getDnrEnable(); */
m_bypassDIS = 1; /* m_parameters->getDisEnable(); */
m_bypassFD = 1; /* m_parameters->getFdEnable(); */
} else {
frame->setRequest(PIPE_VC0, m_requestVC0);
frame->setRequest(PIPE_VC1, m_requestVC1);
frame->setRequest(PIPE_3AC, m_request3AC);
frame->setRequest(PIPE_3AP, m_request3AP);
frame->setRequest(PIPE_ISPC, m_requestISPC);
frame->setRequest(PIPE_ISPP, m_requestISPP);
frame->setRequest(PIPE_MCSC0, m_requestMCSC0);
frame->setRequest(PIPE_MCSC1, m_requestMCSC1);
frame->setRequest(PIPE_MCSC2, m_requestMCSC2);
m_bypassDRC = m_parameters->getDrcEnable();
m_bypassDNR = m_parameters->getDnrEnable();
m_bypassDIS = m_parameters->getDisEnable();
m_bypassFD = m_parameters->getFdEnable();
}
setMetaBypassDrc(m_shot_ext, m_bypassDRC);
setMetaBypassDnr(m_shot_ext, m_bypassDNR);
setMetaBypassDis(m_shot_ext, m_bypassDIS);
setMetaBypassFd(m_shot_ext, m_bypassFD);
ret = frame->initMetaData(m_shot_ext);
if (ret != NO_ERROR)
CLOGE(" initMetaData fail");
return ret;
}
status_t ExynosCameraFrameFactory::m_initPipelines(ExynosCameraFrameSP_sptr_t frame)
{
ExynosCameraFrameEntity *curEntity = NULL;
ExynosCameraFrameEntity *childEntity = NULL;
frame_queue_t *frameQ = NULL;
status_t ret = NO_ERROR;
curEntity = frame->getFirstEntity();
while (curEntity != NULL) {
childEntity = curEntity->getNextEntity();
if (childEntity != NULL) {
ret = getInputFrameQToPipe(&frameQ, childEntity->getPipeId());
if (ret != NO_ERROR || frameQ == NULL) {
CLOGE("getInputFrameQToPipe fail, ret(%d), frameQ(%p)", ret, frameQ);
return ret;
}
ret = setOutputFrameQToPipe(frameQ, curEntity->getPipeId());
if (ret != NO_ERROR) {
CLOGE("setOutputFrameQToPipe fail, ret(%d)", ret);
return ret;
}
/* check Image Configuration Equality */
ret = m_checkPipeInfo(curEntity->getPipeId(), childEntity->getPipeId());
if (ret != NO_ERROR) {
CLOGE("checkPipeInfo fail, Pipe[%d], Pipe[%d]", curEntity->getPipeId(), childEntity->getPipeId());
return ret;
}
curEntity = childEntity;
} else {
curEntity = frame->getNextEntity();
}
}
return NO_ERROR;
}
status_t ExynosCameraFrameFactory::m_checkPipeInfo(uint32_t srcPipeId, uint32_t dstPipeId)
{
int srcFullW, srcFullH, srcColorFormat;
int dstFullW, dstFullH, dstColorFormat;
int isDifferent = 0;
status_t ret = NO_ERROR;
ret = m_pipes[INDEX(srcPipeId)]->getPipeInfo(&srcFullW, &srcFullH, &srcColorFormat, SRC_PIPE);
if (ret != NO_ERROR) {
CLOGE("Source getPipeInfo fail");
return ret;
}
ret = m_pipes[INDEX(dstPipeId)]->getPipeInfo(&dstFullW, &dstFullH, &dstColorFormat, DST_PIPE);
if (ret != NO_ERROR) {
CLOGE("Destination getPipeInfo fail");
return ret;
}
if (srcFullW != dstFullW || srcFullH != dstFullH || srcColorFormat != dstColorFormat) {
CLOGE("Video Node Image Configuration is NOT matching. so, fail");
CLOGE("fail info : srcPipeId(%d), srcFullW(%d), srcFullH(%d), srcColorFormat(%d)",
srcPipeId, srcFullW, srcFullH, srcColorFormat);
CLOGE("fail info : dstPipeId(%d), dstFullW(%d), dstFullH(%d), dstColorFormat(%d)",
dstPipeId, dstFullW, dstFullH, dstColorFormat);
return INVALID_OPERATION;
}
return NO_ERROR;
}
int ExynosCameraFrameFactory::m_getSensorId(__unused unsigned int nodeNum, bool reprocessing)
{
android_printAssert(NULL, LOG_TAG, "ASSERT(%s[%d]):Don't use this call, when USE_MCPIPE_FOR_FLITE. assert!!!!",
__FUNCTION__, __LINE__);
unsigned int reprocessingBit = 0;
unsigned int nodeNumBit = 0;
unsigned int sensorIdBit = 0;
unsigned int sensorId = getSensorId(m_cameraId);
if (reprocessing == true)
reprocessingBit = (1 << REPROCESSING_SHIFT);
/*
* hack
* nodeNum - FIMC_IS_VIDEO_BAS_NUM is proper.
* but, historically, FIMC_IS_VIDEO_SS0_NUM - FIMC_IS_VIDEO_SS0_NUM is worked properly
*/
//nodeNumBit = ((nodeNum - FIMC_IS_VIDEO_BAS_NUM) << SSX_VINDEX_SHIFT);
nodeNumBit = ((FIMC_IS_VIDEO_SS0_NUM - FIMC_IS_VIDEO_SS0_NUM) << SSX_VINDEX_SHIFT);
sensorIdBit = (sensorId << 0);
return (reprocessingBit) |
(nodeNumBit) |
(sensorIdBit);
}
int ExynosCameraFrameFactory::m_getSensorId(unsigned int nodeNum, unsigned int connectionMode, bool flagLeader, bool reprocessing, int sensorScenario)
{
/* sub 100, and make index */
nodeNum -= 100;
unsigned int reprocessingBit = 0;
unsigned int otfInterfaceBit = 0;
unsigned int leaderBit = 0;
unsigned int sensorId = getSensorId(m_cameraId);
if (reprocessing == true)
reprocessingBit = 1;
if (flagLeader == true)
leaderBit = 1;
if (sensorScenario < 0 ||SENSOR_SCENARIO_MAX <= sensorScenario) {
android_printAssert(NULL, LOG_TAG, "ASSERT(%s[%d]):Invalid sensorScenario(%d). assert!!!!",
__FUNCTION__, __LINE__, sensorScenario);
}
return ((sensorScenario << INPUT_SENSOR_SHIFT) & INPUT_SENSOR_MASK) |
((reprocessingBit << INPUT_STREAM_SHIFT) & INPUT_STREAM_MASK) |
((sensorId << INPUT_MODULE_SHIFT) & INPUT_MODULE_MASK) |
((nodeNum << INPUT_VINDEX_SHIFT) & INPUT_VINDEX_MASK) |
((connectionMode << INPUT_MEMORY_SHIFT) & INPUT_MEMORY_MASK) |
((leaderBit << INPUT_LEADER_SHIFT) & INPUT_LEADER_MASK);
}
void ExynosCameraFrameFactory::m_initDeviceInfo(int pipeId)
{
camera_device_info_t nullDeviceInfo;
m_deviceInfo[pipeId] = nullDeviceInfo;
for (int i = 0; i < MAX_NODE; i++) {
// set nodeNum
m_nodeNums[pipeId][i] = m_deviceInfo[pipeId].nodeNum[i];
// set default sensorId
m_sensorIds[pipeId][i] = -1;
}
}
status_t ExynosCameraFrameFactory::m_setSensorSize(int pipeId, int sensorW, int sensorH)
{
status_t ret = NO_ERROR;
/* set sensor size */
int sensorSizeBit = (sensorW << SENSOR_SIZE_WIDTH_SHIFT) | (sensorH << SENSOR_SIZE_HEIGHT_SHIFT);
ret = m_pipes[pipeId]->setControl(V4L2_CID_IS_S_SENSOR_SIZE, sensorSizeBit);
if (ret != NO_ERROR) {
CLOGE("setControl(V4L2_CID_IS_S_SENSOR_SIZE, (%d x %d)) fail", sensorW, sensorH);
return ret;
}
CLOGD("setControl(V4L2_CID_IS_S_SENSOR_SIZE, (%d x %d)) succeed", sensorW, sensorH);
return ret;
}
void ExynosCameraFrameFactory::m_init(void)
{
m_cameraId = 0;
m_frameCount = 0;
m_shot_ext = new struct camera2_shot_ext;
memset(m_name, 0x00, sizeof(m_name));
memset(m_nodeNums, -1, sizeof(m_nodeNums));
memset(m_sensorIds, -1, sizeof(m_sensorIds));
for (int i = 0; i < MAX_NUM_PIPES; i++)
m_pipes[i] = NULL;
m_frameMgr = NULL;
/* setting about request */
m_requestVC0 = false;
m_requestVC1 = false;
m_requestVC2 = false;
m_requestVC3 = false;
m_request3AC = false;
m_request3AP = false;
m_requestISP = false;
m_requestISPC = false;
m_requestISPP = false;
m_requestDIS = false;
m_requestSCC = false;
m_requestSCP = false;
m_requestMCSC0 = false;
m_requestMCSC1 = false;
m_requestMCSC2 = false;
m_requestMCSC3 = false;
m_requestMCSC4 = false;
m_requestJPEG = false;
m_requestThumbnail = false;
/* setting about bypass */
m_bypassDRC = true;
m_bypassDIS = true;
m_bypassDNR = true;
m_bypassFD = true;
/* setting about H/W OTF mode */
m_flagFlite3aaOTF = false;
m_flag3aaIspOTF = false;
m_flagIspTpuOTF = false;
m_flagIspMcscOTF = false;
m_flagTpuMcscOTF = false;
/* setting about reprocessing */
m_supportReprocessing = false;
m_flagReprocessing = false;
m_supportPureBayerReprocessing = false;
m_supportSCC = false;
m_supportSingleChain = false;
m_setCreate(false);
}
}; /* namespace android */