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]

相关推荐
JJ_KING&5 小时前
FPGA实现直流电机转速、电压、电流测量系统(基于EP4CE6F17C8 + INA226)
fpga开发·课程设计
测试专家6 小时前
HKM9000视频处理卡
fpga开发
li星野12 小时前
打工人日报#20251009
fpga开发
cycf12 小时前
Vivado 时序约束的完整作战地图(二)
fpga开发
cycf13 小时前
时钟周期约束(三)
fpga开发
szxinmai主板定制专家13 小时前
RK3588+AI算力卡替代英伟达jetson方案,大算力,支持FPGA自定义扩展
arm开发·人工智能·分布式·fpga开发
ARM+FPGA+AI工业主板定制专家14 小时前
基于NVIDIA ORIN+FPGA+AI自动驾驶硬件在环注入测试
人工智能·fpga开发·机器人·自动驾驶
bnsarocket14 小时前
Verilog和FPGA的自学笔记4——多路选择器(always语句)
笔记·fpga开发·编程·verilog·自学·硬件编程
爱吃汽的小橘14 小时前
使用乒乓ram去直流分量
fpga开发
技术小白爱FPGA16 小时前
Altera Fpga PCI master 设计
fpga开发