Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tdc-core
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
hdl-core-lib
tdc-core
Commits
8c7b312b
Commit
8c7b312b
authored
13 years ago
by
Sebastien Bourdeauducq
Browse files
Options
Downloads
Patches
Plain Diff
Debug interface
parent
d9c1b856
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
core/tdc.vhd
+54
-26
54 additions, 26 deletions
core/tdc.vhd
core/tdc_package.vhd
+45
-0
45 additions, 0 deletions
core/tdc_package.vhd
with
99 additions
and
26 deletions
core/tdc.vhd
+
54
−
26
View file @
8c7b312b
...
...
@@ -66,33 +66,48 @@ entity tdc is
-- Debug interface.
freeze_req_i
:
in
std_logic
;
freeze_ack_o
:
out
std_logic
-- TODO
freeze_ack_o
:
out
std_logic
;
cs_next_i
:
in
std_logic
;
cs_last_o
:
out
std_logic
;
calib_sel_i
:
in
std_logic
;
lut_a_i
:
in
std_logic_vector
(
g_RAW_COUNT
-1
downto
0
);
lut_d_o
:
out
std_logic_vector
(
g_FP_COUNT
-1
downto
0
);
his_a_i
:
in
std_logic_vector
(
g_RAW_COUNT
-1
downto
0
);
his_d_o
:
out
std_logic_vector
(
g_FP_COUNT
-1
downto
0
);
oc_start_i
:
in
std_logic
;
oc_ready_o
:
out
std_logic
;
oc_freq_o
:
out
std_logic_vector
(
g_FCOUNTER_WIDTH
-1
downto
0
);
oc_sfreq_o
:
out
std_logic_vector
(
g_FCOUNTER_WIDTH
-1
downto
0
)
);
end
entity
;
architecture
rtl
of
tdc
is
signal
cs_next
:
std_logic
;
signal
cs_last
:
std_logic
;
signal
calib_sel
:
std_logic
;
signal
cs_next
:
std_logic
;
signal
cs_next_c
:
std_logic
;
signal
cs_last
:
std_logic
;
signal
calib_sel
:
std_logic
;
signal
calib_sel_c
:
std_logic
;
signal
lut_a
:
std_logic_vector
(
g_RAW_COUNT
-1
downto
0
);
signal
lut_we
:
std_logic
;
signal
lut_d_w
:
std_logic_vector
(
g_FP_COUNT
-1
downto
0
);
signal
lut_d_r
:
std_logic_vector
(
g_FP_COUNT
-1
downto
0
);
signal
lut_a
:
std_logic_vector
(
g_RAW_COUNT
-1
downto
0
);
signal
lut_a_c
:
std_logic_vector
(
g_RAW_COUNT
-1
downto
0
);
signal
lut_we
:
std_logic
;
signal
lut_d_w
:
std_logic_vector
(
g_FP_COUNT
-1
downto
0
);
signal
lut_d_r
:
std_logic_vector
(
g_FP_COUNT
-1
downto
0
);
signal
c_detect
:
std_logic
;
signal
c_raw
:
std_logic_vector
(
g_RAW_COUNT
-1
downto
0
);
signal
his_a
:
std_logic_vector
(
g_RAW_COUNT
-1
downto
0
);
signal
his_we
:
std_logic
;
signal
his_d_w
:
std_logic_vector
(
g_FP_COUNT
-1
downto
0
);
signal
his_d_r
:
std_logic_vector
(
g_FP_COUNT
-1
downto
0
);
signal
c_detect
:
std_logic
;
signal
c_raw
:
std_logic_vector
(
g_RAW_COUNT
-1
downto
0
);
signal
his_a
:
std_logic_vector
(
g_RAW_COUNT
-1
downto
0
);
signal
his_a_c
:
std_logic_vector
(
g_RAW_COUNT
-1
downto
0
);
signal
his_we
:
std_logic
;
signal
his_d_w
:
std_logic_vector
(
g_FP_COUNT
-1
downto
0
);
signal
his_d_r
:
std_logic_vector
(
g_FP_COUNT
-1
downto
0
);
signal
oc_start
:
std_logic
;
signal
oc_ready
:
std_logic
;
signal
oc_freq
:
std_logic_vector
(
g_FCOUNTER_WIDTH
-1
downto
0
);
signal
oc_store
:
std_logic
;
signal
oc_sfreq
:
std_logic_vector
(
g_FCOUNTER_WIDTH
-1
downto
0
);
signal
oc_start
:
std_logic
;
signal
oc_start_c
:
std_logic
;
signal
oc_ready
:
std_logic
;
signal
oc_freq
:
std_logic_vector
(
g_FCOUNTER_WIDTH
-1
downto
0
);
signal
oc_store
:
std_logic
;
signal
oc_sfreq
:
std_logic_vector
(
g_FCOUNTER_WIDTH
-1
downto
0
);
signal
freeze_ack
:
std_logic
;
begin
...
...
@@ -157,22 +172,22 @@ begin
reset_i
=>
reset_i
,
ready_o
=>
ready_o
,
next_o
=>
cs_next
,
next_o
=>
cs_next
_c
,
last_i
=>
cs_last
,
calib_sel_o
=>
calib_sel
,
calib_sel_o
=>
calib_sel
_c
,
lut_a_o
=>
lut_a
,
lut_a_o
=>
lut_a
_c
,
lut_we_o
=>
lut_we
,
lut_d_o
=>
lut_d_w
,
c_detect_i
=>
c_detect
,
c_raw_i
=>
c_raw
,
his_a_o
=>
his_a
,
his_a_o
=>
his_a
_c
,
his_we_o
=>
his_we
,
his_d_o
=>
his_d_w
,
his_d_i
=>
his_d_r
,
oc_start_o
=>
oc_start
,
oc_start_o
=>
oc_start
_c
,
oc_ready_i
=>
oc_ready
,
oc_freq_i
=>
oc_freq
,
oc_store_o
=>
oc_store
,
...
...
@@ -181,5 +196,18 @@ begin
freeze_req_i
=>
freeze_req_i
,
freeze_ack_o
=>
freeze_ack
);
freeze_ack_o
<=
freeze_ack
;
-- Debug interface signals.
cs_next
<=
cs_next_i
when
(
freeze_ack
=
'1'
)
else
cs_next_c
;
calib_sel
<=
calib_sel_i
when
(
freeze_ack
=
'1'
)
else
calib_sel_c
;
lut_a
<=
lut_a_i
when
(
freeze_ack
=
'1'
)
else
lut_a_c
;
his_a
<=
his_a_i
when
(
freeze_ack
=
'1'
)
else
his_a_c
;
oc_start
<=
oc_start_i
when
(
freeze_ack
=
'1'
)
else
oc_start_c
;
freeze_ack_o
<=
freeze_ack
;
cs_last_o
<=
cs_last
;
lut_d_o
<=
lut_d_r
;
his_d_o
<=
his_d_r
;
oc_ready_o
<=
oc_ready
;
oc_freq_o
<=
oc_freq
;
oc_sfreq_o
<=
oc_sfreq
;
end
architecture
;
This diff is collapsed.
Click to expand it.
core/tdc_package.vhd
+
45
−
0
View file @
8c7b312b
...
...
@@ -22,6 +22,51 @@ use ieee.std_logic_1164.all;
package
tdc_package
is
component
tdc
is
generic
(
g_CHANNEL_COUNT
:
positive
:
=
2
;
g_CARRY4_COUNT
:
positive
:
=
100
;
g_RAW_COUNT
:
positive
:
=
9
;
g_FP_COUNT
:
positive
:
=
13
;
g_COARSE_COUNT
:
positive
:
=
25
;
g_RO_LENGTH
:
positive
:
=
20
;
g_FCOUNTER_WIDTH
:
positive
:
=
13
;
g_FTIMER_WIDTH
:
positive
:
=
10
);
port
(
clk_i
:
in
std_logic
;
reset_i
:
in
std_logic
;
ready_o
:
out
std_logic
;
cc_rst_i
:
in
std_logic
;
cc_cy_o
:
out
std_logic
;
deskew_i
:
in
std_logic_vector
(
g_CHANNEL_COUNT
*
(
g_COARSE_COUNT
+
g_FP_COUNT
)
-1
downto
0
);
signal_i
:
in
std_logic_vector
(
g_CHANNEL_COUNT
-1
downto
0
);
calib_i
:
in
std_logic_vector
(
g_CHANNEL_COUNT
-1
downto
0
);
detect_o
:
out
std_logic_vector
(
g_CHANNEL_COUNT
-1
downto
0
);
polarity_o
:
out
std_logic_vector
(
g_CHANNEL_COUNT
-1
downto
0
);
raw_o
:
out
std_logic_vector
(
g_CHANNEL_COUNT
*
g_RAW_COUNT
-1
downto
0
);
fp_o
:
out
std_logic_vector
(
g_CHANNEL_COUNT
*
(
g_COARSE_COUNT
+
g_FP_COUNT
)
-1
downto
0
);
freeze_req_i
:
in
std_logic
;
freeze_ack_o
:
out
std_logic
;
cs_next_i
:
in
std_logic
;
cs_last_o
:
out
std_logic
;
calib_sel_i
:
in
std_logic
;
lut_a_i
:
in
std_logic_vector
(
g_RAW_COUNT
-1
downto
0
);
lut_d_o
:
out
std_logic_vector
(
g_FP_COUNT
-1
downto
0
);
his_a_i
:
in
std_logic_vector
(
g_RAW_COUNT
-1
downto
0
);
his_d_o
:
out
std_logic_vector
(
g_FP_COUNT
-1
downto
0
);
oc_start_i
:
in
std_logic
;
oc_ready_o
:
out
std_logic
;
oc_freq_o
:
out
std_logic_vector
(
g_FCOUNTER_WIDTH
-1
downto
0
);
oc_sfreq_o
:
out
std_logic_vector
(
g_FCOUNTER_WIDTH
-1
downto
0
)
);
end
component
;
component
tdc_controller
is
generic
(
g_RAW_COUNT
:
positive
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment