Compare commits
6 Commits
8cf103a18d
...
b8f273c9b6
Author | SHA1 | Date | |
---|---|---|---|
b8f273c9b6 | |||
9487f5c2ef | |||
f21122c54b | |||
0943656548 | |||
4ca35ca18c | |||
539d2e0908 |
@ -46,6 +46,7 @@ $(BUILD_DIR)/netlist-post-synthesis.json: $(VU_FLAG) $(SOURCES_VERILOG)
|
||||
# Collect GHDL sources from VUnit
|
||||
$(eval GHDLINCDIRS=$(shell find "$(VU_DIR)/ghdl/libraries" -maxdepth 1 -mindepth 1 -type d | sed "s/^/-P/" | tr '\n' ' '))
|
||||
yosys -m ghdl -p "read_verilog $(SOURCES_VERILOG); ghdl --std=08 $(GHDLINCDIRS) design.top; synth_ice40 -abc9 -device $(YOSYS_DEVICE) -top top -json $@"
|
||||
./patch_asserts.sh $@
|
||||
|
||||
$(BUILD_DIR)/netlist-post-pnr.asc: $(BUILD_DIR)/netlist-post-synthesis.json $(CONSTRAINTS)
|
||||
nextpnr-ice40 --$(DEVICE) --package $(PACKAGE) --asc $(BUILD_DIR)/netlist-post-pnr.asc --report $(BUILD_DIR)/report.json --detailed-timing-report --json $(BUILD_DIR)/netlist-post-synthesis.json --pcf $(CONSTRAINTS)
|
||||
|
181
fpga/hdl/bench/bench_top_zephyr.vhd
Normal file
181
fpga/hdl/bench/bench_top_zephyr.vhd
Normal file
@ -0,0 +1,181 @@
|
||||
-- -------------------------------------------------------------------------- --
|
||||
-- TRASHERNET SoC - A Trashy Ethernet SoC for FPGAs --
|
||||
-- -------------------------------------------------------------------------- --
|
||||
-- Inspection-only test bench to run a larger memory image from external RAM.
|
||||
-- -------------------------------------------------------------------------- --
|
||||
-- Author : Markus Koch <markus@notsyncing.net>
|
||||
-- Contributors : None
|
||||
-- License : Mozilla Public License (MPL) Version 2
|
||||
-- -------------------------------------------------------------------------- --
|
||||
|
||||
library ieee;
|
||||
use ieee.std_logic_1164.all;
|
||||
use ieee.numeric_std.all;
|
||||
use std.textio.all;
|
||||
|
||||
library design;
|
||||
use design.all;
|
||||
|
||||
library generics;
|
||||
use generics.wishbone_pkg.all;
|
||||
|
||||
library device_models;
|
||||
use device_models.all;
|
||||
|
||||
library vunit_lib;
|
||||
context vunit_lib.vunit_context;
|
||||
|
||||
library osvvm;
|
||||
context osvvm.osvvmContext;
|
||||
use osvvm.ScoreboardPkg_slv.all;
|
||||
|
||||
entity bench_top_zephyr is
|
||||
generic(
|
||||
runner_cfg : string := runner_cfg_default
|
||||
);
|
||||
end entity bench_top_zephyr;
|
||||
|
||||
architecture RTL of bench_top_zephyr is
|
||||
constant UART_BAUD : integer := 250000;
|
||||
signal clk_in : std_logic;
|
||||
signal uart_tx : std_logic;
|
||||
signal uart_rx : std_logic;
|
||||
signal eth_rx_p : std_logic;
|
||||
signal eth_tx_p : std_logic_vector(3 downto 0);
|
||||
signal eth_tx_n : std_logic_vector(3 downto 0);
|
||||
signal eth_led_green_n : std_logic;
|
||||
signal eth_led_orange_n : std_logic;
|
||||
signal led_user : std_logic;
|
||||
signal psram_ce_n : std_logic;
|
||||
signal psram_sclk : std_logic;
|
||||
signal psram_sio : std_logic_vector(3 downto 0);
|
||||
signal flash_ce_n : std_logic;
|
||||
signal flash_sclk : std_logic;
|
||||
signal flash_sio : std_logic_vector(3 downto 0);
|
||||
signal pmod : std_logic_vector(7 downto 0);
|
||||
|
||||
begin
|
||||
top_inst : entity design.top
|
||||
generic map(
|
||||
F_IN => 50000000,
|
||||
F_CLK => 25000000,
|
||||
F_CLK_PHY => 50000000,
|
||||
UART_BAUD => UART_BAUD,
|
||||
CPU => "neorv32"
|
||||
)
|
||||
port map(
|
||||
clk_in => clk_in,
|
||||
uart_tx => uart_tx,
|
||||
uart_rx => uart_rx,
|
||||
eth_rx_p => eth_rx_p,
|
||||
eth_tx_p => eth_tx_p,
|
||||
eth_tx_n => eth_tx_n,
|
||||
eth_led_green_n => eth_led_green_n,
|
||||
eth_led_orange_n => eth_led_orange_n,
|
||||
led_user => led_user,
|
||||
psram_ce_n => psram_ce_n,
|
||||
psram_sclk => psram_sclk,
|
||||
psram_sio => psram_sio,
|
||||
flash_ce_n => flash_ce_n,
|
||||
flash_sclk => flash_sclk,
|
||||
flash_sio => flash_sio,
|
||||
pmod => pmod
|
||||
);
|
||||
|
||||
aps6404l_inst : entity device_models.aps6404l
|
||||
generic map(
|
||||
SIZE => 8 * 1024 * 1024,
|
||||
--MEMFILE => "../sw/demo/decrypt-1.vhex",
|
||||
LOG_EN => false
|
||||
)
|
||||
port map(
|
||||
ce_n => psram_ce_n,
|
||||
sclk => psram_sclk,
|
||||
sio => psram_sio
|
||||
);
|
||||
|
||||
uart_decoder : process is
|
||||
constant DELAY : time := (1 sec / UART_BAUD);
|
||||
variable d : std_logic_vector(7 downto 0);
|
||||
variable print_time : boolean := true;
|
||||
procedure print(text : character) is
|
||||
variable lb : line;
|
||||
begin
|
||||
write(lb, text);
|
||||
write(output, lb.all);
|
||||
flush(output);
|
||||
end procedure print;
|
||||
begin
|
||||
wait until falling_edge(uart_tx);
|
||||
wait for 0.5 * DELAY;
|
||||
for i in 0 to 7 loop
|
||||
wait for DELAY;
|
||||
d(i) := uart_tx;
|
||||
end loop;
|
||||
wait for 1.0 * DELAY;
|
||||
if print_time then
|
||||
write(output, "{" & time'image(now) & "} ");
|
||||
print_time := false;
|
||||
end if;
|
||||
print(character'val(to_integer(unsigned(d))));
|
||||
if character'val(to_integer(unsigned(d))) = LF then
|
||||
print_time := true;
|
||||
end if;
|
||||
--report "UART RX: " & character'val(to_integer(unsigned(d)));
|
||||
end process uart_decoder;
|
||||
|
||||
test : process is
|
||||
procedure uart_tx(d : std_logic_vector(7 downto 0)) is
|
||||
constant DELAY : time := (1 sec / UART_BAUD);
|
||||
begin
|
||||
uart_rx <= '0';
|
||||
wait for DELAY;
|
||||
for i in d'low to d'high loop
|
||||
uart_rx <= d(i);
|
||||
wait for DELAY;
|
||||
end loop;
|
||||
uart_rx <= '1';
|
||||
wait for DELAY;
|
||||
end procedure uart_tx;
|
||||
|
||||
begin
|
||||
test_runner_setup(runner, runner_cfg);
|
||||
|
||||
report "Waiting for internal reset to be complete...";
|
||||
wait for 10 us;
|
||||
report "Starting tests...";
|
||||
|
||||
while test_suite loop
|
||||
if run("run_program") then
|
||||
uart_rx <= '1';
|
||||
wait for (1 sec / UART_BAUD) * 10;
|
||||
|
||||
report ("Jumping to external RAM...");
|
||||
-- JUMP
|
||||
uart_tx(x"03");
|
||||
|
||||
-- to RAM (+4, jalr zero)
|
||||
uart_tx(x"40");
|
||||
uart_tx(x"00");
|
||||
uart_tx(x"00");
|
||||
uart_tx(x"00");
|
||||
|
||||
report ("This is a manual test. Add wait statement here and watch the output...");
|
||||
wait for 0 ns;
|
||||
report ("Stopping test.");
|
||||
end if;
|
||||
end loop;
|
||||
test_runner_cleanup(runner);
|
||||
end process test;
|
||||
|
||||
test_runner_watchdog(runner, 1000 ms);
|
||||
|
||||
clock_driver : process
|
||||
constant period : time := 20 ns;
|
||||
begin
|
||||
clk_in <= '0';
|
||||
wait for period / 2;
|
||||
clk_in <= '1';
|
||||
wait for period - (period / 2);
|
||||
end process clock_driver;
|
||||
end architecture RTL;
|
@ -237,10 +237,10 @@ begin
|
||||
|
||||
servant_rom_vhdl_inst : entity work.servant_ram_vhdl
|
||||
generic map(
|
||||
memfile => "../sw/bootrom/bootrom.vhex",
|
||||
read_only => true,
|
||||
adr_width => 9,
|
||||
force_vlog => not in_simulation -- GHDL + Yosys doesn't keep the memfile
|
||||
memfile => "../sw/bootrom/bootrom.vhex",
|
||||
read_only => true,
|
||||
adr_width => 9,
|
||||
force_vlog => not in_simulation -- GHDL + Yosys doesn't keep the memfile
|
||||
)
|
||||
port map(
|
||||
clk => clk,
|
||||
|
@ -16,7 +16,9 @@ use std.textio.all;
|
||||
|
||||
entity aps6404l is
|
||||
generic(
|
||||
LOG_EN : boolean := true
|
||||
SIZE : natural := 1024;
|
||||
LOG_EN : boolean := true;
|
||||
MEMFILE : string := ""
|
||||
);
|
||||
port(
|
||||
ce_n : in std_logic;
|
||||
@ -41,7 +43,24 @@ begin
|
||||
test : process is
|
||||
type rx_state_t is (COMMAND, READ, WRITE, COMPLETE);
|
||||
type byte_vector is array (natural range <>) of std_logic_vector(7 downto 0);
|
||||
variable mem : byte_vector(0 to 1023);
|
||||
subtype mem_t is byte_vector(0 to SIZE - 1);
|
||||
impure function init_ram_hex return mem_t is
|
||||
file text_file : text;
|
||||
variable text_line : line;
|
||||
variable ram_content : mem_t := (others => x"5A");
|
||||
begin
|
||||
if MEMFILE /= "" then
|
||||
file_open(text_file, MEMFILE, read_mode);
|
||||
for i in 0 to SIZE - 1 loop
|
||||
exit when endfile(text_file);
|
||||
readline(text_file, text_line);
|
||||
hread(text_line, ram_content(i));
|
||||
end loop;
|
||||
end if;
|
||||
|
||||
return ram_content;
|
||||
end function;
|
||||
variable mem : mem_t := init_ram_hex;
|
||||
variable bytes : byte_vector(0 to 32);
|
||||
variable cnt, bytecnt : integer;
|
||||
variable state : rx_state_t;
|
||||
@ -111,8 +130,13 @@ begin
|
||||
print(" Addr: " & to_hstring(bytes(1)) & to_hstring(bytes(2)) & to_hstring(bytes(3)));
|
||||
addr := to_integer(unsigned(std_logic_vector'(bytes(1), bytes(2), bytes(3))));
|
||||
elsif bytecnt > 4 then
|
||||
dout := mem(addr);
|
||||
print(" Read " & integer'image(addr) & ": " & to_hstring(mem(addr)));
|
||||
if addr < SIZE then
|
||||
dout := mem(addr);
|
||||
print(" Read " & integer'image(addr) & ": " & to_hstring(mem(addr)));
|
||||
else
|
||||
dout := (others => 'X');
|
||||
print(" Read " & integer'image(addr) & ": OUT-OF-BOUNDS");
|
||||
end if;
|
||||
addr := addr + 1;
|
||||
end if;
|
||||
|
||||
@ -122,8 +146,12 @@ begin
|
||||
addr := to_integer(unsigned(std_logic_vector'(bytes(1), bytes(2), bytes(3))));
|
||||
elsif bytecnt > 3 then
|
||||
print(" Write " & integer'image(addr) & ": " & to_hstring(bytes(bytecnt)));
|
||||
mem(addr) := bytes(bytecnt);
|
||||
addr := addr + 1;
|
||||
if (addr < SIZE) then
|
||||
mem(addr) := bytes(bytecnt);
|
||||
else
|
||||
print(" Error: OUT OF BOUNDS access! Ignoring write.");
|
||||
end if;
|
||||
addr := addr + 1;
|
||||
end if;
|
||||
|
||||
when COMPLETE =>
|
||||
|
14
fpga/patch_asserts.sh
Executable file
14
fpga/patch_asserts.sh
Executable file
@ -0,0 +1,14 @@
|
||||
#!/bin/bash
|
||||
|
||||
file="$1"
|
||||
echo "Removing \$assert from $file..."
|
||||
|
||||
LOCS=`grep -n '$assert' "$file" | sed 's/:.*//g'`
|
||||
|
||||
IFS=$'\n'
|
||||
for LOC in $LOCS; do
|
||||
START=$(($LOC-2))
|
||||
END=$(($LOC+14))
|
||||
echo "Deleting lines $START -> $END"
|
||||
sed -i -e "${START},${END}d" "$file"
|
||||
done
|
@ -57,6 +57,7 @@ if not "osvvm" in libs:
|
||||
vu.add_compile_option("ghdl.a_flags", ["-frelaxed", "-fsynopsys"])
|
||||
vu.add_compile_option("nvc.a_flags", ["--relaxed"])
|
||||
#vu.set_sim_option("nvc.elab_flags", ["-O3"])
|
||||
vu.set_sim_option("nvc.sim_flags", ["--format=fst", "--wave=wave.fst"])
|
||||
vu.set_sim_option("nvc.heap_size", "256M")
|
||||
vu.set_sim_option("nvc.sim_flags", ["--format=fst", "--wave=wave.fst", "--dump-arrays"])
|
||||
|
||||
vu.main()
|
||||
|
Loading…
Reference in New Issue
Block a user