📄 stk-sensor.c
字号:
/* stk-sensor.c: Driver for ov96xx sensor (used in some Syntek webcams) * * Copyright 2007-2008 Jaime Velasco Juan <jsagarribay@gmail.com> * * Some parts derived from ov7670.c: * Copyright 2006 One Laptop Per Child Association, Inc. Written * by Jonathan Corbet with substantial inspiration from Mark * McClelland's ovcamchip code. * * Copyright 2006-7 Jonathan Corbet <corbet@lwn.net> * * This file may be distributed under the terms of the GNU General * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * 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. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. *//* Controlling the sensor via the STK1125 vendor specific control interface: * The camera uses an OmniVision sensor and the stk1125 provides an * SCCB(i2c)-USB bridge which let us program the sensor. * In my case the sensor id is 0x9652, it can be read from sensor's register * 0x0A and 0x0B as follows: * - read register #R: * output #R to index 0x0208 * output 0x0070 to index 0x0200 * input 1 byte from index 0x0201 (some kind of status register) * until its value is 0x01 * input 1 byte from index 0x0209. This is the value of #R * - write value V to register #R * output #R to index 0x0204 * output V to index 0x0205 * output 0x0005 to index 0x0200 * input 1 byte from index 0x0201 until its value becomes 0x04 *//* It seems the i2c bus is controlled with these registers */#include "stk-webcam.h"#define STK_IIC_BASE (0x0200)# define STK_IIC_OP (STK_IIC_BASE)# define STK_IIC_OP_TX (0x05)# define STK_IIC_OP_RX (0x70)# define STK_IIC_STAT (STK_IIC_BASE+1)# define STK_IIC_STAT_TX_OK (0x04)# define STK_IIC_STAT_RX_OK (0x01)/* I don't know what does this register. * when it is 0x00 or 0x01, we cannot talk to the sensor, * other values work */# define STK_IIC_ENABLE (STK_IIC_BASE+2)# define STK_IIC_ENABLE_NO (0x00)/* This is what the driver writes in windows */# define STK_IIC_ENABLE_YES (0x1e)/* * Address of the slave. Seems like the binary driver look for the * sensor in multiple places, attempting a reset sequence. * We only know about the ov9650 */# define STK_IIC_ADDR (STK_IIC_BASE+3)# define STK_IIC_TX_INDEX (STK_IIC_BASE+4)# define STK_IIC_TX_VALUE (STK_IIC_BASE+5)# define STK_IIC_RX_INDEX (STK_IIC_BASE+8)# define STK_IIC_RX_VALUE (STK_IIC_BASE+9)#define MAX_RETRIES (50)#define SENSOR_ADDRESS (0x60)/* From ov7670.c (These registers aren't fully accurate) *//* Registers */#define REG_GAIN 0x00 /* Gain lower 8 bits (rest in vref) */#define REG_BLUE 0x01 /* blue gain */#define REG_RED 0x02 /* red gain */#define REG_VREF 0x03 /* Pieces of GAIN, VSTART, VSTOP */#define REG_COM1 0x04 /* Control 1 */#define COM1_CCIR656 0x40 /* CCIR656 enable */#define COM1_QFMT 0x20 /* QVGA/QCIF format */#define COM1_SKIP_0 0x00 /* Do not skip any row */#define COM1_SKIP_2 0x04 /* Skip 2 rows of 4 */#define COM1_SKIP_3 0x08 /* Skip 3 rows of 4 */#define REG_BAVE 0x05 /* U/B Average level */#define REG_GbAVE 0x06 /* Y/Gb Average level */#define REG_AECHH 0x07 /* AEC MS 5 bits */#define REG_RAVE 0x08 /* V/R Average level */#define REG_COM2 0x09 /* Control 2 */#define COM2_SSLEEP 0x10 /* Soft sleep mode */#define REG_PID 0x0a /* Product ID MSB */#define REG_VER 0x0b /* Product ID LSB */#define REG_COM3 0x0c /* Control 3 */#define COM3_SWAP 0x40 /* Byte swap */#define COM3_SCALEEN 0x08 /* Enable scaling */#define COM3_DCWEN 0x04 /* Enable downsamp/crop/window */#define REG_COM4 0x0d /* Control 4 */#define REG_COM5 0x0e /* All "reserved" */#define REG_COM6 0x0f /* Control 6 */#define REG_AECH 0x10 /* More bits of AEC value */#define REG_CLKRC 0x11 /* Clock control */#define CLK_PLL 0x80 /* Enable internal PLL */#define CLK_EXT 0x40 /* Use external clock directly */#define CLK_SCALE 0x3f /* Mask for internal clock scale */#define REG_COM7 0x12 /* Control 7 */#define COM7_RESET 0x80 /* Register reset */#define COM7_FMT_MASK 0x38#define COM7_FMT_SXGA 0x00#define COM7_FMT_VGA 0x40#define COM7_FMT_CIF 0x20 /* CIF format */#define COM7_FMT_QVGA 0x10 /* QVGA format */#define COM7_FMT_QCIF 0x08 /* QCIF format */#define COM7_RGB 0x04 /* bits 0 and 2 - RGB format */#define COM7_YUV 0x00 /* YUV */#define COM7_BAYER 0x01 /* Bayer format */#define COM7_PBAYER 0x05 /* "Processed bayer" */#define REG_COM8 0x13 /* Control 8 */#define COM8_FASTAEC 0x80 /* Enable fast AGC/AEC */#define COM8_AECSTEP 0x40 /* Unlimited AEC step size */#define COM8_BFILT 0x20 /* Band filter enable */#define COM8_AGC 0x04 /* Auto gain enable */#define COM8_AWB 0x02 /* White balance enable */#define COM8_AEC 0x01 /* Auto exposure enable */#define REG_COM9 0x14 /* Control 9 - gain ceiling */#define REG_COM10 0x15 /* Control 10 */#define COM10_HSYNC 0x40 /* HSYNC instead of HREF */#define COM10_PCLK_HB 0x20 /* Suppress PCLK on horiz blank */#define COM10_HREF_REV 0x08 /* Reverse HREF */#define COM10_VS_LEAD 0x04 /* VSYNC on clock leading edge */#define COM10_VS_NEG 0x02 /* VSYNC negative */#define COM10_HS_NEG 0x01 /* HSYNC negative */#define REG_HSTART 0x17 /* Horiz start high bits */#define REG_HSTOP 0x18 /* Horiz stop high bits */#define REG_VSTART 0x19 /* Vert start high bits */#define REG_VSTOP 0x1a /* Vert stop high bits */#define REG_PSHFT 0x1b /* Pixel delay after HREF */#define REG_MIDH 0x1c /* Manuf. ID high */#define REG_MIDL 0x1d /* Manuf. ID low */#define REG_MVFP 0x1e /* Mirror / vflip */#define MVFP_MIRROR 0x20 /* Mirror image */#define MVFP_FLIP 0x10 /* Vertical flip */#define REG_AEW 0x24 /* AGC upper limit */#define REG_AEB 0x25 /* AGC lower limit */#define REG_VPT 0x26 /* AGC/AEC fast mode op region */#define REG_ADVFL 0x2d /* Insert dummy lines (LSB) */#define REG_ADVFH 0x2e /* Insert dummy lines (MSB) */#define REG_HSYST 0x30 /* HSYNC rising edge delay */#define REG_HSYEN 0x31 /* HSYNC falling edge delay */#define REG_HREF 0x32 /* HREF pieces */#define REG_TSLB 0x3a /* lots of stuff */#define TSLB_YLAST 0x04 /* UYVY or VYUY - see com13 */#define TSLB_BYTEORD 0x08 /* swap bytes in 16bit mode? */#define REG_COM11 0x3b /* Control 11 */#define COM11_NIGHT 0x80 /* NIght mode enable */#define COM11_NMFR 0x60 /* Two bit NM frame rate */#define COM11_HZAUTO 0x10 /* Auto detect 50/60 Hz */#define COM11_50HZ 0x08 /* Manual 50Hz select */#define COM11_EXP 0x02#define REG_COM12 0x3c /* Control 12 */#define COM12_HREF 0x80 /* HREF always */#define REG_COM13 0x3d /* Control 13 */#define COM13_GAMMA 0x80 /* Gamma enable */#define COM13_UVSAT 0x40 /* UV saturation auto adjustment */#define COM13_CMATRIX 0x10 /* Enable color matrix for RGB or YUV */#define COM13_UVSWAP 0x01 /* V before U - w/TSLB */#define REG_COM14 0x3e /* Control 14 */#define COM14_DCWEN 0x10 /* DCW/PCLK-scale enable */#define REG_EDGE 0x3f /* Edge enhancement factor */#define REG_COM15 0x40 /* Control 15 */#define COM15_R10F0 0x00 /* Data range 10 to F0 */#define COM15_R01FE 0x80 /* 01 to FE */#define COM15_R00FF 0xc0 /* 00 to FF */#define COM15_RGB565 0x10 /* RGB565 output */#define COM15_RGBFIXME 0x20 /* FIXME */#define COM15_RGB555 0x30 /* RGB555 output */#define REG_COM16 0x41 /* Control 16 */#define COM16_AWBGAIN 0x08 /* AWB gain enable */#define REG_COM17 0x42 /* Control 17 */#define COM17_AECWIN 0xc0 /* AEC window - must match COM4 */#define COM17_CBAR 0x08 /* DSP Color bar *//* * This matrix defines how the colors are generated, must be * tweaked to adjust hue and saturation. * * Order: v-red, v-green, v-blue, u-red, u-green, u-blue * * They are nine-bit signed quantities, with the sign bit * stored in 0x58. Sign for v-red is bit 0, and up from there. */#define REG_CMATRIX_BASE 0x4f#define CMATRIX_LEN 6#define REG_CMATRIX_SIGN 0x58#define REG_BRIGHT 0x55 /* Brightness */#define REG_CONTRAS 0x56 /* Contrast control */#define REG_GFIX 0x69 /* Fix gain control */#define REG_RGB444 0x8c /* RGB 444 control */#define R444_ENABLE 0x02 /* Turn on RGB444, overrides 5x5 */#define R444_RGBX 0x01 /* Empty nibble at end */#define REG_HAECC1 0x9f /* Hist AEC/AGC control 1 */#define REG_HAECC2 0xa0 /* Hist AEC/AGC control 2 */#define REG_BD50MAX 0xa5 /* 50hz banding step limit */#define REG_HAECC3 0xa6 /* Hist AEC/AGC control 3 */#define REG_HAECC4 0xa7 /* Hist AEC/AGC control 4 */#define REG_HAECC5 0xa8 /* Hist AEC/AGC control 5 */#define REG_HAECC6 0xa9 /* Hist AEC/AGC control 6 */#define REG_HAECC7 0xaa /* Hist AEC/AGC control 7 */#define REG_BD60MAX 0xab /* 60hz banding step limit *//* Returns 0 if OK */static int stk_sensor_outb(struct stk_camera *dev, u8 reg, u8 val){ int i = 0; int tmpval = 0; if (stk_camera_write_reg(dev, STK_IIC_TX_INDEX, reg)) return 1; if (stk_camera_write_reg(dev, STK_IIC_TX_VALUE, val)) return 1; if (stk_camera_write_reg(dev, STK_IIC_OP, STK_IIC_OP_TX)) return 1; do { if (stk_camera_read_reg(dev, STK_IIC_STAT, &tmpval)) return 1; i++; } while (tmpval == 0 && i < MAX_RETRIES); if (tmpval != STK_IIC_STAT_TX_OK) { if (tmpval) STK_ERROR("stk_sensor_outb failed, status=0x%02x\n", tmpval); return 1; } else return 0;}static int stk_sensor_inb(struct stk_camera *dev, u8 reg, u8 *val){ int i = 0; int tmpval = 0; if (stk_camera_write_reg(dev, STK_IIC_RX_INDEX, reg)) return 1; if (stk_camera_write_reg(dev, STK_IIC_OP, STK_IIC_OP_RX)) return 1; do { if (stk_camera_read_reg(dev, STK_IIC_STAT, &tmpval)) return 1; i++; } while (tmpval == 0 && i < MAX_RETRIES); if (tmpval != STK_IIC_STAT_RX_OK) { if (tmpval) STK_ERROR("stk_sensor_inb failed, status=0x%02x\n", tmpval); return 1; } if (stk_camera_read_reg(dev, STK_IIC_RX_VALUE, &tmpval)) return 1; *val = (u8) tmpval; return 0;}static int stk_sensor_write_regvals(struct stk_camera *dev, struct regval *rv){ int ret; if (rv == NULL) return 0; while (rv->reg != 0xff || rv->val != 0xff) { ret = stk_sensor_outb(dev, rv->reg, rv->val); if (ret != 0) return ret; rv++; } return 0;}int stk_sensor_sleep(struct stk_camera *dev){ u8 tmp;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -