blob: 45b49b3e53beeddcbb14833b617716984eead5a3 [file] [log] [blame]
/*
* Copyright (C) 2020 Intel 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.
*/
#pragma once
#include <base/threading/thread.h>
#include <memory>
#include <unordered_map>
extern "C" {
#include "ia_pal_types_isp_parameters_autogen.h"
}
#include "CameraBuffer.h"
#include "PlatformData.h"
#include "TNRCommon.h"
/* the cm_rt.h has some build error with current clang build flags
* use the ignored setting to ignore these errors, and use
* push/pop to make the ignore only take effect on this file */
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wbitfield-constant-conversion"
#pragma clang diagnostic ignored "-Wunused-private-field"
// HANDLE is redefined in cm_rt.h, avoid the redefinition build error
#define HANDLE cancel_fw_pre_define
#include "cm_rt.h"
#pragma clang diagnostic pop
extern int run_tnr7us_frame(int width, int height, int stride, CmSurface2DUP*& inputSurface,
CmSurface2DUP*& outputSurface, tnr_scale_1_0_t* dsPtr,
tnr7_ims_1_0_t* imsPtr, tnr7_bc_1_0_t* bcPtr,
tnr7_blend_1_0_t* blendPtr, bool updateParam = false, int type = 0);
extern int32_t createCmSurface2DUP(uint32_t width, uint32_t height, CM_SURFACE_FORMAT format,
void* sysMem, CmSurface2DUP*& surface);
extern int32_t destroyCMSurface2DUP(CmSurface2DUP*& surface);
// update parameters when gain changes
extern int tnr7usParamUpdate(int gain, bool forceUpdate = false, int type = 0);
namespace icamera {
// IntelTNR7US object is for using Intel GPU tnr(tnr7ultraslim) feature.
class IntelTNR7US {
public:
explicit IntelTNR7US(int cameraId);
~IntelTNR7US();
int init(int width, int height, TnrType type);
/**
* call tnr api to calc tnr result
*
* \param inBufAddr: input image buffer
* \param outBufAddr: tnr output
* \param tnrParam: tnr parameters from ISP
* \param fd: user output buffer file handle
*/
int runTnrFrame(const void* inBufAddr, void* outBufAddr, uint32_t inBufSize,
uint32_t outBufSize, Tnr7Param* tnrParam, int fd = -1);
Tnr7Param* allocTnr7ParamBuf();
void* allocCamBuf(uint32_t bufSize, int id);
void freeAllBufs();
int prepareSurface(void* bufAddr, int size);
int asyncParamUpdate(int gain, bool forceUpdate);
private:
/* tnr api use CmSurface2DUP object as data buffer, call this api to create
* CmSurface2DUP object from user data buffer */
CmSurface2DUP* createCMSurface(void* bufAddr);
int32_t destroyCMSurface(CmSurface2DUP* surface);
// get the CmSurface object of the bufAddr in mCMSurfaceMap
CmSurface2DUP* getBufferCMSurface(void* bufAddr);
/* call tnr7us API to update params */
void handleParamUpdate(int gain, bool forceUpdate);
private:
int mCameraId;
int mWidth;
int mHeight;
TnrType mTnrType;
// Tnr will create CMSurface for input buffers and cache them in the map
std::unordered_map<void*, CmSurface2DUP*> mCMSurfaceMap;
Tnr7Param* mTnrParam;
std::unique_ptr<base::Thread> mThread;
DISALLOW_COPY_AND_ASSIGN(IntelTNR7US);
};
} // namespace icamera