diff options
author | Martin <hackfin@section5.ch> | 2020-02-14 20:15:22 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-14 20:15:22 +0100 |
commit | 27b14ac284407755a31aa644219948102730f179 (patch) | |
tree | 4b2f696cd4cd104705383467cb27fb711afcf2fd | |
parent | fe9f2c4eb258f9e4e20a60742750698b09c9ed4b (diff) | |
download | ghdl-yosys-plugin-27b14ac284407755a31aa644219948102730f179.tar.gz ghdl-yosys-plugin-27b14ac284407755a31aa644219948102730f179.tar.bz2 ghdl-yosys-plugin-27b14ac284407755a31aa644219948102730f179.zip |
Added ECP5 example for Lattice versa devkit (#85)
- LED blinky
- Added support for vendor primitives
- Workarounds in Verilog for BRAM and primitive wrapping
- Docker support Makefiles
- openocd support files
29 files changed, 6692 insertions, 0 deletions
diff --git a/examples/docker.mk b/examples/docker.mk new file mode 100644 index 0000000..dd9acc2 --- /dev/null +++ b/examples/docker.mk @@ -0,0 +1,17 @@ +# Use Docker images +DOCKER=docker +#DOCKER=podman +# +PWD = $(shell pwd) +DOCKERARGS = run --rm -v $(PWD)/../..:/src \ + -w /src/examples/$(notdir $(PWD)) + + +GHDL = $(DOCKER) $(DOCKERARGS) ghdl/synth:beta ghdl +GHDLSYNTH = ghdl +YOSYS = $(DOCKER) $(DOCKERARGS) ghdl/synth:beta yosys +NEXTPNR = $(DOCKER) $(DOCKERARGS) ghdl/synth:nextpnr-ecp5 nextpnr-ecp5 +ECPPACK = $(DOCKER) $(DOCKERARGS) ghdl/synth:trellis ecppack +OPENOCD = $(DOCKER) $(DOCKERARGS) --device /dev/bus/usb ghdl/synth:prog openocd + + diff --git a/examples/ecp5_versa/Makefile b/examples/ecp5_versa/Makefile new file mode 100644 index 0000000..6031055 --- /dev/null +++ b/examples/ecp5_versa/Makefile @@ -0,0 +1,52 @@ +LIB = ../../library + +GHDL ?= ghdl + +GHDL_FLAGS = -Plib + +CLK_FREQ = 25000000 + +GHDL_GENERICS=-gCLK_FREQUENCY=$(CLK_FREQ) +LPF = versa_ecp5.lpf +PACKAGE = CABGA381 +NEXTPNR_FLAGS = --um5g-45k --freq 100 +NEXTPNR_FLAGS += --lpf-allow-unconstrained +OPENOCD_JTAG_CONFIG = ../../openocd/ecp5-versa.cfg +OPENOCD_DEVICE_CONFIG = ../../openocd/LFE5UM5G-45F.cfg + +WORKDIR = work +# Files to synthesize: +VHDL_SYN_FILES = versa_ecp5_top.vhdl pll_mac.vhd +VHDL_SYN_FILES += soc_iomap_pkg.vhdl +VHDL_SYN_FILES += uart.vhdl uart_tx.vhdl uart_rx.vhdl fifobuf.vhdl + +TOPLEVEL = versa_ecp5_top +TOPLEVEL_PARAMETER = _$(CLK_FREQ) + +VERILOG_FILES = $(LIB)/wrapper/primitives.v +VERILOG_FILES += $(LIB)/wrapper/wrapper.v +VERILOG_FILES += $(LIB)/wrapper/bram.v + +SVFFILE = versa_ecp5_top.svf +DEPENDENCIES = lib/ecp5um-std93.cf + +all: $(SVFFILE) + +include ../docker.mk +include ../ghdlsynth.mk + +lib: + mkdir $@ + +lib/ecp5um-std93.cf: $(LIB)/ecp5u/components.vhdl | lib + $(GHDL) -i --workdir=$(dir $@) --work=ecp5um \ + $< + +pll_mac.vhd: $(DEPENDENCIES) + +prog: $(SVFFILE) + $(OPENOCD) -f $(OPENOCD_JTAG_CONFIG) -f $(OPENOCD_DEVICE_CONFIG) \ + -c "transport select jtag; init; svf $<; exit" + +clean: + rm -fr lib work *.json *.svf *.config *-report.txt diff --git a/examples/ecp5_versa/fifobuf.vhdl b/examples/ecp5_versa/fifobuf.vhdl new file mode 100644 index 0000000..4981c1d --- /dev/null +++ b/examples/ecp5_versa/fifobuf.vhdl @@ -0,0 +1,244 @@ +-- +-- Configureable bit size I/O FIFO buffer +-- +-- (c) 2010-2013, Martin Strubel <hackfin@section5.ch> +-- + +library ieee; +use ieee.std_logic_1164.all; +use ieee.numeric_std.all; + +entity FifoBuffer is + generic ( + ADDR_W : natural := 6; + DATA_W : natural := 16; + EXTRA_REGISTER : boolean := false; + SYN_RAMTYPE : string := "block_ram" + ); + port ( + -- Write enable + wren : in std_logic; + idata : in unsigned(DATA_W-1 downto 0); + iready : out std_logic; + -- Data stream output: + odata : out unsigned(DATA_W-1 downto 0); + oready : out std_logic; + rden : in std_logic; + err : out std_logic; + reset : in std_logic; + clk : in std_logic + ); +end entity FifoBuffer; + + +architecture behaviour of FifoBuffer is + constant FULL_COUNT : unsigned(ADDR_W-1 downto 0) := (others => '1'); + constant ZERO_COUNT : unsigned(ADDR_W-1 downto 0) := (others => '0'); + + constant INACTIVE_WRITE_PORT : + unsigned(DATA_W-1 downto 0) := (others => '0'); + signal iptr : unsigned(ADDR_W-1 downto 0) := ZERO_COUNT; + signal optr : unsigned(ADDR_W-1 downto 0) := ZERO_COUNT; + signal next_iptr : unsigned(ADDR_W-1 downto 0) := ZERO_COUNT; + signal next_optr : unsigned(ADDR_W-1 downto 0) := ZERO_COUNT; + signal over : std_logic := '0'; + + signal rdata : unsigned(DATA_W-1 downto 0); + + type state_t is (S_IDLE, S_READY, S_FULL, S_ERROR); + -- GHDLSYNTH_QUIRK + -- Needs this initialized, otherwise gets 'optimized away' + signal state : state_t := S_IDLE; + -- If we don't initialize, yosys feels like it wants to recode. + -- signal state : state_t; + + signal int_full : std_logic; -- Internal "full" flag + signal int_rden : std_logic; + signal int_rden_d : std_logic; + signal maybe_full : std_logic; + signal maybe_empty : std_logic; + + signal dready : std_logic; + + component bram_2psync is + generic ( + ADDR_W : natural := 6; + DATA_W : natural := 16; + SYN_RAMTYPE : string := "block_ram" + ); + port ( + -- Port A + a_we : in std_logic; + a_addr : in unsigned(ADDR_W-1 downto 0); + a_write : in unsigned(DATA_W-1 downto 0); + a_read : out unsigned(DATA_W-1 downto 0); + -- Port B + b_we : in std_logic; + b_addr : in unsigned(ADDR_W-1 downto 0); + b_write : in unsigned(DATA_W-1 downto 0); + b_read : out unsigned(DATA_W-1 downto 0); + clk : in std_logic + ); + end component bram_2psync; + +begin + +count: + process(clk) + begin + if rising_edge(clk) then + if reset = '1' then + optr <= ZERO_COUNT; + iptr <= ZERO_COUNT; + else + if wren = '1' then + iptr <= next_iptr; + end if; + if int_rden = '1' then + optr <= next_optr; + end if; + end if; + end if; + end process; + + next_iptr <= iptr + 1; + next_optr <= optr + 1; + + -- These are ambiguous signals, need evaluation of wren/rden! + maybe_full <= '1' when optr = next_iptr else '0'; + maybe_empty <= '1' when iptr = next_optr else '0'; + + dready <= '1' when state = S_READY or state = S_FULL else '0'; + +fsm: + process(clk) + begin + if rising_edge(clk) then + if reset = '1' then + state <= S_IDLE; + else + case state is + when S_IDLE => + if wren = '1' then + state <= S_READY; + else + state <= S_IDLE; + end if; + when S_READY => + if wren = '1' then + -- We're just getting full + if maybe_full = '1' and int_rden = '0' then + state <= S_FULL; + end if; + -- We're just getting empty + elsif maybe_empty = '1' and int_rden = '1' then + state <= S_IDLE; + end if; + -- All other conditions: Remain S_READY + when S_FULL => + if wren = '1' then + -- It is actually allowed to read and write + -- simultaneously while FULL. + if int_rden = '0' then + state <= S_ERROR; + else + state <= S_FULL; + end if; + elsif int_rden = '1' then + state <= S_READY; + else + state <= S_FULL; + end if; + when S_ERROR => + end case; + end if; + end if; + end process; + + over <= '1' when state = S_ERROR else '0'; + err <= over; + +ram: + bram_2psync + generic map ( ADDR_W => ADDR_W, DATA_W => DATA_W, + SYN_RAMTYPE => SYN_RAMTYPE) + port map ( + a_we => '0', + a_addr => optr, + a_write => INACTIVE_WRITE_PORT, + a_read => rdata, + b_we => wren, + b_addr => iptr, + b_write => idata, + b_read => open, + clk => clk + ); + + +-- This section appends a little pre-read unit to the FIFO +-- to allow higher speed on most architectures. + +gen_register: + if EXTRA_REGISTER generate + + int_rden <= (not int_full or rden) and dready; +preread: + process(clk) + begin + if rising_edge(clk) then + if reset = '1' then + int_full <= '0'; + elsif dready = '1' then + if int_full = '0' then + int_full <= '1'; + oready <= '1'; + end if; + elsif int_full = '1' then + if rden = '1' then + oready <= '0'; + int_full <= '0'; + else + oready <= '1'; + end if; + else + oready <= '0'; + end if; + + int_rden_d <= int_rden; + if int_rden_d = '1' then + odata <= rdata; + end if; + end if; + end process; + end generate; + + +gen_direct: + if not EXTRA_REGISTER generate + int_full <= '1' when state = S_FULL else '0'; + int_rden <= rden; + odata <= rdata; + oready <= dready; + end generate; + + iready <= not int_full; + + +-- synthesis translate_off + +-- Synplify barfs on this, we need to comment out the whole shlorm. + +errguard: + process(clk) + begin + if rising_edge(clk) then + if over = '1' then + assert false report "FIFO overrun in " & behaviour'path_name + severity failure; + end if; + end if; + end process; + +-- synthesis translate_on + +end behaviour; diff --git a/examples/ecp5_versa/libram.vhdl b/examples/ecp5_versa/libram.vhdl new file mode 100644 index 0000000..4307b38 --- /dev/null +++ b/examples/ecp5_versa/libram.vhdl @@ -0,0 +1,202 @@ +-- Common RAM library package +-- For MIPS specific RAM package: see pkg_ram. + +library IEEE; +use IEEE.std_logic_1164.all; +use IEEE.numeric_std.all; + +package ram is + + -- Unconstrained 16 bit RAM initialization type + type ram16_init_t is array(natural range <>) of + unsigned(15 downto 0); + + -- Unconstrained 32 bit RAM initialization type + type ram32_init_t is array(natural range <>) of + unsigned(31 downto 0); + + component DPRAM16_init is + generic ( + ADDR_W : natural := 6; + DATA_W : natural := 16; + INIT_DATA : ram16_init_t; + SYN_RAMTYPE : string := "block_ram" + ); + port ( + clk : in std_logic; + -- Port A + a_we : in std_logic; + a_addr : in unsigned(ADDR_W-1 downto 0); + a_write : in unsigned(DATA_W-1 downto 0); + a_read : out unsigned(DATA_W-1 downto 0); + -- Port B + b_we : in std_logic; + b_addr : in unsigned(ADDR_W-1 downto 0); + b_write : in unsigned(DATA_W-1 downto 0); + b_read : out unsigned(DATA_W-1 downto 0) + ); + end component DPRAM16_init; + + component DPRAM16_init_ce is + generic ( + ADDR_W : natural := 6; + DATA_W : natural := 16; + INIT_DATA : ram16_init_t; + SYN_RAMTYPE : string := "block_ram" + ); + port ( + clk : in std_logic; + -- Port A + a_ce : in std_logic; + a_we : in std_logic; + a_addr : in unsigned(ADDR_W-1 downto 0); + a_write : in unsigned(DATA_W-1 downto 0); + a_read : out unsigned(DATA_W-1 downto 0); + -- Port B + b_ce : in std_logic; + b_we : in std_logic; + b_addr : in unsigned(ADDR_W-1 downto 0); + b_write : in unsigned(DATA_W-1 downto 0); + b_read : out unsigned(DATA_W-1 downto 0) + ); + end component DPRAM16_init_ce; + + component DPRAM16_init_hex_ce is + generic ( + ADDR_W : natural := 6; + DATA_W : natural := 16; + INIT_DATA : string := "mem.hex"; + SYN_RAMTYPE : string := "block_ram" + ); + port ( + -- Port A + a_clk : in std_logic; + a_ce : in std_logic; + a_we : in std_logic; + a_addr : in unsigned(ADDR_W-1 downto 0); + a_write : in unsigned(DATA_W-1 downto 0); + a_read : out unsigned(DATA_W-1 downto 0); + -- Port B + b_clk : in std_logic; + b_ce : in std_logic; + b_we : in std_logic; + b_addr : in unsigned(ADDR_W-1 downto 0); + b_write : in unsigned(DATA_W-1 downto 0); + b_read : out unsigned(DATA_W-1 downto 0) + ); + end component DPRAM16_init_hex_ce; + + component DPRAM_init_hex is + generic ( + ADDR_W : natural := 6; + DATA_W : natural := 32; + INIT_DATA : string := "mem32.hex"; + SYN_RAMTYPE : string := "block_ram" + ); + port ( + clk : in std_logic; + -- Port A + a_ce : in std_logic; + a_we : in std_logic; + a_addr : in unsigned(ADDR_W-1 downto 0); + a_write : in unsigned(DATA_W-1 downto 0); + a_read : out unsigned(DATA_W-1 downto 0); + -- Port B + b_ce : in std_logic; + b_we : in std_logic; + b_addr : in unsigned(ADDR_W-1 downto 0); + b_write : in unsigned(DATA_W-1 downto 0); + b_read : out unsigned(DATA_W-1 downto 0) + ); + end component DPRAM_init_hex; + + + component DPRAM32_init is + generic ( + ADDR_W : natural := 6; + DATA_W : natural := 32; + INIT_DATA : ram32_init_t; + SYN_RAMTYPE : string := "block_ram" + ); + port ( + clk : in std_logic; + -- Port A + a_we : in std_logic; + a_addr : in unsigned(ADDR_W-1 downto 0); + a_write : in unsigned(DATA_W-1 downto 0); + a_read : out unsigned(DATA_W-1 downto 0); + -- Port B + b_we : in std_logic; + b_addr : in unsigned(ADDR_W-1 downto 0); + b_write : in unsigned(DATA_W-1 downto 0); + b_read : out unsigned(DATA_W-1 downto 0) + ); + end component DPRAM32_init; + + component DPRAM is + generic ( + ADDR_W : natural := 6; + DATA_W : natural := 16; + EN_BYPASS : boolean := false; + SYN_RAMTYPE : string := "block_ram" + ); + port ( + clk : in std_logic; + -- Port A + a_we : in std_logic; + a_addr : in unsigned(ADDR_W-1 downto 0); + a_write : in unsigned(DATA_W-1 downto 0); + a_read : out unsigned(DATA_W-1 downto 0); + -- Port B + b_we : in std_logic; + b_addr : in unsigned(ADDR_W-1 downto 0); + b_write : in unsigned(DATA_W-1 downto 0); + b_read : out unsigned(DATA_W-1 downto 0) + ); + end component DPRAM; + + component DPRAM_clk2 + generic( + ADDR_W : natural := 6; + DATA_W : natural := 16; + EN_BYPASS : boolean := true; + SYN_RAMTYPE : string := "block_ram" + ); + port( + a_clk : in std_logic; + -- Port A + a_we : in std_logic; + a_addr : in unsigned(ADDR_W-1 downto 0); + a_write : in unsigned(DATA_W-1 downto 0); + a_read : out unsigned(DATA_W-1 downto 0); + -- Port B + b_clk : in std_logic; + b_we : in std_logic; + b_addr : in unsigned(ADDR_W-1 downto 0); + b_write : in unsigned(DATA_W-1 downto 0); + b_read : out unsigned(DATA_W-1 downto 0) + ); + end component; + + component bram_2psync is + generic ( + ADDR_W : natural := 6; + DATA_W : natural := 16; + SYN_RAMTYPE : string := "block_ram" + ); + port ( + -- Port A + a_we : in std_logic; + a_addr : in unsigned(ADDR_W-1 downto 0); + a_write : in unsigned(DATA_W-1 downto 0); + a_read : out unsigned(DATA_W-1 downto 0); + -- Port B + b_we : in std_logic; + b_addr : in unsigned(ADDR_W-1 downto 0); + b_write : in unsigned(DATA_W-1 downto 0); + b_read : out unsigned(DATA_W-1 downto 0); + clk : in std_logic + ); + end component bram_2psync; + +end package; diff --git a/examples/ecp5_versa/pll_mac.vhd b/examples/ecp5_versa/pll_mac.vhd new file mode 100644 index 0000000..2d23cf7 --- /dev/null +++ b/examples/ecp5_versa/pll_mac.vhd @@ -0,0 +1,86 @@ +-- VHDL netlist generated by SCUBA Diamond (64-bit) 3.8.0.115.3 +-- Module Version: 5.7 +--/usr/local/diamond/3.8_x64/ispfpga/bin/lin64/scuba -w -n pll_mac -lang vhdl -synth synplify -bus_exp 7 -bb -arch sa5p00g -type pll -fin 100.00 -fclkop 125 -fclkop_tol 0.0 -fclkos 25 -fclkos_tol 0.0 -phases 0 -fclkos2 50 -fclkos2_tol 0.0 -phases2 0 -fclkos3 75 -fclkos3_tol 0.0 -phases3 0 -phase_cntl STATIC -lock -fb_mode 1 -fdc /home/strubi/src/masocist/syn/lattice/versaECP5G/ipcores/pll/pll_mac/pll_mac.fdc + +-- Wed May 10 17:35:30 2017 + +library IEEE; +use IEEE.std_logic_1164.all; +library ecp5um; +use ecp5um.components.all; + +entity pll_mac is + port ( + CLKI: in std_logic; + CLKOP: out std_logic; + CLKOS: out std_logic; + CLKOS2: out std_logic; + CLKOS3: out std_logic; + LOCK: out std_logic); +end pll_mac; + +architecture Structure of pll_mac is + + -- internal signal declarations + signal REFCLK: std_logic; + signal CLKOS3_t: std_logic; + signal CLKOS2_t: std_logic; + signal CLKOS_t: std_logic; + signal CLKOP_t: std_logic; + signal scuba_vhi: std_logic; + signal scuba_vlo: std_logic; + + attribute FREQUENCY_PIN_CLKOS3 : string; + attribute FREQUENCY_PIN_CLKOS2 : string; + attribute FREQUENCY_PIN_CLKOS : string; + attribute FREQUENCY_PIN_CLKOP : string; + attribute FREQUENCY_PIN_CLKI : string; + attribute ICP_CURRENT : string; + attribute LPF_RESISTOR : string; + attribute FREQUENCY_PIN_CLKOS3 of PLLInst_0 : label is "75.000000"; + attribute FREQUENCY_PIN_CLKOS2 of PLLInst_0 : label is "50.000000"; + attribute FREQUENCY_PIN_CLKOS of PLLInst_0 : label is "25.000000"; + attribute FREQUENCY_PIN_CLKOP of PLLInst_0 : label is "125.000000"; + attribute FREQUENCY_PIN_CLKI of PLLInst_0 : label is "100.000000"; + attribute ICP_CURRENT of PLLInst_0 : label is "7"; + attribute LPF_RESISTOR of PLLInst_0 : label is "16"; + attribute syn_keep : boolean; + attribute NGD_DRC_MASK : integer; + attribute NGD_DRC_MASK of Structure : architecture is 1; + +begin + -- component instantiation statements + scuba_vhi_inst: VHI + port map (Z=>scuba_vhi); + + scuba_vlo_inst: VLO + port map (Z=>scuba_vlo); + + PLLInst_0: EHXPLLL + generic map (PLLRST_ENA=> "DISABLED", INTFB_WAKE=> "DISABLED", + STDBY_ENABLE=> "DISABLED", DPHASE_SOURCE=> "DISABLED", + CLKOS3_FPHASE=> 0, CLKOS3_CPHASE=> 9, CLKOS2_FPHASE=> 0, + CLKOS2_CPHASE=> 14, CLKOS_FPHASE=> 0, CLKOS_CPHASE=> 29, + CLKOP_FPHASE=> 0, CLKOP_CPHASE=> 5, PLL_LOCK_MODE=> 0, + CLKOS_TRIM_DELAY=> 0, CLKOS_TRIM_POL=> "FALLING", + CLKOP_TRIM_DELAY=> 0, CLKOP_TRIM_POL=> "FALLING", + OUTDIVIDER_MUXD=> "DIVD", CLKOS3_ENABLE=> "ENABLED", + OUTDIVIDER_MUXC=> "DIVC", CLKOS2_ENABLE=> "ENABLED", + OUTDIVIDER_MUXB=> "DIVB", CLKOS_ENABLE=> "ENABLED", + OUTDIVIDER_MUXA=> "DIVA", CLKOP_ENABLE=> "ENABLED", CLKOS3_DIV=> 10, + CLKOS2_DIV=> 15, CLKOS_DIV=> 30, CLKOP_DIV=> 6, CLKFB_DIV=> 5, + CLKI_DIV=> 4, FEEDBK_PATH=> "CLKOP") + port map (CLKI=>CLKI, CLKFB=>CLKOP_t, PHASESEL1=>scuba_vlo, + PHASESEL0=>scuba_vlo, PHASEDIR=>scuba_vlo, + PHASESTEP=>scuba_vlo, PHASELOADREG=>scuba_vlo, + STDBY=>scuba_vlo, PLLWAKESYNC=>scuba_vlo, RST=>scuba_vlo, + ENCLKOP=>scuba_vlo, ENCLKOS=>scuba_vlo, ENCLKOS2=>scuba_vlo, + ENCLKOS3=>scuba_vlo, CLKOP=>CLKOP_t, CLKOS=>CLKOS_t, + CLKOS2=>CLKOS2_t, CLKOS3=>CLKOS3_t, LOCK=>LOCK, + INTLOCK=>open, REFCLK=>REFCLK, CLKINTFB=>open); + + CLKOS3 <= CLKOS3_t; + CLKOS2 <= CLKOS2_t; + CLKOS <= CLKOS_t; + CLKOP <= CLKOP_t; +end Structure; diff --git a/examples/ecp5_versa/soc_iomap_pkg.vhdl b/examples/ecp5_versa/soc_iomap_pkg.vhdl new file mode 100644 index 0000000..8a7f975 --- /dev/null +++ b/examples/ecp5_versa/soc_iomap_pkg.vhdl @@ -0,0 +1,116 @@ +-- File generated by gensoc 394864f +-- (c) 2012-2018, Martin Strubel <hackfin@section5.ch> +-- +-- Changes to this file will be lost. Edit the source file. +-- +-- LICENSE: Evaluation license. Not for commercial usage. +---------------------------------------------------------------------------- +-- This VHDL package is generated from +-- ../gen/syn-versa_ecp5/neo430-versa_ecp5.xml +-- Stylesheet: vhdlregs v0.1 + + + +library ieee; +use ieee.std_logic_1164.all; +use ieee.numeric_std.all; + +-- Header: +package system_map is + -- HW revision tag. Use in your code to sync with firmware. + constant HWREV_system_map_MAJOR : natural := 0; + constant HWREV_system_map_MINOR : natural := 0; + constant HWREV_system_map_EXT : string := ""; + + subtype regaddr_t is unsigned(7 downto 0); + subtype regaddr16_t is unsigned(15 downto 0); + + + subtype REG_SIZE1B is integer range 7 downto 0; + subtype REG_SIZE2B is integer range 15 downto 0; + subtype REG_SIZE3B is integer range 23 downto 0; + subtype REG_SIZE4B is integer range 31 downto 0; + + -- Register and bitfield constants: + +------------------------------------------------------------------------- +-- Address segment 'UART' +-- Offset: + +-- UART Control register + constant R_UART_UART_CONTROL : regaddr_t := x"00"; +-- (16x) Clock divider + subtype BV_UART_CLKDIV is integer range 9 downto 0; +-- Enable receive IRQ + constant B_RX_IRQ_ENABLE : natural := 14; +-- '1': Reset UART. Clear to run. + constant B_UART_RESET : natural := 15; +-- UART status register + constant R_UART_UART_STATUS : regaddr_t := x"02"; +-- Set when data ready in RX FIFO + constant B_RXREADY : natural := 0; +-- Set when TX FIFO ready for data + constant B_TXREADY : natural := 1; +-- '1' when TX in progress + constant B_TXBUSY : natural := 2; +-- Sticky framing error. Set when stop bit not null. Reset by UART_RESET. + constant B_FRERR : natural := 5; +-- Transmitter FIFO overrun. Cleared by UART_RESET. + constant B_TXOVR : natural := 6; +-- Receiver FIFO overrun. Cleared by UART_RESET. + constant B_RXOVR : natural := 7; +-- RX bit counter + subtype BV_BITCOUNT is integer range 10 downto 8; +-- UART receiver register + constant R_UART_UART_RXR : regaddr_t := x"04"; +-- UART receive data + subtype BV_RXDATA is integer range 7 downto 0; +-- 1 when data valid (mirror of RXREADY bit) + constant B_DVALID : natural := 8; +-- UART transmitter register + constant R_UART_UART_TXR : regaddr_t := x"04"; + + + type uart_ReadPort is record + --! Exported value for register 'R_UART_UART_STATUS' + --! Exported value for bit (vector) 'RXREADY' + rxready : std_logic; + --! Exported value for bit (vector) 'TXREADY' + txready : std_logic; + --! Exported value for bit (vector) 'TXBUSY' + txbusy : std_logic; + --! Exported value for bit (vector) 'FRERR' + frerr : std_logic; + --! Exported value for bit (vector) 'TXOVR' + txovr : std_logic; + --! Exported value for bit (vector) 'RXOVR' + rxovr : std_logic; + --! Exported value for bit (vector) 'BITCOUNT' + bitcount : unsigned(BV_BITCOUNT); + --! Exported value for register 'R_UART_UART_RXR' + --! Exported value for bit (vector) 'RXDATA' + rxdata : unsigned(BV_RXDATA); + --! Exported value for bit (vector) 'DVALID' + dvalid : std_logic; + end record; + + type uart_WritePort is record + --! Exported value for register 'R_UART_UART_CONTROL' + --! Exported value for bit (vector) 'UART_CLKDIV' + uart_clkdiv : unsigned(BV_UART_CLKDIV); + --! Exported value for bit (vector) 'RX_IRQ_ENABLE' + rx_irq_enable : std_logic; + --! Exported value for bit (vector) 'UART_RESET' + uart_reset : std_logic; + --! Exported value for register 'R_UART_UART_TXR' + uart_txr : unsigned(REG_SIZE1B); + --! Notify access of Register 'UART_RXR' + select_uart_rxr : std_logic; + --! Notify access of Register 'UART_TXR' + select_uart_txr : std_logic; + end record; + + + +end system_map; + diff --git a/examples/ecp5_versa/uart.vhdl b/examples/ecp5_versa/uart.vhdl new file mode 100644 index 0000000..c21ab49 --- /dev/null +++ b/examples/ecp5_versa/uart.vhdl @@ -0,0 +1,175 @@ +-- Simple UART core implementation +-- +-- <hackfin@section5.ch> + +library IEEE; +use IEEE.std_logic_1164.all; +use ieee.numeric_std.all; + +library work; + use work.system_map.all; + +entity uart_core is + generic ( + FIFO_DEPTH : natural := 6; + -- Note: Currently ineffective. See library/wrappers/bram.v + SYN_RAMTYPE : string := "distributed" + ); + port ( + tx : out std_logic; + rx : in std_logic; + rxirq : out std_logic; + ctrl : in uart_WritePort; + stat : out uart_ReadPort; + clk : in std_logic + ); + +end uart_core; + +architecture behaviour of uart_core is + + signal count16 : unsigned(4-1 downto 0) := (others => '0'); + signal counter : unsigned(16-1 downto 0) := (others => '0'); + + signal strobe_rx : std_logic; + signal rxd : unsigned(7 downto 0); + signal txd : unsigned(7 downto 0); + + signal rxfifo_data : unsigned(7 downto 0); + + signal rxfifo_rden : std_logic; + signal txfifo_wren : std_logic; + + signal rxdata_ready : std_logic; + + signal txfifo_dready : std_logic; + signal txfifo_strobe : std_logic; + + signal clk16_enable : std_logic; + signal txclk_enable : std_logic; + + component FifoBuffer is + generic ( + ADDR_W : natural := 6; + DATA_W : natural := 16; + EXTRA_REGISTER : boolean := false; + SYN_RAMTYPE : string := "block_ram" + ); + port ( + -- Write enable + wren : in std_logic; + idata : in unsigned(DATA_W-1 downto 0); + iready : out std_logic; + -- Data stream output: + odata : out unsigned(DATA_W-1 downto 0); + oready : out std_logic; + rden : in std_logic; + err : out std_logic; + -- debug : out unsigned(16-1 downto 0); + reset : in std_logic; + clk : in std_logic + ); + end component FifoBuffer; + + +begin + +-- Clock divider: +clkdiv: + process (clk) + begin + if rising_edge(clk) then + clk16_enable <= '0'; + txclk_enable <= '0'; + -- Important to reset, otherwise, the counter might run away... + if ctrl.uart_reset = '1' then + counter <= (others => '0'); + elsif counter = ctrl.uart_clkdiv then + counter <= (others => '0'); + clk16_enable <= '1'; + count16 <= count16 + 1; + if count16 = "1111" then + txclk_enable <= '1'; + end if; + else + counter <= counter + 1; + end if; + end if; + end process; + + rxfifo_rden <= ctrl.select_uart_rxr and rxdata_ready; + txfifo_wren <= ctrl.select_uart_txr; + +uart_rx: entity work.UARTrx + port map ( + d_bitcount => stat.bitcount, + rx => rx, + -- Data + err_frame => stat.frerr, + data => rxd, + strobe => strobe_rx, + reset => ctrl.uart_reset, + clk16en => clk16_enable, + clk => clk + ); + +uart_tx: + entity work.UARTtx + port map ( + busy => stat.txbusy, + data => txd, + data_ready => txfifo_dready, + data_out_en => txfifo_strobe, + tx => tx, + reset => ctrl.uart_reset, + txclken => txclk_enable, + clk => clk + ); + + +rxfifo: + FifoBuffer + generic map ( + DATA_W => 8, + ADDR_W => FIFO_DEPTH, + SYN_RAMTYPE => SYN_RAMTYPE + ) + port map ( + wren => strobe_rx, + idata => rxd, + iready => open, + odata => rxfifo_data, + oready => rxdata_ready, + rden => rxfifo_rden, + err => stat.rxovr, + reset => ctrl.uart_reset, + clk => clk + ); + + stat.rxdata <= rxfifo_data; + stat.dvalid <= rxdata_ready; + stat.rxready <= rxdata_ready; + rxirq <= rxdata_ready and ctrl.rx_irq_enable; + +txfifo: + FifoBuffer + generic map ( + DATA_W => 8, + ADDR_W => FIFO_DEPTH, + SYN_RAMTYPE => SYN_RAMTYPE + ) + port map ( + wren => txfifo_wren, + idata => ctrl.uart_txr, + iready => stat.txready, + odata => txd, + oready => txfifo_dready, + rden => txfifo_strobe, + err => stat.txovr, + reset => ctrl.uart_reset, + clk => clk + ); + +end behaviour; + + diff --git a/examples/ecp5_versa/uart_rx.vhdl b/examples/ecp5_versa/uart_rx.vhdl new file mode 100644 index 0000000..e535b0b --- /dev/null +++ b/examples/ecp5_versa/uart_rx.vhdl @@ -0,0 +1,204 @@ +-- UART RX implementation +-- +-- (c) 06/2008, Martin Strubel <strubel@section5.ch> + +-- This module implements a standard UART receive channel. +-- The clock divider has to be chosen such that the master clock +-- divided by k = (2 * (div + 1)) is the 16 fold of the desired baud +-- rate. + +-- On reception of a start bit, the lock counter is starting and the +-- signal is sampled at the position of each lock marker which is at +-- 'count' = 8 by default. + +-- Once a byte has arrived, it has to be read immediately by the +-- client (FIFO assumed). Valid data must be clocked on rising edge of +-- the 'strobe' pin from the 'data' bus. + +-- This is a very primitive implementation: +-- * No Parity and other checks +-- * No debouncing. Must be done on top level input. + +library IEEE; +use IEEE.std_logic_1164.all; +use ieee.numeric_std.all; -- for TO_UNSIGNED + + +entity UARTrx is + generic ( + CLKDIV2 : positive := 3 -- power of 2 of (clkdiv) + ); + port ( + d_bitcount : out unsigned(2 downto 0); + + rx : in std_logic; -- RX UART + err_frame : out std_logic; + -- Data + data : out unsigned(7 downto 0); + strobe : out std_logic; -- Data valid strobe pulse + reset : in std_logic; -- Reset pin, LOW active + clk16en : in std_logic; -- UART clock enable + clk : in std_logic -- UART clock x 16 + ); + +end UARTrx; + +architecture behaviour of UARTrx is + -- State machine states: + -- IDLE: Waiting for start bit + -- START: Getting start bit + -- SHIFT: Shifting data + -- STOP: Getting stop bit ( No longer used, identical with S_IDLE ) + + type uart_state_t is (S_IDLE, S_START, S_SHIFT, S_STOP); + + signal state : uart_state_t := S_IDLE; + signal rxd : std_logic; + signal frame_err : std_logic := '0'; -- Frame Error flag + signal rxtrigger : std_logic; + -- signal start : std_logic := '0'; + + signal strobeq : std_logic; + signal strobe_i : std_logic; + + signal bitcount : unsigned(2 downto 0) := "000"; -- Bit counter + -- This is the clk counter that is used to synchronize to the + -- middle of a data bit signal + signal count : unsigned(CLKDIV2 downto 0) := (others => '0'); + signal is_count_begin : std_logic; -- When count == 0 + signal is_count_mid : std_logic; -- When count == 8 + -- Shift register: + signal dsr : unsigned(7 downto 0) := x"00"; + +begin + + -- Detect RX start bit (synchronous to clk): +rx_posedge: + process (clk) + begin + if rising_edge(clk) then + if clk16en = '1' then + rxd <= rx; + rxtrigger <= rxd and (not rx); + end if; + end if; + end process; + + -- This signal is: + -- HIGH on falling edge + -- LOW on rising edge, LOW when idle + + -- It is not latched, thus it can be very short. + + +generate_rxclk_en: + process (clk) + begin + if rising_edge(clk) then + if clk16en = '1' then + case state is + when S_IDLE => count <= (others => '0'); + when others => count <= count + 1; + end case; + end if; + end if; + end process; + + is_count_begin <= '1' when count = "1111" else '0'; + is_count_mid <= '1' when count = "0111" else '0'; + +state_decode: + process (clk) + begin + if rising_edge(clk) then + if reset = '1' then + state <= S_IDLE; + elsif clk16en = '1' then + case state is + when S_STOP | S_IDLE => + if rxtrigger = '1' then + state <= S_START; + else + state <= S_IDLE; + end if; + when S_START => + if is_count_begin = '1' then + state <= S_SHIFT; + end if; + when S_SHIFT => + if is_count_begin = '1' and bitcount = "111" then + state <= S_STOP; + end if; + when others => + state <= S_IDLE; + end case; + end if; + end if; + end process; + +shift: + process (clk) + begin + if rising_edge(clk) then + if clk16en = '1' and is_count_mid = '1' then + if state = S_SHIFT then + dsr <= rx & dsr(7 downto 1); + end if; + end if; + end if; + end process; + + -- Rising edge, when data valid + strobe_i <= '0' when state = S_SHIFT else '1'; + + -- From this, we generate a clk wide pulse: + +tx_strobe: + process (clk) + begin + if rising_edge(clk) then + strobeq <= strobe_i; + data <= dsr; + end if; + end process; + + strobe <= not(strobeq) and strobe_i; -- Pulse on rising edge + +bitcounter: + process (clk) + begin + if rising_edge(clk) then + if clk16en = '1' and is_count_begin = '1' then + case state is + when S_SHIFT => + bitcount <= bitcount + 1; + when others => + bitcount <= "000"; + end case; + end if; + end if; + end process; + +-- Framing errors: +detect_frerr: + process (clk) + begin + if rising_edge(clk) then + if reset = '1' then + frame_err <= '0'; + elsif state = S_STOP and is_count_mid = '1' and rx = '0' then + frame_err <= '1'; + end if; + end if; + end process; + + + + err_frame <= frame_err; + + -- Debugging: + d_bitcount <= bitcount; + +end behaviour; + + diff --git a/examples/ecp5_versa/uart_tx.vhdl b/examples/ecp5_versa/uart_tx.vhdl new file mode 100644 index 0000000..b91fb66 --- /dev/null +++ b/examples/ecp5_versa/uart_tx.vhdl @@ -0,0 +1,125 @@ +-- UART TX implementation +-- +-- (c) 2008 - 2015, Martin Strubel <strubel@section5.ch> +-- + +-- This implementation depends on an external FIFO that can be emptied +-- as follows: +-- When 'data_out_en' == 1 on rising edge of 'clk', 'data' is latched +-- into the shift register and clocked out to the 'tx' pin. The FIFO +-- increments its pointer and asserts the next data byte to 'data'. + +library IEEE; +use IEEE.std_logic_1164.all; +use ieee.numeric_std.all; -- for TO_UNSIGNED + +entity UARTtx is + port ( + busy : out std_logic; + data : in unsigned(7 downto 0); + data_ready : in std_logic; -- Data in FIFO ready + data_out_en : out std_logic; -- Data out enable + tx : out std_logic; -- TX UART + reset : in std_logic; -- Reset pin, LOW active + txclken : in std_logic; + clk : in std_logic + ); +end UARTtx; + +architecture behaviour of UARTtx is + + type uart_state_t is (S_IDLE, S_START, S_SHIFT, S_STOP); + + signal state : uart_state_t := S_IDLE; + signal nextstate : uart_state_t; + + -- Data Shift register: + signal dsr : unsigned(7 downto 0) := x"00"; + signal bitcount : unsigned(2 downto 0) := "000"; -- Bit counter + + +begin + +sync_state_advance: + process (clk) + begin + if falling_edge(clk) then + if txclken = '1' then + if reset = '1' then + state <= S_IDLE; + else + state <= nextstate; + end if; + end if; + end if; + end process; + +state_decode: + process (state, nextstate, bitcount, data_ready) + begin + case state is + when S_STOP => + if data_ready = '1' then + nextstate <= S_START; + else + nextstate <= S_IDLE; + end if; + when S_IDLE => + if data_ready = '1' then + nextstate <= S_START; + else + nextstate <= S_IDLE; + end if; + when S_START => + nextstate <= S_SHIFT; + when S_SHIFT => + if bitcount = "000" then + nextstate <= S_STOP; + else + nextstate <= S_SHIFT; + end if; + when others => + nextstate <= S_IDLE; + end case; + end process; + +bitcounter: + process (clk) + begin + if rising_edge(clk) then + if txclken = '1' then + case state is + when S_SHIFT => + bitcount <= bitcount + 1; + when others => + bitcount <= "000"; + end case; + end if; + end if; + end process; + +shift: + process (clk) + begin + if falling_edge(clk) then + data_out_en <= '0'; + if txclken = '1' then + case state is + when S_START => + dsr <= data; + data_out_en <= '1'; + tx <= '0'; + when S_SHIFT => + dsr <= '1' & dsr(7 downto 1); + tx <= dsr(0); + when others => + tx <= '1'; + end case; + end if; + end if; + end process; + + -- d_state <= std_logic_vector(TO_UNSIGNED(uart_state_t'pos(state), 4)); + busy <= '1' when state /= S_IDLE else '0'; + +end behaviour; diff --git a/examples/ecp5_versa/versa_ecp5.lpf b/examples/ecp5_versa/versa_ecp5.lpf new file mode 100644 index 0000000..f38d914 --- /dev/null +++ b/examples/ecp5_versa/versa_ecp5.lpf @@ -0,0 +1,122 @@ +FREQUENCY NET "clk_in" 100.000000 MHz ; +IOBUF PORT "clk_in" IO_TYPE=LVDS DIFFRESISTOR=100 ; +# FREQUENCY NET "clk_serdes_c" 156.250000 MHz ; +IOBUF PORT "clk_serdes" IO_TYPE=LVDS DIFFRESISTOR=100 ; +# On board oscillator: +LOCATE COMP "clk_in" SITE "P3" ; +LOCATE COMP "dip_sw[7]" SITE "K20" ; +LOCATE COMP "dip_sw[6]" SITE "J19" ; +LOCATE COMP "dip_sw[5]" SITE "K18" ; +LOCATE COMP "dip_sw[4]" SITE "J18" ; +LOCATE COMP "dip_sw[3]" SITE "F2" ; +LOCATE COMP "dip_sw[2]" SITE "G3" ; +LOCATE COMP "dip_sw[1]" SITE "K3" ; +LOCATE COMP "dip_sw[0]" SITE "H2" ; +# LED bank +LOCATE COMP "oled[0]" SITE "E16" ; +LOCATE COMP "oled[1]" SITE "D17" ; +LOCATE COMP "oled[2]" SITE "D18" ; +LOCATE COMP "oled[3]" SITE "E18" ; +LOCATE COMP "oled[4]" SITE "F17" ; +LOCATE COMP "oled[5]" SITE "F18" ; +LOCATE COMP "oled[6]" SITE "E17" ; +LOCATE COMP "oled[7]" SITE "F16" ; +IOBUF PORT "oled[0]" ; +IOBUF PORT "oled[1]" ; +IOBUF PORT "oled[2]" ; +IOBUF PORT "oled[3]" ; +IOBUF PORT "oled[4]" ; +IOBUF PORT "oled[5]" ; +IOBUF PORT "oled[6]" ; +IOBUF PORT "oled[7]" ; +################################################################## +LOCATE COMP "rxd_uart" SITE "C11" ; +LOCATE COMP "txd_uart" SITE "A11" ; +# Internal SPI port: +LOCATE COMP "spi_mosi" SITE "W2" ; +LOCATE COMP "spi_miso" SITE "V2" ; +LOCATE COMP "spi_cs" SITE "R2" ; +# 14 segment LED I/O +LOCATE COMP "seg[0]" SITE "M20" ; +LOCATE COMP "seg[1]" SITE "L18" ; +LOCATE COMP "seg[2]" SITE "M19" ; +LOCATE COMP "seg[3]" SITE "L16" ; +LOCATE COMP "seg[4]" SITE "L17" ; +LOCATE COMP "seg[5]" SITE "M18" ; +LOCATE COMP "seg[6]" SITE "N16" ; +LOCATE COMP "seg[7]" SITE "M17" ; +LOCATE COMP "seg[8]" SITE "N18" ; +LOCATE COMP "seg[9]" SITE "P17" ; +LOCATE COMP "seg[10]" SITE "N17" ; +LOCATE COMP "seg[11]" SITE "P16" ; +LOCATE COMP "seg[12]" SITE "R16" ; +LOCATE COMP "seg[13]" SITE "R17" ; +LOCATE COMP "segdp" SITE "U1" ; +IOBUF PORT "segdp" PULLMODE=NONE OPENDRAIN=OFF CLAMP=ON DRIVE=8 ; +IOBUF PORT "seg[13]" ; +IOBUF PORT "seg[12]" ; +IOBUF PORT "seg[11]" ; +IOBUF PORT "seg[10]" ; +IOBUF PORT "seg[9]" ; +IOBUF PORT "seg[8]" ; +IOBUF PORT "seg[7]" ; +IOBUF PORT "seg[6]" ; +IOBUF PORT "seg[5]" ; +IOBUF PORT "seg[4]" ; +IOBUF PORT "seg[3]" ; +IOBUF PORT "seg[2]" ; +IOBUF PORT "seg[1]" ; +IOBUF PORT "seg[0]" ; +############################################################################ +# Ethernet +# +# Not connected: +# LOCATE COMP "phy_clk125" SITE "L19" ; +# LOCATE COMP "phy_rgmii_rxclk" SITE "L20" ; +LOCATE COMP "phy_rgmii_rxctl" SITE "U19" ; +LOCATE COMP "phy_rgmii_rxd[3]" SITE "R18" ; +LOCATE COMP "phy_rgmii_rxd[2]" SITE "T19" ; +LOCATE COMP "phy_rgmii_rxd[1]" SITE "U20" ; +LOCATE COMP "phy_rgmii_rxd[0]" SITE "T20" ; +LOCATE COMP "eth_rst_n" SITE "U17" ; +LOCATE COMP "phy_rgmii_txclk" SITE "P19" ; +LOCATE COMP "phy_rgmii_txctl" SITE "R20" ; +LOCATE COMP "phy_rgmii_txd[3]" SITE "P20" ; +LOCATE COMP "phy_rgmii_txd[2]" SITE "P18" ; +LOCATE COMP "phy_rgmii_txd[1]" SITE "N20" ; +LOCATE COMP "phy_rgmii_txd[0]" SITE "N19" ; +LOCATE COMP "ts_mac_coremdc" SITE "T18" ; +LOCATE COMP "ts_mac_coremdio" SITE "U18" ; +LOCATE COMP "hw_config" SITE "T17" ; +############################################################################ +# BLOCK JTAGPATHS ; +# SYSCONFIG SLAVE_SPI_PORT=DISABLE CONFIG_MODE=JTAG CONFIG_SECURE=OFF TRANSFR=OFF MASTER_SPI_PORT=DISABLE SLAVE_PARALLEL_PORT=DISABLE MCCLK_FREQ=38.8 BACKGROUND_RECONFIG=OFF ; +IOBUF PORT "spi_miso" IO_TYPE=LVCMOS25 ; +IOBUF PORT "rxd_uart" IO_TYPE=LVCMOS33 ; +IOBUF PORT "txd_uart" IO_TYPE=LVCMOS33 ; +# BLOCK NET "soc/perio/rx_reset" ; +# BLOCK NET "soc/perio/tx_reset" ; +DEFINE PORT GROUP "rgmii_in" "phy_rgmii_rxctl" +"phy_rgmii_rxd[3]" +"phy_rgmii_rxd[2]" +"phy_rgmii_rxd[1]" +"phy_rgmii_rxd[0]" ; +# FREQUENCY PORT "phy_rgmii_rxclk" 125.000000 MHz ; +# INPUT_SETUP GROUP "rgmii_in"5.000000 ns CLKPORT "phy_rgmii_rxclk" ; +LOCATE COMP "clk_serdes" SITE "A4" ; + +# JTAG pins: +# LOCATE COMP "tck" SITE "T5" ; +# LOCATE COMP "tdi" SITE "R5" ; +# LOCATE COMP "tms" SITE "U5" ; +# LOCATE COMP "tdo" SITE "V4" ; + +LOCATE COMP "reset_n" SITE "T1" ; +# IOBUF PORT "reset_n" ; + +IOBUF PORT "tck" IO_TYPE=LVCMOS33 ; +IOBUF PORT "tdi" IO_TYPE=LVCMOS33 ; +IOBUF PORT "tms" IO_TYPE=LVCMOS33 ; + +# User code for rv32 TAP: +USERCODE HEX "CAFE1050" ; diff --git a/examples/ecp5_versa/versa_ecp5_top.vhdl b/examples/ecp5_versa/versa_ecp5_top.vhdl new file mode 100644 index 0000000..a476390 --- /dev/null +++ b/examples/ecp5_versa/versa_ecp5_top.vhdl @@ -0,0 +1,162 @@ +-- +-- Versa ECP5(G) top level module +-- +-- +-- 1/2017 Martin Strubel <hackfin@section5.ch> +-- +-- Taken from MaSoCist and stripped down for the example. +-- Functionality: + +-- * Blinks the first orange LED every second +-- * Loops back the UART (fixed at 115200 bps) through a FIFO and +-- turns lower cap alpha characters into upper case. + + +library IEEE; +use IEEE.std_logic_1164.all; +use IEEE.numeric_std.all; + +library work; + use work.system_map.all; + +entity versa_ecp5_top is + generic( + CLK_FREQUENCY : positive := 25000000 + ); + port ( + twi_scl : inout std_logic; + twi_sda : inout std_logic; + + rxd_uart : in std_logic; -- FT2232 -> CPU + txd_uart : out std_logic; -- CPU -> FT2232 + + oled : out std_logic_vector(7 downto 0); + seg : out std_logic_vector(13 downto 0); + segdp : out std_logic; + dip_sw : in std_logic_vector(7 downto 0); + + reset_n : in std_logic; + clk_in : in std_ulogic + + ); +end entity versa_ecp5_top; + + +architecture behaviour of versa_ecp5_top is + + signal mclk : std_logic; + signal mclk_locked : std_logic; + + -- Pixel clock: + signal pclk : std_logic; + + signal comb_reset : std_logic; + + constant f_half : integer := CLK_FREQUENCY / 2; + signal reset_delay : unsigned(3 downto 0); + signal led : unsigned(7 downto 0); + signal counter : integer range 0 to f_half; + signal toggle_led : std_ulogic := '0'; + + -- Uart signals: + signal uart_ctrl : uart_WritePort; + signal uart_stat : uart_ReadPort; + + signal uart_idle : std_ulogic := '0'; + signal rxready_d : std_ulogic := '0'; + signal uart_data : unsigned(7 downto 0); + + +begin + + comb_reset <= (not reset_n) or (not mclk_locked); + + seg <= (others => '1'); -- low active + segdp <= '1'; -- low active + + process(mclk) + begin + if rising_edge(mclk) then + counter <= counter + 1; + if counter = f_half then + toggle_led <= not toggle_led; + counter <= 0; + end if; + end if; + end process; + + +clk_pll1: entity work.pll_mac + port map ( + CLKI => clk_in, + CLKOP => open, + CLKOS => mclk, -- 25 Mhz + CLKOS2 => open, + CLKOS3 => pclk, + LOCK => mclk_locked + ); + + -- Static config: + uart_ctrl.uart_clkdiv <= to_unsigned(CLK_FREQUENCY / 16 / 115200, 10); + uart_ctrl.rx_irq_enable <= '0'; + uart_ctrl.uart_reset <= comb_reset; + +-- UART loopback logic: + process (mclk) + begin + if rising_edge(mclk) then + uart_ctrl.select_uart_txr <= '0'; -- default 0 + uart_ctrl.select_uart_rxr <= '0'; -- default 0 + rxready_d <= uart_stat.rxready; + if uart_idle = '1' then + uart_idle <= '0'; + else + if rxready_d = '1' then + -- Modify the data a bit: + if uart_data > x"40" and uart_data < x"ff" then + uart_ctrl.uart_txr <= uart_data and "01011111"; + else + uart_ctrl.uart_txr <= uart_data; + end if; + uart_ctrl.select_uart_txr <= '1'; -- signal a write + end if; + if uart_stat.rxready = '1' then + uart_data <= uart_stat.rxdata; -- Read data + uart_ctrl.select_uart_rxr <= '1'; -- signal a read + uart_idle <= '1'; -- Wait state + end if; + end if; + end if; + end process; + +uart_inst: + entity work.uart_core + port map ( + tx => txd_uart, + rx => rxd_uart, + rxirq => open, + ctrl => uart_ctrl, + stat => uart_stat, + clk => mclk + ); + + led(0) <= toggle_led; + led(1) <= '0'; + led(2) <= '1'; + led(3) <= '0'; + led(4) <= '0'; + led(5) <= not rxd_uart; + led(6) <= '0'; + led(7) <= uart_stat.rxovr; + + -- Note LED are low active + oled <= not std_logic_vector(led); + + twi_sda <= 'H'; + twi_scl <= 'H'; + + + -- txd_uart <= rxd_uart; + + +end behaviour; diff --git a/examples/ghdlsynth.mk b/examples/ghdlsynth.mk new file mode 100644 index 0000000..d53a57c --- /dev/null +++ b/examples/ghdlsynth.mk @@ -0,0 +1,34 @@ +# Common makefile for GHDL synthesis + +# Specify: +# +# VHDL_SYN_FILES = VHDL files for synthesis, unordered +# VERILOG_FILES = auxiliary verilog wrappers that might be needed +# PLATFORM: 'ecp5' for now +# TOPLEVEL: top level entity name +# TOPLEVEL_PARAMETER: top level entity name parameters, when passed a generic +# LPF: I/O constraints file + +PLATFORM ?= ecp5 + +ifneq ($(VERILOG_FILES),) +MAYBE_READ_VERILOG = read_verilog $(VERILOG_FILES); +endif + +%.json: $(VHDL_SYN_FILES) + $(YOSYS) -m $(GHDLSYNTH) -p \ + "ghdl $(GHDL_FLAGS) $(GHDL_GENERICS) $^ -e $(TOPLEVEL); \ + $(MAYBE_READ_VERILOG) \ + synth_$(PLATFORM) \ + -top $(TOPLEVEL)$(TOPLEVEL_PARAMETER) -json $@" 2>&1 | tee $*-report.txt + +%.config: %.json + $(NEXTPNR) --json $< --lpf $(LPF) \ + --textcfg $@ $(NEXTPNR_FLAGS) --package $(PACKAGE) + +%.svf: %.config + $(ECPPACK) --svf $*.svf $< $@ + + +.PRECIOUS: %.json %.config + diff --git a/library/ecp5u/components.vhdl b/library/ecp5u/components.vhdl new file mode 100644 index 0000000..d60dbba --- /dev/null +++ b/library/ecp5u/components.vhdl @@ -0,0 +1,4967 @@ +-- This module is generated by vhdl_comp.xsl +-- (2016-2019, hackfin@section5.ch) +-- +-- Changes may be void. +-- + + +library ieee; + use ieee.std_logic_1164.all; + use ieee.numeric_std.all; + + +package components is + +component ccu2c is + generic ( + inject1_0 : string := "YES"; + inject1_1 : string := "YES"; + init0 : std_logic_vector := "0000000000000000"; + init1 : std_logic_vector := "0000000000000000" ); + port ( + a0 : in std_ulogic; + a1 : in std_ulogic; + b0 : in std_ulogic; + b1 : in std_ulogic; + c0 : in std_ulogic; + c1 : in std_ulogic; + d0 : in std_ulogic; + d1 : in std_ulogic; + cin : in std_ulogic; + s0 : out std_ulogic; + s1 : out std_ulogic; + cout : out std_ulogic ); +end component; + +component and2 is + port ( + a : in std_logic; + b : in std_logic; + z : out std_logic ); +end component; + +component and3 is + port ( + a : in std_logic; + b : in std_logic; + c : in std_logic; + z : out std_logic ); +end component; + +component and4 is + port ( + a : in std_logic; + b : in std_logic; + c : in std_logic; + d : in std_logic; + z : out std_logic ); +end component; + +component and5 is + port ( + a : in std_logic; + b : in std_logic; + c : in std_logic; + d : in std_logic; + e : in std_logic; + z : out std_logic ); +end component; + +component fd1p3ax is + generic ( + gsr : string := "ENABLED" ); + port ( + d : in std_logic; + sp : in std_logic; + ck : in std_logic; + q : out std_logic ); +end component; + +component fd1p3ay is + generic ( + gsr : string := "ENABLED" ); + port ( + d : in std_logic; + sp : in std_logic; + ck : in std_logic; + q : out std_logic ); +end component; + +component fd1p3bx is + generic ( + gsr : string := "ENABLED" ); + port ( + d : in std_logic; + sp : in std_logic; + ck : in std_logic; + pd : in std_logic; + q : out std_logic ); +end component; + +component fd1p3dx is + generic ( + gsr : string := "ENABLED" ); + port ( + d : in std_logic; + sp : in std_logic; + ck : in std_logic; + cd : in std_logic; + q : out std_logic ); +end component; + +component fd1p3ix is + generic ( + gsr : string := "ENABLED" ); + port ( + d : in std_logic; + sp : in std_logic; + ck : in std_logic; + cd : in std_logic; + q : out std_logic ); +end component; + +component fd1p3jx is + generic ( + gsr : string := "ENABLED" ); + port ( + d : in std_logic; + sp : in std_logic; + ck : in std_logic; + pd : in std_logic; + q : out std_logic ); +end component; + +component fd1s3ax is + generic ( + gsr : string := "ENABLED" ); + port ( + d : in std_logic; + ck : in std_logic; + q : out std_logic ); +end component; + +component fd1s3ay is + generic ( + gsr : string := "ENABLED" ); + port ( + d : in std_logic; + ck : in std_logic; + q : out std_logic ); +end component; + +component fd1s3bx is + generic ( + gsr : string := "ENABLED" ); + port ( + d : in std_logic; + ck : in std_logic; + pd : in std_logic; + q : out std_logic ); +end component; + +component fd1s3dx is + generic ( + gsr : string := "ENABLED" ); + port ( + d : in std_logic; + ck : in std_logic; + cd : in std_logic; + q : out std_logic ); +end component; + +component fd1s3ix is + generic ( + gsr : string := "ENABLED" ); + port ( + d : in std_logic; + ck : in std_logic; + cd : in std_logic; + q : out std_logic ); +end component; + +component fd1s3jx is + generic ( + gsr : string := "ENABLED" ); + port ( + d : in std_logic; + ck : in std_logic; + pd : in std_logic; + q : out std_logic ); +end component; + +component fl1p3az is + generic ( + gsr : string := "ENABLED" ); + port ( + d0 : in std_logic; + d1 : in std_logic; + sp : in std_logic; + ck : in std_logic; + sd : in std_logic; + q : out std_logic ); +end component; + +component fl1p3ay is + generic ( + gsr : string := "ENABLED" ); + port ( + d0 : in std_logic; + d1 : in std_logic; + sp : in std_logic; + ck : in std_logic; + sd : in std_logic; + q : out std_logic ); +end component; + +component fl1p3bx is + generic ( + gsr : string := "ENABLED" ); + port ( + d0 : in std_logic; + d1 : in std_logic; + sp : in std_logic; + ck : in std_logic; + sd : in std_logic; + pd : in std_logic; + q : out std_logic ); +end component; + +component fl1p3dx is + generic ( + gsr : string := "ENABLED" ); + port ( + d0 : in std_logic; + d1 : in std_logic; + sp : in std_logic; + ck : in std_logic; + sd : in std_logic; + cd : in std_logic; + q : out std_logic ); +end component; + +component fl1p3iy is + generic ( + gsr : string := "ENABLED" ); + port ( + d0 : in std_logic; + d1 : in std_logic; + sp : in std_logic; + ck : in std_logic; + sd : in std_logic; + cd : in std_logic; + q : out std_logic ); +end component; + +component fl1p3jy is + generic ( + gsr : string := "ENABLED" ); + port ( + d0 : in std_logic; + d1 : in std_logic; + sp : in std_logic; + ck : in std_logic; + sd : in std_logic; + pd : in std_logic; + q : out std_logic ); +end component; + +component fl1s3ax is + generic ( + gsr : string := "ENABLED" ); + port ( + d0 : in std_logic; + d1 : in std_logic; + ck : in std_logic; + sd : in std_logic; + q : out std_logic ); +end component; + +component fl1s3ay is + generic ( + gsr : string := "ENABLED" ); + port ( + d0 : in std_logic; + d1 : in std_logic; + ck : in std_logic; + sd : in std_logic; + q : out std_logic ); +end component; + +component gsr is + port ( + gsr : in std_logic ); +end component; + +component sgsr is + port ( + gsr : in std_logic; + clk : in std_logic ); +end component; + +component inv is + port ( + a : in std_logic; + z : out std_logic ); +end component; + +component ifs1p3bx is + generic ( + gsr : string := "ENABLED" ); + port ( + d : in std_logic; + sp : in std_logic; + sclk : in std_logic; + pd : in std_logic; + q : out std_logic ); +end component; + +component ifs1p3dx is + generic ( + gsr : string := "ENABLED" ); + port ( + d : in std_logic; + sp : in std_logic; + sclk : in std_logic; + cd : in std_logic; + q : out std_logic ); +end component; + +component ifs1p3ix is + generic ( + gsr : string := "ENABLED" ); + port ( + d : in std_logic; + sp : in std_logic; + sclk : in std_logic; + cd : in std_logic; + q : out std_logic ); +end component; + +component ifs1p3jx is + generic ( + gsr : string := "ENABLED" ); + port ( + d : in std_logic; + sp : in std_logic; + sclk : in std_logic; + pd : in std_logic; + q : out std_logic ); +end component; + +component ifs1s1b is + generic ( + gsr : string := "ENABLED" ); + port ( + d : in std_logic; + sclk : in std_logic; + pd : in std_logic; + q : out std_logic ); +end component; + +component ifs1s1d is + generic ( + gsr : string := "ENABLED" ); + port ( + d : in std_logic; + sclk : in std_logic; + cd : in std_logic; + q : out std_logic ); +end component; + +component ifs1s1i is + generic ( + gsr : string := "ENABLED" ); + port ( + d : in std_logic; + sclk : in std_logic; + cd : in std_logic; + q : out std_logic ); +end component; + +component ifs1s1j is + generic ( + gsr : string := "ENABLED" ); + port ( + d : in std_logic; + sclk : in std_logic; + pd : in std_logic; + q : out std_logic ); +end component; + +component l6mux21 is + port ( + d0 : in std_logic; + d1 : in std_logic; + sd : in std_logic; + z : out std_logic ); +end component; + +component mux21 is + port ( + d0 : in std_logic; + d1 : in std_logic; + sd : in std_logic; + z : out std_logic ); +end component; + +component mux41 is + port ( + d0 : in std_logic; + d1 : in std_logic; + d2 : in std_logic; + d3 : in std_logic; + sd1 : in std_logic; + sd2 : in std_logic; + z : out std_logic ); +end component; + +component mux81 is + port ( + d0 : in std_logic; + d1 : in std_logic; + d2 : in std_logic; + d3 : in std_logic; + d4 : in std_logic; + d5 : in std_logic; + d6 : in std_logic; + d7 : in std_logic; + sd1 : in std_logic; + sd2 : in std_logic; + sd3 : in std_logic; + z : out std_logic ); +end component; + +component mux161 is + port ( + d0 : in std_logic; + d1 : in std_logic; + d2 : in std_logic; + d3 : in std_logic; + d4 : in std_logic; + d5 : in std_logic; + d6 : in std_logic; + d7 : in std_logic; + d8 : in std_logic; + d9 : in std_logic; + d10 : in std_logic; + d11 : in std_logic; + d12 : in std_logic; + d13 : in std_logic; + d14 : in std_logic; + d15 : in std_logic; + sd1 : in std_logic; + sd2 : in std_logic; + sd3 : in std_logic; + sd4 : in std_logic; + z : out std_logic ); +end component; + +component mux321 is + port ( + d0 : in std_logic; + d1 : in std_logic; + d2 : in std_logic; + d3 : in std_logic; + d4 : in std_logic; + d5 : in std_logic; + d6 : in std_logic; + d7 : in std_logic; + d8 : in std_logic; + d9 : in std_logic; + d10 : in std_logic; + d11 : in std_logic; + d12 : in std_logic; + d13 : in std_logic; + d14 : in std_logic; + d15 : in std_logic; + d16 : in std_logic; + d17 : in std_logic; + d18 : in std_logic; + d19 : in std_logic; + d20 : in std_logic; + d21 : in std_logic; + d22 : in std_logic; + d23 : in std_logic; + d24 : in std_logic; + d25 : in std_logic; + d26 : in std_logic; + d27 : in std_logic; + d28 : in std_logic; + d29 : in std_logic; + d30 : in std_logic; + d31 : in std_logic; + sd1 : in std_logic; + sd2 : in std_logic; + sd3 : in std_logic; + sd4 : in std_logic; + sd5 : in std_logic; + z : out std_logic ); +end component; + +component nd2 is + port ( + a : in std_logic; + b : in std_logic; + z : out std_logic ); +end component; + +component nd3 is + port ( + a : in std_logic; + b : in std_logic; + c : in std_logic; + z : out std_logic ); +end component; + +component nd4 is + port ( + a : in std_logic; + b : in std_logic; + c : in std_logic; + d : in std_logic; + z : out std_logic ); +end component; + +component nd5 is + port ( + a : in std_logic; + b : in std_logic; + c : in std_logic; + d : in std_logic; + e : in std_logic; + z : out std_logic ); +end component; + +component nr2 is + port ( + a : in std_logic; + b : in std_logic; + z : out std_logic ); +end component; + +component nr3 is + port ( + a : in std_logic; + b : in std_logic; + c : in std_logic; + z : out std_logic ); +end component; + +component nr4 is + port ( + a : in std_logic; + b : in std_logic; + c : in std_logic; + d : in std_logic; + z : out std_logic ); +end component; + +component nr5 is + port ( + a : in std_logic; + b : in std_logic; + c : in std_logic; + d : in std_logic; + e : in std_logic; + z : out std_logic ); +end component; + +component ofs1p3bx is + generic ( + gsr : string := "ENABLED" ); + port ( + d : in std_logic; + sp : in std_logic; + sclk : in std_logic; + pd : in std_logic; + q : out std_logic ); +end component; + +component ofs1p3dx is + generic ( + gsr : string := "ENABLED" ); + port ( + d : in std_logic; + sp : in std_logic; + sclk : in std_logic; + cd : in std_logic; + q : out std_logic ); +end component; + +component ofs1p3ix is + generic ( + gsr : string := "ENABLED" ); + port ( + d : in std_logic; + sp : in std_logic; + sclk : in std_logic; + cd : in std_logic; + q : out std_logic ); +end component; + +component ofs1p3jx is + generic ( + gsr : string := "ENABLED" ); + port ( + d : in std_logic; + sp : in std_logic; + sclk : in std_logic; + pd : in std_logic; + q : out std_logic ); +end component; + +component or2 is + port ( + a : in std_logic; + b : in std_logic; + z : out std_logic ); +end component; + +component or3 is + port ( + a : in std_logic; + b : in std_logic; + c : in std_logic; + z : out std_logic ); +end component; + +component or4 is + port ( + a : in std_logic; + b : in std_logic; + c : in std_logic; + d : in std_logic; + z : out std_logic ); +end component; + +component or5 is + port ( + a : in std_logic; + b : in std_logic; + c : in std_logic; + d : in std_logic; + e : in std_logic; + z : out std_logic ); +end component; + +component pfumx is + port ( + alut : in std_logic; + blut : in std_logic; + c0 : in std_logic; + z : out std_logic ); +end component; + +component rom16x1a is + generic ( + initval : std_logic_vector := "0000000000000000" ); + port ( + ad0 : in std_logic; + ad1 : in std_logic; + ad2 : in std_logic; + ad3 : in std_logic; + do0 : out std_logic ); +end component; + +component rom32x1a is + generic ( + initval : std_logic_vector := "00000000000000000000000000000000" ); + port ( + ad0 : in std_logic; + ad1 : in std_logic; + ad2 : in std_logic; + ad3 : in std_logic; + ad4 : in std_logic; + do0 : out std_logic ); +end component; + +component rom64x1a is + generic ( + initval : std_logic_vector := "0000000000000000000000000000000000000000000000000000000000000000" ); + port ( + ad0 : in std_logic; + ad1 : in std_logic; + ad2 : in std_logic; + ad3 : in std_logic; + ad4 : in std_logic; + ad5 : in std_logic; + do0 : out std_logic ); +end component; + +component rom128x1a is + generic ( + initval : std_logic_vector := "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" ); + port ( + ad0 : in std_logic; + ad1 : in std_logic; + ad2 : in std_logic; + ad3 : in std_logic; + ad4 : in std_logic; + ad5 : in std_logic; + ad6 : in std_logic; + do0 : out std_logic ); +end component; + +component rom256x1a is + generic ( + initval : std_logic_vector := "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" ); + port ( + ad0 : in std_logic; + ad1 : in std_logic; + ad2 : in std_logic; + ad3 : in std_logic; + ad4 : in std_logic; + ad5 : in std_logic; + ad6 : in std_logic; + ad7 : in std_logic; + do0 : out std_logic ); +end component; + +component vhi is + port ( + z : out std_logic ); +end component; + +component vlo is + port ( + z : out std_logic ); +end component; + +component xor2 is + port ( + a : in std_logic; + b : in std_logic; + z : out std_logic ); +end component; + +component xor3 is + port ( + a : in std_logic; + b : in std_logic; + c : in std_logic; + z : out std_logic ); +end component; + +component xor4 is + port ( + a : in std_logic; + b : in std_logic; + c : in std_logic; + d : in std_logic; + z : out std_logic ); +end component; + +component xor5 is + port ( + a : in std_logic; + b : in std_logic; + c : in std_logic; + d : in std_logic; + e : in std_logic; + z : out std_logic ); +end component; + +component xor11 is + port ( + a : in std_logic; + b : in std_logic; + c : in std_logic; + d : in std_logic; + e : in std_logic; + f : in std_logic; + g : in std_logic; + h : in std_logic; + i : in std_logic; + j : in std_logic; + k : in std_logic; + z : out std_logic ); +end component; + +component xor21 is + port ( + a : in std_logic; + b : in std_logic; + c : in std_logic; + d : in std_logic; + e : in std_logic; + f : in std_logic; + g : in std_logic; + h : in std_logic; + i : in std_logic; + j : in std_logic; + k : in std_logic; + l : in std_logic; + m : in std_logic; + n : in std_logic; + o : in std_logic; + p : in std_logic; + q : in std_logic; + r : in std_logic; + s : in std_logic; + t : in std_logic; + u : in std_logic; + z : out std_logic ); +end component; + +component xnor2 is + port ( + a : in std_logic; + b : in std_logic; + z : out std_logic ); +end component; + +component xnor3 is + port ( + a : in std_logic; + b : in std_logic; + c : in std_logic; + z : out std_logic ); +end component; + +component xnor4 is + port ( + a : in std_logic; + b : in std_logic; + c : in std_logic; + d : in std_logic; + z : out std_logic ); +end component; + +component xnor5 is + port ( + a : in std_logic; + b : in std_logic; + c : in std_logic; + d : in std_logic; + e : in std_logic; + z : out std_logic ); +end component; + +component ilvds is + port ( + a : in std_logic; + an : in std_logic; + z : out std_logic ); +end component; + +component olvds is + port ( + a : in std_logic; + z : out std_logic; + zn : out std_logic ); +end component; + +component bb is + port ( + b : inout std_logic; + i : in std_logic; + t : in std_logic; + o : out std_logic ); +end component; + +component bbpd is + port ( + b : inout std_logic; + i : in std_logic; + t : in std_logic; + o : out std_logic ); +end component; + +component bbpu is + port ( + b : inout std_logic; + i : in std_logic; + t : in std_logic; + o : out std_logic ); +end component; + +component ib is + port ( + i : in std_logic; + o : out std_logic ); +end component; + +component ibpd is + port ( + i : in std_logic; + o : out std_logic ); +end component; + +component ibpu is + port ( + i : in std_logic; + o : out std_logic ); +end component; + +component ob is + port ( + i : in std_logic; + o : out std_logic ); +end component; + +component obco is + port ( + i : in std_logic; + ot : out std_logic; + oc : out std_logic ); +end component; + +component obz is + port ( + i : in std_logic; + t : in std_logic; + o : out std_logic ); +end component; + +component obzpu is + port ( + i : in std_logic; + t : in std_logic; + o : out std_logic ); +end component; + +component lut4 is + generic ( + init : std_logic_vector := "" ); + port ( + a : in std_ulogic; + b : in std_ulogic; + c : in std_ulogic; + d : in std_ulogic; + z : out std_ulogic ); +end component; + +component lut5 is + generic ( + init : std_logic_vector := "" ); + port ( + a : in std_ulogic; + b : in std_ulogic; + c : in std_ulogic; + d : in std_ulogic; + e : in std_ulogic; + z : out std_ulogic ); +end component; + +component lut6 is + generic ( + init : std_logic_vector := "" ); + port ( + a : in std_ulogic; + b : in std_ulogic; + c : in std_ulogic; + d : in std_ulogic; + e : in std_ulogic; + f : in std_ulogic; + z : out std_ulogic ); +end component; + +component lut7 is + generic ( + init : std_logic_vector := "" ); + port ( + a : in std_ulogic; + b : in std_ulogic; + c : in std_ulogic; + d : in std_ulogic; + e : in std_ulogic; + f : in std_ulogic; + g : in std_ulogic; + z : out std_ulogic ); +end component; + +component lut8 is + generic ( + init : std_logic_vector := "" ); + port ( + a : in std_ulogic; + b : in std_ulogic; + c : in std_ulogic; + d : in std_ulogic; + e : in std_ulogic; + f : in std_ulogic; + g : in std_ulogic; + h : in std_ulogic; + z : out std_ulogic ); +end component; + +component mult9x9c is + generic ( + reg_inputa_clk : string := "NONE"; + reg_inputa_ce : string := "CE0"; + reg_inputa_rst : string := "RST0"; + reg_inputb_clk : string := "NONE"; + reg_inputb_ce : string := "CE0"; + reg_inputb_rst : string := "RST0"; + reg_pipeline_clk : string := "NONE"; + reg_pipeline_ce : string := "CE0"; + reg_pipeline_rst : string := "RST0"; + reg_output_clk : string := "NONE"; + reg_output_ce : string := "CE0"; + reg_output_rst : string := "RST0"; + gsr : string := "ENABLED"; + cas_match_reg : string := "FALSE"; + mult_bypass : string := "DISABLED"; + resetmode : string := "SYNC" ); + port ( + a8 : in std_logic; + a7 : in std_logic; + a6 : in std_logic; + a5 : in std_logic; + a4 : in std_logic; + a3 : in std_logic; + a2 : in std_logic; + a1 : in std_logic; + a0 : in std_logic; + b8 : in std_logic; + b7 : in std_logic; + b6 : in std_logic; + b5 : in std_logic; + b4 : in std_logic; + b3 : in std_logic; + b2 : in std_logic; + b1 : in std_logic; + b0 : in std_logic; + signeda : in std_logic; + signedb : in std_logic; + sourcea : in std_logic; + sourceb : in std_logic; + clk3 : in std_logic; + clk2 : in std_logic; + clk1 : in std_logic; + clk0 : in std_logic; + ce3 : in std_logic; + ce2 : in std_logic; + ce1 : in std_logic; + ce0 : in std_logic; + rst3 : in std_logic; + rst2 : in std_logic; + rst1 : in std_logic; + rst0 : in std_logic; + sria8 : in std_logic; + sria7 : in std_logic; + sria6 : in std_logic; + sria5 : in std_logic; + sria4 : in std_logic; + sria3 : in std_logic; + sria2 : in std_logic; + sria1 : in std_logic; + sria0 : in std_logic; + srib8 : in std_logic; + srib7 : in std_logic; + srib6 : in std_logic; + srib5 : in std_logic; + srib4 : in std_logic; + srib3 : in std_logic; + srib2 : in std_logic; + srib1 : in std_logic; + srib0 : in std_logic; + sroa8 : out std_logic; + sroa7 : out std_logic; + sroa6 : out std_logic; + sroa5 : out std_logic; + sroa4 : out std_logic; + sroa3 : out std_logic; + sroa2 : out std_logic; + sroa1 : out std_logic; + sroa0 : out std_logic; + srob8 : out std_logic; + srob7 : out std_logic; + srob6 : out std_logic; + srob5 : out std_logic; + srob4 : out std_logic; + srob3 : out std_logic; + srob2 : out std_logic; + srob1 : out std_logic; + srob0 : out std_logic; + roa8 : out std_logic; + roa7 : out std_logic; + roa6 : out std_logic; + roa5 : out std_logic; + roa4 : out std_logic; + roa3 : out std_logic; + roa2 : out std_logic; + roa1 : out std_logic; + roa0 : out std_logic; + rob8 : out std_logic; + rob7 : out std_logic; + rob6 : out std_logic; + rob5 : out std_logic; + rob4 : out std_logic; + rob3 : out std_logic; + rob2 : out std_logic; + rob1 : out std_logic; + rob0 : out std_logic; + p17 : out std_logic; + p16 : out std_logic; + p15 : out std_logic; + p14 : out std_logic; + p13 : out std_logic; + p12 : out std_logic; + p11 : out std_logic; + p10 : out std_logic; + p9 : out std_logic; + p8 : out std_logic; + p7 : out std_logic; + p6 : out std_logic; + p5 : out std_logic; + p4 : out std_logic; + p3 : out std_logic; + p2 : out std_logic; + p1 : out std_logic; + p0 : out std_logic; + signedp : out std_logic ); +end component; + +component mult9x9d is + generic ( + reg_inputa_clk : string := "NONE"; + reg_inputa_ce : string := "CE0"; + reg_inputa_rst : string := "RST0"; + reg_inputb_clk : string := "NONE"; + reg_inputb_ce : string := "CE0"; + reg_inputb_rst : string := "RST0"; + reg_inputc_clk : string := "NONE"; + reg_inputc_ce : string := "CE0"; + reg_inputc_rst : string := "RST0"; + reg_pipeline_clk : string := "NONE"; + reg_pipeline_ce : string := "CE0"; + reg_pipeline_rst : string := "RST0"; + reg_output_clk : string := "NONE"; + reg_output_ce : string := "CE0"; + reg_output_rst : string := "RST0"; + clk0_div : string := "ENABLED"; + clk1_div : string := "ENABLED"; + clk2_div : string := "ENABLED"; + clk3_div : string := "ENABLED"; + highspeed_clk : string := "NONE"; + gsr : string := "ENABLED"; + cas_match_reg : string := "FALSE"; + sourceb_mode : string := "B_SHIFT"; + mult_bypass : string := "DISABLED"; + resetmode : string := "SYNC" ); + port ( + a8 : in std_logic; + a7 : in std_logic; + a6 : in std_logic; + a5 : in std_logic; + a4 : in std_logic; + a3 : in std_logic; + a2 : in std_logic; + a1 : in std_logic; + a0 : in std_logic; + b8 : in std_logic; + b7 : in std_logic; + b6 : in std_logic; + b5 : in std_logic; + b4 : in std_logic; + b3 : in std_logic; + b2 : in std_logic; + b1 : in std_logic; + b0 : in std_logic; + c8 : in std_logic; + c7 : in std_logic; + c6 : in std_logic; + c5 : in std_logic; + c4 : in std_logic; + c3 : in std_logic; + c2 : in std_logic; + c1 : in std_logic; + c0 : in std_logic; + signeda : in std_logic; + signedb : in std_logic; + sourcea : in std_logic; + sourceb : in std_logic; + clk3 : in std_logic; + clk2 : in std_logic; + clk1 : in std_logic; + clk0 : in std_logic; + ce3 : in std_logic; + ce2 : in std_logic; + ce1 : in std_logic; + ce0 : in std_logic; + rst3 : in std_logic; + rst2 : in std_logic; + rst1 : in std_logic; + rst0 : in std_logic; + sria8 : in std_logic; + sria7 : in std_logic; + sria6 : in std_logic; + sria5 : in std_logic; + sria4 : in std_logic; + sria3 : in std_logic; + sria2 : in std_logic; + sria1 : in std_logic; + sria0 : in std_logic; + srib8 : in std_logic; + srib7 : in std_logic; + srib6 : in std_logic; + srib5 : in std_logic; + srib4 : in std_logic; + srib3 : in std_logic; + srib2 : in std_logic; + srib1 : in std_logic; + srib0 : in std_logic; + sroa8 : out std_logic; + sroa7 : out std_logic; + sroa6 : out std_logic; + sroa5 : out std_logic; + sroa4 : out std_logic; + sroa3 : out std_logic; + sroa2 : out std_logic; + sroa1 : out std_logic; + sroa0 : out std_logic; + srob8 : out std_logic; + srob7 : out std_logic; + srob6 : out std_logic; + srob5 : out std_logic; + srob4 : out std_logic; + srob3 : out std_logic; + srob2 : out std_logic; + srob1 : out std_logic; + srob0 : out std_logic; + roa8 : out std_logic; + roa7 : out std_logic; + roa6 : out std_logic; + roa5 : out std_logic; + roa4 : out std_logic; + roa3 : out std_logic; + roa2 : out std_logic; + roa1 : out std_logic; + roa0 : out std_logic; + rob8 : out std_logic; + rob7 : out std_logic; + rob6 : out std_logic; + rob5 : out std_logic; + rob4 : out std_logic; + rob3 : out std_logic; + rob2 : out std_logic; + rob1 : out std_logic; + rob0 : out std_logic; + roc8 : out std_logic; + roc7 : out std_logic; + roc6 : out std_logic; + roc5 : out std_logic; + roc4 : out std_logic; + roc3 : out std_logic; + roc2 : out std_logic; + roc1 : out std_logic; + roc0 : out std_logic; + p17 : out std_logic; + p16 : out std_logic; + p15 : out std_logic; + p14 : out std_logic; + p13 : out std_logic; + p12 : out std_logic; + p11 : out std_logic; + p10 : out std_logic; + p9 : out std_logic; + p8 : out std_logic; + p7 : out std_logic; + p6 : out std_logic; + p5 : out std_logic; + p4 : out std_logic; + p3 : out std_logic; + p2 : out std_logic; + p1 : out std_logic; + p0 : out std_logic; + signedp : out std_logic ); +end component; + +component mult18x18c is + generic ( + reg_inputa_clk : string := "NONE"; + reg_inputa_ce : string := "CE0"; + reg_inputa_rst : string := "RST0"; + reg_inputb_clk : string := "NONE"; + reg_inputb_ce : string := "CE0"; + reg_inputb_rst : string := "RST0"; + reg_pipeline_clk : string := "NONE"; + reg_pipeline_ce : string := "CE0"; + reg_pipeline_rst : string := "RST0"; + reg_output_clk : string := "NONE"; + reg_output_ce : string := "CE0"; + reg_output_rst : string := "RST0"; + cas_match_reg : string := "FALSE"; + mult_bypass : string := "DISABLED"; + gsr : string := "ENABLED"; + resetmode : string := "SYNC" ); + port ( + a17 : in std_logic; + a16 : in std_logic; + a15 : in std_logic; + a14 : in std_logic; + a13 : in std_logic; + a12 : in std_logic; + a11 : in std_logic; + a10 : in std_logic; + a9 : in std_logic; + a8 : in std_logic; + a7 : in std_logic; + a6 : in std_logic; + a5 : in std_logic; + a4 : in std_logic; + a3 : in std_logic; + a2 : in std_logic; + a1 : in std_logic; + a0 : in std_logic; + b17 : in std_logic; + b16 : in std_logic; + b15 : in std_logic; + b14 : in std_logic; + b13 : in std_logic; + b12 : in std_logic; + b11 : in std_logic; + b10 : in std_logic; + b9 : in std_logic; + b8 : in std_logic; + b7 : in std_logic; + b6 : in std_logic; + b5 : in std_logic; + b4 : in std_logic; + b3 : in std_logic; + b2 : in std_logic; + b1 : in std_logic; + b0 : in std_logic; + signeda : in std_logic; + signedb : in std_logic; + sourcea : in std_logic; + sourceb : in std_logic; + clk3 : in std_logic; + clk2 : in std_logic; + clk1 : in std_logic; + clk0 : in std_logic; + ce3 : in std_logic; + ce2 : in std_logic; + ce1 : in std_logic; + ce0 : in std_logic; + rst3 : in std_logic; + rst2 : in std_logic; + rst1 : in std_logic; + rst0 : in std_logic; + sria17 : in std_logic; + sria16 : in std_logic; + sria15 : in std_logic; + sria14 : in std_logic; + sria13 : in std_logic; + sria12 : in std_logic; + sria11 : in std_logic; + sria10 : in std_logic; + sria9 : in std_logic; + sria8 : in std_logic; + sria7 : in std_logic; + sria6 : in std_logic; + sria5 : in std_logic; + sria4 : in std_logic; + sria3 : in std_logic; + sria2 : in std_logic; + sria1 : in std_logic; + sria0 : in std_logic; + srib17 : in std_logic; + srib16 : in std_logic; + srib15 : in std_logic; + srib14 : in std_logic; + srib13 : in std_logic; + srib12 : in std_logic; + srib11 : in std_logic; + srib10 : in std_logic; + srib9 : in std_logic; + srib8 : in std_logic; + srib7 : in std_logic; + srib6 : in std_logic; + srib5 : in std_logic; + srib4 : in std_logic; + srib3 : in std_logic; + srib2 : in std_logic; + srib1 : in std_logic; + srib0 : in std_logic; + sroa17 : out std_logic; + sroa16 : out std_logic; + sroa15 : out std_logic; + sroa14 : out std_logic; + sroa13 : out std_logic; + sroa12 : out std_logic; + sroa11 : out std_logic; + sroa10 : out std_logic; + sroa9 : out std_logic; + sroa8 : out std_logic; + sroa7 : out std_logic; + sroa6 : out std_logic; + sroa5 : out std_logic; + sroa4 : out std_logic; + sroa3 : out std_logic; + sroa2 : out std_logic; + sroa1 : out std_logic; + sroa0 : out std_logic; + srob17 : out std_logic; + srob16 : out std_logic; + srob15 : out std_logic; + srob14 : out std_logic; + srob13 : out std_logic; + srob12 : out std_logic; + srob11 : out std_logic; + srob10 : out std_logic; + srob9 : out std_logic; + srob8 : out std_logic; + srob7 : out std_logic; + srob6 : out std_logic; + srob5 : out std_logic; + srob4 : out std_logic; + srob3 : out std_logic; + srob2 : out std_logic; + srob1 : out std_logic; + srob0 : out std_logic; + roa17 : out std_logic; + roa16 : out std_logic; + roa15 : out std_logic; + roa14 : out std_logic; + roa13 : out std_logic; + roa12 : out std_logic; + roa11 : out std_logic; + roa10 : out std_logic; + roa9 : out std_logic; + roa8 : out std_logic; + roa7 : out std_logic; + roa6 : out std_logic; + roa5 : out std_logic; + roa4 : out std_logic; + roa3 : out std_logic; + roa2 : out std_logic; + roa1 : out std_logic; + roa0 : out std_logic; + rob17 : out std_logic; + rob16 : out std_logic; + rob15 : out std_logic; + rob14 : out std_logic; + rob13 : out std_logic; + rob12 : out std_logic; + rob11 : out std_logic; + rob10 : out std_logic; + rob9 : out std_logic; + rob8 : out std_logic; + rob7 : out std_logic; + rob6 : out std_logic; + rob5 : out std_logic; + rob4 : out std_logic; + rob3 : out std_logic; + rob2 : out std_logic; + rob1 : out std_logic; + rob0 : out std_logic; + p35 : out std_logic; + p34 : out std_logic; + p33 : out std_logic; + p32 : out std_logic; + p31 : out std_logic; + p30 : out std_logic; + p29 : out std_logic; + p28 : out std_logic; + p27 : out std_logic; + p26 : out std_logic; + p25 : out std_logic; + p24 : out std_logic; + p23 : out std_logic; + p22 : out std_logic; + p21 : out std_logic; + p20 : out std_logic; + p19 : out std_logic; + p18 : out std_logic; + p17 : out std_logic; + p16 : out std_logic; + p15 : out std_logic; + p14 : out std_logic; + p13 : out std_logic; + p12 : out std_logic; + p11 : out std_logic; + p10 : out std_logic; + p9 : out std_logic; + p8 : out std_logic; + p7 : out std_logic; + p6 : out std_logic; + p5 : out std_logic; + p4 : out std_logic; + p3 : out std_logic; + p2 : out std_logic; + p1 : out std_logic; + p0 : out std_logic; + signedp : out std_logic ); +end component; + +component mult18x18d is + generic ( + reg_inputa_clk : string := "NONE"; + reg_inputa_ce : string := "CE0"; + reg_inputa_rst : string := "RST0"; + reg_inputb_clk : string := "NONE"; + reg_inputb_ce : string := "CE0"; + reg_inputb_rst : string := "RST0"; + reg_inputc_clk : string := "NONE"; + reg_inputc_ce : string := "CE0"; + reg_inputc_rst : string := "RST0"; + reg_pipeline_clk : string := "NONE"; + reg_pipeline_ce : string := "CE0"; + reg_pipeline_rst : string := "RST0"; + reg_output_clk : string := "NONE"; + reg_output_ce : string := "CE0"; + reg_output_rst : string := "RST0"; + clk0_div : string := "ENABLED"; + clk1_div : string := "ENABLED"; + clk2_div : string := "ENABLED"; + clk3_div : string := "ENABLED"; + highspeed_clk : string := "NONE"; + gsr : string := "ENABLED"; + cas_match_reg : string := "FALSE"; + sourceb_mode : string := "B_SHIFT"; + mult_bypass : string := "DISABLED"; + resetmode : string := "SYNC" ); + port ( + a17 : in std_logic; + a16 : in std_logic; + a15 : in std_logic; + a14 : in std_logic; + a13 : in std_logic; + a12 : in std_logic; + a11 : in std_logic; + a10 : in std_logic; + a9 : in std_logic; + a8 : in std_logic; + a7 : in std_logic; + a6 : in std_logic; + a5 : in std_logic; + a4 : in std_logic; + a3 : in std_logic; + a2 : in std_logic; + a1 : in std_logic; + a0 : in std_logic; + b17 : in std_logic; + b16 : in std_logic; + b15 : in std_logic; + b14 : in std_logic; + b13 : in std_logic; + b12 : in std_logic; + b11 : in std_logic; + b10 : in std_logic; + b9 : in std_logic; + b8 : in std_logic; + b7 : in std_logic; + b6 : in std_logic; + b5 : in std_logic; + b4 : in std_logic; + b3 : in std_logic; + b2 : in std_logic; + b1 : in std_logic; + b0 : in std_logic; + c17 : in std_logic; + c16 : in std_logic; + c15 : in std_logic; + c14 : in std_logic; + c13 : in std_logic; + c12 : in std_logic; + c11 : in std_logic; + c10 : in std_logic; + c9 : in std_logic; + c8 : in std_logic; + c7 : in std_logic; + c6 : in std_logic; + c5 : in std_logic; + c4 : in std_logic; + c3 : in std_logic; + c2 : in std_logic; + c1 : in std_logic; + c0 : in std_logic; + signeda : in std_logic; + signedb : in std_logic; + sourcea : in std_logic; + sourceb : in std_logic; + clk3 : in std_logic; + clk2 : in std_logic; + clk1 : in std_logic; + clk0 : in std_logic; + ce3 : in std_logic; + ce2 : in std_logic; + ce1 : in std_logic; + ce0 : in std_logic; + rst3 : in std_logic; + rst2 : in std_logic; + rst1 : in std_logic; + rst0 : in std_logic; + sria17 : in std_logic; + sria16 : in std_logic; + sria15 : in std_logic; + sria14 : in std_logic; + sria13 : in std_logic; + sria12 : in std_logic; + sria11 : in std_logic; + sria10 : in std_logic; + sria9 : in std_logic; + sria8 : in std_logic; + sria7 : in std_logic; + sria6 : in std_logic; + sria5 : in std_logic; + sria4 : in std_logic; + sria3 : in std_logic; + sria2 : in std_logic; + sria1 : in std_logic; + sria0 : in std_logic; + srib17 : in std_logic; + srib16 : in std_logic; + srib15 : in std_logic; + srib14 : in std_logic; + srib13 : in std_logic; + srib12 : in std_logic; + srib11 : in std_logic; + srib10 : in std_logic; + srib9 : in std_logic; + srib8 : in std_logic; + srib7 : in std_logic; + srib6 : in std_logic; + srib5 : in std_logic; + srib4 : in std_logic; + srib3 : in std_logic; + srib2 : in std_logic; + srib1 : in std_logic; + srib0 : in std_logic; + sroa17 : out std_logic; + sroa16 : out std_logic; + sroa15 : out std_logic; + sroa14 : out std_logic; + sroa13 : out std_logic; + sroa12 : out std_logic; + sroa11 : out std_logic; + sroa10 : out std_logic; + sroa9 : out std_logic; + sroa8 : out std_logic; + sroa7 : out std_logic; + sroa6 : out std_logic; + sroa5 : out std_logic; + sroa4 : out std_logic; + sroa3 : out std_logic; + sroa2 : out std_logic; + sroa1 : out std_logic; + sroa0 : out std_logic; + srob17 : out std_logic; + srob16 : out std_logic; + srob15 : out std_logic; + srob14 : out std_logic; + srob13 : out std_logic; + srob12 : out std_logic; + srob11 : out std_logic; + srob10 : out std_logic; + srob9 : out std_logic; + srob8 : out std_logic; + srob7 : out std_logic; + srob6 : out std_logic; + srob5 : out std_logic; + srob4 : out std_logic; + srob3 : out std_logic; + srob2 : out std_logic; + srob1 : out std_logic; + srob0 : out std_logic; + roa17 : out std_logic; + roa16 : out std_logic; + roa15 : out std_logic; + roa14 : out std_logic; + roa13 : out std_logic; + roa12 : out std_logic; + roa11 : out std_logic; + roa10 : out std_logic; + roa9 : out std_logic; + roa8 : out std_logic; + roa7 : out std_logic; + roa6 : out std_logic; + roa5 : out std_logic; + roa4 : out std_logic; + roa3 : out std_logic; + roa2 : out std_logic; + roa1 : out std_logic; + roa0 : out std_logic; + rob17 : out std_logic; + rob16 : out std_logic; + rob15 : out std_logic; + rob14 : out std_logic; + rob13 : out std_logic; + rob12 : out std_logic; + rob11 : out std_logic; + rob10 : out std_logic; + rob9 : out std_logic; + rob8 : out std_logic; + rob7 : out std_logic; + rob6 : out std_logic; + rob5 : out std_logic; + rob4 : out std_logic; + rob3 : out std_logic; + rob2 : out std_logic; + rob1 : out std_logic; + rob0 : out std_logic; + roc17 : out std_logic; + roc16 : out std_logic; + roc15 : out std_logic; + roc14 : out std_logic; + roc13 : out std_logic; + roc12 : out std_logic; + roc11 : out std_logic; + roc10 : out std_logic; + roc9 : out std_logic; + roc8 : out std_logic; + roc7 : out std_logic; + roc6 : out std_logic; + roc5 : out std_logic; + roc4 : out std_logic; + roc3 : out std_logic; + roc2 : out std_logic; + roc1 : out std_logic; + roc0 : out std_logic; + p35 : out std_logic; + p34 : out std_logic; + p33 : out std_logic; + p32 : out std_logic; + p31 : out std_logic; + p30 : out std_logic; + p29 : out std_logic; + p28 : out std_logic; + p27 : out std_logic; + p26 : out std_logic; + p25 : out std_logic; + p24 : out std_logic; + p23 : out std_logic; + p22 : out std_logic; + p21 : out std_logic; + p20 : out std_logic; + p19 : out std_logic; + p18 : out std_logic; + p17 : out std_logic; + p16 : out std_logic; + p15 : out std_logic; + p14 : out std_logic; + p13 : out std_logic; + p12 : out std_logic; + p11 : out std_logic; + p10 : out std_logic; + p9 : out std_logic; + p8 : out std_logic; + p7 : out std_logic; + p6 : out std_logic; + p5 : out std_logic; + p4 : out std_logic; + p3 : out std_logic; + p2 : out std_logic; + p1 : out std_logic; + p0 : out std_logic; + signedp : out std_logic ); +end component; + +component alu24a is + generic ( + reg_output_clk : string := "NONE"; + reg_output_ce : string := "CE0"; + reg_output_rst : string := "RST0"; + reg_opcode_0_clk : string := "NONE"; + reg_opcode_0_ce : string := "CE0"; + reg_opcode_0_rst : string := "RST0"; + reg_opcode_1_clk : string := "NONE"; + reg_opcode_1_ce : string := "CE0"; + reg_opcode_1_rst : string := "RST0"; + gsr : string := "ENABLED"; + resetmode : string := "SYNC" ); + port ( + ce3 : in std_logic; + ce2 : in std_logic; + ce1 : in std_logic; + ce0 : in std_logic; + clk3 : in std_logic; + clk2 : in std_logic; + clk1 : in std_logic; + clk0 : in std_logic; + rst3 : in std_logic; + rst2 : in std_logic; + rst1 : in std_logic; + rst0 : in std_logic; + signedia : in std_logic; + signedib : in std_logic; + ma17 : in std_logic; + ma16 : in std_logic; + ma15 : in std_logic; + ma14 : in std_logic; + ma13 : in std_logic; + ma12 : in std_logic; + ma11 : in std_logic; + ma10 : in std_logic; + ma9 : in std_logic; + ma8 : in std_logic; + ma7 : in std_logic; + ma6 : in std_logic; + ma5 : in std_logic; + ma4 : in std_logic; + ma3 : in std_logic; + ma2 : in std_logic; + ma1 : in std_logic; + ma0 : in std_logic; + mb17 : in std_logic; + mb16 : in std_logic; + mb15 : in std_logic; + mb14 : in std_logic; + mb13 : in std_logic; + mb12 : in std_logic; + mb11 : in std_logic; + mb10 : in std_logic; + mb9 : in std_logic; + mb8 : in std_logic; + mb7 : in std_logic; + mb6 : in std_logic; + mb5 : in std_logic; + mb4 : in std_logic; + mb3 : in std_logic; + mb2 : in std_logic; + mb1 : in std_logic; + mb0 : in std_logic; + cin23 : in std_logic; + cin22 : in std_logic; + cin21 : in std_logic; + cin20 : in std_logic; + cin19 : in std_logic; + cin18 : in std_logic; + cin17 : in std_logic; + cin16 : in std_logic; + cin15 : in std_logic; + cin14 : in std_logic; + cin13 : in std_logic; + cin12 : in std_logic; + cin11 : in std_logic; + cin10 : in std_logic; + cin9 : in std_logic; + cin8 : in std_logic; + cin7 : in std_logic; + cin6 : in std_logic; + cin5 : in std_logic; + cin4 : in std_logic; + cin3 : in std_logic; + cin2 : in std_logic; + cin1 : in std_logic; + cin0 : in std_logic; + opaddnsub : in std_logic; + opcinsel : in std_logic; + r23 : out std_logic; + r22 : out std_logic; + r21 : out std_logic; + r20 : out std_logic; + r19 : out std_logic; + r18 : out std_logic; + r17 : out std_logic; + r16 : out std_logic; + r15 : out std_logic; + r14 : out std_logic; + r13 : out std_logic; + r12 : out std_logic; + r11 : out std_logic; + r10 : out std_logic; + r9 : out std_logic; + r8 : out std_logic; + r7 : out std_logic; + r6 : out std_logic; + r5 : out std_logic; + r4 : out std_logic; + r3 : out std_logic; + r2 : out std_logic; + r1 : out std_logic; + r0 : out std_logic ); +end component; + +component alu54a is + generic ( + reg_inputc0_clk : string := "NONE"; + reg_inputc0_ce : string := "CE0"; + reg_inputc0_rst : string := "RST0"; + reg_inputc1_clk : string := "NONE"; + reg_inputc1_ce : string := "CE0"; + reg_inputc1_rst : string := "RST0"; + reg_opcodeop0_0_clk : string := "NONE"; + reg_opcodeop0_0_ce : string := "CE0"; + reg_opcodeop0_0_rst : string := "RST0"; + reg_opcodeop1_0_clk : string := "NONE"; + reg_opcodeop0_1_clk : string := "NONE"; + reg_opcodeop0_1_ce : string := "CE0"; + reg_opcodeop0_1_rst : string := "RST0"; + reg_opcodeop1_1_clk : string := "NONE"; + reg_opcodein_0_clk : string := "NONE"; + reg_opcodein_0_ce : string := "CE0"; + reg_opcodein_0_rst : string := "RST0"; + reg_opcodein_1_clk : string := "NONE"; + reg_opcodein_1_ce : string := "CE0"; + reg_opcodein_1_rst : string := "RST0"; + reg_output0_clk : string := "NONE"; + reg_output0_ce : string := "CE0"; + reg_output0_rst : string := "RST0"; + reg_output1_clk : string := "NONE"; + reg_output1_ce : string := "CE0"; + reg_output1_rst : string := "RST0"; + reg_flag_clk : string := "NONE"; + reg_flag_ce : string := "CE0"; + reg_flag_rst : string := "RST0"; + mcpat_source : string := "STATIC"; + maskpat_source : string := "STATIC"; + mask01 : string := "0x00000000000000"; + mcpat : string := "0x00000000000000"; + maskpat : string := "0x00000000000000"; + rndpat : string := "0x00000000000000"; + gsr : string := "ENABLED"; + resetmode : string := "SYNC"; + mult9_mode : string := "DISABLED"; + legacy : string := "DISABLED" ); + port ( + ce3 : in std_logic; + ce2 : in std_logic; + ce1 : in std_logic; + ce0 : in std_logic; + clk3 : in std_logic; + clk2 : in std_logic; + clk1 : in std_logic; + clk0 : in std_logic; + rst3 : in std_logic; + rst2 : in std_logic; + rst1 : in std_logic; + rst0 : in std_logic; + signedia : in std_logic; + signedib : in std_logic; + signedcin : in std_logic; + a35 : in std_logic; + a34 : in std_logic; + a33 : in std_logic; + a32 : in std_logic; + a31 : in std_logic; + a30 : in std_logic; + a29 : in std_logic; + a28 : in std_logic; + a27 : in std_logic; + a26 : in std_logic; + a25 : in std_logic; + a24 : in std_logic; + a23 : in std_logic; + a22 : in std_logic; + a21 : in std_logic; + a20 : in std_logic; + a19 : in std_logic; + a18 : in std_logic; + a17 : in std_logic; + a16 : in std_logic; + a15 : in std_logic; + a14 : in std_logic; + a13 : in std_logic; + a12 : in std_logic; + a11 : in std_logic; + a10 : in std_logic; + a9 : in std_logic; + a8 : in std_logic; + a7 : in std_logic; + a6 : in std_logic; + a5 : in std_logic; + a4 : in std_logic; + a3 : in std_logic; + a2 : in std_logic; + a1 : in std_logic; + a0 : in std_logic; + b35 : in std_logic; + b34 : in std_logic; + b33 : in std_logic; + b32 : in std_logic; + b31 : in std_logic; + b30 : in std_logic; + b29 : in std_logic; + b28 : in std_logic; + b27 : in std_logic; + b26 : in std_logic; + b25 : in std_logic; + b24 : in std_logic; + b23 : in std_logic; + b22 : in std_logic; + b21 : in std_logic; + b20 : in std_logic; + b19 : in std_logic; + b18 : in std_logic; + b17 : in std_logic; + b16 : in std_logic; + b15 : in std_logic; + b14 : in std_logic; + b13 : in std_logic; + b12 : in std_logic; + b11 : in std_logic; + b10 : in std_logic; + b9 : in std_logic; + b8 : in std_logic; + b7 : in std_logic; + b6 : in std_logic; + b5 : in std_logic; + b4 : in std_logic; + b3 : in std_logic; + b2 : in std_logic; + b1 : in std_logic; + b0 : in std_logic; + c53 : in std_logic; + c52 : in std_logic; + c51 : in std_logic; + c50 : in std_logic; + c49 : in std_logic; + c48 : in std_logic; + c47 : in std_logic; + c46 : in std_logic; + c45 : in std_logic; + c44 : in std_logic; + c43 : in std_logic; + c42 : in std_logic; + c41 : in std_logic; + c40 : in std_logic; + c39 : in std_logic; + c38 : in std_logic; + c37 : in std_logic; + c36 : in std_logic; + c35 : in std_logic; + c34 : in std_logic; + c33 : in std_logic; + c32 : in std_logic; + c31 : in std_logic; + c30 : in std_logic; + c29 : in std_logic; + c28 : in std_logic; + c27 : in std_logic; + c26 : in std_logic; + c25 : in std_logic; + c24 : in std_logic; + c23 : in std_logic; + c22 : in std_logic; + c21 : in std_logic; + c20 : in std_logic; + c19 : in std_logic; + c18 : in std_logic; + c17 : in std_logic; + c16 : in std_logic; + c15 : in std_logic; + c14 : in std_logic; + c13 : in std_logic; + c12 : in std_logic; + c11 : in std_logic; + c10 : in std_logic; + c9 : in std_logic; + c8 : in std_logic; + c7 : in std_logic; + c6 : in std_logic; + c5 : in std_logic; + c4 : in std_logic; + c3 : in std_logic; + c2 : in std_logic; + c1 : in std_logic; + c0 : in std_logic; + ma35 : in std_logic; + ma34 : in std_logic; + ma33 : in std_logic; + ma32 : in std_logic; + ma31 : in std_logic; + ma30 : in std_logic; + ma29 : in std_logic; + ma28 : in std_logic; + ma27 : in std_logic; + ma26 : in std_logic; + ma25 : in std_logic; + ma24 : in std_logic; + ma23 : in std_logic; + ma22 : in std_logic; + ma21 : in std_logic; + ma20 : in std_logic; + ma19 : in std_logic; + ma18 : in std_logic; + ma17 : in std_logic; + ma16 : in std_logic; + ma15 : in std_logic; + ma14 : in std_logic; + ma13 : in std_logic; + ma12 : in std_logic; + ma11 : in std_logic; + ma10 : in std_logic; + ma9 : in std_logic; + ma8 : in std_logic; + ma7 : in std_logic; + ma6 : in std_logic; + ma5 : in std_logic; + ma4 : in std_logic; + ma3 : in std_logic; + ma2 : in std_logic; + ma1 : in std_logic; + ma0 : in std_logic; + mb35 : in std_logic; + mb34 : in std_logic; + mb33 : in std_logic; + mb32 : in std_logic; + mb31 : in std_logic; + mb30 : in std_logic; + mb29 : in std_logic; + mb28 : in std_logic; + mb27 : in std_logic; + mb26 : in std_logic; + mb25 : in std_logic; + mb24 : in std_logic; + mb23 : in std_logic; + mb22 : in std_logic; + mb21 : in std_logic; + mb20 : in std_logic; + mb19 : in std_logic; + mb18 : in std_logic; + mb17 : in std_logic; + mb16 : in std_logic; + mb15 : in std_logic; + mb14 : in std_logic; + mb13 : in std_logic; + mb12 : in std_logic; + mb11 : in std_logic; + mb10 : in std_logic; + mb9 : in std_logic; + mb8 : in std_logic; + mb7 : in std_logic; + mb6 : in std_logic; + mb5 : in std_logic; + mb4 : in std_logic; + mb3 : in std_logic; + mb2 : in std_logic; + mb1 : in std_logic; + mb0 : in std_logic; + cin53 : in std_logic; + cin52 : in std_logic; + cin51 : in std_logic; + cin50 : in std_logic; + cin49 : in std_logic; + cin48 : in std_logic; + cin47 : in std_logic; + cin46 : in std_logic; + cin45 : in std_logic; + cin44 : in std_logic; + cin43 : in std_logic; + cin42 : in std_logic; + cin41 : in std_logic; + cin40 : in std_logic; + cin39 : in std_logic; + cin38 : in std_logic; + cin37 : in std_logic; + cin36 : in std_logic; + cin35 : in std_logic; + cin34 : in std_logic; + cin33 : in std_logic; + cin32 : in std_logic; + cin31 : in std_logic; + cin30 : in std_logic; + cin29 : in std_logic; + cin28 : in std_logic; + cin27 : in std_logic; + cin26 : in std_logic; + cin25 : in std_logic; + cin24 : in std_logic; + cin23 : in std_logic; + cin22 : in std_logic; + cin21 : in std_logic; + cin20 : in std_logic; + cin19 : in std_logic; + cin18 : in std_logic; + cin17 : in std_logic; + cin16 : in std_logic; + cin15 : in std_logic; + cin14 : in std_logic; + cin13 : in std_logic; + cin12 : in std_logic; + cin11 : in std_logic; + cin10 : in std_logic; + cin9 : in std_logic; + cin8 : in std_logic; + cin7 : in std_logic; + cin6 : in std_logic; + cin5 : in std_logic; + cin4 : in std_logic; + cin3 : in std_logic; + cin2 : in std_logic; + cin1 : in std_logic; + cin0 : in std_logic; + op10 : in std_logic; + op9 : in std_logic; + op8 : in std_logic; + op7 : in std_logic; + op6 : in std_logic; + op5 : in std_logic; + op4 : in std_logic; + op3 : in std_logic; + op2 : in std_logic; + op1 : in std_logic; + op0 : in std_logic; + r53 : out std_logic; + r52 : out std_logic; + r51 : out std_logic; + r50 : out std_logic; + r49 : out std_logic; + r48 : out std_logic; + r47 : out std_logic; + r46 : out std_logic; + r45 : out std_logic; + r44 : out std_logic; + r43 : out std_logic; + r42 : out std_logic; + r41 : out std_logic; + r40 : out std_logic; + r39 : out std_logic; + r38 : out std_logic; + r37 : out std_logic; + r36 : out std_logic; + r35 : out std_logic; + r34 : out std_logic; + r33 : out std_logic; + r32 : out std_logic; + r31 : out std_logic; + r30 : out std_logic; + r29 : out std_logic; + r28 : out std_logic; + r27 : out std_logic; + r26 : out std_logic; + r25 : out std_logic; + r24 : out std_logic; + r23 : out std_logic; + r22 : out std_logic; + r21 : out std_logic; + r20 : out std_logic; + r19 : out std_logic; + r18 : out std_logic; + r17 : out std_logic; + r16 : out std_logic; + r15 : out std_logic; + r14 : out std_logic; + r13 : out std_logic; + r12 : out std_logic; + r11 : out std_logic; + r10 : out std_logic; + r9 : out std_logic; + r8 : out std_logic; + r7 : out std_logic; + r6 : out std_logic; + r5 : out std_logic; + r4 : out std_logic; + r3 : out std_logic; + r2 : out std_logic; + r1 : out std_logic; + r0 : out std_logic; + eqz : out std_logic; + eqzm : out std_logic; + eqom : out std_logic; + eqpat : out std_logic; + eqpatb : out std_logic; + over : out std_logic; + under : out std_logic; + overunder : out std_logic; + signedr : out std_logic ); +end component; + +component alu24b is + generic ( + reg_output_clk : string := "NONE"; + reg_output_ce : string := "CE0"; + reg_output_rst : string := "RST0"; + reg_opcode_0_clk : string := "NONE"; + reg_opcode_0_ce : string := "CE0"; + reg_opcode_0_rst : string := "RST0"; + reg_opcode_1_clk : string := "NONE"; + reg_opcode_1_ce : string := "CE0"; + reg_opcode_1_rst : string := "RST0"; + reg_inputcfb_clk : string := "NONE"; + reg_inputcfb_ce : string := "CE0"; + reg_inputcfb_rst : string := "RST0"; + clk0_div : string := "ENABLED"; + clk1_div : string := "ENABLED"; + clk2_div : string := "ENABLED"; + clk3_div : string := "ENABLED"; + gsr : string := "ENABLED"; + resetmode : string := "SYNC" ); + port ( + ce3 : in std_logic; + ce2 : in std_logic; + ce1 : in std_logic; + ce0 : in std_logic; + clk3 : in std_logic; + clk2 : in std_logic; + clk1 : in std_logic; + clk0 : in std_logic; + rst3 : in std_logic; + rst2 : in std_logic; + rst1 : in std_logic; + rst0 : in std_logic; + signedia : in std_logic; + signedib : in std_logic; + ma17 : in std_logic; + ma16 : in std_logic; + ma15 : in std_logic; + ma14 : in std_logic; + ma13 : in std_logic; + ma12 : in std_logic; + ma11 : in std_logic; + ma10 : in std_logic; + ma9 : in std_logic; + ma8 : in std_logic; + ma7 : in std_logic; + ma6 : in std_logic; + ma5 : in std_logic; + ma4 : in std_logic; + ma3 : in std_logic; + ma2 : in std_logic; + ma1 : in std_logic; + ma0 : in std_logic; + mb17 : in std_logic; + mb16 : in std_logic; + mb15 : in std_logic; + mb14 : in std_logic; + mb13 : in std_logic; + mb12 : in std_logic; + mb11 : in std_logic; + mb10 : in std_logic; + mb9 : in std_logic; + mb8 : in std_logic; + mb7 : in std_logic; + mb6 : in std_logic; + mb5 : in std_logic; + mb4 : in std_logic; + mb3 : in std_logic; + mb2 : in std_logic; + mb1 : in std_logic; + mb0 : in std_logic; + cfb23 : in std_logic; + cfb22 : in std_logic; + cfb21 : in std_logic; + cfb20 : in std_logic; + cfb19 : in std_logic; + cfb18 : in std_logic; + cfb17 : in std_logic; + cfb16 : in std_logic; + cfb15 : in std_logic; + cfb14 : in std_logic; + cfb13 : in std_logic; + cfb12 : in std_logic; + cfb11 : in std_logic; + cfb10 : in std_logic; + cfb9 : in std_logic; + cfb8 : in std_logic; + cfb7 : in std_logic; + cfb6 : in std_logic; + cfb5 : in std_logic; + cfb4 : in std_logic; + cfb3 : in std_logic; + cfb2 : in std_logic; + cfb1 : in std_logic; + cfb0 : in std_logic; + cin23 : in std_logic; + cin22 : in std_logic; + cin21 : in std_logic; + cin20 : in std_logic; + cin19 : in std_logic; + cin18 : in std_logic; + cin17 : in std_logic; + cin16 : in std_logic; + cin15 : in std_logic; + cin14 : in std_logic; + cin13 : in std_logic; + cin12 : in std_logic; + cin11 : in std_logic; + cin10 : in std_logic; + cin9 : in std_logic; + cin8 : in std_logic; + cin7 : in std_logic; + cin6 : in std_logic; + cin5 : in std_logic; + cin4 : in std_logic; + cin3 : in std_logic; + cin2 : in std_logic; + cin1 : in std_logic; + cin0 : in std_logic; + opaddnsub : in std_logic; + opcinsel : in std_logic; + r23 : out std_logic; + r22 : out std_logic; + r21 : out std_logic; + r20 : out std_logic; + r19 : out std_logic; + r18 : out std_logic; + r17 : out std_logic; + r16 : out std_logic; + r15 : out std_logic; + r14 : out std_logic; + r13 : out std_logic; + r12 : out std_logic; + r11 : out std_logic; + r10 : out std_logic; + r9 : out std_logic; + r8 : out std_logic; + r7 : out std_logic; + r6 : out std_logic; + r5 : out std_logic; + r4 : out std_logic; + r3 : out std_logic; + r2 : out std_logic; + r1 : out std_logic; + r0 : out std_logic; + co23 : out std_logic; + co22 : out std_logic; + co21 : out std_logic; + co20 : out std_logic; + co19 : out std_logic; + co18 : out std_logic; + co17 : out std_logic; + co16 : out std_logic; + co15 : out std_logic; + co14 : out std_logic; + co13 : out std_logic; + co12 : out std_logic; + co11 : out std_logic; + co10 : out std_logic; + co9 : out std_logic; + co8 : out std_logic; + co7 : out std_logic; + co6 : out std_logic; + co5 : out std_logic; + co4 : out std_logic; + co3 : out std_logic; + co2 : out std_logic; + co1 : out std_logic; + co0 : out std_logic ); +end component; + +component alu54b is + generic ( + reg_inputc0_clk : string := "NONE"; + reg_inputc0_ce : string := "CE0"; + reg_inputc0_rst : string := "RST0"; + reg_inputc1_clk : string := "NONE"; + reg_inputc1_ce : string := "CE0"; + reg_inputc1_rst : string := "RST0"; + reg_opcodeop0_0_clk : string := "NONE"; + reg_opcodeop0_0_ce : string := "CE0"; + reg_opcodeop0_0_rst : string := "RST0"; + reg_opcodeop1_0_clk : string := "NONE"; + reg_opcodeop0_1_clk : string := "NONE"; + reg_opcodeop0_1_ce : string := "CE0"; + reg_opcodeop0_1_rst : string := "RST0"; + reg_opcodeop1_1_clk : string := "NONE"; + reg_opcodein_0_clk : string := "NONE"; + reg_opcodein_0_ce : string := "CE0"; + reg_opcodein_0_rst : string := "RST0"; + reg_opcodein_1_clk : string := "NONE"; + reg_opcodein_1_ce : string := "CE0"; + reg_opcodein_1_rst : string := "RST0"; + reg_output0_clk : string := "NONE"; + reg_output0_ce : string := "CE0"; + reg_output0_rst : string := "RST0"; + reg_output1_clk : string := "NONE"; + reg_output1_ce : string := "CE0"; + reg_output1_rst : string := "RST0"; + reg_flag_clk : string := "NONE"; + reg_flag_ce : string := "CE0"; + reg_flag_rst : string := "RST0"; + mcpat_source : string := "STATIC"; + maskpat_source : string := "STATIC"; + mask01 : string := "0x00000000000000"; + reg_inputcfb_clk : string := "NONE"; + reg_inputcfb_ce : string := "CE0"; + reg_inputcfb_rst : string := "RST0"; + clk0_div : string := "ENABLED"; + clk1_div : string := "ENABLED"; + clk2_div : string := "ENABLED"; + clk3_div : string := "ENABLED"; + mcpat : string := "0x00000000000000"; + maskpat : string := "0x00000000000000"; + rndpat : string := "0x00000000000000"; + gsr : string := "ENABLED"; + resetmode : string := "SYNC"; + mult9_mode : string := "DISABLED"; + legacy : string := "DISABLED" ); + port ( + ce3 : in std_logic; + ce2 : in std_logic; + ce1 : in std_logic; + ce0 : in std_logic; + clk3 : in std_logic; + clk2 : in std_logic; + clk1 : in std_logic; + clk0 : in std_logic; + rst3 : in std_logic; + rst2 : in std_logic; + rst1 : in std_logic; + rst0 : in std_logic; + signedia : in std_logic; + signedib : in std_logic; + signedcin : in std_logic; + a35 : in std_logic; + a34 : in std_logic; + a33 : in std_logic; + a32 : in std_logic; + a31 : in std_logic; + a30 : in std_logic; + a29 : in std_logic; + a28 : in std_logic; + a27 : in std_logic; + a26 : in std_logic; + a25 : in std_logic; + a24 : in std_logic; + a23 : in std_logic; + a22 : in std_logic; + a21 : in std_logic; + a20 : in std_logic; + a19 : in std_logic; + a18 : in std_logic; + a17 : in std_logic; + a16 : in std_logic; + a15 : in std_logic; + a14 : in std_logic; + a13 : in std_logic; + a12 : in std_logic; + a11 : in std_logic; + a10 : in std_logic; + a9 : in std_logic; + a8 : in std_logic; + a7 : in std_logic; + a6 : in std_logic; + a5 : in std_logic; + a4 : in std_logic; + a3 : in std_logic; + a2 : in std_logic; + a1 : in std_logic; + a0 : in std_logic; + b35 : in std_logic; + b34 : in std_logic; + b33 : in std_logic; + b32 : in std_logic; + b31 : in std_logic; + b30 : in std_logic; + b29 : in std_logic; + b28 : in std_logic; + b27 : in std_logic; + b26 : in std_logic; + b25 : in std_logic; + b24 : in std_logic; + b23 : in std_logic; + b22 : in std_logic; + b21 : in std_logic; + b20 : in std_logic; + b19 : in std_logic; + b18 : in std_logic; + b17 : in std_logic; + b16 : in std_logic; + b15 : in std_logic; + b14 : in std_logic; + b13 : in std_logic; + b12 : in std_logic; + b11 : in std_logic; + b10 : in std_logic; + b9 : in std_logic; + b8 : in std_logic; + b7 : in std_logic; + b6 : in std_logic; + b5 : in std_logic; + b4 : in std_logic; + b3 : in std_logic; + b2 : in std_logic; + b1 : in std_logic; + b0 : in std_logic; + c53 : in std_logic; + c52 : in std_logic; + c51 : in std_logic; + c50 : in std_logic; + c49 : in std_logic; + c48 : in std_logic; + c47 : in std_logic; + c46 : in std_logic; + c45 : in std_logic; + c44 : in std_logic; + c43 : in std_logic; + c42 : in std_logic; + c41 : in std_logic; + c40 : in std_logic; + c39 : in std_logic; + c38 : in std_logic; + c37 : in std_logic; + c36 : in std_logic; + c35 : in std_logic; + c34 : in std_logic; + c33 : in std_logic; + c32 : in std_logic; + c31 : in std_logic; + c30 : in std_logic; + c29 : in std_logic; + c28 : in std_logic; + c27 : in std_logic; + c26 : in std_logic; + c25 : in std_logic; + c24 : in std_logic; + c23 : in std_logic; + c22 : in std_logic; + c21 : in std_logic; + c20 : in std_logic; + c19 : in std_logic; + c18 : in std_logic; + c17 : in std_logic; + c16 : in std_logic; + c15 : in std_logic; + c14 : in std_logic; + c13 : in std_logic; + c12 : in std_logic; + c11 : in std_logic; + c10 : in std_logic; + c9 : in std_logic; + c8 : in std_logic; + c7 : in std_logic; + c6 : in std_logic; + c5 : in std_logic; + c4 : in std_logic; + c3 : in std_logic; + c2 : in std_logic; + c1 : in std_logic; + c0 : in std_logic; + cfb53 : in std_logic; + cfb52 : in std_logic; + cfb51 : in std_logic; + cfb50 : in std_logic; + cfb49 : in std_logic; + cfb48 : in std_logic; + cfb47 : in std_logic; + cfb46 : in std_logic; + cfb45 : in std_logic; + cfb44 : in std_logic; + cfb43 : in std_logic; + cfb42 : in std_logic; + cfb41 : in std_logic; + cfb40 : in std_logic; + cfb39 : in std_logic; + cfb38 : in std_logic; + cfb37 : in std_logic; + cfb36 : in std_logic; + cfb35 : in std_logic; + cfb34 : in std_logic; + cfb33 : in std_logic; + cfb32 : in std_logic; + cfb31 : in std_logic; + cfb30 : in std_logic; + cfb29 : in std_logic; + cfb28 : in std_logic; + cfb27 : in std_logic; + cfb26 : in std_logic; + cfb25 : in std_logic; + cfb24 : in std_logic; + cfb23 : in std_logic; + cfb22 : in std_logic; + cfb21 : in std_logic; + cfb20 : in std_logic; + cfb19 : in std_logic; + cfb18 : in std_logic; + cfb17 : in std_logic; + cfb16 : in std_logic; + cfb15 : in std_logic; + cfb14 : in std_logic; + cfb13 : in std_logic; + cfb12 : in std_logic; + cfb11 : in std_logic; + cfb10 : in std_logic; + cfb9 : in std_logic; + cfb8 : in std_logic; + cfb7 : in std_logic; + cfb6 : in std_logic; + cfb5 : in std_logic; + cfb4 : in std_logic; + cfb3 : in std_logic; + cfb2 : in std_logic; + cfb1 : in std_logic; + cfb0 : in std_logic; + ma35 : in std_logic; + ma34 : in std_logic; + ma33 : in std_logic; + ma32 : in std_logic; + ma31 : in std_logic; + ma30 : in std_logic; + ma29 : in std_logic; + ma28 : in std_logic; + ma27 : in std_logic; + ma26 : in std_logic; + ma25 : in std_logic; + ma24 : in std_logic; + ma23 : in std_logic; + ma22 : in std_logic; + ma21 : in std_logic; + ma20 : in std_logic; + ma19 : in std_logic; + ma18 : in std_logic; + ma17 : in std_logic; + ma16 : in std_logic; + ma15 : in std_logic; + ma14 : in std_logic; + ma13 : in std_logic; + ma12 : in std_logic; + ma11 : in std_logic; + ma10 : in std_logic; + ma9 : in std_logic; + ma8 : in std_logic; + ma7 : in std_logic; + ma6 : in std_logic; + ma5 : in std_logic; + ma4 : in std_logic; + ma3 : in std_logic; + ma2 : in std_logic; + ma1 : in std_logic; + ma0 : in std_logic; + mb35 : in std_logic; + mb34 : in std_logic; + mb33 : in std_logic; + mb32 : in std_logic; + mb31 : in std_logic; + mb30 : in std_logic; + mb29 : in std_logic; + mb28 : in std_logic; + mb27 : in std_logic; + mb26 : in std_logic; + mb25 : in std_logic; + mb24 : in std_logic; + mb23 : in std_logic; + mb22 : in std_logic; + mb21 : in std_logic; + mb20 : in std_logic; + mb19 : in std_logic; + mb18 : in std_logic; + mb17 : in std_logic; + mb16 : in std_logic; + mb15 : in std_logic; + mb14 : in std_logic; + mb13 : in std_logic; + mb12 : in std_logic; + mb11 : in std_logic; + mb10 : in std_logic; + mb9 : in std_logic; + mb8 : in std_logic; + mb7 : in std_logic; + mb6 : in std_logic; + mb5 : in std_logic; + mb4 : in std_logic; + mb3 : in std_logic; + mb2 : in std_logic; + mb1 : in std_logic; + mb0 : in std_logic; + cin53 : in std_logic; + cin52 : in std_logic; + cin51 : in std_logic; + cin50 : in std_logic; + cin49 : in std_logic; + cin48 : in std_logic; + cin47 : in std_logic; + cin46 : in std_logic; + cin45 : in std_logic; + cin44 : in std_logic; + cin43 : in std_logic; + cin42 : in std_logic; + cin41 : in std_logic; + cin40 : in std_logic; + cin39 : in std_logic; + cin38 : in std_logic; + cin37 : in std_logic; + cin36 : in std_logic; + cin35 : in std_logic; + cin34 : in std_logic; + cin33 : in std_logic; + cin32 : in std_logic; + cin31 : in std_logic; + cin30 : in std_logic; + cin29 : in std_logic; + cin28 : in std_logic; + cin27 : in std_logic; + cin26 : in std_logic; + cin25 : in std_logic; + cin24 : in std_logic; + cin23 : in std_logic; + cin22 : in std_logic; + cin21 : in std_logic; + cin20 : in std_logic; + cin19 : in std_logic; + cin18 : in std_logic; + cin17 : in std_logic; + cin16 : in std_logic; + cin15 : in std_logic; + cin14 : in std_logic; + cin13 : in std_logic; + cin12 : in std_logic; + cin11 : in std_logic; + cin10 : in std_logic; + cin9 : in std_logic; + cin8 : in std_logic; + cin7 : in std_logic; + cin6 : in std_logic; + cin5 : in std_logic; + cin4 : in std_logic; + cin3 : in std_logic; + cin2 : in std_logic; + cin1 : in std_logic; + cin0 : in std_logic; + op10 : in std_logic; + op9 : in std_logic; + op8 : in std_logic; + op7 : in std_logic; + op6 : in std_logic; + op5 : in std_logic; + op4 : in std_logic; + op3 : in std_logic; + op2 : in std_logic; + op1 : in std_logic; + op0 : in std_logic; + r53 : out std_logic; + r52 : out std_logic; + r51 : out std_logic; + r50 : out std_logic; + r49 : out std_logic; + r48 : out std_logic; + r47 : out std_logic; + r46 : out std_logic; + r45 : out std_logic; + r44 : out std_logic; + r43 : out std_logic; + r42 : out std_logic; + r41 : out std_logic; + r40 : out std_logic; + r39 : out std_logic; + r38 : out std_logic; + r37 : out std_logic; + r36 : out std_logic; + r35 : out std_logic; + r34 : out std_logic; + r33 : out std_logic; + r32 : out std_logic; + r31 : out std_logic; + r30 : out std_logic; + r29 : out std_logic; + r28 : out std_logic; + r27 : out std_logic; + r26 : out std_logic; + r25 : out std_logic; + r24 : out std_logic; + r23 : out std_logic; + r22 : out std_logic; + r21 : out std_logic; + r20 : out std_logic; + r19 : out std_logic; + r18 : out std_logic; + r17 : out std_logic; + r16 : out std_logic; + r15 : out std_logic; + r14 : out std_logic; + r13 : out std_logic; + r12 : out std_logic; + r11 : out std_logic; + r10 : out std_logic; + r9 : out std_logic; + r8 : out std_logic; + r7 : out std_logic; + r6 : out std_logic; + r5 : out std_logic; + r4 : out std_logic; + r3 : out std_logic; + r2 : out std_logic; + r1 : out std_logic; + r0 : out std_logic; + co53 : out std_logic; + co52 : out std_logic; + co51 : out std_logic; + co50 : out std_logic; + co49 : out std_logic; + co48 : out std_logic; + co47 : out std_logic; + co46 : out std_logic; + co45 : out std_logic; + co44 : out std_logic; + co43 : out std_logic; + co42 : out std_logic; + co41 : out std_logic; + co40 : out std_logic; + co39 : out std_logic; + co38 : out std_logic; + co37 : out std_logic; + co36 : out std_logic; + co35 : out std_logic; + co34 : out std_logic; + co33 : out std_logic; + co32 : out std_logic; + co31 : out std_logic; + co30 : out std_logic; + co29 : out std_logic; + co28 : out std_logic; + co27 : out std_logic; + co26 : out std_logic; + co25 : out std_logic; + co24 : out std_logic; + co23 : out std_logic; + co22 : out std_logic; + co21 : out std_logic; + co20 : out std_logic; + co19 : out std_logic; + co18 : out std_logic; + co17 : out std_logic; + co16 : out std_logic; + co15 : out std_logic; + co14 : out std_logic; + co13 : out std_logic; + co12 : out std_logic; + co11 : out std_logic; + co10 : out std_logic; + co9 : out std_logic; + co8 : out std_logic; + co7 : out std_logic; + co6 : out std_logic; + co5 : out std_logic; + co4 : out std_logic; + co3 : out std_logic; + co2 : out std_logic; + co1 : out std_logic; + co0 : out std_logic; + eqz : out std_logic; + eqzm : out std_logic; + eqom : out std_logic; + eqpat : out std_logic; + eqpatb : out std_logic; + over : out std_logic; + under : out std_logic; + overunder : out std_logic; + signedr : out std_logic ); +end component; + +component pradd9a is + generic ( + reg_inputa_clk : string := "NONE"; + reg_inputa_ce : string := "CE0"; + reg_inputa_rst : string := "RST0"; + reg_inputb_clk : string := "NONE"; + reg_inputb_ce : string := "CE0"; + reg_inputb_rst : string := "RST0"; + reg_inputc_clk : string := "NONE"; + reg_inputc_ce : string := "CE0"; + reg_inputc_rst : string := "RST0"; + reg_oppre_clk : string := "NONE"; + reg_oppre_ce : string := "CE0"; + reg_oppre_rst : string := "RST0"; + clk0_div : string := "ENABLED"; + clk1_div : string := "ENABLED"; + clk2_div : string := "ENABLED"; + clk3_div : string := "ENABLED"; + highspeed_clk : string := "NONE"; + gsr : string := "ENABLED"; + cas_match_reg : string := "FALSE"; + sourcea_mode : string := "A_SHIFT"; + sourceb_mode : string := "SHIFT"; + fb_mux : string := "SHIFT"; + resetmode : string := "SYNC"; + symmetry_mode : string := "DIRECT" ); + port ( + pa8 : in std_logic; + pa7 : in std_logic; + pa6 : in std_logic; + pa5 : in std_logic; + pa4 : in std_logic; + pa3 : in std_logic; + pa2 : in std_logic; + pa1 : in std_logic; + pa0 : in std_logic; + pb8 : in std_logic; + pb7 : in std_logic; + pb6 : in std_logic; + pb5 : in std_logic; + pb4 : in std_logic; + pb3 : in std_logic; + pb2 : in std_logic; + pb1 : in std_logic; + pb0 : in std_logic; + sria8 : in std_logic; + sria7 : in std_logic; + sria6 : in std_logic; + sria5 : in std_logic; + sria4 : in std_logic; + sria3 : in std_logic; + sria2 : in std_logic; + sria1 : in std_logic; + sria0 : in std_logic; + srib8 : in std_logic; + srib7 : in std_logic; + srib6 : in std_logic; + srib5 : in std_logic; + srib4 : in std_logic; + srib3 : in std_logic; + srib2 : in std_logic; + srib1 : in std_logic; + srib0 : in std_logic; + c8 : in std_logic; + c7 : in std_logic; + c6 : in std_logic; + c5 : in std_logic; + c4 : in std_logic; + c3 : in std_logic; + c2 : in std_logic; + c1 : in std_logic; + c0 : in std_logic; + sourcea : in std_logic; + oppre : in std_logic; + clk3 : in std_logic; + clk2 : in std_logic; + clk1 : in std_logic; + clk0 : in std_logic; + ce3 : in std_logic; + ce2 : in std_logic; + ce1 : in std_logic; + ce0 : in std_logic; + rst3 : in std_logic; + rst2 : in std_logic; + rst1 : in std_logic; + rst0 : in std_logic; + sroa8 : out std_logic; + sroa7 : out std_logic; + sroa6 : out std_logic; + sroa5 : out std_logic; + sroa4 : out std_logic; + sroa3 : out std_logic; + sroa2 : out std_logic; + sroa1 : out std_logic; + sroa0 : out std_logic; + srob8 : out std_logic; + srob7 : out std_logic; + srob6 : out std_logic; + srob5 : out std_logic; + srob4 : out std_logic; + srob3 : out std_logic; + srob2 : out std_logic; + srob1 : out std_logic; + srob0 : out std_logic; + po8 : out std_logic; + po7 : out std_logic; + po6 : out std_logic; + po5 : out std_logic; + po4 : out std_logic; + po3 : out std_logic; + po2 : out std_logic; + po1 : out std_logic; + po0 : out std_logic ); +end component; + +component pradd18a is + generic ( + reg_inputa_clk : string := "NONE"; + reg_inputa_ce : string := "CE0"; + reg_inputa_rst : string := "RST0"; + reg_inputb_clk : string := "NONE"; + reg_inputb_ce : string := "CE0"; + reg_inputb_rst : string := "RST0"; + reg_inputc_clk : string := "NONE"; + reg_inputc_ce : string := "CE0"; + reg_inputc_rst : string := "RST0"; + reg_oppre_clk : string := "NONE"; + reg_oppre_ce : string := "CE0"; + reg_oppre_rst : string := "RST0"; + clk0_div : string := "ENABLED"; + clk1_div : string := "ENABLED"; + clk2_div : string := "ENABLED"; + clk3_div : string := "ENABLED"; + highspeed_clk : string := "NONE"; + gsr : string := "ENABLED"; + cas_match_reg : string := "FALSE"; + sourcea_mode : string := "A_SHIFT"; + sourceb_mode : string := "SHIFT"; + fb_mux : string := "SHIFT"; + resetmode : string := "SYNC"; + symmetry_mode : string := "DIRECT" ); + port ( + pa17 : in std_logic; + pa16 : in std_logic; + pa15 : in std_logic; + pa14 : in std_logic; + pa13 : in std_logic; + pa12 : in std_logic; + pa11 : in std_logic; + pa10 : in std_logic; + pa9 : in std_logic; + pa8 : in std_logic; + pa7 : in std_logic; + pa6 : in std_logic; + pa5 : in std_logic; + pa4 : in std_logic; + pa3 : in std_logic; + pa2 : in std_logic; + pa1 : in std_logic; + pa0 : in std_logic; + pb17 : in std_logic; + pb16 : in std_logic; + pb15 : in std_logic; + pb14 : in std_logic; + pb13 : in std_logic; + pb12 : in std_logic; + pb11 : in std_logic; + pb10 : in std_logic; + pb9 : in std_logic; + pb8 : in std_logic; + pb7 : in std_logic; + pb6 : in std_logic; + pb5 : in std_logic; + pb4 : in std_logic; + pb3 : in std_logic; + pb2 : in std_logic; + pb1 : in std_logic; + pb0 : in std_logic; + sria17 : in std_logic; + sria16 : in std_logic; + sria15 : in std_logic; + sria14 : in std_logic; + sria13 : in std_logic; + sria12 : in std_logic; + sria11 : in std_logic; + sria10 : in std_logic; + sria9 : in std_logic; + sria8 : in std_logic; + sria7 : in std_logic; + sria6 : in std_logic; + sria5 : in std_logic; + sria4 : in std_logic; + sria3 : in std_logic; + sria2 : in std_logic; + sria1 : in std_logic; + sria0 : in std_logic; + srib17 : in std_logic; + srib16 : in std_logic; + srib15 : in std_logic; + srib14 : in std_logic; + srib13 : in std_logic; + srib12 : in std_logic; + srib11 : in std_logic; + srib10 : in std_logic; + srib9 : in std_logic; + srib8 : in std_logic; + srib7 : in std_logic; + srib6 : in std_logic; + srib5 : in std_logic; + srib4 : in std_logic; + srib3 : in std_logic; + srib2 : in std_logic; + srib1 : in std_logic; + srib0 : in std_logic; + c17 : in std_logic; + c16 : in std_logic; + c15 : in std_logic; + c14 : in std_logic; + c13 : in std_logic; + c12 : in std_logic; + c11 : in std_logic; + c10 : in std_logic; + c9 : in std_logic; + c8 : in std_logic; + c7 : in std_logic; + c6 : in std_logic; + c5 : in std_logic; + c4 : in std_logic; + c3 : in std_logic; + c2 : in std_logic; + c1 : in std_logic; + c0 : in std_logic; + sourcea : in std_logic; + oppre : in std_logic; + clk3 : in std_logic; + clk2 : in std_logic; + clk1 : in std_logic; + clk0 : in std_logic; + ce3 : in std_logic; + ce2 : in std_logic; + ce1 : in std_logic; + ce0 : in std_logic; + rst3 : in std_logic; + rst2 : in std_logic; + rst1 : in std_logic; + rst0 : in std_logic; + sroa17 : out std_logic; + sroa16 : out std_logic; + sroa15 : out std_logic; + sroa14 : out std_logic; + sroa13 : out std_logic; + sroa12 : out std_logic; + sroa11 : out std_logic; + sroa10 : out std_logic; + sroa9 : out std_logic; + sroa8 : out std_logic; + sroa7 : out std_logic; + sroa6 : out std_logic; + sroa5 : out std_logic; + sroa4 : out std_logic; + sroa3 : out std_logic; + sroa2 : out std_logic; + sroa1 : out std_logic; + sroa0 : out std_logic; + srob17 : out std_logic; + srob16 : out std_logic; + srob15 : out std_logic; + srob14 : out std_logic; + srob13 : out std_logic; + srob12 : out std_logic; + srob11 : out std_logic; + srob10 : out std_logic; + srob9 : out std_logic; + srob8 : out std_logic; + srob7 : out std_logic; + srob6 : out std_logic; + srob5 : out std_logic; + srob4 : out std_logic; + srob3 : out std_logic; + srob2 : out std_logic; + srob1 : out std_logic; + srob0 : out std_logic; + po17 : out std_logic; + po16 : out std_logic; + po15 : out std_logic; + po14 : out std_logic; + po13 : out std_logic; + po12 : out std_logic; + po11 : out std_logic; + po10 : out std_logic; + po9 : out std_logic; + po8 : out std_logic; + po7 : out std_logic; + po6 : out std_logic; + po5 : out std_logic; + po4 : out std_logic; + po3 : out std_logic; + po2 : out std_logic; + po1 : out std_logic; + po0 : out std_logic ); +end component; + +component dp16kd is + generic ( + data_width_a : integer := 18; + data_width_b : integer := 18; + regmode_a : string := "NOREG"; + regmode_b : string := "NOREG"; + resetmode : string := "SYNC"; + async_reset_release : string := "SYNC"; + writemode_a : string := "NORMAL"; + writemode_b : string := "NORMAL"; + csdecode_a : string := "0b000"; + csdecode_b : string := "0b000"; + gsr : string := "ENABLED"; + initval_00 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_01 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_02 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_03 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_04 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_05 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_06 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_07 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_08 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_09 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_0a : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_0b : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_0c : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_0d : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_0e : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_0f : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_10 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_11 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_12 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_13 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_14 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_15 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_16 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_17 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_18 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_19 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_1a : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_1b : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_1c : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_1d : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_1e : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_1f : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_20 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_21 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_22 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_23 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_24 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_25 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_26 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_27 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_28 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_29 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_2a : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_2b : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_2c : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_2d : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_2e : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_2f : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_30 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_31 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_32 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_33 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_34 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_35 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_36 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_37 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_38 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_39 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_3a : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_3b : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_3c : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_3d : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_3e : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_3f : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + init_data : string := "STATIC" ); + port ( + dia17 : in std_logic; + dia16 : in std_logic; + dia15 : in std_logic; + dia14 : in std_logic; + dia13 : in std_logic; + dia12 : in std_logic; + dia11 : in std_logic; + dia10 : in std_logic; + dia9 : in std_logic; + dia8 : in std_logic; + dia7 : in std_logic; + dia6 : in std_logic; + dia5 : in std_logic; + dia4 : in std_logic; + dia3 : in std_logic; + dia2 : in std_logic; + dia1 : in std_logic; + dia0 : in std_logic; + ada13 : in std_logic; + ada12 : in std_logic; + ada11 : in std_logic; + ada10 : in std_logic; + ada9 : in std_logic; + ada8 : in std_logic; + ada7 : in std_logic; + ada6 : in std_logic; + ada5 : in std_logic; + ada4 : in std_logic; + ada3 : in std_logic; + ada2 : in std_logic; + ada1 : in std_logic; + ada0 : in std_logic; + cea : in std_logic; + ocea : in std_logic; + clka : in std_logic; + wea : in std_logic; + csa2 : in std_logic; + csa1 : in std_logic; + csa0 : in std_logic; + rsta : in std_logic; + dib17 : in std_logic; + dib16 : in std_logic; + dib15 : in std_logic; + dib14 : in std_logic; + dib13 : in std_logic; + dib12 : in std_logic; + dib11 : in std_logic; + dib10 : in std_logic; + dib9 : in std_logic; + dib8 : in std_logic; + dib7 : in std_logic; + dib6 : in std_logic; + dib5 : in std_logic; + dib4 : in std_logic; + dib3 : in std_logic; + dib2 : in std_logic; + dib1 : in std_logic; + dib0 : in std_logic; + adb13 : in std_logic; + adb12 : in std_logic; + adb11 : in std_logic; + adb10 : in std_logic; + adb9 : in std_logic; + adb8 : in std_logic; + adb7 : in std_logic; + adb6 : in std_logic; + adb5 : in std_logic; + adb4 : in std_logic; + adb3 : in std_logic; + adb2 : in std_logic; + adb1 : in std_logic; + adb0 : in std_logic; + ceb : in std_logic; + oceb : in std_logic; + clkb : in std_logic; + web : in std_logic; + csb2 : in std_logic; + csb1 : in std_logic; + csb0 : in std_logic; + rstb : in std_logic; + doa17 : out std_logic; + doa16 : out std_logic; + doa15 : out std_logic; + doa14 : out std_logic; + doa13 : out std_logic; + doa12 : out std_logic; + doa11 : out std_logic; + doa10 : out std_logic; + doa9 : out std_logic; + doa8 : out std_logic; + doa7 : out std_logic; + doa6 : out std_logic; + doa5 : out std_logic; + doa4 : out std_logic; + doa3 : out std_logic; + doa2 : out std_logic; + doa1 : out std_logic; + doa0 : out std_logic; + dob17 : out std_logic; + dob16 : out std_logic; + dob15 : out std_logic; + dob14 : out std_logic; + dob13 : out std_logic; + dob12 : out std_logic; + dob11 : out std_logic; + dob10 : out std_logic; + dob9 : out std_logic; + dob8 : out std_logic; + dob7 : out std_logic; + dob6 : out std_logic; + dob5 : out std_logic; + dob4 : out std_logic; + dob3 : out std_logic; + dob2 : out std_logic; + dob1 : out std_logic; + dob0 : out std_logic ); +end component; + +component pdpw16kd is + generic ( + data_width_w : integer := 36; + data_width_r : integer := 36; + gsr : string := "ENABLED"; + regmode : string := "NOREG"; + resetmode : string := "SYNC"; + async_reset_release : string := "SYNC"; + csdecode_w : string := "0b000"; + csdecode_r : string := "0b000"; + initval_00 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_01 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_02 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_03 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_04 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_05 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_06 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_07 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_08 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_09 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_0a : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_0b : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_0c : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_0d : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_0e : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_0f : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_10 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_11 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_12 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_13 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_14 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_15 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_16 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_17 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_18 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_19 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_1a : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_1b : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_1c : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_1d : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_1e : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_1f : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_20 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_21 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_22 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_23 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_24 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_25 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_26 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_27 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_28 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_29 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_2a : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_2b : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_2c : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_2d : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_2e : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_2f : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_30 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_31 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_32 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_33 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_34 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_35 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_36 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_37 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_38 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_39 : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_3a : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_3b : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_3c : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_3d : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_3e : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + initval_3f : string := "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000"; + init_data : string := "STATIC" ); + port ( + di35 : in std_logic; + di34 : in std_logic; + di33 : in std_logic; + di32 : in std_logic; + di31 : in std_logic; + di30 : in std_logic; + di29 : in std_logic; + di28 : in std_logic; + di27 : in std_logic; + di26 : in std_logic; + di25 : in std_logic; + di24 : in std_logic; + di23 : in std_logic; + di22 : in std_logic; + di21 : in std_logic; + di20 : in std_logic; + di19 : in std_logic; + di18 : in std_logic; + di17 : in std_logic; + di16 : in std_logic; + di15 : in std_logic; + di14 : in std_logic; + di13 : in std_logic; + di12 : in std_logic; + di11 : in std_logic; + di10 : in std_logic; + di9 : in std_logic; + di8 : in std_logic; + di7 : in std_logic; + di6 : in std_logic; + di5 : in std_logic; + di4 : in std_logic; + di3 : in std_logic; + di2 : in std_logic; + di1 : in std_logic; + di0 : in std_logic; + adw8 : in std_logic; + adw7 : in std_logic; + adw6 : in std_logic; + adw5 : in std_logic; + adw4 : in std_logic; + adw3 : in std_logic; + adw2 : in std_logic; + adw1 : in std_logic; + adw0 : in std_logic; + be3 : in std_logic; + be2 : in std_logic; + be1 : in std_logic; + be0 : in std_logic; + cew : in std_logic; + clkw : in std_logic; + csw2 : in std_logic; + csw1 : in std_logic; + csw0 : in std_logic; + adr13 : in std_logic; + adr12 : in std_logic; + adr11 : in std_logic; + adr10 : in std_logic; + adr9 : in std_logic; + adr8 : in std_logic; + adr7 : in std_logic; + adr6 : in std_logic; + adr5 : in std_logic; + adr4 : in std_logic; + adr3 : in std_logic; + adr2 : in std_logic; + adr1 : in std_logic; + adr0 : in std_logic; + cer : in std_logic; + ocer : in std_logic; + clkr : in std_logic; + csr2 : in std_logic; + csr1 : in std_logic; + csr0 : in std_logic; + rst : in std_logic; + do35 : out std_logic; + do34 : out std_logic; + do33 : out std_logic; + do32 : out std_logic; + do31 : out std_logic; + do30 : out std_logic; + do29 : out std_logic; + do28 : out std_logic; + do27 : out std_logic; + do26 : out std_logic; + do25 : out std_logic; + do24 : out std_logic; + do23 : out std_logic; + do22 : out std_logic; + do21 : out std_logic; + do20 : out std_logic; + do19 : out std_logic; + do18 : out std_logic; + do17 : out std_logic; + do16 : out std_logic; + do15 : out std_logic; + do14 : out std_logic; + do13 : out std_logic; + do12 : out std_logic; + do11 : out std_logic; + do10 : out std_logic; + do9 : out std_logic; + do8 : out std_logic; + do7 : out std_logic; + do6 : out std_logic; + do5 : out std_logic; + do4 : out std_logic; + do3 : out std_logic; + do2 : out std_logic; + do1 : out std_logic; + do0 : out std_logic ); +end component; + +component dpr16x4c is + generic ( + initval : string := "0x0000000000000000" ); + port ( + di3 : in std_logic; + di2 : in std_logic; + di1 : in std_logic; + di0 : in std_logic; + wad3 : in std_logic; + wad2 : in std_logic; + wad1 : in std_logic; + wad0 : in std_logic; + wck : in std_logic; + wre : in std_logic; + rad3 : in std_logic; + rad2 : in std_logic; + rad1 : in std_logic; + rad0 : in std_logic; + do3 : out std_logic; + do2 : out std_logic; + do1 : out std_logic; + do0 : out std_logic ); +end component; + +component spr16x4c is + generic ( + initval : string := "0x0000000000000000" ); + port ( + di3 : in std_logic; + di2 : in std_logic; + di1 : in std_logic; + di0 : in std_logic; + ad3 : in std_logic; + ad2 : in std_logic; + ad1 : in std_logic; + ad0 : in std_logic; + ck : in std_logic; + wre : in std_logic; + do3 : out std_logic; + do2 : out std_logic; + do1 : out std_logic; + do0 : out std_logic ); +end component; + +component dtr is + generic ( + dtr_temp : integer := 25 ); + port ( + startpulse : in std_logic; + dtrout7 : out std_logic; + dtrout6 : out std_logic; + dtrout5 : out std_logic; + dtrout4 : out std_logic; + dtrout3 : out std_logic; + dtrout2 : out std_logic; + dtrout1 : out std_logic; + dtrout0 : out std_logic ); +end component; + +component clkdivf is + generic ( + gsr : string := "DISABLED"; + div : string := "2.0" ); + port ( + clki : in std_logic; + rst : in std_logic; + alignwd : in std_logic; + cdivx : out std_logic ); +end component; + +component pcsclkdiv is + generic ( + gsr : string := "DISABLED" ); + port ( + clki : in std_logic; + rst : in std_logic; + sel2 : in std_logic; + sel1 : in std_logic; + sel0 : in std_logic; + cdiv1 : out std_logic; + cdivx : out std_logic ); +end component; + +component dcsc is + generic ( + dcsmode : string := "POS" ); + port ( + clk1 : in std_logic; + clk0 : in std_logic; + sel1 : in std_logic; + sel0 : in std_logic; + modesel : in std_logic; + dcsout : out std_logic ); +end component; + +component eclksyncb is + port ( + eclki : in std_logic; + stop : in std_logic; + eclko : out std_logic ); +end component; + +component eclkbridgecs is + port ( + clk0 : in std_logic; + clk1 : in std_logic; + sel : in std_logic; + ecsout : out std_logic ); +end component; + +component dcca is + port ( + clki : in std_logic; + ce : in std_logic; + clko : out std_logic ); +end component; + +component oscg is + generic ( + div : integer := 128 ); + port ( + osc : out std_logic ); +end component; + +component ehxplll is + generic ( + clki_div : integer := 1; + clkfb_div : integer := 1; + clkop_div : integer := 8; + clkos_div : integer := 8; + clkos2_div : integer := 8; + clkos3_div : integer := 8; + clkop_enable : string := "ENABLED"; + clkos_enable : string := "DISABLED"; + clkos2_enable : string := "DISABLED"; + clkos3_enable : string := "DISABLED"; + clkop_cphase : integer := 0; + clkos_cphase : integer := 0; + clkos2_cphase : integer := 0; + clkos3_cphase : integer := 0; + clkop_fphase : integer := 0; + clkos_fphase : integer := 0; + clkos2_fphase : integer := 0; + clkos3_fphase : integer := 0; + feedbk_path : string := "CLKOP"; + clkop_trim_pol : string := "RISING"; + clkop_trim_delay : integer := 0; + clkos_trim_pol : string := "RISING"; + clkos_trim_delay : integer := 0; + outdivider_muxa : string := "DIVA"; + outdivider_muxb : string := "DIVB"; + outdivider_muxc : string := "DIVC"; + outdivider_muxd : string := "DIVD"; + pll_lock_mode : integer := 0; + pll_lock_delay : integer := 200; + stdby_enable : string := "DISABLED"; + refin_reset : string := "DISABLED"; + sync_enable : string := "DISABLED"; + int_lock_sticky : string := "ENABLED"; + dphase_source : string := "DISABLED"; + pllrst_ena : string := "DISABLED"; + intfb_wake : string := "DISABLED" ); + port ( + clki : in std_logic; + clkfb : in std_logic; + phasesel1 : in std_logic; + phasesel0 : in std_logic; + phasedir : in std_logic; + phasestep : in std_logic; + phaseloadreg : in std_logic; + stdby : in std_logic; + pllwakesync : in std_logic; + rst : in std_logic; + enclkop : in std_logic; + enclkos : in std_logic; + enclkos2 : in std_logic; + enclkos3 : in std_logic; + clkop : out std_logic; + clkos : out std_logic; + clkos2 : out std_logic; + clkos3 : out std_logic; + lock : out std_logic; + intlock : out std_logic; + refclk : out std_logic; + clkintfb : out std_logic ); +end component; + +component pllrefcs is + port ( + clk0 : in std_logic; + clk1 : in std_logic; + sel : in std_logic; + pllcsout : out std_logic ); +end component; + +component bcinrd is + generic ( + bankid : integer := 2 ); + port ( + inrdeni : in std_logic ); +end component; + +component bclvdsob is + generic ( + bankid : integer := 2 ); + port ( + lvdseni : in std_logic ); +end component; + +component inrdb is + port ( + d : in std_logic; + e : in std_logic; + q : out std_logic ); +end component; + +component lvdsob is + port ( + d : in std_logic; + e : in std_logic; + q : out std_logic ); +end component; + +component start is + port ( + startclk : in std_logic ); +end component; + +component usrmclk is + port ( + usrmclki : in std_logic; + usrmclkts : in std_logic ); +end component; + +component delayf is + generic ( + del_mode : string := "USER_DEFINED"; + del_value : integer := 0 ); + port ( + a : in std_logic; + loadn : in std_logic; + move : in std_logic; + direction : in std_logic; + z : out std_logic; + cflag : out std_logic ); +end component; + +component delayg is + generic ( + del_mode : string := "USER_DEFINED"; + del_value : integer := 0 ); + port ( + a : in std_logic; + z : out std_logic ); +end component; + +component dqsbufm is + generic ( + dqs_li_del_val : integer := 4; + dqs_li_del_adj : string := "FACTORYONLY"; + dqs_lo_del_val : integer := 0; + dqs_lo_del_adj : string := "FACTORYONLY"; + gsr : string := "ENABLED" ); + port ( + dqsi : in std_logic; + read1 : in std_logic; + read0 : in std_logic; + readclksel2 : in std_logic; + readclksel1 : in std_logic; + readclksel0 : in std_logic; + ddrdel : in std_logic; + eclk : in std_logic; + sclk : in std_logic; + rst : in std_logic; + dyndelay7 : in std_logic; + dyndelay6 : in std_logic; + dyndelay5 : in std_logic; + dyndelay4 : in std_logic; + dyndelay3 : in std_logic; + dyndelay2 : in std_logic; + dyndelay1 : in std_logic; + dyndelay0 : in std_logic; + pause : in std_logic; + rdloadn : in std_logic; + rdmove : in std_logic; + rddirection : in std_logic; + wrloadn : in std_logic; + wrmove : in std_logic; + wrdirection : in std_logic; + dqsr90 : out std_logic; + dqsw : out std_logic; + dqsw270 : out std_logic; + rdpntr2 : out std_logic; + rdpntr1 : out std_logic; + rdpntr0 : out std_logic; + wrpntr2 : out std_logic; + wrpntr1 : out std_logic; + wrpntr0 : out std_logic; + datavalid : out std_logic; + burstdet : out std_logic; + rdcflag : out std_logic; + wrcflag : out std_logic ); +end component; + +component ddrdlla is + generic ( + force_max_delay : string := "NO"; + lock_cyc : integer := 200; + gsr : string := "ENABLED" ); + port ( + clk : in std_logic; + rst : in std_logic; + uddcntln : in std_logic; + freeze : in std_logic; + ddrdel : out std_logic; + lock : out std_logic; + dcntl7 : out std_logic; + dcntl6 : out std_logic; + dcntl5 : out std_logic; + dcntl4 : out std_logic; + dcntl3 : out std_logic; + dcntl2 : out std_logic; + dcntl1 : out std_logic; + dcntl0 : out std_logic ); +end component; + +component dlldeld is + port ( + a : in std_logic; + ddrdel : in std_logic; + loadn : in std_logic; + move : in std_logic; + direction : in std_logic; + z : out std_logic; + cflag : out std_logic ); +end component; + +component iddrx1f is + generic ( + gsr : string := "ENABLED" ); + port ( + d : in std_logic; + sclk : in std_logic; + rst : in std_logic; + q0 : out std_logic; + q1 : out std_logic ); +end component; + +component iddrx2f is + generic ( + gsr : string := "ENABLED" ); + port ( + d : in std_logic; + sclk : in std_logic; + eclk : in std_logic; + rst : in std_logic; + alignwd : in std_logic; + q3 : out std_logic; + q2 : out std_logic; + q1 : out std_logic; + q0 : out std_logic ); +end component; + +component iddr71b is + generic ( + gsr : string := "ENABLED" ); + port ( + d : in std_logic; + sclk : in std_logic; + eclk : in std_logic; + rst : in std_logic; + alignwd : in std_logic; + q6 : out std_logic; + q5 : out std_logic; + q4 : out std_logic; + q3 : out std_logic; + q2 : out std_logic; + q1 : out std_logic; + q0 : out std_logic ); +end component; + +component oddrx1f is + generic ( + gsr : string := "ENABLED" ); + port ( + sclk : in std_logic; + rst : in std_logic; + d0 : in std_logic; + d1 : in std_logic; + q : out std_logic ); +end component; + +component oddrx2f is + generic ( + gsr : string := "ENABLED" ); + port ( + sclk : in std_logic; + eclk : in std_logic; + rst : in std_logic; + d3 : in std_logic; + d2 : in std_logic; + d1 : in std_logic; + d0 : in std_logic; + q : out std_logic ); +end component; + +component oddr71b is + generic ( + gsr : string := "ENABLED" ); + port ( + sclk : in std_logic; + eclk : in std_logic; + rst : in std_logic; + d6 : in std_logic; + d5 : in std_logic; + d4 : in std_logic; + d3 : in std_logic; + d2 : in std_logic; + d1 : in std_logic; + d0 : in std_logic; + q : out std_logic ); +end component; + +component imipi is + port ( + a : in std_logic; + an : in std_logic; + hssel : in std_logic; + ohsols1 : out std_logic; + ols0 : out std_logic ); +end component; + +component iddrx2dqa is + generic ( + gsr : string := "ENABLED" ); + port ( + sclk : in std_logic; + eclk : in std_logic; + dqsr90 : in std_logic; + d : in std_logic; + rst : in std_logic; + rdpntr2 : in std_logic; + rdpntr1 : in std_logic; + rdpntr0 : in std_logic; + wrpntr2 : in std_logic; + wrpntr1 : in std_logic; + wrpntr0 : in std_logic; + q3 : out std_logic; + q2 : out std_logic; + q1 : out std_logic; + q0 : out std_logic; + qwl : out std_logic ); +end component; + +component oddrx2dqa is + generic ( + gsr : string := "ENABLED" ); + port ( + d3 : in std_logic; + d2 : in std_logic; + d1 : in std_logic; + d0 : in std_logic; + dqsw270 : in std_logic; + sclk : in std_logic; + eclk : in std_logic; + rst : in std_logic; + q : out std_logic ); +end component; + +component oddrx2dqsb is + generic ( + gsr : string := "ENABLED" ); + port ( + d3 : in std_logic; + d2 : in std_logic; + d1 : in std_logic; + d0 : in std_logic; + sclk : in std_logic; + eclk : in std_logic; + dqsw : in std_logic; + rst : in std_logic; + q : out std_logic ); +end component; + +component tshx2dqa is + generic ( + gsr : string := "ENABLED"; + regset : string := "SET" ); + port ( + t1 : in std_logic; + t0 : in std_logic; + sclk : in std_logic; + eclk : in std_logic; + dqsw270 : in std_logic; + rst : in std_logic; + q : out std_logic ); +end component; + +component tshx2dqsa is + generic ( + gsr : string := "ENABLED"; + regset : string := "SET" ); + port ( + t1 : in std_logic; + t0 : in std_logic; + sclk : in std_logic; + eclk : in std_logic; + dqsw : in std_logic; + rst : in std_logic; + q : out std_logic ); +end component; + +component oshx2a is + generic ( + gsr : string := "ENABLED" ); + port ( + d1 : in std_logic; + d0 : in std_logic; + sclk : in std_logic; + eclk : in std_logic; + rst : in std_logic; + q : out std_logic ); +end component; + +component jtagg is + generic ( + er1 : string := "ENABLED"; + er2 : string := "ENABLED" ); + port ( + tck : in std_logic; + tms : in std_logic; + tdi : in std_logic; + jtdo2 : in std_logic; + jtdo1 : in std_logic; + tdo : out std_logic; + jtdi : out std_logic; + jtck : out std_logic; + jrti2 : out std_logic; + jrti1 : out std_logic; + jshift : out std_logic; + jupdate : out std_logic; + jrstn : out std_logic; + jce2 : out std_logic; + jce1 : out std_logic ); +end component; + +component sedga is + generic ( + sed_clk_freq : string := "2.4"; + checkalways : string := "DISABLED"; + dev_density : string := "85KUM" ); + port ( + sedenable : in std_logic; + sedstart : in std_logic; + sedfrcerr : in std_logic; + sederr : out std_logic; + seddone : out std_logic; + sedinprog : out std_logic; + sedclkout : out std_logic ); +end component; + +component extrefb is + generic ( + refck_pwdnb : string := "DONTCARE"; + refck_rterm : string := "DONTCARE"; + refck_dcbias_en : string := "DONTCARE" ); + port ( + refclkp : in std_logic; + refclkn : in std_logic; + refclko : out std_logic ); +end component; + +component pur is + generic ( + rst_pulse : integer := 1 ); + port ( + pur : in std_logic ); +end component; + +component bufba is + port ( + a : in std_logic; + z : out std_logic ); +end component; + +component obzpd is + port ( + i : in std_logic; + t : in std_logic; + o : out std_logic ); +end component; + +component slogicb is + generic ( + timingcheckson : boolean := true; + xon : boolean := false; + msgon : boolean := true; + instancepath : string := "SLOGICB"; + gsr : string := "ENABLED"; + srmode : string := "LSR_OVER_CE"; + m1mux : string := "VLO"; + m0mux : string := "VLO"; + lsrmux : string := "VLO"; + cemux : string := "VLO"; + clkmux : string := "VLO"; + reg1_sd : string := "VLO"; + reg0_sd : string := "VLO"; + lut1_initval : bit_vector := "0000000000000000"; + lut0_initval : bit_vector := "0000000000000000"; + reg1_regset : string := "RESET"; + reg0_regset : string := "RESET"; + lsronmux : string := "LSRMUX"; + check_m1 : boolean := false; + check_di1 : boolean := false; + check_di0 : boolean := false; + check_m0 : boolean := false; + check_ce : boolean := false; + check_lsr : boolean := false ); + port ( + m1 : in std_ulogic; + fxa : in std_ulogic; + fxb : in std_ulogic; + a1 : in std_ulogic; + b1 : in std_ulogic; + c1 : in std_ulogic; + d1 : in std_ulogic; + di1 : in std_ulogic; + di0 : in std_ulogic; + a0 : in std_ulogic; + b0 : in std_ulogic; + c0 : in std_ulogic; + d0 : in std_ulogic; + m0 : in std_ulogic; + ce : in std_ulogic; + clk : in std_ulogic; + lsr : in std_ulogic; + ofx1 : out std_ulogic; + f1 : out std_ulogic; + q1 : out std_ulogic; + ofx0 : out std_ulogic; + f0 : out std_ulogic; + q0 : out std_ulogic ); +end component; + +component sccu2c is + generic ( + timingcheckson : boolean := true; + xon : boolean := false; + msgon : boolean := true; + instancepath : string := "SCCU2C"; + gsr : string := "ENABLED"; + srmode : string := "LSR_OVER_CE"; + m1mux : string := "VLO"; + m0mux : string := "VLO"; + lsrmux : string := "VLO"; + cemux : string := "VLO"; + clkmux : string := "VLO"; + reg1_sd : string := "VLO"; + reg0_sd : string := "VLO"; + reg1_regset : string := "RESET"; + reg0_regset : string := "RESET"; + lsronmux : string := "LSRMUX"; + ccu2_inject1_0 : string := "YES"; + ccu2_inject1_1 : string := "YES"; + init0_initval : std_logic_vector := "0000000000000000"; + init1_initval : std_logic_vector := "0000000000000000"; + check_m1 : boolean := false; + check_di1 : boolean := false; + check_di0 : boolean := false; + check_m0 : boolean := false; + check_ce : boolean := false; + check_lsr : boolean := false ); + port ( + m1 : in std_ulogic; + a1 : in std_ulogic; + b1 : in std_ulogic; + c1 : in std_ulogic; + d1 : in std_ulogic; + di1 : in std_ulogic; + di0 : in std_ulogic; + a0 : in std_ulogic; + b0 : in std_ulogic; + c0 : in std_ulogic; + d0 : in std_ulogic; + fci : in std_ulogic; + m0 : in std_ulogic; + ce : in std_ulogic; + clk : in std_ulogic; + lsr : in std_ulogic; + fco : out std_ulogic; + f1 : out std_ulogic; + q1 : out std_ulogic; + f0 : out std_ulogic; + q0 : out std_ulogic ); +end component; + +component sramwb is + generic ( + timingcheckson : boolean := true; + xon : boolean := false; + msgon : boolean := true; + instancepath : string := "SRAMWB"; + wd0mux : string := "VLO"; + wd1mux : string := "VLO"; + wd2mux : string := "VLO"; + wd3mux : string := "VLO"; + wad0mux : string := "VLO"; + wad1mux : string := "VLO"; + wad2mux : string := "VLO"; + wad3mux : string := "VLO" ); + port ( + a1 : in std_ulogic; + b1 : in std_ulogic; + c1 : in std_ulogic; + d1 : in std_ulogic; + a0 : in std_ulogic; + b0 : in std_ulogic; + c0 : in std_ulogic; + d0 : in std_ulogic; + wdo0 : out std_ulogic; + wdo1 : out std_ulogic; + wdo2 : out std_ulogic; + wdo3 : out std_ulogic; + wado0 : out std_ulogic; + wado1 : out std_ulogic; + wado2 : out std_ulogic; + wado3 : out std_ulogic ); +end component; + +component sdprame is + generic ( + timingcheckson : boolean := true; + xon : boolean := false; + msgon : boolean := true; + instancepath : string := "SDPRAME"; + gsr : string := "ENABLED"; + srmode : string := "LSR_OVER_CE"; + m1mux : string := "VLO"; + m0mux : string := "VLO"; + lsrmux : string := "VLO"; + cemux : string := "VLO"; + clkmux : string := "VLO"; + wremux : string := "VLO"; + wckmux : string := "VLO"; + reg1_sd : string := "VLO"; + reg0_sd : string := "VLO"; + reg1_regset : string := "RESET"; + reg0_regset : string := "RESET"; + lsronmux : string := "LSRMUX"; + initval : string := "0x0000000000000000"; + dpram_rad0 : string := "SIG"; + dpram_rad1 : string := "SIG"; + dpram_rad2 : string := "SIG"; + dpram_rad3 : string := "SIG"; + check_wd1 : boolean := false; + check_wd0 : boolean := false; + check_wad0 : boolean := false; + check_wad1 : boolean := false; + check_wad2 : boolean := false; + check_wad3 : boolean := false; + check_wre : boolean := false; + check_m0 : boolean := false; + check_m1 : boolean := false; + check_ce : boolean := false; + check_lsr : boolean := false; + check_di1 : boolean := false; + check_di0 : boolean := false ); + port ( + m1 : in std_ulogic; + rad0 : in std_ulogic; + rad1 : in std_ulogic; + rad2 : in std_ulogic; + rad3 : in std_ulogic; + wd1 : in std_ulogic; + wd0 : in std_ulogic; + wad0 : in std_ulogic; + wad1 : in std_ulogic; + wad2 : in std_ulogic; + wad3 : in std_ulogic; + wre : in std_ulogic; + wck : in std_ulogic; + m0 : in std_ulogic; + ce : in std_ulogic; + clk : in std_ulogic; + lsr : in std_ulogic; + di1 : in std_ulogic; + di0 : in std_ulogic; + f0 : out std_ulogic; + q0 : out std_ulogic; + f1 : out std_ulogic; + q1 : out std_ulogic ); +end component; + +component dcua is + generic ( + d_macropdb : string := "DONTCARE"; + d_ib_pwdnb : string := "DONTCARE"; + d_xge_mode : string := "DONTCARE"; + d_low_mark : string := "DONTCARE"; + d_high_mark : string := "DONTCARE"; + d_bus8bit_sel : string := "DONTCARE"; + d_cdr_lol_set : string := "DONTCARE"; + d_bitclk_local_en : string := "DONTCARE"; + d_bitclk_nd_en : string := "DONTCARE"; + d_bitclk_from_nd_en : string := "DONTCARE"; + d_sync_local_en : string := "DONTCARE"; + d_sync_nd_en : string := "DONTCARE"; + ch0_uc_mode : string := "DONTCARE"; + ch1_uc_mode : string := "DONTCARE"; + ch0_pcie_mode : string := "DONTCARE"; + ch1_pcie_mode : string := "DONTCARE"; + ch0_rio_mode : string := "DONTCARE"; + ch1_rio_mode : string := "DONTCARE"; + ch0_wa_mode : string := "DONTCARE"; + ch1_wa_mode : string := "DONTCARE"; + ch0_invert_rx : string := "DONTCARE"; + ch1_invert_rx : string := "DONTCARE"; + ch0_invert_tx : string := "DONTCARE"; + ch1_invert_tx : string := "DONTCARE"; + ch0_prbs_selection : string := "DONTCARE"; + ch1_prbs_selection : string := "DONTCARE"; + ch0_ge_an_enable : string := "DONTCARE"; + ch1_ge_an_enable : string := "DONTCARE"; + ch0_prbs_lock : string := "DONTCARE"; + ch1_prbs_lock : string := "DONTCARE"; + ch0_prbs_enable : string := "DONTCARE"; + ch1_prbs_enable : string := "DONTCARE"; + ch0_enable_cg_align : string := "DONTCARE"; + ch1_enable_cg_align : string := "DONTCARE"; + ch0_tx_gear_mode : string := "DONTCARE"; + ch1_tx_gear_mode : string := "DONTCARE"; + ch0_rx_gear_mode : string := "DONTCARE"; + ch1_rx_gear_mode : string := "DONTCARE"; + ch0_pcs_det_time_sel : string := "DONTCARE"; + ch1_pcs_det_time_sel : string := "DONTCARE"; + ch0_pcie_ei_en : string := "DONTCARE"; + ch1_pcie_ei_en : string := "DONTCARE"; + ch0_tx_gear_bypass : string := "DONTCARE"; + ch1_tx_gear_bypass : string := "DONTCARE"; + ch0_enc_bypass : string := "DONTCARE"; + ch1_enc_bypass : string := "DONTCARE"; + ch0_sb_bypass : string := "DONTCARE"; + ch1_sb_bypass : string := "DONTCARE"; + ch0_rx_sb_bypass : string := "DONTCARE"; + ch1_rx_sb_bypass : string := "DONTCARE"; + ch0_wa_bypass : string := "DONTCARE"; + ch1_wa_bypass : string := "DONTCARE"; + ch0_dec_bypass : string := "DONTCARE"; + ch1_dec_bypass : string := "DONTCARE"; + ch0_ctc_bypass : string := "DONTCARE"; + ch1_ctc_bypass : string := "DONTCARE"; + ch0_rx_gear_bypass : string := "DONTCARE"; + ch1_rx_gear_bypass : string := "DONTCARE"; + ch0_lsm_disable : string := "DONTCARE"; + ch1_lsm_disable : string := "DONTCARE"; + ch0_match_2_enable : string := "DONTCARE"; + ch1_match_2_enable : string := "DONTCARE"; + ch0_match_4_enable : string := "DONTCARE"; + ch1_match_4_enable : string := "DONTCARE"; + ch0_min_ipg_cnt : string := "DONTCARE"; + ch1_min_ipg_cnt : string := "DONTCARE"; + ch0_cc_match_1 : string := "DONTCARE"; + ch1_cc_match_1 : string := "DONTCARE"; + ch0_cc_match_2 : string := "DONTCARE"; + ch1_cc_match_2 : string := "DONTCARE"; + ch0_cc_match_3 : string := "DONTCARE"; + ch1_cc_match_3 : string := "DONTCARE"; + ch0_cc_match_4 : string := "DONTCARE"; + ch1_cc_match_4 : string := "DONTCARE"; + ch0_udf_comma_mask : string := "DONTCARE"; + ch1_udf_comma_mask : string := "DONTCARE"; + ch0_udf_comma_a : string := "DONTCARE"; + ch1_udf_comma_a : string := "DONTCARE"; + ch0_udf_comma_b : string := "DONTCARE"; + ch1_udf_comma_b : string := "DONTCARE"; + ch0_rx_dco_ck_div : string := "DONTCARE"; + ch1_rx_dco_ck_div : string := "DONTCARE"; + ch0_rcv_dcc_en : string := "DONTCARE"; + ch1_rcv_dcc_en : string := "DONTCARE"; + ch0_req_lvl_set : string := "DONTCARE"; + ch1_req_lvl_set : string := "DONTCARE"; + ch0_req_en : string := "DONTCARE"; + ch1_req_en : string := "DONTCARE"; + ch0_rterm_rx : string := "DONTCARE"; + ch1_rterm_rx : string := "DONTCARE"; + ch0_pden_sel : string := "DONTCARE"; + ch1_pden_sel : string := "DONTCARE"; + ch0_ldr_rx2core_sel : string := "DONTCARE"; + ch1_ldr_rx2core_sel : string := "DONTCARE"; + ch0_ldr_core2tx_sel : string := "DONTCARE"; + ch1_ldr_core2tx_sel : string := "DONTCARE"; + ch0_tpwdnb : string := "DONTCARE"; + ch1_tpwdnb : string := "DONTCARE"; + ch0_rate_mode_tx : string := "DONTCARE"; + ch1_rate_mode_tx : string := "DONTCARE"; + ch0_rterm_tx : string := "DONTCARE"; + ch1_rterm_tx : string := "DONTCARE"; + ch0_tx_cm_sel : string := "DONTCARE"; + ch1_tx_cm_sel : string := "DONTCARE"; + ch0_tdrv_pre_en : string := "DONTCARE"; + ch1_tdrv_pre_en : string := "DONTCARE"; + ch0_tdrv_slice0_sel : string := "DONTCARE"; + ch1_tdrv_slice0_sel : string := "DONTCARE"; + ch0_tdrv_slice1_sel : string := "DONTCARE"; + ch1_tdrv_slice1_sel : string := "DONTCARE"; + ch0_tdrv_slice2_sel : string := "DONTCARE"; + ch1_tdrv_slice2_sel : string := "DONTCARE"; + ch0_tdrv_slice3_sel : string := "DONTCARE"; + ch1_tdrv_slice3_sel : string := "DONTCARE"; + ch0_tdrv_slice4_sel : string := "DONTCARE"; + ch1_tdrv_slice4_sel : string := "DONTCARE"; + ch0_tdrv_slice5_sel : string := "DONTCARE"; + ch1_tdrv_slice5_sel : string := "DONTCARE"; + ch0_tdrv_slice0_cur : string := "DONTCARE"; + ch1_tdrv_slice0_cur : string := "DONTCARE"; + ch0_tdrv_slice1_cur : string := "DONTCARE"; + ch1_tdrv_slice1_cur : string := "DONTCARE"; + ch0_tdrv_slice2_cur : string := "DONTCARE"; + ch1_tdrv_slice2_cur : string := "DONTCARE"; + ch0_tdrv_slice3_cur : string := "DONTCARE"; + ch1_tdrv_slice3_cur : string := "DONTCARE"; + ch0_tdrv_slice4_cur : string := "DONTCARE"; + ch1_tdrv_slice4_cur : string := "DONTCARE"; + ch0_tdrv_slice5_cur : string := "DONTCARE"; + ch1_tdrv_slice5_cur : string := "DONTCARE"; + ch0_tdrv_dat_sel : string := "DONTCARE"; + ch1_tdrv_dat_sel : string := "DONTCARE"; + ch0_tx_div11_sel : string := "DONTCARE"; + ch1_tx_div11_sel : string := "DONTCARE"; + ch0_rpwdnb : string := "DONTCARE"; + ch1_rpwdnb : string := "DONTCARE"; + ch0_rate_mode_rx : string := "DONTCARE"; + ch1_rate_mode_rx : string := "DONTCARE"; + ch0_rlos_sel : string := "DONTCARE"; + ch1_rlos_sel : string := "DONTCARE"; + ch0_rx_los_lvl : string := "DONTCARE"; + ch1_rx_los_lvl : string := "DONTCARE"; + ch0_rx_los_ceq : string := "DONTCARE"; + ch1_rx_los_ceq : string := "DONTCARE"; + ch0_rx_los_hyst_en : string := "DONTCARE"; + ch1_rx_los_hyst_en : string := "DONTCARE"; + ch0_rx_los_en : string := "DONTCARE"; + ch1_rx_los_en : string := "DONTCARE"; + ch0_rx_div11_sel : string := "DONTCARE"; + ch1_rx_div11_sel : string := "DONTCARE"; + ch0_sel_sd_rx_clk : string := "DONTCARE"; + ch1_sel_sd_rx_clk : string := "DONTCARE"; + ch0_ff_rx_h_clk_en : string := "DONTCARE"; + ch1_ff_rx_h_clk_en : string := "DONTCARE"; + ch0_ff_rx_f_clk_dis : string := "DONTCARE"; + ch1_ff_rx_f_clk_dis : string := "DONTCARE"; + ch0_ff_tx_h_clk_en : string := "DONTCARE"; + ch1_ff_tx_h_clk_en : string := "DONTCARE"; + ch0_ff_tx_f_clk_dis : string := "DONTCARE"; + ch1_ff_tx_f_clk_dis : string := "DONTCARE"; + ch0_rx_rate_sel : string := "DONTCARE"; + ch1_rx_rate_sel : string := "DONTCARE"; + ch0_tdrv_post_en : string := "DONTCARE"; + ch1_tdrv_post_en : string := "DONTCARE"; + ch0_tx_post_sign : string := "DONTCARE"; + ch1_tx_post_sign : string := "DONTCARE"; + ch0_tx_pre_sign : string := "DONTCARE"; + ch1_tx_pre_sign : string := "DONTCARE"; + ch0_rxterm_cm : string := "DONTCARE"; + ch1_rxterm_cm : string := "DONTCARE"; + ch0_rxin_cm : string := "DONTCARE"; + ch1_rxin_cm : string := "DONTCARE"; + ch0_leq_offset_sel : string := "DONTCARE"; + ch1_leq_offset_sel : string := "DONTCARE"; + ch0_leq_offset_trim : string := "DONTCARE"; + ch1_leq_offset_trim : string := "DONTCARE"; + d_tx_max_rate : string := "DONTCARE"; + ch0_cdr_max_rate : string := "DONTCARE"; + ch1_cdr_max_rate : string := "DONTCARE"; + ch0_txamplitude : string := "DONTCARE"; + ch1_txamplitude : string := "DONTCARE"; + ch0_txdepre : string := "DONTCARE"; + ch1_txdepre : string := "DONTCARE"; + ch0_txdepost : string := "DONTCARE"; + ch1_txdepost : string := "DONTCARE"; + ch0_protocol : string := "DONTCARE"; + ch1_protocol : string := "DONTCARE"; + d_isetlos : string := "DONTCARE"; + d_setirpoly_aux : string := "DONTCARE"; + d_seticonst_aux : string := "DONTCARE"; + d_setirpoly_ch : string := "DONTCARE"; + d_seticonst_ch : string := "DONTCARE"; + d_req_iset : string := "DONTCARE"; + d_pd_iset : string := "DONTCARE"; + d_dco_calib_time_sel : string := "DONTCARE"; + ch0_dcoctlgi : string := "DONTCARE"; + ch1_dcoctlgi : string := "DONTCARE"; + ch0_dcoatddly : string := "DONTCARE"; + ch1_dcoatddly : string := "DONTCARE"; + ch0_dcoatdcfg : string := "DONTCARE"; + ch1_dcoatdcfg : string := "DONTCARE"; + ch0_dcobypsatd : string := "DONTCARE"; + ch1_dcobypsatd : string := "DONTCARE"; + ch0_dcoscalei : string := "DONTCARE"; + ch1_dcoscalei : string := "DONTCARE"; + ch0_dcoitune4lsb : string := "DONTCARE"; + ch1_dcoitune4lsb : string := "DONTCARE"; + ch0_dcoiostune : string := "DONTCARE"; + ch1_dcoiostune : string := "DONTCARE"; + ch0_dcodisbdavoid : string := "DONTCARE"; + ch1_dcodisbdavoid : string := "DONTCARE"; + ch0_dcocaldiv : string := "DONTCARE"; + ch1_dcocaldiv : string := "DONTCARE"; + ch0_dconuoflsb : string := "DONTCARE"; + ch1_dconuoflsb : string := "DONTCARE"; + ch0_dcoiupdnx2 : string := "DONTCARE"; + ch1_dcoiupdnx2 : string := "DONTCARE"; + ch0_dcostep : string := "DONTCARE"; + ch1_dcostep : string := "DONTCARE"; + ch0_dcostartval : string := "DONTCARE"; + ch1_dcostartval : string := "DONTCARE"; + ch0_dcofltdac : string := "DONTCARE"; + ch1_dcofltdac : string := "DONTCARE"; + ch0_dcoitune : string := "DONTCARE"; + ch1_dcoitune : string := "DONTCARE"; + ch0_dcoftnrg : string := "DONTCARE"; + ch1_dcoftnrg : string := "DONTCARE"; + ch0_cdr_cnt4sel : string := "DONTCARE"; + ch1_cdr_cnt4sel : string := "DONTCARE"; + ch0_cdr_cnt8sel : string := "DONTCARE"; + ch1_cdr_cnt8sel : string := "DONTCARE"; + ch0_band_threshold : string := "DONTCARE"; + ch1_band_threshold : string := "DONTCARE"; + ch0_auto_facq_en : string := "DONTCARE"; + ch1_auto_facq_en : string := "DONTCARE"; + ch0_auto_calib_en : string := "DONTCARE"; + ch1_auto_calib_en : string := "DONTCARE"; + ch0_calib_ck_mode : string := "DONTCARE"; + ch1_calib_ck_mode : string := "DONTCARE"; + ch0_reg_band_offset : string := "DONTCARE"; + ch1_reg_band_offset : string := "DONTCARE"; + ch0_reg_band_sel : string := "DONTCARE"; + ch1_reg_band_sel : string := "DONTCARE"; + ch0_reg_idac_sel : string := "DONTCARE"; + ch1_reg_idac_sel : string := "DONTCARE"; + ch0_reg_idac_en : string := "DONTCARE"; + ch1_reg_idac_en : string := "DONTCARE"; + d_txpll_pwdnb : string := "DONTCARE"; + d_setpllrc : string := "DONTCARE"; + d_refck_mode : string := "DONTCARE"; + d_tx_vco_ck_div : string := "DONTCARE"; + d_pll_lol_set : string := "DONTCARE"; + d_rg_en : string := "DONTCARE"; + d_rg_set : string := "DONTCARE"; + d_cmusetiscl4vco : string := "DONTCARE"; + d_cmuseti4vco : string := "DONTCARE"; + d_cmusetinitvct : string := "DONTCARE"; + d_cmusetzgm : string := "DONTCARE"; + d_cmusetp2agm : string := "DONTCARE"; + d_cmusetp1gm : string := "DONTCARE"; + d_cmuseti4cpz : string := "DONTCARE"; + d_cmuseti4cpp : string := "DONTCARE"; + d_cmuseticp4z : string := "DONTCARE"; + d_cmuseticp4p : string := "DONTCARE"; + d_cmusetbiasi : string := "DONTCARE" ); + port ( + ch0_hdinp : in std_logic; + ch1_hdinp : in std_logic; + ch0_hdinn : in std_logic; + ch1_hdinn : in std_logic; + d_txbit_clkp_from_nd : in std_logic; + d_txbit_clkn_from_nd : in std_logic; + d_sync_nd : in std_logic; + d_txpll_lol_from_nd : in std_logic; + ch0_rx_refclk : in std_logic; + ch1_rx_refclk : in std_logic; + ch0_ff_rxi_clk : in std_logic; + ch1_ff_rxi_clk : in std_logic; + ch0_ff_txi_clk : in std_logic; + ch1_ff_txi_clk : in std_logic; + ch0_ff_ebrd_clk : in std_logic; + ch1_ff_ebrd_clk : in std_logic; + ch0_ff_tx_d_0 : in std_logic; + ch1_ff_tx_d_0 : in std_logic; + ch0_ff_tx_d_1 : in std_logic; + ch1_ff_tx_d_1 : in std_logic; + ch0_ff_tx_d_2 : in std_logic; + ch1_ff_tx_d_2 : in std_logic; + ch0_ff_tx_d_3 : in std_logic; + ch1_ff_tx_d_3 : in std_logic; + ch0_ff_tx_d_4 : in std_logic; + ch1_ff_tx_d_4 : in std_logic; + ch0_ff_tx_d_5 : in std_logic; + ch1_ff_tx_d_5 : in std_logic; + ch0_ff_tx_d_6 : in std_logic; + ch1_ff_tx_d_6 : in std_logic; + ch0_ff_tx_d_7 : in std_logic; + ch1_ff_tx_d_7 : in std_logic; + ch0_ff_tx_d_8 : in std_logic; + ch1_ff_tx_d_8 : in std_logic; + ch0_ff_tx_d_9 : in std_logic; + ch1_ff_tx_d_9 : in std_logic; + ch0_ff_tx_d_10 : in std_logic; + ch1_ff_tx_d_10 : in std_logic; + ch0_ff_tx_d_11 : in std_logic; + ch1_ff_tx_d_11 : in std_logic; + ch0_ff_tx_d_12 : in std_logic; + ch1_ff_tx_d_12 : in std_logic; + ch0_ff_tx_d_13 : in std_logic; + ch1_ff_tx_d_13 : in std_logic; + ch0_ff_tx_d_14 : in std_logic; + ch1_ff_tx_d_14 : in std_logic; + ch0_ff_tx_d_15 : in std_logic; + ch1_ff_tx_d_15 : in std_logic; + ch0_ff_tx_d_16 : in std_logic; + ch1_ff_tx_d_16 : in std_logic; + ch0_ff_tx_d_17 : in std_logic; + ch1_ff_tx_d_17 : in std_logic; + ch0_ff_tx_d_18 : in std_logic; + ch1_ff_tx_d_18 : in std_logic; + ch0_ff_tx_d_19 : in std_logic; + ch1_ff_tx_d_19 : in std_logic; + ch0_ff_tx_d_20 : in std_logic; + ch1_ff_tx_d_20 : in std_logic; + ch0_ff_tx_d_21 : in std_logic; + ch1_ff_tx_d_21 : in std_logic; + ch0_ff_tx_d_22 : in std_logic; + ch1_ff_tx_d_22 : in std_logic; + ch0_ff_tx_d_23 : in std_logic; + ch1_ff_tx_d_23 : in std_logic; + ch0_ffc_ei_en : in std_logic; + ch1_ffc_ei_en : in std_logic; + ch0_ffc_pcie_det_en : in std_logic; + ch1_ffc_pcie_det_en : in std_logic; + ch0_ffc_pcie_ct : in std_logic; + ch1_ffc_pcie_ct : in std_logic; + ch0_ffc_sb_inv_rx : in std_logic; + ch1_ffc_sb_inv_rx : in std_logic; + ch0_ffc_enable_cgalign : in std_logic; + ch1_ffc_enable_cgalign : in std_logic; + ch0_ffc_signal_detect : in std_logic; + ch1_ffc_signal_detect : in std_logic; + ch0_ffc_fb_loopback : in std_logic; + ch1_ffc_fb_loopback : in std_logic; + ch0_ffc_sb_pfifo_lp : in std_logic; + ch1_ffc_sb_pfifo_lp : in std_logic; + ch0_ffc_pfifo_clr : in std_logic; + ch1_ffc_pfifo_clr : in std_logic; + ch0_ffc_rate_mode_rx : in std_logic; + ch1_ffc_rate_mode_rx : in std_logic; + ch0_ffc_rate_mode_tx : in std_logic; + ch1_ffc_rate_mode_tx : in std_logic; + ch0_ffc_div11_mode_rx : in std_logic; + ch1_ffc_div11_mode_rx : in std_logic; + ch0_ffc_rx_gear_mode : in std_logic; + ch1_ffc_rx_gear_mode : in std_logic; + ch0_ffc_tx_gear_mode : in std_logic; + ch1_ffc_tx_gear_mode : in std_logic; + ch0_ffc_div11_mode_tx : in std_logic; + ch1_ffc_div11_mode_tx : in std_logic; + ch0_ffc_ldr_core2tx_en : in std_logic; + ch1_ffc_ldr_core2tx_en : in std_logic; + ch0_ffc_lane_tx_rst : in std_logic; + ch1_ffc_lane_tx_rst : in std_logic; + ch0_ffc_lane_rx_rst : in std_logic; + ch1_ffc_lane_rx_rst : in std_logic; + ch0_ffc_rrst : in std_logic; + ch1_ffc_rrst : in std_logic; + ch0_ffc_txpwdnb : in std_logic; + ch1_ffc_txpwdnb : in std_logic; + ch0_ffc_rxpwdnb : in std_logic; + ch1_ffc_rxpwdnb : in std_logic; + ch0_ldr_core2tx : in std_logic; + ch1_ldr_core2tx : in std_logic; + d_sciwdata0 : in std_logic; + d_sciwdata1 : in std_logic; + d_sciwdata2 : in std_logic; + d_sciwdata3 : in std_logic; + d_sciwdata4 : in std_logic; + d_sciwdata5 : in std_logic; + d_sciwdata6 : in std_logic; + d_sciwdata7 : in std_logic; + d_sciaddr0 : in std_logic; + d_sciaddr1 : in std_logic; + d_sciaddr2 : in std_logic; + d_sciaddr3 : in std_logic; + d_sciaddr4 : in std_logic; + d_sciaddr5 : in std_logic; + d_scienaux : in std_logic; + d_sciselaux : in std_logic; + ch0_scien : in std_logic; + ch1_scien : in std_logic; + ch0_scisel : in std_logic; + ch1_scisel : in std_logic; + d_scird : in std_logic; + d_sciwstn : in std_logic; + d_cyawstn : in std_logic; + d_ffc_sync_toggle : in std_logic; + d_ffc_dual_rst : in std_logic; + d_ffc_macro_rst : in std_logic; + d_ffc_macropdb : in std_logic; + d_ffc_trst : in std_logic; + ch0_ffc_cdr_en_bitslip : in std_logic; + ch1_ffc_cdr_en_bitslip : in std_logic; + d_scan_enable : in std_logic; + d_scan_in_0 : in std_logic; + d_scan_in_1 : in std_logic; + d_scan_in_2 : in std_logic; + d_scan_in_3 : in std_logic; + d_scan_in_4 : in std_logic; + d_scan_in_5 : in std_logic; + d_scan_in_6 : in std_logic; + d_scan_in_7 : in std_logic; + d_scan_mode : in std_logic; + d_scan_reset : in std_logic; + d_cin0 : in std_logic; + d_cin1 : in std_logic; + d_cin2 : in std_logic; + d_cin3 : in std_logic; + d_cin4 : in std_logic; + d_cin5 : in std_logic; + d_cin6 : in std_logic; + d_cin7 : in std_logic; + d_cin8 : in std_logic; + d_cin9 : in std_logic; + d_cin10 : in std_logic; + d_cin11 : in std_logic; + ch0_hdoutp : out std_logic; + ch1_hdoutp : out std_logic; + ch0_hdoutn : out std_logic; + ch1_hdoutn : out std_logic; + d_txbit_clkp_to_nd : out std_logic; + d_txbit_clkn_to_nd : out std_logic; + d_sync_pulse2nd : out std_logic; + d_txpll_lol_to_nd : out std_logic; + ch0_ff_rx_f_clk : out std_logic; + ch1_ff_rx_f_clk : out std_logic; + ch0_ff_rx_h_clk : out std_logic; + ch1_ff_rx_h_clk : out std_logic; + ch0_ff_tx_f_clk : out std_logic; + ch1_ff_tx_f_clk : out std_logic; + ch0_ff_tx_h_clk : out std_logic; + ch1_ff_tx_h_clk : out std_logic; + ch0_ff_rx_pclk : out std_logic; + ch1_ff_rx_pclk : out std_logic; + ch0_ff_tx_pclk : out std_logic; + ch1_ff_tx_pclk : out std_logic; + ch0_ff_rx_d_0 : out std_logic; + ch1_ff_rx_d_0 : out std_logic; + ch0_ff_rx_d_1 : out std_logic; + ch1_ff_rx_d_1 : out std_logic; + ch0_ff_rx_d_2 : out std_logic; + ch1_ff_rx_d_2 : out std_logic; + ch0_ff_rx_d_3 : out std_logic; + ch1_ff_rx_d_3 : out std_logic; + ch0_ff_rx_d_4 : out std_logic; + ch1_ff_rx_d_4 : out std_logic; + ch0_ff_rx_d_5 : out std_logic; + ch1_ff_rx_d_5 : out std_logic; + ch0_ff_rx_d_6 : out std_logic; + ch1_ff_rx_d_6 : out std_logic; + ch0_ff_rx_d_7 : out std_logic; + ch1_ff_rx_d_7 : out std_logic; + ch0_ff_rx_d_8 : out std_logic; + ch1_ff_rx_d_8 : out std_logic; + ch0_ff_rx_d_9 : out std_logic; + ch1_ff_rx_d_9 : out std_logic; + ch0_ff_rx_d_10 : out std_logic; + ch1_ff_rx_d_10 : out std_logic; + ch0_ff_rx_d_11 : out std_logic; + ch1_ff_rx_d_11 : out std_logic; + ch0_ff_rx_d_12 : out std_logic; + ch1_ff_rx_d_12 : out std_logic; + ch0_ff_rx_d_13 : out std_logic; + ch1_ff_rx_d_13 : out std_logic; + ch0_ff_rx_d_14 : out std_logic; + ch1_ff_rx_d_14 : out std_logic; + ch0_ff_rx_d_15 : out std_logic; + ch1_ff_rx_d_15 : out std_logic; + ch0_ff_rx_d_16 : out std_logic; + ch1_ff_rx_d_16 : out std_logic; + ch0_ff_rx_d_17 : out std_logic; + ch1_ff_rx_d_17 : out std_logic; + ch0_ff_rx_d_18 : out std_logic; + ch1_ff_rx_d_18 : out std_logic; + ch0_ff_rx_d_19 : out std_logic; + ch1_ff_rx_d_19 : out std_logic; + ch0_ff_rx_d_20 : out std_logic; + ch1_ff_rx_d_20 : out std_logic; + ch0_ff_rx_d_21 : out std_logic; + ch1_ff_rx_d_21 : out std_logic; + ch0_ff_rx_d_22 : out std_logic; + ch1_ff_rx_d_22 : out std_logic; + ch0_ff_rx_d_23 : out std_logic; + ch1_ff_rx_d_23 : out std_logic; + ch0_ffs_pcie_done : out std_logic; + ch1_ffs_pcie_done : out std_logic; + ch0_ffs_pcie_con : out std_logic; + ch1_ffs_pcie_con : out std_logic; + ch0_ffs_rlos : out std_logic; + ch1_ffs_rlos : out std_logic; + ch0_ffs_ls_sync_status : out std_logic; + ch1_ffs_ls_sync_status : out std_logic; + ch0_ffs_cc_underrun : out std_logic; + ch1_ffs_cc_underrun : out std_logic; + ch0_ffs_cc_overrun : out std_logic; + ch1_ffs_cc_overrun : out std_logic; + ch0_ffs_rxfbfifo_error : out std_logic; + ch1_ffs_rxfbfifo_error : out std_logic; + ch0_ffs_txfbfifo_error : out std_logic; + ch1_ffs_txfbfifo_error : out std_logic; + ch0_ffs_rlol : out std_logic; + ch1_ffs_rlol : out std_logic; + ch0_ffs_skp_added : out std_logic; + ch1_ffs_skp_added : out std_logic; + ch0_ffs_skp_deleted : out std_logic; + ch1_ffs_skp_deleted : out std_logic; + ch0_ldr_rx2core : out std_logic; + ch1_ldr_rx2core : out std_logic; + d_scirdata0 : out std_logic; + d_scirdata1 : out std_logic; + d_scirdata2 : out std_logic; + d_scirdata3 : out std_logic; + d_scirdata4 : out std_logic; + d_scirdata5 : out std_logic; + d_scirdata6 : out std_logic; + d_scirdata7 : out std_logic; + d_sciint : out std_logic; + d_scan_out_0 : out std_logic; + d_scan_out_1 : out std_logic; + d_scan_out_2 : out std_logic; + d_scan_out_3 : out std_logic; + d_scan_out_4 : out std_logic; + d_scan_out_5 : out std_logic; + d_scan_out_6 : out std_logic; + d_scan_out_7 : out std_logic; + d_cout0 : out std_logic; + d_cout1 : out std_logic; + d_cout2 : out std_logic; + d_cout3 : out std_logic; + d_cout4 : out std_logic; + d_cout5 : out std_logic; + d_cout6 : out std_logic; + d_cout7 : out std_logic; + d_cout8 : out std_logic; + d_cout9 : out std_logic; + d_cout10 : out std_logic; + d_cout11 : out std_logic; + d_cout12 : out std_logic; + d_cout13 : out std_logic; + d_cout14 : out std_logic; + d_cout15 : out std_logic; + d_cout16 : out std_logic; + d_cout17 : out std_logic; + d_cout18 : out std_logic; + d_cout19 : out std_logic; + d_refclki : in std_logic; + d_ffs_plol : out std_logic ); +end component; + +end package; diff --git a/library/wrapper/README b/library/wrapper/README new file mode 100644 index 0000000..29550f0 --- /dev/null +++ b/library/wrapper/README @@ -0,0 +1,4 @@ +This directory should leave - in future. + +It contains hand woven Verilog wrappers for non resolving entities or +primitives with generics. diff --git a/library/wrapper/bram.v b/library/wrapper/bram.v new file mode 100644 index 0000000..03859dc --- /dev/null +++ b/library/wrapper/bram.v @@ -0,0 +1,46 @@ +// Workaround BRAM implementation for fifo buffer +// 2020 <hackfin@section5.ch> + +module bram_2psync_6_8_59fe624214af9b8daa183282288d5eb56b321f14 #( + parameter DATA = 8, + parameter ADDR = 6 +) ( + + // Port A + input wire clk, + input wire a_we, + input wire [ADDR-1:0] a_addr, + input wire [DATA-1:0] a_write, + output reg [DATA-1:0] a_read, + + // Port B + input wire b_we, + input wire [ADDR-1:0] b_addr, + input wire [DATA-1:0] b_write, + output reg [DATA-1:0] b_read +); + +// Shared memory +reg [DATA-1:0] mem [(2**ADDR)-1:0]; + +reg [ADDR-1:0] addr_b; +reg [ADDR-1:0] addr_a; + + +assign a_read = mem[addr_a]; +// assign b_read = mem[addr_b]; + +always @(posedge clk) begin: DUAL_RAW_PORT_A_PROC + addr_a <= a_addr; +end + + +always @(posedge clk) begin: DUAL_RAW_PORT_B_PROC + addr_b <= b_addr; + if (b_we) begin + mem[b_addr] <= b_write; + end +end + + +endmodule diff --git a/library/wrapper/primitives.v b/library/wrapper/primitives.v new file mode 100644 index 0000000..95edf7a --- /dev/null +++ b/library/wrapper/primitives.v @@ -0,0 +1,13 @@ +`timescale 1 ns / 1 ps + +module vhi ( z ); + output z ; + supply1 VSS; + buf (z , VSS); +endmodule + +module vlo ( z ); + output z; + supply1 VSS; + buf (z , VSS); +endmodule diff --git a/library/wrapper/wrapper.v b/library/wrapper/wrapper.v new file mode 100644 index 0000000..8f6d9cc --- /dev/null +++ b/library/wrapper/wrapper.v @@ -0,0 +1,71 @@ +// Wrapper for specific instantiation of EHXPLLL +// +// This is a workaround until we can automatically pass generics to +// instanced vendor primitives (black boxes) +// +module ehxplll_4_5_6_30_15_10_5_29_14_9_0_0_0_0_0_0_0_200_df43956727cb406e91ea03c3249c0f9d5327137e(clki, clkfb, phasesel1, phasesel0, phasedir, phasestep, phaseloadreg, stdby, + pllwakesync, rst, enclkop, enclkos, enclkos2, enclkos3, + clkop, clkos, clkos2, clkos3, lock, intlock, + refclk, clkintfb ); + +input clki, clkfb, phasesel1, phasesel0, phasedir, phasestep; +input phaseloadreg, stdby, pllwakesync, rst; +input enclkop, enclkos, enclkos2, enclkos3; +output clkop, clkos, clkos2, clkos3, lock, intlock, refclk; +output clkintfb; + + wire clkop_int; + +EHXPLLL #( + .PLLRST_ENA("DISABLED"), + .INTFB_WAKE("DISABLED"), + .STDBY_ENABLE("DISABLED"), + .DPHASE_SOURCE("DISABLED"), + .OUTDIVIDER_MUXA("DIVA"), + .OUTDIVIDER_MUXB("DIVB"), + .OUTDIVIDER_MUXC("DIVC"), + .OUTDIVIDER_MUXD("DIVD"), + .CLKI_DIV(4), + .CLKOP_ENABLE("ENABLED"), + .CLKOP_DIV(6), + .CLKOP_CPHASE(5), + .CLKOP_FPHASE(0), + // .CLKOP_TRIM_DELAY(0), + .CLKOP_TRIM_POL("FALLING"), + .CLKOS_ENABLE("ENABLED"), + .CLKOS_DIV(30), + .CLKOS_CPHASE(29), + .CLKOS_FPHASE(0), + // .CLKOS_TRIM_DELAY(0), + .CLKOS_TRIM_POL("FALLING"), + .CLKOS2_ENABLE("ENABLED"), + .CLKOS2_DIV(15), + .CLKOS2_CPHASE(14), + .CLKOS2_FPHASE(0), + .CLKOS3_ENABLE("ENABLED"), + .CLKOS3_DIV(10), + .CLKOS3_CPHASE(9), + .CLKOS3_FPHASE(0), + .FEEDBK_PATH("CLKOP"), + .CLKFB_DIV(5) + ) pll_i ( + .RST(1'b0), + .STDBY(1'b0), + .CLKI(clki), + .CLKOP(clkop_int), + .CLKOS(clkos), + .CLKFB(clkop_int), + .CLKINTFB(), + .PHASESEL0(1'b0), + .PHASESEL1(1'b0), + .PHASEDIR(1'b1), + .PHASESTEP(1'b1), + .PHASELOADREG(1'b1), + .PLLWAKESYNC(1'b0), + .ENCLKOP(1'b0), + .LOCK(lock) + ); + + assign clkop = clkop_int; + +endmodule diff --git a/openocd/LFE5U-25F.cfg b/openocd/LFE5U-25F.cfg new file mode 100644 index 0000000..047161a --- /dev/null +++ b/openocd/LFE5U-25F.cfg @@ -0,0 +1 @@ +jtag newtap ecp5 tap -irlen 8 -expected-id 0x41111043 diff --git a/openocd/LFE5U-45F.cfg b/openocd/LFE5U-45F.cfg new file mode 100644 index 0000000..7400d97 --- /dev/null +++ b/openocd/LFE5U-45F.cfg @@ -0,0 +1 @@ +jtag newtap ecp5 tap -irlen 8 -expected-id 0x41112043 diff --git a/openocd/LFE5U-85F.cfg b/openocd/LFE5U-85F.cfg new file mode 100644 index 0000000..98cf6e6 --- /dev/null +++ b/openocd/LFE5U-85F.cfg @@ -0,0 +1 @@ +jtag newtap ecp5 tap -irlen 8 -expected-id 0x41113043 diff --git a/openocd/LFE5UM-25F.cfg b/openocd/LFE5UM-25F.cfg new file mode 100644 index 0000000..b06c81f --- /dev/null +++ b/openocd/LFE5UM-25F.cfg @@ -0,0 +1 @@ +jtag newtap ecp5 tap -irlen 8 -expected-id 0x01111043 diff --git a/openocd/LFE5UM-45F.cfg b/openocd/LFE5UM-45F.cfg new file mode 100644 index 0000000..34afc6e --- /dev/null +++ b/openocd/LFE5UM-45F.cfg @@ -0,0 +1 @@ +jtag newtap ecp5 tap -irlen 8 -expected-id 0x01112043 diff --git a/openocd/LFE5UM-85F.cfg b/openocd/LFE5UM-85F.cfg new file mode 100644 index 0000000..f447f38 --- /dev/null +++ b/openocd/LFE5UM-85F.cfg @@ -0,0 +1 @@ +jtag newtap ecp5 tap -irlen 8 -expected-id 0x01113043 diff --git a/openocd/LFE5UM5G-25F.cfg b/openocd/LFE5UM5G-25F.cfg new file mode 100644 index 0000000..f327706 --- /dev/null +++ b/openocd/LFE5UM5G-25F.cfg @@ -0,0 +1 @@ +jtag newtap ecp5 tap -irlen 8 -expected-id 0x81111043 diff --git a/openocd/LFE5UM5G-45F.cfg b/openocd/LFE5UM5G-45F.cfg new file mode 100644 index 0000000..9d570db --- /dev/null +++ b/openocd/LFE5UM5G-45F.cfg @@ -0,0 +1 @@ +jtag newtap ecp5 tap -irlen 8 -expected-id 0x81112043 diff --git a/openocd/LFE5UM5G-85F.cfg b/openocd/LFE5UM5G-85F.cfg new file mode 100644 index 0000000..94b1aa3 --- /dev/null +++ b/openocd/LFE5UM5G-85F.cfg @@ -0,0 +1 @@ +jtag newtap ecp5 tap -irlen 8 -expected-id 0x81113043 diff --git a/openocd/ecp5-evn.cfg b/openocd/ecp5-evn.cfg new file mode 100644 index 0000000..a4cde22 --- /dev/null +++ b/openocd/ecp5-evn.cfg @@ -0,0 +1,13 @@ +# this supports ECP5 Evaluation Board + +interface ftdi +ftdi_device_desc "Lattice ECP5 Evaluation Board" +ftdi_vid_pid 0x0403 0x6010 +# channel 1 does not have any functionality +ftdi_channel 0 +# just TCK TDI TDO TMS, no reset +ftdi_layout_init 0xfff8 0xfffb +reset_config none + +# default speed +adapter_khz 5000 diff --git a/openocd/ecp5-versa.cfg b/openocd/ecp5-versa.cfg new file mode 100644 index 0000000..2e62bcf --- /dev/null +++ b/openocd/ecp5-versa.cfg @@ -0,0 +1,13 @@ +# this supports ECP5 Evaluation Board + +interface ftdi +# ftdi_device_desc "Lattice ECP5 Evaluation Board" +ftdi_vid_pid 0x0403 0x6010 +# channel 1 does not have any functionality +ftdi_channel 0 +# just TCK TDI TDO TMS, no reset +ftdi_layout_init 0xfff8 0xfffb +reset_config none + +# default speed +adapter_khz 5000 diff --git a/openocd/olimex-arm-usb-tiny-h.cfg b/openocd/olimex-arm-usb-tiny-h.cfg new file mode 100644 index 0000000..e31515c --- /dev/null +++ b/openocd/olimex-arm-usb-tiny-h.cfg @@ -0,0 +1,17 @@ +# +# Olimex ARM-USB-TINY-H +# +# http://www.olimex.com/dev/arm-usb-tiny-h.html +# + +interface ftdi +ftdi_device_desc "Olimex OpenOCD JTAG ARM-USB-TINY-H" +ftdi_vid_pid 0x15ba 0x002a + +ftdi_layout_init 0x0808 0x0a1b +ftdi_layout_signal nSRST -oe 0x0200 +ftdi_layout_signal nTRST -data 0x0100 -oe 0x0100 +ftdi_layout_signal LED -data 0x0800 + +# default speed +adapter_khz 5000 |