18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0-only */ 28c2ecf20Sopenharmony_ci/* 38c2ecf20Sopenharmony_ci * Driver for the ov9650 sensor 48c2ecf20Sopenharmony_ci * 58c2ecf20Sopenharmony_ci * Copyright (C) 2008 Erik Andrén 68c2ecf20Sopenharmony_ci * Copyright (C) 2007 Ilyes Gouta. Based on the m5603x Linux Driver Project. 78c2ecf20Sopenharmony_ci * Copyright (C) 2005 m5603x Linux Driver Project <m5602@x3ng.com.br> 88c2ecf20Sopenharmony_ci * 98c2ecf20Sopenharmony_ci * Portions of code to USB interface and ALi driver software, 108c2ecf20Sopenharmony_ci * Copyright (c) 2006 Willem Duinker 118c2ecf20Sopenharmony_ci * v4l2 interface modeled after the V4L2 driver 128c2ecf20Sopenharmony_ci * for SN9C10x PC Camera Controllers 138c2ecf20Sopenharmony_ci */ 148c2ecf20Sopenharmony_ci 158c2ecf20Sopenharmony_ci#ifndef M5602_OV9650_H_ 168c2ecf20Sopenharmony_ci#define M5602_OV9650_H_ 178c2ecf20Sopenharmony_ci 188c2ecf20Sopenharmony_ci#include <linux/dmi.h> 198c2ecf20Sopenharmony_ci#include "m5602_sensor.h" 208c2ecf20Sopenharmony_ci 218c2ecf20Sopenharmony_ci/*****************************************************************************/ 228c2ecf20Sopenharmony_ci 238c2ecf20Sopenharmony_ci#define OV9650_GAIN 0x00 248c2ecf20Sopenharmony_ci#define OV9650_BLUE 0x01 258c2ecf20Sopenharmony_ci#define OV9650_RED 0x02 268c2ecf20Sopenharmony_ci#define OV9650_VREF 0x03 278c2ecf20Sopenharmony_ci#define OV9650_COM1 0x04 288c2ecf20Sopenharmony_ci#define OV9650_BAVE 0x05 298c2ecf20Sopenharmony_ci#define OV9650_GEAVE 0x06 308c2ecf20Sopenharmony_ci#define OV9650_RSVD7 0x07 318c2ecf20Sopenharmony_ci#define OV9650_COM2 0x09 328c2ecf20Sopenharmony_ci#define OV9650_PID 0x0a 338c2ecf20Sopenharmony_ci#define OV9650_VER 0x0b 348c2ecf20Sopenharmony_ci#define OV9650_COM3 0x0c 358c2ecf20Sopenharmony_ci#define OV9650_COM4 0x0d 368c2ecf20Sopenharmony_ci#define OV9650_COM5 0x0e 378c2ecf20Sopenharmony_ci#define OV9650_COM6 0x0f 388c2ecf20Sopenharmony_ci#define OV9650_AECH 0x10 398c2ecf20Sopenharmony_ci#define OV9650_CLKRC 0x11 408c2ecf20Sopenharmony_ci#define OV9650_COM7 0x12 418c2ecf20Sopenharmony_ci#define OV9650_COM8 0x13 428c2ecf20Sopenharmony_ci#define OV9650_COM9 0x14 438c2ecf20Sopenharmony_ci#define OV9650_COM10 0x15 448c2ecf20Sopenharmony_ci#define OV9650_RSVD16 0x16 458c2ecf20Sopenharmony_ci#define OV9650_HSTART 0x17 468c2ecf20Sopenharmony_ci#define OV9650_HSTOP 0x18 478c2ecf20Sopenharmony_ci#define OV9650_VSTRT 0x19 488c2ecf20Sopenharmony_ci#define OV9650_VSTOP 0x1a 498c2ecf20Sopenharmony_ci#define OV9650_PSHFT 0x1b 508c2ecf20Sopenharmony_ci#define OV9650_MVFP 0x1e 518c2ecf20Sopenharmony_ci#define OV9650_AEW 0x24 528c2ecf20Sopenharmony_ci#define OV9650_AEB 0x25 538c2ecf20Sopenharmony_ci#define OV9650_VPT 0x26 548c2ecf20Sopenharmony_ci#define OV9650_BBIAS 0x27 558c2ecf20Sopenharmony_ci#define OV9650_GbBIAS 0x28 568c2ecf20Sopenharmony_ci#define OV9650_Gr_COM 0x29 578c2ecf20Sopenharmony_ci#define OV9650_RBIAS 0x2c 588c2ecf20Sopenharmony_ci#define OV9650_HREF 0x32 598c2ecf20Sopenharmony_ci#define OV9650_CHLF 0x33 608c2ecf20Sopenharmony_ci#define OV9650_ARBLM 0x34 618c2ecf20Sopenharmony_ci#define OV9650_RSVD35 0x35 628c2ecf20Sopenharmony_ci#define OV9650_RSVD36 0x36 638c2ecf20Sopenharmony_ci#define OV9650_ADC 0x37 648c2ecf20Sopenharmony_ci#define OV9650_ACOM38 0x38 658c2ecf20Sopenharmony_ci#define OV9650_OFON 0x39 668c2ecf20Sopenharmony_ci#define OV9650_TSLB 0x3a 678c2ecf20Sopenharmony_ci#define OV9650_COM12 0x3c 688c2ecf20Sopenharmony_ci#define OV9650_COM13 0x3d 698c2ecf20Sopenharmony_ci#define OV9650_COM15 0x40 708c2ecf20Sopenharmony_ci#define OV9650_COM16 0x41 718c2ecf20Sopenharmony_ci#define OV9650_LCC1 0x62 728c2ecf20Sopenharmony_ci#define OV9650_LCC2 0x63 738c2ecf20Sopenharmony_ci#define OV9650_LCC3 0x64 748c2ecf20Sopenharmony_ci#define OV9650_LCC4 0x65 758c2ecf20Sopenharmony_ci#define OV9650_LCC5 0x66 768c2ecf20Sopenharmony_ci#define OV9650_HV 0x69 778c2ecf20Sopenharmony_ci#define OV9650_DBLV 0x6b 788c2ecf20Sopenharmony_ci#define OV9650_COM21 0x8b 798c2ecf20Sopenharmony_ci#define OV9650_COM22 0x8c 808c2ecf20Sopenharmony_ci#define OV9650_COM24 0x8e 818c2ecf20Sopenharmony_ci#define OV9650_DBLC1 0x8f 828c2ecf20Sopenharmony_ci#define OV9650_RSVD94 0x94 838c2ecf20Sopenharmony_ci#define OV9650_RSVD95 0x95 848c2ecf20Sopenharmony_ci#define OV9650_RSVD96 0x96 858c2ecf20Sopenharmony_ci#define OV9650_LCCFB 0x9d 868c2ecf20Sopenharmony_ci#define OV9650_LCCFR 0x9e 878c2ecf20Sopenharmony_ci#define OV9650_AECHM 0xa1 888c2ecf20Sopenharmony_ci#define OV9650_COM26 0xa5 898c2ecf20Sopenharmony_ci#define OV9650_ACOMA8 0xa8 908c2ecf20Sopenharmony_ci#define OV9650_ACOMA9 0xa9 918c2ecf20Sopenharmony_ci 928c2ecf20Sopenharmony_ci#define OV9650_REGISTER_RESET (1 << 7) 938c2ecf20Sopenharmony_ci#define OV9650_VGA_SELECT (1 << 6) 948c2ecf20Sopenharmony_ci#define OV9650_CIF_SELECT (1 << 5) 958c2ecf20Sopenharmony_ci#define OV9650_QVGA_SELECT (1 << 4) 968c2ecf20Sopenharmony_ci#define OV9650_QCIF_SELECT (1 << 3) 978c2ecf20Sopenharmony_ci#define OV9650_RGB_SELECT (1 << 2) 988c2ecf20Sopenharmony_ci#define OV9650_RAW_RGB_SELECT (1 << 0) 998c2ecf20Sopenharmony_ci 1008c2ecf20Sopenharmony_ci#define OV9650_FAST_AGC_AEC (1 << 7) 1018c2ecf20Sopenharmony_ci#define OV9650_AEC_UNLIM_STEP_SIZE (1 << 6) 1028c2ecf20Sopenharmony_ci#define OV9650_BANDING (1 << 5) 1038c2ecf20Sopenharmony_ci#define OV9650_AGC_EN (1 << 2) 1048c2ecf20Sopenharmony_ci#define OV9650_AWB_EN (1 << 1) 1058c2ecf20Sopenharmony_ci#define OV9650_AEC_EN (1 << 0) 1068c2ecf20Sopenharmony_ci 1078c2ecf20Sopenharmony_ci#define OV9650_VARIOPIXEL (1 << 2) 1088c2ecf20Sopenharmony_ci#define OV9650_SYSTEM_CLK_SEL (1 << 7) 1098c2ecf20Sopenharmony_ci#define OV9650_SLAM_MODE (1 << 4) 1108c2ecf20Sopenharmony_ci 1118c2ecf20Sopenharmony_ci#define OV9650_QVGA_VARIOPIXEL (1 << 7) 1128c2ecf20Sopenharmony_ci 1138c2ecf20Sopenharmony_ci#define OV9650_VFLIP (1 << 4) 1148c2ecf20Sopenharmony_ci#define OV9650_HFLIP (1 << 5) 1158c2ecf20Sopenharmony_ci 1168c2ecf20Sopenharmony_ci#define OV9650_SOFT_SLEEP (1 << 4) 1178c2ecf20Sopenharmony_ci#define OV9650_OUTPUT_DRIVE_2X (1 << 0) 1188c2ecf20Sopenharmony_ci 1198c2ecf20Sopenharmony_ci#define OV9650_DENOISE_ENABLE (1 << 5) 1208c2ecf20Sopenharmony_ci#define OV9650_WHITE_PIXEL_ENABLE (1 << 1) 1218c2ecf20Sopenharmony_ci#define OV9650_WHITE_PIXEL_OPTION (1 << 0) 1228c2ecf20Sopenharmony_ci 1238c2ecf20Sopenharmony_ci#define OV9650_LEFT_OFFSET 0x62 1248c2ecf20Sopenharmony_ci 1258c2ecf20Sopenharmony_ci#define GAIN_DEFAULT 0x14 1268c2ecf20Sopenharmony_ci#define RED_GAIN_DEFAULT 0x70 1278c2ecf20Sopenharmony_ci#define BLUE_GAIN_DEFAULT 0x20 1288c2ecf20Sopenharmony_ci#define EXPOSURE_DEFAULT 0x1ff 1298c2ecf20Sopenharmony_ci 1308c2ecf20Sopenharmony_ci/*****************************************************************************/ 1318c2ecf20Sopenharmony_ci 1328c2ecf20Sopenharmony_ci/* Kernel module parameters */ 1338c2ecf20Sopenharmony_ciextern int force_sensor; 1348c2ecf20Sopenharmony_ciextern bool dump_sensor; 1358c2ecf20Sopenharmony_ci 1368c2ecf20Sopenharmony_ciint ov9650_probe(struct sd *sd); 1378c2ecf20Sopenharmony_ciint ov9650_init(struct sd *sd); 1388c2ecf20Sopenharmony_ciint ov9650_init_controls(struct sd *sd); 1398c2ecf20Sopenharmony_ciint ov9650_start(struct sd *sd); 1408c2ecf20Sopenharmony_ciint ov9650_stop(struct sd *sd); 1418c2ecf20Sopenharmony_civoid ov9650_disconnect(struct sd *sd); 1428c2ecf20Sopenharmony_ci 1438c2ecf20Sopenharmony_cistatic const struct m5602_sensor ov9650 = { 1448c2ecf20Sopenharmony_ci .name = "OV9650", 1458c2ecf20Sopenharmony_ci .i2c_slave_id = 0x60, 1468c2ecf20Sopenharmony_ci .i2c_regW = 1, 1478c2ecf20Sopenharmony_ci .probe = ov9650_probe, 1488c2ecf20Sopenharmony_ci .init = ov9650_init, 1498c2ecf20Sopenharmony_ci .init_controls = ov9650_init_controls, 1508c2ecf20Sopenharmony_ci .start = ov9650_start, 1518c2ecf20Sopenharmony_ci .stop = ov9650_stop, 1528c2ecf20Sopenharmony_ci .disconnect = ov9650_disconnect, 1538c2ecf20Sopenharmony_ci}; 1548c2ecf20Sopenharmony_ci 1558c2ecf20Sopenharmony_ci#endif 156