tegrakernel/kernel/nvidia/include/media/ov5693.h

88 lines
2.5 KiB
C
Raw Normal View History

2022-02-16 09:13:02 -06:00
/*
* Copyright (c) 2013-2020, NVIDIA CORPORATION. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify it
* under the terms and conditions of the GNU General Public License,
* version 2, as published by the Free Software Foundation.
*
* This program is distributed in the hope 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.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __OV5693_H__
#define __OV5693_H__
#include <media/nvc.h>
#include <uapi/media/nvc_image.h>
#include <uapi/media/ov5693.h>
#define OV5693_INVALID_COARSE_TIME -1
#define OV5693_EEPROM_ADDRESS 0x54
#define OV5693_EEPROM_SIZE 1024
#define OV5693_EEPROM_STR_SIZE (OV5693_EEPROM_SIZE * 2)
#define OV5693_EEPROM_BLOCK_SIZE (1 << 8)
#define OV5693_EEPROM_NUM_BLOCKS \
(OV5693_EEPROM_SIZE / OV5693_EEPROM_BLOCK_SIZE)
#define OV5693_OTP_LOAD_CTRL_ADDR 0x3D81
#define OV5693_OTP_BANK_SELECT_ADDR 0x3D84
#define OV5693_OTP_BANK_START_ADDR 0x3D00
#define OV5693_OTP_BANK_END_ADDR 0x3D0F
#define OV5693_OTP_NUM_BANKS (32)
#define OV5693_OTP_BANK_SIZE \
(OV5693_OTP_BANK_END_ADDR - OV5693_OTP_BANK_START_ADDR + 1)
#define OV5693_OTP_SIZE \
(OV5693_OTP_BANK_SIZE * OV5693_OTP_NUM_BANKS)
#define OV5693_OTP_STR_SIZE (OV5693_OTP_SIZE * 2)
/* See notes in the nvc.h file on the GPIO usage */
enum ov5693_gpio_type {
OV5693_GPIO_TYPE_PWRDN = 0,
OV5693_GPIO_TYPE_RESET,
};
struct ov5693_eeprom_data {
struct i2c_client *i2c_client;
struct i2c_adapter *adap;
struct i2c_board_info brd;
struct regmap *regmap;
};
struct ov5693_power_rail {
struct regulator *dvdd;
struct regulator *avdd;
struct regulator *dovdd;
};
struct ov5693_regulators {
const char *avdd;
const char *dvdd;
const char *dovdd;
};
struct ov5693_platform_data {
unsigned cfg;
unsigned num;
const char *dev_name;
unsigned gpio_count; /* see nvc.h GPIO notes */
struct nvc_gpio_pdata *gpio; /* see nvc.h GPIO notes */
struct nvc_imager_static_nvc *static_info;
bool use_vcm_vdd;
int (*probe_clock)(unsigned long);
int (*power_on)(struct ov5693_power_rail *);
int (*power_off)(struct ov5693_power_rail *);
const char *mclk_name;
struct nvc_imager_cap *cap;
struct ov5693_regulators regulators;
bool has_eeprom;
bool use_cam_gpio;
};
#endif /* __OV5693_H__ */