vivado IOSTANDARD

IOSTANDARD规定了使用哪种可编程I/O标准来配置输入,

目标设备上的输入、输出或双向端口。

重要提示:在Vivado之前,您必须在I/O Bank的所有端口上明确定义IOSTANDARD

Design Suite将根据设计创建比特流。但是,IOSTANDARD不能应用于GT

或XADC。

您可以在单个I/O库中混合使用不同的IOSTANDARD,但是IOSTANDARDs必须

兼容。当组合不同的输入时,必须遵循以下规则,

在单个I/O库中实现输入、输出和双向I/O标准:

1.具有相同输出VCCO要求的输出标准可以组合在一起

银行。

2.具有相同VCCO和VREF要求的输入标准可以组合在一起

银行。

3.具有相同VCCO要求的输入标准和输出标准可以组合

在同一家银行。

4.当将双向I/O与其他标准结合时,确保双向

标准可以满足前三条规则。
Syntax
Verilog Syntax
To set this parameter, place the proper Verilog syntax before the top-level port declaration.
(* IOSTANDARD = "value" *)
Verilog Syntax Example
// Sets the I/O Standard on the STATUS output to LVCMOS12
(* IOSTANDARD = "LVCMOS12" *) output STATUS,
VHDL Syntax
Place the proper VHDL attribute syntax before the top-level port declaration.
Declare and specify the VHDL attribute as follows:
attribute IOSTANDARD : string;
attribute IOSTANDARD of <port_name>: signal is "<standard>";
Where:
• port_name is a top-level port.
VHDL Syntax Example
STATUS : out std_logic;
attribute IOSTANDARD : string;
-- Sets the I/O Standard on the STATUS output to LVCMOS12
attribute IOSTANDARD of STATUS: signal is "LVCMOS12";
XDC Syntax
The IOSTANDARD can also be defined as an XDC constraint on port objects in the design.
set_property IOSTANDARD value [get_ports port_name]
Where
• port_name is a top-level port.
XDC Syntax Example

Sets the I/O Standard on the STATUS output to LVCMOS12

set_property IOSTANDARD LVCMOS12 [get_ports STATUS]

相关推荐
KOAN凯擎小妹12 小时前
晶振信号质量:上升下降时间与占空比
单片机·嵌入式硬件·fpga开发·信息与通信
cmc102812 小时前
148.PCIE参考时钟无法绑定
fpga开发
我爱C编程16 小时前
【硬件片内测试】基于FPGA的完整BPSK链路测试,含频偏锁定,帧同步,定时点,Viterbi译码,信道,误码统计
fpga开发·定时·bpsk·帧同步·卷积编码·维特比译码·频偏估计
FPGA_小田老师16 小时前
FPGA基础知识(十一):时序约束参数确定--从迷茫到精通
fpga开发·时序约束·建立时间·保持时间·约束参数计算
FPGA_小田老师16 小时前
FPGA基础知识(十二):详解跨时钟域约束
fpga开发·时序约束·跨时钟域·约束完整性
第二层皮-合肥1 天前
基于FPGA的雷达信号处理设计工具包分享
fpga开发·信号处理
美好的事情总会发生1 天前
FPGA的LVDS接口电压
嵌入式硬件·fpga开发·硬件工程·智能硬件
卡奥斯开源社区官方2 天前
量子计算“平价革命”深度解析:AMD破局FPGA方案+中国千比特云服务,技术拐点已至?
fpga开发·量子计算
贝塔实验室2 天前
译码器的结构
驱动开发·算法·网络安全·fpga开发·硬件工程·信息与通信·信号处理
bnsarocket2 天前
Verilog和FPGA的自学笔记9——呼吸灯
笔记·fpga开发·verilog·自学·硬件编程