-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #220 from slaclab/pre-release
v1.8.3 release candidate
- Loading branch information
Showing
52 changed files
with
4,143 additions
and
2,007 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
------------------------------------------------------------------------------- | ||
-- File : RstPipelineVector.vhd | ||
-- Company : SLAC National Accelerator Laboratory | ||
-- Created : 2018-05-03 | ||
-- Last update: 2018-05-03 | ||
------------------------------------------------------------------------------- | ||
-- Description: Wrapper for multiple RstPipeline modules | ||
------------------------------------------------------------------------------- | ||
-- This file is part of 'SLAC Firmware Standard Library'. | ||
-- It is subject to the license terms in the LICENSE.txt file found in the | ||
-- top-level directory of this distribution and at: | ||
-- https://confluence.slac.stanford.edu/display/ppareg/LICENSE.html. | ||
-- No part of 'SLAC Firmware Standard Library', including this file, | ||
-- may be copied, modified, propagated, or distributed except according to | ||
-- the terms contained in the LICENSE.txt file. | ||
------------------------------------------------------------------------------- | ||
|
||
library ieee; | ||
use ieee.std_logic_1164.all; | ||
|
||
use work.StdRtlPkg.all; | ||
|
||
entity RstPipelineVector is | ||
generic ( | ||
TPD_G : time := 1 ns; | ||
INV_RST_G : boolean := false; | ||
PIPE_STAGES_G : positive := 3; | ||
MAX_FANOUT_G : positive := 16384; | ||
INIT_G : slv := "1"; | ||
WIDTH_G : positive := 16); | ||
port ( | ||
clk : in sl; | ||
rstIn : in slv(WIDTH_G-1 downto 0); | ||
rstOut : out slv(WIDTH_G-1 downto 0)); | ||
end RstPipelineVector; | ||
|
||
architecture mapping of RstPipelineVector is | ||
|
||
begin | ||
|
||
GEN_VEC : | ||
for i in (WIDTH_G-1) downto 0 generate | ||
|
||
U_RstPipeline : entity work.RstPipeline | ||
generic map ( | ||
TPD_G => TPD_G, | ||
INV_RST_G => INV_RST_G, | ||
PIPE_STAGES_G => PIPE_STAGES_G, | ||
MAX_FANOUT_G => MAX_FANOUT_G, | ||
INIT_G => INIT_G) | ||
port map ( | ||
clk => clk, | ||
rstIn => rstIn(i), | ||
rstOut => rstOut(i)); | ||
|
||
end generate GEN_VEC; | ||
|
||
end architecture mapping; |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.