-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use transceiver clocks in FINC/FDEC tests #538
Draft
hiddemoll
wants to merge
13
commits into
staging
Choose a base branch
from
transceiver-clock-fincfdectest
base: staging
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
hiddemoll
force-pushed
the
transceiver-clock-fincfdectest
branch
26 times, most recently
from
June 12, 2024 14:20
f4be4a6
to
5554244
Compare
hiddemoll
force-pushed
the
transceiver-clock-fincfdectest
branch
4 times, most recently
from
June 17, 2024 12:32
34b88b5
to
ef096ef
Compare
leonschoorl
force-pushed
the
transceiver-clock-fincfdectest
branch
2 times, most recently
from
July 2, 2024 11:51
7c6eb0b
to
6ebe6f7
Compare
hiddemoll
force-pushed
the
transceiver-clock-fincfdectest
branch
5 times, most recently
from
July 3, 2024 07:30
6aeb6ce
to
3d0b35b
Compare
martijnbastiaan
approved these changes
Aug 7, 2024
hiddemoll
force-pushed
the
transceiver-clock-fincfdectest
branch
from
August 8, 2024 15:07
3d0b35b
to
e865432
Compare
This allows us to directly use the GTH reference clock in logic, by selecting TXPLLREFCLK_DIV1, and do the FincFdec test on all nodes without extra cables.
hiddemoll
force-pushed
the
transceiver-clock-fincfdectest
branch
from
August 9, 2024 11:57
e865432
to
d842378
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The HITL test
fincFdecTests
is no longer run when a branch is pushed, so I've added a debug.json to explicitly test it. The result of that test can be seen here.The main goal of this PR is to enable us to run the FINC/FDEC tests on all FPGAs in the demo rig. To do this, we need access to the external clock, which is connected to
SMA_MGT_REFCLK_C
and which can only be used by the transceivers. We therefore modifiedgthCore
to allow access to this clock before it goes through the internal CPLL (see this diagram in the GTH Transceiver user guide.To select
TXPLLREFCLK_DIV1
asTXOUTCLK
, we need a different ratio between the reference clock and 125 MHz TX clock. We therefore changed the external clock from 200 MHz to 250 MHz for all bittide instances. Note that this does not interfere with internals of any bittide instance, it only changes the reference clock of the transceivers.