RESET : in std_logic;
DO_REBOOT : in std_logic;
REBOOT_ON_RESET : in std_logic := '0';
+ PREPARE_FOR_RELOAD : out std_logic;
PROGRAMN : out std_logic := '1'
);
end entity;
restart_fpga_counter <= x"000";
else
delayed_restart_fpga <= '0';
+ PREPARE_FOR_RELOAD <= '0';
if DO_REBOOT = '1' then
restart_fpga_counter <= x"001";
elsif restart_fpga_counter /= x"000" then
restart_fpga_counter <= restart_fpga_counter + 1;
+ if restart_fpga_counter >= x"800" then
+ PREPARE_FOR_RELOAD <= '1';
+ end if;
if restart_fpga_counter >= x"F00" then
delayed_restart_fpga <= '1';
end if;
DO_REBOOT_IN : in std_logic;
REBOOT_ON_RESET : in std_logic := '0';
- PROGRAMN : out std_logic;
-
+ PROGRAMN : out std_logic;
+ PREPARE_FOR_RELOAD : out std_logic;
+
SPI_CS_OUT : out std_logic;
SPI_SCK_OUT : out std_logic;
SPI_SDO_OUT : out std_logic;
RESET => RESET_IN,
DO_REBOOT => DO_REBOOT_IN,
REBOOT_ON_RESET => REBOOT_ON_RESET,
+ PREPARE_FOR_RELOAD => PREPARE_FOR_RELOAD,
PROGRAMN => PROGRAMN
);