blob: 9cfd00cd564cfa986cd313cfffdfd1797a4f67e2 [file] [log] [blame]
/* Copyright (c) 2014-2016, 2018, 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 MSM_OIS_H
#define MSM_OIS_H
#include <linux/i2c.h>
#include <linux/gpio.h>
#include <soc/qcom/camera2.h>
#include <media/v4l2-subdev.h>
#include <media/msmb_camera.h>
#include "msm_camera_i2c.h"
#include "msm_camera_dt_util.h"
#include "msm_camera_io_util.h"
#define DEFINE_MSM_MUTEX(mutexname) \
static struct mutex mutexname = __MUTEX_INITIALIZER(mutexname)
#define MSM_OIS_MAX_VREGS (10)
struct msm_ois_ctrl_t;
enum msm_ois_state_t {
OIS_ENABLE_STATE,
OIS_OPS_ACTIVE,
OIS_OPS_INACTIVE,
OIS_DISABLE_STATE,
};
struct msm_ois_vreg {
struct camera_vreg_t *cam_vreg;
void *data[MSM_OIS_MAX_VREGS];
int num_vreg;
};
struct msm_ois_board_info {
char ois_name[MAX_OIS_NAME_SIZE];
uint32_t i2c_slaveaddr;
struct msm_ois_opcode opcode;
};
struct msm_ois_ctrl_t {
struct i2c_driver *i2c_driver;
struct platform_driver *pdriver;
struct platform_device *pdev;
struct msm_camera_i2c_client i2c_client;
enum msm_camera_device_type_t ois_device_type;
struct msm_sd_subdev msm_sd;
struct mutex *ois_mutex;
enum msm_camera_i2c_data_type i2c_data_type;
struct v4l2_subdev sdev;
struct v4l2_subdev_ops *ois_v4l2_subdev_ops;
void *user_data;
uint16_t i2c_tbl_index;
enum cci_i2c_master_t cci_master;
uint32_t subdev_id;
enum msm_ois_state_t ois_state;
struct msm_ois_vreg vreg_cfg;
struct msm_camera_gpio_conf *gconf;
struct msm_pinctrl_info pinctrl_info;
uint8_t cam_pinctrl_status;
struct msm_ois_board_info *oboard_info;
};
#endif