[media] media: Driver for Toshiba et8ek8 5MP sensor
Add driver for et8ek8 sensor, found in Nokia N900 main camera. Can be used for taking photos in 2.5MP resolution with fcam-dev. Signed-off-by: Ivaylo Dimitrov <ivo.g.dimitrov.75@gmail.com> Signed-off-by: Pavel Machek <pavel@ucw.cz> Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
This commit is contained in:
parent
ded9a92a62
commit
c5254e72b8
|
@ -668,6 +668,7 @@ config VIDEO_S5K5BAF
|
|||
camera sensor with an embedded SoC image signal processor.
|
||||
|
||||
source "drivers/media/i2c/smiapp/Kconfig"
|
||||
source "drivers/media/i2c/et8ek8/Kconfig"
|
||||
|
||||
config VIDEO_S5C73M3
|
||||
tristate "Samsung S5C73M3 sensor support"
|
||||
|
|
|
@ -2,6 +2,7 @@ msp3400-objs := msp3400-driver.o msp3400-kthreads.o
|
|||
obj-$(CONFIG_VIDEO_MSP3400) += msp3400.o
|
||||
|
||||
obj-$(CONFIG_VIDEO_SMIAPP) += smiapp/
|
||||
obj-$(CONFIG_VIDEO_ET8EK8) += et8ek8/
|
||||
obj-$(CONFIG_VIDEO_CX25840) += cx25840/
|
||||
obj-$(CONFIG_VIDEO_M5MOLS) += m5mols/
|
||||
obj-y += soc_camera/
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
config VIDEO_ET8EK8
|
||||
tristate "ET8EK8 camera sensor support"
|
||||
depends on I2C && VIDEO_V4L2 && VIDEO_V4L2_SUBDEV_API
|
||||
---help---
|
||||
This is a driver for the Toshiba ET8EK8 5 MP camera sensor.
|
||||
It is used for example in Nokia N900 (RX-51).
|
|
@ -0,0 +1,2 @@
|
|||
et8ek8-objs += et8ek8_mode.o et8ek8_driver.o
|
||||
obj-$(CONFIG_VIDEO_ET8EK8) += et8ek8.o
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,587 @@
|
|||
/*
|
||||
* et8ek8_mode.c
|
||||
*
|
||||
* Copyright (C) 2008 Nokia Corporation
|
||||
*
|
||||
* Contact: Sakari Ailus <sakari.ailus@iki.fi>
|
||||
* Tuukka Toivonen <tuukkat76@gmail.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
* 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.
|
||||
*/
|
||||
|
||||
#include "et8ek8_reg.h"
|
||||
|
||||
/*
|
||||
* Stingray sensor mode settings for Scooby
|
||||
*/
|
||||
|
||||
/* Mode1_poweron_Mode2_16VGA_2592x1968_12.07fps */
|
||||
static struct et8ek8_reglist mode1_poweron_mode2_16vga_2592x1968_12_07fps = {
|
||||
/* (without the +1)
|
||||
* SPCK = 80 MHz
|
||||
* CCP2 = 640 MHz
|
||||
* VCO = 640 MHz
|
||||
* VCOUNT = 84 (2016)
|
||||
* HCOUNT = 137 (3288)
|
||||
* CKREF_DIV = 2
|
||||
* CKVAR_DIV = 200
|
||||
* VCO_DIV = 0
|
||||
* SPCK_DIV = 7
|
||||
* MRCK_DIV = 7
|
||||
* LVDSCK_DIV = 0
|
||||
*/
|
||||
.type = ET8EK8_REGLIST_POWERON,
|
||||
.mode = {
|
||||
.sensor_width = 2592,
|
||||
.sensor_height = 1968,
|
||||
.sensor_window_origin_x = 0,
|
||||
.sensor_window_origin_y = 0,
|
||||
.sensor_window_width = 2592,
|
||||
.sensor_window_height = 1968,
|
||||
.width = 3288,
|
||||
.height = 2016,
|
||||
.window_origin_x = 0,
|
||||
.window_origin_y = 0,
|
||||
.window_width = 2592,
|
||||
.window_height = 1968,
|
||||
.pixel_clock = 80000000,
|
||||
.ext_clock = 9600000,
|
||||
.timeperframe = {
|
||||
.numerator = 100,
|
||||
.denominator = 1207
|
||||
},
|
||||
.max_exp = 2012,
|
||||
/* .max_gain = 0, */
|
||||
.bus_format = MEDIA_BUS_FMT_SGRBG10_1X10,
|
||||
.sensitivity = 65536
|
||||
},
|
||||
.regs = {
|
||||
/* Need to set firstly */
|
||||
{ ET8EK8_REG_8BIT, 0x126C, 0xCC },
|
||||
/* Strobe and Data of CCP2 delay are minimized. */
|
||||
{ ET8EK8_REG_8BIT, 0x1269, 0x00 },
|
||||
/* Refined value of Min H_COUNT */
|
||||
{ ET8EK8_REG_8BIT, 0x1220, 0x89 },
|
||||
/* Frequency of SPCK setting (SPCK=MRCK) */
|
||||
{ ET8EK8_REG_8BIT, 0x123A, 0x07 },
|
||||
{ ET8EK8_REG_8BIT, 0x1241, 0x94 },
|
||||
{ ET8EK8_REG_8BIT, 0x1242, 0x02 },
|
||||
{ ET8EK8_REG_8BIT, 0x124B, 0x00 },
|
||||
{ ET8EK8_REG_8BIT, 0x1255, 0xFF },
|
||||
{ ET8EK8_REG_8BIT, 0x1256, 0x9F },
|
||||
{ ET8EK8_REG_8BIT, 0x1258, 0x00 },
|
||||
/* From parallel out to serial out */
|
||||
{ ET8EK8_REG_8BIT, 0x125D, 0x88 },
|
||||
/* From w/ embeded data to w/o embeded data */
|
||||
{ ET8EK8_REG_8BIT, 0x125E, 0xC0 },
|
||||
/* CCP2 out is from STOP to ACTIVE */
|
||||
{ ET8EK8_REG_8BIT, 0x1263, 0x98 },
|
||||
{ ET8EK8_REG_8BIT, 0x1268, 0xC6 },
|
||||
{ ET8EK8_REG_8BIT, 0x1434, 0x00 },
|
||||
{ ET8EK8_REG_8BIT, 0x1163, 0x44 },
|
||||
{ ET8EK8_REG_8BIT, 0x1166, 0x29 },
|
||||
{ ET8EK8_REG_8BIT, 0x1140, 0x02 },
|
||||
{ ET8EK8_REG_8BIT, 0x1011, 0x24 },
|
||||
{ ET8EK8_REG_8BIT, 0x1151, 0x80 },
|
||||
{ ET8EK8_REG_8BIT, 0x1152, 0x23 },
|
||||
/* Initial setting for improvement2 of lower frequency noise */
|
||||
{ ET8EK8_REG_8BIT, 0x1014, 0x05 },
|
||||
{ ET8EK8_REG_8BIT, 0x1033, 0x06 },
|
||||
{ ET8EK8_REG_8BIT, 0x1034, 0x79 },
|
||||
{ ET8EK8_REG_8BIT, 0x1423, 0x3F },
|
||||
{ ET8EK8_REG_8BIT, 0x1424, 0x3F },
|
||||
{ ET8EK8_REG_8BIT, 0x1426, 0x00 },
|
||||
/* Switch of Preset-White-balance (0d:disable / 1d:enable) */
|
||||
{ ET8EK8_REG_8BIT, 0x1439, 0x00 },
|
||||
/* Switch of blemish correction (0d:disable / 1d:enable) */
|
||||
{ ET8EK8_REG_8BIT, 0x161F, 0x60 },
|
||||
/* Switch of auto noise correction (0d:disable / 1d:enable) */
|
||||
{ ET8EK8_REG_8BIT, 0x1634, 0x00 },
|
||||
{ ET8EK8_REG_8BIT, 0x1646, 0x00 },
|
||||
{ ET8EK8_REG_8BIT, 0x1648, 0x00 },
|
||||
{ ET8EK8_REG_8BIT, 0x113E, 0x01 },
|
||||
{ ET8EK8_REG_8BIT, 0x113F, 0x22 },
|
||||
{ ET8EK8_REG_8BIT, 0x1239, 0x64 },
|
||||
{ ET8EK8_REG_8BIT, 0x1238, 0x02 },
|
||||
{ ET8EK8_REG_8BIT, 0x123B, 0x70 },
|
||||
{ ET8EK8_REG_8BIT, 0x123A, 0x07 },
|
||||
{ ET8EK8_REG_8BIT, 0x121B, 0x64 },
|
||||
{ ET8EK8_REG_8BIT, 0x121D, 0x64 },
|
||||
{ ET8EK8_REG_8BIT, 0x1221, 0x00 },
|
||||
{ ET8EK8_REG_8BIT, 0x1220, 0x89 },
|
||||
{ ET8EK8_REG_8BIT, 0x1223, 0x00 },
|
||||
{ ET8EK8_REG_8BIT, 0x1222, 0x54 },
|
||||
{ ET8EK8_REG_8BIT, 0x125D, 0x88 }, /* CCP_LVDS_MODE/ */
|
||||
{ ET8EK8_REG_TERM, 0, 0}
|
||||
}
|
||||
};
|
||||
|
||||
/* Mode1_16VGA_2592x1968_13.12fps_DPCM10-8 */
|
||||
static struct et8ek8_reglist mode1_16vga_2592x1968_13_12fps_dpcm10_8 = {
|
||||
/* (without the +1)
|
||||
* SPCK = 80 MHz
|
||||
* CCP2 = 560 MHz
|
||||
* VCO = 560 MHz
|
||||
* VCOUNT = 84 (2016)
|
||||
* HCOUNT = 128 (3072)
|
||||
* CKREF_DIV = 2
|
||||
* CKVAR_DIV = 175
|
||||
* VCO_DIV = 0
|
||||
* SPCK_DIV = 6
|
||||
* MRCK_DIV = 7
|
||||
* LVDSCK_DIV = 0
|
||||
*/
|
||||
.type = ET8EK8_REGLIST_MODE,
|
||||
.mode = {
|
||||
.sensor_width = 2592,
|
||||
.sensor_height = 1968,
|
||||
.sensor_window_origin_x = 0,
|
||||
.sensor_window_origin_y = 0,
|
||||
.sensor_window_width = 2592,
|
||||
.sensor_window_height = 1968,
|
||||
.width = 3072,
|
||||
.height = 2016,
|
||||
.window_origin_x = 0,
|
||||
.window_origin_y = 0,
|
||||
.window_width = 2592,
|
||||
.window_height = 1968,
|
||||
.pixel_clock = 80000000,
|
||||
.ext_clock = 9600000,
|
||||
.timeperframe = {
|
||||
.numerator = 100,
|
||||
.denominator = 1292
|
||||
},
|
||||
.max_exp = 2012,
|
||||
/* .max_gain = 0, */
|
||||
.bus_format = MEDIA_BUS_FMT_SGRBG10_DPCM8_1X8,
|
||||
.sensitivity = 65536
|
||||
},
|
||||
.regs = {
|
||||
{ ET8EK8_REG_8BIT, 0x1239, 0x57 },
|
||||
{ ET8EK8_REG_8BIT, 0x1238, 0x82 },
|
||||
{ ET8EK8_REG_8BIT, 0x123B, 0x70 },
|
||||
{ ET8EK8_REG_8BIT, 0x123A, 0x06 },
|
||||
{ ET8EK8_REG_8BIT, 0x121B, 0x64 },
|
||||
{ ET8EK8_REG_8BIT, 0x121D, 0x64 },
|
||||
{ ET8EK8_REG_8BIT, 0x1221, 0x00 },
|
||||
{ ET8EK8_REG_8BIT, 0x1220, 0x80 }, /* <-changed to v14 7E->80 */
|
||||
{ ET8EK8_REG_8BIT, 0x1223, 0x00 },
|
||||
{ ET8EK8_REG_8BIT, 0x1222, 0x54 },
|
||||
{ ET8EK8_REG_8BIT, 0x125D, 0x83 }, /* CCP_LVDS_MODE/ */
|
||||
{ ET8EK8_REG_TERM, 0, 0}
|
||||
}
|
||||
};
|
||||
|
||||
/* Mode3_4VGA_1296x984_29.99fps_DPCM10-8 */
|
||||
static struct et8ek8_reglist mode3_4vga_1296x984_29_99fps_dpcm10_8 = {
|
||||
/* (without the +1)
|
||||
* SPCK = 96.5333333333333 MHz
|
||||
* CCP2 = 579.2 MHz
|
||||
* VCO = 579.2 MHz
|
||||
* VCOUNT = 84 (2016)
|
||||
* HCOUNT = 133 (3192)
|
||||
* CKREF_DIV = 2
|
||||
* CKVAR_DIV = 181
|
||||
* VCO_DIV = 0
|
||||
* SPCK_DIV = 5
|
||||
* MRCK_DIV = 7
|
||||
* LVDSCK_DIV = 0
|
||||
*/
|
||||
.type = ET8EK8_REGLIST_MODE,
|
||||
.mode = {
|
||||
.sensor_width = 2592,
|
||||
.sensor_height = 1968,
|
||||
.sensor_window_origin_x = 0,
|
||||
.sensor_window_origin_y = 0,
|
||||
.sensor_window_width = 2592,
|
||||
.sensor_window_height = 1968,
|
||||
.width = 3192,
|
||||
.height = 1008,
|
||||
.window_origin_x = 0,
|
||||
.window_origin_y = 0,
|
||||
.window_width = 1296,
|
||||
.window_height = 984,
|
||||
.pixel_clock = 96533333,
|
||||
.ext_clock = 9600000,
|
||||
.timeperframe = {
|
||||
.numerator = 100,
|
||||
.denominator = 3000
|
||||
},
|
||||
.max_exp = 1004,
|
||||
/* .max_gain = 0, */
|
||||
.bus_format = MEDIA_BUS_FMT_SGRBG10_DPCM8_1X8,
|
||||
.sensitivity = 65536
|
||||
},
|
||||
.regs = {
|
||||
{ ET8EK8_REG_8BIT, 0x1239, 0x5A },
|
||||
{ ET8EK8_REG_8BIT, 0x1238, 0x82 },
|
||||
{ ET8EK8_REG_8BIT, 0x123B, 0x70 },
|
||||
{ ET8EK8_REG_8BIT, 0x123A, 0x05 },
|
||||
{ ET8EK8_REG_8BIT, 0x121B, 0x63 },
|
||||
{ ET8EK8_REG_8BIT, 0x1220, 0x85 },
|
||||
{ ET8EK8_REG_8BIT, 0x1221, 0x00 },
|
||||
{ ET8EK8_REG_8BIT, 0x1222, 0x54 },
|
||||
{ ET8EK8_REG_8BIT, 0x1223, 0x00 },
|
||||
{ ET8EK8_REG_8BIT, 0x121D, 0x63 },
|
||||
{ ET8EK8_REG_8BIT, 0x125D, 0x83 }, /* CCP_LVDS_MODE/ */
|
||||
{ ET8EK8_REG_TERM, 0, 0}
|
||||
}
|
||||
};
|
||||
|
||||
/* Mode4_SVGA_864x656_29.88fps */
|
||||
static struct et8ek8_reglist mode4_svga_864x656_29_88fps = {
|
||||
/* (without the +1)
|
||||
* SPCK = 80 MHz
|
||||
* CCP2 = 320 MHz
|
||||
* VCO = 640 MHz
|
||||
* VCOUNT = 84 (2016)
|
||||
* HCOUNT = 166 (3984)
|
||||
* CKREF_DIV = 2
|
||||
* CKVAR_DIV = 200
|
||||
* VCO_DIV = 0
|
||||
* SPCK_DIV = 7
|
||||
* MRCK_DIV = 7
|
||||
* LVDSCK_DIV = 1
|
||||
*/
|
||||
.type = ET8EK8_REGLIST_MODE,
|
||||
.mode = {
|
||||
.sensor_width = 2592,
|
||||
.sensor_height = 1968,
|
||||
.sensor_window_origin_x = 0,
|
||||
.sensor_window_origin_y = 0,
|
||||
.sensor_window_width = 2592,
|
||||
.sensor_window_height = 1968,
|
||||
.width = 3984,
|
||||
.height = 672,
|
||||
.window_origin_x = 0,
|
||||
.window_origin_y = 0,
|
||||
.window_width = 864,
|
||||
.window_height = 656,
|
||||
.pixel_clock = 80000000,
|
||||
.ext_clock = 9600000,
|
||||
.timeperframe = {
|
||||
.numerator = 100,
|
||||
.denominator = 2988
|
||||
},
|
||||
.max_exp = 668,
|
||||
/* .max_gain = 0, */
|
||||
.bus_format = MEDIA_BUS_FMT_SGRBG10_1X10,
|
||||
.sensitivity = 65536
|
||||
},
|
||||
.regs = {
|
||||
{ ET8EK8_REG_8BIT, 0x1239, 0x64 },
|
||||
{ ET8EK8_REG_8BIT, 0x1238, 0x02 },
|
||||
{ ET8EK8_REG_8BIT, 0x123B, 0x71 },
|
||||
{ ET8EK8_REG_8BIT, 0x123A, 0x07 },
|
||||
{ ET8EK8_REG_8BIT, 0x121B, 0x62 },
|
||||
{ ET8EK8_REG_8BIT, 0x121D, 0x62 },
|
||||
{ ET8EK8_REG_8BIT, 0x1221, 0x00 },
|
||||
{ ET8EK8_REG_8BIT, 0x1220, 0xA6 },
|
||||
{ ET8EK8_REG_8BIT, 0x1223, 0x00 },
|
||||
{ ET8EK8_REG_8BIT, 0x1222, 0x54 },
|
||||
{ ET8EK8_REG_8BIT, 0x125D, 0x88 }, /* CCP_LVDS_MODE/ */
|
||||
{ ET8EK8_REG_TERM, 0, 0}
|
||||
}
|
||||
};
|
||||
|
||||
/* Mode5_VGA_648x492_29.93fps */
|
||||
static struct et8ek8_reglist mode5_vga_648x492_29_93fps = {
|
||||
/* (without the +1)
|
||||
* SPCK = 80 MHz
|
||||
* CCP2 = 320 MHz
|
||||
* VCO = 640 MHz
|
||||
* VCOUNT = 84 (2016)
|
||||
* HCOUNT = 221 (5304)
|
||||
* CKREF_DIV = 2
|
||||
* CKVAR_DIV = 200
|
||||
* VCO_DIV = 0
|
||||
* SPCK_DIV = 7
|
||||
* MRCK_DIV = 7
|
||||
* LVDSCK_DIV = 1
|
||||
*/
|
||||
.type = ET8EK8_REGLIST_MODE,
|
||||
.mode = {
|
||||
.sensor_width = 2592,
|
||||
.sensor_height = 1968,
|
||||
.sensor_window_origin_x = 0,
|
||||
.sensor_window_origin_y = 0,
|
||||
.sensor_window_width = 2592,
|
||||
.sensor_window_height = 1968,
|
||||
.width = 5304,
|
||||
.height = 504,
|
||||
.window_origin_x = 0,
|
||||
.window_origin_y = 0,
|
||||
.window_width = 648,
|
||||
.window_height = 492,
|
||||
.pixel_clock = 80000000,
|
||||
.ext_clock = 9600000,
|
||||
.timeperframe = {
|
||||
.numerator = 100,
|
||||
.denominator = 2993
|
||||
},
|
||||
.max_exp = 500,
|
||||
/* .max_gain = 0, */
|
||||
.bus_format = MEDIA_BUS_FMT_SGRBG10_1X10,
|
||||
.sensitivity = 65536
|
||||
},
|
||||
.regs = {
|
||||
{ ET8EK8_REG_8BIT, 0x1239, 0x64 },
|
||||
{ ET8EK8_REG_8BIT, 0x1238, 0x02 },
|
||||
{ ET8EK8_REG_8BIT, 0x123B, 0x71 },
|
||||
{ ET8EK8_REG_8BIT, 0x123A, 0x07 },
|
||||
{ ET8EK8_REG_8BIT, 0x121B, 0x61 },
|
||||
{ ET8EK8_REG_8BIT, 0x121D, 0x61 },
|
||||
{ ET8EK8_REG_8BIT, 0x1221, 0x00 },
|
||||
{ ET8EK8_REG_8BIT, 0x1220, 0xDD },
|
||||
{ ET8EK8_REG_8BIT, 0x1223, 0x00 },
|
||||
{ ET8EK8_REG_8BIT, 0x1222, 0x54 },
|
||||
{ ET8EK8_REG_8BIT, 0x125D, 0x88 }, /* CCP_LVDS_MODE/ */
|
||||
{ ET8EK8_REG_TERM, 0, 0}
|
||||
}
|
||||
};
|
||||
|
||||
/* Mode2_16VGA_2592x1968_3.99fps */
|
||||
static struct et8ek8_reglist mode2_16vga_2592x1968_3_99fps = {
|
||||
/* (without the +1)
|
||||
* SPCK = 80 MHz
|
||||
* CCP2 = 640 MHz
|
||||
* VCO = 640 MHz
|
||||
* VCOUNT = 254 (6096)
|
||||
* HCOUNT = 137 (3288)
|
||||
* CKREF_DIV = 2
|
||||
* CKVAR_DIV = 200
|
||||
* VCO_DIV = 0
|
||||
* SPCK_DIV = 7
|
||||
* MRCK_DIV = 7
|
||||
* LVDSCK_DIV = 0
|
||||
*/
|
||||
.type = ET8EK8_REGLIST_MODE,
|
||||
.mode = {
|
||||
.sensor_width = 2592,
|
||||
.sensor_height = 1968,
|
||||
.sensor_window_origin_x = 0,
|
||||
.sensor_window_origin_y = 0,
|
||||
.sensor_window_width = 2592,
|
||||
.sensor_window_height = 1968,
|
||||
.width = 3288,
|
||||
.height = 6096,
|
||||
.window_origin_x = 0,
|
||||
.window_origin_y = 0,
|
||||
.window_width = 2592,
|
||||
.window_height = 1968,
|
||||
.pixel_clock = 80000000,
|
||||
.ext_clock = 9600000,
|
||||
.timeperframe = {
|
||||
.numerator = 100,
|
||||
.denominator = 399
|
||||
},
|
||||
.max_exp = 6092,
|
||||
/* .max_gain = 0, */
|
||||
.bus_format = MEDIA_BUS_FMT_SGRBG10_1X10,
|
||||
.sensitivity = 65536
|
||||
},
|
||||
.regs = {
|
||||
{ ET8EK8_REG_8BIT, 0x1239, 0x64 },
|
||||
{ ET8EK8_REG_8BIT, 0x1238, 0x02 },
|
||||
{ ET8EK8_REG_8BIT, 0x123B, 0x70 },
|
||||
{ ET8EK8_REG_8BIT, 0x123A, 0x07 },
|
||||
{ ET8EK8_REG_8BIT, 0x121B, 0x64 },
|
||||
{ ET8EK8_REG_8BIT, 0x121D, 0x64 },
|
||||
{ ET8EK8_REG_8BIT, 0x1221, 0x00 },
|
||||
{ ET8EK8_REG_8BIT, 0x1220, 0x89 },
|
||||
{ ET8EK8_REG_8BIT, 0x1223, 0x00 },
|
||||
{ ET8EK8_REG_8BIT, 0x1222, 0xFE },
|
||||
{ ET8EK8_REG_TERM, 0, 0}
|
||||
}
|
||||
};
|
||||
|
||||
/* Mode_648x492_5fps */
|
||||
static struct et8ek8_reglist mode_648x492_5fps = {
|
||||
/* (without the +1)
|
||||
* SPCK = 13.3333333333333 MHz
|
||||
* CCP2 = 53.3333333333333 MHz
|
||||
* VCO = 640 MHz
|
||||
* VCOUNT = 84 (2016)
|
||||
* HCOUNT = 221 (5304)
|
||||
* CKREF_DIV = 2
|
||||
* CKVAR_DIV = 200
|
||||
* VCO_DIV = 5
|
||||
* SPCK_DIV = 7
|
||||
* MRCK_DIV = 7
|
||||
* LVDSCK_DIV = 1
|
||||
*/
|
||||
.type = ET8EK8_REGLIST_MODE,
|
||||
.mode = {
|
||||
.sensor_width = 2592,
|
||||
.sensor_height = 1968,
|
||||
.sensor_window_origin_x = 0,
|
||||
.sensor_window_origin_y = 0,
|
||||
.sensor_window_width = 2592,
|
||||
.sensor_window_height = 1968,
|
||||
.width = 5304,
|
||||
.height = 504,
|
||||
.window_origin_x = 0,
|
||||
.window_origin_y = 0,
|
||||
.window_width = 648,
|
||||
.window_height = 492,
|
||||
.pixel_clock = 13333333,
|
||||
.ext_clock = 9600000,
|
||||
.timeperframe = {
|
||||
.numerator = 100,
|
||||
.denominator = 499
|
||||
},
|
||||
.max_exp = 500,
|
||||
/* .max_gain = 0, */
|
||||
.bus_format = MEDIA_BUS_FMT_SGRBG10_1X10,
|
||||
.sensitivity = 65536
|
||||
},
|
||||
.regs = {
|
||||
{ ET8EK8_REG_8BIT, 0x1239, 0x64 },
|
||||
{ ET8EK8_REG_8BIT, 0x1238, 0x02 },
|
||||
{ ET8EK8_REG_8BIT, 0x123B, 0x71 },
|
||||
{ ET8EK8_REG_8BIT, 0x123A, 0x57 },
|
||||
{ ET8EK8_REG_8BIT, 0x121B, 0x61 },
|
||||
{ ET8EK8_REG_8BIT, 0x121D, 0x61 },
|
||||
{ ET8EK8_REG_8BIT, 0x1221, 0x00 },
|
||||
{ ET8EK8_REG_8BIT, 0x1220, 0xDD },
|
||||
{ ET8EK8_REG_8BIT, 0x1223, 0x00 },
|
||||
{ ET8EK8_REG_8BIT, 0x1222, 0x54 },
|
||||
{ ET8EK8_REG_8BIT, 0x125D, 0x88 }, /* CCP_LVDS_MODE/ */
|
||||
{ ET8EK8_REG_TERM, 0, 0}
|
||||
}
|
||||
};
|
||||
|
||||
/* Mode3_4VGA_1296x984_5fps */
|
||||
static struct et8ek8_reglist mode3_4vga_1296x984_5fps = {
|
||||
/* (without the +1)
|
||||
* SPCK = 49.4 MHz
|
||||
* CCP2 = 395.2 MHz
|
||||
* VCO = 790.4 MHz
|
||||
* VCOUNT = 250 (6000)
|
||||
* HCOUNT = 137 (3288)
|
||||
* CKREF_DIV = 2
|
||||
* CKVAR_DIV = 247
|
||||
* VCO_DIV = 1
|
||||
* SPCK_DIV = 7
|
||||
* MRCK_DIV = 7
|
||||
* LVDSCK_DIV = 0
|
||||
*/
|
||||
.type = ET8EK8_REGLIST_MODE,
|
||||
.mode = {
|
||||
.sensor_width = 2592,
|
||||
.sensor_height = 1968,
|
||||
.sensor_window_origin_x = 0,
|
||||
.sensor_window_origin_y = 0,
|
||||
.sensor_window_width = 2592,
|
||||
.sensor_window_height = 1968,
|
||||
.width = 3288,
|
||||
.height = 3000,
|
||||
.window_origin_x = 0,
|
||||
.window_origin_y = 0,
|
||||
.window_width = 1296,
|
||||
.window_height = 984,
|
||||
.pixel_clock = 49400000,
|
||||
.ext_clock = 9600000,
|
||||
.timeperframe = {
|
||||
.numerator = 100,
|
||||
.denominator = 501
|
||||
},
|
||||
.max_exp = 2996,
|
||||
/* .max_gain = 0, */
|
||||
.bus_format = MEDIA_BUS_FMT_SGRBG10_1X10,
|
||||
.sensitivity = 65536
|
||||
},
|
||||
.regs = {
|
||||
{ ET8EK8_REG_8BIT, 0x1239, 0x7B },
|
||||
{ ET8EK8_REG_8BIT, 0x1238, 0x82 },
|
||||
{ ET8EK8_REG_8BIT, 0x123B, 0x70 },
|
||||
{ ET8EK8_REG_8BIT, 0x123A, 0x17 },
|
||||
{ ET8EK8_REG_8BIT, 0x121B, 0x63 },
|
||||
{ ET8EK8_REG_8BIT, 0x121D, 0x63 },
|
||||
{ ET8EK8_REG_8BIT, 0x1221, 0x00 },
|
||||
{ ET8EK8_REG_8BIT, 0x1220, 0x89 },
|
||||
{ ET8EK8_REG_8BIT, 0x1223, 0x00 },
|
||||
{ ET8EK8_REG_8BIT, 0x1222, 0xFA },
|
||||
{ ET8EK8_REG_8BIT, 0x125D, 0x88 }, /* CCP_LVDS_MODE/ */
|
||||
{ ET8EK8_REG_TERM, 0, 0}
|
||||
}
|
||||
};
|
||||
|
||||
/* Mode_4VGA_1296x984_25fps_DPCM10-8 */
|
||||
static struct et8ek8_reglist mode_4vga_1296x984_25fps_dpcm10_8 = {
|
||||
/* (without the +1)
|
||||
* SPCK = 84.2666666666667 MHz
|
||||
* CCP2 = 505.6 MHz
|
||||
* VCO = 505.6 MHz
|
||||
* VCOUNT = 88 (2112)
|
||||
* HCOUNT = 133 (3192)
|
||||
* CKREF_DIV = 2
|
||||
* CKVAR_DIV = 158
|
||||
* VCO_DIV = 0
|
||||
* SPCK_DIV = 5
|
||||
* MRCK_DIV = 7
|
||||
* LVDSCK_DIV = 0
|
||||
*/
|
||||
.type = ET8EK8_REGLIST_MODE,
|
||||
.mode = {
|
||||
.sensor_width = 2592,
|
||||
.sensor_height = 1968,
|
||||
.sensor_window_origin_x = 0,
|
||||
.sensor_window_origin_y = 0,
|
||||
.sensor_window_width = 2592,
|
||||
.sensor_window_height = 1968,
|
||||
.width = 3192,
|
||||
.height = 1056,
|
||||
.window_origin_x = 0,
|
||||
.window_origin_y = 0,
|
||||
.window_width = 1296,
|
||||
.window_height = 984,
|
||||
.pixel_clock = 84266667,
|
||||
.ext_clock = 9600000,
|
||||
.timeperframe = {
|
||||
.numerator = 100,
|
||||
.denominator = 2500
|
||||
},
|
||||
.max_exp = 1052,
|
||||
/* .max_gain = 0, */
|
||||
.bus_format = MEDIA_BUS_FMT_SGRBG10_DPCM8_1X8,
|
||||
.sensitivity = 65536
|
||||
},
|
||||
.regs = {
|
||||
{ ET8EK8_REG_8BIT, 0x1239, 0x4F },
|
||||
{ ET8EK8_REG_8BIT, 0x1238, 0x02 },
|
||||
{ ET8EK8_REG_8BIT, 0x123B, 0x70 },
|
||||
{ ET8EK8_REG_8BIT, 0x123A, 0x05 },
|
||||
{ ET8EK8_REG_8BIT, 0x121B, 0x63 },
|
||||
{ ET8EK8_REG_8BIT, 0x1220, 0x85 },
|
||||
{ ET8EK8_REG_8BIT, 0x1221, 0x00 },
|
||||
{ ET8EK8_REG_8BIT, 0x1222, 0x58 },
|
||||
{ ET8EK8_REG_8BIT, 0x1223, 0x00 },
|
||||
{ ET8EK8_REG_8BIT, 0x121D, 0x63 },
|
||||
{ ET8EK8_REG_8BIT, 0x125D, 0x83 },
|
||||
{ ET8EK8_REG_TERM, 0, 0}
|
||||
}
|
||||
};
|
||||
|
||||
struct et8ek8_meta_reglist meta_reglist = {
|
||||
.version = "V14 03-June-2008",
|
||||
.reglist = {
|
||||
{ .ptr = &mode1_poweron_mode2_16vga_2592x1968_12_07fps },
|
||||
{ .ptr = &mode1_16vga_2592x1968_13_12fps_dpcm10_8 },
|
||||
{ .ptr = &mode3_4vga_1296x984_29_99fps_dpcm10_8 },
|
||||
{ .ptr = &mode4_svga_864x656_29_88fps },
|
||||
{ .ptr = &mode5_vga_648x492_29_93fps },
|
||||
{ .ptr = &mode2_16vga_2592x1968_3_99fps },
|
||||
{ .ptr = &mode_648x492_5fps },
|
||||
{ .ptr = &mode3_4vga_1296x984_5fps },
|
||||
{ .ptr = &mode_4vga_1296x984_25fps_dpcm10_8 },
|
||||
{ .ptr = NULL }
|
||||
}
|
||||
};
|
|
@ -0,0 +1,96 @@
|
|||
/*
|
||||
* et8ek8_reg.h
|
||||
*
|
||||
* Copyright (C) 2008 Nokia Corporation
|
||||
*
|
||||
* Contact: Sakari Ailus <sakari.ailus@iki.fi>
|
||||
* Tuukka Toivonen <tuukkat76@gmail.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
* 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 ET8EK8REGS_H
|
||||
#define ET8EK8REGS_H
|
||||
|
||||
#include <linux/i2c.h>
|
||||
#include <linux/types.h>
|
||||
#include <linux/videodev2.h>
|
||||
#include <linux/v4l2-subdev.h>
|
||||
|
||||
struct v4l2_mbus_framefmt;
|
||||
struct v4l2_subdev_pad_mbus_code_enum;
|
||||
|
||||
struct et8ek8_mode {
|
||||
/* Physical sensor resolution and current image window */
|
||||
u16 sensor_width;
|
||||
u16 sensor_height;
|
||||
u16 sensor_window_origin_x;
|
||||
u16 sensor_window_origin_y;
|
||||
u16 sensor_window_width;
|
||||
u16 sensor_window_height;
|
||||
|
||||
/* Image data coming from sensor (after scaling) */
|
||||
u16 width;
|
||||
u16 height;
|
||||
u16 window_origin_x;
|
||||
u16 window_origin_y;
|
||||
u16 window_width;
|
||||
u16 window_height;
|
||||
|
||||
u32 pixel_clock; /* in Hz */
|
||||
u32 ext_clock; /* in Hz */
|
||||
struct v4l2_fract timeperframe;
|
||||
u32 max_exp; /* Maximum exposure value */
|
||||
u32 bus_format; /* MEDIA_BUS_FMT_ */
|
||||
u32 sensitivity; /* 16.16 fixed point */
|
||||
};
|
||||
|
||||
#define ET8EK8_REG_8BIT 1
|
||||
#define ET8EK8_REG_16BIT 2
|
||||
#define ET8EK8_REG_DELAY 100
|
||||
#define ET8EK8_REG_TERM 0xff
|
||||
struct et8ek8_reg {
|
||||
u16 type;
|
||||
u16 reg; /* 16-bit offset */
|
||||
u32 val; /* 8/16/32-bit value */
|
||||
};
|
||||
|
||||
/* Possible struct smia_reglist types. */
|
||||
#define ET8EK8_REGLIST_STANDBY 0
|
||||
#define ET8EK8_REGLIST_POWERON 1
|
||||
#define ET8EK8_REGLIST_RESUME 2
|
||||
#define ET8EK8_REGLIST_STREAMON 3
|
||||
#define ET8EK8_REGLIST_STREAMOFF 4
|
||||
#define ET8EK8_REGLIST_DISABLED 5
|
||||
|
||||
#define ET8EK8_REGLIST_MODE 10
|
||||
|
||||
#define ET8EK8_REGLIST_LSC_ENABLE 100
|
||||
#define ET8EK8_REGLIST_LSC_DISABLE 101
|
||||
#define ET8EK8_REGLIST_ANR_ENABLE 102
|
||||
#define ET8EK8_REGLIST_ANR_DISABLE 103
|
||||
|
||||
struct et8ek8_reglist {
|
||||
u32 type;
|
||||
struct et8ek8_mode mode;
|
||||
struct et8ek8_reg regs[];
|
||||
};
|
||||
|
||||
#define ET8EK8_MAX_LEN 32
|
||||
struct et8ek8_meta_reglist {
|
||||
char version[ET8EK8_MAX_LEN];
|
||||
union {
|
||||
struct et8ek8_reglist *ptr;
|
||||
} reglist[];
|
||||
};
|
||||
|
||||
extern struct et8ek8_meta_reglist meta_reglist;
|
||||
|
||||
#endif /* ET8EK8REGS */
|
Loading…
Reference in New Issue