/* | |
* Copyright (C) Texas Instruments - http://www.ti.com/ | |
* | |
* 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_TAG "CameraHAL" | |
#include "CameraHal.h" | |
#include "TICameraParameters.h" | |
extern "C" { | |
#include "memmgr.h" | |
#include "tiler.h" | |
//#include <timm_osal_interfaces.h> | |
//#include <timm_osal_trace.h> | |
}; | |
namespace android { | |
///@todo Move these constants to a common header file, preferably in tiler.h | |
#define STRIDE_8BIT (4 * 1024) | |
#define STRIDE_16BIT (4 * 1024) | |
#define ALLOCATION_2D 2 | |
///Utility Macro Declarations | |
/*--------------------MemoryManager Class STARTS here-----------------------------*/ | |
void* MemoryManager::allocateBuffer(int width, int height, const char* format, int &bytes, int numBufs) | |
{ | |
LOG_FUNCTION_NAME; | |
///We allocate numBufs+1 because the last entry will be marked NULL to indicate end of array, which is used when freeing | |
///the buffers | |
const uint numArrayEntriesC = (uint)(numBufs+1); | |
MemAllocBlock tMemBlock[ALLOCATION_2D]; | |
memset(tMemBlock, 0, sizeof(MemAllocBlock)); | |
///Allocate a buffer array | |
uint32_t *bufsArr = new uint32_t [numArrayEntriesC]; | |
if(!bufsArr) | |
{ | |
CAMHAL_LOGEB("Allocation failed when creating buffers array of %d uint32_t elements", numArrayEntriesC); | |
LOG_FUNCTION_NAME_EXIT; | |
return NULL; | |
} | |
///Initialize the array with zeros - this will help us while freeing the array in case of error | |
///If a value of an array element is NULL, it means we didnt allocate it | |
memset(bufsArr, 0, sizeof(*bufsArr) * numArrayEntriesC); | |
///If the bytes field is not zero, it means it is a 1-D tiler buffer request (possibly for image capture bit stream buffer) | |
if(bytes!=0) | |
{ | |
///1D buffers | |
for (int i = 0; i < numBufs; i++) | |
{ | |
tMemBlock->dim.len = bytes; | |
tMemBlock->fmt = PIXEL_FMT_PAGE; | |
tMemBlock->stride = 0; | |
CAMHAL_LOGDB("requested bytes = %d", bytes); | |
CAMHAL_LOGDB("tMemBlock.dim.len = %d", tMemBlock->dim.len); | |
bufsArr[i] = (uint32_t)MemMgr_Alloc(tMemBlock, 1); | |
if(!bufsArr[i]) | |
{ | |
LOGE("Buffer allocation failed for iteration %d", i); | |
goto error; | |
} | |
else | |
{ | |
CAMHAL_LOGDB("Allocated Tiler PAGED mode buffer address[%x]", bufsArr[i]); | |
} | |
} | |
} | |
else ///If bytes is not zero, then it is a 2-D tiler buffer request | |
{ | |
///2D buffers | |
for (int i = 0; i < numBufs; i++) | |
{ | |
int numAllocs = 1; | |
pixel_fmt_t pixelFormat[ALLOCATION_2D]; | |
int stride[ALLOCATION_2D]; | |
if(!strcmp(format,(const char *) CameraParameters::PIXEL_FORMAT_YUV422I)) | |
{ | |
///YUV422I format | |
pixelFormat[0] = PIXEL_FMT_16BIT; | |
stride[0] = STRIDE_16BIT; | |
} | |
else if(!strcmp(format,(const char *) CameraParameters::PIXEL_FORMAT_YUV420SP)) | |
{ | |
///YUV420 NV12 format | |
pixelFormat[0] = PIXEL_FMT_8BIT; | |
pixelFormat[1] = PIXEL_FMT_16BIT; | |
stride[0] = STRIDE_8BIT; | |
stride[1] = STRIDE_16BIT; | |
numAllocs = 2; | |
} | |
else if(!strcmp(format,(const char *) CameraParameters::PIXEL_FORMAT_RGB565)) | |
{ | |
///RGB 565 format | |
pixelFormat[0] = PIXEL_FMT_16BIT; | |
stride[0] = STRIDE_16BIT; | |
} | |
else if(!strcmp(format,(const char *) TICameraParameters::PIXEL_FORMAT_RAW)) | |
{ | |
///RAW format | |
pixelFormat[0] = PIXEL_FMT_16BIT; | |
stride[0] = STRIDE_16BIT; | |
} | |
else | |
{ | |
///By default assume YUV420 NV12 format | |
///YUV420 NV12 format | |
pixelFormat[0] = PIXEL_FMT_8BIT; | |
pixelFormat[1] = PIXEL_FMT_16BIT; | |
stride[0] = STRIDE_8BIT; | |
stride[1] = STRIDE_16BIT; | |
numAllocs = 2; | |
} | |
for(int index=0;index<numAllocs;index++) | |
{ | |
tMemBlock[index].fmt = pixelFormat[index]; | |
tMemBlock[index].stride = stride[index]; | |
tMemBlock[index].dim.area.width= width;/*width*/ | |
tMemBlock[index].dim.area.height= height;/*height*/ | |
} | |
bufsArr[i] = (uint32_t)MemMgr_Alloc(tMemBlock, numAllocs); | |
if(!bufsArr[i]) | |
{ | |
CAMHAL_LOGEB("Buffer allocation failed for iteration %d", i); | |
goto error; | |
} | |
else | |
{ | |
CAMHAL_LOGDB("Allocated Tiler PAGED mode buffer address[%x]", bufsArr[i]); | |
} | |
} | |
} | |
LOG_FUNCTION_NAME_EXIT; | |
return (void*)bufsArr; | |
error: | |
LOGE("Freeing buffers already allocated after error occurred"); | |
freeBuffer(bufsArr); | |
free(tMemBlock); | |
if ( NULL != mErrorNotifier.get() ) | |
{ | |
mErrorNotifier->errorNotify(-ENOMEM); | |
} | |
LOG_FUNCTION_NAME_EXIT; | |
return NULL; | |
} | |
//TODO: Get needed data to map tiler buffers | |
//Return dummy data for now | |
uint32_t * MemoryManager::getOffsets() | |
{ | |
LOG_FUNCTION_NAME; | |
LOG_FUNCTION_NAME_EXIT; | |
return NULL; | |
} | |
int MemoryManager::getFd() | |
{ | |
LOG_FUNCTION_NAME; | |
LOG_FUNCTION_NAME_EXIT; | |
return -1; | |
} | |
int MemoryManager::freeBuffer(void* buf) | |
{ | |
status_t ret = NO_ERROR; | |
LOG_FUNCTION_NAME; | |
uint32_t *bufEntry = (uint32_t*)buf; | |
if(!bufEntry) | |
{ | |
CAMHAL_LOGEA("NULL pointer passed to freebuffer"); | |
LOG_FUNCTION_NAME_EXIT; | |
return BAD_VALUE; | |
} | |
while(*bufEntry) | |
{ | |
ret |= MemMgr_Free((void*)*bufEntry++); | |
} | |
///@todo Check if this way of deleting array is correct, else use malloc/free | |
uint32_t * bufArr = (uint32_t*)buf; | |
delete [] bufArr; | |
LOG_FUNCTION_NAME_EXIT; | |
return ret; | |
} | |
status_t MemoryManager::setErrorHandler(ErrorNotifier *errorNotifier) | |
{ | |
status_t ret = NO_ERROR; | |
LOG_FUNCTION_NAME; | |
if ( NULL == errorNotifier ) | |
{ | |
CAMHAL_LOGEA("Invalid Error Notifier reference"); | |
ret = -EINVAL; | |
} | |
if ( NO_ERROR == ret ) | |
{ | |
mErrorNotifier = errorNotifier; | |
} | |
LOG_FUNCTION_NAME_EXIT; | |
return ret; | |
} | |
}; | |
/*--------------------MemoryManager Class ENDS here-----------------------------*/ |