--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
---- ----
|
--
|
---- Ethernet Switch on Configurable Logic IP Core ----
|
-- This VHDL file was generated by EASE/HDL 7.4 Revision 4 from HDL Works B.V.
|
---- ----
|
--
|
---- This file is part of the ESoCL project ----
|
-- Ease library : work
|
---- http://www.opencores.org/cores/esoc/ ----
|
-- HDL library : work
|
---- ----
|
-- Host name : S212065
|
---- Description: see design description ESoCL_dd_71022001.pdf ----
|
-- User name : df768
|
---- ----
|
-- Time stamp : Tue Aug 19 08:05:18 2014
|
---- To Do: see roadmap description ESoCL_dd_71022001.pdf ----
|
--
|
---- and/or release bulleting ESoCL_rb_71022001.pdf ----
|
-- Designed by : L.Maarsen
|
---- ----
|
-- Company : LogiXA
|
---- Author(s): L.Maarsen ----
|
-- Project info : eSoC
|
---- Bert Maarsen, lmaarsen@opencores.org ----
|
--
|
---- ----
|
|
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
---- ----
|
|
---- Copyright (C) 2009 Authors and OPENCORES.ORG ----
|
|
---- ----
|
|
---- This source file may be used and distributed without ----
|
|
---- restriction provided that this copyright statement is not ----
|
|
---- removed from the file and that any derivative work contains ----
|
|
---- the original copyright notice and the associated disclaimer. ----
|
|
---- ----
|
|
---- This source file is free software; you can redistribute it ----
|
|
---- and/or modify it under the terms of the GNU Lesser General ----
|
|
---- Public License as published by the Free Software Foundation; ----
|
|
---- either version 2.1 of the License, or (at your option) any ----
|
|
---- later version. ----
|
|
---- ----
|
|
---- This source is distributed in the hope that it will be ----
|
|
---- useful, but WITHOUT ANY WARRANTY; without even the implied ----
|
|
---- warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR ----
|
|
---- PURPOSE. See the GNU Lesser General Public License for more ----
|
|
---- details. ----
|
|
---- ----
|
|
---- You should have received a copy of the GNU Lesser General ----
|
|
---- Public License along with this source; if not, download it ----
|
|
---- from http://www.opencores.org/lgpl.shtml ----
|
|
---- ----
|
|
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
-- Object : Entity work.esoc_reset
|
-- Object : Entity work.esoc_reset
|
-- Last modified : Mon Apr 14 12:49:49 2014.
|
-- Last modified : Mon Apr 14 12:49:49 2014.
|
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
|
|
|
|
|
|
library ieee, std, work;
|
library ieee, std, work;
|
use ieee.std_logic_1164.all;
|
use ieee.std_logic_1164.all;
|
use std.textio.all;
|
use std.textio.all;
|
use ieee.numeric_std.all;
|
use ieee.numeric_std.all;
|
use work.package_esoc_configuration.all;
|
use work.package_esoc_configuration.all;
|
|
|
entity esoc_reset is
|
entity esoc_reset is
|
port(
|
port(
|
clk_control : in std_logic;
|
clk_control : in std_logic;
|
esoc_areset : in std_logic;
|
esoc_areset : in std_logic;
|
pll1_locked : in STD_LOGIC;
|
pll1_locked : in STD_LOGIC;
|
pll2_locked : in STD_LOGIC;
|
pll2_locked : in STD_LOGIC;
|
reset : out std_logic);
|
reset : out std_logic);
|
end entity esoc_reset;
|
end entity esoc_reset;
|
|
|
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
-- Object : Architecture work.esoc_reset.esoc_reset
|
-- Object : Architecture work.esoc_reset.esoc_reset
|
-- Last modified : Mon Apr 14 12:49:49 2014.
|
-- Last modified : Mon Apr 14 12:49:49 2014.
|
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
|
|
|
|
---------------------------------------------------------------------------------------------------------------
|
---------------------------------------------------------------------------------------------------------------
|
-- architecture and declarations
|
-- architecture and declarations
|
---------------------------------------------------------------------------------------------------------------
|
---------------------------------------------------------------------------------------------------------------
|
architecture esoc_reset of esoc_reset is
|
architecture esoc_reset of esoc_reset is
|
|
|
---------------------------------------------------------------------------------------------------------------
|
---------------------------------------------------------------------------------------------------------------
|
-- signals
|
-- signals
|
---------------------------------------------------------------------------------------------------------------
|
---------------------------------------------------------------------------------------------------------------
|
signal esoc_areset_sync : std_logic_vector(1 downto 0);
|
signal esoc_areset_sync : std_logic_vector(1 downto 0);
|
|
|
begin
|
begin
|
|
|
--=============================================================================================================
|
--=============================================================================================================
|
-- Process : synchronise asynchronous reset input plus filtering
|
-- Process : synchronise asynchronous reset input plus filtering
|
-- Description :
|
-- Description :
|
--=============================================================================================================
|
--=============================================================================================================
|
sync: process(clk_control,pll1_locked,pll2_locked)
|
sync: process(clk_control,pll1_locked,pll2_locked)
|
begin
|
begin
|
-- keep device in reset if pll's not locked
|
-- keep device in reset if pll's not locked
|
if pll1_locked = '0' or pll2_locked = '0' then
|
if pll1_locked = '0' or pll2_locked = '0' then
|
esoc_areset_sync <= (others => '1');
|
esoc_areset_sync <= (others => '1');
|
|
|
-- synchronise external reset
|
-- synchronise external reset
|
elsif clk_control'event and clk_control = '1' then
|
elsif clk_control'event and clk_control = '1' then
|
esoc_areset_sync <= esoc_areset & esoc_areset_sync(esoc_areset_sync'high downto 1);
|
esoc_areset_sync <= esoc_areset & esoc_areset_sync(esoc_areset_sync'high downto 1);
|
|
|
end if;
|
end if;
|
end process;
|
end process;
|
|
|
reset <= esoc_areset_sync(0);
|
reset <= esoc_areset_sync(0);
|
|
|
end architecture esoc_reset ; -- of esoc_reset
|
end architecture esoc_reset ; -- of esoc_reset
|
|
|
|
|