synth/dsp/dsp.vhdl
2021-03-13 21:02:54 -08:00

288 lines
8.0 KiB
VHDL

library ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;
use std.textio.all;
entity dsp is
port
(
clk: in std_logic;
rst: in std_logic;
led: out std_logic_vector(7 downto 0);
uart_rx: in std_logic;
uart_tx: out std_logic;
pdmout0_pin: out std_logic
);
end dsp;
architecture rtl of dsp is
component cpu is port
(
clk: in std_logic;
rst: in std_logic;
code_data: in std_logic_vector(15 downto 0);
code_addr: out std_logic_vector(15 downto 0);
mem_in: in std_logic_vector(15 downto 0);
mem_out: out std_logic_vector(15 downto 0);
mem_addr: out std_logic_vector(15 downto 0);
mem_write: out std_logic;
mem_read: out std_logic;
mem_busy: in std_logic
);
end component;
component ram is
generic
(
addressWidth : in positive := 16;
busWidth : in positive := 16;
size : in positive := 1024
);
port
(
clk : in std_logic;
address : in std_logic_vector(addressWidth - 1 downto 0);
writeEnable : in std_logic;
dataIn : in std_logic_vector(busWidth - 1 downto 0);
dataOut : out std_logic_vector(busWidth - 1 downto 0)
);
end component;
component boot_rom is port
(
clk: in std_logic;
code_addr : in std_logic_vector(15 downto 0);
code_out : out std_logic_vector(15 downto 0);
data_addr : in std_logic_vector(15 downto 0);
data_out : out std_logic_vector(15 downto 0)
);
end component;
component uart is
port
(
clk : in std_logic;
rst : in std_logic;
-- hardware
rx_pin : in std_logic;
tx_pin : out std_logic;
-- bus interface
we : in std_logic;
re : in std_logic;
addr : in std_logic_vector(15 downto 0);
din : in std_logic_vector(15 downto 0);
dout : out std_logic_vector(15 downto 0)
);
end component;
component sysbus is
port
(
clk: in std_logic;
rst: in std_logic;
-- master port 0
m0_addr: in std_logic_vector(15 downto 0);
m0_wdata: in std_logic_vector(15 downto 0);
m0_rdata: out std_logic_vector(15 downto 0);
m0_re: in std_logic;
m0_we: in std_logic;
m0_busy: out std_logic;
-- master port 1
m1_addr: in std_logic_vector(15 downto 0);
m1_wdata: in std_logic_vector(15 downto 0);
m1_rdata: out std_logic_vector(15 downto 0);
m1_re: in std_logic;
m1_we: in std_logic;
m1_busy: out std_logic;
-- actual bus
bus_addr: out std_logic_vector(15 downto 0);
bus_wdata: out std_logic_vector(15 downto 0);
bus_rdata: in std_logic_vector(15 downto 0);
bus_re: out std_logic;
bus_we: out std_logic
);
end component;
component pdmout is
port
(
clk : in std_logic;
rst : in std_logic;
-- hardware
out_pin : out std_logic;
-- bus interface
we : in std_logic;
addr : in std_logic_vector(15 downto 0);
din : in std_logic_vector(15 downto 0)
);
end component;
component square is
port
(
clk : in std_logic;
rst : in std_logic;
-- bus slave interface
s_we : in std_logic;
s_addr : in std_logic_vector(15 downto 0);
s_din : in std_logic_vector(15 downto 0);
-- bus master interface (DMA!!)
m_busy : in std_logic;
m_we : out std_logic;
m_addr : out std_logic_vector(15 downto 0);
m_dout : out std_logic_vector(15 downto 0)
);
end component;
signal mem_write : std_logic;
signal rom_code_addr, rom_code_out, mem_in, mem_out, mem_addr: std_logic_vector(15 downto 0);
signal rom_data_addr, rom_data_out: std_logic_vector(15 downto 0);
signal uart_din, uart_dout, uart_addr: std_logic_vector(15 downto 0);
signal uart_we, uart_re: std_logic;
signal cpu_write, cpu_read, cpu_busy: std_logic;
signal cpu_mosi, cpu_miso, cpu_addr: std_logic_vector(15 downto 0);
signal square_write, square_busy: std_logic;
signal square_mosi, square_addr: std_logic_vector(15 downto 0);
signal square0_s_din, square0_s_addr: std_logic_vector(15 downto 0);
signal square0_s_we : std_logic;
signal pdmout0_din, pdmout0_addr: std_logic_vector(15 downto 0);
signal pdmout0_we : std_logic;
signal bus_write, bus_read: std_logic;
signal bus_mosi, bus_miso, bus_addr: std_logic_vector(15 downto 0);
signal led_r, led_next: std_logic_vector(7 downto 0);
begin
cpu0: cpu port map(clk => clk, rst => rst,
code_data => rom_code_out, code_addr => rom_code_addr,
mem_in => cpu_miso, mem_out => cpu_mosi, mem_addr => cpu_addr,
mem_write => cpu_write, mem_read => cpu_read, mem_busy => cpu_busy);
rom: boot_rom port map(clk => clk, code_addr => rom_code_addr, code_out => rom_code_out,
data_addr => rom_data_addr, data_out => rom_data_out);
mem: ram port map(clk => clk, address => mem_addr, writeEnable => mem_write,
dataIn => mem_in, dataOut => mem_out);
uart0: uart port map(clk => clk, rst => rst, rx_pin => uart_rx, tx_pin => uart_tx,
addr => uart_addr, din => uart_din, dout => uart_dout,
re => uart_re, we => uart_we);
square0: square port map(clk => clk, rst => rst,
s_we => square0_s_we, s_addr => square0_s_addr, s_din => square0_s_din,
m_busy => square_busy, m_we => square_write,
m_addr => square_addr, m_dout => square_mosi);
pdmout0: pdmout port map(clk => clk, rst => rst,
out_pin => pdmout0_pin,
we => pdmout0_we, addr => pdmout0_addr, din => pdmout0_din);
main_bus: sysbus port map(clk => clk, rst => rst,
m0_addr => cpu_addr, m0_wdata => cpu_mosi, m0_rdata => cpu_miso,
m0_re => cpu_read, m0_we => cpu_write, m0_busy => cpu_busy,
m1_addr => square_addr, m1_wdata => square_mosi, m1_rdata => open,
m1_re => '0', m1_we => square_write, m1_busy => square_busy,
bus_addr => bus_addr, bus_wdata => bus_mosi, bus_rdata => bus_miso,
bus_re => bus_read, bus_we => bus_write
);
-- system map
-- 0x0000 - 0x0fff ROM
-- 0x1000 - 0x1fff RAM
-- 0xc000 - 0xc00f LED0
-- 0xc010 - 0xc01f UART0
-- 0xc020 - 0xc02f PDMOUT0
-- 0xc030 - 0xc03f SQUARE0
led <= led_r;
process(clk, rst)
begin
if rising_edge(clk) then
led_r <= led_next;
end if;
if rst = '1' then
led_r <= x"00";
end if;
end process;
process(bus_addr, bus_mosi, bus_write, mem_out, rst, rom_data_out, led_r, bus_read, uart_dout)
begin
bus_miso <= x"0000";
rom_data_addr <= bus_addr and x"0fff";
mem_addr <= bus_addr and x"0fff";
mem_in <= bus_mosi;
mem_write <= '0';
led_next <= led_r;
uart_din <= bus_mosi;
uart_addr <= bus_addr and x"000f";
uart_we <= '0';
uart_re <= '0';
pdmout0_we <= '0';
pdmout0_addr <= bus_addr and x"000f";
pdmout0_din <= bus_mosi;
square0_s_we <= '0';
square0_s_addr <= bus_addr and x"000f";
square0_s_din <= bus_mosi;
case bus_addr(15 downto 12) is
when x"0" =>
bus_miso <= rom_data_out;
when x"1" =>
bus_miso <= mem_out;
mem_write <= bus_write;
when x"c" =>
case bus_addr(7 downto 4) is
when x"0" => -- LED
if bus_write = '1' then
led_next <= bus_mosi(7 downto 0);
end if;
when x"1" => -- UART0
bus_miso <= uart_dout;
uart_we <= bus_write;
uart_re <= bus_read;
when x"2" => -- PDMOUT0
pdmout0_we <= bus_write;
when x"3" => -- SQUARE0
square0_s_we <= bus_write;
when others =>
end case;
when others =>
end case;
end process;
end rtl;