mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-22 17:25:35 +03:00
Add ov5693 camera sensor driver code, mode tables and makefile changes. Bug 3583587 Change-Id: Ib692c0a68cb893583c41da0d58bda0be80dd74e3 Signed-off-by: Ankur Pawar <ankurp@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/2864554 Reviewed-by: Laxman Dewangan <ldewangan@nvidia.com> Reviewed-by: Semi Malinen <smalinen@nvidia.com> Reviewed-by: Bitan Biswas <bbiswas@nvidia.com> GVS: Gerrit_Virtual_Submit <buildbot_gerritrpt@nvidia.com>
105 lines
3.1 KiB
C
105 lines
3.1 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (c) 2013-2023 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
|
*/
|
|
|
|
#ifndef __UAPI_OV5693_H__
|
|
#define __UAPI_OV5693_H__
|
|
|
|
#include <media/nvc.h>
|
|
#include "nvc_image.h"
|
|
|
|
#define OV5693_IOCTL_SET_MODE _IOW('o', 1, struct ov5693_mode)
|
|
#define OV5693_IOCTL_SET_FRAME_LENGTH _IOW('o', 2, __u32)
|
|
#define OV5693_IOCTL_SET_COARSE_TIME _IOW('o', 3, __u32)
|
|
#define OV5693_IOCTL_SET_GAIN _IOW('o', 4, __u16)
|
|
#define OV5693_IOCTL_GET_STATUS _IOR('o', 5, __u8)
|
|
#define OV5693_IOCTL_SET_BINNING _IOW('o', 6, __u8)
|
|
#define OV5693_IOCTL_TEST_PATTERN _IOW('o', 7, \
|
|
enum ov5693_test_pattern)
|
|
#define OV5693_IOCTL_SET_GROUP_HOLD _IOW('o', 8, struct ov5693_ae)
|
|
/*
|
|
* IOCTL to set the operating mode of camera.
|
|
* This can be either stereo , leftOnly or rightOnly
|
|
*/
|
|
#define OV5693_IOCTL_SET_CAMERA_MODE _IOW('o', 10, __u32)
|
|
#define OV5693_IOCTL_SYNC_SENSORS _IOW('o', 11, __u32)
|
|
#define OV5693_IOCTL_GET_FUSEID _IOR('o', 12, struct nvc_fuseid)
|
|
#define OV5693_IOCTL_SET_HDR_COARSE_TIME _IOW('o', 13, struct ov5693_hdr)
|
|
#define OV5693_IOCTL_READ_OTP_BANK _IOWR('o', 14, \
|
|
struct ov5693_otp_bank)
|
|
#define OV5693_IOCTL_SET_CAL_DATA _IOW('o', 15, \
|
|
struct ov5693_cal_data)
|
|
#define OV5693_IOCTL_GET_EEPROM_DATA _IOR('o', 20, __u8 *)
|
|
#define OV5693_IOCTL_SET_EEPROM_DATA _IOW('o', 21, __u8 *)
|
|
#define OV5693_IOCTL_GET_CAPS _IOR('o', 22, struct nvc_imager_cap)
|
|
#define OV5693_IOCTL_SET_POWER _IOW('o', 23, __u32)
|
|
|
|
#define OV5693_FUSE_ID_OTP_START_ADDR 0x3D00
|
|
#define OV5693_FUSE_ID_OTP_BANK 0
|
|
#define OV5693_FUSE_ID_SIZE 8
|
|
#define OV5693_FUSE_ID_STR_SIZE (OV5693_FUSE_ID_SIZE * 2)
|
|
|
|
#define OV5693_FRAME_LENGTH_ADDR_MSB 0x380E
|
|
#define OV5693_FRAME_LENGTH_ADDR_LSB 0x380F
|
|
#define OV5693_COARSE_TIME_ADDR_1 0x3500
|
|
#define OV5693_COARSE_TIME_ADDR_2 0x3501
|
|
#define OV5693_COARSE_TIME_ADDR_3 0x3502
|
|
#define OV5693_COARSE_TIME_SHORT_ADDR_1 0x3506
|
|
#define OV5693_COARSE_TIME_SHORT_ADDR_2 0x3507
|
|
#define OV5693_COARSE_TIME_SHORT_ADDR_3 0x3508
|
|
#define OV5693_GAIN_ADDR_MSB 0x350A
|
|
#define OV5693_GAIN_ADDR_LSB 0x350B
|
|
#define OV5693_GROUP_HOLD_ADDR 0x3208
|
|
#define OV5693_TIMING_REG20 0x3820
|
|
#define VERTICAL_FLIP ((0x1 << 1) | (0x1 << 6))
|
|
#define OV5693_TIMING_REG21 0x3821
|
|
#define HORIZONTAL_MIRROR_MASK (0x3 << 1)
|
|
|
|
struct ov5693_mode {
|
|
int res_x;
|
|
int res_y;
|
|
int fps;
|
|
__u32 frame_length;
|
|
__u32 coarse_time;
|
|
__u32 coarse_time_short;
|
|
__u16 gain;
|
|
__u8 hdr_en;
|
|
};
|
|
|
|
struct ov5693_ae {
|
|
__u32 frame_length;
|
|
__u8 frame_length_enable;
|
|
__u32 coarse_time;
|
|
__u32 coarse_time_short;
|
|
__u8 coarse_time_enable;
|
|
__s32 gain;
|
|
__u8 gain_enable;
|
|
};
|
|
|
|
struct ov5693_fuseid {
|
|
__u32 size;
|
|
__u8 id[16];
|
|
};
|
|
|
|
struct ov5693_hdr {
|
|
__u32 coarse_time_long;
|
|
__u32 coarse_time_short;
|
|
};
|
|
|
|
struct ov5693_otp_bank {
|
|
__u32 id;
|
|
__u8 buf[16];
|
|
};
|
|
|
|
struct ov5693_cal_data {
|
|
int loaded;
|
|
int rg_ratio;
|
|
int bg_ratio;
|
|
int rg_ratio_typical;
|
|
int bg_ratio_typical;
|
|
__u8 lenc[62];
|
|
};
|
|
|
|
#endif /* __UAPI_OV5693_H__ */
|