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
4cf7bd61
Commit
4cf7bd61
authored
Mar 23, 2015
by
Andrey Filippov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
debugging write levelling measuring/results approximation
parent
e4dae58e
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
345 additions
and
70 deletions
+345
-70
test_mcntrl.py
py393/test_mcntrl.py
+4
-4
x393_mcntrl_adjust.py
py393/x393_mcntrl_adjust.py
+328
-60
x393_mcntrl_timing.py
py393/x393_mcntrl_timing.py
+13
-6
No files found.
py393/test_mcntrl.py
View file @
4cf7bd61
...
...
@@ -225,10 +225,10 @@ USAGE
verbose
=
args
.
verbose
if
not
verbose
:
verbose
=
0
print
(
"args=
%
s"
%
(
str
(
args
)))
print
(
"sys.argv=
%
s"
%
(
str
(
sys
.
argv
)))
print
(
"DEBUG=
%
s"
%
(
str
(
DEBUG
)))
print
(
"verbose=
%
d"
%
verbose
)
#
print("args=%s"%(str(args)))
#
print("sys.argv=%s"%(str(sys.argv)))
#
print("DEBUG=%s"%(str(DEBUG)))
#
print ("verbose=%d"%verbose)
paths
=
[]
...
...
py393/x393_mcntrl_adjust.py
View file @
4cf7bd61
This diff is collapsed.
Click to expand it.
py393/x393_mcntrl_timing.py
View file @
4cf7bd61
...
...
@@ -222,51 +222,58 @@ class X393McntrlTiming(object):
self
.
x393_axi_tasks
.
write_contol_register
(
vrlg
.
DLY_SET
,
0
);
# set all delays
def
axi_set_dqs_idelay
(
self
,
delay
=
None
):
# input [7:0] delay;
delay
=
None
,
# input [7:0] delay;
quiet
=
1
):
"""
Set all DQs input delays to the same value
<delay> 8-bit (5+3) delay value to use or a tuple/list with a pair for (lane0, lane1)
if delay is None will restore default values
<quiet> reduce output
"""
if
delay
is
None
:
delay
=
(
vrlg
.
get_default_field
(
"DLY_LANE0_IDELAY"
,
8
),
vrlg
.
get_default_field
(
"DLY_LANE1_IDELAY"
,
8
))
if
isinstance
(
delay
,(
int
,
long
)):
delay
=
(
delay
,
delay
)
if
self
.
DEBUG_MODE
>
1
:
if
quiet
<
2
:
print
(
"SET DQS IDELAY="
+
hexMultiple
(
delay
))
# hexMultiple
self
.
axi_set_multiple_delays
(
vrlg
.
LD_DLY_LANE0_IDELAY
,
8
,
1
,
delay
[
0
],
"DLY_LANE0_IDELAY"
)
self
.
axi_set_multiple_delays
(
vrlg
.
LD_DLY_LANE1_IDELAY
,
8
,
1
,
delay
[
1
],
"DLY_LANE1_IDELAY"
)
self
.
x393_axi_tasks
.
write_contol_register
(
vrlg
.
DLY_SET
,
0
);
# set all delays
def
axi_set_dqs_odelay
(
self
,
delay
=
None
):
# input [7:0] delay;
delay
=
None
,
# input [7:0] delay;
quiet
=
1
):
"""
Set all DQs OUTput delays to the same value
<delay> 8-bit (5+3) delay value to use or a tuple/list with a pair for (lane0, lane1)
if delay is None will restore default values
<quiet> reduce output
"""
if
delay
is
None
:
delay
=
(
vrlg
.
get_default_field
(
"DLY_LANE0_ODELAY"
,
8
),
vrlg
.
get_default_field
(
"DLY_LANE1_ODELAY"
,
8
))
if
isinstance
(
delay
,(
int
,
long
)):
delay
=
(
delay
,
delay
)
if
self
.
DEBUG_MODE
>
1
:
if
quiet
<
2
:
print
(
"SET DQS ODELAY="
+
hexMultiple
(
delay
))
# hexMultiple
self
.
axi_set_multiple_delays
(
vrlg
.
LD_DLY_LANE0_ODELAY
,
8
,
1
,
delay
[
0
],
"DLY_LANE0_ODELAY"
)
self
.
axi_set_multiple_delays
(
vrlg
.
LD_DLY_LANE1_ODELAY
,
8
,
1
,
delay
[
1
],
"DLY_LANE1_ODELAY"
)
self
.
x393_axi_tasks
.
write_contol_register
(
vrlg
.
DLY_SET
,
0
);
# set all delays
def
axi_set_dm_odelay
(
self
,
delay
=
None
):
# input [7:0] delay;
delay
=
None
,
# input [7:0] delay;
quiet
=
1
):
"""
Set all DM output delays to the same value
<delay> 8-bit (5+3) delay value to use or a tuple/list with a pair for (lane0, lane1)
if delay is None will restore default values
<quiet> reduce output
"""
if
delay
is
None
:
delay
=
(
vrlg
.
get_default_field
(
"DLY_LANE0_ODELAY"
,
9
),
vrlg
.
get_default_field
(
"DLY_LANE1_ODELAY"
,
9
))
if
isinstance
(
delay
,(
int
,
long
)):
delay
=
(
delay
,
delay
)
if
self
.
DEBUG_MODE
>
1
:
if
quiet
<
2
:
print
(
"SET DQM IDELAY="
+
hexMultiple
(
delay
))
# hexMultiple
self
.
axi_set_multiple_delays
(
vrlg
.
LD_DLY_LANE0_ODELAY
,
9
,
1
,
delay
[
0
],
"DLY_LANE0_ODELAY"
)
self
.
axi_set_multiple_delays
(
vrlg
.
LD_DLY_LANE1_ODELAY
,
9
,
1
,
delay
[
1
],
"DLY_LANE1_ODELAY"
)
...
...
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