Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
X
x393
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
x393
Commits
3e5d8c1c
Commit
3e5d8c1c
authored
Apr 10, 2019
by
Andrey Filippov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
modifying TCL scripts for Xilinx tools to support LWIR sensors
parent
4714de19
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
215 additions
and
46 deletions
+215
-46
x393_simulation_parameters.vh
includes/x393_simulation_parameters.vh
+32
-0
x393_global.tcl
x393_global.tcl
+17
-4
x393_placement.tcl
x393_placement.tcl
+151
-39
x393_timing.tcl
x393_timing.tcl
+15
-3
No files found.
includes/x393_simulation_parameters.vh
View file @
3e5d8c1c
...
...
@@ -54,6 +54,38 @@
`endif
parameter FCLK1_PERIOD = 0.0,
`ifdef LWIR
parameter LWIR_DATA_FILE1 = "/data_ssd/nc393/elphel393/fpga-elphel/x393/input_data/pattern_160_120_14.dat",
parameter LWIR_DATA_FILE2 = "/data_ssd/nc393/elphel393/fpga-elphel/x393/input_data/pattern_160_120_14.dat",
parameter LWIR_DATA_FILE3 = "/data_ssd/nc393/elphel393/fpga-elphel/x393/input_data/pattern_160_120_14.dat",
parameter LWIR_DATA_FILE4 = "/data_ssd/nc393/elphel393/fpga-elphel/x393/input_data/pattern_160_120_14.dat",
parameter LWIR_WINDOW_WIDTH =160,
parameter LWIR_WINDOW_HEIGHT =120,
parameter LWIR_TELEMETRY = 2,
parameter LWIR_FRAME_PERIOD =946969,
parameter LWIR_FRAME_DELAY =100,
parameter LWIR_MS_PERIOD = 25, // 1us instead of 1 ms
parameter LWIR_TELEMETRY_REV = 16'h7654, // input[15:0]
parameter LWIR_TELEMETRY_STATUS = 32'h137f1248, // input[31:0]
parameter LWIR_TELEMETRY_SREV = 64'h0123456789abcdef, // input[63:0]
parameter LWIR_TELEMETRY_TEMP_COUTS = 16'd59000, // input[15:0]
parameter LWIR_TELEMETRY_TEMP_KELVIN = 16'd29500, // input[15:0]
parameter LWIR_TELEMETRY_TEMP_LAST_KELVIN = 16'd29300, // input[15:0]
parameter LWIR_TELEMETRY_TIME_LAST_MS = 32'h12345678, // input[31:0]
parameter LWIR_TELEMETRY_AGC_ROI_TOP = 16'd0, // input[15:0]
parameter LWIR_TELEMETRY_AGC_ROI_LEFT = 16'd0, // input[15:0]
parameter LWIR_TELEMETRY_AGC_ROI_BOTTOM = 16'd119, // input[15:0]
parameter LWIR_TELEMETRY_AGC_ROI_RIGHT = 16'd159, // input[15:0]
parameter LWIR_TELEMETRY_AGC_HIGH = 16'd19200, // input[15:0]
parameter LWIR_TELEMETRY_AGC_LOW = 16'd200, // input[15:0]
parameter LWIR_TELEMETRY_VIDEO_FORMAT = 32'haaaa5555, // input[31:0]
parameter LWIR_GPIO_IN = 4'b0000,
`endif
// parameter SENSOR12BITS_LLINE = 192, // 1664;// line duration in clocks
// parameter SENSOR12BITS_NCOLS = 66, //58; //56; // 129; //128; //1288;
// parameter SENSOR12BITS_NROWS = 18, // 16; // 1032;
...
...
x393_global.tcl
View file @
3e5d8c1c
...
...
@@ -2,7 +2,7 @@
# Filename: x393_global.tcl
# Date:2016-03-28
# Author: Andrey Filippov
# Description: Placement
g
constraints (selected by HISPI parameter in system_devines.vh
)
# Description: Placement constraints (selected by HISPI parameter in system_devines.vh
)
#
# Copyright (c
)
2016 Elphel, Inc.
# x393_global.tcl is free software
;
you can redistribute it and/or modify
...
...
@@ -34,6 +34,7 @@
cd
~/vdt/x393
set
infile
[
open
"system_defines.vh"
r
]
set
HISPI 0
set
LWIR 0
while
{
[
gets
$infile
line
]
>= 0
}
{
if
{
[
regexp
{(
.*
)
`define
(
\s
*
)
HISPI
}
$line
matched prematch
]
}
{
if
{[
regexp
"//"
$prematch
]
!= 0
}
{
continue
}
...
...
@@ -41,11 +42,23 @@ while { [gets $infile line] >= 0 } {
break
}
}
set
LWIR 0
seek
$infile
0 start
while
{
[
gets
$infile
line
]
>= 0
}
{
if
{
[
regexp
{(
.*
)
`define
(
\s
*
)
LWIRI
}
$line
matched prematch
]
}
{
if
{[
regexp
"//"
$prematch
]
!= 0
}
{
continue
}
set LWIR 1
break
}
}
close
$infile
if
{
$HISPI
}
{
puts
"using HISPI sensors"
if
{
$LWIR
}
{
puts
"x393_global.tcl: using LWIR sensors"
}
else
if
{
$HISPI
}
{
puts
"x393_global.tcl: using HISPI sensors"
}
else
{
puts
"using parallel sensors"
puts
"
x393_global.tcl:
using parallel sensors"
}
# Global constraints
...
...
x393_placement.tcl
View file @
3e5d8c1c
This diff is collapsed.
Click to expand it.
x393_timing.tcl
View file @
3e5d8c1c
...
...
@@ -41,11 +41,23 @@ while { [gets $infile line] >= 0 } {
break
}
}
set
LWIR 0
seek
$infile
0 start
while
{
[
gets
$infile
line
]
>= 0
}
{
if
{
[
regexp
{(
.*
)
`define
(
\s
*
)
LWIRI
}
$line
matched prematch
]
}
{
if
{[
regexp
"//"
$prematch
]
!= 0
}
{
continue
}
set LWIR 1
break
}
}
close
$infile
if
{
$HISPI
}
{
puts
"using HISPI sensors"
if
{
$LWIR
}
{
puts
"x393_timing.tcl: using LWIR sensors"
}
else
if
{
$HISPI
}
{
puts
"x393_timing.tcl: using HISPI sensors"
}
else
{
puts
"using parallel sensors"
puts
"
x393_timing.tcl:
using parallel sensors"
}
...
...
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