Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-elphel
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
linux-elphel
Commits
b34fa5a2
Commit
b34fa5a2
authored
Mar 15, 2018
by
Oleg Dzhimiev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
true freq is 22MHz for MT9F002
parent
ed39bd0a
Changes
4
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
834 additions
and
146 deletions
+834
-146
mt9f002.c
src/drivers/elphel/mt9f002.c
+784
-123
mt9f002.h
src/drivers/elphel/mt9f002.h
+34
-8
mt9x001.c
src/drivers/elphel/mt9x001.c
+14
-14
pgm_functions.c
src/drivers/elphel/pgm_functions.c
+2
-1
No files found.
src/drivers/elphel/mt9f002.c
View file @
b34fa5a2
This diff is collapsed.
Click to expand it.
src/drivers/elphel/mt9f002.h
View file @
b34fa5a2
...
...
@@ -20,26 +20,45 @@
#define MT9F002_PARTID 0x2E01 ///< MT9F002 PartID register value
#define MT9F002_I2C_ADDR 0x10 ///< MT9P I2C slave address (7 bit)
// bit 9 should have set masking for broken frames
#define MT9F002_RESET_REGISTER_VALUE 0x001c
// number of lines to sacrifice before generating Frame Valid
#define MT9F002_VACT_DELAY 2
// Clocks, this is basis
// from x393_parameters.vh:
// 220MHz -> 22MHz - the real clock is 22MHz - that's why multiplier is 0xb4
// The 3 parameters below are needed to calculate sensor clock
// line 568
#define PXD_CLK_DIV 10
// line 940
#define CLKFBOUT_MULT_PCLK 36, // 880 MHz
// line 941
#define CLKOUT_DIV_PCLK 4, // 220 MHz
// note: there is also DIVCLK_DIVIDE_PCLK
#define MT9F002_IFACE_CLK 24444000*PXD_CLK_DIV/CLKFBOUT_MULT_PCLK/CLKOUT_DIV_PCLK
// External sensor clock before pll
// Constant = 24.444MHz in Hz
#define MT9F002_EXT_CLK 24444000
// This is not a constant = 24.444MHz in Hz
#define MT9F002_EXT_CLK MT9F002_IFACE_CLK
// Virtual pixel clock is used as the basis for frame timing equations.
// Constant = 244.44MHz in Hz
#define MT9F002_VT_PIX_CLK 244440000
// Constant = 220MHz in Hz
#define MT9F002_VT_PIX_CLK 220000000
// OP_PIX_CLK
#define MT9F002_OP_PIX_CLK 110000000
// Serial output clock
// Constant =
733.32
MHz in Hz
#define MT9F002_OP_SYS_CLK
73332
0000
// Constant =
660
MHz in Hz
#define MT9F002_OP_SYS_CLK
66000
0000
// Sensor clock dividers and multiplier
// These should be calculated based on the clocks above
// pll multiplier
// pll multiplier
, default is 0xa5 (165), also tried 0xa2 (162)
#define MT9F002_PLL_MULTIPLIER_VALUE 0xb4
// pre_pll_clk_div (0x0304), default value is 0x6
#define MT9F002_PRE_PLL_CLK_DIV_VALUE 0x6
...
...
@@ -603,7 +622,14 @@
#define P_MT9F002_X_OUTPUT_SIZE 26
#define P_MT9F002_LINE_LENGTH_PCK 27
#define P_MT9F002_READ_MODE 28
#define P_MT9F002_X_ODD_INC 28
#define P_MT9F002_MIN_LINE_BLANKING_PCK 29
#define P_MT9F002_MIN_LINE_LENGTH_PCK 30
#define P_MT9F002_FRAME_LENGTH_LINES 31
#define P_MT9F002_MIN_FRAME_BLANKING_LINES 32
#define P_MT9F002_READ_MODE 33
//#define P_REG(x) x
...
...
src/drivers/elphel/mt9x001.c
View file @
b34fa5a2
...
...
@@ -1809,7 +1809,7 @@ int mt9x001_pgm_gains (int sensor_port, ///< sensor port numb
limitsModified
+=
2
;
if
(
maxAnaGain
>
(
sensor
->
maxGain256
<<
8
))
{
///sensor->maxGain256 is not calibrated, so digital gain should be able to accomodate for variations
maxAnaGain
=
(
sensor
->
maxGain256
<<
8
);
SETFRAMEPARS_SET
(
P_GAIN_M
IN
,
maxAnaGain
);
SETFRAMEPARS_SET
(
P_GAIN_M
AX
,
maxAnaGain
);
}
}
// maxGain= maxAnaGain * (MAX_DIGITAL_GAIN >> 8);
...
...
src/drivers/elphel/pgm_functions.c
View file @
b34fa5a2
...
...
@@ -506,7 +506,8 @@ int pgm_detectsensor (int sensor_port, ///< sensor port number (
// ************************************************************************************************
}
setFramePar
(
sensor_port
,
thispars
,
P_CLK_FPGA
,
200000000
);
// FIXME: NC393
//setFramePar(sensor_port, thispars, P_CLK_FPGA, 200000000); // FIXME: NC393
setFramePar
(
sensor_port
,
thispars
,
P_CLK_FPGA
,
240000000
);
// Freqs for sensors
if
((
thispars
->
pars
[
P_SENSOR
]
==
0
)
&&
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment