使用泛型的泛型 MUX 和 DEMUX
Posted
技术标签:
【中文标题】使用泛型的泛型 MUX 和 DEMUX【英文标题】:Generic MUX and DEMUX using Generics 【发布时间】:2016-01-04 11:30:37 【问题描述】:用目前的流程好像可以解决:
process(sel, X)
begin
-- set all to 0
mux_out <= (others => zero);
-- Set input in correct line
mux_out(to_integer(unsigned(sel))) <= X;
end process;
我会用TestBench测试更多的案例并将结果写在这里,再次感谢大家的帮助:)
==== 上一篇文章 ======= 我已经按照 Paebbles 示例实现了 DEMUX:
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.MATH_REAL.ALL;
use IEEE.NUMERIC_STD.ALL;
entity DeMUX_1toX_N_bits is
generic (
PORTS : POSITIVE := 4;
BITS : POSITIVE := 8 );
port (
sel : in STD_LOGIC_VECTOR(integer(ceil(log2(real(PORTS)))) - 1 downto 0);
X : in STD_LOGIC_VECTOR(BITS - 1 downto 0);
Y : out STD_LOGIC_VECTOR((BITS * PORTS) - 1 downto 0)
);
end;
architecture rtl of DeMUX_1toX_N_bits is
type T_SLVV is array(NATURAL range <>) of STD_LOGIC_VECTOR(BITS - 1 downto 0);
signal mux_out : T_SLVV(PORTS - 1 downto 0);
begin
gen : for i in 0 to PORTS - 1 generate
-- connect Output FLAT VECTOR to the correct T_SLVV lines
Y(((i + 1) * BITS) - 1 downto (i * BITS)) <= mux_out(i);
end generate;
mux_out(to_integer(unsigned(sel))) <= X;
end;
综合工具告诉我“找到信号 mux_out 的 1 位锁存器。锁存器可能由不完整的 case 或 if 语句生成。我们不建议在 FPGA/CPLD 设计中使用锁存器,因为它们可能会导致时间问题。”
所以要解决这个问题,我应该明确地将“0”分配给所有其他输出位?
再次感谢所有帮助 :) 这种编码方式非常强大但也很复杂 :)
================== 上一篇文章====
我正在开发一个 VHDL 项目(用于 FPGA)作为大学实验室。 我被困在数据大小和端口数量参数化的多路复用器和解复用器的设计上。 特别是我找不到编写动态代码的方法(With / Select 语句?)
我有这样的想法:
use IEEE.STD_LOGIC_1164.ALL;
entity generic_mux is
GENERIC ( inputs: INTEGER := 4; -- number of inputs
size : INTEGER := 8); -- size of each input
Port (
-- ??? how can i define the input data ports if i don't know the exact number?
);
end generic_mux;
architecture arc of generic_mux is
begin
-- how can i use the select as an address? The With/Select needs a
-- defined number of cases...
-- ???
end arc;
提前感谢您的帮助。
【问题讨论】:
可能重复:我前段时间在 Core Review 上回答了这个问题。此解决方案适用于 VHDL-93 和 VHDL-2008。 【参考方案1】:使用 VHDL-2008 可以这样做:
library ieee;
use ieee.std_logic_1164.all;
package mux_p is
type slv_array_t is array (natural range <>) of std_logic_vector;
end package;
package body mux_p is
end package body;
library ieee;
use ieee.std_logic_1164.all;
use work.mux_p;
entity mux is
generic(
LEN : natural; -- Bits in each input
NUM : natural); -- Number of inputs
port(
v_i : in mux_p.slv_array_t(0 to NUM - 1)(LEN - 1 downto 0);
sel_i : in natural range 0 to NUM - 1;
z_o : out std_logic_vector(LEN - 1 downto 0));
end entity;
architecture syn of mux is
begin
z_o <= v_i(sel_i);
end architecture;
sel_i
也应该是std_logic_vector
,其长度是从NUM
派生的,但上面显示的是与多路复用器相关的代码。
多路复用器的使用示例可以是:
library ieee;
use ieee.std_logic_1164.all;
entity mdl is
port(
a_i : in std_logic_vector(1 downto 0);
b_i : in std_logic_vector(1 downto 0);
c_i : in std_logic_vector(1 downto 0);
sel_i : in natural;
z_o : out std_logic_vector(1 downto 0));
end entity;
architecture syn of mdl is
begin
mux_e : entity work.mux
generic map(
LEN => 2,
NUM => 3)
port map(
v_i(0) => a_i,
v_i(1) => b_i,
v_i(2) => c_i,
sel_i => sel_i,
z_o => z_o);
end architecture;
【讨论】:
感谢 MUX ,它运行良好并且是一个非常简短和清晰的代码。我现在对 DEMUX 有问题,使用相同的结构会导致“闩锁”警告,我编辑了我的问题来解释这一点。 想想没有选择输出的位会发生什么...使用当前代码,这些位被指定为保存先前的值,这需要一个锁存器,并且锁存器会产生警告,因为通常不需要它们,而是代码具有意外行为的结果,就像您的情况一样。确定如何处理未选择的输出,并更新代码。一种可能性是将所有输出默认分配给 0 或 X,然后为实际选择的输出覆盖它。 通过使用似乎解决了的过程,RTL 设计看起来也不错:)以上是关于使用泛型的泛型 MUX 和 DEMUX的主要内容,如果未能解决你的问题,请参考以下文章