Skip to content

Commit

Permalink
Resolve High Density bank IOStandard error
Browse files Browse the repository at this point in the history
This resolves the following error during `build` on Vivado 2023.1:
```ERROR: [DRC BIVB-1] Bank IO standard Support: Bank 47 has incompatible IO(s) because: The LVDS I/O standard is not supported for banks of type High Density. Move the following ports or change their properties:
clk125_p```
  • Loading branch information
lianakoleva authored Sep 25, 2023
1 parent 1fb3178 commit 5f8ac85
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions litex_boards/platforms/xilinx_zcu102.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
_io = [
# Clk / Rst
("clk125", 0,
Subsignal("p", Pins("G21"), IOStandard("LVDS")),
Subsignal("n", Pins("F21"), IOStandard("LVDS")),
Subsignal("p", Pins("G21"), IOStandard("LVDS_25")),
Subsignal("n", Pins("F21"), IOStandard("LVDS_25")),
),
("clk300", 0,
Subsignal("p", Pins("AL8"), IOStandard("DIFF_SSTL12_DCI")),
Expand Down

0 comments on commit 5f8ac85

Please sign in to comment.