Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
HDL
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
RTSD
HDL
Commits
7b94f81e
Commit
7b94f81e
authored
10 years ago
by
Eric Kooistra
Browse files
Options
Downloads
Patches
Plain Diff
Added g_technology.
parent
e9c1ecd8
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libraries/io/eth/src/vhdl/eth.vhd
+7
-4
7 additions, 4 deletions
libraries/io/eth/src/vhdl/eth.vhd
with
7 additions
and
4 deletions
libraries/io/eth/src/vhdl/eth.vhd
+
7
−
4
View file @
7b94f81e
...
...
@@ -20,7 +20,7 @@
--
-------------------------------------------------------------------------------
LIBRARY
IEEE
,
common_lib
,
dp_lib
,
tech_tse_lib
;
LIBRARY
IEEE
,
common_lib
,
dp_lib
,
tech_tse_lib
,
technology_lib
;
USE
IEEE
.
std_logic_1164
.
ALL
;
USE
common_lib
.
common_pkg
.
ALL
;
USE
common_lib
.
common_mem_pkg
.
ALL
;
...
...
@@ -28,6 +28,7 @@ USE dp_lib.dp_stream_pkg.ALL;
USE
common_lib
.
eth_layers_pkg
.
ALL
;
USE
tech_tse_lib
.
tech_tse_pkg
.
ALL
;
USE
work
.
eth_pkg
.
ALL
;
USE
technology_lib
.
technology_select_pkg
.
ALL
;
-- Purpose:
-- Provide Ethernet control access to a node and some UDP ports for streaming
...
...
@@ -39,8 +40,9 @@ USE work.eth_pkg.ALL;
ENTITY
eth
IS
GENERIC
(
g_cross_clock_domain
:
BOOLEAN
:
=
TRUE
;
-- use FALSE when mm_clk and st_clk are the same, else use TRUE to cross the clock domain
g_ETH_PHY
:
STRING
:
=
"LVDS"
;
-- "LVDS" (default): uses LVDS IOs for ctrl_unb_common, "XCVR": uses tranceiver PHY
g_technology
:
NATURAL
:
=
c_tech_select_default
;
g_cross_clock_domain
:
BOOLEAN
:
=
TRUE
;
-- use FALSE when mm_clk and st_clk are the same, else use TRUE to cross the clock domain
g_ETH_PHY
:
STRING
:
=
"LVDS"
;
-- "LVDS" (default): uses LVDS IOs for ctrl_unb_common, "XCVR": uses tranceiver PHY
g_ihl20
:
BOOLEAN
:
=
FALSE
);
PORT
(
...
...
@@ -575,8 +577,9 @@ BEGIN
tse_tx_mac_in
.
crc_fwd
<=
'0'
;
-- when '0' then TSE MAC generates the TX CRC field
u_tse
:
ENTITY
work
.
tse
u_
tech_
tse
:
ENTITY
tech_tse_lib
.
tech_
tse
GENERIC
MAP
(
g_technology
=>
g_technology
,
g_ETH_PHY
=>
g_ETH_PHY
)
PORT
MAP
(
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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