Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
gtxe2_gpl
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Elphel
gtxe2_gpl
Commits
e3394574
Commit
e3394574
authored
Jul 08, 2015
by
Alexey Grebenkin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rx/tx -> x state on idle
parent
9b371aa6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
gtxe2_chnl_rx_oob.v
gtxe2_channel/gtxe2_chnl_rx_oob.v
+1
-1
gtxe2_chnl_tx.v
gtxe2_channel/gtxe2_chnl_tx.v
+2
-2
No files found.
gtxe2_channel/gtxe2_chnl_rx_oob.v
View file @
e3394574
...
@@ -57,7 +57,7 @@ localparam wake_bursts_cnt = 5;
...
@@ -57,7 +57,7 @@ localparam wake_bursts_cnt = 5;
localparam
init_bursts_cnt
=
5
;
localparam
init_bursts_cnt
=
5
;
wire
idle
;
wire
idle
;
assign
idle
=
RXN
==
RXP
;
assign
idle
=
(
RXN
==
RXP
)
|
(
RXP
===
1'bx
)
;
wire
state_notrans
;
wire
state_notrans
;
wire
state_error
;
//nostrans substate
wire
state_error
;
//nostrans substate
...
...
gtxe2_channel/gtxe2_chnl_tx.v
View file @
e3394574
...
@@ -98,8 +98,8 @@ wire line_idle_pcs; // line_idle in pcs clock domain
...
@@ -98,8 +98,8 @@ wire line_idle_pcs; // line_idle in pcs clock domain
wire
[
internal_data_width
-
1
:
0
]
ser_input
;
wire
[
internal_data_width
-
1
:
0
]
ser_input
;
wire
oob_active
;
wire
oob_active
;
assign
TXP
=
~
line_idle
&
serial_data
;
assign
TXP
=
~
line_idle
?
serial_data
:
1'bx
;
assign
TXN
=
~
line_idle
&
~
serial_data
;
assign
TXN
=
~
line_idle
?
~
serial_data
:
1'bx
;
assign
line_idle_pcs
=
TXELECIDLE
&
~
oob_active
|
reset
;
assign
line_idle_pcs
=
TXELECIDLE
&
~
oob_active
|
reset
;
...
...
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