gpt4 book ai didi

vhdl - GHDL 模拟器不支持没有错误的 vhdl 属性?

转载 作者:行者123 更新时间:2023-12-02 08:01:43 24 4
gpt4 key购买 nike

我写了一些vivado RTL,然后在实体的端口上添加了一些vhdl属性来定义Xilinx Vivado工具的接口(interface),如下所示:

library ieee;
use ieee.std_logic_1164.all;

entity vivado_rtl_island is

port(
-- Clocks
i_m50_clk :in std_logic;
i_m50_rst :in std_logic;

-- APB Command Inteface
s_paddr :in std_logic_vector(31 downto 0);
s_psel :in std_logic;
s_penable :in std_logic;
s_pwrite :in std_logic;
s_pwdata :in std_logic_vector(31 downto 0);
s_pready :out std_logic;
s_prdata :out std_logic_vector(31 downto 0);
s_pread :out std_logic;
s_pslverr :out std_logic
);

end entity;

architecture rtl of vivado_rtl_island is
-- Define APB Interface for "Vivado IP Integrator"
ATTRIBUTE X_INTERFACE_INFO: STRING;
ATTRIBUTE X_INTERFACE_INFO of s_paddr: SIGNAL is "xilinx.com:interface:apb:1.0 APB_S PADDR";
ATTRIBUTE X_INTERFACE_INFO of s_psel: SIGNAL is "xilinx.com:interface:apb:1.0 APB_S PSEL";
ATTRIBUTE X_INTERFACE_INFO of s_penable: SIGNAL is "xilinx.com:interface:apb:1.0 APB_S PENABLE";
ATTRIBUTE X_INTERFACE_INFO of s_pwrite: SIGNAL is "xilinx.com:interface:apb:1.0 APB_S PWRITE";
ATTRIBUTE X_INTERFACE_INFO of s_pwdata: SIGNAL is "xilinx.com:interface:apb:1.0 APB_S PWDATA";
ATTRIBUTE X_INTERFACE_INFO of s_pready: SIGNAL is "xilinx.com:interface:apb:1.0 APB_S PREADY";
ATTRIBUTE X_INTERFACE_INFO of s_prdata: SIGNAL is "xilinx.com:interface:apb:1.0 APB_S PRDATA";
ATTRIBUTE X_INTERFACE_INFO of s_pslverr: SIGNAL is "xilinx.com:interface:apb:1.0 APB_S PSLVERR";
begin

end architecture;

我尝试使用 GHDL 编译上述 rtl,如下所示:

$ ghdl -a --std=08 --ieee=synopsys --work=work  vivado_rtl_island.vhd

GHDL 产生以下错误:

vivado_rtl_island.vhd:28:33: no "s_paddr" for attribute specification
vivado_rtl_island.vhd:29:33: no "s_psel" for attribute specification
vivado_rtl_island.vhd:30:33: no "s_penable" for attribute specification
vivado_rtl_island.vhd:31:33: no "s_pwrite" for attribute specification
vivado_rtl_island.vhd:32:33: no "s_pwdata" for attribute specification
vivado_rtl_island.vhd:33:33: no "s_pready" for attribute specification
vivado_rtl_island.vhd:34:33: no "s_prdata" for attribute specification
vivado_rtl_island.vhd:35:33: no "s_pslverr" for attribute specification

但是,当我用 modelsim 编译它时,它不会产生错误。

有谁知道如何在 GHDL 中解决这个问题,以便我可以添加这些属性,模拟器将忽略它们而不产生错误?

最佳答案

参见 IEEE Std 1076-2008 7.2 属性规范,第 9 段:

An attribute specification for an attribute of an entity declaration, an architecture, a configuration, or a package shall appear immediately within the declarative part of that declaration. Similarly, an attribute specification for an attribute of an interface object of a design unit, subprogram, block statement, or package shall appear immediately within the declarative part of that design unit, subprogram, block statement, or package. Similarly, an attribute specification for an attribute of an interface object of a design unit, subprogram, block statement, or package shall appear immediately within the declarative part of that design unit, subprogram, block statement, or package. ...

设计单元是实体声明(3.2 Entity declarations),一个初级单元(13.1 Design units)。此语义限制已在每个 IEEE Std 1076 修订版(-1987 到 -2008,在 5.2 属性规范中找到的 -2008 之前)中实现。 Modelsim 错误地“编译”了您的规范。

Xilinx 的 Vivado 综合历来利用 Modelsim 行为。有趣的是,Vivado 不一致地遵守上面 7.2 中引用的第一句话的语义要求,这在早期的修订版中也存在,但在第二个修订版中没有。您可以在实体声明部分中的实体上声明属性,而 Vivado 至少在历史上要求在架构声明部分中的端口上指定属性。

使用 ghdl 时不会丢失所有内容。有一个命令行参数可以在分析过程中传递,以放宽各种规则以匹配第三方工具所依赖的 Modelsim 行为。

ghdl -a --std=08 --ieee=synopsys -frelaxed-rules --work=work vivado_rtl_island.vhdl
vivado_rtl_island.vhdl:28:33:warning: attribute for port "s_paddr" must be specified in the entity [-Wspecs]
vivado_rtl_island.vhdl:29:33:warning: attribute for port "s_psel" must be specified in the entity [-Wspecs]
vivado_rtl_island.vhdl:30:33:warning: attribute for port "s_penable" must be specified in the entity [-Wspecs]
vivado_rtl_island.vhdl:31:33:warning: attribute for port "s_pwrite" must be specified in the entity [-Wspecs]
vivado_rtl_island.vhdl:32:33:warning: attribute for port "s_pwdata" must be specified in the entity [-Wspecs]
vivado_rtl_island.vhdl:33:33:warning: attribute for port "s_pready" must be specified in the entity [-Wspecs]
vivado_rtl_island.vhdl:34:33:warning: attribute for port "s_prdata" must be specified in the entity [-Wspecs]
vivado_rtl_island.vhdl:35:33:warning: attribute for port "s_pslverr" must be specified in the entity [-Wspecs]

您可以添加命令行标志 -frelaxed-rules,错误将转换为警告。

标准修订版 -2008 更改了默认的 ghdl 行为。您会注意到,如果不指定 --std=08,默认的标准合规性是 --std=93c,其中包括 -frelaxed-rules 和在其他方面与 `--std=93 (-1993) 兼容。没有包含宽松规则的 -2008 修订版。

语义限制背后的原因是领先的(当时是 -1987 年)供应商无法在不直接访问端口声明的情况下在端口上实现指定用户属性。虽然该供应商可能不再提供 VHDL 产品,但限制仍然存在。

我们发现 Modelsim 的各种实例有效地试图通过市场份额影响来引导标准(它们有一个命令行 -pendanticerrors 参数将大量警告更改为错误)。

ghdl 开发遵循他们的领导,除了严格遵守标准是规范(尽管 --std=93c 作为默认设置),命令行参数启用警告而不是错误。

这样做的原因是,那些实现 VHDL 的人倾向于从标准开始,而不是通过对市场份额最大的供应商进行逆向工程。

ghdl 中的 -frelaxed-rules 描述可能不完整 documentation .在 VHDL standards 的部分中提到以及其他部分。

Xilinx 已获知该问题。 Modelsim 无疑知道它们与标准的不同之处,并且目前没有供应商参与 VHDL 标准修订过程。

查看 ghdl 源代码树 ghdl-0.35 于 2017 年 12 月 14 日发布,Issue 525修复了 Feb 7, 2018 (请参阅 src/vhdl/sem_specs.adb)使用 -frelaxed-rules 将端口属性添加到体系结构声明部分以提供当前功能,而不管 --std=08 (在 ghdl-0.36 开发周期中)。

另见 Issue 838 Xilinx Vivado 和 Modelsim 支持端口上的属性不同于 GHDL,在 github 上,OP 寻求第二意见,说明这个答案是有效的。

关于vhdl - GHDL 模拟器不支持没有错误的 vhdl 属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56444320/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com