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.
PR Description
To automate the transceiver configuration process, I used the following:
The xcvr_wizard project is designed to facilitate the configuration and usage of transceivers (XCVRs) in FPGA projects with various configurations, aiming to automate the setup process. After building the project, we obtain the necessary files:
These files can be found in the following folder:
xcvr_wizard//RATE_REFCLKPLLTYPE/xcvr_wizard.gen/sources_1/ip
The adi_xcvr_project function from the adi_project_xilinx.tcl script
The adi_xcvr_project function takes as arguments the values for LANE_RATE, REF_CLK, and PLL_TYPE. The purpose of the function is to build the xcvr_wizard project using the specified parameters or the default ones, and it returns a dictionary (xcvr_config_paths) with the paths to the output files generated during the build process.
This function is typically called from the system_project.tcl script located in the specific project/carrier directory.
The adi_xcvr_parameters function from the xcvr_automation.tcl script
This function takes as arguments a dictionary (xcvr_config_paths) with the paths to the configuration files and, optionally, a list of parameter-value pairs to override the default transceiver parameters.
It then processes the transceiver configuration data by extracting parameter values from the generated files (param_file_path, cfng_file_path) and comparing them against a predefined set of default values.
Parameters whose values differ are added to a dictionary, which is returned and passed to the ad_ip_instance function to create the instance of the util_adxcvr component.
This function is typically called from the <project_name>_bd.tcl script, located in the common folder shared across all carriers.
The automation has been integrated into the following projects:
• DAQ2
• DAQ3
• ADRV9009
• ADRV9371x
• ADRV9026
Currently, the automation can only be integrated into projects that support JESD204B.
PR Type
PR Checklist