【问题标题】:VHDL Synthesize Block Ram with Multiple OutputsVHDL 合成具有多个输出的 Block Ram
【发布时间】:2015-03-24 18:10:24
【问题描述】:
if rising_edge(CLK_100Mhz) then
  if w_ram = '1' then
    for X in 0 to 6 loop
        for Y in 0 to 6 loop
            DataO(X)(Y)(0) <= Memory(X)(Y)(Address);
            DataO(X)(Y)(1) <= Memory(X)(Y)(Address+1);
            DataO(X)(Y)(2) <= Memory(X)(Y)(Address+2);
            DataO(X)(Y)(3) <= Memory(X)(Y)(Address+3);
            Memory(X)(Y)(Address) <= DataI(X)(Y)(0);
        end loop;
    end loop;
  w_ram <= '0';
end if;
end if;

我的数据密集型项目需要使用 block ram。对于每个给定的 X,Y,这会作为 1 个输入,4 个输出块工作,还是会为每个给定的 X,Y 创建 4 个块?这也有用吗?我正在使用 Xilinx Zynq-7000 FPGA。

谢谢。

【问题讨论】:

  • 可以重写您的代码,使其只需要一个 RAM。根据大小,它仍然可能需要多个 BlockRAM。你可以为地址、数据I、数据O和内存添加使用的数据类型吗?您正在连续地址访问内存,因此它是一条内存线,将被分成 4 个字。可以使用字节使​​能来写入内存。
  • 这类东西可以工作,但根据数据的宽度,在单个时钟周期内访问 196 个内存位置可能需要很多 BlockRams。

标签: vhdl fpga


【解决方案1】:

我猜您希望 Xilinx 综合工具推断出多个非对称块 RAM。 Xilinx 提供了推断一个 RAM 的示例代码,可以在

找到

http://www.xilinx.com/support/documentation/sw_manuals/xilinx13_2/xst_v6s6.pdf

写端口是 8 位宽和 256 深,读端口是 32 位宽和 64 深。这是上面链接中的代码:

-- Asymmetric port RAM
-- Port A is 256x8-bit write-only
-- Port B is 64x32-bit read-only
--
-- Download: ftp://ftp.xilinx.com/pub/documentation/misc/xstug_examples.zip
-- File: HDL_Coding_Techniques/rams/asymmetric_ram_1a.vhd
--
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
use ieee.std_logic_arith.all;

entity asymmetric_ram_1a is
generic (
    WIDTHA      : integer := 8;
    SIZEA       : integer := 256;
    ADDRWIDTHA  : integer := 8;
    WIDTHB      : integer := 32;
    SIZEB       : integer := 64;
    ADDRWIDTHB  : integer := 6
);
port (
    clkA    : in    std_logic;
    clkB    : in    std_logic;
    weA     : in    std_logic;
    enA     : in    std_logic;
    enB     : in    std_logic;
    addrA   : in    std_logic_vector(ADDRWIDTHA-1 downto 0);
    addrB   : in    std_logic_vector(ADDRWIDTHB-1 downto 0);
    diA     : in    std_logic_vector(WIDTHA-1 downto 0);
    doB     :   out std_logic_vector(WIDTHB-1 downto 0)
);
end asymmetric_ram_1a;

architecture behavioral of asymmetric_ram_1a is

function max(L, R: INTEGER) return INTEGER is
begin
    if L > R then
        return L;
    else
        return R;
    end if;
end;

function min(L, R: INTEGER) return INTEGER is
begin
    if L < R then
        return L;
    else
        return R;
    end if;
end;

constant minWIDTH : integer := min(WIDTHA,WIDTHB);
constant maxWIDTH : integer := max(WIDTHA,WIDTHB);
constant maxSIZE  : integer := max(SIZEA,SIZEB);
constant RATIO    : integer := maxWIDTH / minWIDTH;

type ramType is array (0 to maxSIZE-1) of std_logic_vector(minWIDTH-1 downto 0);
signal ram : ramType := (others => (others => '0'));
signal readB : std_logic_vector(WIDTHB-1 downto 0):= (others => '0');
signal regB : std_logic_vector(WIDTHB-1 downto 0):= (others => '0');

begin
process (clkA)
begin
    if rising_edge(clkA) then
        if enA = '1' then
            if weA = '1' then
                ram(conv_integer(addrA)) <= diA;
            end if;
        end if;
    end if;
end process;

process (clkB)
begin
    if rising_edge(clkB) then
        if enB = '1' then
            readB(minWIDTH-1 downto 0)
            <= ram(conv_integer(addrB&conv_std_logic_vector(0,2)));
            readB(2*minWIDTH-1 downto minWIDTH)
            <= ram(conv_integer(addrB&conv_std_logic_vector(1,2)));
            readB(3*minWIDTH-1 downto 2*minWIDTH)
            <= ram(conv_integer(addrB&conv_std_logic_vector(2,2)));
            readB(4*minWIDTH-1 downto 3*minWIDTH)
            <= ram(conv_integer(addrB&conv_std_logic_vector(3,2)));
        end if;
    regB <= readB;
    end if;
end process;

doB <= regB;

end behavioral;

这是确认 XST 推断出非对称内存的综合报告的摘录。

Synthesizing (advanced) Unit <asymmetric_ram_1a>.
INFO:Xst:3226 - The RAM <Mram_ram> will be implemented as a BLOCK RAM, absorbing the following register(s): <readB> <regB>
    -----------------------------------------------------------------------
    | ram_type           | Block                               |          |
    -----------------------------------------------------------------------
    | Port A                                                              |
    |     aspect ratio   | 256-word x 8-bit                    |          |
    |     mode           | write-first                         |          |
    |     clkA           | connected to signal <clkA>          | rise     |
    |     weA            | connected to signal <weA_0>         | high     |
    |     addrA          | connected to signal <addrA>         |          |
    |     diA            | connected to signal <diA>           |          |
    -----------------------------------------------------------------------
    | optimization       | speed                               |          |
    -----------------------------------------------------------------------
    | Port B                                                              |
    |     aspect ratio   | 64-word x 32-bit                    |          |
    |     mode           | write-first                         |          |
    |     clkB           | connected to signal <clkB>          | rise     |
    |     enB            | connected to signal <enB>           | high     |
    |     addrB          | connected to signal <addrB>         |          |
    |     doB            | connected to signal <doB>           |          |
    -----------------------------------------------------------------------
    | optimization       | speed                               |          |
    -----------------------------------------------------------------------
Unit <asymmetric_ram_1a> synthesized (advanced).

=========================================================================
Advanced HDL Synthesis Report

Macro Statistics
# RAMs                                                 : 1
 256x8:64x32-bit dual-port block RAM                   : 1

请注意,端口 B 是只读的,尽管综合报告说了什么。

【讨论】:

    猜你喜欢
    • 2012-02-17
    • 1970-01-01
    • 2014-04-12
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多