mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-10-31 18:09:19 +00:00
923b49a7d4
Camera sensor driver architecture is redesigned to have move control at user space. The current kernel driver has provision for probing to find whether a particular camera sensor is connected. A video node is created for every successful camera probe. This request consists of samsung S5K3L1YX 12 MP sensor driver, CCI (Camera Control Interface) driver to perform I2C calls on I2C master bus, I2C MUX driver to select 2D / 3D MUX, QUP driver to perform legacy I2C calls and other utility functions (msm_sensor) that can be reused by kernel sensor drivers. Change-Id: I057e3a36b9e08e5b57eb7b90cb0643c84777d0bc Signed-off-by: Hody Hung <hhung@codeaurora.org> Signed-off-by: Shuzhen Wang <shuzhenw@codeaurora.org>
19 lines
689 B
C
19 lines
689 B
C
/* Copyright (c) 2009-2013, The Linux Foundation. All rights reserved.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 and
|
|
* only version 2 as published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
*/
|
|
#ifndef __LINUX_MSM_CAMERA_H
|
|
#define __LINUX_MSM_CAMERA_H
|
|
|
|
#include <linux/cdev.h>
|
|
#include <uapi/media/msm_camera.h>
|
|
|
|
#endif /* __LINUX_MSM_CAMERA_H */
|