Compare commits
No commits in common. "3fffa6efe3769d70fdc99fd7046a0eb243e80957" and "32434cf8025578d1d8933d41e295173a748159d2" have entirely different histories.
3fffa6efe3
...
32434cf802
@ -1,6 +1,3 @@
|
|||||||
-- TODO: WARN: SEL bits ignored.
|
|
||||||
-- TODO: Multiple ports is broken (address mapping * 4), plus some ACK error maybe?
|
|
||||||
|
|
||||||
library ieee;
|
library ieee;
|
||||||
use ieee.std_logic_1164.all;
|
use ieee.std_logic_1164.all;
|
||||||
use ieee.numeric_std.all;
|
use ieee.numeric_std.all;
|
||||||
@ -17,8 +14,8 @@ entity uart_wb is
|
|||||||
clk : in std_logic;
|
clk : in std_logic;
|
||||||
rst : in std_logic;
|
rst : in std_logic;
|
||||||
-- Wishbone
|
-- Wishbone
|
||||||
slave_i : in wishbone_v3_slave_in;
|
slave_i : in wishbone_slave_in;
|
||||||
slave_o : out wishbone_v3_slave_out;
|
slave_o : out wishbone_slave_out;
|
||||||
irq_o : out std_logic_vector(portcount - 1 downto 0);
|
irq_o : out std_logic_vector(portcount - 1 downto 0);
|
||||||
-- UART
|
-- UART
|
||||||
rx : in std_logic_vector(portcount - 1 downto 0);
|
rx : in std_logic_vector(portcount - 1 downto 0);
|
||||||
@ -147,6 +144,7 @@ begin
|
|||||||
end process wb;
|
end process wb;
|
||||||
|
|
||||||
slave_o.RTY <= '0';
|
slave_o.RTY <= '0';
|
||||||
|
slave_o.STALL <= '0';
|
||||||
slave_o.ERR <= '0';
|
slave_o.ERR <= '0';
|
||||||
|
|
||||||
applyCR : for i in 0 to portcount - 1 generate
|
applyCR : for i in 0 to portcount - 1 generate
|
||||||
|
@ -59,12 +59,12 @@ architecture RTL of top is
|
|||||||
|
|
||||||
-- WB config
|
-- WB config
|
||||||
constant masters : natural := 3;
|
constant masters : natural := 3;
|
||||||
constant slaves : natural := 5;
|
constant slaves : natural := 4;
|
||||||
constant INTERCON_ID_SRAM : natural := 0;
|
constant INTERCON_ID_SRAM : natural := 0;
|
||||||
constant INTERCON_ID_DDR3 : natural := 1;
|
constant INTERCON_ID_DDR3 : natural := 1;
|
||||||
constant INTERCON_ID_FLASH : natural := 2;
|
constant INTERCON_ID_FLASH : natural := 2;
|
||||||
constant INTERCON_ID_GPIO : natural := 3;
|
constant INTERCON_ID_GPIO : natural := 3;
|
||||||
constant INTERCON_ID_UART : natural := 4;
|
-- constant INTERCON_ID_UART : natural := 3;
|
||||||
-- constant INTERCON_ID_NS16550 : natural := 4;
|
-- constant INTERCON_ID_NS16550 : natural := 4;
|
||||||
|
|
||||||
constant in_simulation : boolean := false
|
constant in_simulation : boolean := false
|
||||||
@ -333,21 +333,6 @@ begin
|
|||||||
gpio => GPIOA
|
gpio => GPIOA
|
||||||
);
|
);
|
||||||
|
|
||||||
-- UART
|
|
||||||
uart_wb_inst : entity work.uart_wb
|
|
||||||
generic map(
|
|
||||||
portcount => 1
|
|
||||||
)
|
|
||||||
port map(
|
|
||||||
clk => clk,
|
|
||||||
rst => rst,
|
|
||||||
slave_i => intercon_slave_i(INTERCON_ID_UART),
|
|
||||||
slave_o => intercon_slave_o(INTERCON_ID_UART),
|
|
||||||
irq_o => open, -- TODO
|
|
||||||
rx(0) => uart_rx,
|
|
||||||
tx(0) => uart_tx
|
|
||||||
);
|
|
||||||
|
|
||||||
-- Intercon
|
-- Intercon
|
||||||
crossbar_inst : entity ip.crossbar
|
crossbar_inst : entity ip.crossbar
|
||||||
generic map(
|
generic map(
|
||||||
@ -366,15 +351,13 @@ begin
|
|||||||
INTERCON_ID_SRAM => x"00000000",
|
INTERCON_ID_SRAM => x"00000000",
|
||||||
INTERCON_ID_DDR3 => x"10000000",
|
INTERCON_ID_DDR3 => x"10000000",
|
||||||
INTERCON_ID_FLASH => x"40000000",
|
INTERCON_ID_FLASH => x"40000000",
|
||||||
INTERCON_ID_GPIO => x"80000000",
|
INTERCON_ID_GPIO => x"80000000"
|
||||||
INTERCON_ID_UART => x"80000100"
|
|
||||||
),
|
),
|
||||||
mask => (
|
mask => (
|
||||||
INTERCON_ID_SRAM => x"ffff0000",
|
INTERCON_ID_SRAM => x"ffff0000",
|
||||||
INTERCON_ID_DDR3 => x"f0000000",
|
INTERCON_ID_DDR3 => x"f0000000",
|
||||||
INTERCON_ID_FLASH => x"f0000000",
|
INTERCON_ID_FLASH => x"f0000000",
|
||||||
INTERCON_ID_GPIO => x"fffffff0",
|
INTERCON_ID_GPIO => x"fffffffc"
|
||||||
INTERCON_ID_UART => x"ffffffc0"
|
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
end architecture RTL;
|
end architecture RTL;
|
||||||
|
@ -174,7 +174,6 @@ architecture rtl of crossbar is
|
|||||||
DAT => acc.DAT or (slave_i(master).DAT and granted_data));
|
DAT => acc.DAT or (slave_i(master).DAT and granted_data));
|
||||||
end loop;
|
end loop;
|
||||||
-- acc.ADR := std_logic_vector(unsigned(acc.ADR) - unsigned(address(slave))); -- Address translation
|
-- acc.ADR := std_logic_vector(unsigned(acc.ADR) - unsigned(address(slave))); -- Address translation
|
||||||
acc.ADR := acc.ADR and not mask(slave); -- Address masking
|
|
||||||
o <= acc;
|
o <= acc;
|
||||||
end slave_logic;
|
end slave_logic;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user