/* 
 | 
 * rk_aiq_algo_debayer_itf.c 
 | 
 * 
 | 
 *  Copyright (c) 2019 Rockchip Corporation 
 | 
 * 
 | 
 * 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. 
 | 
 * 
 | 
 */ 
 | 
  
 | 
#include "rk_aiq_algo_types_int.h" 
 | 
#include "adebayer/rk_aiq_algo_adebayer_itf.h" 
 | 
#include "adebayer/rk_aiq_types_algo_adebayer_prvt.h" 
 | 
  
 | 
RKAIQ_BEGIN_DECLARE 
 | 
  
 | 
static XCamReturn 
 | 
create_context 
 | 
( 
 | 
    RkAiqAlgoContext **context, 
 | 
    const AlgoCtxInstanceCfg* cfg 
 | 
) 
 | 
{ 
 | 
    XCamReturn result = XCAM_RETURN_NO_ERROR; 
 | 
    AlgoCtxInstanceCfgInt* instanc_int = (AlgoCtxInstanceCfgInt*)cfg; 
 | 
  
 | 
    RkAiqAlgoContext *ctx = new RkAiqAlgoContext(); 
 | 
    if (ctx == NULL) { 
 | 
        LOGE_ADEBAYER( "%s: create adebayer context fail!\n", __FUNCTION__); 
 | 
        return XCAM_RETURN_ERROR_MEM; 
 | 
    } 
 | 
    LOGI_ADEBAYER("%s: (enter)\n", __FUNCTION__ ); 
 | 
    AdebayerInit(&ctx->adebayerCtx, instanc_int->calib, instanc_int->calibv2); 
 | 
    *context = ctx; 
 | 
    LOGI_ADEBAYER("%s: (exit)\n", __FUNCTION__ ); 
 | 
    return result; 
 | 
} 
 | 
  
 | 
static XCamReturn 
 | 
destroy_context 
 | 
( 
 | 
    RkAiqAlgoContext *context 
 | 
) 
 | 
{ 
 | 
    XCamReturn result = XCAM_RETURN_NO_ERROR; 
 | 
  
 | 
    LOGI_ADEBAYER("%s: (enter)\n", __FUNCTION__ ); 
 | 
    AdebayerContext_t* pAdebayerCtx = (AdebayerContext_t*)&context->adebayerCtx; 
 | 
    AdebayerRelease(pAdebayerCtx); 
 | 
    delete context; 
 | 
    LOGI_ADEBAYER("%s: (exit)\n", __FUNCTION__ ); 
 | 
    return result; 
 | 
} 
 | 
  
 | 
static XCamReturn 
 | 
prepare 
 | 
( 
 | 
    RkAiqAlgoCom* params 
 | 
) 
 | 
{ 
 | 
    XCamReturn result = XCAM_RETURN_NO_ERROR; 
 | 
  
 | 
    LOGI_ADEBAYER("%s: (enter)\n", __FUNCTION__ ); 
 | 
    AdebayerContext_t* pAdebayerCtx = (AdebayerContext_t *)¶ms->ctx->adebayerCtx; 
 | 
    RkAiqAlgoConfigAdebayerInt* pCfgParam = (RkAiqAlgoConfigAdebayerInt*)params; 
 | 
  
 | 
    if(!!(params->u.prepare.conf_type & RK_AIQ_ALGO_CONFTYPE_UPDATECALIB )){ 
 | 
        AdebayerInit(pAdebayerCtx, pCfgParam->rk_com.u.prepare.calib, pCfgParam->rk_com.u.prepare.calibv2); 
 | 
    } 
 | 
  
 | 
    AdebayerStart(pAdebayerCtx); 
 | 
    LOGI_ADEBAYER("%s: (exit)\n", __FUNCTION__ ); 
 | 
    return result; 
 | 
} 
 | 
  
 | 
static XCamReturn 
 | 
pre_process 
 | 
( 
 | 
    const RkAiqAlgoCom* inparams, 
 | 
    RkAiqAlgoResCom* outparams 
 | 
) 
 | 
{ 
 | 
    LOGI_ADEBAYER("%s: (enter)\n", __FUNCTION__ ); 
 | 
  
 | 
    LOGI_ADEBAYER("%s: (exit)\n", __FUNCTION__ ); 
 | 
    return XCAM_RETURN_NO_ERROR; 
 | 
} 
 | 
  
 | 
static XCamReturn 
 | 
processing 
 | 
( 
 | 
    const RkAiqAlgoCom* inparams, 
 | 
    RkAiqAlgoResCom* outparams 
 | 
) 
 | 
{ 
 | 
    XCamReturn result = XCAM_RETURN_NO_ERROR; 
 | 
    int iso = 50; 
 | 
  
 | 
    RkAiqAlgoProcAdebayerInt* pAdebayerProcParams = (RkAiqAlgoProcAdebayerInt*)inparams; 
 | 
    RkAiqAlgoProcResAdebayerInt* pAdebayerProcResParams = (RkAiqAlgoProcResAdebayerInt*)outparams; 
 | 
    AdebayerContext_t* pAdebayerCtx = (AdebayerContext_t *)&inparams->ctx->adebayerCtx; 
 | 
  
 | 
    LOGI_ADEBAYER("%s: (enter)\n", __FUNCTION__ ); 
 | 
  
 | 
    if (pAdebayerProcParams->rk_com.u.proc.is_bw_sensor) { 
 | 
        pAdebayerCtx->config.enable = 0; 
 | 
        pAdebayerCtx->config.updatecfg = true; 
 | 
    } else { 
 | 
        RKAiqAecExpInfo_t *curExp = pAdebayerProcParams->rk_com.u.proc.curExp; 
 | 
        if(curExp != NULL) { 
 | 
            if(pAdebayerProcParams->hdr_mode == RK_AIQ_WORKING_MODE_NORMAL) { 
 | 
                iso = curExp->LinearExp.exp_real_params.analog_gain * 50; 
 | 
                LOGD_ADEBAYER("%s:NORMAL:iso=%d,again=%f\n", __FUNCTION__, iso, 
 | 
                              curExp->LinearExp.exp_real_params.analog_gain); 
 | 
            } else if(RK_AIQ_HDR_GET_WORKING_MODE(pAdebayerProcParams->hdr_mode) == RK_AIQ_WORKING_MODE_ISP_HDR2) { 
 | 
                iso = curExp->HdrExp[1].exp_real_params.analog_gain * 50; 
 | 
                LOGD_ADEBAYER("%s:HDR2:iso=%d,again=%f\n", __FUNCTION__, iso, 
 | 
                              curExp->HdrExp[1].exp_real_params.analog_gain); 
 | 
            } else if(RK_AIQ_HDR_GET_WORKING_MODE(pAdebayerProcParams->hdr_mode) == RK_AIQ_WORKING_MODE_ISP_HDR3) { 
 | 
                iso = curExp->HdrExp[2].exp_real_params.analog_gain * 50; 
 | 
                LOGD_ADEBAYER("%s:HDR3:iso=%d,again=%f\n", __FUNCTION__, iso, 
 | 
                              curExp->HdrExp[2].exp_real_params.analog_gain); 
 | 
            } 
 | 
        } else { 
 | 
            LOGE_ADEBAYER("%s: curExp is NULL, so use default instead \n", __FUNCTION__); 
 | 
        } 
 | 
  
 | 
        if (iso != pAdebayerCtx->iso) { 
 | 
            pAdebayerCtx->iso = iso; 
 | 
            pAdebayerCtx->config.updatecfg = true; 
 | 
        } 
 | 
  
 | 
        if (pAdebayerCtx->full_param.updated) { 
 | 
            pAdebayerCtx->config.updatecfg = true; 
 | 
            pAdebayerCtx->full_param.updated = false; 
 | 
        } 
 | 
  
 | 
        if (pAdebayerCtx->config.updatecfg) 
 | 
            AdebayerProcess(pAdebayerCtx, iso); 
 | 
  
 | 
    } 
 | 
  
 | 
    AdebayerGetProcResult(pAdebayerCtx, &pAdebayerProcResParams->debayerRes); 
 | 
  
 | 
    LOGI_ADEBAYER("%s: (exit)\n", __FUNCTION__ ); 
 | 
    return XCAM_RETURN_NO_ERROR; 
 | 
} 
 | 
  
 | 
static XCamReturn 
 | 
post_process 
 | 
( 
 | 
    const RkAiqAlgoCom* inparams, 
 | 
    RkAiqAlgoResCom* outparams 
 | 
) 
 | 
{ 
 | 
    LOGI_ADEBAYER("%s: (enter)\n", __FUNCTION__ ); 
 | 
  
 | 
    LOGI_ADEBAYER("%s: (exit)\n", __FUNCTION__ ); 
 | 
    return XCAM_RETURN_NO_ERROR; 
 | 
} 
 | 
  
 | 
RkAiqAlgoDescription g_RkIspAlgoDescAdebayer = { 
 | 
    .common = { 
 | 
        .version = RKISP_ALGO_ADEBAYER_VERSION, 
 | 
        .vendor  = RKISP_ALGO_ADEBAYER_VENDOR, 
 | 
        .description = RKISP_ALGO_ADEBAYER_DESCRIPTION, 
 | 
        .type    = RK_AIQ_ALGO_TYPE_ADEBAYER, 
 | 
        .id      = 0, 
 | 
        .create_context  = create_context, 
 | 
        .destroy_context = destroy_context, 
 | 
    }, 
 | 
    .prepare = prepare, 
 | 
    .pre_process = pre_process, 
 | 
    .processing = processing, 
 | 
    .post_process = post_process, 
 | 
}; 
 | 
  
 | 
RKAIQ_END_DECLARE 
 |