分享

TI android devkit camera porting guide

 WUCANADA 2016-01-14
TIBanner.png






This is a porting guide of - How to enable/add camera sensor on Android. Document will highlight on how to

  • Add camera module to linux kernel
  • Enable camera module to kernel config
  • Enable camera port on android

All example in this article is based on camera sensor 'mt9v113' and rowboat-android release.(http://focus./docs/toolsw/folders/print/androidsdk-sitara.html)

Android's Camera Sub System

Android's camera application connect with android HAL through camera binding interface. HAL inturns connect physical camera sensor and provides control & data interface between application and camera sensor.

The diagram below illustrates the structure of the camera subsystem. In the diagram proprietary camera libraries are nothing but camera HAL in current context. source : http://source./porting/camera.html

Android-camera-subsystem.jpg

Adding Camera Module to Linux Kernel

  • Write/Get camera driver. (mt9v113.c/mt9v113.h)
  • Put driver files at <Kernel>/drivers/media/video. Good to have header files at <Kernel>/include/media
  • Open & Edit <Kernel>drivers/media/video/Makefile
$vim <Kernel>/drivers/media/video/Makefile
Add driver file to get compiled.
e.x.
obj-$(CONFIG_VIDEO_MT9V113) += mt9v113.o
  • Open & Edit <Kernel>/drivers/media/video/Kconfig
$vim <Kernel>/drivers/media/video/Kconfig
Add config entry for the driver.
e.x.
config VIDEO_MT9V113
 tristate "Aptina MT9V113 VGA CMOS IMAGE SENSOR"
 depends on VIDEO_V4L2 && I2C
 ---help---
 This is a Video4Linux2 sensor-level driver for the Aptina MT9V113
 image sensor.
 
 To compile this driver as a module, choose M here: the
 module will be called mt9v113.
  • Open & Edit <Kernel>/arch/arm/mach-omap2/board-omap3beagle.c
$vim <Kernel>/arch/arm/mach-omap2/board-omap3beagle.c
/* Add i2c init data and regulator declaration for camera sensor.
For more detail refer file - '<Kernel>/arch/arm/mach-omap2/board-omap3beagle.c' */
e.x.
static struct i2c_board_info __initdata beagle_i2c2_boardinfo[] = {
#if defined(CONFIG_VIDEO_MT9V113) || defined(CONFIG_VIDEO_MT9V113_MODULE)
 {
 I2C_BOARD_INFO("mt9v113", MT9V113_I2C_ADDR),
 .platform_data = &mt9v113_pdata,
 },
#endif
  • Open & Edit <Kernel>/arch/arm/mach-omap2/board-omap3beagle-camera.c
    • Add board specific power settings for camera sensor
    • For the reference refer file - '<Kernel>/arch/arm/mach-omap2/board-omap3beagle-camera.c'
  • Open & Edit <Kernel>/arch/arm/mach-omap2/Makefile
$vim <Kernel>/arch/arm/mach-omap2/Makefile
Add board file for build
obj-$(CONFIG_MACH_OMAP3_BEAGLE) += board-omap3beagle.o  board-omap3beagle-camera.o \

Enable Camera Module to Kernel Config

  • Configure kernel and enable camera sensor
$cd <Kernel>
$make CROSS_COMPILE=arm-eabi- ARCH=arm menuconfig
  • Go to device drivers -> multimedia support -> video capture adapters -> encoders/decoders and other helper chips
  • select added camera driver
General setup  --->
[*] Enable loadable module support  --->
[*] Enable the block layer  --->
    System Type  --->
    Bus support  --->
    Kernel Features  --->
    Boot options  --->
    CPU Power Management  --->
    Floating point emulation  --->
    Userspace binary formats  --->
    Power management options  --->
[*] Networking support  --->
    Device Drivers  --->
    CBUS support  --->
    File systems  --->
    *** Multimedia core support ***
<*>   Video For Linux
[*]     Enable Video For Linux API 1 (DEPRECATED)
< >   DVB for Linux
    *** Multimedia drivers ***
[ ]   Load and attach frontend and tuner driver modules as needed
[ ]   Customize analog and hybrid tuner modules to build  --->
[*]   Video capture adapters  --->
[*]   Radio Adapters  --->
[ ]   DAB adapters
[ ]   Enable advanced debug functionality
[ ]   Enable old-style fixed minor ranges for video devices
[ ]   Autoselect pertinent encoders/decoders and other helper chips
     Encoders/decoders and other helper chips  --->
< >   Virtual Video Driver
< >   CPiA Video For Linux
< >   CPiA2 Video For Linux
< >   SAA5246A, SAA5281 Teletext processor
< > OmniVision OV7670 sensor support
<*> Micron mt9v011 sensor support
<*> Aptina MT9V113 VGA CMOS IMAGE SENSOR
< > TCM825x camera sensor support
< > Micron MT9P012 raw sensor driver (5MP)

Patch reference

Kindly find patch reference at http://processors.wiki./images/a/aa/0001-camera-sensor-support-mt9v113-for-beagleboard.patch.gz

This patch will add camera sensor mt9v113 to kernel.

Build Kernel

Kindly refer - How to build kernel: http://processors.wiki./index.php/TI-Android-FroYo-DevKit-V2_UserGuide#Kernel

Android Camera HAL Reference

http://processors.wiki./images/6/6c/0001-HAL-camera-support-added-for-beagleboard.patch.gz

Android Camera HAL brief

  • To implement a camera HAL ( also consider as driver between android camera subsystem and V4L2 kernel driver) ; one need to create a shared library (named as libcamera.so) that implements the interface defined at “<ANDROID_ROOT>/frameworks/base/include/camera/CameraHardwareInterface.h”.
  • Location of the shared library should be at <ANDROID_ROOT>/hardware/<vendor>/<boardname>/camera

e.g. In rowboat android - froyo release for omap3 ; it is at <ANDROID_ROOT>/hardware/ti/omap3/camera

Steps

  • Create camera HAL at location explained above
  • Create source files and implement interface defined at 'CameraHardwareInterface.h'. Kindly refer rowboat froyo release for the reference.

<ANDROID_ROOT>/hardware/ti/omap3/camera/CameraHardware.cpp
<ANDROID_ROOT>/hardware/ti/omap3/camera/CameraHardware.h

  • Following section brief above important interface needs to be defined under camera HAL.
/* constructor */
CameraHardware::CameraHardware()
 : mParameters(),
 mPreviewHeap(0),
 mRawHeap(0),
 mCamera(0),
 mPreviewFrameSize(0),
 mNotifyCb(0),
 mDataCb(0),
 mDataCbTimestamp(0),
 mCallbackCookie(0),
 mMsgEnabled(0),
 previewStopped(true)
{
 
 /* create camera, open camera sensor */
 /* init default paramets
 e.x.
 CameraParameters p;
 p.setPreviewSize(320, 240);
 p.set(CameraParameters::KEY_JPEG_QUALITY, 100);
 p.setPreviewFormat(CameraParameters::PIXEL_FORMAT_YUV422SP);
 */
 initDefaultParameters();
}
/* destructor */
CameraHardware::~CameraHardware()
{
 /* close device and delete instance created */
}
 
sp<IMemoryHeap> CameraHardware::getPreviewHeap() const
{
 /* return preview frame pointer */
 return mPreviewHeap;
}
 
 
void CameraHardware::setCallbacks(notify_callback notify_cb,
 data_callback data_cb,
 data_callback_timestamp data_cb_timestamp,
 void* user)
{
 /* store callback to local pointers, need to callback at the time of preview/image capture
 e.x.
 mNotifyCb = notify_cb;
 mDataCb = data_cb;
 mDataCbTimestamp = data_cb_timestamp;
 mCallbackCookie = user;*/
}
 
void CameraHardware::enableMsgType(int32_t msgType)
{
 /* set local message flag. Application will give this notification to perform certain action while previewing.
 ex.start video, image caputure etc. */
 mMsgEnabled |= msgType;
}
 
void CameraHardware::disableMsgType(int32_t msgType)
{
 mMsgEnabled &= ~msgType;
}
 
bool CameraHardware::msgTypeEnabled(int32_t msgType)
{
 /* return message value - presently enable at HAL
 return (mMsgEnabled & msgType); */
}
/* start preview */
status_t CameraHardware::startPreview()
{
 
 /* configure device and start preview thread */
 /* in preview thread call
 - check message type
 - fill preview frame pointer with valid preview data
 - call data callback with data
 */
}
 
void CameraHardware::stopPreview()
{
 /* stop preview */
}
 
status_t CameraHardware::startRecording()
{
 /* configure device & start record thread */
 /* record thread
 - check message type
 - if message type contains - CAMERA_MSG_VIDEO_FRAME then call 'mDataCbTimestamp' with video frame captured
 */
}
 
void CameraHardware::stopRecording()
{
 /* stop recording */
}
 
status_t CameraHardware::takePicture()
{
 /*
 - configure camera device
 - take a current frame
 - check message type
 - call callback
 */
 }
 
status_t CameraHardware::setParameters(const CameraParameters& params)
{
 /*
 - configure device as per parameters
 */
}
 
CameraParameters CameraHardware::getParameters() const
{
 /*
 - return current value of parameter set
 */
}
  • Create and configure android.mk file
LOCAL_PATH:= $(call my-dir)
 
#
# libcamera
#
include $(CLEAR_VARS)
LOCAL_SRC_FILES:=  source1.cpp  source2.cpp ...
LOCAL_MODULE:= libcamera
LOCAL_SHARED_LIBRARIES:=  libcutils  libui  libutils  libbinder  libjpeg  libcamera_client  
 libsurfaceflinger_client
LOCAL_C_INCLUDES +=  external/jpeg
include $(BUILD_SHARED_LIBRARY)
include $(all-subdir-makefiles)
  • Compile android system or one can also compile individal subsystem by
Go to module directory
$cd /projects/rowboat-android/hardware/ti/omap3/camera
$source <ANDROID_ROOT>/build/envsetup.sh
$mm TARGET_PRODUCT= <TARGET PRODUCT NAME>
e.g.$ mm TARGET_PRODUCT=beagleboard
copy libcamera.so to out/target/product/<boardname>/system/lib
  • Create file system and test on target
  • Kindly refer user guide for more information.

http://processors.wiki./index.php/TI-Android-FroYo-DevKit-V2_UserGuide
http://processors.wiki./index.php/TI-Android-GingerBread-2.3-DevKit-1.0_UserGuide

    本站是提供个人知识管理的网络存储空间,所有内容均由用户发布,不代表本站观点。请注意甄别内容中的联系方式、诱导购买等信息,谨防诈骗。如发现有害或侵权内容,请点击一键举报。
    转藏 分享 献花(0

    0条评论

    发表

    请遵守用户 评论公约

    类似文章 更多