content
stringlengths
1
1.04M
-- (c) Copyright 1995-2017 Xilinx, Inc. All rights reserved. -- -- This file contains confidential and proprietary information -- of Xilinx, Inc. and is protected under U.S. and -- international copyright and other intellectual property -- laws. -- -- DISCLAIMER -- This disclaimer is not a license and does not grant any -- rights to the materials distributed herewith. Except as -- otherwise provided in a valid license issued to you by -- Xilinx, and to the maximum extent permitted by applicable -- law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND -- WITH ALL FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES -- AND CONDITIONS, EXPRESS, IMPLIED, OR STATUTORY, INCLUDING -- BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, NON- -- INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE; and -- (2) Xilinx shall not be liable (whether in contract or tort, -- including negligence, or under any other theory of -- liability) for any loss or damage of any kind or nature -- related to, arising under or in connection with these -- materials, including for any direct, or any indirect, -- special, incidental, or consequential loss or damage -- (including loss of data, profits, goodwill, or any type of -- loss or damage suffered as a result of any action brought -- by a third party) even if such damage or loss was -- reasonably foreseeable or Xilinx had been advised of the -- possibility of the same. -- -- CRITICAL APPLICATIONS -- Xilinx products are not designed or intended to be fail- -- safe, or for use in any application requiring fail-safe -- performance, such as life-support or safety devices or -- systems, Class III medical devices, nuclear facilities, -- applications related to the deployment of airbags, or any -- other applications that could lead to death, personal -- injury, or severe property or environmental damage -- (individually and collectively, "Critical -- Applications"). Customer assumes the sole risk and -- liability of any use of Xilinx products in Critical -- Applications, subject only to applicable laws and -- regulations governing limitations on product liability. -- -- THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS -- PART OF THIS FILE AT ALL TIMES. -- -- DO NOT MODIFY THIS FILE. -- IP VLNV: xilinx.com:ip:blk_mem_gen:8.3 -- IP Revision: 5 LIBRARY ieee; USE ieee.std_logic_1164.ALL; USE ieee.numeric_std.ALL; LIBRARY blk_mem_gen_v8_3_5; USE blk_mem_gen_v8_3_5.blk_mem_gen_v8_3_5; ENTITY bram_1024_3 IS PORT ( clka : IN STD_LOGIC; ena : IN STD_LOGIC; wea : IN STD_LOGIC_VECTOR(0 DOWNTO 0); addra : IN STD_LOGIC_VECTOR(9 DOWNTO 0); dina : IN STD_LOGIC_VECTOR(19 DOWNTO 0); douta : OUT STD_LOGIC_VECTOR(19 DOWNTO 0) ); END bram_1024_3; ARCHITECTURE bram_1024_3_arch OF bram_1024_3 IS ATTRIBUTE DowngradeIPIdentifiedWarnings : STRING; ATTRIBUTE DowngradeIPIdentifiedWarnings OF bram_1024_3_arch: ARCHITECTURE IS "yes"; COMPONENT blk_mem_gen_v8_3_5 IS GENERIC ( C_FAMILY : STRING; C_XDEVICEFAMILY : STRING; C_ELABORATION_DIR : STRING; C_INTERFACE_TYPE : INTEGER; C_AXI_TYPE : INTEGER; C_AXI_SLAVE_TYPE : INTEGER; C_USE_BRAM_BLOCK : INTEGER; C_ENABLE_32BIT_ADDRESS : INTEGER; C_CTRL_ECC_ALGO : STRING; C_HAS_AXI_ID : INTEGER; C_AXI_ID_WIDTH : INTEGER; C_MEM_TYPE : INTEGER; C_BYTE_SIZE : INTEGER; C_ALGORITHM : INTEGER; C_PRIM_TYPE : INTEGER; C_LOAD_INIT_FILE : INTEGER; C_INIT_FILE_NAME : STRING; C_INIT_FILE : STRING; C_USE_DEFAULT_DATA : INTEGER; C_DEFAULT_DATA : STRING; C_HAS_RSTA : INTEGER; C_RST_PRIORITY_A : STRING; C_RSTRAM_A : INTEGER; C_INITA_VAL : STRING; C_HAS_ENA : INTEGER; C_HAS_REGCEA : INTEGER; C_USE_BYTE_WEA : INTEGER; C_WEA_WIDTH : INTEGER; C_WRITE_MODE_A : STRING; C_WRITE_WIDTH_A : INTEGER; C_READ_WIDTH_A : INTEGER; C_WRITE_DEPTH_A : INTEGER; C_READ_DEPTH_A : INTEGER; C_ADDRA_WIDTH : INTEGER; C_HAS_RSTB : INTEGER; C_RST_PRIORITY_B : STRING; C_RSTRAM_B : INTEGER; C_INITB_VAL : STRING; C_HAS_ENB : INTEGER; C_HAS_REGCEB : INTEGER; C_USE_BYTE_WEB : INTEGER; C_WEB_WIDTH : INTEGER; C_WRITE_MODE_B : STRING; C_WRITE_WIDTH_B : INTEGER; C_READ_WIDTH_B : INTEGER; C_WRITE_DEPTH_B : INTEGER; C_READ_DEPTH_B : INTEGER; C_ADDRB_WIDTH : INTEGER; C_HAS_MEM_OUTPUT_REGS_A : INTEGER; C_HAS_MEM_OUTPUT_REGS_B : INTEGER; C_HAS_MUX_OUTPUT_REGS_A : INTEGER; C_HAS_MUX_OUTPUT_REGS_B : INTEGER; C_MUX_PIPELINE_STAGES : INTEGER; C_HAS_SOFTECC_INPUT_REGS_A : INTEGER; C_HAS_SOFTECC_OUTPUT_REGS_B : INTEGER; C_USE_SOFTECC : INTEGER; C_USE_ECC : INTEGER; C_EN_ECC_PIPE : INTEGER; C_HAS_INJECTERR : INTEGER; C_SIM_COLLISION_CHECK : STRING; C_COMMON_CLK : INTEGER; C_DISABLE_WARN_BHV_COLL : INTEGER; C_EN_SLEEP_PIN : INTEGER; C_USE_URAM : INTEGER; C_EN_RDADDRA_CHG : INTEGER; C_EN_RDADDRB_CHG : INTEGER; C_EN_DEEPSLEEP_PIN : INTEGER; C_EN_SHUTDOWN_PIN : INTEGER; C_EN_SAFETY_CKT : INTEGER; C_DISABLE_WARN_BHV_RANGE : INTEGER; C_COUNT_36K_BRAM : STRING; C_COUNT_18K_BRAM : STRING; C_EST_POWER_SUMMARY : STRING ); PORT ( clka : IN STD_LOGIC; rsta : IN STD_LOGIC; ena : IN STD_LOGIC; regcea : IN STD_LOGIC; wea : IN STD_LOGIC_VECTOR(0 DOWNTO 0); addra : IN STD_LOGIC_VECTOR(9 DOWNTO 0); dina : IN STD_LOGIC_VECTOR(19 DOWNTO 0); douta : OUT STD_LOGIC_VECTOR(19 DOWNTO 0); clkb : IN STD_LOGIC; rstb : IN STD_LOGIC; enb : IN STD_LOGIC; regceb : IN STD_LOGIC; web : IN STD_LOGIC_VECTOR(0 DOWNTO 0); addrb : IN STD_LOGIC_VECTOR(9 DOWNTO 0); dinb : IN STD_LOGIC_VECTOR(19 DOWNTO 0); doutb : OUT STD_LOGIC_VECTOR(19 DOWNTO 0); injectsbiterr : IN STD_LOGIC; injectdbiterr : IN STD_LOGIC; eccpipece : IN STD_LOGIC; sbiterr : OUT STD_LOGIC; dbiterr : OUT STD_LOGIC; rdaddrecc : OUT STD_LOGIC_VECTOR(9 DOWNTO 0); sleep : IN STD_LOGIC; deepsleep : IN STD_LOGIC; shutdown : IN STD_LOGIC; rsta_busy : OUT STD_LOGIC; rstb_busy : OUT STD_LOGIC; s_aclk : IN STD_LOGIC; s_aresetn : IN STD_LOGIC; s_axi_awid : IN STD_LOGIC_VECTOR(3 DOWNTO 0); s_axi_awaddr : IN STD_LOGIC_VECTOR(31 DOWNTO 0); s_axi_awlen : IN STD_LOGIC_VECTOR(7 DOWNTO 0); s_axi_awsize : IN STD_LOGIC_VECTOR(2 DOWNTO 0); s_axi_awburst : IN STD_LOGIC_VECTOR(1 DOWNTO 0); s_axi_awvalid : IN STD_LOGIC; s_axi_awready : OUT STD_LOGIC; s_axi_wdata : IN STD_LOGIC_VECTOR(19 DOWNTO 0); s_axi_wstrb : IN STD_LOGIC_VECTOR(0 DOWNTO 0); s_axi_wlast : IN STD_LOGIC; s_axi_wvalid : IN STD_LOGIC; s_axi_wready : OUT STD_LOGIC; s_axi_bid : OUT STD_LOGIC_VECTOR(3 DOWNTO 0); s_axi_bresp : OUT STD_LOGIC_VECTOR(1 DOWNTO 0); s_axi_bvalid : OUT STD_LOGIC; s_axi_bready : IN STD_LOGIC; s_axi_arid : IN STD_LOGIC_VECTOR(3 DOWNTO 0); s_axi_araddr : IN STD_LOGIC_VECTOR(31 DOWNTO 0); s_axi_arlen : IN STD_LOGIC_VECTOR(7 DOWNTO 0); s_axi_arsize : IN STD_LOGIC_VECTOR(2 DOWNTO 0); s_axi_arburst : IN STD_LOGIC_VECTOR(1 DOWNTO 0); s_axi_arvalid : IN STD_LOGIC; s_axi_arready : OUT STD_LOGIC; s_axi_rid : OUT STD_LOGIC_VECTOR(3 DOWNTO 0); s_axi_rdata : OUT STD_LOGIC_VECTOR(19 DOWNTO 0); s_axi_rresp : OUT STD_LOGIC_VECTOR(1 DOWNTO 0); s_axi_rlast : OUT STD_LOGIC; s_axi_rvalid : OUT STD_LOGIC; s_axi_rready : IN STD_LOGIC; s_axi_injectsbiterr : IN STD_LOGIC; s_axi_injectdbiterr : IN STD_LOGIC; s_axi_sbiterr : OUT STD_LOGIC; s_axi_dbiterr : OUT STD_LOGIC; s_axi_rdaddrecc : OUT STD_LOGIC_VECTOR(9 DOWNTO 0) ); END COMPONENT blk_mem_gen_v8_3_5; ATTRIBUTE X_CORE_INFO : STRING; ATTRIBUTE X_CORE_INFO OF bram_1024_3_arch: ARCHITECTURE IS "blk_mem_gen_v8_3_5,Vivado 2016.4"; ATTRIBUTE CHECK_LICENSE_TYPE : STRING; ATTRIBUTE CHECK_LICENSE_TYPE OF bram_1024_3_arch : ARCHITECTURE IS "bram_1024_3,blk_mem_gen_v8_3_5,{}"; ATTRIBUTE CORE_GENERATION_INFO : STRING; ATTRIBUTE CORE_GENERATION_INFO OF bram_1024_3_arch: ARCHITECTURE IS "bram_1024_3,blk_mem_gen_v8_3_5,{x_ipProduct=Vivado 2016.4,x_ipVendor=xilinx.com,x_ipLibrary=ip,x_ipName=blk_mem_gen,x_ipVersion=8.3,x_ipCoreRevision=5,x_ipLanguage=VHDL,x_ipSimLanguage=MIXED,C_FAMILY=zynq,C_XDEVICEFAMILY=zynq,C_ELABORATION_DIR=./,C_INTERFACE_TYPE=0,C_AXI_TYPE=1,C_AXI_SLAVE_TYPE=0,C_USE_BRAM_BLOCK=0,C_ENABLE_32BIT_ADDRESS=0,C_CTRL_ECC_ALGO=NONE,C_HAS_AXI_ID=0,C_AXI_ID_WIDTH=4,C_MEM_TYPE=0,C_BYTE_SIZE=9,C_ALGORITHM=1,C_PRIM_TYPE=1,C_LOAD_INIT_FILE=1,C_INIT_FILE_NAME=bram_1024_3.mi" & "f,C_INIT_FILE=bram_1024_3.mem,C_USE_DEFAULT_DATA=0,C_DEFAULT_DATA=0,C_HAS_RSTA=0,C_RST_PRIORITY_A=CE,C_RSTRAM_A=0,C_INITA_VAL=0,C_HAS_ENA=1,C_HAS_REGCEA=0,C_USE_BYTE_WEA=0,C_WEA_WIDTH=1,C_WRITE_MODE_A=WRITE_FIRST,C_WRITE_WIDTH_A=20,C_READ_WIDTH_A=20,C_WRITE_DEPTH_A=1024,C_READ_DEPTH_A=1024,C_ADDRA_WIDTH=10,C_HAS_RSTB=0,C_RST_PRIORITY_B=CE,C_RSTRAM_B=0,C_INITB_VAL=0,C_HAS_ENB=0,C_HAS_REGCEB=0,C_USE_BYTE_WEB=0,C_WEB_WIDTH=1,C_WRITE_MODE_B=WRITE_FIRST,C_WRITE_WIDTH_B=20,C_READ_WIDTH_B=20,C_WRITE_DE" & "PTH_B=1024,C_READ_DEPTH_B=1024,C_ADDRB_WIDTH=10,C_HAS_MEM_OUTPUT_REGS_A=1,C_HAS_MEM_OUTPUT_REGS_B=0,C_HAS_MUX_OUTPUT_REGS_A=0,C_HAS_MUX_OUTPUT_REGS_B=0,C_MUX_PIPELINE_STAGES=0,C_HAS_SOFTECC_INPUT_REGS_A=0,C_HAS_SOFTECC_OUTPUT_REGS_B=0,C_USE_SOFTECC=0,C_USE_ECC=0,C_EN_ECC_PIPE=0,C_HAS_INJECTERR=0,C_SIM_COLLISION_CHECK=ALL,C_COMMON_CLK=0,C_DISABLE_WARN_BHV_COLL=0,C_EN_SLEEP_PIN=0,C_USE_URAM=0,C_EN_RDADDRA_CHG=0,C_EN_RDADDRB_CHG=0,C_EN_DEEPSLEEP_PIN=0,C_EN_SHUTDOWN_PIN=0,C_EN_SAFETY_CKT=0,C_DISABLE" & "_WARN_BHV_RANGE=0,C_COUNT_36K_BRAM=1,C_COUNT_18K_BRAM=0,C_EST_POWER_SUMMARY=Estimated Power for IP _ 2.74095 mW}"; ATTRIBUTE X_INTERFACE_INFO : STRING; ATTRIBUTE X_INTERFACE_INFO OF clka: SIGNAL IS "xilinx.com:interface:bram:1.0 BRAM_PORTA CLK"; ATTRIBUTE X_INTERFACE_INFO OF ena: SIGNAL IS "xilinx.com:interface:bram:1.0 BRAM_PORTA EN"; ATTRIBUTE X_INTERFACE_INFO OF wea: SIGNAL IS "xilinx.com:interface:bram:1.0 BRAM_PORTA WE"; ATTRIBUTE X_INTERFACE_INFO OF addra: SIGNAL IS "xilinx.com:interface:bram:1.0 BRAM_PORTA ADDR"; ATTRIBUTE X_INTERFACE_INFO OF dina: SIGNAL IS "xilinx.com:interface:bram:1.0 BRAM_PORTA DIN"; ATTRIBUTE X_INTERFACE_INFO OF douta: SIGNAL IS "xilinx.com:interface:bram:1.0 BRAM_PORTA DOUT"; BEGIN U0 : blk_mem_gen_v8_3_5 GENERIC MAP ( C_FAMILY => "zynq", C_XDEVICEFAMILY => "zynq", C_ELABORATION_DIR => "./", C_INTERFACE_TYPE => 0, C_AXI_TYPE => 1, C_AXI_SLAVE_TYPE => 0, C_USE_BRAM_BLOCK => 0, C_ENABLE_32BIT_ADDRESS => 0, C_CTRL_ECC_ALGO => "NONE", C_HAS_AXI_ID => 0, C_AXI_ID_WIDTH => 4, C_MEM_TYPE => 0, C_BYTE_SIZE => 9, C_ALGORITHM => 1, C_PRIM_TYPE => 1, C_LOAD_INIT_FILE => 1, C_INIT_FILE_NAME => "bram_1024_3.mif", C_INIT_FILE => "bram_1024_3.mem", C_USE_DEFAULT_DATA => 0, C_DEFAULT_DATA => "0", C_HAS_RSTA => 0, C_RST_PRIORITY_A => "CE", C_RSTRAM_A => 0, C_INITA_VAL => "0", C_HAS_ENA => 1, C_HAS_REGCEA => 0, C_USE_BYTE_WEA => 0, C_WEA_WIDTH => 1, C_WRITE_MODE_A => "WRITE_FIRST", C_WRITE_WIDTH_A => 20, C_READ_WIDTH_A => 20, C_WRITE_DEPTH_A => 1024, C_READ_DEPTH_A => 1024, C_ADDRA_WIDTH => 10, C_HAS_RSTB => 0, C_RST_PRIORITY_B => "CE", C_RSTRAM_B => 0, C_INITB_VAL => "0", C_HAS_ENB => 0, C_HAS_REGCEB => 0, C_USE_BYTE_WEB => 0, C_WEB_WIDTH => 1, C_WRITE_MODE_B => "WRITE_FIRST", C_WRITE_WIDTH_B => 20, C_READ_WIDTH_B => 20, C_WRITE_DEPTH_B => 1024, C_READ_DEPTH_B => 1024, C_ADDRB_WIDTH => 10, C_HAS_MEM_OUTPUT_REGS_A => 1, C_HAS_MEM_OUTPUT_REGS_B => 0, C_HAS_MUX_OUTPUT_REGS_A => 0, C_HAS_MUX_OUTPUT_REGS_B => 0, C_MUX_PIPELINE_STAGES => 0, C_HAS_SOFTECC_INPUT_REGS_A => 0, C_HAS_SOFTECC_OUTPUT_REGS_B => 0, C_USE_SOFTECC => 0, C_USE_ECC => 0, C_EN_ECC_PIPE => 0, C_HAS_INJECTERR => 0, C_SIM_COLLISION_CHECK => "ALL", C_COMMON_CLK => 0, C_DISABLE_WARN_BHV_COLL => 0, C_EN_SLEEP_PIN => 0, C_USE_URAM => 0, C_EN_RDADDRA_CHG => 0, C_EN_RDADDRB_CHG => 0, C_EN_DEEPSLEEP_PIN => 0, C_EN_SHUTDOWN_PIN => 0, C_EN_SAFETY_CKT => 0, C_DISABLE_WARN_BHV_RANGE => 0, C_COUNT_36K_BRAM => "1", C_COUNT_18K_BRAM => "0", C_EST_POWER_SUMMARY => "Estimated Power for IP : 2.74095 mW" ) PORT MAP ( clka => clka, rsta => '0', ena => ena, regcea => '0', wea => wea, addra => addra, dina => dina, douta => douta, clkb => '0', rstb => '0', enb => '0', regceb => '0', web => STD_LOGIC_VECTOR(TO_UNSIGNED(0, 1)), addrb => STD_LOGIC_VECTOR(TO_UNSIGNED(0, 10)), dinb => STD_LOGIC_VECTOR(TO_UNSIGNED(0, 20)), injectsbiterr => '0', injectdbiterr => '0', eccpipece => '0', sleep => '0', deepsleep => '0', shutdown => '0', s_aclk => '0', s_aresetn => '0', s_axi_awid => STD_LOGIC_VECTOR(TO_UNSIGNED(0, 4)), s_axi_awaddr => STD_LOGIC_VECTOR(TO_UNSIGNED(0, 32)), s_axi_awlen => STD_LOGIC_VECTOR(TO_UNSIGNED(0, 8)), s_axi_awsize => STD_LOGIC_VECTOR(TO_UNSIGNED(0, 3)), s_axi_awburst => STD_LOGIC_VECTOR(TO_UNSIGNED(0, 2)), s_axi_awvalid => '0', s_axi_wdata => STD_LOGIC_VECTOR(TO_UNSIGNED(0, 20)), s_axi_wstrb => STD_LOGIC_VECTOR(TO_UNSIGNED(0, 1)), s_axi_wlast => '0', s_axi_wvalid => '0', s_axi_bready => '0', s_axi_arid => STD_LOGIC_VECTOR(TO_UNSIGNED(0, 4)), s_axi_araddr => STD_LOGIC_VECTOR(TO_UNSIGNED(0, 32)), s_axi_arlen => STD_LOGIC_VECTOR(TO_UNSIGNED(0, 8)), s_axi_arsize => STD_LOGIC_VECTOR(TO_UNSIGNED(0, 3)), s_axi_arburst => STD_LOGIC_VECTOR(TO_UNSIGNED(0, 2)), s_axi_arvalid => '0', s_axi_rready => '0', s_axi_injectsbiterr => '0', s_axi_injectdbiterr => '0' ); END bram_1024_3_arch;
-- (c) Copyright 1995-2017 Xilinx, Inc. All rights reserved. -- -- This file contains confidential and proprietary information -- of Xilinx, Inc. and is protected under U.S. and -- international copyright and other intellectual property -- laws. -- -- DISCLAIMER -- This disclaimer is not a license and does not grant any -- rights to the materials distributed herewith. Except as -- otherwise provided in a valid license issued to you by -- Xilinx, and to the maximum extent permitted by applicable -- law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND -- WITH ALL FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES -- AND CONDITIONS, EXPRESS, IMPLIED, OR STATUTORY, INCLUDING -- BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, NON- -- INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE; and -- (2) Xilinx shall not be liable (whether in contract or tort, -- including negligence, or under any other theory of -- liability) for any loss or damage of any kind or nature -- related to, arising under or in connection with these -- materials, including for any direct, or any indirect, -- special, incidental, or consequential loss or damage -- (including loss of data, profits, goodwill, or any type of -- loss or damage suffered as a result of any action brought -- by a third party) even if such damage or loss was -- reasonably foreseeable or Xilinx had been advised of the -- possibility of the same. -- -- CRITICAL APPLICATIONS -- Xilinx products are not designed or intended to be fail- -- safe, or for use in any application requiring fail-safe -- performance, such as life-support or safety devices or -- systems, Class III medical devices, nuclear facilities, -- applications related to the deployment of airbags, or any -- other applications that could lead to death, personal -- injury, or severe property or environmental damage -- (individually and collectively, "Critical -- Applications"). Customer assumes the sole risk and -- liability of any use of Xilinx products in Critical -- Applications, subject only to applicable laws and -- regulations governing limitations on product liability. -- -- THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS -- PART OF THIS FILE AT ALL TIMES. -- -- DO NOT MODIFY THIS FILE. -- IP VLNV: xilinx.com:ip:blk_mem_gen:8.3 -- IP Revision: 5 LIBRARY ieee; USE ieee.std_logic_1164.ALL; USE ieee.numeric_std.ALL; LIBRARY blk_mem_gen_v8_3_5; USE blk_mem_gen_v8_3_5.blk_mem_gen_v8_3_5; ENTITY bram_1024_3 IS PORT ( clka : IN STD_LOGIC; ena : IN STD_LOGIC; wea : IN STD_LOGIC_VECTOR(0 DOWNTO 0); addra : IN STD_LOGIC_VECTOR(9 DOWNTO 0); dina : IN STD_LOGIC_VECTOR(19 DOWNTO 0); douta : OUT STD_LOGIC_VECTOR(19 DOWNTO 0) ); END bram_1024_3; ARCHITECTURE bram_1024_3_arch OF bram_1024_3 IS ATTRIBUTE DowngradeIPIdentifiedWarnings : STRING; ATTRIBUTE DowngradeIPIdentifiedWarnings OF bram_1024_3_arch: ARCHITECTURE IS "yes"; COMPONENT blk_mem_gen_v8_3_5 IS GENERIC ( C_FAMILY : STRING; C_XDEVICEFAMILY : STRING; C_ELABORATION_DIR : STRING; C_INTERFACE_TYPE : INTEGER; C_AXI_TYPE : INTEGER; C_AXI_SLAVE_TYPE : INTEGER; C_USE_BRAM_BLOCK : INTEGER; C_ENABLE_32BIT_ADDRESS : INTEGER; C_CTRL_ECC_ALGO : STRING; C_HAS_AXI_ID : INTEGER; C_AXI_ID_WIDTH : INTEGER; C_MEM_TYPE : INTEGER; C_BYTE_SIZE : INTEGER; C_ALGORITHM : INTEGER; C_PRIM_TYPE : INTEGER; C_LOAD_INIT_FILE : INTEGER; C_INIT_FILE_NAME : STRING; C_INIT_FILE : STRING; C_USE_DEFAULT_DATA : INTEGER; C_DEFAULT_DATA : STRING; C_HAS_RSTA : INTEGER; C_RST_PRIORITY_A : STRING; C_RSTRAM_A : INTEGER; C_INITA_VAL : STRING; C_HAS_ENA : INTEGER; C_HAS_REGCEA : INTEGER; C_USE_BYTE_WEA : INTEGER; C_WEA_WIDTH : INTEGER; C_WRITE_MODE_A : STRING; C_WRITE_WIDTH_A : INTEGER; C_READ_WIDTH_A : INTEGER; C_WRITE_DEPTH_A : INTEGER; C_READ_DEPTH_A : INTEGER; C_ADDRA_WIDTH : INTEGER; C_HAS_RSTB : INTEGER; C_RST_PRIORITY_B : STRING; C_RSTRAM_B : INTEGER; C_INITB_VAL : STRING; C_HAS_ENB : INTEGER; C_HAS_REGCEB : INTEGER; C_USE_BYTE_WEB : INTEGER; C_WEB_WIDTH : INTEGER; C_WRITE_MODE_B : STRING; C_WRITE_WIDTH_B : INTEGER; C_READ_WIDTH_B : INTEGER; C_WRITE_DEPTH_B : INTEGER; C_READ_DEPTH_B : INTEGER; C_ADDRB_WIDTH : INTEGER; C_HAS_MEM_OUTPUT_REGS_A : INTEGER; C_HAS_MEM_OUTPUT_REGS_B : INTEGER; C_HAS_MUX_OUTPUT_REGS_A : INTEGER; C_HAS_MUX_OUTPUT_REGS_B : INTEGER; C_MUX_PIPELINE_STAGES : INTEGER; C_HAS_SOFTECC_INPUT_REGS_A : INTEGER; C_HAS_SOFTECC_OUTPUT_REGS_B : INTEGER; C_USE_SOFTECC : INTEGER; C_USE_ECC : INTEGER; C_EN_ECC_PIPE : INTEGER; C_HAS_INJECTERR : INTEGER; C_SIM_COLLISION_CHECK : STRING; C_COMMON_CLK : INTEGER; C_DISABLE_WARN_BHV_COLL : INTEGER; C_EN_SLEEP_PIN : INTEGER; C_USE_URAM : INTEGER; C_EN_RDADDRA_CHG : INTEGER; C_EN_RDADDRB_CHG : INTEGER; C_EN_DEEPSLEEP_PIN : INTEGER; C_EN_SHUTDOWN_PIN : INTEGER; C_EN_SAFETY_CKT : INTEGER; C_DISABLE_WARN_BHV_RANGE : INTEGER; C_COUNT_36K_BRAM : STRING; C_COUNT_18K_BRAM : STRING; C_EST_POWER_SUMMARY : STRING ); PORT ( clka : IN STD_LOGIC; rsta : IN STD_LOGIC; ena : IN STD_LOGIC; regcea : IN STD_LOGIC; wea : IN STD_LOGIC_VECTOR(0 DOWNTO 0); addra : IN STD_LOGIC_VECTOR(9 DOWNTO 0); dina : IN STD_LOGIC_VECTOR(19 DOWNTO 0); douta : OUT STD_LOGIC_VECTOR(19 DOWNTO 0); clkb : IN STD_LOGIC; rstb : IN STD_LOGIC; enb : IN STD_LOGIC; regceb : IN STD_LOGIC; web : IN STD_LOGIC_VECTOR(0 DOWNTO 0); addrb : IN STD_LOGIC_VECTOR(9 DOWNTO 0); dinb : IN STD_LOGIC_VECTOR(19 DOWNTO 0); doutb : OUT STD_LOGIC_VECTOR(19 DOWNTO 0); injectsbiterr : IN STD_LOGIC; injectdbiterr : IN STD_LOGIC; eccpipece : IN STD_LOGIC; sbiterr : OUT STD_LOGIC; dbiterr : OUT STD_LOGIC; rdaddrecc : OUT STD_LOGIC_VECTOR(9 DOWNTO 0); sleep : IN STD_LOGIC; deepsleep : IN STD_LOGIC; shutdown : IN STD_LOGIC; rsta_busy : OUT STD_LOGIC; rstb_busy : OUT STD_LOGIC; s_aclk : IN STD_LOGIC; s_aresetn : IN STD_LOGIC; s_axi_awid : IN STD_LOGIC_VECTOR(3 DOWNTO 0); s_axi_awaddr : IN STD_LOGIC_VECTOR(31 DOWNTO 0); s_axi_awlen : IN STD_LOGIC_VECTOR(7 DOWNTO 0); s_axi_awsize : IN STD_LOGIC_VECTOR(2 DOWNTO 0); s_axi_awburst : IN STD_LOGIC_VECTOR(1 DOWNTO 0); s_axi_awvalid : IN STD_LOGIC; s_axi_awready : OUT STD_LOGIC; s_axi_wdata : IN STD_LOGIC_VECTOR(19 DOWNTO 0); s_axi_wstrb : IN STD_LOGIC_VECTOR(0 DOWNTO 0); s_axi_wlast : IN STD_LOGIC; s_axi_wvalid : IN STD_LOGIC; s_axi_wready : OUT STD_LOGIC; s_axi_bid : OUT STD_LOGIC_VECTOR(3 DOWNTO 0); s_axi_bresp : OUT STD_LOGIC_VECTOR(1 DOWNTO 0); s_axi_bvalid : OUT STD_LOGIC; s_axi_bready : IN STD_LOGIC; s_axi_arid : IN STD_LOGIC_VECTOR(3 DOWNTO 0); s_axi_araddr : IN STD_LOGIC_VECTOR(31 DOWNTO 0); s_axi_arlen : IN STD_LOGIC_VECTOR(7 DOWNTO 0); s_axi_arsize : IN STD_LOGIC_VECTOR(2 DOWNTO 0); s_axi_arburst : IN STD_LOGIC_VECTOR(1 DOWNTO 0); s_axi_arvalid : IN STD_LOGIC; s_axi_arready : OUT STD_LOGIC; s_axi_rid : OUT STD_LOGIC_VECTOR(3 DOWNTO 0); s_axi_rdata : OUT STD_LOGIC_VECTOR(19 DOWNTO 0); s_axi_rresp : OUT STD_LOGIC_VECTOR(1 DOWNTO 0); s_axi_rlast : OUT STD_LOGIC; s_axi_rvalid : OUT STD_LOGIC; s_axi_rready : IN STD_LOGIC; s_axi_injectsbiterr : IN STD_LOGIC; s_axi_injectdbiterr : IN STD_LOGIC; s_axi_sbiterr : OUT STD_LOGIC; s_axi_dbiterr : OUT STD_LOGIC; s_axi_rdaddrecc : OUT STD_LOGIC_VECTOR(9 DOWNTO 0) ); END COMPONENT blk_mem_gen_v8_3_5; ATTRIBUTE X_CORE_INFO : STRING; ATTRIBUTE X_CORE_INFO OF bram_1024_3_arch: ARCHITECTURE IS "blk_mem_gen_v8_3_5,Vivado 2016.4"; ATTRIBUTE CHECK_LICENSE_TYPE : STRING; ATTRIBUTE CHECK_LICENSE_TYPE OF bram_1024_3_arch : ARCHITECTURE IS "bram_1024_3,blk_mem_gen_v8_3_5,{}"; ATTRIBUTE CORE_GENERATION_INFO : STRING; ATTRIBUTE CORE_GENERATION_INFO OF bram_1024_3_arch: ARCHITECTURE IS "bram_1024_3,blk_mem_gen_v8_3_5,{x_ipProduct=Vivado 2016.4,x_ipVendor=xilinx.com,x_ipLibrary=ip,x_ipName=blk_mem_gen,x_ipVersion=8.3,x_ipCoreRevision=5,x_ipLanguage=VHDL,x_ipSimLanguage=MIXED,C_FAMILY=zynq,C_XDEVICEFAMILY=zynq,C_ELABORATION_DIR=./,C_INTERFACE_TYPE=0,C_AXI_TYPE=1,C_AXI_SLAVE_TYPE=0,C_USE_BRAM_BLOCK=0,C_ENABLE_32BIT_ADDRESS=0,C_CTRL_ECC_ALGO=NONE,C_HAS_AXI_ID=0,C_AXI_ID_WIDTH=4,C_MEM_TYPE=0,C_BYTE_SIZE=9,C_ALGORITHM=1,C_PRIM_TYPE=1,C_LOAD_INIT_FILE=1,C_INIT_FILE_NAME=bram_1024_3.mi" & "f,C_INIT_FILE=bram_1024_3.mem,C_USE_DEFAULT_DATA=0,C_DEFAULT_DATA=0,C_HAS_RSTA=0,C_RST_PRIORITY_A=CE,C_RSTRAM_A=0,C_INITA_VAL=0,C_HAS_ENA=1,C_HAS_REGCEA=0,C_USE_BYTE_WEA=0,C_WEA_WIDTH=1,C_WRITE_MODE_A=WRITE_FIRST,C_WRITE_WIDTH_A=20,C_READ_WIDTH_A=20,C_WRITE_DEPTH_A=1024,C_READ_DEPTH_A=1024,C_ADDRA_WIDTH=10,C_HAS_RSTB=0,C_RST_PRIORITY_B=CE,C_RSTRAM_B=0,C_INITB_VAL=0,C_HAS_ENB=0,C_HAS_REGCEB=0,C_USE_BYTE_WEB=0,C_WEB_WIDTH=1,C_WRITE_MODE_B=WRITE_FIRST,C_WRITE_WIDTH_B=20,C_READ_WIDTH_B=20,C_WRITE_DE" & "PTH_B=1024,C_READ_DEPTH_B=1024,C_ADDRB_WIDTH=10,C_HAS_MEM_OUTPUT_REGS_A=1,C_HAS_MEM_OUTPUT_REGS_B=0,C_HAS_MUX_OUTPUT_REGS_A=0,C_HAS_MUX_OUTPUT_REGS_B=0,C_MUX_PIPELINE_STAGES=0,C_HAS_SOFTECC_INPUT_REGS_A=0,C_HAS_SOFTECC_OUTPUT_REGS_B=0,C_USE_SOFTECC=0,C_USE_ECC=0,C_EN_ECC_PIPE=0,C_HAS_INJECTERR=0,C_SIM_COLLISION_CHECK=ALL,C_COMMON_CLK=0,C_DISABLE_WARN_BHV_COLL=0,C_EN_SLEEP_PIN=0,C_USE_URAM=0,C_EN_RDADDRA_CHG=0,C_EN_RDADDRB_CHG=0,C_EN_DEEPSLEEP_PIN=0,C_EN_SHUTDOWN_PIN=0,C_EN_SAFETY_CKT=0,C_DISABLE" & "_WARN_BHV_RANGE=0,C_COUNT_36K_BRAM=1,C_COUNT_18K_BRAM=0,C_EST_POWER_SUMMARY=Estimated Power for IP _ 2.74095 mW}"; ATTRIBUTE X_INTERFACE_INFO : STRING; ATTRIBUTE X_INTERFACE_INFO OF clka: SIGNAL IS "xilinx.com:interface:bram:1.0 BRAM_PORTA CLK"; ATTRIBUTE X_INTERFACE_INFO OF ena: SIGNAL IS "xilinx.com:interface:bram:1.0 BRAM_PORTA EN"; ATTRIBUTE X_INTERFACE_INFO OF wea: SIGNAL IS "xilinx.com:interface:bram:1.0 BRAM_PORTA WE"; ATTRIBUTE X_INTERFACE_INFO OF addra: SIGNAL IS "xilinx.com:interface:bram:1.0 BRAM_PORTA ADDR"; ATTRIBUTE X_INTERFACE_INFO OF dina: SIGNAL IS "xilinx.com:interface:bram:1.0 BRAM_PORTA DIN"; ATTRIBUTE X_INTERFACE_INFO OF douta: SIGNAL IS "xilinx.com:interface:bram:1.0 BRAM_PORTA DOUT"; BEGIN U0 : blk_mem_gen_v8_3_5 GENERIC MAP ( C_FAMILY => "zynq", C_XDEVICEFAMILY => "zynq", C_ELABORATION_DIR => "./", C_INTERFACE_TYPE => 0, C_AXI_TYPE => 1, C_AXI_SLAVE_TYPE => 0, C_USE_BRAM_BLOCK => 0, C_ENABLE_32BIT_ADDRESS => 0, C_CTRL_ECC_ALGO => "NONE", C_HAS_AXI_ID => 0, C_AXI_ID_WIDTH => 4, C_MEM_TYPE => 0, C_BYTE_SIZE => 9, C_ALGORITHM => 1, C_PRIM_TYPE => 1, C_LOAD_INIT_FILE => 1, C_INIT_FILE_NAME => "bram_1024_3.mif", C_INIT_FILE => "bram_1024_3.mem", C_USE_DEFAULT_DATA => 0, C_DEFAULT_DATA => "0", C_HAS_RSTA => 0, C_RST_PRIORITY_A => "CE", C_RSTRAM_A => 0, C_INITA_VAL => "0", C_HAS_ENA => 1, C_HAS_REGCEA => 0, C_USE_BYTE_WEA => 0, C_WEA_WIDTH => 1, C_WRITE_MODE_A => "WRITE_FIRST", C_WRITE_WIDTH_A => 20, C_READ_WIDTH_A => 20, C_WRITE_DEPTH_A => 1024, C_READ_DEPTH_A => 1024, C_ADDRA_WIDTH => 10, C_HAS_RSTB => 0, C_RST_PRIORITY_B => "CE", C_RSTRAM_B => 0, C_INITB_VAL => "0", C_HAS_ENB => 0, C_HAS_REGCEB => 0, C_USE_BYTE_WEB => 0, C_WEB_WIDTH => 1, C_WRITE_MODE_B => "WRITE_FIRST", C_WRITE_WIDTH_B => 20, C_READ_WIDTH_B => 20, C_WRITE_DEPTH_B => 1024, C_READ_DEPTH_B => 1024, C_ADDRB_WIDTH => 10, C_HAS_MEM_OUTPUT_REGS_A => 1, C_HAS_MEM_OUTPUT_REGS_B => 0, C_HAS_MUX_OUTPUT_REGS_A => 0, C_HAS_MUX_OUTPUT_REGS_B => 0, C_MUX_PIPELINE_STAGES => 0, C_HAS_SOFTECC_INPUT_REGS_A => 0, C_HAS_SOFTECC_OUTPUT_REGS_B => 0, C_USE_SOFTECC => 0, C_USE_ECC => 0, C_EN_ECC_PIPE => 0, C_HAS_INJECTERR => 0, C_SIM_COLLISION_CHECK => "ALL", C_COMMON_CLK => 0, C_DISABLE_WARN_BHV_COLL => 0, C_EN_SLEEP_PIN => 0, C_USE_URAM => 0, C_EN_RDADDRA_CHG => 0, C_EN_RDADDRB_CHG => 0, C_EN_DEEPSLEEP_PIN => 0, C_EN_SHUTDOWN_PIN => 0, C_EN_SAFETY_CKT => 0, C_DISABLE_WARN_BHV_RANGE => 0, C_COUNT_36K_BRAM => "1", C_COUNT_18K_BRAM => "0", C_EST_POWER_SUMMARY => "Estimated Power for IP : 2.74095 mW" ) PORT MAP ( clka => clka, rsta => '0', ena => ena, regcea => '0', wea => wea, addra => addra, dina => dina, douta => douta, clkb => '0', rstb => '0', enb => '0', regceb => '0', web => STD_LOGIC_VECTOR(TO_UNSIGNED(0, 1)), addrb => STD_LOGIC_VECTOR(TO_UNSIGNED(0, 10)), dinb => STD_LOGIC_VECTOR(TO_UNSIGNED(0, 20)), injectsbiterr => '0', injectdbiterr => '0', eccpipece => '0', sleep => '0', deepsleep => '0', shutdown => '0', s_aclk => '0', s_aresetn => '0', s_axi_awid => STD_LOGIC_VECTOR(TO_UNSIGNED(0, 4)), s_axi_awaddr => STD_LOGIC_VECTOR(TO_UNSIGNED(0, 32)), s_axi_awlen => STD_LOGIC_VECTOR(TO_UNSIGNED(0, 8)), s_axi_awsize => STD_LOGIC_VECTOR(TO_UNSIGNED(0, 3)), s_axi_awburst => STD_LOGIC_VECTOR(TO_UNSIGNED(0, 2)), s_axi_awvalid => '0', s_axi_wdata => STD_LOGIC_VECTOR(TO_UNSIGNED(0, 20)), s_axi_wstrb => STD_LOGIC_VECTOR(TO_UNSIGNED(0, 1)), s_axi_wlast => '0', s_axi_wvalid => '0', s_axi_bready => '0', s_axi_arid => STD_LOGIC_VECTOR(TO_UNSIGNED(0, 4)), s_axi_araddr => STD_LOGIC_VECTOR(TO_UNSIGNED(0, 32)), s_axi_arlen => STD_LOGIC_VECTOR(TO_UNSIGNED(0, 8)), s_axi_arsize => STD_LOGIC_VECTOR(TO_UNSIGNED(0, 3)), s_axi_arburst => STD_LOGIC_VECTOR(TO_UNSIGNED(0, 2)), s_axi_arvalid => '0', s_axi_rready => '0', s_axi_injectsbiterr => '0', s_axi_injectdbiterr => '0' ); END bram_1024_3_arch;
library ieee; use ieee.std_logic_1164.all; entity top is port( clk : in std_logic; di : in std_logic; do : out std_logic ); end top; architecture behavioral of top is signal data : std_logic; begin mylabel: process (clk) variable tmp : std_logic; begin if rising_edge(clk) then tmp := di; -- Post-synthesis name : mylabel.tmp end if; data <= not(tmp); end process; do <= not(data); end behavioral;
-------------------------------------------------------------------------------- -- -- BLK MEM GEN v7.1 Core - Top-level core wrapper -- -------------------------------------------------------------------------------- -- -- (c) Copyright 2006-2010 Xilinx, Inc. All rights reserved. -- -- This file contains confidential and proprietary information -- of Xilinx, Inc. and is protected under U.S. and -- international copyright and other intellectual property -- laws. -- -- DISCLAIMER -- This disclaimer is not a license and does not grant any -- rights to the materials distributed herewith. Except as -- otherwise provided in a valid license issued to you by -- Xilinx, and to the maximum extent permitted by applicable -- law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND -- WITH ALL FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES -- AND CONDITIONS, EXPRESS, IMPLIED, OR STATUTORY, INCLUDING -- BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, NON- -- INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE; and -- (2) Xilinx shall not be liable (whether in contract or tort, -- including negligence, or under any other theory of -- liability) for any loss or damage of any kind or nature -- related to, arising under or in connection with these -- materials, including for any direct, or any indirect, -- special, incidental, or consequential loss or damage -- (including loss of data, profits, goodwill, or any type of -- loss or damage suffered as a result of any action brought -- by a third party) even if such damage or loss was -- reasonably foreseeable or Xilinx had been advised of the -- possibility of the same. -- -- CRITICAL APPLICATIONS -- Xilinx products are not designed or intended to be fail- -- safe, or for use in any application requiring fail-safe -- performance, such as life-support or safety devices or -- systems, Class III medical devices, nuclear facilities, -- applications related to the deployment of airbags, or any -- other applications that could lead to death, personal -- injury, or severe property or environmental damage -- (individually and collectively, "Critical -- Applications"). Customer assumes the sole risk and -- liability of any use of Xilinx products in Critical -- Applications, subject only to applicable laws and -- regulations governing limitations on product liability. -- -- THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS -- PART OF THIS FILE AT ALL TIMES. -------------------------------------------------------------------------------- -- -- Filename: weights_exdes.vhd -- -- Description: -- This is the actual BMG core wrapper. -- -------------------------------------------------------------------------------- -- Author: IP Solutions Division -- -- History: August 31, 2005 - First Release -------------------------------------------------------------------------------- -- -------------------------------------------------------------------------------- -- Library Declarations -------------------------------------------------------------------------------- LIBRARY IEEE; USE IEEE.STD_LOGIC_1164.ALL; USE IEEE.STD_LOGIC_ARITH.ALL; USE IEEE.STD_LOGIC_UNSIGNED.ALL; LIBRARY UNISIM; USE UNISIM.VCOMPONENTS.ALL; -------------------------------------------------------------------------------- -- Entity Declaration -------------------------------------------------------------------------------- ENTITY weights_exdes IS PORT ( --Inputs - Port A WEA : IN STD_LOGIC_VECTOR(0 DOWNTO 0); ADDRA : IN STD_LOGIC_VECTOR(4 DOWNTO 0); DINA : IN STD_LOGIC_VECTOR(23 DOWNTO 0); DOUTA : OUT STD_LOGIC_VECTOR(23 DOWNTO 0); CLKA : IN STD_LOGIC ); END weights_exdes; ARCHITECTURE xilinx OF weights_exdes IS COMPONENT BUFG IS PORT ( I : IN STD_ULOGIC; O : OUT STD_ULOGIC ); END COMPONENT; COMPONENT weights IS PORT ( --Port A WEA : IN STD_LOGIC_VECTOR(0 DOWNTO 0); ADDRA : IN STD_LOGIC_VECTOR(4 DOWNTO 0); DINA : IN STD_LOGIC_VECTOR(23 DOWNTO 0); DOUTA : OUT STD_LOGIC_VECTOR(23 DOWNTO 0); CLKA : IN STD_LOGIC ); END COMPONENT; SIGNAL CLKA_buf : STD_LOGIC; SIGNAL CLKB_buf : STD_LOGIC; SIGNAL S_ACLK_buf : STD_LOGIC; BEGIN bufg_A : BUFG PORT MAP ( I => CLKA, O => CLKA_buf ); bmg0 : weights PORT MAP ( --Port A WEA => WEA, ADDRA => ADDRA, DINA => DINA, DOUTA => DOUTA, CLKA => CLKA_buf ); END xilinx;
--! @file trig_table_ea.vhd --! @brief sin/cos lookup table generator --! @author Scott Teal (Scott@Teals.org) --! @date 2013-09-30 --! @copyright --! Copyright 2013 Richard Scott Teal, Jr. --! --! Licensed under the Apache License, Version 2.0 (the "License"); you may not --! use this file except in compliance with the License. You may obtain a copy --! of the License at --! --! http://www.apache.org/licenses/LICENSE-2.0 --! --! Unless required by applicable law or agreed to in writing, software --! distributed under the License is distributed on an "AS IS" BASIS, WITHOUT --! WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the --! License for the specific language governing permissions and limitations --! under the License. --! Standard IEEE library library ieee; use ieee.std_logic_1164.all; use work.fixed_pkg.all; --! @brief Sin & Cos lookup table --! @details --! Outputs cos(2*pi*angle) and sin(2*pi*angle), where 0 <= angle < 1. entity trig_table is port ( clk : in std_logic; rst : in std_logic; angle : in ufixed ); end entity; architecture rtl of trig_table is begin end rtl;
-- ============================================================== -- RTL generated by Vivado(TM) HLS - High-Level Synthesis from C, C++ and SystemC -- Version: 2014.1 -- Copyright (C) 2014 Xilinx Inc. All rights reserved. -- -- =========================================================== library IEEE; use IEEE.std_logic_1164.all; use IEEE.numeric_std.all; entity bitset_next is port ( ap_clk : IN STD_LOGIC; ap_rst : IN STD_LOGIC; ap_start : IN STD_LOGIC; ap_done : OUT STD_LOGIC; ap_idle : OUT STD_LOGIC; ap_ready : OUT STD_LOGIC; ap_ce : IN STD_LOGIC; p_read : IN STD_LOGIC_VECTOR (31 downto 0); r_bit : IN STD_LOGIC_VECTOR (7 downto 0); r_bucket_index : IN STD_LOGIC_VECTOR (7 downto 0); r_bucket : IN STD_LOGIC_VECTOR (31 downto 0); ap_return_0 : OUT STD_LOGIC_VECTOR (7 downto 0); ap_return_1 : OUT STD_LOGIC_VECTOR (7 downto 0); ap_return_2 : OUT STD_LOGIC_VECTOR (31 downto 0); ap_return_3 : OUT STD_LOGIC_VECTOR (0 downto 0) ); end; architecture behav of bitset_next is constant ap_const_logic_1 : STD_LOGIC := '1'; constant ap_const_logic_0 : STD_LOGIC := '0'; constant ap_ST_pp0_stg0_fsm_0 : STD_LOGIC_VECTOR (0 downto 0) := "0"; constant ap_const_lv1_0 : STD_LOGIC_VECTOR (0 downto 0) := "0"; constant ap_const_lv32_0 : STD_LOGIC_VECTOR (31 downto 0) := "00000000000000000000000000000000"; constant ap_const_lv1_1 : STD_LOGIC_VECTOR (0 downto 0) := "1"; constant ap_const_lv2_1 : STD_LOGIC_VECTOR (1 downto 0) := "01"; constant ap_const_lv2_2 : STD_LOGIC_VECTOR (1 downto 0) := "10"; constant ap_const_lv32_FFFFFFFF : STD_LOGIC_VECTOR (31 downto 0) := "11111111111111111111111111111111"; constant ap_const_lv2_0 : STD_LOGIC_VECTOR (1 downto 0) := "00"; constant ap_const_lv32_1 : STD_LOGIC_VECTOR (31 downto 0) := "00000000000000000000000000000001"; constant ap_const_lv8_1 : STD_LOGIC_VECTOR (7 downto 0) := "00000001"; constant ap_true : BOOLEAN := true; signal ap_CS_fsm : STD_LOGIC_VECTOR (0 downto 0) := "0"; signal ap_reg_ppiten_pp0_it0 : STD_LOGIC; signal ap_reg_ppiten_pp0_it1 : STD_LOGIC := '0'; signal ap_reg_ppiten_pp0_it2 : STD_LOGIC := '0'; signal grp_p_bsf32_hw_fu_118_ap_return : STD_LOGIC_VECTOR (4 downto 0); signal reg_123 : STD_LOGIC_VECTOR (4 downto 0); signal tmp_5_fu_143_p2 : STD_LOGIC_VECTOR (0 downto 0); signal tmp_9_1_fu_148_p2 : STD_LOGIC_VECTOR (0 downto 0); signal tmp_11_1_fu_153_p2 : STD_LOGIC_VECTOR (0 downto 0); signal r_bit_read_reg_196 : STD_LOGIC_VECTOR (7 downto 0); signal p_read_1_reg_202 : STD_LOGIC_VECTOR (31 downto 0); signal ap_reg_ppstg_p_read_1_reg_202_pp0_it1 : STD_LOGIC_VECTOR (31 downto 0); signal tmp_fu_127_p1 : STD_LOGIC_VECTOR (1 downto 0); signal tmp_reg_210 : STD_LOGIC_VECTOR (1 downto 0); signal ap_reg_ppstg_tmp_reg_210_pp0_it1 : STD_LOGIC_VECTOR (1 downto 0); signal bus_assign_fu_137_p2 : STD_LOGIC_VECTOR (31 downto 0); signal bus_assign_reg_216 : STD_LOGIC_VECTOR (31 downto 0); signal ap_reg_ppstg_bus_assign_reg_216_pp0_it1 : STD_LOGIC_VECTOR (31 downto 0); signal tmp_5_reg_223 : STD_LOGIC_VECTOR (0 downto 0); signal tmp_9_1_reg_227 : STD_LOGIC_VECTOR (0 downto 0); signal tmp_11_1_reg_231 : STD_LOGIC_VECTOR (0 downto 0); signal grp_p_bsf32_hw_fu_118_bus_r : STD_LOGIC_VECTOR (31 downto 0); signal ap_reg_phiprechg_agg_result_bucket_write_assign_reg_54pp0_it2 : STD_LOGIC_VECTOR (31 downto 0); signal agg_result_bucket_write_assign_phi_fu_58_p8 : STD_LOGIC_VECTOR (31 downto 0); signal ap_reg_phiprechg_agg_result_bucket_write_assign_reg_54pp0_it1 : STD_LOGIC_VECTOR (31 downto 0); signal ap_reg_phiprechg_agg_result_end_write_assign_reg_69pp0_it2 : STD_LOGIC_VECTOR (0 downto 0); signal agg_result_end_write_assign_phi_fu_73_p8 : STD_LOGIC_VECTOR (0 downto 0); signal ap_reg_phiprechg_agg_result_end_write_assign_reg_69pp0_it1 : STD_LOGIC_VECTOR (0 downto 0); signal ap_reg_phiprechg_agg_result_bucket_index_write_assign_reg_87pp0_it2 : STD_LOGIC_VECTOR (1 downto 0); signal agg_result_bucket_index_write_assign_phi_fu_91_p8 : STD_LOGIC_VECTOR (1 downto 0); signal ap_reg_phiprechg_agg_result_bucket_index_write_assign_reg_87pp0_it1 : STD_LOGIC_VECTOR (1 downto 0); signal agg_result_bit_write_assign_trunc3_ext_fu_163_p1 : STD_LOGIC_VECTOR (7 downto 0); signal ap_reg_phiprechg_agg_result_bit_write_assign_reg_104pp0_it2 : STD_LOGIC_VECTOR (7 downto 0); signal agg_result_bit_write_assign_phi_fu_107_p8 : STD_LOGIC_VECTOR (7 downto 0); signal agg_result_bit_write_assign_trunc_ext_fu_158_p1 : STD_LOGIC_VECTOR (7 downto 0); signal ap_reg_phiprechg_agg_result_bit_write_assign_reg_104pp0_it1 : STD_LOGIC_VECTOR (7 downto 0); signal tmp_3_fu_131_p2 : STD_LOGIC_VECTOR (31 downto 0); signal agg_result_bucket_index_write_assign_cast_fu_168_p1 : STD_LOGIC_VECTOR (7 downto 0); signal ap_NS_fsm : STD_LOGIC_VECTOR (0 downto 0); signal ap_sig_pprstidle_pp0 : STD_LOGIC; signal ap_sig_bdd_113 : BOOLEAN; signal ap_sig_bdd_104 : BOOLEAN; signal ap_sig_bdd_121 : BOOLEAN; signal ap_sig_bdd_125 : BOOLEAN; signal ap_sig_bdd_61 : BOOLEAN; signal ap_sig_bdd_73 : BOOLEAN; signal ap_sig_bdd_59 : BOOLEAN; component p_bsf32_hw IS port ( bus_r : IN STD_LOGIC_VECTOR (31 downto 0); ap_return : OUT STD_LOGIC_VECTOR (4 downto 0) ); end component; begin grp_p_bsf32_hw_fu_118 : component p_bsf32_hw port map ( bus_r => grp_p_bsf32_hw_fu_118_bus_r, ap_return => grp_p_bsf32_hw_fu_118_ap_return); -- the current state (ap_CS_fsm) of the state machine. -- ap_CS_fsm_assign_proc : process(ap_clk) begin if (ap_clk'event and ap_clk = '1') then if (ap_rst = '1') then ap_CS_fsm <= ap_ST_pp0_stg0_fsm_0; else ap_CS_fsm <= ap_NS_fsm; end if; end if; end process; -- ap_reg_ppiten_pp0_it1 assign process. -- ap_reg_ppiten_pp0_it1_assign_proc : process(ap_clk) begin if (ap_clk'event and ap_clk = '1') then if (ap_rst = '1') then ap_reg_ppiten_pp0_it1 <= ap_const_logic_0; else if (((ap_ST_pp0_stg0_fsm_0 = ap_CS_fsm) and not((((ap_const_logic_1 = ap_reg_ppiten_pp0_it0) and (ap_start = ap_const_logic_0)) or not((ap_const_logic_1 = ap_ce)))))) then ap_reg_ppiten_pp0_it1 <= ap_reg_ppiten_pp0_it0; end if; end if; end if; end process; -- ap_reg_ppiten_pp0_it2 assign process. -- ap_reg_ppiten_pp0_it2_assign_proc : process(ap_clk) begin if (ap_clk'event and ap_clk = '1') then if (ap_rst = '1') then ap_reg_ppiten_pp0_it2 <= ap_const_logic_0; else if (((ap_ST_pp0_stg0_fsm_0 = ap_CS_fsm) and not((((ap_const_logic_1 = ap_reg_ppiten_pp0_it0) and (ap_start = ap_const_logic_0)) or not((ap_const_logic_1 = ap_ce)))))) then ap_reg_ppiten_pp0_it2 <= ap_reg_ppiten_pp0_it1; end if; end if; end if; end process; -- ap_reg_phiprechg_agg_result_bit_write_assign_reg_104pp0_it2 assign process. -- ap_reg_phiprechg_agg_result_bit_write_assign_reg_104pp0_it2_assign_proc : process (ap_clk) begin if (ap_clk'event and ap_clk = '1') then if ((((ap_ST_pp0_stg0_fsm_0 = ap_CS_fsm) and (ap_const_logic_1 = ap_reg_ppiten_pp0_it1) and not(((ap_const_logic_1 = ap_reg_ppiten_pp0_it0) and (ap_start = ap_const_logic_0))) and (ap_const_logic_1 = ap_ce) and not((tmp_5_fu_143_p2 = ap_const_lv1_0)) and (ap_const_lv1_0 = tmp_9_1_fu_148_p2)) or ((ap_ST_pp0_stg0_fsm_0 = ap_CS_fsm) and (ap_const_logic_1 = ap_reg_ppiten_pp0_it1) and not(((ap_const_logic_1 = ap_reg_ppiten_pp0_it0) and (ap_start = ap_const_logic_0))) and (ap_const_logic_1 = ap_ce) and not((tmp_5_fu_143_p2 = ap_const_lv1_0)) and not((ap_const_lv1_0 = tmp_9_1_fu_148_p2)) and not((ap_const_lv1_0 = tmp_11_1_fu_153_p2))))) then ap_reg_phiprechg_agg_result_bit_write_assign_reg_104pp0_it2 <= r_bit_read_reg_196; elsif (((ap_ST_pp0_stg0_fsm_0 = ap_CS_fsm) and (ap_const_logic_1 = ap_reg_ppiten_pp0_it1) and not(((ap_const_logic_1 = ap_reg_ppiten_pp0_it0) and (ap_start = ap_const_logic_0))) and (ap_const_logic_1 = ap_ce))) then ap_reg_phiprechg_agg_result_bit_write_assign_reg_104pp0_it2 <= ap_reg_phiprechg_agg_result_bit_write_assign_reg_104pp0_it1; end if; end if; end process; -- ap_reg_phiprechg_agg_result_bucket_index_write_assign_reg_87pp0_it2 assign process. -- ap_reg_phiprechg_agg_result_bucket_index_write_assign_reg_87pp0_it2_assign_proc : process (ap_clk) begin if (ap_clk'event and ap_clk = '1') then if ((((ap_ST_pp0_stg0_fsm_0 = ap_CS_fsm) and (ap_const_logic_1 = ap_reg_ppiten_pp0_it1) and not(((ap_const_logic_1 = ap_reg_ppiten_pp0_it0) and (ap_start = ap_const_logic_0))) and (ap_const_logic_1 = ap_ce) and not((tmp_5_fu_143_p2 = ap_const_lv1_0)) and (ap_const_lv1_0 = tmp_9_1_fu_148_p2)) or ((ap_ST_pp0_stg0_fsm_0 = ap_CS_fsm) and (ap_const_logic_1 = ap_reg_ppiten_pp0_it1) and not(((ap_const_logic_1 = ap_reg_ppiten_pp0_it0) and (ap_start = ap_const_logic_0))) and (ap_const_logic_1 = ap_ce) and not((tmp_5_fu_143_p2 = ap_const_lv1_0)) and not((ap_const_lv1_0 = tmp_9_1_fu_148_p2)) and not((ap_const_lv1_0 = tmp_11_1_fu_153_p2))))) then ap_reg_phiprechg_agg_result_bucket_index_write_assign_reg_87pp0_it2 <= ap_const_lv2_2; elsif (((ap_ST_pp0_stg0_fsm_0 = ap_CS_fsm) and (ap_const_logic_1 = ap_reg_ppiten_pp0_it1) and not(((ap_const_logic_1 = ap_reg_ppiten_pp0_it0) and (ap_start = ap_const_logic_0))) and (ap_const_logic_1 = ap_ce))) then ap_reg_phiprechg_agg_result_bucket_index_write_assign_reg_87pp0_it2 <= ap_reg_phiprechg_agg_result_bucket_index_write_assign_reg_87pp0_it1; end if; end if; end process; -- ap_reg_phiprechg_agg_result_bucket_write_assign_reg_54pp0_it2 assign process. -- ap_reg_phiprechg_agg_result_bucket_write_assign_reg_54pp0_it2_assign_proc : process (ap_clk) begin if (ap_clk'event and ap_clk = '1') then if (ap_sig_bdd_61) then if (ap_sig_bdd_125) then ap_reg_phiprechg_agg_result_bucket_write_assign_reg_54pp0_it2 <= p_read_1_reg_202; elsif (ap_sig_bdd_121) then ap_reg_phiprechg_agg_result_bucket_write_assign_reg_54pp0_it2 <= ap_const_lv32_0; elsif ((ap_true = ap_true)) then ap_reg_phiprechg_agg_result_bucket_write_assign_reg_54pp0_it2 <= ap_reg_phiprechg_agg_result_bucket_write_assign_reg_54pp0_it1; end if; end if; end if; end process; -- ap_reg_phiprechg_agg_result_end_write_assign_reg_69pp0_it2 assign process. -- ap_reg_phiprechg_agg_result_end_write_assign_reg_69pp0_it2_assign_proc : process (ap_clk) begin if (ap_clk'event and ap_clk = '1') then end if; end process; -- assign process. -- process (ap_clk) begin if (ap_clk'event and ap_clk = '1') then if (((ap_ST_pp0_stg0_fsm_0 = ap_CS_fsm) and not(((ap_const_logic_1 = ap_reg_ppiten_pp0_it0) and (ap_start = ap_const_logic_0))) and (ap_const_logic_1 = ap_ce))) then ap_reg_ppstg_bus_assign_reg_216_pp0_it1 <= bus_assign_reg_216; ap_reg_ppstg_p_read_1_reg_202_pp0_it1 <= p_read_1_reg_202; ap_reg_ppstg_tmp_reg_210_pp0_it1 <= tmp_reg_210; end if; end if; end process; -- assign process. -- process (ap_clk) begin if (ap_clk'event and ap_clk = '1') then if (((ap_ST_pp0_stg0_fsm_0 = ap_CS_fsm) and (ap_const_logic_1 = ap_reg_ppiten_pp0_it0) and not(((ap_const_logic_1 = ap_reg_ppiten_pp0_it0) and (ap_start = ap_const_logic_0))) and (ap_const_logic_1 = ap_ce))) then bus_assign_reg_216 <= bus_assign_fu_137_p2; p_read_1_reg_202 <= p_read; r_bit_read_reg_196 <= r_bit; tmp_reg_210 <= tmp_fu_127_p1; end if; end if; end process; -- assign process. -- process (ap_clk) begin if (ap_clk'event and ap_clk = '1') then if ((((ap_ST_pp0_stg0_fsm_0 = ap_CS_fsm) and (ap_const_logic_1 = ap_reg_ppiten_pp0_it1) and not(((ap_const_logic_1 = ap_reg_ppiten_pp0_it0) and (ap_start = ap_const_logic_0))) and (ap_const_logic_1 = ap_ce) and (tmp_5_fu_143_p2 = ap_const_lv1_0)) or ((ap_ST_pp0_stg0_fsm_0 = ap_CS_fsm) and (ap_const_logic_1 = ap_reg_ppiten_pp0_it1) and not(((ap_const_logic_1 = ap_reg_ppiten_pp0_it0) and (ap_start = ap_const_logic_0))) and (ap_const_logic_1 = ap_ce) and not((tmp_5_fu_143_p2 = ap_const_lv1_0)) and not((ap_const_lv1_0 = tmp_9_1_fu_148_p2)) and (ap_const_lv1_0 = tmp_11_1_fu_153_p2)))) then reg_123 <= grp_p_bsf32_hw_fu_118_ap_return; end if; end if; end process; -- assign process. -- process (ap_clk) begin if (ap_clk'event and ap_clk = '1') then if (((ap_ST_pp0_stg0_fsm_0 = ap_CS_fsm) and (ap_const_logic_1 = ap_reg_ppiten_pp0_it1) and not(((ap_const_logic_1 = ap_reg_ppiten_pp0_it0) and (ap_start = ap_const_logic_0))) and (ap_const_logic_1 = ap_ce) and not((tmp_5_fu_143_p2 = ap_const_lv1_0)) and not((ap_const_lv1_0 = tmp_9_1_fu_148_p2)))) then tmp_11_1_reg_231 <= tmp_11_1_fu_153_p2; end if; end if; end process; -- assign process. -- process (ap_clk) begin if (ap_clk'event and ap_clk = '1') then if (((ap_ST_pp0_stg0_fsm_0 = ap_CS_fsm) and (ap_const_logic_1 = ap_reg_ppiten_pp0_it1) and not(((ap_const_logic_1 = ap_reg_ppiten_pp0_it0) and (ap_start = ap_const_logic_0))) and (ap_const_logic_1 = ap_ce))) then tmp_5_reg_223 <= tmp_5_fu_143_p2; end if; end if; end process; -- assign process. -- process (ap_clk) begin if (ap_clk'event and ap_clk = '1') then if (((ap_ST_pp0_stg0_fsm_0 = ap_CS_fsm) and (ap_const_logic_1 = ap_reg_ppiten_pp0_it1) and not(((ap_const_logic_1 = ap_reg_ppiten_pp0_it0) and (ap_start = ap_const_logic_0))) and (ap_const_logic_1 = ap_ce) and not((tmp_5_fu_143_p2 = ap_const_lv1_0)))) then tmp_9_1_reg_227 <= tmp_9_1_fu_148_p2; end if; end if; end process; ap_reg_phiprechg_agg_result_end_write_assign_reg_69pp0_it2(0) <= '1'; -- the next state (ap_NS_fsm) of the state machine. -- ap_NS_fsm_assign_proc : process (ap_start , ap_CS_fsm , ap_reg_ppiten_pp0_it0 , ap_ce , ap_sig_pprstidle_pp0) begin case ap_CS_fsm is when ap_ST_pp0_stg0_fsm_0 => ap_NS_fsm <= ap_ST_pp0_stg0_fsm_0; when others => ap_NS_fsm <= "X"; end case; end process; -- agg_result_bit_write_assign_phi_fu_107_p8 assign process. -- agg_result_bit_write_assign_phi_fu_107_p8_assign_proc : process(tmp_5_reg_223, agg_result_bit_write_assign_trunc3_ext_fu_163_p1, ap_reg_phiprechg_agg_result_bit_write_assign_reg_104pp0_it2, agg_result_bit_write_assign_trunc_ext_fu_158_p1, ap_sig_bdd_113, ap_sig_bdd_104) begin if (ap_sig_bdd_104) then if ((ap_const_lv1_0 = tmp_5_reg_223)) then agg_result_bit_write_assign_phi_fu_107_p8 <= agg_result_bit_write_assign_trunc_ext_fu_158_p1; elsif (ap_sig_bdd_113) then agg_result_bit_write_assign_phi_fu_107_p8 <= agg_result_bit_write_assign_trunc3_ext_fu_163_p1; else agg_result_bit_write_assign_phi_fu_107_p8 <= ap_reg_phiprechg_agg_result_bit_write_assign_reg_104pp0_it2; end if; else agg_result_bit_write_assign_phi_fu_107_p8 <= ap_reg_phiprechg_agg_result_bit_write_assign_reg_104pp0_it2; end if; end process; agg_result_bit_write_assign_trunc3_ext_fu_163_p1 <= std_logic_vector(resize(unsigned(reg_123),8)); agg_result_bit_write_assign_trunc_ext_fu_158_p1 <= std_logic_vector(resize(unsigned(reg_123),8)); agg_result_bucket_index_write_assign_cast_fu_168_p1 <= std_logic_vector(resize(unsigned(agg_result_bucket_index_write_assign_phi_fu_91_p8),8)); -- agg_result_bucket_index_write_assign_phi_fu_91_p8 assign process. -- agg_result_bucket_index_write_assign_phi_fu_91_p8_assign_proc : process(ap_reg_ppstg_tmp_reg_210_pp0_it1, tmp_5_reg_223, ap_reg_phiprechg_agg_result_bucket_index_write_assign_reg_87pp0_it2, ap_sig_bdd_113, ap_sig_bdd_104) begin if (ap_sig_bdd_104) then if ((ap_const_lv1_0 = tmp_5_reg_223)) then agg_result_bucket_index_write_assign_phi_fu_91_p8 <= ap_reg_ppstg_tmp_reg_210_pp0_it1; elsif (ap_sig_bdd_113) then agg_result_bucket_index_write_assign_phi_fu_91_p8 <= ap_const_lv2_1; else agg_result_bucket_index_write_assign_phi_fu_91_p8 <= ap_reg_phiprechg_agg_result_bucket_index_write_assign_reg_87pp0_it2; end if; else agg_result_bucket_index_write_assign_phi_fu_91_p8 <= ap_reg_phiprechg_agg_result_bucket_index_write_assign_reg_87pp0_it2; end if; end process; -- agg_result_bucket_write_assign_phi_fu_58_p8 assign process. -- agg_result_bucket_write_assign_phi_fu_58_p8_assign_proc : process(ap_reg_ppstg_p_read_1_reg_202_pp0_it1, ap_reg_ppstg_bus_assign_reg_216_pp0_it1, tmp_5_reg_223, ap_reg_phiprechg_agg_result_bucket_write_assign_reg_54pp0_it2, ap_sig_bdd_113, ap_sig_bdd_104) begin if (ap_sig_bdd_104) then if ((ap_const_lv1_0 = tmp_5_reg_223)) then agg_result_bucket_write_assign_phi_fu_58_p8 <= ap_reg_ppstg_bus_assign_reg_216_pp0_it1; elsif (ap_sig_bdd_113) then agg_result_bucket_write_assign_phi_fu_58_p8 <= ap_reg_ppstg_p_read_1_reg_202_pp0_it1; else agg_result_bucket_write_assign_phi_fu_58_p8 <= ap_reg_phiprechg_agg_result_bucket_write_assign_reg_54pp0_it2; end if; else agg_result_bucket_write_assign_phi_fu_58_p8 <= ap_reg_phiprechg_agg_result_bucket_write_assign_reg_54pp0_it2; end if; end process; -- agg_result_end_write_assign_phi_fu_73_p8 assign process. -- agg_result_end_write_assign_phi_fu_73_p8_assign_proc : process(ap_CS_fsm, ap_reg_ppiten_pp0_it2, tmp_5_reg_223, tmp_9_1_reg_227, tmp_11_1_reg_231, ap_reg_phiprechg_agg_result_end_write_assign_reg_69pp0_it2) begin if ((((ap_ST_pp0_stg0_fsm_0 = ap_CS_fsm) and (ap_const_logic_1 = ap_reg_ppiten_pp0_it2) and not((ap_const_lv1_0 = tmp_5_reg_223)) and not((ap_const_lv1_0 = tmp_9_1_reg_227)) and (ap_const_lv1_0 = tmp_11_1_reg_231)) or ((ap_ST_pp0_stg0_fsm_0 = ap_CS_fsm) and (ap_const_logic_1 = ap_reg_ppiten_pp0_it2) and (ap_const_lv1_0 = tmp_5_reg_223)))) then agg_result_end_write_assign_phi_fu_73_p8 <= ap_const_lv1_0; else agg_result_end_write_assign_phi_fu_73_p8 <= ap_reg_phiprechg_agg_result_end_write_assign_reg_69pp0_it2; end if; end process; -- ap_done assign process. -- ap_done_assign_proc : process(ap_start, ap_CS_fsm, ap_reg_ppiten_pp0_it0, ap_reg_ppiten_pp0_it2, ap_ce) begin if (((not((ap_const_logic_1 = ap_start)) and (ap_ST_pp0_stg0_fsm_0 = ap_CS_fsm) and (ap_const_logic_1 = ap_reg_ppiten_pp0_it0)) or ((ap_ST_pp0_stg0_fsm_0 = ap_CS_fsm) and (ap_const_logic_1 = ap_reg_ppiten_pp0_it2) and not(((ap_const_logic_1 = ap_reg_ppiten_pp0_it0) and (ap_start = ap_const_logic_0))) and (ap_const_logic_1 = ap_ce)))) then ap_done <= ap_const_logic_1; else ap_done <= ap_const_logic_0; end if; end process; -- ap_idle assign process. -- ap_idle_assign_proc : process(ap_start, ap_CS_fsm, ap_reg_ppiten_pp0_it0, ap_reg_ppiten_pp0_it1, ap_reg_ppiten_pp0_it2) begin if ((not((ap_const_logic_1 = ap_start)) and (ap_ST_pp0_stg0_fsm_0 = ap_CS_fsm) and (ap_const_logic_0 = ap_reg_ppiten_pp0_it0) and (ap_const_logic_0 = ap_reg_ppiten_pp0_it1) and (ap_const_logic_0 = ap_reg_ppiten_pp0_it2))) then ap_idle <= ap_const_logic_1; else ap_idle <= ap_const_logic_0; end if; end process; -- ap_ready assign process. -- ap_ready_assign_proc : process(ap_start, ap_CS_fsm, ap_reg_ppiten_pp0_it0, ap_ce) begin if (((ap_ST_pp0_stg0_fsm_0 = ap_CS_fsm) and (ap_const_logic_1 = ap_reg_ppiten_pp0_it0) and not(((ap_const_logic_1 = ap_reg_ppiten_pp0_it0) and (ap_start = ap_const_logic_0))) and (ap_const_logic_1 = ap_ce))) then ap_ready <= ap_const_logic_1; else ap_ready <= ap_const_logic_0; end if; end process; ap_reg_phiprechg_agg_result_bit_write_assign_reg_104pp0_it1 <= ap_const_lv8_1; ap_reg_phiprechg_agg_result_bucket_index_write_assign_reg_87pp0_it1 <= ap_const_lv2_1; ap_reg_phiprechg_agg_result_bucket_write_assign_reg_54pp0_it1 <= ap_const_lv32_1; ap_reg_phiprechg_agg_result_end_write_assign_reg_69pp0_it1 <= ap_const_lv1_1; ap_reg_ppiten_pp0_it0 <= ap_start; ap_return_0 <= agg_result_bit_write_assign_phi_fu_107_p8; ap_return_1 <= agg_result_bucket_index_write_assign_cast_fu_168_p1; ap_return_2 <= agg_result_bucket_write_assign_phi_fu_58_p8; ap_return_3 <= agg_result_end_write_assign_phi_fu_73_p8; -- ap_sig_bdd_104 assign process. -- ap_sig_bdd_104_assign_proc : process(ap_CS_fsm, ap_reg_ppiten_pp0_it2) begin ap_sig_bdd_104 <= ((ap_ST_pp0_stg0_fsm_0 = ap_CS_fsm) and (ap_const_logic_1 = ap_reg_ppiten_pp0_it2)); end process; -- ap_sig_bdd_113 assign process. -- ap_sig_bdd_113_assign_proc : process(tmp_5_reg_223, tmp_9_1_reg_227, tmp_11_1_reg_231) begin ap_sig_bdd_113 <= (not((ap_const_lv1_0 = tmp_5_reg_223)) and not((ap_const_lv1_0 = tmp_9_1_reg_227)) and (ap_const_lv1_0 = tmp_11_1_reg_231)); end process; -- ap_sig_bdd_121 assign process. -- ap_sig_bdd_121_assign_proc : process(tmp_5_fu_143_p2, tmp_9_1_fu_148_p2) begin ap_sig_bdd_121 <= (not((tmp_5_fu_143_p2 = ap_const_lv1_0)) and (ap_const_lv1_0 = tmp_9_1_fu_148_p2)); end process; -- ap_sig_bdd_125 assign process. -- ap_sig_bdd_125_assign_proc : process(tmp_5_fu_143_p2, tmp_9_1_fu_148_p2, tmp_11_1_fu_153_p2) begin ap_sig_bdd_125 <= (not((tmp_5_fu_143_p2 = ap_const_lv1_0)) and not((ap_const_lv1_0 = tmp_9_1_fu_148_p2)) and not((ap_const_lv1_0 = tmp_11_1_fu_153_p2))); end process; -- ap_sig_bdd_59 assign process. -- ap_sig_bdd_59_assign_proc : process(ap_CS_fsm, ap_reg_ppiten_pp0_it1) begin ap_sig_bdd_59 <= ((ap_ST_pp0_stg0_fsm_0 = ap_CS_fsm) and (ap_const_logic_1 = ap_reg_ppiten_pp0_it1)); end process; -- ap_sig_bdd_61 assign process. -- ap_sig_bdd_61_assign_proc : process(ap_start, ap_CS_fsm, ap_reg_ppiten_pp0_it0, ap_reg_ppiten_pp0_it1, ap_ce) begin ap_sig_bdd_61 <= ((ap_ST_pp0_stg0_fsm_0 = ap_CS_fsm) and (ap_const_logic_1 = ap_reg_ppiten_pp0_it1) and not(((ap_const_logic_1 = ap_reg_ppiten_pp0_it0) and (ap_start = ap_const_logic_0))) and (ap_const_logic_1 = ap_ce)); end process; -- ap_sig_bdd_73 assign process. -- ap_sig_bdd_73_assign_proc : process(tmp_5_fu_143_p2, tmp_9_1_fu_148_p2, tmp_11_1_fu_153_p2) begin ap_sig_bdd_73 <= (not((tmp_5_fu_143_p2 = ap_const_lv1_0)) and not((ap_const_lv1_0 = tmp_9_1_fu_148_p2)) and (ap_const_lv1_0 = tmp_11_1_fu_153_p2)); end process; -- ap_sig_pprstidle_pp0 assign process. -- ap_sig_pprstidle_pp0_assign_proc : process(ap_start, ap_reg_ppiten_pp0_it0, ap_reg_ppiten_pp0_it1) begin if (((ap_const_logic_0 = ap_reg_ppiten_pp0_it0) and (ap_const_logic_0 = ap_reg_ppiten_pp0_it1) and (ap_const_logic_0 = ap_start))) then ap_sig_pprstidle_pp0 <= ap_const_logic_1; else ap_sig_pprstidle_pp0 <= ap_const_logic_0; end if; end process; bus_assign_fu_137_p2 <= (tmp_3_fu_131_p2 and r_bucket); -- grp_p_bsf32_hw_fu_118_bus_r assign process. -- grp_p_bsf32_hw_fu_118_bus_r_assign_proc : process(tmp_5_fu_143_p2, p_read_1_reg_202, bus_assign_reg_216, ap_sig_bdd_73, ap_sig_bdd_59) begin if (ap_sig_bdd_59) then if (ap_sig_bdd_73) then grp_p_bsf32_hw_fu_118_bus_r <= p_read_1_reg_202; elsif ((tmp_5_fu_143_p2 = ap_const_lv1_0)) then grp_p_bsf32_hw_fu_118_bus_r <= bus_assign_reg_216; else grp_p_bsf32_hw_fu_118_bus_r <= "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; end if; else grp_p_bsf32_hw_fu_118_bus_r <= "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"; end if; end process; tmp_11_1_fu_153_p2 <= "1" when (p_read_1_reg_202 = ap_const_lv32_0) else "0"; tmp_3_fu_131_p2 <= std_logic_vector(unsigned(r_bucket) + unsigned(ap_const_lv32_FFFFFFFF)); tmp_5_fu_143_p2 <= "1" when (bus_assign_reg_216 = ap_const_lv32_0) else "0"; tmp_9_1_fu_148_p2 <= "1" when (tmp_reg_210 = ap_const_lv2_0) else "0"; tmp_fu_127_p1 <= r_bucket_index(2 - 1 downto 0); end behav;
-- File: gray_counter_28.vhd -- Generated by MyHDL 0.8dev -- Date: Sun Feb 3 17:16:41 2013 library IEEE; use IEEE.std_logic_1164.all; use IEEE.numeric_std.all; use std.textio.all; use work.pck_myhdl_08.all; entity gray_counter_28 is port ( gray_count: out unsigned(27 downto 0); enable: in std_logic; clock: in std_logic; reset: in std_logic ); end entity gray_counter_28; architecture MyHDL of gray_counter_28 is signal even: std_logic; signal gray: unsigned(27 downto 0); begin GRAY_COUNTER_28_SEQ: process (clock, reset) is variable found: std_logic; variable word: unsigned(27 downto 0); begin if (reset = '1') then even <= '1'; gray <= (others => '0'); elsif rising_edge(clock) then word := unsigned'("1" & gray((28 - 2)-1 downto 0) & even); if bool(enable) then found := '0'; for i in 0 to 28-1 loop if ((word(i) = '1') and (not bool(found))) then gray(i) <= stdl((not bool(gray(i)))); found := '1'; end if; end loop; even <= stdl((not bool(even))); end if; end if; end process GRAY_COUNTER_28_SEQ; gray_count <= gray; end architecture MyHDL;
-- This program is free software: you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation, either version 3 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <http://www.gnu.org/licenses/> -- -- Copyright (C) 2014 Jakub Kicinski <kubakici@wp.pl> library IEEE; use IEEE.STD_LOGIC_1164.all; use IEEE.STD_LOGIC_ARITH.all; use IEEE.STD_LOGIC_UNSIGNED.all; -- Binary wrap-around counter with enable entity counter_en is generic (N_BITS : integer); port (Clk : in std_logic; Rst : in std_logic; Enable : in std_logic; Cnt : out std_logic_vector (N_BITS - 1 downto 0)); end counter_en; -- Operation: -- Count number of cycles @Enable is up. -- Increase input from 0 to 2^N_BITS - 1 then start from zero again. architecture Behavioral of counter_en is signal count : std_logic_vector (N_BITS - 1 downto 0); begin Cnt <= count; inc : process (Clk) begin if RISING_EDGE(Clk) then if Enable = '1' then count <= count + 1; end if; if Rst = '1' then count <= (others => '0'); end if; end if; end process; end Behavioral;
-- SIMON 64/128 -- feistel round function test bench -- -- @Author: Jos Wetzels -- @Author: Wouter Bokslag -- LIBRARY ieee; USE ieee.std_logic_1164.ALL; ENTITY tb_round IS END tb_round; ARCHITECTURE behavior OF tb_round IS -- Component Declaration for the Unit Under Test (UUT) COMPONENT round_f port(clk : in std_logic; rst : in std_logic; v_in : in std_logic_vector(63 downto 0); v_k : in std_logic_vector(31 downto 0); v_out : out std_logic_vector(63 downto 0) ); END COMPONENT; --Inputs signal clk : std_logic := '1'; -- rising-edge first clock since we use negative-edge triggered registers signal rst : std_logic := '1'; signal v_k : std_logic_vector(31 downto 0) := (others => '0'); -- Round Key signal v_in : std_logic_vector(63 downto 0) := (others => '0'); -- Input block --Outputs signal v_out : std_logic_vector(63 downto 0); -- Output block -- Clock period definitions constant clk_period : time := 10 ns; signal clk_generator_finish : STD_LOGIC := '0'; signal test_bench_finish : STD_LOGIC := '0'; BEGIN -- Instantiate the Unit Under Test (UUT) uut: round_f PORT MAP ( clk => clk, rst => rst, v_in => v_in, v_k => v_k, v_out => v_out ); -- Clock process definitions clock : process begin while ( clk_generator_finish /= '1') loop clk <= not clk; wait for clk_period/2; end loop; wait; end process; -- Stimulus process stim_proc: process begin wait for clk_period/2 + 10*clk_period; -- SIMON 64/128 test vectors v_in <= X"656B696C20646E75"; v_k <= X"03020100"; -- init rst <= '1'; wait for clk_period; -- run rst <= '0'; wait for clk_period; assert v_out = X"FC8B8A84656B696C" report "ROUND_F ERROR (r_0)" severity FAILURE; v_in <= v_out; v_k <= X"0B0A0908"; wait for clk_period; assert v_out = X"154D4E7FFC8B8A84" report "ROUND_F ERROR (r_1)" severity FAILURE; v_in <= v_out; v_k <= X"13121110"; wait for clk_period; assert v_out = X"B2A6BE7C154D4E7F" report "ROUND_F ERROR (r_2)" severity FAILURE; v_in <= v_out; v_k <= X"1B1A1918"; wait for clk_period; assert v_out = X"E0C1D225B2A6BE7C" report "ROUND_F ERROR (r_3)" severity FAILURE; test_bench_finish <= '1'; clk_generator_finish <= '1'; wait for clk_period; wait; end process; END;
-- Copyright (C) Clifton Labs. All rights reserved. -- CLIFTON LABS MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE -- SUITABILITY OF THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT -- NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A -- PARTICULAR PURPOSE, OR NON-INFRINGEMENT. CLIFTON LABS SHALL NOT BE -- LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, RESULT -- OF USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES. -- By using or copying this Software, Licensee agrees to abide by the -- intellectual property laws, and all other applicable laws of the U.S., -- and the terms of this license. -- You may modify, distribute, and use the software contained in this -- package under the terms of the GNU General Public License as published -- by the Free Software Foundation; version 2 of the License. -- You should have received a copy of the GNU General Public License along -- with this software; if not, write to the Free Software Foundation, Inc., -- 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA entity character_write is end character_write; architecture test0 of character_write is type character_file is file of character; begin doit: process file fileout : character_file open write_mode is "character.file"; begin write(fileout, '1'); write(fileout, 'A'); write(fileout, '$'); write(fileout, '+'); assert false report "PASSED TEST: character_write." severity note; wait; end process; end test0;
-- Copyright (C) Clifton Labs. All rights reserved. -- CLIFTON LABS MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE -- SUITABILITY OF THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT -- NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A -- PARTICULAR PURPOSE, OR NON-INFRINGEMENT. CLIFTON LABS SHALL NOT BE -- LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, RESULT -- OF USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES. -- By using or copying this Software, Licensee agrees to abide by the -- intellectual property laws, and all other applicable laws of the U.S., -- and the terms of this license. -- You may modify, distribute, and use the software contained in this -- package under the terms of the GNU General Public License as published -- by the Free Software Foundation; version 2 of the License. -- You should have received a copy of the GNU General Public License along -- with this software; if not, write to the Free Software Foundation, Inc., -- 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA entity character_write is end character_write; architecture test0 of character_write is type character_file is file of character; begin doit: process file fileout : character_file open write_mode is "character.file"; begin write(fileout, '1'); write(fileout, 'A'); write(fileout, '$'); write(fileout, '+'); assert false report "PASSED TEST: character_write." severity note; wait; end process; end test0;
-- Copyright (C) Clifton Labs. All rights reserved. -- CLIFTON LABS MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE -- SUITABILITY OF THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT -- NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A -- PARTICULAR PURPOSE, OR NON-INFRINGEMENT. CLIFTON LABS SHALL NOT BE -- LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, RESULT -- OF USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES. -- By using or copying this Software, Licensee agrees to abide by the -- intellectual property laws, and all other applicable laws of the U.S., -- and the terms of this license. -- You may modify, distribute, and use the software contained in this -- package under the terms of the GNU General Public License as published -- by the Free Software Foundation; version 2 of the License. -- You should have received a copy of the GNU General Public License along -- with this software; if not, write to the Free Software Foundation, Inc., -- 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA entity character_write is end character_write; architecture test0 of character_write is type character_file is file of character; begin doit: process file fileout : character_file open write_mode is "character.file"; begin write(fileout, '1'); write(fileout, 'A'); write(fileout, '$'); write(fileout, '+'); assert false report "PASSED TEST: character_write." severity note; wait; end process; end test0;
-- (c) Copyright 1995-2017 Xilinx, Inc. All rights reserved. -- -- This file contains confidential and proprietary information -- of Xilinx, Inc. and is protected under U.S. and -- international copyright and other intellectual property -- laws. -- -- DISCLAIMER -- This disclaimer is not a license and does not grant any -- rights to the materials distributed herewith. Except as -- otherwise provided in a valid license issued to you by -- Xilinx, and to the maximum extent permitted by applicable -- law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND -- WITH ALL FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES -- AND CONDITIONS, EXPRESS, IMPLIED, OR STATUTORY, INCLUDING -- BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, NON- -- INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE; and -- (2) Xilinx shall not be liable (whether in contract or tort, -- including negligence, or under any other theory of -- liability) for any loss or damage of any kind or nature -- related to, arising under or in connection with these -- materials, including for any direct, or any indirect, -- special, incidental, or consequential loss or damage -- (including loss of data, profits, goodwill, or any type of -- loss or damage suffered as a result of any action brought -- by a third party) even if such damage or loss was -- reasonably foreseeable or Xilinx had been advised of the -- possibility of the same. -- -- CRITICAL APPLICATIONS -- Xilinx products are not designed or intended to be fail- -- safe, or for use in any application requiring fail-safe -- performance, such as life-support or safety devices or -- systems, Class III medical devices, nuclear facilities, -- applications related to the deployment of airbags, or any -- other applications that could lead to death, personal -- injury, or severe property or environmental damage -- (individually and collectively, "Critical -- Applications"). Customer assumes the sole risk and -- liability of any use of Xilinx products in Critical -- Applications, subject only to applicable laws and -- regulations governing limitations on product liability. -- -- THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS -- PART OF THIS FILE AT ALL TIMES. -- -- DO NOT MODIFY THIS FILE. -- IP VLNV: user.org:user:router:1.0 -- IP Revision: 7 LIBRARY ieee; USE ieee.std_logic_1164.ALL; USE ieee.numeric_std.ALL; ENTITY sys_router_0_2 IS PORT ( CLOCK : IN STD_LOGIC; RESET : IN STD_LOGIC; L_DIN : IN STD_LOGIC_VECTOR(31 DOWNTO 0); L_VIN : IN STD_LOGIC; L_RIN : OUT STD_LOGIC; L_DOUT : OUT STD_LOGIC_VECTOR(31 DOWNTO 0); L_VOUT : OUT STD_LOGIC; L_ROUT : IN STD_LOGIC; S_DIN : IN STD_LOGIC_VECTOR(31 DOWNTO 0); S_VIN : IN STD_LOGIC; S_RIN : OUT STD_LOGIC; S_DOUT : OUT STD_LOGIC_VECTOR(31 DOWNTO 0); S_VOUT : OUT STD_LOGIC; S_ROUT : IN STD_LOGIC; E_DIN : IN STD_LOGIC_VECTOR(31 DOWNTO 0); E_VIN : IN STD_LOGIC; E_RIN : OUT STD_LOGIC; E_DOUT : OUT STD_LOGIC_VECTOR(31 DOWNTO 0); E_VOUT : OUT STD_LOGIC; E_ROUT : IN STD_LOGIC ); END sys_router_0_2; ARCHITECTURE sys_router_0_2_arch OF sys_router_0_2 IS ATTRIBUTE DowngradeIPIdentifiedWarnings : STRING; ATTRIBUTE DowngradeIPIdentifiedWarnings OF sys_router_0_2_arch: ARCHITECTURE IS "yes"; COMPONENT router_struct IS GENERIC ( ADDR_X : INTEGER; ADDR_Y : INTEGER; N_INST : BOOLEAN; S_INST : BOOLEAN; E_INST : BOOLEAN; W_INST : BOOLEAN ); PORT ( CLOCK : IN STD_LOGIC; RESET : IN STD_LOGIC; L_DIN : IN STD_LOGIC_VECTOR(31 DOWNTO 0); L_VIN : IN STD_LOGIC; L_RIN : OUT STD_LOGIC; L_DOUT : OUT STD_LOGIC_VECTOR(31 DOWNTO 0); L_VOUT : OUT STD_LOGIC; L_ROUT : IN STD_LOGIC; N_DIN : IN STD_LOGIC_VECTOR(31 DOWNTO 0); N_VIN : IN STD_LOGIC; N_RIN : OUT STD_LOGIC; N_DOUT : OUT STD_LOGIC_VECTOR(31 DOWNTO 0); N_VOUT : OUT STD_LOGIC; N_ROUT : IN STD_LOGIC; S_DIN : IN STD_LOGIC_VECTOR(31 DOWNTO 0); S_VIN : IN STD_LOGIC; S_RIN : OUT STD_LOGIC; S_DOUT : OUT STD_LOGIC_VECTOR(31 DOWNTO 0); S_VOUT : OUT STD_LOGIC; S_ROUT : IN STD_LOGIC; E_DIN : IN STD_LOGIC_VECTOR(31 DOWNTO 0); E_VIN : IN STD_LOGIC; E_RIN : OUT STD_LOGIC; E_DOUT : OUT STD_LOGIC_VECTOR(31 DOWNTO 0); E_VOUT : OUT STD_LOGIC; E_ROUT : IN STD_LOGIC; W_DIN : IN STD_LOGIC_VECTOR(31 DOWNTO 0); W_VIN : IN STD_LOGIC; W_RIN : OUT STD_LOGIC; W_DOUT : OUT STD_LOGIC_VECTOR(31 DOWNTO 0); W_VOUT : OUT STD_LOGIC; W_ROUT : IN STD_LOGIC ); END COMPONENT router_struct; ATTRIBUTE X_CORE_INFO : STRING; ATTRIBUTE X_CORE_INFO OF sys_router_0_2_arch: ARCHITECTURE IS "router_struct,Vivado 2016.4"; ATTRIBUTE CHECK_LICENSE_TYPE : STRING; ATTRIBUTE CHECK_LICENSE_TYPE OF sys_router_0_2_arch : ARCHITECTURE IS "sys_router_0_2,router_struct,{}"; ATTRIBUTE X_INTERFACE_INFO : STRING; ATTRIBUTE X_INTERFACE_INFO OF CLOCK: SIGNAL IS "xilinx.com:signal:clock:1.0 CLOCK CLK"; ATTRIBUTE X_INTERFACE_INFO OF RESET: SIGNAL IS "xilinx.com:signal:reset:1.0 RESET RST"; ATTRIBUTE X_INTERFACE_INFO OF L_DIN: SIGNAL IS "xilinx.com:interface:axis:1.0 L_IN TDATA"; ATTRIBUTE X_INTERFACE_INFO OF L_VIN: SIGNAL IS "xilinx.com:interface:axis:1.0 L_IN TVALID"; ATTRIBUTE X_INTERFACE_INFO OF L_RIN: SIGNAL IS "xilinx.com:interface:axis:1.0 L_IN TREADY"; ATTRIBUTE X_INTERFACE_INFO OF L_DOUT: SIGNAL IS "xilinx.com:interface:axis:1.0 L_OUT TDATA"; ATTRIBUTE X_INTERFACE_INFO OF L_VOUT: SIGNAL IS "xilinx.com:interface:axis:1.0 L_OUT TVALID"; ATTRIBUTE X_INTERFACE_INFO OF L_ROUT: SIGNAL IS "xilinx.com:interface:axis:1.0 L_OUT TREADY"; ATTRIBUTE X_INTERFACE_INFO OF S_DIN: SIGNAL IS "xilinx.com:interface:axis:1.0 S_IN TDATA"; ATTRIBUTE X_INTERFACE_INFO OF S_VIN: SIGNAL IS "xilinx.com:interface:axis:1.0 S_IN TVALID"; ATTRIBUTE X_INTERFACE_INFO OF S_RIN: SIGNAL IS "xilinx.com:interface:axis:1.0 S_IN TREADY"; ATTRIBUTE X_INTERFACE_INFO OF S_DOUT: SIGNAL IS "xilinx.com:interface:axis:1.0 S_OUT TDATA"; ATTRIBUTE X_INTERFACE_INFO OF S_VOUT: SIGNAL IS "xilinx.com:interface:axis:1.0 S_OUT TVALID"; ATTRIBUTE X_INTERFACE_INFO OF S_ROUT: SIGNAL IS "xilinx.com:interface:axis:1.0 S_OUT TREADY"; ATTRIBUTE X_INTERFACE_INFO OF E_DIN: SIGNAL IS "xilinx.com:interface:axis:1.0 E_IN TDATA"; ATTRIBUTE X_INTERFACE_INFO OF E_VIN: SIGNAL IS "xilinx.com:interface:axis:1.0 E_IN TVALID"; ATTRIBUTE X_INTERFACE_INFO OF E_RIN: SIGNAL IS "xilinx.com:interface:axis:1.0 E_IN TREADY"; ATTRIBUTE X_INTERFACE_INFO OF E_DOUT: SIGNAL IS "xilinx.com:interface:axis:1.0 E_OUT TDATA"; ATTRIBUTE X_INTERFACE_INFO OF E_VOUT: SIGNAL IS "xilinx.com:interface:axis:1.0 E_OUT TVALID"; ATTRIBUTE X_INTERFACE_INFO OF E_ROUT: SIGNAL IS "xilinx.com:interface:axis:1.0 E_OUT TREADY"; BEGIN U0 : router_struct GENERIC MAP ( ADDR_X => 0, ADDR_Y => 2, N_INST => false, S_INST => true, E_INST => true, W_INST => false ) PORT MAP ( CLOCK => CLOCK, RESET => RESET, L_DIN => L_DIN, L_VIN => L_VIN, L_RIN => L_RIN, L_DOUT => L_DOUT, L_VOUT => L_VOUT, L_ROUT => L_ROUT, N_DIN => STD_LOGIC_VECTOR(TO_UNSIGNED(0, 32)), N_VIN => '0', N_ROUT => '0', S_DIN => S_DIN, S_VIN => S_VIN, S_RIN => S_RIN, S_DOUT => S_DOUT, S_VOUT => S_VOUT, S_ROUT => S_ROUT, E_DIN => E_DIN, E_VIN => E_VIN, E_RIN => E_RIN, E_DOUT => E_DOUT, E_VOUT => E_VOUT, E_ROUT => E_ROUT, W_DIN => STD_LOGIC_VECTOR(TO_UNSIGNED(0, 32)), W_VIN => '0', W_ROUT => '0' ); END sys_router_0_2_arch;
library IEEE; use IEEE.STD_LOGIC_1164.ALL; entity ClockDivider is Generic ( DEVIDER : integer := 2 ); Port ( clk_in : in STD_LOGIC := '0'; clk_out : out STD_LOGIC := '0' ); end ClockDivider; architecture Behavioral of ClockDivider is signal temp : STD_LOGIC := '0'; signal counter : integer range 0 to DEVIDER := 0; begin process(clk_in) begin if (rising_edge(clk_in)) then if (counter = DEVIDER) then counter <= 0; temp <= NOT(temp); else counter <= counter + 1; end if; end if; end process; clk_out <= temp; end Behavioral;
-- Copyright (c) 2015 CERN -- Maciej Suminski <maciej.suminski@cern.ch> -- -- This source code is free software; you can redistribute it -- and/or modify it in source code form under the terms of the GNU -- General Public License as published by the Free Software -- Foundation; either version 2 of the License, or (at your option) -- any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program; if not, write to the Free Software -- Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA -- std_logic values test. library ieee; use ieee.std_logic_1164.all; entity vhdl_logic is port (low, high, hiz, dontcare, uninitialized, unknown : out std_logic); end vhdl_logic; architecture test of vhdl_logic is begin low <= '0'; high <= '1'; hiz <= 'Z'; dontcare <= '-'; uninitialized <= 'U'; unknown <= 'X'; end architecture test;
-- Copyright (c) 2015 CERN -- Maciej Suminski <maciej.suminski@cern.ch> -- -- This source code is free software; you can redistribute it -- and/or modify it in source code form under the terms of the GNU -- General Public License as published by the Free Software -- Foundation; either version 2 of the License, or (at your option) -- any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program; if not, write to the Free Software -- Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA -- std_logic values test. library ieee; use ieee.std_logic_1164.all; entity vhdl_logic is port (low, high, hiz, dontcare, uninitialized, unknown : out std_logic); end vhdl_logic; architecture test of vhdl_logic is begin low <= '0'; high <= '1'; hiz <= 'Z'; dontcare <= '-'; uninitialized <= 'U'; unknown <= 'X'; end architecture test;
-- Copyright (c) 2015 CERN -- Maciej Suminski <maciej.suminski@cern.ch> -- -- This source code is free software; you can redistribute it -- and/or modify it in source code form under the terms of the GNU -- General Public License as published by the Free Software -- Foundation; either version 2 of the License, or (at your option) -- any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program; if not, write to the Free Software -- Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA -- std_logic values test. library ieee; use ieee.std_logic_1164.all; entity vhdl_logic is port (low, high, hiz, dontcare, uninitialized, unknown : out std_logic); end vhdl_logic; architecture test of vhdl_logic is begin low <= '0'; high <= '1'; hiz <= 'Z'; dontcare <= '-'; uninitialized <= 'U'; unknown <= 'X'; end architecture test;
entity repro is end entity; architecture a of repro is constant C_PATTERN_0 : bit_vector(31 downto 0) := ( 1 downto 0 => "01", 3 downto 2 => "11", 5 downto 4 => "01", 7 downto 6 => "10", others => '0' ); begin end architecture;
architecture rtl of fifo is begin my_signal <= '1' when input = "00" else my_signal2 or my_sig3 when input = "01" else my_sig4 and my_sig5 when input = "10" else '0'; my_signal <= '1' when input = "0000" else my_signal2 or my_sig3 when input = "0100" and input = "1100" else my_sig4 when input = "0010" else '0'; my_signal <= '1' when input(1 downto 0) = "00" and func1(func2(G_VALUE1), to_integer(cons1(37 downto 0))) = 256 else '0' when input(3 downto 0) = "0010" else 'Z'; my_signal <= '1' when input(1 downto 0) = "00" and func1(func2(G_VALUE1), to_integer(cons1(37 downto 0))) = 256 else '0' when input(3 downto 0) = "0010" else 'Z'; my_signal <= '1' when a = "0000" and func1(345) or b = "1000" and func2(567) and c = "00" else sig1 when a = "1000" and func2(560) and b = "0010" else '0'; my_signal <= '1' when input(1 downto 0) = "00" and func1(func2(G_VALUE1), to_integer(cons1(37 downto 0))) = 256 else my_signal when input(3 downto 0) = "0010" else 'Z'; -- Testing no code after assignment my_signal <= '1' when input(1 downto 0) = "00" and func1(func2(G_VALUE1), to_integer(cons1(37 downto 0))) = 256 else my_signal when input(3 downto 0) = "0010" else 'Z'; my_signal <= (others => '0') when input(1 downto 0) = "00" and func1(func2(G_VALUE1), to_integer(cons1(37 downto 0))) = 256 else my_signal when input(3 downto 0) = "0010" else 'Z'; end architecture rtl;
-------------------------------------------------------------------------------- -- Copyright (C) 2016 Josi Coder -- This program is free software: you can redistribute it and/or modify it -- under the terms of the GNU General Public License as published by the Free -- Software Foundation, either version 3 of the License, or (at your option) -- any later version. -- -- This program is distributed in the hope that it will be useful, but WITHOUT -- ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -- FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for -- more details. -- -- You should have received a copy of the GNU General Public License along with -- this program. If not, see <http://www.gnu.org/licenses/>. ---------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -- Tests the function generator. -------------------------------------------------------------------------------- library ieee; use ieee.std_logic_1164.ALL; use ieee.numeric_std.all; use work.FunctionGenerator_Declarations.all; entity FunctionGenerator_Tester is end entity; architecture stdarch of FunctionGenerator_Tester is -------------------- -- Constants -------------------- constant clk_period: time := 10ns; constant phase_width: natural := 32; constant sample_width: natural := 16; constant lookup_table_phase_width: natural := 12; constant phase_increment: integer := 16#1000000#; constant no_of_sample_periods: integer := 3; -------------------- -- Inputs -------------------- signal clk: std_logic := '0'; signal config: generator_config := ( waveform => waveform_square ); signal phase: unsigned (phase_width-1 downto 0) := (others => '0'); -------------------- -- Outputs -------------------- signal sample: signed(sample_width-1 downto 0); -------------------- -- Internals -------------------- signal run_test: boolean := true; begin -------------------------------------------------------------------------------- -- UUT instantiation. -------------------------------------------------------------------------------- uut: entity work.FunctionGenerator generic map ( phase_width => phase_width, lookup_table_phase_width => lookup_table_phase_width, sample_width => sample_width ) port map ( clk => clk, config => config, phase => phase, sample => sample ); -------------------------------------------------------------------------------- -- UUT stimulation. -------------------------------------------------------------------------------- -- Generates the system clock. clk <= not clk after clk_period/2 when run_test; -- Generates a periodically incremented phase. increment_phase: process is begin -- Do the tests for the specified duration. wait until rising_edge(clk); phase <= phase + to_unsigned(phase_increment, phase_width); end process; -- Stimulates and controls the UUT and the tests at all. stimulus: process is constant configurations: generator_config_vector := ( (waveform => waveform_square), (waveform => waveform_sawtooth), (waveform => waveform_sine) ); begin -- For each configuration, do the tests for the specified duration. for i in configurations'range loop config <= configurations(i); for sample_cycle in 0 to no_of_sample_periods loop wait until falling_edge(phase(phase'high)); end loop; end loop; run_test <= false; wait; end process; -------------------------------------------------------------------------------- -- Specifications. -------------------------------------------------------------------------------- -- Verifies proper waveworm generation. must_create_waveform_from_phase: process is constant positive_sample_maximum: signed(sample_width-1 downto 0) := to_signed(2**(sample_width-1)-1, sample_width); constant negative_sample_maximum: signed(sample_width-1 downto 0) := to_signed(-(2**(sample_width-1)), sample_width); variable previous_phase: unsigned(phase_width-1 downto 0) := (others => '0'); variable previous_values_set: boolean := false; variable previous_config: generator_config := ( waveform => "111" ); begin wait until falling_edge(clk); -- Skip the first clock cycle after each configuration change to let -- previous_phase settle down. if (config.waveform /= previous_config.waveform) then previous_values_set := false; previous_config.waveform := config.waveform; end if; -- The waveform is delayed by one clock cycle, thus check the sample -- values against the previous cycle´s phase if they´re valid. if (previous_values_set) then -- Verify the waveform depending on the currently selected configuration. case config.waveform is when waveform_square => -- The sample must be the positive or negative maximum corresponding -- to the phase's sign. assert (previous_phase(previous_phase'high) = '0' and sample = positive_sample_maximum) or (previous_phase(previous_phase'high) = '1' and sample = negative_sample_maximum) report "Square sample not set correctly." severity error; when waveform_sawtooth => -- The sample must be 0 at a phase of 0°, otherwise match the phase's sign. assert ( previous_phase = (previous_phase'range => '0') and sample = (sample'range => '0') ) or ( previous_phase /= (previous_phase'range => '0') and previous_phase(previous_phase'high) = sample(sample'high) ) report "Sawtooth sample has wrong zero or sign." severity error; when waveform_sine => -- The sample must be 0 at a phase of 0° or 180°, otherwise match the phase's sign. assert ( previous_phase(previous_phase'left-1 downto 0) = (previous_phase'left-1 downto 0 => '0') and sample = (sample'range => '0') ) or ( previous_phase(previous_phase'left-1 downto 0) /= (previous_phase'left-1 downto 0 => '0') and previous_phase(previous_phase'high) = sample(sample'high) ) report "Sine sample has wrong zero or sign." severity error; when others => report "Unknown waveform set." severity error; end case; end if; -- Memorize the current phase for the next cycle. previous_phase := phase; previous_values_set := true; end process; end architecture;
-- VHDL do Sistema Digital library ieee; use ieee.std_logic_1164.all; use ieee.numeric_std.all; entity registrador_jogada is port( clock: in std_logic; reset: in std_logic; guarda_jogada: in std_logic; jogador: in std_logic; entrada: in std_logic_vector(3 downto 0); jogadas_realizadas: out std_logic_vector(8 downto 0); jogadas_jogador: out std_logic_vector(8 downto 0) ); end registrador_jogada; architecture comportamental of registrador_jogada is signal sinal_jogadas: std_logic_vector(8 downto 0) := "000000000"; signal sinal_jogador: std_logic_vector(8 downto 0) := "000000000"; begin process(clock, reset, guarda_jogada, jogador, entrada) begin if reset='1' then sinal_jogadas <= (others => '0'); sinal_jogador <= (others => '0'); elsif clock'event and clock='1' then if guarda_jogada='1' then sinal_jogadas(to_integer(unsigned(entrada))) <= '1'; if jogador = '1' then sinal_jogador(to_integer(unsigned(entrada))) <= '1'; end if; end if; end if; jogadas_realizadas <= sinal_jogadas; jogadas_jogador <= sinal_jogador; end process; end comportamental;
-- Copyright (C) 2002 Morgan Kaufmann Publishers, Inc -- This file is part of VESTs (Vhdl tESTs). -- VESTs is free software; you can redistribute it and/or modify it -- under the terms of the GNU General Public License as published by the -- Free Software Foundation; either version 2 of the License, or (at -- your option) any later version. -- VESTs is distributed in the hope that it will be useful, but WITHOUT -- ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -- FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- for more details. -- You should have received a copy of the GNU General Public License -- along with VESTs; if not, write to the Free Software Foundation, -- Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA library ieee, ieee_proposed; use ieee.math_real.all; use ieee_proposed.energy_systems.all; use ieee_proposed.electrical_systems.all; use ieee_proposed.thermal_systems.all; entity diode is port ( terminal p, m : electrical; terminal j : thermal ); end entity diode; ---------------------------------------------------------------- architecture one of diode is constant area : real := 1.0e-3; constant Dn : real := 30.0; -- electron diffusion coefficient constant Dp : real := 15.0; -- hole diffusion coefficient constant np : real := 6.77e-5; -- minority charge density constant pn : real := 6.77e-6; -- minority charge density constant Ln : real := 5.47e-6; -- diffusion length for electrons constant Lp : real := 12.25e-6; -- diffusion length for holes quantity v across id through p to m; quantity vt : voltage := 1.0; -- threshold voltage quantity temp across power through j; begin vt == temp * K / Q; id == Q * area * (Dp * (pn / Lp) + Dn * (np / Ln)) * (exp(v / vt) - 1.0); power == v * id; end architecture one;
-- Copyright (C) 2002 Morgan Kaufmann Publishers, Inc -- This file is part of VESTs (Vhdl tESTs). -- VESTs is free software; you can redistribute it and/or modify it -- under the terms of the GNU General Public License as published by the -- Free Software Foundation; either version 2 of the License, or (at -- your option) any later version. -- VESTs is distributed in the hope that it will be useful, but WITHOUT -- ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -- FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- for more details. -- You should have received a copy of the GNU General Public License -- along with VESTs; if not, write to the Free Software Foundation, -- Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA library ieee, ieee_proposed; use ieee.math_real.all; use ieee_proposed.energy_systems.all; use ieee_proposed.electrical_systems.all; use ieee_proposed.thermal_systems.all; entity diode is port ( terminal p, m : electrical; terminal j : thermal ); end entity diode; ---------------------------------------------------------------- architecture one of diode is constant area : real := 1.0e-3; constant Dn : real := 30.0; -- electron diffusion coefficient constant Dp : real := 15.0; -- hole diffusion coefficient constant np : real := 6.77e-5; -- minority charge density constant pn : real := 6.77e-6; -- minority charge density constant Ln : real := 5.47e-6; -- diffusion length for electrons constant Lp : real := 12.25e-6; -- diffusion length for holes quantity v across id through p to m; quantity vt : voltage := 1.0; -- threshold voltage quantity temp across power through j; begin vt == temp * K / Q; id == Q * area * (Dp * (pn / Lp) + Dn * (np / Ln)) * (exp(v / vt) - 1.0); power == v * id; end architecture one;
-- Copyright (C) 2002 Morgan Kaufmann Publishers, Inc -- This file is part of VESTs (Vhdl tESTs). -- VESTs is free software; you can redistribute it and/or modify it -- under the terms of the GNU General Public License as published by the -- Free Software Foundation; either version 2 of the License, or (at -- your option) any later version. -- VESTs is distributed in the hope that it will be useful, but WITHOUT -- ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -- FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- for more details. -- You should have received a copy of the GNU General Public License -- along with VESTs; if not, write to the Free Software Foundation, -- Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA library ieee, ieee_proposed; use ieee.math_real.all; use ieee_proposed.energy_systems.all; use ieee_proposed.electrical_systems.all; use ieee_proposed.thermal_systems.all; entity diode is port ( terminal p, m : electrical; terminal j : thermal ); end entity diode; ---------------------------------------------------------------- architecture one of diode is constant area : real := 1.0e-3; constant Dn : real := 30.0; -- electron diffusion coefficient constant Dp : real := 15.0; -- hole diffusion coefficient constant np : real := 6.77e-5; -- minority charge density constant pn : real := 6.77e-6; -- minority charge density constant Ln : real := 5.47e-6; -- diffusion length for electrons constant Lp : real := 12.25e-6; -- diffusion length for holes quantity v across id through p to m; quantity vt : voltage := 1.0; -- threshold voltage quantity temp across power through j; begin vt == temp * K / Q; id == Q * area * (Dp * (pn / Lp) + Dn * (np / Ln)) * (exp(v / vt) - 1.0); power == v * id; end architecture one;
--! --! \file wait_and_yield.vhd --! --! Benchmark for cooperative multithreading --! --! \author Enno Luebbers <enno.luebbers@upb.de> --! \date 13.03.2009 -- ----------------------------------------------------------------------------- -- %%%RECONOS_COPYRIGHT_BEGIN%%% -- %%%RECONOS_COPYRIGHT_END%%% ----------------------------------------------------------------------------- -- -- Major Changes: -- -- 13.03.2009 Enno Luebbers File created. library IEEE; use IEEE.STD_LOGIC_1164.all; --use IEEE.STD_LOGIC_ARITH.all; use IEEE.STD_LOGIC_UNSIGNED.all; use IEEE.NUMERIC_STD.all; library reconos_v2_01_a; use reconos_v2_01_a.reconos_pkg.all; ---- Uncomment the following library declaration if instantiating ---- any Xilinx primitives in this code. --library UNISIM; --use UNISIM.VComponents.all; entity wait_and_yield is generic ( C_BURST_AWIDTH : integer := 11; C_BURST_DWIDTH : integer := 32; C_SUB_NADD : integer := 0 -- 0: ADD, 1: SUB ); port ( clk : in std_logic; reset : in std_logic; i_osif : in osif_os2task_t; o_osif : out osif_task2os_t; -- burst ram interface o_RAMAddr : out std_logic_vector(0 to C_BURST_AWIDTH-1); o_RAMData : out std_logic_vector(0 to C_BURST_DWIDTH-1); i_RAMData : in std_logic_vector(0 to C_BURST_DWIDTH-1); o_RAMWE : out std_logic; o_RAMClk : out std_logic ); end wait_and_yield; architecture Behavioral of wait_and_yield is -- OS synchronization state machine states type state_t is (STATE_CHECK, STATE_INIT, STATE_WAIT_BEFORE, STATE_DELAY, STATE_RESUME, STATE_WAIT_AFTER, STATE_EXIT); type encode_t is array(state_t) of reconos_state_enc_t; type decode_t is array(natural range <>) of state_t; constant encode : encode_t := (X"00", X"01", X"02", X"03", X"04", X"05", X"06"); constant decode : decode_t := (STATE_CHECK, STATE_INIT, STATE_WAIT_BEFORE, STATE_DELAY, STATE_RESUME, STATE_WAIT_AFTER, STATE_EXIT); signal state : state_t := STATE_CHECK; begin -- tie RAM signals low (we don't use them) o_RAMAddr <= (others => '0'); o_RAMData <= (others => '0'); o_RAMWe <= '0'; o_RAMClk <= '0'; -- OS synchronization state machine state_proc : process(clk, reset) variable done : boolean; variable success : boolean; variable next_state : state_t := STATE_CHECK; variable resume_state_enc : reconos_state_enc_t := (others => '0'); variable delay : std_logic_vector(0 to C_OSIF_DATA_WIDTH/2-1) := (others => '0'); variable wait_before_after : std_logic_vector(0 to C_OSIF_DATA_WIDTH/2-2) := (others => '0'); -- possible values: 0..32767 (x 1.31 ms) variable do_yield : std_logic := '0'; variable counter : std_logic_vector(0 to C_OSIF_DATA_WIDTH-1) := (others => '0'); variable init_data : std_logic_vector(0 to C_OSIF_DATA_WIDTH-1) := (others => '0'); begin if reset = '1' then reconos_reset(o_osif, i_osif); state <= STATE_CHECK; next_state := STATE_CHECK; resume_state_enc := (others => '0'); done := false; success := false; delay := (others => '0'); wait_before_after := (others => '0'); do_yield := '0'; counter := (others => '0'); init_data := (others => '0'); elsif rising_edge(clk) then reconos_begin(o_osif, i_osif); if reconos_ready(i_osif) then case state is when STATE_CHECK => reconos_thread_resume(done, success, o_osif, i_osif, resume_state_enc); if success then next_state := decode(to_integer(unsigned(resume_state_enc))); else next_state := STATE_INIT; end if; when STATE_INIT => reconos_get_init_data(done, o_osif, i_osif, init_data); do_yield := init_data(0); wait_before_after := init_data(1 to 15); delay := init_data(16 to 31); counter := wait_before_after & "0" & X"0000"; -- x 1.31 ms next_state := STATE_WAIT_BEFORE; when STATE_WAIT_BEFORE => if counter = X"00000000" then next_state := STATE_DELAY; else counter := counter - 1; end if; when STATE_DELAY => reconos_thread_delay(o_osif, i_osif, (X"0000" & delay)); -- delay for 'delay' timer ticks if do_yield = '1' then reconos_flag_yield(o_osif, i_osif, encode(STATE_RESUME)); end if; counter := wait_before_after & "0" & X"0000"; -- x 1.31 ms next_state := STATE_WAIT_AFTER; when STATE_RESUME => reconos_get_init_data(done, o_osif, i_osif, init_data); wait_before_after := init_data(1 to 15); counter := wait_before_after & "0" & X"0000"; -- x 1.31 ms next_state := STATE_WAIT_AFTER; when STATE_WAIT_AFTER => if counter = X"00000000" then next_state := STATE_EXIT; else counter := counter - 1; end if; when STATE_EXIT => reconos_thread_exit(o_osif, i_osif, X"00000000"); when others => next_state := STATE_EXIT; end case; if done then state <= next_state; end if; end if; end if; end process; end Behavioral;
-------------------------------------------------------------------------------- -- -- FIFO Generator Core Demo Testbench -- -------------------------------------------------------------------------------- -- -- (c) Copyright 2009 - 2010 Xilinx, Inc. All rights reserved. -- -- This file contains confidential and proprietary information -- of Xilinx, Inc. and is protected under U.S. and -- international copyright and other intellectual property -- laws. -- -- DISCLAIMER -- This disclaimer is not a license and does not grant any -- rights to the materials distributed herewith. Except as -- otherwise provided in a valid license issued to you by -- Xilinx, and to the maximum extent permitted by applicable -- law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND -- WITH ALL FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES -- AND CONDITIONS, EXPRESS, IMPLIED, OR STATUTORY, INCLUDING -- BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, NON- -- INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE; and -- (2) Xilinx shall not be liable (whether in contract or tort, -- including negligence, or under any other theory of -- liability) for any loss or damage of any kind or nature -- related to, arising under or in connection with these -- materials, including for any direct, or any indirect, -- special, incidental, or consequential loss or damage -- (including loss of data, profits, goodwill, or any type of -- loss or damage suffered as a result of any action brought -- by a third party) even if such damage or loss was -- reasonably foreseeable or Xilinx had been advised of the -- possibility of the same. -- -- CRITICAL APPLICATIONS -- Xilinx products are not designed or intended to be fail- -- safe, or for use in any application requiring fail-safe -- performance, such as life-support or safety devices or -- systems, Class III medical devices, nuclear facilities, -- applications related to the deployment of airbags, or any -- other applications that could lead to death, personal -- injury, or severe property or environmental damage -- (individually and collectively, "Critical -- Applications"). Customer assumes the sole risk and -- liability of any use of Xilinx products in Critical -- Applications, subject only to applicable laws and -- regulations governing limitations on product liability. -- -- THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS -- PART OF THIS FILE AT ALL TIMES. -------------------------------------------------------------------------------- -- -- Filename: fg_tb_synth.vhd -- -- Description: -- This is the demo testbench for fifo_generator core. -- -------------------------------------------------------------------------------- -- Library Declarations -------------------------------------------------------------------------------- LIBRARY ieee; USE ieee.STD_LOGIC_1164.ALL; USE ieee.STD_LOGIC_unsigned.ALL; USE IEEE.STD_LOGIC_arith.ALL; USE ieee.numeric_std.ALL; USE ieee.STD_LOGIC_misc.ALL; LIBRARY std; USE std.textio.ALL; LIBRARY unisim; USE unisim.vcomponents.ALL; LIBRARY work; USE work.fg_tb_pkg.ALL; -------------------------------------------------------------------------------- -- Entity Declaration -------------------------------------------------------------------------------- ENTITY fg_tb_synth IS GENERIC( FREEZEON_ERROR : INTEGER := 0; TB_STOP_CNT : INTEGER := 0; TB_SEED : INTEGER := 1 ); PORT( WR_CLK : IN STD_LOGIC; RD_CLK : IN STD_LOGIC; RESET : IN STD_LOGIC; SIM_DONE : OUT STD_LOGIC; STATUS : OUT STD_LOGIC_VECTOR(7 DOWNTO 0) ); END ENTITY; ARCHITECTURE simulation_arch OF fg_tb_synth IS -- FIFO interface signal declarations SIGNAL wr_clk_i : STD_LOGIC; SIGNAL rd_clk_i : STD_LOGIC; SIGNAL rst : STD_LOGIC; SIGNAL wr_en : STD_LOGIC; SIGNAL rd_en : STD_LOGIC; SIGNAL din : STD_LOGIC_VECTOR(16-1 DOWNTO 0); SIGNAL dout : STD_LOGIC_VECTOR(16-1 DOWNTO 0); SIGNAL full : STD_LOGIC; SIGNAL empty : STD_LOGIC; -- TB Signals SIGNAL wr_data : STD_LOGIC_VECTOR(16-1 DOWNTO 0); SIGNAL dout_i : STD_LOGIC_VECTOR(16-1 DOWNTO 0); SIGNAL wr_en_i : STD_LOGIC := '0'; SIGNAL rd_en_i : STD_LOGIC := '0'; SIGNAL full_i : STD_LOGIC := '0'; SIGNAL empty_i : STD_LOGIC := '0'; SIGNAL almost_full_i : STD_LOGIC := '0'; SIGNAL almost_empty_i : STD_LOGIC := '0'; SIGNAL prc_we_i : STD_LOGIC := '0'; SIGNAL prc_re_i : STD_LOGIC := '0'; SIGNAL dout_chk_i : STD_LOGIC := '0'; SIGNAL rst_int_rd : STD_LOGIC := '0'; SIGNAL rst_int_wr : STD_LOGIC := '0'; SIGNAL rst_s_wr1 : STD_LOGIC := '0'; SIGNAL rst_s_wr2 : STD_LOGIC := '0'; SIGNAL rst_gen_rd : STD_LOGIC_VECTOR(7 DOWNTO 0) := (OTHERS => '0'); SIGNAL rst_s_wr3 : STD_LOGIC := '0'; SIGNAL rst_s_rd : STD_LOGIC := '0'; SIGNAL reset_en : STD_LOGIC := '0'; SIGNAL rst_async_wr1 : STD_LOGIC := '0'; SIGNAL rst_async_wr2 : STD_LOGIC := '0'; SIGNAL rst_async_wr3 : STD_LOGIC := '0'; SIGNAL rst_async_rd1 : STD_LOGIC := '0'; SIGNAL rst_async_rd2 : STD_LOGIC := '0'; SIGNAL rst_async_rd3 : STD_LOGIC := '0'; BEGIN ---- Reset generation logic ----- rst_int_wr <= rst_async_wr3 OR rst_s_wr3; rst_int_rd <= rst_async_rd3 OR rst_s_rd; --Testbench reset synchronization PROCESS(rd_clk_i,RESET) BEGIN IF(RESET = '1') THEN rst_async_rd1 <= '1'; rst_async_rd2 <= '1'; rst_async_rd3 <= '1'; ELSIF(rd_clk_i'event AND rd_clk_i='1') THEN rst_async_rd1 <= RESET; rst_async_rd2 <= rst_async_rd1; rst_async_rd3 <= rst_async_rd2; END IF; END PROCESS; PROCESS(wr_clk_i,RESET) BEGIN IF(RESET = '1') THEN rst_async_wr1 <= '1'; rst_async_wr2 <= '1'; rst_async_wr3 <= '1'; ELSIF(wr_clk_i'event AND wr_clk_i='1') THEN rst_async_wr1 <= RESET; rst_async_wr2 <= rst_async_wr1; rst_async_wr3 <= rst_async_wr2; END IF; END PROCESS; --Soft reset for core and testbench PROCESS(rd_clk_i) BEGIN IF(rd_clk_i'event AND rd_clk_i='1') THEN rst_gen_rd <= rst_gen_rd + "1"; IF(reset_en = '1' AND AND_REDUCE(rst_gen_rd) = '1') THEN rst_s_rd <= '1'; assert false report "Reset applied..Memory Collision checks are not valid" severity note; ELSE IF(AND_REDUCE(rst_gen_rd) = '1' AND rst_s_rd = '1') THEN rst_s_rd <= '0'; END IF; END IF; END IF; END PROCESS; PROCESS(wr_clk_i) BEGIN IF(wr_clk_i'event AND wr_clk_i='1') THEN rst_s_wr1 <= rst_s_rd; rst_s_wr2 <= rst_s_wr1; rst_s_wr3 <= rst_s_wr2; IF(rst_s_wr3 = '1' AND rst_s_wr2 = '0') THEN assert false report "Reset removed..Memory Collision checks are valid" severity note; END IF; END IF; END PROCESS; ------------------ ---- Clock buffers for testbench ---- wr_clk_buf: bufg PORT map( i => WR_CLK, o => wr_clk_i ); rdclk_buf: bufg PORT map( i => RD_CLK, o => rd_clk_i ); ------------------ rst <= RESET OR rst_s_rd AFTER 12 ns; din <= wr_data; dout_i <= dout; wr_en <= wr_en_i; rd_en <= rd_en_i; full_i <= full; empty_i <= empty; fg_dg_nv: fg_tb_dgen GENERIC MAP ( C_DIN_WIDTH => 16, C_DOUT_WIDTH => 16, TB_SEED => TB_SEED, C_CH_TYPE => 0 ) PORT MAP ( -- Write Port RESET => rst_int_wr, WR_CLK => wr_clk_i, PRC_WR_EN => prc_we_i, FULL => full_i, WR_EN => wr_en_i, WR_DATA => wr_data ); fg_dv_nv: fg_tb_dverif GENERIC MAP ( C_DOUT_WIDTH => 16, C_DIN_WIDTH => 16, C_USE_EMBEDDED_REG => 0, TB_SEED => TB_SEED, C_CH_TYPE => 0 ) PORT MAP( RESET => rst_int_rd, RD_CLK => rd_clk_i, PRC_RD_EN => prc_re_i, RD_EN => rd_en_i, EMPTY => empty_i, DATA_OUT => dout_i, DOUT_CHK => dout_chk_i ); fg_pc_nv: fg_tb_pctrl GENERIC MAP ( AXI_CHANNEL => "Native", C_APPLICATION_TYPE => 0, C_DOUT_WIDTH => 16, C_DIN_WIDTH => 16, C_WR_PNTR_WIDTH => 6, C_RD_PNTR_WIDTH => 6, C_CH_TYPE => 0, FREEZEON_ERROR => FREEZEON_ERROR, TB_SEED => TB_SEED, TB_STOP_CNT => TB_STOP_CNT ) PORT MAP( RESET_WR => rst_int_wr, RESET_RD => rst_int_rd, RESET_EN => reset_en, WR_CLK => wr_clk_i, RD_CLK => rd_clk_i, PRC_WR_EN => prc_we_i, PRC_RD_EN => prc_re_i, FULL => full_i, ALMOST_FULL => almost_full_i, ALMOST_EMPTY => almost_empty_i, DOUT_CHK => dout_chk_i, EMPTY => empty_i, DATA_IN => wr_data, DATA_OUT => dout, SIM_DONE => SIM_DONE, STATUS => STATUS ); fg_inst : FIFO_DDR_DATA_IN_top PORT MAP ( WR_CLK => wr_clk_i, RD_CLK => rd_clk_i, RST => rst, WR_EN => wr_en, RD_EN => rd_en, DIN => din, DOUT => dout, FULL => full, EMPTY => empty); END ARCHITECTURE;
-- Copyright 1986-2016 Xilinx, Inc. All Rights Reserved. -- -------------------------------------------------------------------------------- -- Tool Version: Vivado v.2016.4 (win64) Build 1733598 Wed Dec 14 22:35:39 MST 2016 -- Date : Fri Jan 13 17:33:50 2017 -- Host : KLight-PC running 64-bit major release (build 9200) -- Command : write_vhdl -force -mode synth_stub D:/Document/Verilog/VGA/VGA.srcs/sources_1/ip/title3/title3_stub.vhdl -- Design : title3 -- Purpose : Stub declaration of top-level module interface -- Device : xc7a35tcpg236-1 -- -------------------------------------------------------------------------------- library IEEE; use IEEE.STD_LOGIC_1164.ALL; entity title3 is Port ( clka : in STD_LOGIC; wea : in STD_LOGIC_VECTOR ( 0 to 0 ); addra : in STD_LOGIC_VECTOR ( 11 downto 0 ); dina : in STD_LOGIC_VECTOR ( 11 downto 0 ); douta : out STD_LOGIC_VECTOR ( 11 downto 0 ) ); end title3; architecture stub of title3 is attribute syn_black_box : boolean; attribute black_box_pad_pin : string; attribute syn_black_box of stub : architecture is true; attribute black_box_pad_pin of stub : architecture is "clka,wea[0:0],addra[11:0],dina[11:0],douta[11:0]"; attribute x_core_info : string; attribute x_core_info of stub : architecture is "blk_mem_gen_v8_3_5,Vivado 2016.4"; begin end;
-- Copyright 1986-2016 Xilinx, Inc. All Rights Reserved. -- -------------------------------------------------------------------------------- -- Tool Version: Vivado v.2016.4 (win64) Build 1733598 Wed Dec 14 22:35:39 MST 2016 -- Date : Fri Jan 13 17:33:50 2017 -- Host : KLight-PC running 64-bit major release (build 9200) -- Command : write_vhdl -force -mode synth_stub D:/Document/Verilog/VGA/VGA.srcs/sources_1/ip/title3/title3_stub.vhdl -- Design : title3 -- Purpose : Stub declaration of top-level module interface -- Device : xc7a35tcpg236-1 -- -------------------------------------------------------------------------------- library IEEE; use IEEE.STD_LOGIC_1164.ALL; entity title3 is Port ( clka : in STD_LOGIC; wea : in STD_LOGIC_VECTOR ( 0 to 0 ); addra : in STD_LOGIC_VECTOR ( 11 downto 0 ); dina : in STD_LOGIC_VECTOR ( 11 downto 0 ); douta : out STD_LOGIC_VECTOR ( 11 downto 0 ) ); end title3; architecture stub of title3 is attribute syn_black_box : boolean; attribute black_box_pad_pin : string; attribute syn_black_box of stub : architecture is true; attribute black_box_pad_pin of stub : architecture is "clka,wea[0:0],addra[11:0],dina[11:0],douta[11:0]"; attribute x_core_info : string; attribute x_core_info of stub : architecture is "blk_mem_gen_v8_3_5,Vivado 2016.4"; begin end;
entity bounds34 is end entity; architecture test of bounds34 is begin main: process is variable x : integer_vector(1 to 4); variable y, z : integer_vector(1 to 2); begin x := ( integer_vector'(1, 2), integer_vector'(3, 4) ); assert x = (1, 2, 3, 4); y := (5, 6); z := (7, 8); x := ( y, 0, integer_vector'(1, 2, 3) ); -- Error assert x = (5, 6, 7, 8); wait; end process; end architecture;
LIBRARY ieee; USE ieee.std_logic_1164.ALL; -- Uncomment the following library declaration if using -- arithmetic functions with Signed or Unsigned values --USE ieee.numeric_std.ALL; ENTITY Test_instructionMemory IS END Test_instructionMemory; ARCHITECTURE behavior OF Test_instructionMemory IS -- Component Declaration for the Unit Under Test (UUT) COMPONENT instructionMemory PORT( address : IN std_logic_vector(3 downto 0); reset : IN std_logic; clkFPGA : IN std_logic; outInstruction : OUT std_logic_vector(31 downto 0) ); END COMPONENT; --Inputs signal address : std_logic_vector(3 downto 0) := (others => '0'); signal reset : std_logic := '0'; signal clkFPGA : std_logic := '0'; --Outputs signal outInstruction : std_logic_vector(31 downto 0); -- Clock period definitions constant clkFPGA_period : time := 20 ns; BEGIN -- Instantiate the Unit Under Test (UUT) uut: instructionMemory PORT MAP ( address => address, reset => reset, clkFPGA => clkFPGA, outInstruction => outInstruction ); -- Clock process definitions clkFPGA_process :process begin clkFPGA <= '0'; wait for clkFPGA_period/2; clkFPGA <= '1'; wait for clkFPGA_period/2; end process; -- Stimulus process stim_proc: process begin -- hold reset state for 100 ns. reset<='1'; address <= "0000"; wait for 100 ns; reset<='0'; address <= "1110"; wait; end process; END;
-- generated with romgen v3.0.1r4 by MikeJ truhy and eD library ieee; use ieee.std_logic_1164.all; use ieee.std_logic_unsigned.all; use ieee.numeric_std.all; library UNISIM; use UNISIM.Vcomponents.all; entity mc6847t1_ntsc_plus_keith is port ( CLK : in std_logic; ADDR : in std_logic_vector(10 downto 0); DATA : out std_logic_vector(7 downto 0) ); end; architecture RTL of mc6847t1_ntsc_plus_keith is signal rom_addr : std_logic_vector(11 downto 0); begin p_addr : process(ADDR) begin rom_addr <= (others => '0'); rom_addr(10 downto 0) <= ADDR; end process; p_rom : process begin wait until rising_edge(CLK); DATA <= (others => '0'); case rom_addr is when x"000" => DATA <= x"00"; when x"001" => DATA <= x"00"; when x"002" => DATA <= x"38"; when x"003" => DATA <= x"44"; when x"004" => DATA <= x"04"; when x"005" => DATA <= x"34"; when x"006" => DATA <= x"4C"; when x"007" => DATA <= x"4C"; when x"008" => DATA <= x"38"; when x"009" => DATA <= x"00"; when x"00A" => DATA <= x"00"; when x"00B" => DATA <= x"00"; when x"00C" => DATA <= x"00"; when x"00D" => DATA <= x"00"; when x"00E" => DATA <= x"00"; when x"00F" => DATA <= x"00"; when x"010" => DATA <= x"00"; when x"011" => DATA <= x"00"; when x"012" => DATA <= x"10"; when x"013" => DATA <= x"28"; when x"014" => DATA <= x"44"; when x"015" => DATA <= x"44"; when x"016" => DATA <= x"7C"; when x"017" => DATA <= x"44"; when x"018" => DATA <= x"44"; when x"019" => DATA <= x"00"; when x"01A" => DATA <= x"00"; when x"01B" => DATA <= x"00"; when x"01C" => DATA <= x"00"; when x"01D" => DATA <= x"00"; when x"01E" => DATA <= x"00"; when x"01F" => DATA <= x"00"; when x"020" => DATA <= x"00"; when x"021" => DATA <= x"00"; when x"022" => DATA <= x"78"; when x"023" => DATA <= x"24"; when x"024" => DATA <= x"24"; when x"025" => DATA <= x"38"; when x"026" => DATA <= x"24"; when x"027" => DATA <= x"24"; when x"028" => DATA <= x"78"; when x"029" => DATA <= x"00"; when x"02A" => DATA <= x"00"; when x"02B" => DATA <= x"00"; when x"02C" => DATA <= x"00"; when x"02D" => DATA <= x"00"; when x"02E" => DATA <= x"00"; when x"02F" => DATA <= x"00"; when x"030" => DATA <= x"00"; when x"031" => DATA <= x"00"; when x"032" => DATA <= x"38"; when x"033" => DATA <= x"44"; when x"034" => DATA <= x"40"; when x"035" => DATA <= x"40"; when x"036" => DATA <= x"40"; when x"037" => DATA <= x"44"; when x"038" => DATA <= x"38"; when x"039" => DATA <= x"00"; when x"03A" => DATA <= x"00"; when x"03B" => DATA <= x"00"; when x"03C" => DATA <= x"00"; when x"03D" => DATA <= x"00"; when x"03E" => DATA <= x"00"; when x"03F" => DATA <= x"00"; when x"040" => DATA <= x"00"; when x"041" => DATA <= x"00"; when x"042" => DATA <= x"78"; when x"043" => DATA <= x"24"; when x"044" => DATA <= x"24"; when x"045" => DATA <= x"24"; when x"046" => DATA <= x"24"; when x"047" => DATA <= x"24"; when x"048" => DATA <= x"78"; when x"049" => DATA <= x"00"; when x"04A" => DATA <= x"00"; when x"04B" => DATA <= x"00"; when x"04C" => DATA <= x"00"; when x"04D" => DATA <= x"00"; when x"04E" => DATA <= x"00"; when x"04F" => DATA <= x"00"; when x"050" => DATA <= x"00"; when x"051" => DATA <= x"00"; when x"052" => DATA <= x"7C"; when x"053" => DATA <= x"40"; when x"054" => DATA <= x"40"; when x"055" => DATA <= x"70"; when x"056" => DATA <= x"40"; when x"057" => DATA <= x"40"; when x"058" => DATA <= x"7C"; when x"059" => DATA <= x"00"; when x"05A" => DATA <= x"00"; when x"05B" => DATA <= x"00"; when x"05C" => DATA <= x"00"; when x"05D" => DATA <= x"00"; when x"05E" => DATA <= x"00"; when x"05F" => DATA <= x"00"; when x"060" => DATA <= x"00"; when x"061" => DATA <= x"00"; when x"062" => DATA <= x"7C"; when x"063" => DATA <= x"40"; when x"064" => DATA <= x"40"; when x"065" => DATA <= x"70"; when x"066" => DATA <= x"40"; when x"067" => DATA <= x"40"; when x"068" => DATA <= x"40"; when x"069" => DATA <= x"00"; when x"06A" => DATA <= x"00"; when x"06B" => DATA <= x"00"; when x"06C" => DATA <= x"00"; when x"06D" => DATA <= x"00"; when x"06E" => DATA <= x"00"; when x"06F" => DATA <= x"00"; when x"070" => DATA <= x"00"; when x"071" => DATA <= x"00"; when x"072" => DATA <= x"38"; when x"073" => DATA <= x"44"; when x"074" => DATA <= x"40"; when x"075" => DATA <= x"40"; when x"076" => DATA <= x"4C"; when x"077" => DATA <= x"44"; when x"078" => DATA <= x"38"; when x"079" => DATA <= x"00"; when x"07A" => DATA <= x"00"; when x"07B" => DATA <= x"00"; when x"07C" => DATA <= x"00"; when x"07D" => DATA <= x"00"; when x"07E" => DATA <= x"00"; when x"07F" => DATA <= x"00"; when x"080" => DATA <= x"00"; when x"081" => DATA <= x"00"; when x"082" => DATA <= x"44"; when x"083" => DATA <= x"44"; when x"084" => DATA <= x"44"; when x"085" => DATA <= x"7C"; when x"086" => DATA <= x"44"; when x"087" => DATA <= x"44"; when x"088" => DATA <= x"44"; when x"089" => DATA <= x"00"; when x"08A" => DATA <= x"00"; when x"08B" => DATA <= x"00"; when x"08C" => DATA <= x"00"; when x"08D" => DATA <= x"00"; when x"08E" => DATA <= x"00"; when x"08F" => DATA <= x"00"; when x"090" => DATA <= x"00"; when x"091" => DATA <= x"00"; when x"092" => DATA <= x"38"; when x"093" => DATA <= x"10"; when x"094" => DATA <= x"10"; when x"095" => DATA <= x"10"; when x"096" => DATA <= x"10"; when x"097" => DATA <= x"10"; when x"098" => DATA <= x"38"; when x"099" => DATA <= x"00"; when x"09A" => DATA <= x"00"; when x"09B" => DATA <= x"00"; when x"09C" => DATA <= x"00"; when x"09D" => DATA <= x"00"; when x"09E" => DATA <= x"00"; when x"09F" => DATA <= x"00"; when x"0A0" => DATA <= x"00"; when x"0A1" => DATA <= x"00"; when x"0A2" => DATA <= x"04"; when x"0A3" => DATA <= x"04"; when x"0A4" => DATA <= x"04"; when x"0A5" => DATA <= x"04"; when x"0A6" => DATA <= x"04"; when x"0A7" => DATA <= x"44"; when x"0A8" => DATA <= x"38"; when x"0A9" => DATA <= x"00"; when x"0AA" => DATA <= x"00"; when x"0AB" => DATA <= x"00"; when x"0AC" => DATA <= x"00"; when x"0AD" => DATA <= x"00"; when x"0AE" => DATA <= x"00"; when x"0AF" => DATA <= x"00"; when x"0B0" => DATA <= x"00"; when x"0B1" => DATA <= x"00"; when x"0B2" => DATA <= x"44"; when x"0B3" => DATA <= x"48"; when x"0B4" => DATA <= x"50"; when x"0B5" => DATA <= x"60"; when x"0B6" => DATA <= x"50"; when x"0B7" => DATA <= x"48"; when x"0B8" => DATA <= x"44"; when x"0B9" => DATA <= x"00"; when x"0BA" => DATA <= x"00"; when x"0BB" => DATA <= x"00"; when x"0BC" => DATA <= x"00"; when x"0BD" => DATA <= x"00"; when x"0BE" => DATA <= x"00"; when x"0BF" => DATA <= x"00"; when x"0C0" => DATA <= x"00"; when x"0C1" => DATA <= x"00"; when x"0C2" => DATA <= x"40"; when x"0C3" => DATA <= x"40"; when x"0C4" => DATA <= x"40"; when x"0C5" => DATA <= x"40"; when x"0C6" => DATA <= x"40"; when x"0C7" => DATA <= x"40"; when x"0C8" => DATA <= x"7C"; when x"0C9" => DATA <= x"00"; when x"0CA" => DATA <= x"00"; when x"0CB" => DATA <= x"00"; when x"0CC" => DATA <= x"00"; when x"0CD" => DATA <= x"00"; when x"0CE" => DATA <= x"00"; when x"0CF" => DATA <= x"00"; when x"0D0" => DATA <= x"00"; when x"0D1" => DATA <= x"00"; when x"0D2" => DATA <= x"44"; when x"0D3" => DATA <= x"6C"; when x"0D4" => DATA <= x"54"; when x"0D5" => DATA <= x"54"; when x"0D6" => DATA <= x"44"; when x"0D7" => DATA <= x"44"; when x"0D8" => DATA <= x"44"; when x"0D9" => DATA <= x"00"; when x"0DA" => DATA <= x"00"; when x"0DB" => DATA <= x"00"; when x"0DC" => DATA <= x"00"; when x"0DD" => DATA <= x"00"; when x"0DE" => DATA <= x"00"; when x"0DF" => DATA <= x"00"; when x"0E0" => DATA <= x"00"; when x"0E1" => DATA <= x"00"; when x"0E2" => DATA <= x"44"; when x"0E3" => DATA <= x"44"; when x"0E4" => DATA <= x"64"; when x"0E5" => DATA <= x"54"; when x"0E6" => DATA <= x"4C"; when x"0E7" => DATA <= x"44"; when x"0E8" => DATA <= x"44"; when x"0E9" => DATA <= x"00"; when x"0EA" => DATA <= x"00"; when x"0EB" => DATA <= x"00"; when x"0EC" => DATA <= x"00"; when x"0ED" => DATA <= x"00"; when x"0EE" => DATA <= x"00"; when x"0EF" => DATA <= x"00"; when x"0F0" => DATA <= x"00"; when x"0F1" => DATA <= x"00"; when x"0F2" => DATA <= x"38"; when x"0F3" => DATA <= x"44"; when x"0F4" => DATA <= x"44"; when x"0F5" => DATA <= x"44"; when x"0F6" => DATA <= x"44"; when x"0F7" => DATA <= x"44"; when x"0F8" => DATA <= x"38"; when x"0F9" => DATA <= x"00"; when x"0FA" => DATA <= x"00"; when x"0FB" => DATA <= x"00"; when x"0FC" => DATA <= x"00"; when x"0FD" => DATA <= x"00"; when x"0FE" => DATA <= x"00"; when x"0FF" => DATA <= x"00"; when x"100" => DATA <= x"00"; when x"101" => DATA <= x"00"; when x"102" => DATA <= x"78"; when x"103" => DATA <= x"44"; when x"104" => DATA <= x"44"; when x"105" => DATA <= x"78"; when x"106" => DATA <= x"40"; when x"107" => DATA <= x"40"; when x"108" => DATA <= x"40"; when x"109" => DATA <= x"00"; when x"10A" => DATA <= x"00"; when x"10B" => DATA <= x"00"; when x"10C" => DATA <= x"00"; when x"10D" => DATA <= x"00"; when x"10E" => DATA <= x"00"; when x"10F" => DATA <= x"00"; when x"110" => DATA <= x"00"; when x"111" => DATA <= x"00"; when x"112" => DATA <= x"38"; when x"113" => DATA <= x"44"; when x"114" => DATA <= x"44"; when x"115" => DATA <= x"44"; when x"116" => DATA <= x"54"; when x"117" => DATA <= x"48"; when x"118" => DATA <= x"34"; when x"119" => DATA <= x"00"; when x"11A" => DATA <= x"00"; when x"11B" => DATA <= x"00"; when x"11C" => DATA <= x"00"; when x"11D" => DATA <= x"00"; when x"11E" => DATA <= x"00"; when x"11F" => DATA <= x"00"; when x"120" => DATA <= x"00"; when x"121" => DATA <= x"00"; when x"122" => DATA <= x"78"; when x"123" => DATA <= x"44"; when x"124" => DATA <= x"44"; when x"125" => DATA <= x"78"; when x"126" => DATA <= x"50"; when x"127" => DATA <= x"48"; when x"128" => DATA <= x"44"; when x"129" => DATA <= x"00"; when x"12A" => DATA <= x"00"; when x"12B" => DATA <= x"00"; when x"12C" => DATA <= x"00"; when x"12D" => DATA <= x"00"; when x"12E" => DATA <= x"00"; when x"12F" => DATA <= x"00"; when x"130" => DATA <= x"00"; when x"131" => DATA <= x"00"; when x"132" => DATA <= x"38"; when x"133" => DATA <= x"44"; when x"134" => DATA <= x"40"; when x"135" => DATA <= x"38"; when x"136" => DATA <= x"04"; when x"137" => DATA <= x"44"; when x"138" => DATA <= x"38"; when x"139" => DATA <= x"00"; when x"13A" => DATA <= x"00"; when x"13B" => DATA <= x"00"; when x"13C" => DATA <= x"00"; when x"13D" => DATA <= x"00"; when x"13E" => DATA <= x"00"; when x"13F" => DATA <= x"00"; when x"140" => DATA <= x"00"; when x"141" => DATA <= x"00"; when x"142" => DATA <= x"7C"; when x"143" => DATA <= x"10"; when x"144" => DATA <= x"10"; when x"145" => DATA <= x"10"; when x"146" => DATA <= x"10"; when x"147" => DATA <= x"10"; when x"148" => DATA <= x"10"; when x"149" => DATA <= x"00"; when x"14A" => DATA <= x"00"; when x"14B" => DATA <= x"00"; when x"14C" => DATA <= x"00"; when x"14D" => DATA <= x"00"; when x"14E" => DATA <= x"00"; when x"14F" => DATA <= x"00"; when x"150" => DATA <= x"00"; when x"151" => DATA <= x"00"; when x"152" => DATA <= x"44"; when x"153" => DATA <= x"44"; when x"154" => DATA <= x"44"; when x"155" => DATA <= x"44"; when x"156" => DATA <= x"44"; when x"157" => DATA <= x"44"; when x"158" => DATA <= x"38"; when x"159" => DATA <= x"00"; when x"15A" => DATA <= x"00"; when x"15B" => DATA <= x"00"; when x"15C" => DATA <= x"00"; when x"15D" => DATA <= x"00"; when x"15E" => DATA <= x"00"; when x"15F" => DATA <= x"00"; when x"160" => DATA <= x"00"; when x"161" => DATA <= x"00"; when x"162" => DATA <= x"44"; when x"163" => DATA <= x"44"; when x"164" => DATA <= x"44"; when x"165" => DATA <= x"28"; when x"166" => DATA <= x"28"; when x"167" => DATA <= x"10"; when x"168" => DATA <= x"10"; when x"169" => DATA <= x"00"; when x"16A" => DATA <= x"00"; when x"16B" => DATA <= x"00"; when x"16C" => DATA <= x"00"; when x"16D" => DATA <= x"00"; when x"16E" => DATA <= x"00"; when x"16F" => DATA <= x"00"; when x"170" => DATA <= x"00"; when x"171" => DATA <= x"00"; when x"172" => DATA <= x"44"; when x"173" => DATA <= x"44"; when x"174" => DATA <= x"44"; when x"175" => DATA <= x"44"; when x"176" => DATA <= x"54"; when x"177" => DATA <= x"6C"; when x"178" => DATA <= x"44"; when x"179" => DATA <= x"00"; when x"17A" => DATA <= x"00"; when x"17B" => DATA <= x"00"; when x"17C" => DATA <= x"00"; when x"17D" => DATA <= x"00"; when x"17E" => DATA <= x"00"; when x"17F" => DATA <= x"00"; when x"180" => DATA <= x"00"; when x"181" => DATA <= x"00"; when x"182" => DATA <= x"44"; when x"183" => DATA <= x"44"; when x"184" => DATA <= x"28"; when x"185" => DATA <= x"10"; when x"186" => DATA <= x"28"; when x"187" => DATA <= x"44"; when x"188" => DATA <= x"44"; when x"189" => DATA <= x"00"; when x"18A" => DATA <= x"00"; when x"18B" => DATA <= x"00"; when x"18C" => DATA <= x"00"; when x"18D" => DATA <= x"00"; when x"18E" => DATA <= x"00"; when x"18F" => DATA <= x"00"; when x"190" => DATA <= x"00"; when x"191" => DATA <= x"00"; when x"192" => DATA <= x"44"; when x"193" => DATA <= x"44"; when x"194" => DATA <= x"28"; when x"195" => DATA <= x"10"; when x"196" => DATA <= x"10"; when x"197" => DATA <= x"10"; when x"198" => DATA <= x"10"; when x"199" => DATA <= x"00"; when x"19A" => DATA <= x"00"; when x"19B" => DATA <= x"00"; when x"19C" => DATA <= x"00"; when x"19D" => DATA <= x"00"; when x"19E" => DATA <= x"00"; when x"19F" => DATA <= x"00"; when x"1A0" => DATA <= x"00"; when x"1A1" => DATA <= x"00"; when x"1A2" => DATA <= x"7C"; when x"1A3" => DATA <= x"04"; when x"1A4" => DATA <= x"08"; when x"1A5" => DATA <= x"10"; when x"1A6" => DATA <= x"20"; when x"1A7" => DATA <= x"40"; when x"1A8" => DATA <= x"7C"; when x"1A9" => DATA <= x"00"; when x"1AA" => DATA <= x"00"; when x"1AB" => DATA <= x"00"; when x"1AC" => DATA <= x"00"; when x"1AD" => DATA <= x"00"; when x"1AE" => DATA <= x"00"; when x"1AF" => DATA <= x"00"; when x"1B0" => DATA <= x"00"; when x"1B1" => DATA <= x"00"; when x"1B2" => DATA <= x"38"; when x"1B3" => DATA <= x"20"; when x"1B4" => DATA <= x"20"; when x"1B5" => DATA <= x"20"; when x"1B6" => DATA <= x"20"; when x"1B7" => DATA <= x"20"; when x"1B8" => DATA <= x"38"; when x"1B9" => DATA <= x"00"; when x"1BA" => DATA <= x"00"; when x"1BB" => DATA <= x"00"; when x"1BC" => DATA <= x"00"; when x"1BD" => DATA <= x"00"; when x"1BE" => DATA <= x"00"; when x"1BF" => DATA <= x"00"; when x"1C0" => DATA <= x"00"; when x"1C1" => DATA <= x"00"; when x"1C2" => DATA <= x"00"; when x"1C3" => DATA <= x"40"; when x"1C4" => DATA <= x"20"; when x"1C5" => DATA <= x"10"; when x"1C6" => DATA <= x"08"; when x"1C7" => DATA <= x"04"; when x"1C8" => DATA <= x"00"; when x"1C9" => DATA <= x"00"; when x"1CA" => DATA <= x"00"; when x"1CB" => DATA <= x"00"; when x"1CC" => DATA <= x"00"; when x"1CD" => DATA <= x"00"; when x"1CE" => DATA <= x"00"; when x"1CF" => DATA <= x"00"; when x"1D0" => DATA <= x"00"; when x"1D1" => DATA <= x"00"; when x"1D2" => DATA <= x"38"; when x"1D3" => DATA <= x"08"; when x"1D4" => DATA <= x"08"; when x"1D5" => DATA <= x"08"; when x"1D6" => DATA <= x"08"; when x"1D7" => DATA <= x"08"; when x"1D8" => DATA <= x"38"; when x"1D9" => DATA <= x"00"; when x"1DA" => DATA <= x"00"; when x"1DB" => DATA <= x"00"; when x"1DC" => DATA <= x"00"; when x"1DD" => DATA <= x"00"; when x"1DE" => DATA <= x"00"; when x"1DF" => DATA <= x"00"; when x"1E0" => DATA <= x"00"; when x"1E1" => DATA <= x"00"; when x"1E2" => DATA <= x"10"; when x"1E3" => DATA <= x"38"; when x"1E4" => DATA <= x"54"; when x"1E5" => DATA <= x"10"; when x"1E6" => DATA <= x"10"; when x"1E7" => DATA <= x"10"; when x"1E8" => DATA <= x"10"; when x"1E9" => DATA <= x"00"; when x"1EA" => DATA <= x"00"; when x"1EB" => DATA <= x"00"; when x"1EC" => DATA <= x"00"; when x"1ED" => DATA <= x"00"; when x"1EE" => DATA <= x"00"; when x"1EF" => DATA <= x"00"; when x"1F0" => DATA <= x"00"; when x"1F1" => DATA <= x"00"; when x"1F2" => DATA <= x"00"; when x"1F3" => DATA <= x"10"; when x"1F4" => DATA <= x"20"; when x"1F5" => DATA <= x"7C"; when x"1F6" => DATA <= x"20"; when x"1F7" => DATA <= x"10"; when x"1F8" => DATA <= x"00"; when x"1F9" => DATA <= x"00"; when x"1FA" => DATA <= x"00"; when x"1FB" => DATA <= x"00"; when x"1FC" => DATA <= x"00"; when x"1FD" => DATA <= x"00"; when x"1FE" => DATA <= x"00"; when x"1FF" => DATA <= x"00"; when x"200" => DATA <= x"00"; when x"201" => DATA <= x"00"; when x"202" => DATA <= x"00"; when x"203" => DATA <= x"00"; when x"204" => DATA <= x"00"; when x"205" => DATA <= x"00"; when x"206" => DATA <= x"00"; when x"207" => DATA <= x"00"; when x"208" => DATA <= x"00"; when x"209" => DATA <= x"00"; when x"20A" => DATA <= x"00"; when x"20B" => DATA <= x"00"; when x"20C" => DATA <= x"00"; when x"20D" => DATA <= x"00"; when x"20E" => DATA <= x"00"; when x"20F" => DATA <= x"00"; when x"210" => DATA <= x"00"; when x"211" => DATA <= x"00"; when x"212" => DATA <= x"10"; when x"213" => DATA <= x"10"; when x"214" => DATA <= x"10"; when x"215" => DATA <= x"10"; when x"216" => DATA <= x"10"; when x"217" => DATA <= x"00"; when x"218" => DATA <= x"10"; when x"219" => DATA <= x"00"; when x"21A" => DATA <= x"00"; when x"21B" => DATA <= x"00"; when x"21C" => DATA <= x"00"; when x"21D" => DATA <= x"00"; when x"21E" => DATA <= x"00"; when x"21F" => DATA <= x"00"; when x"220" => DATA <= x"00"; when x"221" => DATA <= x"00"; when x"222" => DATA <= x"28"; when x"223" => DATA <= x"28"; when x"224" => DATA <= x"28"; when x"225" => DATA <= x"00"; when x"226" => DATA <= x"00"; when x"227" => DATA <= x"00"; when x"228" => DATA <= x"00"; when x"229" => DATA <= x"00"; when x"22A" => DATA <= x"00"; when x"22B" => DATA <= x"00"; when x"22C" => DATA <= x"00"; when x"22D" => DATA <= x"00"; when x"22E" => DATA <= x"00"; when x"22F" => DATA <= x"00"; when x"230" => DATA <= x"00"; when x"231" => DATA <= x"00"; when x"232" => DATA <= x"28"; when x"233" => DATA <= x"28"; when x"234" => DATA <= x"7C"; when x"235" => DATA <= x"28"; when x"236" => DATA <= x"7C"; when x"237" => DATA <= x"28"; when x"238" => DATA <= x"28"; when x"239" => DATA <= x"00"; when x"23A" => DATA <= x"00"; when x"23B" => DATA <= x"00"; when x"23C" => DATA <= x"00"; when x"23D" => DATA <= x"00"; when x"23E" => DATA <= x"00"; when x"23F" => DATA <= x"00"; when x"240" => DATA <= x"00"; when x"241" => DATA <= x"00"; when x"242" => DATA <= x"10"; when x"243" => DATA <= x"3C"; when x"244" => DATA <= x"50"; when x"245" => DATA <= x"38"; when x"246" => DATA <= x"14"; when x"247" => DATA <= x"78"; when x"248" => DATA <= x"10"; when x"249" => DATA <= x"00"; when x"24A" => DATA <= x"00"; when x"24B" => DATA <= x"00"; when x"24C" => DATA <= x"00"; when x"24D" => DATA <= x"00"; when x"24E" => DATA <= x"00"; when x"24F" => DATA <= x"00"; when x"250" => DATA <= x"00"; when x"251" => DATA <= x"00"; when x"252" => DATA <= x"60"; when x"253" => DATA <= x"64"; when x"254" => DATA <= x"08"; when x"255" => DATA <= x"10"; when x"256" => DATA <= x"20"; when x"257" => DATA <= x"4C"; when x"258" => DATA <= x"0C"; when x"259" => DATA <= x"00"; when x"25A" => DATA <= x"00"; when x"25B" => DATA <= x"00"; when x"25C" => DATA <= x"00"; when x"25D" => DATA <= x"00"; when x"25E" => DATA <= x"00"; when x"25F" => DATA <= x"00"; when x"260" => DATA <= x"00"; when x"261" => DATA <= x"00"; when x"262" => DATA <= x"20"; when x"263" => DATA <= x"50"; when x"264" => DATA <= x"50"; when x"265" => DATA <= x"20"; when x"266" => DATA <= x"54"; when x"267" => DATA <= x"48"; when x"268" => DATA <= x"34"; when x"269" => DATA <= x"00"; when x"26A" => DATA <= x"00"; when x"26B" => DATA <= x"00"; when x"26C" => DATA <= x"00"; when x"26D" => DATA <= x"00"; when x"26E" => DATA <= x"00"; when x"26F" => DATA <= x"00"; when x"270" => DATA <= x"00"; when x"271" => DATA <= x"00"; when x"272" => DATA <= x"10"; when x"273" => DATA <= x"10"; when x"274" => DATA <= x"20"; when x"275" => DATA <= x"00"; when x"276" => DATA <= x"00"; when x"277" => DATA <= x"00"; when x"278" => DATA <= x"00"; when x"279" => DATA <= x"00"; when x"27A" => DATA <= x"00"; when x"27B" => DATA <= x"00"; when x"27C" => DATA <= x"00"; when x"27D" => DATA <= x"00"; when x"27E" => DATA <= x"00"; when x"27F" => DATA <= x"00"; when x"280" => DATA <= x"00"; when x"281" => DATA <= x"00"; when x"282" => DATA <= x"08"; when x"283" => DATA <= x"10"; when x"284" => DATA <= x"20"; when x"285" => DATA <= x"20"; when x"286" => DATA <= x"20"; when x"287" => DATA <= x"10"; when x"288" => DATA <= x"08"; when x"289" => DATA <= x"00"; when x"28A" => DATA <= x"00"; when x"28B" => DATA <= x"00"; when x"28C" => DATA <= x"00"; when x"28D" => DATA <= x"00"; when x"28E" => DATA <= x"00"; when x"28F" => DATA <= x"00"; when x"290" => DATA <= x"00"; when x"291" => DATA <= x"00"; when x"292" => DATA <= x"20"; when x"293" => DATA <= x"10"; when x"294" => DATA <= x"08"; when x"295" => DATA <= x"08"; when x"296" => DATA <= x"08"; when x"297" => DATA <= x"10"; when x"298" => DATA <= x"20"; when x"299" => DATA <= x"00"; when x"29A" => DATA <= x"00"; when x"29B" => DATA <= x"00"; when x"29C" => DATA <= x"00"; when x"29D" => DATA <= x"00"; when x"29E" => DATA <= x"00"; when x"29F" => DATA <= x"00"; when x"2A0" => DATA <= x"00"; when x"2A1" => DATA <= x"00"; when x"2A2" => DATA <= x"00"; when x"2A3" => DATA <= x"10"; when x"2A4" => DATA <= x"54"; when x"2A5" => DATA <= x"38"; when x"2A6" => DATA <= x"38"; when x"2A7" => DATA <= x"54"; when x"2A8" => DATA <= x"10"; when x"2A9" => DATA <= x"00"; when x"2AA" => DATA <= x"00"; when x"2AB" => DATA <= x"00"; when x"2AC" => DATA <= x"00"; when x"2AD" => DATA <= x"00"; when x"2AE" => DATA <= x"00"; when x"2AF" => DATA <= x"00"; when x"2B0" => DATA <= x"00"; when x"2B1" => DATA <= x"00"; when x"2B2" => DATA <= x"00"; when x"2B3" => DATA <= x"10"; when x"2B4" => DATA <= x"10"; when x"2B5" => DATA <= x"7C"; when x"2B6" => DATA <= x"10"; when x"2B7" => DATA <= x"10"; when x"2B8" => DATA <= x"00"; when x"2B9" => DATA <= x"00"; when x"2BA" => DATA <= x"00"; when x"2BB" => DATA <= x"00"; when x"2BC" => DATA <= x"00"; when x"2BD" => DATA <= x"00"; when x"2BE" => DATA <= x"00"; when x"2BF" => DATA <= x"00"; when x"2C0" => DATA <= x"00"; when x"2C1" => DATA <= x"00"; when x"2C2" => DATA <= x"00"; when x"2C3" => DATA <= x"00"; when x"2C4" => DATA <= x"00"; when x"2C5" => DATA <= x"00"; when x"2C6" => DATA <= x"00"; when x"2C7" => DATA <= x"20"; when x"2C8" => DATA <= x"20"; when x"2C9" => DATA <= x"40"; when x"2CA" => DATA <= x"00"; when x"2CB" => DATA <= x"00"; when x"2CC" => DATA <= x"00"; when x"2CD" => DATA <= x"00"; when x"2CE" => DATA <= x"00"; when x"2CF" => DATA <= x"00"; when x"2D0" => DATA <= x"00"; when x"2D1" => DATA <= x"00"; when x"2D2" => DATA <= x"00"; when x"2D3" => DATA <= x"00"; when x"2D4" => DATA <= x"00"; when x"2D5" => DATA <= x"7C"; when x"2D6" => DATA <= x"00"; when x"2D7" => DATA <= x"00"; when x"2D8" => DATA <= x"00"; when x"2D9" => DATA <= x"00"; when x"2DA" => DATA <= x"00"; when x"2DB" => DATA <= x"00"; when x"2DC" => DATA <= x"00"; when x"2DD" => DATA <= x"00"; when x"2DE" => DATA <= x"00"; when x"2DF" => DATA <= x"00"; when x"2E0" => DATA <= x"00"; when x"2E1" => DATA <= x"00"; when x"2E2" => DATA <= x"00"; when x"2E3" => DATA <= x"00"; when x"2E4" => DATA <= x"00"; when x"2E5" => DATA <= x"00"; when x"2E6" => DATA <= x"00"; when x"2E7" => DATA <= x"00"; when x"2E8" => DATA <= x"10"; when x"2E9" => DATA <= x"00"; when x"2EA" => DATA <= x"00"; when x"2EB" => DATA <= x"00"; when x"2EC" => DATA <= x"00"; when x"2ED" => DATA <= x"00"; when x"2EE" => DATA <= x"00"; when x"2EF" => DATA <= x"00"; when x"2F0" => DATA <= x"00"; when x"2F1" => DATA <= x"00"; when x"2F2" => DATA <= x"00"; when x"2F3" => DATA <= x"04"; when x"2F4" => DATA <= x"08"; when x"2F5" => DATA <= x"10"; when x"2F6" => DATA <= x"20"; when x"2F7" => DATA <= x"40"; when x"2F8" => DATA <= x"00"; when x"2F9" => DATA <= x"00"; when x"2FA" => DATA <= x"00"; when x"2FB" => DATA <= x"00"; when x"2FC" => DATA <= x"00"; when x"2FD" => DATA <= x"00"; when x"2FE" => DATA <= x"00"; when x"2FF" => DATA <= x"00"; when x"300" => DATA <= x"00"; when x"301" => DATA <= x"00"; when x"302" => DATA <= x"38"; when x"303" => DATA <= x"44"; when x"304" => DATA <= x"4C"; when x"305" => DATA <= x"54"; when x"306" => DATA <= x"64"; when x"307" => DATA <= x"44"; when x"308" => DATA <= x"38"; when x"309" => DATA <= x"00"; when x"30A" => DATA <= x"00"; when x"30B" => DATA <= x"00"; when x"30C" => DATA <= x"00"; when x"30D" => DATA <= x"00"; when x"30E" => DATA <= x"00"; when x"30F" => DATA <= x"00"; when x"310" => DATA <= x"00"; when x"311" => DATA <= x"00"; when x"312" => DATA <= x"10"; when x"313" => DATA <= x"30"; when x"314" => DATA <= x"10"; when x"315" => DATA <= x"10"; when x"316" => DATA <= x"10"; when x"317" => DATA <= x"10"; when x"318" => DATA <= x"38"; when x"319" => DATA <= x"00"; when x"31A" => DATA <= x"00"; when x"31B" => DATA <= x"00"; when x"31C" => DATA <= x"00"; when x"31D" => DATA <= x"00"; when x"31E" => DATA <= x"00"; when x"31F" => DATA <= x"00"; when x"320" => DATA <= x"00"; when x"321" => DATA <= x"00"; when x"322" => DATA <= x"38"; when x"323" => DATA <= x"44"; when x"324" => DATA <= x"04"; when x"325" => DATA <= x"38"; when x"326" => DATA <= x"40"; when x"327" => DATA <= x"40"; when x"328" => DATA <= x"7C"; when x"329" => DATA <= x"00"; when x"32A" => DATA <= x"00"; when x"32B" => DATA <= x"00"; when x"32C" => DATA <= x"00"; when x"32D" => DATA <= x"00"; when x"32E" => DATA <= x"00"; when x"32F" => DATA <= x"00"; when x"330" => DATA <= x"00"; when x"331" => DATA <= x"00"; when x"332" => DATA <= x"38"; when x"333" => DATA <= x"44"; when x"334" => DATA <= x"04"; when x"335" => DATA <= x"08"; when x"336" => DATA <= x"04"; when x"337" => DATA <= x"44"; when x"338" => DATA <= x"38"; when x"339" => DATA <= x"00"; when x"33A" => DATA <= x"00"; when x"33B" => DATA <= x"00"; when x"33C" => DATA <= x"00"; when x"33D" => DATA <= x"00"; when x"33E" => DATA <= x"00"; when x"33F" => DATA <= x"00"; when x"340" => DATA <= x"00"; when x"341" => DATA <= x"00"; when x"342" => DATA <= x"08"; when x"343" => DATA <= x"18"; when x"344" => DATA <= x"28"; when x"345" => DATA <= x"48"; when x"346" => DATA <= x"7C"; when x"347" => DATA <= x"08"; when x"348" => DATA <= x"08"; when x"349" => DATA <= x"00"; when x"34A" => DATA <= x"00"; when x"34B" => DATA <= x"00"; when x"34C" => DATA <= x"00"; when x"34D" => DATA <= x"00"; when x"34E" => DATA <= x"00"; when x"34F" => DATA <= x"00"; when x"350" => DATA <= x"00"; when x"351" => DATA <= x"00"; when x"352" => DATA <= x"7C"; when x"353" => DATA <= x"40"; when x"354" => DATA <= x"78"; when x"355" => DATA <= x"04"; when x"356" => DATA <= x"04"; when x"357" => DATA <= x"44"; when x"358" => DATA <= x"38"; when x"359" => DATA <= x"00"; when x"35A" => DATA <= x"00"; when x"35B" => DATA <= x"00"; when x"35C" => DATA <= x"00"; when x"35D" => DATA <= x"00"; when x"35E" => DATA <= x"00"; when x"35F" => DATA <= x"00"; when x"360" => DATA <= x"00"; when x"361" => DATA <= x"00"; when x"362" => DATA <= x"38"; when x"363" => DATA <= x"40"; when x"364" => DATA <= x"40"; when x"365" => DATA <= x"78"; when x"366" => DATA <= x"44"; when x"367" => DATA <= x"44"; when x"368" => DATA <= x"38"; when x"369" => DATA <= x"00"; when x"36A" => DATA <= x"00"; when x"36B" => DATA <= x"00"; when x"36C" => DATA <= x"00"; when x"36D" => DATA <= x"00"; when x"36E" => DATA <= x"00"; when x"36F" => DATA <= x"00"; when x"370" => DATA <= x"00"; when x"371" => DATA <= x"00"; when x"372" => DATA <= x"7C"; when x"373" => DATA <= x"04"; when x"374" => DATA <= x"08"; when x"375" => DATA <= x"10"; when x"376" => DATA <= x"20"; when x"377" => DATA <= x"40"; when x"378" => DATA <= x"40"; when x"379" => DATA <= x"00"; when x"37A" => DATA <= x"00"; when x"37B" => DATA <= x"00"; when x"37C" => DATA <= x"00"; when x"37D" => DATA <= x"00"; when x"37E" => DATA <= x"00"; when x"37F" => DATA <= x"00"; when x"380" => DATA <= x"00"; when x"381" => DATA <= x"00"; when x"382" => DATA <= x"38"; when x"383" => DATA <= x"44"; when x"384" => DATA <= x"44"; when x"385" => DATA <= x"38"; when x"386" => DATA <= x"44"; when x"387" => DATA <= x"44"; when x"388" => DATA <= x"38"; when x"389" => DATA <= x"00"; when x"38A" => DATA <= x"00"; when x"38B" => DATA <= x"00"; when x"38C" => DATA <= x"00"; when x"38D" => DATA <= x"00"; when x"38E" => DATA <= x"00"; when x"38F" => DATA <= x"00"; when x"390" => DATA <= x"00"; when x"391" => DATA <= x"00"; when x"392" => DATA <= x"38"; when x"393" => DATA <= x"44"; when x"394" => DATA <= x"44"; when x"395" => DATA <= x"3C"; when x"396" => DATA <= x"04"; when x"397" => DATA <= x"04"; when x"398" => DATA <= x"38"; when x"399" => DATA <= x"00"; when x"39A" => DATA <= x"00"; when x"39B" => DATA <= x"00"; when x"39C" => DATA <= x"00"; when x"39D" => DATA <= x"00"; when x"39E" => DATA <= x"00"; when x"39F" => DATA <= x"00"; when x"3A0" => DATA <= x"00"; when x"3A1" => DATA <= x"00"; when x"3A2" => DATA <= x"00"; when x"3A3" => DATA <= x"00"; when x"3A4" => DATA <= x"10"; when x"3A5" => DATA <= x"00"; when x"3A6" => DATA <= x"00"; when x"3A7" => DATA <= x"10"; when x"3A8" => DATA <= x"00"; when x"3A9" => DATA <= x"00"; when x"3AA" => DATA <= x"00"; when x"3AB" => DATA <= x"00"; when x"3AC" => DATA <= x"00"; when x"3AD" => DATA <= x"00"; when x"3AE" => DATA <= x"00"; when x"3AF" => DATA <= x"00"; when x"3B0" => DATA <= x"00"; when x"3B1" => DATA <= x"00"; when x"3B2" => DATA <= x"00"; when x"3B3" => DATA <= x"00"; when x"3B4" => DATA <= x"10"; when x"3B5" => DATA <= x"00"; when x"3B6" => DATA <= x"00"; when x"3B7" => DATA <= x"10"; when x"3B8" => DATA <= x"10"; when x"3B9" => DATA <= x"20"; when x"3BA" => DATA <= x"00"; when x"3BB" => DATA <= x"00"; when x"3BC" => DATA <= x"00"; when x"3BD" => DATA <= x"00"; when x"3BE" => DATA <= x"00"; when x"3BF" => DATA <= x"00"; when x"3C0" => DATA <= x"00"; when x"3C1" => DATA <= x"00"; when x"3C2" => DATA <= x"08"; when x"3C3" => DATA <= x"10"; when x"3C4" => DATA <= x"20"; when x"3C5" => DATA <= x"40"; when x"3C6" => DATA <= x"20"; when x"3C7" => DATA <= x"10"; when x"3C8" => DATA <= x"08"; when x"3C9" => DATA <= x"00"; when x"3CA" => DATA <= x"00"; when x"3CB" => DATA <= x"00"; when x"3CC" => DATA <= x"00"; when x"3CD" => DATA <= x"00"; when x"3CE" => DATA <= x"00"; when x"3CF" => DATA <= x"00"; when x"3D0" => DATA <= x"00"; when x"3D1" => DATA <= x"00"; when x"3D2" => DATA <= x"00"; when x"3D3" => DATA <= x"00"; when x"3D4" => DATA <= x"7C"; when x"3D5" => DATA <= x"00"; when x"3D6" => DATA <= x"7C"; when x"3D7" => DATA <= x"00"; when x"3D8" => DATA <= x"00"; when x"3D9" => DATA <= x"00"; when x"3DA" => DATA <= x"00"; when x"3DB" => DATA <= x"00"; when x"3DC" => DATA <= x"00"; when x"3DD" => DATA <= x"00"; when x"3DE" => DATA <= x"00"; when x"3DF" => DATA <= x"00"; when x"3E0" => DATA <= x"00"; when x"3E1" => DATA <= x"00"; when x"3E2" => DATA <= x"20"; when x"3E3" => DATA <= x"10"; when x"3E4" => DATA <= x"08"; when x"3E5" => DATA <= x"04"; when x"3E6" => DATA <= x"08"; when x"3E7" => DATA <= x"10"; when x"3E8" => DATA <= x"20"; when x"3E9" => DATA <= x"00"; when x"3EA" => DATA <= x"00"; when x"3EB" => DATA <= x"00"; when x"3EC" => DATA <= x"00"; when x"3ED" => DATA <= x"00"; when x"3EE" => DATA <= x"00"; when x"3EF" => DATA <= x"00"; when x"3F0" => DATA <= x"00"; when x"3F1" => DATA <= x"00"; when x"3F2" => DATA <= x"38"; when x"3F3" => DATA <= x"44"; when x"3F4" => DATA <= x"04"; when x"3F5" => DATA <= x"08"; when x"3F6" => DATA <= x"10"; when x"3F7" => DATA <= x"00"; when x"3F8" => DATA <= x"10"; when x"3F9" => DATA <= x"00"; when x"3FA" => DATA <= x"00"; when x"3FB" => DATA <= x"00"; when x"3FC" => DATA <= x"00"; when x"3FD" => DATA <= x"00"; when x"3FE" => DATA <= x"00"; when x"3FF" => DATA <= x"00"; when x"400" => DATA <= x"00"; when x"401" => DATA <= x"00"; when x"402" => DATA <= x"10"; when x"403" => DATA <= x"28"; when x"404" => DATA <= x"44"; when x"405" => DATA <= x"00"; when x"406" => DATA <= x"00"; when x"407" => DATA <= x"00"; when x"408" => DATA <= x"00"; when x"409" => DATA <= x"00"; when x"40A" => DATA <= x"00"; when x"40B" => DATA <= x"00"; when x"40C" => DATA <= x"00"; when x"40D" => DATA <= x"00"; when x"40E" => DATA <= x"00"; when x"40F" => DATA <= x"00"; when x"410" => DATA <= x"00"; when x"411" => DATA <= x"00"; when x"412" => DATA <= x"00"; when x"413" => DATA <= x"00"; when x"414" => DATA <= x"38"; when x"415" => DATA <= x"04"; when x"416" => DATA <= x"3C"; when x"417" => DATA <= x"44"; when x"418" => DATA <= x"3C"; when x"419" => DATA <= x"00"; when x"41A" => DATA <= x"00"; when x"41B" => DATA <= x"00"; when x"41C" => DATA <= x"00"; when x"41D" => DATA <= x"00"; when x"41E" => DATA <= x"00"; when x"41F" => DATA <= x"00"; when x"420" => DATA <= x"00"; when x"421" => DATA <= x"00"; when x"422" => DATA <= x"40"; when x"423" => DATA <= x"40"; when x"424" => DATA <= x"58"; when x"425" => DATA <= x"64"; when x"426" => DATA <= x"44"; when x"427" => DATA <= x"64"; when x"428" => DATA <= x"58"; when x"429" => DATA <= x"00"; when x"42A" => DATA <= x"00"; when x"42B" => DATA <= x"00"; when x"42C" => DATA <= x"00"; when x"42D" => DATA <= x"00"; when x"42E" => DATA <= x"00"; when x"42F" => DATA <= x"00"; when x"430" => DATA <= x"00"; when x"431" => DATA <= x"00"; when x"432" => DATA <= x"00"; when x"433" => DATA <= x"00"; when x"434" => DATA <= x"38"; when x"435" => DATA <= x"44"; when x"436" => DATA <= x"40"; when x"437" => DATA <= x"44"; when x"438" => DATA <= x"38"; when x"439" => DATA <= x"00"; when x"43A" => DATA <= x"00"; when x"43B" => DATA <= x"00"; when x"43C" => DATA <= x"00"; when x"43D" => DATA <= x"00"; when x"43E" => DATA <= x"00"; when x"43F" => DATA <= x"00"; when x"440" => DATA <= x"00"; when x"441" => DATA <= x"00"; when x"442" => DATA <= x"04"; when x"443" => DATA <= x"04"; when x"444" => DATA <= x"34"; when x"445" => DATA <= x"4C"; when x"446" => DATA <= x"44"; when x"447" => DATA <= x"4C"; when x"448" => DATA <= x"34"; when x"449" => DATA <= x"00"; when x"44A" => DATA <= x"00"; when x"44B" => DATA <= x"00"; when x"44C" => DATA <= x"00"; when x"44D" => DATA <= x"00"; when x"44E" => DATA <= x"00"; when x"44F" => DATA <= x"00"; when x"450" => DATA <= x"00"; when x"451" => DATA <= x"00"; when x"452" => DATA <= x"00"; when x"453" => DATA <= x"00"; when x"454" => DATA <= x"38"; when x"455" => DATA <= x"44"; when x"456" => DATA <= x"7C"; when x"457" => DATA <= x"40"; when x"458" => DATA <= x"38"; when x"459" => DATA <= x"00"; when x"45A" => DATA <= x"00"; when x"45B" => DATA <= x"00"; when x"45C" => DATA <= x"00"; when x"45D" => DATA <= x"00"; when x"45E" => DATA <= x"00"; when x"45F" => DATA <= x"00"; when x"460" => DATA <= x"00"; when x"461" => DATA <= x"00"; when x"462" => DATA <= x"08"; when x"463" => DATA <= x"14"; when x"464" => DATA <= x"10"; when x"465" => DATA <= x"38"; when x"466" => DATA <= x"10"; when x"467" => DATA <= x"10"; when x"468" => DATA <= x"10"; when x"469" => DATA <= x"00"; when x"46A" => DATA <= x"00"; when x"46B" => DATA <= x"00"; when x"46C" => DATA <= x"00"; when x"46D" => DATA <= x"00"; when x"46E" => DATA <= x"00"; when x"46F" => DATA <= x"00"; when x"470" => DATA <= x"00"; when x"471" => DATA <= x"00"; when x"472" => DATA <= x"00"; when x"473" => DATA <= x"00"; when x"474" => DATA <= x"34"; when x"475" => DATA <= x"4C"; when x"476" => DATA <= x"44"; when x"477" => DATA <= x"4C"; when x"478" => DATA <= x"34"; when x"479" => DATA <= x"04"; when x"47A" => DATA <= x"38"; when x"47B" => DATA <= x"00"; when x"47C" => DATA <= x"00"; when x"47D" => DATA <= x"00"; when x"47E" => DATA <= x"00"; when x"47F" => DATA <= x"00"; when x"480" => DATA <= x"00"; when x"481" => DATA <= x"00"; when x"482" => DATA <= x"40"; when x"483" => DATA <= x"40"; when x"484" => DATA <= x"58"; when x"485" => DATA <= x"64"; when x"486" => DATA <= x"44"; when x"487" => DATA <= x"44"; when x"488" => DATA <= x"44"; when x"489" => DATA <= x"00"; when x"48A" => DATA <= x"00"; when x"48B" => DATA <= x"00"; when x"48C" => DATA <= x"00"; when x"48D" => DATA <= x"00"; when x"48E" => DATA <= x"00"; when x"48F" => DATA <= x"00"; when x"490" => DATA <= x"00"; when x"491" => DATA <= x"00"; when x"492" => DATA <= x"10"; when x"493" => DATA <= x"00"; when x"494" => DATA <= x"30"; when x"495" => DATA <= x"10"; when x"496" => DATA <= x"10"; when x"497" => DATA <= x"10"; when x"498" => DATA <= x"38"; when x"499" => DATA <= x"00"; when x"49A" => DATA <= x"00"; when x"49B" => DATA <= x"00"; when x"49C" => DATA <= x"00"; when x"49D" => DATA <= x"00"; when x"49E" => DATA <= x"00"; when x"49F" => DATA <= x"00"; when x"4A0" => DATA <= x"00"; when x"4A1" => DATA <= x"00"; when x"4A2" => DATA <= x"04"; when x"4A3" => DATA <= x"00"; when x"4A4" => DATA <= x"04"; when x"4A5" => DATA <= x"04"; when x"4A6" => DATA <= x"04"; when x"4A7" => DATA <= x"04"; when x"4A8" => DATA <= x"44"; when x"4A9" => DATA <= x"38"; when x"4AA" => DATA <= x"00"; when x"4AB" => DATA <= x"00"; when x"4AC" => DATA <= x"00"; when x"4AD" => DATA <= x"00"; when x"4AE" => DATA <= x"00"; when x"4AF" => DATA <= x"00"; when x"4B0" => DATA <= x"00"; when x"4B1" => DATA <= x"00"; when x"4B2" => DATA <= x"40"; when x"4B3" => DATA <= x"40"; when x"4B4" => DATA <= x"48"; when x"4B5" => DATA <= x"50"; when x"4B6" => DATA <= x"60"; when x"4B7" => DATA <= x"50"; when x"4B8" => DATA <= x"48"; when x"4B9" => DATA <= x"00"; when x"4BA" => DATA <= x"00"; when x"4BB" => DATA <= x"00"; when x"4BC" => DATA <= x"00"; when x"4BD" => DATA <= x"00"; when x"4BE" => DATA <= x"00"; when x"4BF" => DATA <= x"00"; when x"4C0" => DATA <= x"00"; when x"4C1" => DATA <= x"00"; when x"4C2" => DATA <= x"30"; when x"4C3" => DATA <= x"10"; when x"4C4" => DATA <= x"10"; when x"4C5" => DATA <= x"10"; when x"4C6" => DATA <= x"10"; when x"4C7" => DATA <= x"10"; when x"4C8" => DATA <= x"38"; when x"4C9" => DATA <= x"00"; when x"4CA" => DATA <= x"00"; when x"4CB" => DATA <= x"00"; when x"4CC" => DATA <= x"00"; when x"4CD" => DATA <= x"00"; when x"4CE" => DATA <= x"00"; when x"4CF" => DATA <= x"00"; when x"4D0" => DATA <= x"00"; when x"4D1" => DATA <= x"00"; when x"4D2" => DATA <= x"00"; when x"4D3" => DATA <= x"00"; when x"4D4" => DATA <= x"78"; when x"4D5" => DATA <= x"54"; when x"4D6" => DATA <= x"54"; when x"4D7" => DATA <= x"54"; when x"4D8" => DATA <= x"54"; when x"4D9" => DATA <= x"00"; when x"4DA" => DATA <= x"00"; when x"4DB" => DATA <= x"00"; when x"4DC" => DATA <= x"00"; when x"4DD" => DATA <= x"00"; when x"4DE" => DATA <= x"00"; when x"4DF" => DATA <= x"00"; when x"4E0" => DATA <= x"00"; when x"4E1" => DATA <= x"00"; when x"4E2" => DATA <= x"00"; when x"4E3" => DATA <= x"00"; when x"4E4" => DATA <= x"58"; when x"4E5" => DATA <= x"64"; when x"4E6" => DATA <= x"44"; when x"4E7" => DATA <= x"44"; when x"4E8" => DATA <= x"44"; when x"4E9" => DATA <= x"00"; when x"4EA" => DATA <= x"00"; when x"4EB" => DATA <= x"00"; when x"4EC" => DATA <= x"00"; when x"4ED" => DATA <= x"00"; when x"4EE" => DATA <= x"00"; when x"4EF" => DATA <= x"00"; when x"4F0" => DATA <= x"00"; when x"4F1" => DATA <= x"00"; when x"4F2" => DATA <= x"00"; when x"4F3" => DATA <= x"00"; when x"4F4" => DATA <= x"38"; when x"4F5" => DATA <= x"44"; when x"4F6" => DATA <= x"44"; when x"4F7" => DATA <= x"44"; when x"4F8" => DATA <= x"38"; when x"4F9" => DATA <= x"00"; when x"4FA" => DATA <= x"00"; when x"4FB" => DATA <= x"00"; when x"4FC" => DATA <= x"00"; when x"4FD" => DATA <= x"00"; when x"4FE" => DATA <= x"00"; when x"4FF" => DATA <= x"00"; when x"500" => DATA <= x"00"; when x"501" => DATA <= x"00"; when x"502" => DATA <= x"00"; when x"503" => DATA <= x"00"; when x"504" => DATA <= x"78"; when x"505" => DATA <= x"44"; when x"506" => DATA <= x"44"; when x"507" => DATA <= x"44"; when x"508" => DATA <= x"78"; when x"509" => DATA <= x"40"; when x"50A" => DATA <= x"40"; when x"50B" => DATA <= x"00"; when x"50C" => DATA <= x"00"; when x"50D" => DATA <= x"00"; when x"50E" => DATA <= x"00"; when x"50F" => DATA <= x"00"; when x"510" => DATA <= x"00"; when x"511" => DATA <= x"00"; when x"512" => DATA <= x"00"; when x"513" => DATA <= x"00"; when x"514" => DATA <= x"3C"; when x"515" => DATA <= x"44"; when x"516" => DATA <= x"44"; when x"517" => DATA <= x"44"; when x"518" => DATA <= x"3C"; when x"519" => DATA <= x"04"; when x"51A" => DATA <= x"04"; when x"51B" => DATA <= x"00"; when x"51C" => DATA <= x"00"; when x"51D" => DATA <= x"00"; when x"51E" => DATA <= x"00"; when x"51F" => DATA <= x"00"; when x"520" => DATA <= x"00"; when x"521" => DATA <= x"00"; when x"522" => DATA <= x"00"; when x"523" => DATA <= x"00"; when x"524" => DATA <= x"58"; when x"525" => DATA <= x"64"; when x"526" => DATA <= x"40"; when x"527" => DATA <= x"40"; when x"528" => DATA <= x"40"; when x"529" => DATA <= x"00"; when x"52A" => DATA <= x"00"; when x"52B" => DATA <= x"00"; when x"52C" => DATA <= x"00"; when x"52D" => DATA <= x"00"; when x"52E" => DATA <= x"00"; when x"52F" => DATA <= x"00"; when x"530" => DATA <= x"00"; when x"531" => DATA <= x"00"; when x"532" => DATA <= x"00"; when x"533" => DATA <= x"00"; when x"534" => DATA <= x"3C"; when x"535" => DATA <= x"40"; when x"536" => DATA <= x"38"; when x"537" => DATA <= x"04"; when x"538" => DATA <= x"78"; when x"539" => DATA <= x"00"; when x"53A" => DATA <= x"00"; when x"53B" => DATA <= x"00"; when x"53C" => DATA <= x"00"; when x"53D" => DATA <= x"00"; when x"53E" => DATA <= x"00"; when x"53F" => DATA <= x"00"; when x"540" => DATA <= x"00"; when x"541" => DATA <= x"00"; when x"542" => DATA <= x"20"; when x"543" => DATA <= x"20"; when x"544" => DATA <= x"70"; when x"545" => DATA <= x"20"; when x"546" => DATA <= x"20"; when x"547" => DATA <= x"24"; when x"548" => DATA <= x"18"; when x"549" => DATA <= x"00"; when x"54A" => DATA <= x"00"; when x"54B" => DATA <= x"00"; when x"54C" => DATA <= x"00"; when x"54D" => DATA <= x"00"; when x"54E" => DATA <= x"00"; when x"54F" => DATA <= x"00"; when x"550" => DATA <= x"00"; when x"551" => DATA <= x"00"; when x"552" => DATA <= x"00"; when x"553" => DATA <= x"00"; when x"554" => DATA <= x"44"; when x"555" => DATA <= x"44"; when x"556" => DATA <= x"44"; when x"557" => DATA <= x"4C"; when x"558" => DATA <= x"34"; when x"559" => DATA <= x"00"; when x"55A" => DATA <= x"00"; when x"55B" => DATA <= x"00"; when x"55C" => DATA <= x"00"; when x"55D" => DATA <= x"00"; when x"55E" => DATA <= x"00"; when x"55F" => DATA <= x"00"; when x"560" => DATA <= x"00"; when x"561" => DATA <= x"00"; when x"562" => DATA <= x"00"; when x"563" => DATA <= x"00"; when x"564" => DATA <= x"44"; when x"565" => DATA <= x"44"; when x"566" => DATA <= x"44"; when x"567" => DATA <= x"28"; when x"568" => DATA <= x"10"; when x"569" => DATA <= x"00"; when x"56A" => DATA <= x"00"; when x"56B" => DATA <= x"00"; when x"56C" => DATA <= x"00"; when x"56D" => DATA <= x"00"; when x"56E" => DATA <= x"00"; when x"56F" => DATA <= x"00"; when x"570" => DATA <= x"00"; when x"571" => DATA <= x"00"; when x"572" => DATA <= x"00"; when x"573" => DATA <= x"00"; when x"574" => DATA <= x"44"; when x"575" => DATA <= x"54"; when x"576" => DATA <= x"54"; when x"577" => DATA <= x"28"; when x"578" => DATA <= x"28"; when x"579" => DATA <= x"00"; when x"57A" => DATA <= x"00"; when x"57B" => DATA <= x"00"; when x"57C" => DATA <= x"00"; when x"57D" => DATA <= x"00"; when x"57E" => DATA <= x"00"; when x"57F" => DATA <= x"00"; when x"580" => DATA <= x"00"; when x"581" => DATA <= x"00"; when x"582" => DATA <= x"00"; when x"583" => DATA <= x"00"; when x"584" => DATA <= x"44"; when x"585" => DATA <= x"28"; when x"586" => DATA <= x"10"; when x"587" => DATA <= x"28"; when x"588" => DATA <= x"44"; when x"589" => DATA <= x"00"; when x"58A" => DATA <= x"00"; when x"58B" => DATA <= x"00"; when x"58C" => DATA <= x"00"; when x"58D" => DATA <= x"00"; when x"58E" => DATA <= x"00"; when x"58F" => DATA <= x"00"; when x"590" => DATA <= x"00"; when x"591" => DATA <= x"00"; when x"592" => DATA <= x"00"; when x"593" => DATA <= x"00"; when x"594" => DATA <= x"44"; when x"595" => DATA <= x"44"; when x"596" => DATA <= x"44"; when x"597" => DATA <= x"3C"; when x"598" => DATA <= x"04"; when x"599" => DATA <= x"38"; when x"59A" => DATA <= x"00"; when x"59B" => DATA <= x"00"; when x"59C" => DATA <= x"00"; when x"59D" => DATA <= x"00"; when x"59E" => DATA <= x"00"; when x"59F" => DATA <= x"00"; when x"5A0" => DATA <= x"00"; when x"5A1" => DATA <= x"00"; when x"5A2" => DATA <= x"00"; when x"5A3" => DATA <= x"00"; when x"5A4" => DATA <= x"7C"; when x"5A5" => DATA <= x"08"; when x"5A6" => DATA <= x"10"; when x"5A7" => DATA <= x"20"; when x"5A8" => DATA <= x"7C"; when x"5A9" => DATA <= x"00"; when x"5AA" => DATA <= x"00"; when x"5AB" => DATA <= x"00"; when x"5AC" => DATA <= x"00"; when x"5AD" => DATA <= x"00"; when x"5AE" => DATA <= x"00"; when x"5AF" => DATA <= x"00"; when x"5B0" => DATA <= x"00"; when x"5B1" => DATA <= x"00"; when x"5B2" => DATA <= x"08"; when x"5B3" => DATA <= x"10"; when x"5B4" => DATA <= x"10"; when x"5B5" => DATA <= x"20"; when x"5B6" => DATA <= x"10"; when x"5B7" => DATA <= x"10"; when x"5B8" => DATA <= x"08"; when x"5B9" => DATA <= x"00"; when x"5BA" => DATA <= x"00"; when x"5BB" => DATA <= x"00"; when x"5BC" => DATA <= x"00"; when x"5BD" => DATA <= x"00"; when x"5BE" => DATA <= x"00"; when x"5BF" => DATA <= x"00"; when x"5C0" => DATA <= x"00"; when x"5C1" => DATA <= x"00"; when x"5C2" => DATA <= x"10"; when x"5C3" => DATA <= x"10"; when x"5C4" => DATA <= x"10"; when x"5C5" => DATA <= x"00"; when x"5C6" => DATA <= x"10"; when x"5C7" => DATA <= x"10"; when x"5C8" => DATA <= x"10"; when x"5C9" => DATA <= x"00"; when x"5CA" => DATA <= x"00"; when x"5CB" => DATA <= x"00"; when x"5CC" => DATA <= x"00"; when x"5CD" => DATA <= x"00"; when x"5CE" => DATA <= x"00"; when x"5CF" => DATA <= x"00"; when x"5D0" => DATA <= x"00"; when x"5D1" => DATA <= x"00"; when x"5D2" => DATA <= x"20"; when x"5D3" => DATA <= x"10"; when x"5D4" => DATA <= x"10"; when x"5D5" => DATA <= x"08"; when x"5D6" => DATA <= x"10"; when x"5D7" => DATA <= x"10"; when x"5D8" => DATA <= x"20"; when x"5D9" => DATA <= x"00"; when x"5DA" => DATA <= x"00"; when x"5DB" => DATA <= x"00"; when x"5DC" => DATA <= x"00"; when x"5DD" => DATA <= x"00"; when x"5DE" => DATA <= x"00"; when x"5DF" => DATA <= x"00"; when x"5E0" => DATA <= x"00"; when x"5E1" => DATA <= x"00"; when x"5E2" => DATA <= x"20"; when x"5E3" => DATA <= x"54"; when x"5E4" => DATA <= x"08"; when x"5E5" => DATA <= x"00"; when x"5E6" => DATA <= x"00"; when x"5E7" => DATA <= x"00"; when x"5E8" => DATA <= x"00"; when x"5E9" => DATA <= x"00"; when x"5EA" => DATA <= x"00"; when x"5EB" => DATA <= x"00"; when x"5EC" => DATA <= x"00"; when x"5ED" => DATA <= x"00"; when x"5EE" => DATA <= x"00"; when x"5EF" => DATA <= x"00"; when x"5F0" => DATA <= x"00"; when x"5F1" => DATA <= x"00"; when x"5F2" => DATA <= x"00"; when x"5F3" => DATA <= x"00"; when x"5F4" => DATA <= x"00"; when x"5F5" => DATA <= x"00"; when x"5F6" => DATA <= x"00"; when x"5F7" => DATA <= x"00"; when x"5F8" => DATA <= x"7C"; when x"5F9" => DATA <= x"00"; when x"5FA" => DATA <= x"00"; when x"5FB" => DATA <= x"00"; when x"5FC" => DATA <= x"00"; when x"5FD" => DATA <= x"00"; when x"5FE" => DATA <= x"00"; when x"5FF" => DATA <= x"00"; when x"600" => DATA <= x"00"; when x"601" => DATA <= x"00"; when x"602" => DATA <= x"00"; when x"603" => DATA <= x"00"; when x"604" => DATA <= x"00"; when x"605" => DATA <= x"00"; when x"606" => DATA <= x"00"; when x"607" => DATA <= x"00"; when x"608" => DATA <= x"00"; when x"609" => DATA <= x"00"; when x"60A" => DATA <= x"00"; when x"60B" => DATA <= x"00"; when x"60C" => DATA <= x"00"; when x"60D" => DATA <= x"00"; when x"60E" => DATA <= x"00"; when x"60F" => DATA <= x"00"; when x"610" => DATA <= x"00"; when x"611" => DATA <= x"00"; when x"612" => DATA <= x"00"; when x"613" => DATA <= x"08"; when x"614" => DATA <= x"00"; when x"615" => DATA <= x"08"; when x"616" => DATA <= x"08"; when x"617" => DATA <= x"08"; when x"618" => DATA <= x"08"; when x"619" => DATA <= x"08"; when x"61A" => DATA <= x"00"; when x"61B" => DATA <= x"00"; when x"61C" => DATA <= x"00"; when x"61D" => DATA <= x"00"; when x"61E" => DATA <= x"00"; when x"61F" => DATA <= x"00"; when x"620" => DATA <= x"00"; when x"621" => DATA <= x"00"; when x"622" => DATA <= x"00"; when x"623" => DATA <= x"00"; when x"624" => DATA <= x"08"; when x"625" => DATA <= x"1C"; when x"626" => DATA <= x"20"; when x"627" => DATA <= x"20"; when x"628" => DATA <= x"20"; when x"629" => DATA <= x"1C"; when x"62A" => DATA <= x"08"; when x"62B" => DATA <= x"00"; when x"62C" => DATA <= x"00"; when x"62D" => DATA <= x"00"; when x"62E" => DATA <= x"00"; when x"62F" => DATA <= x"00"; when x"630" => DATA <= x"00"; when x"631" => DATA <= x"00"; when x"632" => DATA <= x"00"; when x"633" => DATA <= x"0C"; when x"634" => DATA <= x"12"; when x"635" => DATA <= x"10"; when x"636" => DATA <= x"38"; when x"637" => DATA <= x"10"; when x"638" => DATA <= x"10"; when x"639" => DATA <= x"3E"; when x"63A" => DATA <= x"00"; when x"63B" => DATA <= x"00"; when x"63C" => DATA <= x"00"; when x"63D" => DATA <= x"00"; when x"63E" => DATA <= x"00"; when x"63F" => DATA <= x"00"; when x"640" => DATA <= x"00"; when x"641" => DATA <= x"00"; when x"642" => DATA <= x"00"; when x"643" => DATA <= x"00"; when x"644" => DATA <= x"00"; when x"645" => DATA <= x"22"; when x"646" => DATA <= x"1C"; when x"647" => DATA <= x"14"; when x"648" => DATA <= x"1C"; when x"649" => DATA <= x"22"; when x"64A" => DATA <= x"00"; when x"64B" => DATA <= x"00"; when x"64C" => DATA <= x"00"; when x"64D" => DATA <= x"00"; when x"64E" => DATA <= x"00"; when x"64F" => DATA <= x"00"; when x"650" => DATA <= x"00"; when x"651" => DATA <= x"00"; when x"652" => DATA <= x"00"; when x"653" => DATA <= x"22"; when x"654" => DATA <= x"14"; when x"655" => DATA <= x"08"; when x"656" => DATA <= x"3E"; when x"657" => DATA <= x"08"; when x"658" => DATA <= x"3E"; when x"659" => DATA <= x"08"; when x"65A" => DATA <= x"00"; when x"65B" => DATA <= x"00"; when x"65C" => DATA <= x"00"; when x"65D" => DATA <= x"00"; when x"65E" => DATA <= x"00"; when x"65F" => DATA <= x"00"; when x"660" => DATA <= x"00"; when x"661" => DATA <= x"00"; when x"662" => DATA <= x"00"; when x"663" => DATA <= x"08"; when x"664" => DATA <= x"08"; when x"665" => DATA <= x"08"; when x"666" => DATA <= x"00"; when x"667" => DATA <= x"08"; when x"668" => DATA <= x"08"; when x"669" => DATA <= x"08"; when x"66A" => DATA <= x"00"; when x"66B" => DATA <= x"00"; when x"66C" => DATA <= x"00"; when x"66D" => DATA <= x"00"; when x"66E" => DATA <= x"00"; when x"66F" => DATA <= x"00"; when x"670" => DATA <= x"00"; when x"671" => DATA <= x"00"; when x"672" => DATA <= x"00"; when x"673" => DATA <= x"1C"; when x"674" => DATA <= x"20"; when x"675" => DATA <= x"1C"; when x"676" => DATA <= x"22"; when x"677" => DATA <= x"1C"; when x"678" => DATA <= x"02"; when x"679" => DATA <= x"1C"; when x"67A" => DATA <= x"00"; when x"67B" => DATA <= x"00"; when x"67C" => DATA <= x"00"; when x"67D" => DATA <= x"00"; when x"67E" => DATA <= x"00"; when x"67F" => DATA <= x"00"; when x"680" => DATA <= x"14"; when x"681" => DATA <= x"14"; when x"682" => DATA <= x"00"; when x"683" => DATA <= x"00"; when x"684" => DATA <= x"00"; when x"685" => DATA <= x"00"; when x"686" => DATA <= x"00"; when x"687" => DATA <= x"00"; when x"688" => DATA <= x"00"; when x"689" => DATA <= x"00"; when x"68A" => DATA <= x"00"; when x"68B" => DATA <= x"00"; when x"68C" => DATA <= x"00"; when x"68D" => DATA <= x"00"; when x"68E" => DATA <= x"00"; when x"68F" => DATA <= x"00"; when x"690" => DATA <= x"00"; when x"691" => DATA <= x"00"; when x"692" => DATA <= x"3E"; when x"693" => DATA <= x"41"; when x"694" => DATA <= x"5D"; when x"695" => DATA <= x"51"; when x"696" => DATA <= x"51"; when x"697" => DATA <= x"5D"; when x"698" => DATA <= x"41"; when x"699" => DATA <= x"3E"; when x"69A" => DATA <= x"00"; when x"69B" => DATA <= x"00"; when x"69C" => DATA <= x"00"; when x"69D" => DATA <= x"00"; when x"69E" => DATA <= x"00"; when x"69F" => DATA <= x"00"; when x"6A0" => DATA <= x"00"; when x"6A1" => DATA <= x"00"; when x"6A2" => DATA <= x"00"; when x"6A3" => DATA <= x"1C"; when x"6A4" => DATA <= x"02"; when x"6A5" => DATA <= x"1E"; when x"6A6" => DATA <= x"22"; when x"6A7" => DATA <= x"1E"; when x"6A8" => DATA <= x"00"; when x"6A9" => DATA <= x"00"; when x"6AA" => DATA <= x"00"; when x"6AB" => DATA <= x"00"; when x"6AC" => DATA <= x"00"; when x"6AD" => DATA <= x"00"; when x"6AE" => DATA <= x"00"; when x"6AF" => DATA <= x"00"; when x"6B0" => DATA <= x"00"; when x"6B1" => DATA <= x"00"; when x"6B2" => DATA <= x"00"; when x"6B3" => DATA <= x"00"; when x"6B4" => DATA <= x"0A"; when x"6B5" => DATA <= x"14"; when x"6B6" => DATA <= x"28"; when x"6B7" => DATA <= x"14"; when x"6B8" => DATA <= x"0A"; when x"6B9" => DATA <= x"00"; when x"6BA" => DATA <= x"00"; when x"6BB" => DATA <= x"00"; when x"6BC" => DATA <= x"00"; when x"6BD" => DATA <= x"00"; when x"6BE" => DATA <= x"00"; when x"6BF" => DATA <= x"00"; when x"6C0" => DATA <= x"00"; when x"6C1" => DATA <= x"00"; when x"6C2" => DATA <= x"00"; when x"6C3" => DATA <= x"00"; when x"6C4" => DATA <= x"00"; when x"6C5" => DATA <= x"00"; when x"6C6" => DATA <= x"3E"; when x"6C7" => DATA <= x"02"; when x"6C8" => DATA <= x"02"; when x"6C9" => DATA <= x"00"; when x"6CA" => DATA <= x"00"; when x"6CB" => DATA <= x"00"; when x"6CC" => DATA <= x"00"; when x"6CD" => DATA <= x"00"; when x"6CE" => DATA <= x"00"; when x"6CF" => DATA <= x"00"; when x"6D0" => DATA <= x"00"; when x"6D1" => DATA <= x"00"; when x"6D2" => DATA <= x"00"; when x"6D3" => DATA <= x"00"; when x"6D4" => DATA <= x"00"; when x"6D5" => DATA <= x"00"; when x"6D6" => DATA <= x"3E"; when x"6D7" => DATA <= x"00"; when x"6D8" => DATA <= x"00"; when x"6D9" => DATA <= x"00"; when x"6DA" => DATA <= x"00"; when x"6DB" => DATA <= x"00"; when x"6DC" => DATA <= x"00"; when x"6DD" => DATA <= x"00"; when x"6DE" => DATA <= x"00"; when x"6DF" => DATA <= x"00"; when x"6E0" => DATA <= x"00"; when x"6E1" => DATA <= x"00"; when x"6E2" => DATA <= x"3E"; when x"6E3" => DATA <= x"41"; when x"6E4" => DATA <= x"5D"; when x"6E5" => DATA <= x"55"; when x"6E6" => DATA <= x"59"; when x"6E7" => DATA <= x"55"; when x"6E8" => DATA <= x"41"; when x"6E9" => DATA <= x"3E"; when x"6EA" => DATA <= x"00"; when x"6EB" => DATA <= x"00"; when x"6EC" => DATA <= x"00"; when x"6ED" => DATA <= x"00"; when x"6EE" => DATA <= x"00"; when x"6EF" => DATA <= x"00"; when x"6F0" => DATA <= x"00"; when x"6F1" => DATA <= x"00"; when x"6F2" => DATA <= x"00"; when x"6F3" => DATA <= x"7E"; when x"6F4" => DATA <= x"00"; when x"6F5" => DATA <= x"00"; when x"6F6" => DATA <= x"00"; when x"6F7" => DATA <= x"00"; when x"6F8" => DATA <= x"00"; when x"6F9" => DATA <= x"00"; when x"6FA" => DATA <= x"00"; when x"6FB" => DATA <= x"00"; when x"6FC" => DATA <= x"00"; when x"6FD" => DATA <= x"00"; when x"6FE" => DATA <= x"00"; when x"6FF" => DATA <= x"00"; when x"700" => DATA <= x"00"; when x"701" => DATA <= x"00"; when x"702" => DATA <= x"00"; when x"703" => DATA <= x"10"; when x"704" => DATA <= x"28"; when x"705" => DATA <= x"10"; when x"706" => DATA <= x"00"; when x"707" => DATA <= x"00"; when x"708" => DATA <= x"00"; when x"709" => DATA <= x"00"; when x"70A" => DATA <= x"00"; when x"70B" => DATA <= x"00"; when x"70C" => DATA <= x"00"; when x"70D" => DATA <= x"00"; when x"70E" => DATA <= x"00"; when x"70F" => DATA <= x"00"; when x"710" => DATA <= x"00"; when x"711" => DATA <= x"00"; when x"712" => DATA <= x"08"; when x"713" => DATA <= x"08"; when x"714" => DATA <= x"3E"; when x"715" => DATA <= x"08"; when x"716" => DATA <= x"08"; when x"717" => DATA <= x"00"; when x"718" => DATA <= x"3E"; when x"719" => DATA <= x"00"; when x"71A" => DATA <= x"00"; when x"71B" => DATA <= x"00"; when x"71C" => DATA <= x"00"; when x"71D" => DATA <= x"00"; when x"71E" => DATA <= x"00"; when x"71F" => DATA <= x"00"; when x"720" => DATA <= x"00"; when x"721" => DATA <= x"00"; when x"722" => DATA <= x"00"; when x"723" => DATA <= x"18"; when x"724" => DATA <= x"04"; when x"725" => DATA <= x"08"; when x"726" => DATA <= x"10"; when x"727" => DATA <= x"1C"; when x"728" => DATA <= x"00"; when x"729" => DATA <= x"00"; when x"72A" => DATA <= x"00"; when x"72B" => DATA <= x"00"; when x"72C" => DATA <= x"00"; when x"72D" => DATA <= x"00"; when x"72E" => DATA <= x"00"; when x"72F" => DATA <= x"00"; when x"730" => DATA <= x"00"; when x"731" => DATA <= x"00"; when x"732" => DATA <= x"00"; when x"733" => DATA <= x"18"; when x"734" => DATA <= x"04"; when x"735" => DATA <= x"18"; when x"736" => DATA <= x"04"; when x"737" => DATA <= x"18"; when x"738" => DATA <= x"00"; when x"739" => DATA <= x"00"; when x"73A" => DATA <= x"00"; when x"73B" => DATA <= x"00"; when x"73C" => DATA <= x"00"; when x"73D" => DATA <= x"00"; when x"73E" => DATA <= x"00"; when x"73F" => DATA <= x"00"; when x"740" => DATA <= x"04"; when x"741" => DATA <= x"08"; when x"742" => DATA <= x"00"; when x"743" => DATA <= x"00"; when x"744" => DATA <= x"00"; when x"745" => DATA <= x"00"; when x"746" => DATA <= x"00"; when x"747" => DATA <= x"00"; when x"748" => DATA <= x"00"; when x"749" => DATA <= x"00"; when x"74A" => DATA <= x"00"; when x"74B" => DATA <= x"00"; when x"74C" => DATA <= x"00"; when x"74D" => DATA <= x"00"; when x"74E" => DATA <= x"00"; when x"74F" => DATA <= x"00"; when x"750" => DATA <= x"00"; when x"751" => DATA <= x"00"; when x"752" => DATA <= x"00"; when x"753" => DATA <= x"00"; when x"754" => DATA <= x"00"; when x"755" => DATA <= x"12"; when x"756" => DATA <= x"12"; when x"757" => DATA <= x"12"; when x"758" => DATA <= x"12"; when x"759" => DATA <= x"1C"; when x"75A" => DATA <= x"10"; when x"75B" => DATA <= x"20"; when x"75C" => DATA <= x"00"; when x"75D" => DATA <= x"00"; when x"75E" => DATA <= x"00"; when x"75F" => DATA <= x"00"; when x"760" => DATA <= x"00"; when x"761" => DATA <= x"00"; when x"762" => DATA <= x"00"; when x"763" => DATA <= x"1A"; when x"764" => DATA <= x"2A"; when x"765" => DATA <= x"2A"; when x"766" => DATA <= x"1A"; when x"767" => DATA <= x"0A"; when x"768" => DATA <= x"0A"; when x"769" => DATA <= x"0A"; when x"76A" => DATA <= x"00"; when x"76B" => DATA <= x"00"; when x"76C" => DATA <= x"00"; when x"76D" => DATA <= x"00"; when x"76E" => DATA <= x"00"; when x"76F" => DATA <= x"00"; when x"770" => DATA <= x"00"; when x"771" => DATA <= x"00"; when x"772" => DATA <= x"00"; when x"773" => DATA <= x"00"; when x"774" => DATA <= x"00"; when x"775" => DATA <= x"00"; when x"776" => DATA <= x"18"; when x"777" => DATA <= x"18"; when x"778" => DATA <= x"00"; when x"779" => DATA <= x"00"; when x"77A" => DATA <= x"00"; when x"77B" => DATA <= x"00"; when x"77C" => DATA <= x"00"; when x"77D" => DATA <= x"00"; when x"77E" => DATA <= x"00"; when x"77F" => DATA <= x"00"; when x"780" => DATA <= x"00"; when x"781" => DATA <= x"00"; when x"782" => DATA <= x"00"; when x"783" => DATA <= x"00"; when x"784" => DATA <= x"00"; when x"785" => DATA <= x"00"; when x"786" => DATA <= x"00"; when x"787" => DATA <= x"00"; when x"788" => DATA <= x"00"; when x"789" => DATA <= x"00"; when x"78A" => DATA <= x"04"; when x"78B" => DATA <= x"18"; when x"78C" => DATA <= x"00"; when x"78D" => DATA <= x"00"; when x"78E" => DATA <= x"00"; when x"78F" => DATA <= x"00"; when x"790" => DATA <= x"00"; when x"791" => DATA <= x"00"; when x"792" => DATA <= x"00"; when x"793" => DATA <= x"08"; when x"794" => DATA <= x"18"; when x"795" => DATA <= x"08"; when x"796" => DATA <= x"08"; when x"797" => DATA <= x"1C"; when x"798" => DATA <= x"00"; when x"799" => DATA <= x"00"; when x"79A" => DATA <= x"00"; when x"79B" => DATA <= x"00"; when x"79C" => DATA <= x"00"; when x"79D" => DATA <= x"00"; when x"79E" => DATA <= x"00"; when x"79F" => DATA <= x"00"; when x"7A0" => DATA <= x"00"; when x"7A1" => DATA <= x"00"; when x"7A2" => DATA <= x"00"; when x"7A3" => DATA <= x"1C"; when x"7A4" => DATA <= x"22"; when x"7A5" => DATA <= x"22"; when x"7A6" => DATA <= x"22"; when x"7A7" => DATA <= x"1C"; when x"7A8" => DATA <= x"00"; when x"7A9" => DATA <= x"00"; when x"7AA" => DATA <= x"00"; when x"7AB" => DATA <= x"00"; when x"7AC" => DATA <= x"00"; when x"7AD" => DATA <= x"00"; when x"7AE" => DATA <= x"00"; when x"7AF" => DATA <= x"00"; when x"7B0" => DATA <= x"00"; when x"7B1" => DATA <= x"00"; when x"7B2" => DATA <= x"00"; when x"7B3" => DATA <= x"00"; when x"7B4" => DATA <= x"28"; when x"7B5" => DATA <= x"14"; when x"7B6" => DATA <= x"0A"; when x"7B7" => DATA <= x"14"; when x"7B8" => DATA <= x"28"; when x"7B9" => DATA <= x"00"; when x"7BA" => DATA <= x"00"; when x"7BB" => DATA <= x"00"; when x"7BC" => DATA <= x"00"; when x"7BD" => DATA <= x"00"; when x"7BE" => DATA <= x"00"; when x"7BF" => DATA <= x"00"; when x"7C0" => DATA <= x"00"; when x"7C1" => DATA <= x"00"; when x"7C2" => DATA <= x"00"; when x"7C3" => DATA <= x"20"; when x"7C4" => DATA <= x"20"; when x"7C5" => DATA <= x"20"; when x"7C6" => DATA <= x"22"; when x"7C7" => DATA <= x"06"; when x"7C8" => DATA <= x"0E"; when x"7C9" => DATA <= x"02"; when x"7CA" => DATA <= x"00"; when x"7CB" => DATA <= x"00"; when x"7CC" => DATA <= x"00"; when x"7CD" => DATA <= x"00"; when x"7CE" => DATA <= x"00"; when x"7CF" => DATA <= x"00"; when x"7D0" => DATA <= x"00"; when x"7D1" => DATA <= x"00"; when x"7D2" => DATA <= x"00"; when x"7D3" => DATA <= x"20"; when x"7D4" => DATA <= x"20"; when x"7D5" => DATA <= x"20"; when x"7D6" => DATA <= x"2E"; when x"7D7" => DATA <= x"02"; when x"7D8" => DATA <= x"04"; when x"7D9" => DATA <= x"0E"; when x"7DA" => DATA <= x"00"; when x"7DB" => DATA <= x"00"; when x"7DC" => DATA <= x"00"; when x"7DD" => DATA <= x"00"; when x"7DE" => DATA <= x"00"; when x"7DF" => DATA <= x"00"; when x"7E0" => DATA <= x"00"; when x"7E1" => DATA <= x"00"; when x"7E2" => DATA <= x"00"; when x"7E3" => DATA <= x"70"; when x"7E4" => DATA <= x"10"; when x"7E5" => DATA <= x"70"; when x"7E6" => DATA <= x"12"; when x"7E7" => DATA <= x"76"; when x"7E8" => DATA <= x"0E"; when x"7E9" => DATA <= x"02"; when x"7EA" => DATA <= x"00"; when x"7EB" => DATA <= x"00"; when x"7EC" => DATA <= x"00"; when x"7ED" => DATA <= x"00"; when x"7EE" => DATA <= x"00"; when x"7EF" => DATA <= x"00"; when x"7F0" => DATA <= x"00"; when x"7F1" => DATA <= x"00"; when x"7F2" => DATA <= x"00"; when x"7F3" => DATA <= x"08"; when x"7F4" => DATA <= x"00"; when x"7F5" => DATA <= x"08"; when x"7F6" => DATA <= x"08"; when x"7F7" => DATA <= x"10"; when x"7F8" => DATA <= x"12"; when x"7F9" => DATA <= x"0C"; when others => DATA <= (others => '0'); end case; end process; end RTL;
-- EMACS settings: -*- tab-width: 2; indent-tabs-mode: t -*- -- vim: tabstop=2:shiftwidth=2:noexpandtab -- kate: tab-width 2; replace-tabs off; indent-width 2; -- -- ============================================================================= -- Authors: Thomas B. Preusser -- -- Entity: arith_addw_xilinx -- -- Description: -- ------------------------------------ -- Implements wide addition providing several options all based -- on an adaptation of a carry-select approach. -- -- Xilinx-specific optimizations. -- -- References: -- * Hong Diep Nguyen and Bogdan Pasca and Thomas B. Preusser: -- FPGA-Specific Arithmetic Optimizations of Short-Latency Adders, -- FPL 2011. -- -> ARCH: AAM, CAI, CCA -- -> SKIPPING: CCC -- -- * Marcin Rogawski, Kris Gaj and Ekawat Homsirikamol: -- A Novel Modular Adder for One Thousand Bits and More -- Using Fast Carry Chains of Modern FPGAs, FPL 2014. -- -> ARCH: PAI -- -> SKIPPING: PPN_KS, PPN_BK -- -- License: -- ============================================================================= -- Copyright 2007-2015 Technische Universitaet Dresden - Germany -- Chair for VLSI-Design, Diagnostics and Architecture -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. -- ============================================================================= library IEEE; use IEEE.std_logic_1164.all; library PoC; use PoC.arith.all; entity arith_addw_xilinx is generic ( N : positive; -- Operand Width K : positive; -- Block Count ARCH : tArch := CAI; -- Architecture BLOCKING : tBlocking := DFLT; -- Blocking Scheme SKIPPING : tSkipping := CCC -- Carry Skip Scheme ); port ( a, b : in std_logic_vector(N-1 downto 0); cin : in std_logic; s : out std_logic_vector(N-1 downto 0); cout : out std_logic ); end entity; use std.textio.all; library IEEE; use IEEE.numeric_std.all; library UNISIM; use UNISIM.vcomponents.all; library PoC; use PoC.utils.all; architecture rtl of arith_addw_xilinx is -- Determine Block Boundaries type tBlocking_vector is array(tArch) of tBlocking; constant DEFAULT_BLOCKING : tBlocking_vector := (AAM => ASC, CAI => ASC, PAI => DESC, CCA => DESC); type integer_vector is array(natural range<>) of integer; function compute_blocks return integer_vector is variable bs : tBlocking := BLOCKING; variable res : integer_vector(K-1 downto 0); variable l : line; begin if bs = DFLT then bs := DEFAULT_BLOCKING(ARCH); end if; case bs is when FIX => assert N >= K report "Cannot have more blocks than input bits." severity failure; for i in res'range loop res(i) := ((i+1)*N+K/2)/K; end loop; when ASC => assert N-K*(K-1)/2 >= K report "Too few input bits to implement growing block sizes." severity failure; for i in res'range loop res(i) := ((i+1)*(N-K*(K-1)/2)+K/2)/K + (i+1)*i/2; end loop; when DESC => assert N-K*(K-1)/2 >= K report "Too few input bits to implement growing block sizes." severity failure; for i in res'range loop res(i) := ((i+1)*(N+K*(K-1)/2)+K/2)/K - (i+1)*i/2; end loop; when others => report "Unknown blocking scheme: "&tBlocking'image(bs) severity failure; end case; --synthesis translate_off write(l, "Implementing "&integer'image(N)&"-bit wide adder: ARCH="&tArch'image(ARCH)& ", BLOCKING="&tBlocking'image(bs)&'['); for i in K-1 downto 1 loop write(l, res(i)-res(i-1)); write(l, ','); end loop; write(l, res(0)); write(l, "], SKIPPING="&tSkipping'image(SKIPPING)); writeline(output, l); --synthesis translate_on return res; end compute_blocks; constant BLOCKS : integer_vector(K-1 downto 0) := compute_blocks; signal g : std_logic_vector(K-1 downto 1); -- Block Generate signal p : std_logic_vector(K-1 downto 1); -- Block Propagate signal c : std_logic_vector(K-1 downto 1); -- Block Carry-in begin ----------------------------------------------------------------------------- -- Rightmost Block and Core Carry Chain blkCore: block constant M : positive := BLOCKS(0); -- Rightmost Block Width signal cc : std_logic_vector(K+M-1 downto 0); begin cc(0) <= cin; -- Rightmost Block genChain: for i in 0 to M-1 generate signal pp : std_logic; begin pp <= a(i) xor b(i); cc_mux: MUXCY port map ( O => cc(i+1), CI => cc(i), DI => a(i), S => pp ); cc_xor: XORCY port map ( O => s(i), CI => cc(i), LI => pp ); end generate genChain; -- Carry Computation with Carry Chain genCCC: if SKIPPING = CCC generate genChain: for i in 1 to K-1 generate cc_mux: MUXCY port map ( O => cc(M+i), CI => cc(M+i-1), DI => g(i), S => p(i) ); end generate genChain; end generate genCCC; -- Plain linear LUT-based Carry Forwarding genPlain: if SKIPPING = PLAIN generate cc(cc'left downto M+1) <= g or (p and cc(K+M-2 downto M)); end generate genPlain; -- Kogge-Stone Parallel Prefix Network genPPN_KS: if SKIPPING = PPN_KS generate subtype tLevel is std_logic_vector(K-1 downto 0); type tLevels is array(natural range<>) of tLevel; constant LEVELS : positive := log2ceil(K); signal pp, gg : tLevels(0 to LEVELS); begin -- carry forwarding pp(0) <= p & 'X'; gg(0) <= g & cc(M); genLevels: for i in 1 to LEVELS generate constant D : positive := 2**(i-1); begin pp(i) <= (pp(i-1)(K-1 downto D) and pp(i-1)(K-D-1 downto 0)) & pp(i-1)(D-1 downto 0); gg(i) <= (gg(i-1)(K-1 downto D) or (pp(i-1)(K-1 downto D) and gg(i-1)(K-D-1 downto 0))) & gg(i-1)(D-1 downto 0); end generate genLevels; cc(cc'left downto M+1) <= gg(gg'high)(K-1 downto 1); end generate genPPN_KS; -- Brent-Kung Parallel Prefix Network genPPN_BK: if SKIPPING = PPN_BK generate subtype tLevel is std_logic_vector(K-1 downto 0); type tLevels is array(natural range<>) of tLevel; constant LEVELS : positive := log2ceil(K); signal pp, gg : tLevels(0 to 2*LEVELS-1); begin -- carry forwarding pp(0) <= p & 'X'; gg(0) <= g & cc(M); genMerge: for i in 1 to LEVELS generate constant D : positive := 2**(i-1); begin genBits: for j in 0 to K-1 generate genOp: if j mod (2*D) = 2*D-1 generate gg(i)(j) <= (pp(i-1)(j) and gg(i-1)(j-D)) or gg(i-1)(j); pp(i)(j) <= pp(i-1)(j) and pp(i-1)(j-D); end generate; genCp: if j mod (2*D) /= 2*D-1 generate gg(i)(j) <= gg(i-1)(j); pp(i)(j) <= pp(i-1)(j); end generate; end generate; end generate genMerge; genSpread: for i in LEVELS+1 to 2*LEVELS-1 generate constant D : positive := 2**(2*LEVELS-i-1); begin genBits: for j in 0 to K-1 generate genOp: if j > D and (j+1) mod (2*D) = D generate gg(i)(j) <= (pp(i-1)(j) and gg(i-1)(j-D)) or gg(i-1)(j); pp(i)(j) <= pp(i-1)(j) and pp(i-1)(j-D); end generate; genCp: if j <= D or (j+1) mod (2*D) /= D generate gg(i)(j) <= gg(i-1)(j); pp(i)(j) <= pp(i-1)(j); end generate; end generate; end generate genSpread; cc(cc'left downto M+1) <= gg(gg'high)(K-1 downto 1); end generate genPPN_BK; c <= cc(K+M-2 downto M); cout <= cc(cc'left); end block blkCore; ----------------------------------------------------------------------------- -- Implement Carry-Select Variant -- -- all but rightmost block, implementation architecture selected by ARCH genBlocks: for i in 1 to K-1 generate -- Covered Index Range constant LO : positive := BLOCKS(i-1); -- Low Bit Index constant HI : positive := BLOCKS(i)-1; -- High Bit Index begin -- ARCH-specific Implementations --Add-Add-Multiplex genAAM: if ARCH = AAM generate signal c0 : std_logic_vector(HI+1 downto LO); signal c1 : std_logic_vector(HI+1 downto LO); begin c0(LO) <= '0'; c1(LO) <= '1'; genChain: for j in LO to HI generate signal p0, s0 : std_logic; signal p1, s1 : std_logic; begin p0 <= a(j) xor b(j); -- Computation of (c0, s0) c0_mux: MUXCY port map ( O => c0(j+1), CI => c0(j), DI => a(j), S => p0 ); c0_xor: XORCY port map ( O => s0, CI => c0(j), LI => p0 ); -- Computation of (c1, s1) and Block Sum c1_lut: LUT6_2 generic map ( INIT => x"66666666_FF00F0F0" ) port map ( O6 => p1, O5 => s(j), I5 => '1', I4 => c(i), I3 => s1, I2 => s0, I1 => b(j), I0 => a(j) ); c1_mux: MUXCY port map ( O => c1(j+1), CI => c1(j), DI => a(j), S => p1 ); c1_xor: XORCY port map ( O => s1, CI => c1(j), LI => p1 ); end generate genChain; g(i) <= c0(HI+1); p(i) <= c1(HI+1) xor c0(HI+1); end generate genAAM; -- Compare-Add-Increment genCAI: if ARCH = CAI generate constant MD : natural := (HI-LO+1)/2; -- Full double blocks constant MR : natural := HI-LO+1 - 2*MD; -- Single closing block signal c0 : std_logic_vector(HI+1 downto LO); signal pp : std_logic_vector(MR+MD downto 0); -- Cumulative Propagates begin -- Computation of P and s c0(LO) <= '0'; pp(0) <= '1'; genDoubles: for j in 0 to MD-1 generate constant BASE : natural := LO + 2*j; signal pl, pr : std_logic; -- Left / right propagates signal sl, sr : std_logic; -- Left / right sum bits signal pd : std_logic; -- Joint propagate begin -- Sum Bit Computations ps_lut_r: LUT6_2 generic map ( INIT => x"66666666_9F60FF00" ) port map ( O6 => pr, O5 => s(BASE+1), I5 => '1', I4 => c(i), I3 => sl, I2 => pp(j), I1 => b(BASE), I0 => a(BASE) ); ps_lut_l: LUT6_2 generic map ( INIT => x"66666666_0FF0FF00" ) port map ( O6 => pl, O5 => s(BASE), I5 => '1', I4 => c(i), I3 => sr, I2 => pp(j), I1 => b(BASE+1), I0 => a(BASE+1) ); c0_mux_r: MUXCY port map ( O => c0(BASE+1), CI => c0(BASE), DI => a(BASE), S => pr ); c0_mux_l: MUXCY port map ( O => c0(BASE+2), CI => c0(BASE+1), DI => a(BASE+1), S => pl ); genLSB: if j = 0 generate sr <= pr; end generate; genHSB: if j > 0 generate s0_xor_r: XORCY port map ( O => sr, CI => c0(BASE), LI => pr ); end generate; s0_xor_l: XORCY port map ( O => sl, CI => c0(BASE+1), LI => pl ); -- Propagate Chain pd <= (a(BASE+1) xor b(BASE+1)) and (a(BASE) xor b(BASE)); pp_mux: MUXCY port map ( O => pp(j+1), CI => pp(j), DI => '0', S => pd ); end generate genDoubles; genLast: if MR > 0 generate constant BASE : natural := LO+2*MD; signal p, s0 : std_logic; begin ps_lut_l: LUT6_2 generic map ( INIT => x"66666666_0FF0FF00" ) port map ( O6 => p, O5 => s(BASE), I5 => '1', I4 => c(i), I3 => s0, I2 => pp(MD), I1 => b(BASE), I0 => a(BASE) ); c0_mux: MUXCY port map ( O => c0(BASE+1), CI => c0(BASE), DI => a(BASE), S => p ); s0_xor: XORCY port map ( O => s0, CI => c0(BASE), LI => p ); -- Let synthesis merge it into carry computation pp(pp'left) <= (a(BASE) xor b(BASE)) and pp(MD); end generate genLast; g(i) <= c0(c0'left); p(i) <= pp(pp'left); end generate genCAI; genCCA: if ARCH = CCA generate constant M : positive := HI-LO+1; constant D : positive := M/2; constant H : positive := (D+5)/6; signal pl : std_logic_vector(M-D-1 downto 0); signal pc : std_logic_vector(M-D downto 0); begin pc(0) <= '0'; genDoubles: for j in 0 to D-1 generate signal gl : std_logic; begin gp_lut: LUT6_2 generic map ( INIT => x"12480000_EE880000" ) port map ( O6 => pl(j), O5 => gl, I5 => '1', I4 => '1', I3 => a(LO+2*j+1), I2 => a(LO+2*j), I1 => b(LO+2*j+1), I0 => b(LO+2*j) ); c0_mux: MUXCY port map ( O => pc(j+1), CI => pc(j), DI => gl, S => pl(j) ); end generate genDoubles; genOdd: if M-D > D generate pl(D) <= a(HI) xnor b(HI); pc(D+1) <= pl(D) and pc(D); end generate genOdd; g(i) <= pc(pc'left); p(i) <= 'X' when Is_X(pl) else '1' when pl = (pl'range => '1') else '0'; s(HI downto LO) <= std_logic_vector(unsigned(a(HI downto LO)) + unsigned(b(HI downto LO)) + (0 to 0 => c(i))); end generate genCCA; end generate genBlocks; end architecture;
-- EMACS settings: -*- tab-width: 2; indent-tabs-mode: t -*- -- vim: tabstop=2:shiftwidth=2:noexpandtab -- kate: tab-width 2; replace-tabs off; indent-width 2; -- -- ============================================================================= -- Authors: Thomas B. Preusser -- -- Entity: arith_addw_xilinx -- -- Description: -- ------------------------------------ -- Implements wide addition providing several options all based -- on an adaptation of a carry-select approach. -- -- Xilinx-specific optimizations. -- -- References: -- * Hong Diep Nguyen and Bogdan Pasca and Thomas B. Preusser: -- FPGA-Specific Arithmetic Optimizations of Short-Latency Adders, -- FPL 2011. -- -> ARCH: AAM, CAI, CCA -- -> SKIPPING: CCC -- -- * Marcin Rogawski, Kris Gaj and Ekawat Homsirikamol: -- A Novel Modular Adder for One Thousand Bits and More -- Using Fast Carry Chains of Modern FPGAs, FPL 2014. -- -> ARCH: PAI -- -> SKIPPING: PPN_KS, PPN_BK -- -- License: -- ============================================================================= -- Copyright 2007-2015 Technische Universitaet Dresden - Germany -- Chair for VLSI-Design, Diagnostics and Architecture -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. -- ============================================================================= library IEEE; use IEEE.std_logic_1164.all; library PoC; use PoC.arith.all; entity arith_addw_xilinx is generic ( N : positive; -- Operand Width K : positive; -- Block Count ARCH : tArch := CAI; -- Architecture BLOCKING : tBlocking := DFLT; -- Blocking Scheme SKIPPING : tSkipping := CCC -- Carry Skip Scheme ); port ( a, b : in std_logic_vector(N-1 downto 0); cin : in std_logic; s : out std_logic_vector(N-1 downto 0); cout : out std_logic ); end entity; use std.textio.all; library IEEE; use IEEE.numeric_std.all; library UNISIM; use UNISIM.vcomponents.all; library PoC; use PoC.utils.all; architecture rtl of arith_addw_xilinx is -- Determine Block Boundaries type tBlocking_vector is array(tArch) of tBlocking; constant DEFAULT_BLOCKING : tBlocking_vector := (AAM => ASC, CAI => ASC, PAI => DESC, CCA => DESC); type integer_vector is array(natural range<>) of integer; function compute_blocks return integer_vector is variable bs : tBlocking := BLOCKING; variable res : integer_vector(K-1 downto 0); variable l : line; begin if bs = DFLT then bs := DEFAULT_BLOCKING(ARCH); end if; case bs is when FIX => assert N >= K report "Cannot have more blocks than input bits." severity failure; for i in res'range loop res(i) := ((i+1)*N+K/2)/K; end loop; when ASC => assert N-K*(K-1)/2 >= K report "Too few input bits to implement growing block sizes." severity failure; for i in res'range loop res(i) := ((i+1)*(N-K*(K-1)/2)+K/2)/K + (i+1)*i/2; end loop; when DESC => assert N-K*(K-1)/2 >= K report "Too few input bits to implement growing block sizes." severity failure; for i in res'range loop res(i) := ((i+1)*(N+K*(K-1)/2)+K/2)/K - (i+1)*i/2; end loop; when others => report "Unknown blocking scheme: "&tBlocking'image(bs) severity failure; end case; --synthesis translate_off write(l, "Implementing "&integer'image(N)&"-bit wide adder: ARCH="&tArch'image(ARCH)& ", BLOCKING="&tBlocking'image(bs)&'['); for i in K-1 downto 1 loop write(l, res(i)-res(i-1)); write(l, ','); end loop; write(l, res(0)); write(l, "], SKIPPING="&tSkipping'image(SKIPPING)); writeline(output, l); --synthesis translate_on return res; end compute_blocks; constant BLOCKS : integer_vector(K-1 downto 0) := compute_blocks; signal g : std_logic_vector(K-1 downto 1); -- Block Generate signal p : std_logic_vector(K-1 downto 1); -- Block Propagate signal c : std_logic_vector(K-1 downto 1); -- Block Carry-in begin ----------------------------------------------------------------------------- -- Rightmost Block and Core Carry Chain blkCore: block constant M : positive := BLOCKS(0); -- Rightmost Block Width signal cc : std_logic_vector(K+M-1 downto 0); begin cc(0) <= cin; -- Rightmost Block genChain: for i in 0 to M-1 generate signal pp : std_logic; begin pp <= a(i) xor b(i); cc_mux: MUXCY port map ( O => cc(i+1), CI => cc(i), DI => a(i), S => pp ); cc_xor: XORCY port map ( O => s(i), CI => cc(i), LI => pp ); end generate genChain; -- Carry Computation with Carry Chain genCCC: if SKIPPING = CCC generate genChain: for i in 1 to K-1 generate cc_mux: MUXCY port map ( O => cc(M+i), CI => cc(M+i-1), DI => g(i), S => p(i) ); end generate genChain; end generate genCCC; -- Plain linear LUT-based Carry Forwarding genPlain: if SKIPPING = PLAIN generate cc(cc'left downto M+1) <= g or (p and cc(K+M-2 downto M)); end generate genPlain; -- Kogge-Stone Parallel Prefix Network genPPN_KS: if SKIPPING = PPN_KS generate subtype tLevel is std_logic_vector(K-1 downto 0); type tLevels is array(natural range<>) of tLevel; constant LEVELS : positive := log2ceil(K); signal pp, gg : tLevels(0 to LEVELS); begin -- carry forwarding pp(0) <= p & 'X'; gg(0) <= g & cc(M); genLevels: for i in 1 to LEVELS generate constant D : positive := 2**(i-1); begin pp(i) <= (pp(i-1)(K-1 downto D) and pp(i-1)(K-D-1 downto 0)) & pp(i-1)(D-1 downto 0); gg(i) <= (gg(i-1)(K-1 downto D) or (pp(i-1)(K-1 downto D) and gg(i-1)(K-D-1 downto 0))) & gg(i-1)(D-1 downto 0); end generate genLevels; cc(cc'left downto M+1) <= gg(gg'high)(K-1 downto 1); end generate genPPN_KS; -- Brent-Kung Parallel Prefix Network genPPN_BK: if SKIPPING = PPN_BK generate subtype tLevel is std_logic_vector(K-1 downto 0); type tLevels is array(natural range<>) of tLevel; constant LEVELS : positive := log2ceil(K); signal pp, gg : tLevels(0 to 2*LEVELS-1); begin -- carry forwarding pp(0) <= p & 'X'; gg(0) <= g & cc(M); genMerge: for i in 1 to LEVELS generate constant D : positive := 2**(i-1); begin genBits: for j in 0 to K-1 generate genOp: if j mod (2*D) = 2*D-1 generate gg(i)(j) <= (pp(i-1)(j) and gg(i-1)(j-D)) or gg(i-1)(j); pp(i)(j) <= pp(i-1)(j) and pp(i-1)(j-D); end generate; genCp: if j mod (2*D) /= 2*D-1 generate gg(i)(j) <= gg(i-1)(j); pp(i)(j) <= pp(i-1)(j); end generate; end generate; end generate genMerge; genSpread: for i in LEVELS+1 to 2*LEVELS-1 generate constant D : positive := 2**(2*LEVELS-i-1); begin genBits: for j in 0 to K-1 generate genOp: if j > D and (j+1) mod (2*D) = D generate gg(i)(j) <= (pp(i-1)(j) and gg(i-1)(j-D)) or gg(i-1)(j); pp(i)(j) <= pp(i-1)(j) and pp(i-1)(j-D); end generate; genCp: if j <= D or (j+1) mod (2*D) /= D generate gg(i)(j) <= gg(i-1)(j); pp(i)(j) <= pp(i-1)(j); end generate; end generate; end generate genSpread; cc(cc'left downto M+1) <= gg(gg'high)(K-1 downto 1); end generate genPPN_BK; c <= cc(K+M-2 downto M); cout <= cc(cc'left); end block blkCore; ----------------------------------------------------------------------------- -- Implement Carry-Select Variant -- -- all but rightmost block, implementation architecture selected by ARCH genBlocks: for i in 1 to K-1 generate -- Covered Index Range constant LO : positive := BLOCKS(i-1); -- Low Bit Index constant HI : positive := BLOCKS(i)-1; -- High Bit Index begin -- ARCH-specific Implementations --Add-Add-Multiplex genAAM: if ARCH = AAM generate signal c0 : std_logic_vector(HI+1 downto LO); signal c1 : std_logic_vector(HI+1 downto LO); begin c0(LO) <= '0'; c1(LO) <= '1'; genChain: for j in LO to HI generate signal p0, s0 : std_logic; signal p1, s1 : std_logic; begin p0 <= a(j) xor b(j); -- Computation of (c0, s0) c0_mux: MUXCY port map ( O => c0(j+1), CI => c0(j), DI => a(j), S => p0 ); c0_xor: XORCY port map ( O => s0, CI => c0(j), LI => p0 ); -- Computation of (c1, s1) and Block Sum c1_lut: LUT6_2 generic map ( INIT => x"66666666_FF00F0F0" ) port map ( O6 => p1, O5 => s(j), I5 => '1', I4 => c(i), I3 => s1, I2 => s0, I1 => b(j), I0 => a(j) ); c1_mux: MUXCY port map ( O => c1(j+1), CI => c1(j), DI => a(j), S => p1 ); c1_xor: XORCY port map ( O => s1, CI => c1(j), LI => p1 ); end generate genChain; g(i) <= c0(HI+1); p(i) <= c1(HI+1) xor c0(HI+1); end generate genAAM; -- Compare-Add-Increment genCAI: if ARCH = CAI generate constant MD : natural := (HI-LO+1)/2; -- Full double blocks constant MR : natural := HI-LO+1 - 2*MD; -- Single closing block signal c0 : std_logic_vector(HI+1 downto LO); signal pp : std_logic_vector(MR+MD downto 0); -- Cumulative Propagates begin -- Computation of P and s c0(LO) <= '0'; pp(0) <= '1'; genDoubles: for j in 0 to MD-1 generate constant BASE : natural := LO + 2*j; signal pl, pr : std_logic; -- Left / right propagates signal sl, sr : std_logic; -- Left / right sum bits signal pd : std_logic; -- Joint propagate begin -- Sum Bit Computations ps_lut_r: LUT6_2 generic map ( INIT => x"66666666_9F60FF00" ) port map ( O6 => pr, O5 => s(BASE+1), I5 => '1', I4 => c(i), I3 => sl, I2 => pp(j), I1 => b(BASE), I0 => a(BASE) ); ps_lut_l: LUT6_2 generic map ( INIT => x"66666666_0FF0FF00" ) port map ( O6 => pl, O5 => s(BASE), I5 => '1', I4 => c(i), I3 => sr, I2 => pp(j), I1 => b(BASE+1), I0 => a(BASE+1) ); c0_mux_r: MUXCY port map ( O => c0(BASE+1), CI => c0(BASE), DI => a(BASE), S => pr ); c0_mux_l: MUXCY port map ( O => c0(BASE+2), CI => c0(BASE+1), DI => a(BASE+1), S => pl ); genLSB: if j = 0 generate sr <= pr; end generate; genHSB: if j > 0 generate s0_xor_r: XORCY port map ( O => sr, CI => c0(BASE), LI => pr ); end generate; s0_xor_l: XORCY port map ( O => sl, CI => c0(BASE+1), LI => pl ); -- Propagate Chain pd <= (a(BASE+1) xor b(BASE+1)) and (a(BASE) xor b(BASE)); pp_mux: MUXCY port map ( O => pp(j+1), CI => pp(j), DI => '0', S => pd ); end generate genDoubles; genLast: if MR > 0 generate constant BASE : natural := LO+2*MD; signal p, s0 : std_logic; begin ps_lut_l: LUT6_2 generic map ( INIT => x"66666666_0FF0FF00" ) port map ( O6 => p, O5 => s(BASE), I5 => '1', I4 => c(i), I3 => s0, I2 => pp(MD), I1 => b(BASE), I0 => a(BASE) ); c0_mux: MUXCY port map ( O => c0(BASE+1), CI => c0(BASE), DI => a(BASE), S => p ); s0_xor: XORCY port map ( O => s0, CI => c0(BASE), LI => p ); -- Let synthesis merge it into carry computation pp(pp'left) <= (a(BASE) xor b(BASE)) and pp(MD); end generate genLast; g(i) <= c0(c0'left); p(i) <= pp(pp'left); end generate genCAI; genCCA: if ARCH = CCA generate constant M : positive := HI-LO+1; constant D : positive := M/2; constant H : positive := (D+5)/6; signal pl : std_logic_vector(M-D-1 downto 0); signal pc : std_logic_vector(M-D downto 0); begin pc(0) <= '0'; genDoubles: for j in 0 to D-1 generate signal gl : std_logic; begin gp_lut: LUT6_2 generic map ( INIT => x"12480000_EE880000" ) port map ( O6 => pl(j), O5 => gl, I5 => '1', I4 => '1', I3 => a(LO+2*j+1), I2 => a(LO+2*j), I1 => b(LO+2*j+1), I0 => b(LO+2*j) ); c0_mux: MUXCY port map ( O => pc(j+1), CI => pc(j), DI => gl, S => pl(j) ); end generate genDoubles; genOdd: if M-D > D generate pl(D) <= a(HI) xnor b(HI); pc(D+1) <= pl(D) and pc(D); end generate genOdd; g(i) <= pc(pc'left); p(i) <= 'X' when Is_X(pl) else '1' when pl = (pl'range => '1') else '0'; s(HI downto LO) <= std_logic_vector(unsigned(a(HI downto LO)) + unsigned(b(HI downto LO)) + (0 to 0 => c(i))); end generate genCCA; end generate genBlocks; end architecture;
library ieee; use ieee.std_logic_1164.all; library ieee; use ieee.numeric_std.all; entity add_295 is port ( result : out std_logic_vector(26 downto 0); in_a : in std_logic_vector(26 downto 0); in_b : in std_logic_vector(26 downto 0) ); end add_295; architecture augh of add_295 is signal carry_inA : std_logic_vector(28 downto 0); signal carry_inB : std_logic_vector(28 downto 0); signal carry_res : std_logic_vector(28 downto 0); begin -- To handle the CI input, the operation is '1' + CI -- If CI is not present, the operation is '1' + '0' carry_inA <= '0' & in_a & '1'; carry_inB <= '0' & in_b & '0'; -- Compute the result carry_res <= std_logic_vector(unsigned(carry_inA) + unsigned(carry_inB)); -- Set the outputs result <= carry_res(27 downto 1); end architecture;
library ieee; use ieee.std_logic_1164.all; library ieee; use ieee.numeric_std.all; entity add_295 is port ( result : out std_logic_vector(26 downto 0); in_a : in std_logic_vector(26 downto 0); in_b : in std_logic_vector(26 downto 0) ); end add_295; architecture augh of add_295 is signal carry_inA : std_logic_vector(28 downto 0); signal carry_inB : std_logic_vector(28 downto 0); signal carry_res : std_logic_vector(28 downto 0); begin -- To handle the CI input, the operation is '1' + CI -- If CI is not present, the operation is '1' + '0' carry_inA <= '0' & in_a & '1'; carry_inB <= '0' & in_b & '0'; -- Compute the result carry_res <= std_logic_vector(unsigned(carry_inA) + unsigned(carry_inB)); -- Set the outputs result <= carry_res(27 downto 1); end architecture;
library ieee; use ieee.std_logic_1164.all; use ieee.std_logic_arith.all; use ieee.std_logic_unsigned.all; -- ft a : wr_block and rd_block must be synchronized with clk entity fifo_block is generic ( DWIDTH : integer; -- 8 BLOCK_AWIDTH : integer; -- 5 FIFO_AWIDTH : integer; -- 2 RAM_TYPE : string(1 to 7) ); port ( clk : in std_logic; reset : in std_logic; clr : in std_logic; wr_block : in std_logic; wr_clk : in std_logic; wren : in std_logic; waddr : in std_logic_vector(BLOCK_AWIDTH - 1 downto 0); wdata : in std_logic_vector(DWIDTH - 1 downto 0); rd_block : in std_logic; rd_clk : in std_logic; -- zcpsm_clk raddr : in std_logic_vector(BLOCK_AWIDTH - 1 downto 0); -- ÓÉzcpsmÌṩ rdata : out std_logic_vector(DWIDTH - 1 downto 0); -- Ìṩ¸øzcpsm full : out std_logic; empty : out std_logic ); end fifo_block; architecture behave of fifo_block is component blockdram generic( depth: integer; Dwidth: integer; Awidth: integer ); port( addra: IN std_logic_VECTOR(Awidth-1 downto 0); clka: IN std_logic; addrb: IN std_logic_VECTOR(Awidth-1 downto 0); clkb: IN std_logic; dia: IN std_logic_VECTOR(Dwidth-1 downto 0); wea: IN std_logic; dob: OUT std_logic_VECTOR(Dwidth-1 downto 0) ); end component; component disdram generic( depth: integer; Dwidth: integer; Awidth: integer ); port( A: IN std_logic_VECTOR(Awidth-1 downto 0); CLK: IN std_logic; D: IN std_logic_VECTOR(Dwidth-1 downto 0); WE: IN std_logic; DPRA: IN std_logic_VECTOR(Awidth-1 downto 0); DPO: OUT std_logic_VECTOR(Dwidth-1 downto 0); QDPO: OUT std_logic_VECTOR(Dwidth-1 downto 0) ); end component; signal wp_block : std_logic_vector(FIFO_AWIDTH - 1 downto 0) := (others => '0'); signal rp_block : std_logic_vector(FIFO_AWIDTH - 1 downto 0) := (others => '0'); signal ram_we : std_logic := '0'; signal ram_waddr : std_logic_vector(FIFO_AWIDTH + BLOCK_AWIDTH - 1 downto 0) := (others => '0'); signal ram_raddr : std_logic_vector(FIFO_AWIDTH + BLOCK_AWIDTH - 1 downto 0) := (others => '0'); signal empty_flag : std_logic := '1'; signal full_flag : std_logic := '0'; signal rdata_buf : std_logic_vector(DWIDTH - 1 downto 0); constant FIFO_DEPTH : natural := 2 ** FIFO_AWIDTH; constant BLOCK_DEPTH : natural := 2 ** BLOCK_AWIDTH; begin use_block_ram : if RAM_TYPE = "BLK_RAM" generate ram : blockdram generic map( depth => FIFO_DEPTH * BLOCK_DEPTH, Dwidth => DWIDTH, Awidth => FIFO_AWIDTH + BLOCK_AWIDTH ) port map( addra => ram_waddr, clka => wr_clk, addrb => ram_raddr, clkb => rd_clk, dia => wdata, wea => ram_we, dob => rdata ); end generate use_block_ram; use_dis_ram : if RAM_TYPE = "DIS_RAM" generate ram : disdram generic map( depth => FIFO_DEPTH * BLOCK_DEPTH, Dwidth => DWIDTH, Awidth => FIFO_AWIDTH + BLOCK_AWIDTH ) port map( A => ram_waddr, CLK => wr_clk, D => wdata, WE => ram_we, DPRA => ram_raddr, DPO => rdata_buf, QDPO => open ); process(rd_clk) begin if rising_edge(rd_clk) then rdata <= rdata_buf; end if; end process; end generate use_dis_ram; g_multi_block : if FIFO_AWIDTH > 0 generate ram_we <= wren and (not full_flag); -- ram_write_enable ram_waddr <= wp_block & waddr; -- ram_write_addr ram_raddr <= rp_block & raddr; -- ram_read_addr WritePointerCtrl : process(clk, reset) -- УÑé´íÎóʱ°ü¶ªÆú begin if reset = '1' then wp_block <= (others => '0'); elsif rising_edge(clk) then if clr = '1' then wp_block <= (others => '0'); elsif full_flag = '0' and wr_block = '1' then -- ·ÇÂúʱ£¬Ò»¸öÒÔÌ«°ü·¢ËÍÍê±ÏдÊý¾Ý¿éµØÖ·¼Ó1 wp_block <= wp_block + 1; end if; end if; end process; ReadPointerCtrl : process(clk, reset) begin if reset = '1' then rp_block <= (others => '0'); elsif rising_edge(clk) then if clr = '1' then rp_block <= (others => '0'); elsif empty_flag = '0' and rd_block = '1' then -- ·Ç¿Õʱ£¬¶ÁÊý¾Ý¿éµØÖ·¼Ó1 rp_block <= rp_block + 1; end if; end if; end process; GetEmptyFlag : process(clk, reset) begin if reset = '1' then empty_flag <= '1'; elsif rising_edge(clk) then if clr = '1' then empty_flag <= '1'; elsif (wp_block = rp_block) and (wr_block = '1') then empty_flag <= '0'; elsif (wp_block = rp_block + 1) and (rd_block = '1'and wr_block = '0') then empty_flag <= '1'; end if; end if; end process; empty <= empty_flag; GetFullFlag : process(clk, reset) begin if reset = '1' then full_flag <= '0'; elsif rising_edge(clk) then if clr = '1' then full_flag <= '0'; elsif (wp_block = rp_block - 1) and (wr_block = '1' and rd_block = '0') then full_flag <= '1'; elsif (wp_block = rp_block) and (rd_block = '1') then full_flag <= '0'; end if; end if; end process; full <= full_flag; end generate; g_single_block : if FIFO_AWIDTH = 0 generate ram_we <= wren and (not full_flag); ram_waddr <= waddr; ram_raddr <= raddr; GetEmptyFlag : process(clk, reset) begin if reset = '1' then empty_flag <= '1'; elsif rising_edge(clk) then if clr = '1' then empty_flag <= '1'; elsif wr_block = '1' then empty_flag <= '0'; elsif rd_block = '1'and wr_block = '0' then empty_flag <= '1'; end if; end if; end process; empty <= empty_flag; GetFullFlag : process(clk, reset) begin if reset = '1' then full_flag <= '0'; elsif rising_edge(clk) then if clr = '1' then full_flag <= '0'; elsif wr_block = '1' and rd_block = '0' then full_flag <= '1'; elsif rd_block = '1' then full_flag <= '0'; end if; end if; end process; full <= full_flag; end generate; end behave;
-- ------------------------------------------------------------- -- -- Generated Configuration for inst_ok_4_e -- -- Generated -- by: wig -- on: Fri Jul 15 13:54:30 2005 -- cmd: h:/work/eclipse/mix/mix_0.pl -nodelta ../macro.xls -- -- !!! Do not edit this file! Autogenerated by MIX !!! -- $Author: wig $ -- $Id: inst_ok_4_e-c.vhd,v 1.2 2005/07/15 16:20:00 wig Exp $ -- $Date: 2005/07/15 16:20:00 $ -- $Log: inst_ok_4_e-c.vhd,v $ -- Revision 1.2 2005/07/15 16:20:00 wig -- Update all testcases; still problems though -- -- -- Based on Mix Entity Template built into RCSfile: MixWriter.pm,v -- Id: MixWriter.pm,v 1.55 2005/07/13 15:38:34 wig Exp -- -- Generator: mix_0.pl Version: Revision: 1.36 , wilfried.gaensheimer@micronas.com -- (C) 2003 Micronas GmbH -- -- -------------------------------------------------------------- library IEEE; use IEEE.std_logic_1164.all; -- No project specific VHDL libraries/conf -- -- Start of Generated Configuration inst_ok_4_rtl_conf / inst_ok_4_e -- configuration inst_ok_4_rtl_conf of inst_ok_4_e is for rtl -- Generated Configuration end for; end inst_ok_4_rtl_conf; -- -- End of Generated Configuration inst_ok_4_rtl_conf -- -- --!End of Configuration/ies -- --------------------------------------------------------------
--Copyright (C) 2017 Konstantin Shibin library IEEE; use IEEE.STD_LOGIC_1164.ALL; entity AsyncDataRegisterAdapter is Generic ( Size : positive := 8); Port ( -- Scan Interface scan_client ---------- SI : in STD_LOGIC; -- ScanInPort SO : out STD_LOGIC; -- ScanOutPort SEL : in STD_LOGIC; -- SelectPort ---------------------------------------- SE : in STD_LOGIC; -- ShiftEnPort CE : in STD_LOGIC; -- CaptureEnPort UE : in STD_LOGIC; -- UpdateEnPort RST : in STD_LOGIC; -- ResetPort TCK : in STD_LOGIC; -- TCKPort -- Data interface DI : in STD_LOGIC_VECTOR (Size-1 downto 0); DO : out STD_LOGIC_VECTOR (Size-1 downto 0) ); end AsyncDataRegisterAdapter; architecture AsyncDataRegisterAdapter_arch of AsyncDataRegisterAdapter is signal DI_sync_first, DI_sync: STD_LOGIC_VECTOR (Size-1 downto 0); signal sreg_do: STD_LOGIC_VECTOR (Size-1 downto 0); signal sreg_so: STD_LOGIC; signal sticky_flags, sticky_flags_mux: STD_LOGIC_VECTOR (Size-1 downto 0); signal flag_mask_strobe: STD_LOGIC; component SReg is Generic ( Size : positive := 7); Port ( -- Scan Interface scan_client ---------- SI : in STD_LOGIC; -- ScanInPort SO : out STD_LOGIC; -- ScanOutPort SEL : in STD_LOGIC; -- SelectPort ---------------------------------------- SE : in STD_LOGIC; -- ShiftEnPort CE : in STD_LOGIC; -- CaptureEnPort UE : in STD_LOGIC; -- UpdateEnPort RST : in STD_LOGIC; -- ResetPort TCK : in STD_LOGIC; -- TCKPort DI : in STD_LOGIC_VECTOR (Size-1 downto 0); --DataInPort DO : out STD_LOGIC_VECTOR (Size-1 downto 0)); --DataOutPort end component; begin sticky_flags_mux <= (sticky_flags or DI_sync) and not sreg_do when flag_mask_strobe = '1' else sticky_flags or DI_sync; synchronizer_di : process(TCK,RST) begin if RST = '1' then DI_sync_first <= (others => '0'); DI_sync <= (others => '0'); elsif TCK'event and TCK = '1' then DI_sync_first <= DI; DI_sync <= DI_sync_first; end if ; end process ; -- synchronizer sticky_flag_update : process(TCK,RST) begin if RST = '1' then sticky_flags <= (others => '0'); elsif TCK'event and TCK = '1' then sticky_flags <= sticky_flags_mux; end if ; end process ; sticky_flag_update_strobe : process(TCK) begin if TCK'event and TCK = '1' then flag_mask_strobe <= SEL and UE; end if; end process; SO <= sreg_so; DO <= sreg_do; shiftreg : SReg Generic map ( Size => Size) Port map ( -- Scan Interface scan_client ---------- SI => SI, -- Input Port SI = SI SO => sreg_so, SEL => SEL, ---------------------------------------- SE => SE, CE => CE, UE => UE, RST => RST, TCK => TCK, DI => sticky_flags, DO => sreg_do); end AsyncDataRegisterAdapter_arch;
--Copyright (C) 2017 Konstantin Shibin library IEEE; use IEEE.STD_LOGIC_1164.ALL; entity AsyncDataRegisterAdapter is Generic ( Size : positive := 8); Port ( -- Scan Interface scan_client ---------- SI : in STD_LOGIC; -- ScanInPort SO : out STD_LOGIC; -- ScanOutPort SEL : in STD_LOGIC; -- SelectPort ---------------------------------------- SE : in STD_LOGIC; -- ShiftEnPort CE : in STD_LOGIC; -- CaptureEnPort UE : in STD_LOGIC; -- UpdateEnPort RST : in STD_LOGIC; -- ResetPort TCK : in STD_LOGIC; -- TCKPort -- Data interface DI : in STD_LOGIC_VECTOR (Size-1 downto 0); DO : out STD_LOGIC_VECTOR (Size-1 downto 0) ); end AsyncDataRegisterAdapter; architecture AsyncDataRegisterAdapter_arch of AsyncDataRegisterAdapter is signal DI_sync_first, DI_sync: STD_LOGIC_VECTOR (Size-1 downto 0); signal sreg_do: STD_LOGIC_VECTOR (Size-1 downto 0); signal sreg_so: STD_LOGIC; signal sticky_flags, sticky_flags_mux: STD_LOGIC_VECTOR (Size-1 downto 0); signal flag_mask_strobe: STD_LOGIC; component SReg is Generic ( Size : positive := 7); Port ( -- Scan Interface scan_client ---------- SI : in STD_LOGIC; -- ScanInPort SO : out STD_LOGIC; -- ScanOutPort SEL : in STD_LOGIC; -- SelectPort ---------------------------------------- SE : in STD_LOGIC; -- ShiftEnPort CE : in STD_LOGIC; -- CaptureEnPort UE : in STD_LOGIC; -- UpdateEnPort RST : in STD_LOGIC; -- ResetPort TCK : in STD_LOGIC; -- TCKPort DI : in STD_LOGIC_VECTOR (Size-1 downto 0); --DataInPort DO : out STD_LOGIC_VECTOR (Size-1 downto 0)); --DataOutPort end component; begin sticky_flags_mux <= (sticky_flags or DI_sync) and not sreg_do when flag_mask_strobe = '1' else sticky_flags or DI_sync; synchronizer_di : process(TCK,RST) begin if RST = '1' then DI_sync_first <= (others => '0'); DI_sync <= (others => '0'); elsif TCK'event and TCK = '1' then DI_sync_first <= DI; DI_sync <= DI_sync_first; end if ; end process ; -- synchronizer sticky_flag_update : process(TCK,RST) begin if RST = '1' then sticky_flags <= (others => '0'); elsif TCK'event and TCK = '1' then sticky_flags <= sticky_flags_mux; end if ; end process ; sticky_flag_update_strobe : process(TCK) begin if TCK'event and TCK = '1' then flag_mask_strobe <= SEL and UE; end if; end process; SO <= sreg_so; DO <= sreg_do; shiftreg : SReg Generic map ( Size => Size) Port map ( -- Scan Interface scan_client ---------- SI => SI, -- Input Port SI = SI SO => sreg_so, SEL => SEL, ---------------------------------------- SE => SE, CE => CE, UE => UE, RST => RST, TCK => TCK, DI => sticky_flags, DO => sreg_do); end AsyncDataRegisterAdapter_arch;
--Copyright (C) 2017 Konstantin Shibin library IEEE; use IEEE.STD_LOGIC_1164.ALL; entity AsyncDataRegisterAdapter is Generic ( Size : positive := 8); Port ( -- Scan Interface scan_client ---------- SI : in STD_LOGIC; -- ScanInPort SO : out STD_LOGIC; -- ScanOutPort SEL : in STD_LOGIC; -- SelectPort ---------------------------------------- SE : in STD_LOGIC; -- ShiftEnPort CE : in STD_LOGIC; -- CaptureEnPort UE : in STD_LOGIC; -- UpdateEnPort RST : in STD_LOGIC; -- ResetPort TCK : in STD_LOGIC; -- TCKPort -- Data interface DI : in STD_LOGIC_VECTOR (Size-1 downto 0); DO : out STD_LOGIC_VECTOR (Size-1 downto 0) ); end AsyncDataRegisterAdapter; architecture AsyncDataRegisterAdapter_arch of AsyncDataRegisterAdapter is signal DI_sync_first, DI_sync: STD_LOGIC_VECTOR (Size-1 downto 0); signal sreg_do: STD_LOGIC_VECTOR (Size-1 downto 0); signal sreg_so: STD_LOGIC; signal sticky_flags, sticky_flags_mux: STD_LOGIC_VECTOR (Size-1 downto 0); signal flag_mask_strobe: STD_LOGIC; component SReg is Generic ( Size : positive := 7); Port ( -- Scan Interface scan_client ---------- SI : in STD_LOGIC; -- ScanInPort SO : out STD_LOGIC; -- ScanOutPort SEL : in STD_LOGIC; -- SelectPort ---------------------------------------- SE : in STD_LOGIC; -- ShiftEnPort CE : in STD_LOGIC; -- CaptureEnPort UE : in STD_LOGIC; -- UpdateEnPort RST : in STD_LOGIC; -- ResetPort TCK : in STD_LOGIC; -- TCKPort DI : in STD_LOGIC_VECTOR (Size-1 downto 0); --DataInPort DO : out STD_LOGIC_VECTOR (Size-1 downto 0)); --DataOutPort end component; begin sticky_flags_mux <= (sticky_flags or DI_sync) and not sreg_do when flag_mask_strobe = '1' else sticky_flags or DI_sync; synchronizer_di : process(TCK,RST) begin if RST = '1' then DI_sync_first <= (others => '0'); DI_sync <= (others => '0'); elsif TCK'event and TCK = '1' then DI_sync_first <= DI; DI_sync <= DI_sync_first; end if ; end process ; -- synchronizer sticky_flag_update : process(TCK,RST) begin if RST = '1' then sticky_flags <= (others => '0'); elsif TCK'event and TCK = '1' then sticky_flags <= sticky_flags_mux; end if ; end process ; sticky_flag_update_strobe : process(TCK) begin if TCK'event and TCK = '1' then flag_mask_strobe <= SEL and UE; end if; end process; SO <= sreg_so; DO <= sreg_do; shiftreg : SReg Generic map ( Size => Size) Port map ( -- Scan Interface scan_client ---------- SI => SI, -- Input Port SI = SI SO => sreg_so, SEL => SEL, ---------------------------------------- SE => SE, CE => CE, UE => UE, RST => RST, TCK => TCK, DI => sticky_flags, DO => sreg_do); end AsyncDataRegisterAdapter_arch;
`protect begin_protected `protect version = 1 `protect encrypt_agent = "XILINX" `protect encrypt_agent_info = "Xilinx Encryption Tool 2014" `protect key_keyowner = "Cadence Design Systems.", key_keyname= "cds_rsa_key", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 64) `protect key_block cqJciZd04oy/xqN/teer9KNKZIZIVlnG7ajgn8OzB5FAas7j2XRIV6Yyd10dDw1rd7NHoaBTTp9o nw798sfS2w== `protect key_keyowner = "Mentor Graphics Corporation", key_keyname= "MGC-VERIF-SIM-RSA-1", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 128) `protect key_block NqH+8VdO2PwfJrVZDuDtAhaTdX/Uv41nro4huTCFkpH9AhLnG8N+Rg0M5GHCNqXCY3/mZqa49FbQ OxtJc0xNztbN2IHchIRyAYyJ0yRFxhHcPfD8ucTRJmZVoo9i4Mp24JUkwNV/EQL9WuV69E2+BnvI 3G9yQPYYqFSwrr5KUlE= `protect key_keyowner = "Xilinx", key_keyname= "xilinx_2014_03", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 256) `protect key_block fQjnREVyzaDiAoh6Eu33/7x2ljlAJt2BcpFhDbsRPwfGQ3u9jKhJUz2artRgOulGQ512qjCTdwOE YnZbqNsPUptM0myHlJBf8VeVCv2DuqjGj3SUadvgS5/GZfOvCA7BoPh3Jj7Vz6XqSPukkiBGQ3mX Vk86Sd0lzajYmpmLROlqk9dN8O7YzxtjJBD4WC1h3zMpUWNWUfKd0vjpB7I12Q/UKkHlkd+uBczH 4kB+r/xO3MZ/JpJVo/j9R12IPbDITtldKJL4h+YqNFHn3XvvsYZfcABrEUkaEpdo7U1VNqM+gcwK geGq62l+Lm/hk7CAIio8Wb5k5weg2+Pg9THkxA== `protect key_keyowner = "Synopsys", key_keyname= "SNPS-VCS-RSA-1", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 128) `protect key_block Iq1tnz4SgK5jwxP9m5pg9IpL7DylAjKt2VwX4nav172vBA7kJK04ZRIn8vXKrvb+V0/9rHtFa9ve FjUsr92sGXlzcNcinK6ZzMcEU3l8jDuGPvRnnuOLq355pXCuKAEkhJ1AH/5x5boo+LDBbDYFygHX dwFI4CyLhrbaMJYXt/4= `protect key_keyowner = "Aldec", key_keyname= "ALDEC08_001", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 256) `protect key_block hdvgbNGerqs2TVl8wuRe/ql9nsm7xb306R/2izZZFQE6oiPjSdo35a8pgFirVEofOBvc4H86rLDG qwsD0pk0RJhJwZZe3TWOjzZuTClB1E9tViln6H1/VUa55r9ztglhNMK0ZRHUyHFtT9r45/ipIXaf 9bHO/KUcwpOrVYi6Ajz24uUFEE5YypdW2sFxx8w1CYDPXVUWtq67tKSi5P18UjG80Gys0178H4as V2Y2SKcZx+Ze/kSgLrn66J1GFPX7u+3HamwvT9fgP10w6K9RCnj/cgx+KWDq/+nFEND+DdkXUhDm +txuM8Z448q/u/jjqm9olYfT6+vX2ibMJt8leA== `protect data_method = "AES128-CBC" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 51456) `protect data_block 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 `protect end_protected
`protect begin_protected `protect version = 1 `protect encrypt_agent = "XILINX" `protect encrypt_agent_info = "Xilinx Encryption Tool 2014" `protect key_keyowner = "Cadence Design Systems.", key_keyname= "cds_rsa_key", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 64) `protect key_block cqJciZd04oy/xqN/teer9KNKZIZIVlnG7ajgn8OzB5FAas7j2XRIV6Yyd10dDw1rd7NHoaBTTp9o nw798sfS2w== `protect key_keyowner = "Mentor Graphics Corporation", key_keyname= "MGC-VERIF-SIM-RSA-1", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 128) `protect key_block NqH+8VdO2PwfJrVZDuDtAhaTdX/Uv41nro4huTCFkpH9AhLnG8N+Rg0M5GHCNqXCY3/mZqa49FbQ OxtJc0xNztbN2IHchIRyAYyJ0yRFxhHcPfD8ucTRJmZVoo9i4Mp24JUkwNV/EQL9WuV69E2+BnvI 3G9yQPYYqFSwrr5KUlE= `protect key_keyowner = "Xilinx", key_keyname= "xilinx_2014_03", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 256) `protect key_block fQjnREVyzaDiAoh6Eu33/7x2ljlAJt2BcpFhDbsRPwfGQ3u9jKhJUz2artRgOulGQ512qjCTdwOE YnZbqNsPUptM0myHlJBf8VeVCv2DuqjGj3SUadvgS5/GZfOvCA7BoPh3Jj7Vz6XqSPukkiBGQ3mX Vk86Sd0lzajYmpmLROlqk9dN8O7YzxtjJBD4WC1h3zMpUWNWUfKd0vjpB7I12Q/UKkHlkd+uBczH 4kB+r/xO3MZ/JpJVo/j9R12IPbDITtldKJL4h+YqNFHn3XvvsYZfcABrEUkaEpdo7U1VNqM+gcwK geGq62l+Lm/hk7CAIio8Wb5k5weg2+Pg9THkxA== `protect key_keyowner = "Synopsys", key_keyname= "SNPS-VCS-RSA-1", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 128) `protect key_block Iq1tnz4SgK5jwxP9m5pg9IpL7DylAjKt2VwX4nav172vBA7kJK04ZRIn8vXKrvb+V0/9rHtFa9ve FjUsr92sGXlzcNcinK6ZzMcEU3l8jDuGPvRnnuOLq355pXCuKAEkhJ1AH/5x5boo+LDBbDYFygHX dwFI4CyLhrbaMJYXt/4= `protect key_keyowner = "Aldec", key_keyname= "ALDEC08_001", key_method = "rsa" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 256) `protect key_block hdvgbNGerqs2TVl8wuRe/ql9nsm7xb306R/2izZZFQE6oiPjSdo35a8pgFirVEofOBvc4H86rLDG qwsD0pk0RJhJwZZe3TWOjzZuTClB1E9tViln6H1/VUa55r9ztglhNMK0ZRHUyHFtT9r45/ipIXaf 9bHO/KUcwpOrVYi6Ajz24uUFEE5YypdW2sFxx8w1CYDPXVUWtq67tKSi5P18UjG80Gys0178H4as V2Y2SKcZx+Ze/kSgLrn66J1GFPX7u+3HamwvT9fgP10w6K9RCnj/cgx+KWDq/+nFEND+DdkXUhDm +txuM8Z448q/u/jjqm9olYfT6+vX2ibMJt8leA== `protect data_method = "AES128-CBC" `protect encoding = (enctype = "BASE64", line_length = 76, bytes = 51456) `protect data_block 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 `protect end_protected
library ieee; use ieee.numeric_std.all; use ieee.std_logic_1164.all; use ieee.std_logic_arith.all; use ieee.std_logic_unsigned.all; ------------------------------------------------------------------------------------- -- -- -- Definition of Ports -- FSL_Clk : Synchronous clock -- FSL_Rst : System reset, should always come from FSL bus -- FSL_S_Clk : Slave asynchronous clock -- FSL_S_Read : Read signal, requiring next available input to be read -- FSL_S_Data : Input data -- FSL_S_CONTROL : Control Bit, indicating the input data are control word -- FSL_S_Exists : Data Exist Bit, indicating data exist in the input FSL bus -- FSL_M_Clk : Master asynchronous clock -- FSL_M_Write : Write signal, enabling writing to output FSL bus -- FSL_M_Data : Output data -- FSL_M_Control : Control Bit, indicating the output data are contol word -- FSL_M_Full : Full Bit, indicating output FSL bus is full -- ------------------------------------------------------------------------------- ------------------------------------------------------------------------------ -- Entity Section ------------------------------------------------------------------------------ entity hw_acc_sort is port ( -- DO NOT EDIT BELOW THIS LINE --------------------- -- Bus protocol ports, do not add or delete. Clk : in std_logic; RST : in std_logic; BRAM_A_addr : out std_logic_vector(0 to (32 - 1)); BRAM_A_dIN : in std_logic_vector(0 to (32 - 1)); BRAM_A_dOUT : out std_logic_vector(0 to (32 - 1)); BRAM_A_en : out std_logic; BRAM_A_wEN : out std_logic_vector(0 to (32/8) -1); ------------------------------------------------------ BRAM_B_dIN : in std_logic_vector(0 to (32 - 1)) ; BRAM_B_addr : out std_logic_vector(0 to (32 - 1)) ; BRAM_B_dOUT : out std_logic_vector(0 to (32 - 1)) ; BRAM_B_en : out std_logic ; BRAM_B_wEN : out std_logic_vector(0 to (32/8) -1); BRAM_C_dIN : in std_logic_vector(0 to (32 - 1)) ; BRAM_C_addr : out std_logic_vector(0 to (32 - 1)) ; BRAM_C_dOUT : out std_logic_vector(0 to (32 - 1)) ; BRAM_C_en : out std_logic ; BRAM_C_wEN : out std_logic_vector(0 to (32/8) -1); ------------------------------------------------------ FSL0_S_Read : out std_logic; FSL0_S_Data : in std_logic_vector(0 to 31); FSL0_S_Exists : in std_logic; ------------------------------------------------------ FSL0_M_Write : out std_logic; FSL0_M_Data : out std_logic_vector(0 to 31); FSL0_M_Full : in std_logic; --This is just used for reseting FSL1_S_Read : out std_logic; FSL1_S_Data : in std_logic_vector(0 to 31); FSL1_S_Exists : in std_logic -- DO NOT EDIT ABOVE THIS LINE --------------------- ); end hw_acc_sort; -- ************************* -- Architecture Definition -- ************************* architecture IMPLEMENTATION of hw_acc_sort is component mergesort is port ( array0_addr0 : out std_logic_vector(0 to (32 - 1)); array0_dIN0 : out std_logic_vector(0 to (32 - 1)); array0_dOUT0 : in std_logic_vector(0 to (32 - 1)); array0_rENA0 : out std_logic; array0_wENA0 : out std_logic; array1_addr0 : out std_logic_vector(0 to (32 - 1)); array1_dIN0 : out std_logic_vector(0 to (32 - 1)); array1_dOUT0 : in std_logic_vector(0 to (32 - 1)); array1_rENA0 : out std_logic; array1_wENA0 : out std_logic; chan1_channelDataIn : out std_logic_vector(0 to (32 - 1)); chan1_channelDataOut : in std_logic_vector(0 to (32 - 1)); chan1_exists : in std_logic; chan1_full : in std_logic; chan1_channelRead : out std_logic; chan1_channelWrite : out std_logic; clock_sig : in std_logic; reset_sig : in std_logic ); end component; signal reset_sig : std_logic; signal in_BRAM_A_addr : std_logic_vector(0 to (32 - 1)); signal in_BRAM_A_wEN : std_logic; signal in_BRAM_B_addr : std_logic_vector(0 to (32 - 1)); signal in_BRAM_B_wEN : std_logic; signal in_BRAM_C_addr : std_logic_vector(0 to (32 - 1)); signal in_BRAM_C_wEN : std_logic; -- Architecture Section begin reset_sig <= rst or FSL1_S_Exists; FSL1_S_read <= FSL1_S_Exists ; BRAM_A_addr <= in_BRAM_A_addr(2 to 31) & "00"; --The external memory is organized in this way. BRAM_A_wEN <= in_BRAM_A_WEN&in_BRAM_A_WEN&in_BRAM_A_WEN&in_BRAM_A_WEN; BRAM_B_addr <= in_BRAM_B_addr(2 to 31) & "00"; --The external memory is organized in this way. BRAM_B_wEN <= in_BRAM_B_WEN&in_BRAM_B_WEN&in_BRAM_B_WEN&in_BRAM_B_WEN; BRAM_C_addr <= in_BRAM_C_addr(2 to 31) & "00"; --The external memory is organized in this way. BRAM_C_wEN <= in_BRAM_C_WEN&in_BRAM_C_WEN&in_BRAM_C_WEN&in_BRAM_C_WEN; uut : mergesort port map ( array0_addr0 => in_BRAM_A_addr, array0_dIN0 => BRAM_A_dout, array0_dOUT0 => BRAM_A_din, array0_rENA0 => BRAM_A_en, array0_wENA0 => in_BRAM_A_wen, array1_addr0 => in_BRAM_B_addr, array1_dIN0 => BRAM_B_dout, array1_dOUT0 => BRAM_B_din, array1_rENA0 => BRAM_B_en, array1_wENA0 => in_BRAM_B_wen, chan1_channelDataIn => FSL0_M_Data, chan1_channelDataOut => FSL0_S_Data, chan1_exists => FSL0_S_Exists, chan1_full => FSL0_M_Full, chan1_channelRead => FSL0_S_Read, chan1_channelWrite => FSL0_M_Write, clock_sig => clk, reset_sig => reset_sig ); end architecture implementation;
entity repro2 is generic (depth : natural := 7); port (foo: in boolean); end entity; architecture foo of repro2 is signal foo_int: boolean; begin cond: if depth > 0 generate FUMBLE: entity work.repro2 generic map (depth => depth - 1) port map (foo => foo_int); end generate; end architecture;
entity repro2 is generic (depth : natural := 7); port (foo: in boolean); end entity; architecture foo of repro2 is signal foo_int: boolean; begin cond: if depth > 0 generate FUMBLE: entity work.repro2 generic map (depth => depth - 1) port map (foo => foo_int); end generate; end architecture;
------------------------------------------------------------------------------- -- $Id:$ ------------------------------------------------------------------------------- -- coregen_comp_defs - entity/architecture pair ------------------------------------------------------------------------------- -- -- ************************************************************************* -- ** ** -- ** DISCLAIMER OF LIABILITY ** -- ** ** -- ** This text/file contains proprietary, confidential ** -- ** information of Xilinx, Inc., is distributed under ** -- ** license from Xilinx, Inc., and may be used, copied ** -- ** and/or disclosed only pursuant to the terms of a valid ** -- ** license agreement with Xilinx, Inc. Xilinx hereby ** -- ** grants you a license to use this text/file solely for ** -- ** design, simulation, implementation and creation of ** -- ** design files limited to Xilinx devices or technologies. ** -- ** Use with non-Xilinx devices or technologies is expressly ** -- ** prohibited and immediately terminates your license unless ** -- ** covered by a separate agreement. ** -- ** ** -- ** Xilinx is providing this design, code, or information ** -- ** "as-is" solely for use in developing programs and ** -- ** solutions for Xilinx devices, with no obligation on the ** -- ** part of Xilinx to provide support. By providing this design, ** -- ** code, or information as one possible implementation of ** -- ** this feature, application or standard, Xilinx is making no ** -- ** representation that this implementation is free from any ** -- ** claims of infringement. You are responsible for obtaining ** -- ** any rights you may require for your implementation. ** -- ** Xilinx expressly disclaims any warranty whatsoever with ** -- ** respect to the adequacy of the implementation, including ** -- ** but not limited to any warranties or representations that this ** -- ** implementation is free from claims of infringement, implied ** -- ** warranties of merchantability or fitness for a particular ** -- ** purpose. ** -- ** ** -- ** Xilinx products are not intended for use in life support ** -- ** appliances, devices, or systems. Use in such applications is ** -- ** expressly prohibited. ** -- ** ** -- ** Any modifications that are made to the Source Code are ** -- ** done at the user’s sole risk and will be unsupported. ** -- ** The Xilinx Support Hotline does not have access to source ** -- ** code and therefore cannot answer specific questions related ** -- ** to source HDL. The Xilinx Hotline support of original source ** -- ** code IP shall only address issues and questions related ** -- ** to the standard Netlist version of the core (and thus ** -- ** indirectly, the original core source). ** -- ** ** -- ** Copyright (c) 2008-2013 Xilinx, Inc. All rights reserved. ** -- ** ** -- ** This copyright and support notice must be retained as part ** -- ** of this text at all times. ** -- ** ** -- ************************************************************************* -- ------------------------------------------------------------------------------- -- Filename: coregen_comp_defs.vhd -- Version: initial -- Description: -- Component declarations for all black box netlists generated by -- running COREGEN and AXI BRAM CTRL when XST elaborated the client core -- -- VHDL-Standard: VHDL'93 ------------------------------------------------------------------------------- -- Structure: -- -- coregen_comp_defs.vhd ------------------------------------------------------------------------------- LIBRARY ieee; USE ieee.std_logic_1164.ALL; PACKAGE coregen_comp_defs IS ------------------------------------------------------------------------------------- -- Start Block Memory Generator Component for blk_mem_gen_v8_1 -- Component declaration for blk_mem_gen_v8_1 pulled from the blk_mem_gen_v8_1.v -- Verilog file used to match paramter order for NCSIM compatibility ------------------------------------------------------------------------------------- component blk_mem_gen_v8_1 generic ( ---------------------------------------------------------------------------- -- Generic Declarations ---------------------------------------------------------------------------- --Device Family & Elaboration Directory Parameters: C_FAMILY : STRING := "virtex4"; C_XDEVICEFAMILY : STRING := "virtex4"; -- C_ELABORATION_DIR : STRING := ""; C_INTERFACE_TYPE : INTEGER := 0; C_AXI_TYPE : INTEGER := 1; C_AXI_SLAVE_TYPE : INTEGER := 0; C_HAS_AXI_ID : INTEGER := 0; C_AXI_ID_WIDTH : INTEGER := 4; --General Memory Parameters: C_MEM_TYPE : INTEGER := 2; C_BYTE_SIZE : INTEGER := 9; C_ALGORITHM : INTEGER := 0; C_PRIM_TYPE : INTEGER := 3; --Memory Initialization Parameters: C_LOAD_INIT_FILE : INTEGER := 0; C_INIT_FILE_NAME : STRING := ""; C_USE_DEFAULT_DATA : INTEGER := 0; C_DEFAULT_DATA : STRING := "111111111"; C_RST_TYPE : STRING := "SYNC"; --Port A Parameters: --Reset Parameters: C_HAS_RSTA : INTEGER := 0; C_RST_PRIORITY_A : STRING := "CE"; C_RSTRAM_A : INTEGER := 0; C_INITA_VAL : STRING := "0"; --Enable Parameters: C_HAS_ENA : INTEGER := 1; C_HAS_REGCEA : INTEGER := 0; --Byte Write Enable Parameters: C_USE_BYTE_WEA : INTEGER := 0; C_WEA_WIDTH : INTEGER := 1; --Write Mode: C_WRITE_MODE_A : STRING := "WRITE_FIRST"; --Data-Addr Width Parameters: C_WRITE_WIDTH_A : INTEGER := 4; C_READ_WIDTH_A : INTEGER := 4; C_WRITE_DEPTH_A : INTEGER := 4096; C_READ_DEPTH_A : INTEGER := 4096; C_ADDRA_WIDTH : INTEGER := 12; --Port B Parameters: --Reset Parameters: C_HAS_RSTB : INTEGER := 0; C_RST_PRIORITY_B : STRING := "CE"; C_RSTRAM_B : INTEGER := 0; C_INITB_VAL : STRING := "0"; --Enable Parameters: C_HAS_ENB : INTEGER := 1; C_HAS_REGCEB : INTEGER := 0; --Byte Write Enable Parameters: C_USE_BYTE_WEB : INTEGER := 0; C_WEB_WIDTH : INTEGER := 1; --Write Mode: C_WRITE_MODE_B : STRING := "WRITE_FIRST"; --Data-Addr Width Parameters: C_WRITE_WIDTH_B : INTEGER := 4; C_READ_WIDTH_B : INTEGER := 4; C_WRITE_DEPTH_B : INTEGER := 4096; C_READ_DEPTH_B : INTEGER := 4096; C_ADDRB_WIDTH : INTEGER := 12; --Output Registers/ Pipelining Parameters: C_HAS_MEM_OUTPUT_REGS_A : INTEGER := 0; C_HAS_MEM_OUTPUT_REGS_B : INTEGER := 0; C_HAS_MUX_OUTPUT_REGS_A : INTEGER := 0; C_HAS_MUX_OUTPUT_REGS_B : INTEGER := 0; C_MUX_PIPELINE_STAGES : INTEGER := 0; --Input/Output Registers for SoftECC : C_HAS_SOFTECC_INPUT_REGS_A : INTEGER := 0; C_HAS_SOFTECC_OUTPUT_REGS_B : INTEGER := 0; --ECC Parameters C_USE_ECC : INTEGER := 0; C_USE_SOFTECC : INTEGER := 0; C_HAS_INJECTERR : INTEGER := 0; --Simulation Model Parameters: C_SIM_COLLISION_CHECK : STRING := "NONE"; C_COMMON_CLK : INTEGER := 0; C_DISABLE_WARN_BHV_COLL : INTEGER := 0; C_DISABLE_WARN_BHV_RANGE : INTEGER := 0 ); PORT ( ---------------------------------------------------------------------------- -- Input and Output Declarations ---------------------------------------------------------------------------- -- Native BMG Input and Output Port Declarations --Port A: CLKA : IN STD_LOGIC := '0'; RSTA : IN STD_LOGIC := '0'; ENA : IN STD_LOGIC := '0'; REGCEA : IN STD_LOGIC := '0'; WEA : IN STD_LOGIC_VECTOR(C_WEA_WIDTH-1 DOWNTO 0) := (OTHERS => '0'); ADDRA : IN STD_LOGIC_VECTOR(C_ADDRA_WIDTH-1 DOWNTO 0) := (OTHERS => '0'); DINA : IN STD_LOGIC_VECTOR(C_WRITE_WIDTH_A-1 DOWNTO 0) := (OTHERS => '0'); DOUTA : OUT STD_LOGIC_VECTOR(C_READ_WIDTH_A-1 DOWNTO 0); --Port B: CLKB : IN STD_LOGIC := '0'; RSTB : IN STD_LOGIC := '0'; ENB : IN STD_LOGIC := '0'; REGCEB : IN STD_LOGIC := '0'; WEB : IN STD_LOGIC_VECTOR(C_WEB_WIDTH-1 DOWNTO 0) := (OTHERS => '0'); ADDRB : IN STD_LOGIC_VECTOR(C_ADDRB_WIDTH-1 DOWNTO 0) := (OTHERS => '0'); DINB : IN STD_LOGIC_VECTOR(C_WRITE_WIDTH_B-1 DOWNTO 0) := (OTHERS => '0'); DOUTB : OUT STD_LOGIC_VECTOR(C_READ_WIDTH_B-1 DOWNTO 0); --ECC: INJECTSBITERR : IN STD_LOGIC := '0'; INJECTDBITERR : IN STD_LOGIC := '0'; SBITERR : OUT STD_LOGIC; DBITERR : OUT STD_LOGIC; RDADDRECC : OUT STD_LOGIC_VECTOR(C_ADDRB_WIDTH-1 DOWNTO 0); -- AXI BMG Input and Output Port Declarations -- AXI Global Signals S_AClk : IN STD_LOGIC := '0'; S_ARESETN : IN STD_LOGIC := '0'; -- AXI Full/Lite Slave Write (write side) S_AXI_AWID : IN STD_LOGIC_VECTOR(C_AXI_ID_WIDTH-1 DOWNTO 0) := (OTHERS => '0'); S_AXI_AWADDR : IN STD_LOGIC_VECTOR(31 DOWNTO 0) := (OTHERS => '0'); S_AXI_AWLEN : IN STD_LOGIC_VECTOR(7 DOWNTO 0) := (OTHERS => '0'); S_AXI_AWSIZE : IN STD_LOGIC_VECTOR(2 DOWNTO 0) := (OTHERS => '0'); S_AXI_AWBURST : IN STD_LOGIC_VECTOR(1 DOWNTO 0) := (OTHERS => '0'); S_AXI_AWVALID : IN STD_LOGIC := '0'; S_AXI_AWREADY : OUT STD_LOGIC; S_AXI_WDATA : IN STD_LOGIC_VECTOR(C_WRITE_WIDTH_A-1 DOWNTO 0) := (OTHERS => '0'); S_AXI_WSTRB : IN STD_LOGIC_VECTOR(C_WEA_WIDTH-1 DOWNTO 0) := (OTHERS => '0'); S_AXI_WLAST : IN STD_LOGIC := '0'; S_AXI_WVALID : IN STD_LOGIC := '0'; S_AXI_WREADY : OUT STD_LOGIC; S_AXI_BID : OUT STD_LOGIC_VECTOR(C_AXI_ID_WIDTH-1 DOWNTO 0) := (OTHERS => '0'); S_AXI_BRESP : OUT STD_LOGIC_VECTOR(1 DOWNTO 0); S_AXI_BVALID : OUT STD_LOGIC; S_AXI_BREADY : IN STD_LOGIC := '0'; -- AXI Full/Lite Slave Read (Write side) S_AXI_ARID : IN STD_LOGIC_VECTOR(C_AXI_ID_WIDTH-1 DOWNTO 0) := (OTHERS => '0'); S_AXI_ARADDR : IN STD_LOGIC_VECTOR(31 DOWNTO 0) := (OTHERS => '0'); S_AXI_ARLEN : IN STD_LOGIC_VECTOR(8-1 DOWNTO 0) := (OTHERS => '0'); S_AXI_ARSIZE : IN STD_LOGIC_VECTOR(2 DOWNTO 0) := (OTHERS => '0'); S_AXI_ARBURST : IN STD_LOGIC_VECTOR(1 DOWNTO 0) := (OTHERS => '0'); S_AXI_ARVALID : IN STD_LOGIC := '0'; S_AXI_ARREADY : OUT STD_LOGIC; S_AXI_RID : OUT STD_LOGIC_VECTOR(C_AXI_ID_WIDTH-1 DOWNTO 0) := (OTHERS => '0'); S_AXI_RDATA : OUT STD_LOGIC_VECTOR(C_WRITE_WIDTH_B-1 DOWNTO 0); S_AXI_RRESP : OUT STD_LOGIC_VECTOR(2-1 DOWNTO 0); S_AXI_RLAST : OUT STD_LOGIC; S_AXI_RVALID : OUT STD_LOGIC; S_AXI_RREADY : IN STD_LOGIC := '0'; -- AXI Full/Lite Sideband Signals S_AXI_INJECTSBITERR : IN STD_LOGIC := '0'; S_AXI_INJECTDBITERR : IN STD_LOGIC := '0'; S_AXI_SBITERR : OUT STD_LOGIC; S_AXI_DBITERR : OUT STD_LOGIC; S_AXI_RDADDRECC : OUT STD_LOGIC_VECTOR(C_ADDRB_WIDTH-1 DOWNTO 0) ); END COMPONENT; --blk_mem_gen_v8_1 END coregen_comp_defs;
---------------------------------------------------------------------------------- -- Company: -- Engineer: Nox && Gabbe -- -- Create Date: 14:49:40 09/16/2014 -- Design Name: -- Module Name: big_little_endian - Behavioral -- Project Name: -- Target Devices: -- Tool versions: -- Description: Converts big endian in-data to little endian out-data -- -- Dependencies: -- -- Revision: -- Revision 0.01 - File Created -- Additional Comments: -- ---------------------------------------------------------------------------------- library IEEE; use IEEE.STD_LOGIC_1164.ALL; use IEEE.NUMERIC_STD.ALL; entity big_little_endian is port ( in_data : in std_logic_vector(31 downto 0); out_data : out std_logic_vector(31 downto 0) ); end big_little_endian; architecture Behavioral of big_little_endian is begin out_data <= in_data(7 downto 0) & in_data(15 downto 8) & in_data(23 downto 16) & in_data(31 downto 24); end Behavioral;
---------------------------------------------------------------------------------- -- Company: -- Engineer: Nox && Gabbe -- -- Create Date: 14:49:40 09/16/2014 -- Design Name: -- Module Name: big_little_endian - Behavioral -- Project Name: -- Target Devices: -- Tool versions: -- Description: Converts big endian in-data to little endian out-data -- -- Dependencies: -- -- Revision: -- Revision 0.01 - File Created -- Additional Comments: -- ---------------------------------------------------------------------------------- library IEEE; use IEEE.STD_LOGIC_1164.ALL; use IEEE.NUMERIC_STD.ALL; entity big_little_endian is port ( in_data : in std_logic_vector(31 downto 0); out_data : out std_logic_vector(31 downto 0) ); end big_little_endian; architecture Behavioral of big_little_endian is begin out_data <= in_data(7 downto 0) & in_data(15 downto 8) & in_data(23 downto 16) & in_data(31 downto 24); end Behavioral;
entity while1 is end entity; architecture test of while1 is begin process is variable n : integer := 5; begin while n > 0 loop n := n - 1; end loop; wait; end process; end architecture;
entity while1 is end entity; architecture test of while1 is begin process is variable n : integer := 5; begin while n > 0 loop n := n - 1; end loop; wait; end process; end architecture;
entity while1 is end entity; architecture test of while1 is begin process is variable n : integer := 5; begin while n > 0 loop n := n - 1; end loop; wait; end process; end architecture;
entity while1 is end entity; architecture test of while1 is begin process is variable n : integer := 5; begin while n > 0 loop n := n - 1; end loop; wait; end process; end architecture;
-- Wait in procedure entity test is end entity test; architecture test_arch of test is signal s : integer; procedure p1(signal s1 : inout integer; variable v1 : inout integer) is begin s1 <= 0; v1 := 0; wait for 4 us; s1 <= 1; v1 := 1; wait for 4 us; s1 <= 2; v1 := 2; end procedure; begin main: process variable v : integer; begin p1(s,v); report "s = " & integer'image(s); report "v = " & integer'image(v); assert false report "end of simulation" severity failure; end process; end architecture test_arch;
library IEEE; use IEEE.STD_LOGIC_1164.ALL; use work.CONSTANTS.all; use work.CONFIG_MANDELBROT.all; -- Uncomment the following library declaration if using -- arithmetic functions with Signed or Unsigned values use IEEE.NUMERIC_STD.ALL; -- Uncomment the following library declaration if instantiating -- any Xilinx primitives in this code. --library UNISIM; --use UNISIM.VComponents.all; entity increment is Port ( clock : in STD_LOGIC; reset : in STD_LOGIC; start : in STD_LOGIC; x_start : in STD_LOGIC_VECTOR (XY_RANGE-1 downto 0); y_start : in STD_LOGIC_VECTOR (XY_RANGE-1 downto 0); step : in STD_LOGIC_VECTOR (XY_RANGE-1 downto 0); x : out STD_LOGIC_VECTOR (XY_RANGE-1 downto 0); y : out STD_LOGIC_VECTOR (XY_RANGE-1 downto 0); stop : out std_logic); end increment; architecture Behavioral of increment is signal xs, ys : signed(XY_RANGE-1 downto 0); signal xcount : integer range 0 to XRES-1:=0; signal ycount : integer range 0 to YRES-1:=0; begin process(clock, reset,start,x_start,y_start,step) begin if reset='1' then xcount<=0; ycount<=0; xs<= signed(x_start); ys<= signed(y_start); stop<='0'; elsif rising_edge(clock) then if(start='1') then if xcount = XRES-1 then if ycount = YRES-1 then xcount <= 0; ycount <= 0; xs<=signed(x_start); ys<=signed(y_start); stop<='1'; else xcount <= 0; ycount <= ycount+1; ys<=ys+signed(step); xs<=signed(x_start); stop<='0'; end if; else stop<='0'; xs<=xs+signed(step); xcount<=xcount+1; end if; end if; end if; end process; x<=std_logic_vector(xs); y<=std_logic_vector(ys); end Behavioral;
------------------------------------------------------------------------------------------------- -- Company : CNES -- Author : Mickael Carl (CNES) -- Copyright : Copyright (c) CNES. -- Licensing : GNU GPLv3 ------------------------------------------------------------------------------------------------- -- Version : V1 -- Version history : -- V1 : 2015-04-20 : Mickael Carl (CNES): Creation ------------------------------------------------------------------------------------------------- -- File name : CNE_02000_bad.vhd -- File Creation date : 2015-04-20 -- Project name : VHDL Handbook CNES Edition ------------------------------------------------------------------------------------------------- -- Softwares : Microsoft Windows (Windows 7) - Editor (Eclipse + VEditor) ------------------------------------------------------------------------------------------------- -- Description : Handbook example: Identification of Finite State Machine: bad example -- -- Limitations : This file is an example of the VHDL handbook made by CNES. It is a stub aimed at -- demonstrating good practices in VHDL and as such, its design is minimalistic. -- It is provided as is, without any warranty. -- This example is compliant with the Handbook version 1. -- ------------------------------------------------------------------------------------------------- -- Naming conventions: -- -- i_Port: Input entity port -- o_Port: Output entity port -- b_Port: Bidirectional entity port -- g_My_Generic: Generic entity port -- -- c_My_Constant: Constant definition -- t_My_Type: Custom type definition -- -- My_Signal_n: Active low signal -- v_My_Variable: Variable -- sm_My_Signal: FSM signal -- pkg_Param: Element Param coming from a package -- -- My_Signal_re: Rising edge detection of My_Signal -- My_Signal_fe: Falling edge detection of My_Signal -- My_Signal_rX: X times registered My_Signal signal -- -- P_Process_Name: Process -- ------------------------------------------------------------------------------------------------- library IEEE; use IEEE.std_logic_1164.all; use IEEE.numeric_std.all; entity CNE_02000_bad is port ( i_Clock : in std_logic; -- Clock input i_Reset_n : in std_logic; -- Reset input i_Start : in std_logic; -- Start counter signal i_Stop : in std_logic -- Stop counter signal ); end CNE_02000_bad; architecture Behavioral of CNE_02000_bad is constant c_Length : std_logic_vector(3 downto 0) := (others => '1'); -- How long we should count --CODE type t_state is (init, loading, enabled, finished); -- Enumerated type for state encoding signal State : t_state; -- State signal --CODE signal Raz : std_logic; -- Load the length value and initialize the counter signal Enable : std_logic; -- Counter enable signal signal Length : std_logic_vector(3 downto 0); -- Counter length for counting signal End_Count : std_logic; -- End signal of counter begin -- A simple counter with loading length and enable signal Counter:Counter port map ( i_Clock => i_Clock, i_Reset_n => i_Reset_n, i_Raz => Raz, i_Enable => Enable, i_Length => Length, o_Done => End_Count ); -- FSM process controlling the counter. Start or stop it in function of the input (i_Start & i_Stop), -- load the length value, and wait for it to finish P_FSM:process(i_Reset_n, i_Clock) begin if (i_Reset_n='0') then State <= init; elsif (rising_edge(i_Clock)) then case State is when init => -- Set the length value Length <= c_Length; State <= loading; when loading => -- Load the counter and initialize it Raz <= '1'; State <= enabled; when enabled => -- Start or stop counting depending on inputs until it finishes Raz <= '0'; if (End_Count='0') then Enable <= i_Start xor not i_Stop; State <= Enabled; else Enable <= '0'; State <= finished; end if; when others => State <= init; end case; end if; end process; end Behavioral;
-- NEED RESULT: ENT00013: Associated scalar generics with static subtypes passed ------------------------------------------------------------------------------- -- -- Copyright (c) 1989 by Intermetrics, Inc. -- All rights reserved. -- ------------------------------------------------------------------------------- -- -- TEST NAME: -- -- CT00013 -- -- AUTHOR: -- -- A. Wilmot -- -- TEST OBJECTIVES: -- -- 1.1.1.1 (2) -- 1.1.1.1 (3) -- -- DESIGN UNIT ORDERING: -- -- ENT00013(ARCH00013) -- ENT00013_Test_Bench(ARCH00013_Test_Bench) -- -- REVISION HISTORY: -- -- 25-JUN-1987 - initial revision -- -- NOTES: -- -- self-checking -- automatically generated -- use WORK.STANDARD_TYPES.all ; entity ENT00013 is generic ( i_boolean_1, i_boolean_2 : boolean := c_boolean_1 ; i_bit_1, i_bit_2 : bit := c_bit_1 ; i_severity_level_1, i_severity_level_2 : severity_level := c_severity_level_1 ; i_character_1, i_character_2 : character := c_character_1 ; i_t_enum1_1, i_t_enum1_2 : t_enum1 := c_t_enum1_1 ; i_st_enum1_1, i_st_enum1_2 : st_enum1 := c_st_enum1_1 ; i_integer_1, i_integer_2 : integer := c_integer_1 ; i_t_int1_1, i_t_int1_2 : t_int1 := c_t_int1_1 ; i_st_int1_1, i_st_int1_2 : st_int1 := c_st_int1_1 ; i_time_1, i_time_2 : time := c_time_1 ; i_t_phys1_1, i_t_phys1_2 : t_phys1 := c_t_phys1_1 ; i_st_phys1_1, i_st_phys1_2 : st_phys1 := c_st_phys1_1 ; i_real_1, i_real_2 : real := c_real_1 ; i_t_real1_1, i_t_real1_2 : t_real1 := c_t_real1_1 ; i_st_real1_1, i_st_real1_2 : st_real1 := c_st_real1_1 ) ; begin end ENT00013 ; -- architecture ARCH00013 of ENT00013 is begin process variable correct : boolean := true ; begin correct := correct and i_boolean_1 = c_boolean_2 and i_boolean_2 = c_boolean_2 ; correct := correct and i_bit_1 = c_bit_2 and i_bit_2 = c_bit_2 ; correct := correct and i_severity_level_1 = c_severity_level_2 and i_severity_level_2 = c_severity_level_2 ; correct := correct and i_character_1 = c_character_2 and i_character_2 = c_character_2 ; correct := correct and i_t_enum1_1 = c_t_enum1_2 and i_t_enum1_2 = c_t_enum1_2 ; correct := correct and i_st_enum1_1 = c_st_enum1_2 and i_st_enum1_2 = c_st_enum1_2 ; correct := correct and i_integer_1 = c_integer_2 and i_integer_2 = c_integer_2 ; correct := correct and i_t_int1_1 = c_t_int1_2 and i_t_int1_2 = c_t_int1_2 ; correct := correct and i_st_int1_1 = c_st_int1_2 and i_st_int1_2 = c_st_int1_2 ; correct := correct and i_time_1 = c_time_2 and i_time_2 = c_time_2 ; correct := correct and i_t_phys1_1 = c_t_phys1_2 and i_t_phys1_2 = c_t_phys1_2 ; correct := correct and i_st_phys1_1 = c_st_phys1_2 and i_st_phys1_2 = c_st_phys1_2 ; correct := correct and i_real_1 = c_real_2 and i_real_2 = c_real_2 ; correct := correct and i_t_real1_1 = c_t_real1_2 and i_t_real1_2 = c_t_real1_2 ; correct := correct and i_st_real1_1 = c_st_real1_2 and i_st_real1_2 = c_st_real1_2 ; test_report ( "ENT00013" , "Associated scalar generics with static subtypes" , correct) ; wait ; end process ; end ARCH00013 ; -- use WORK.STANDARD_TYPES.all ; entity ENT00013_Test_Bench is end ENT00013_Test_Bench ; -- architecture ARCH00013_Test_Bench of ENT00013_Test_Bench is begin L1: block component UUT generic ( i_boolean_1, i_boolean_2 : boolean ; i_bit_1, i_bit_2 : bit ; i_severity_level_1, i_severity_level_2 : severity_level ; i_character_1, i_character_2 : character ; i_t_enum1_1, i_t_enum1_2 : t_enum1 ; i_st_enum1_1, i_st_enum1_2 : st_enum1 ; i_integer_1, i_integer_2 : integer ; i_t_int1_1, i_t_int1_2 : t_int1 ; i_st_int1_1, i_st_int1_2 : st_int1 ; i_time_1, i_time_2 : time ; i_t_phys1_1, i_t_phys1_2 : t_phys1 ; i_st_phys1_1, i_st_phys1_2 : st_phys1 ; i_real_1, i_real_2 : real ; i_t_real1_1, i_t_real1_2 : t_real1 ; i_st_real1_1, i_st_real1_2 : st_real1 ) ; end component ; for CIS1 : UUT use entity WORK.ENT00013 ( ARCH00013 ) ; begin CIS1 : UUT generic map ( c_boolean_2, c_boolean_2, c_bit_2, c_bit_2, c_severity_level_2, c_severity_level_2, c_character_2, c_character_2, c_t_enum1_2, c_t_enum1_2, c_st_enum1_2, c_st_enum1_2, c_integer_2, c_integer_2, c_t_int1_2, c_t_int1_2, c_st_int1_2, c_st_int1_2, c_time_2, c_time_2, c_t_phys1_2, c_t_phys1_2, c_st_phys1_2, c_st_phys1_2, c_real_2, c_real_2, c_t_real1_2, c_t_real1_2, c_st_real1_2, c_st_real1_2 ) ; end block L1 ; end ARCH00013_Test_Bench ;
-- file: clkGen.vhd -- -- (c) Copyright 2008 - 2011 Xilinx, Inc. All rights reserved. -- -- This file contains confidential and proprietary information -- of Xilinx, Inc. and is protected under U.S. and -- international copyright and other intellectual property -- laws. -- -- DISCLAIMER -- This disclaimer is not a license and does not grant any -- rights to the materials distributed herewith. Except as -- otherwise provided in a valid license issued to you by -- Xilinx, and to the maximum extent permitted by applicable -- law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND -- WITH ALL FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES -- AND CONDITIONS, EXPRESS, IMPLIED, OR STATUTORY, INCLUDING -- BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, NON- -- INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE; and -- (2) Xilinx shall not be liable (whether in contract or tort, -- including negligence, or under any other theory of -- liability) for any loss or damage of any kind or nature -- related to, arising under or in connection with these -- materials, including for any direct, or any indirect, -- special, incidental, or consequential loss or damage -- (including loss of data, profits, goodwill, or any type of -- loss or damage suffered as a result of any action brought -- by a third party) even if such damage or loss was -- reasonably foreseeable or Xilinx had been advised of the -- possibility of the same. -- -- CRITICAL APPLICATIONS -- Xilinx products are not designed or intended to be fail- -- safe, or for use in any application requiring fail-safe -- performance, such as life-support or safety devices or -- systems, Class III medical devices, nuclear facilities, -- applications related to the deployment of airbags, or any -- other applications that could lead to death, personal -- injury, or severe property or environmental damage -- (individually and collectively, "Critical -- Applications"). Customer assumes the sole risk and -- liability of any use of Xilinx products in Critical -- Applications, subject only to applicable laws and -- regulations governing limitations on product liability. -- -- THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS -- PART OF THIS FILE AT ALL TIMES. -- ------------------------------------------------------------------------------ -- User entered comments ------------------------------------------------------------------------------ -- None -- ------------------------------------------------------------------------------ -- "Output Output Phase Duty Pk-to-Pk Phase" -- "Clock Freq (MHz) (degrees) Cycle (%) Jitter (ps) Error (ps)" ------------------------------------------------------------------------------ -- CLK_OUT1___100.000______0.000______50.0______200.000____150.000 -- CLK_OUT2____50.000______0.000______50.0______600.000____150.000 -- CLK_OUT3____10.000______0.000______50.0______300.000____150.000 -- ------------------------------------------------------------------------------ -- "Input Clock Freq (MHz) Input Jitter (UI)" ------------------------------------------------------------------------------ -- __primary_________100.000____________0.010 library ieee; use ieee.std_logic_1164.all; use ieee.std_logic_unsigned.all; use ieee.std_logic_arith.all; use ieee.numeric_std.all; library unisim; use unisim.vcomponents.all; entity clkGen is port (-- Clock in ports CLK_IN1 : in std_logic; -- Clock out ports CLK_OUT1 : out std_logic; CLK_OUT2 : out std_logic; CLK_OUT3 : out std_logic ); end clkGen; architecture xilinx of clkGen is attribute CORE_GENERATION_INFO : string; attribute CORE_GENERATION_INFO of xilinx : architecture is "clkGen,clk_wiz_v3_6,{component_name=clkGen,use_phase_alignment=true,use_min_o_jitter=false,use_max_i_jitter=false,use_dyn_phase_shift=false,use_inclk_switchover=false,use_dyn_reconfig=false,feedback_source=FDBK_AUTO,primtype_sel=DCM_SP,num_out_clk=3,clkin1_period=10.000,clkin2_period=10.000,use_power_down=false,use_reset=false,use_locked=false,use_inclk_stopped=false,use_status=false,use_freeze=false,use_clk_valid=false,feedback_type=SINGLE,clock_mgr_type=MANUAL,manual_override=true}"; -- Input clock buffering / unused connectors signal clkin1 : std_logic; -- Output clock buffering signal clk_out1_internal : std_logic; signal clkfb : std_logic; signal clk0 : std_logic; signal clkfx : std_logic; signal clkdv : std_logic; signal clkfbout : std_logic; signal locked_internal : std_logic; signal status_internal : std_logic_vector(7 downto 0); begin -- Input buffering -------------------------------------- clkin1_buf : IBUFG port map (O => clkin1, I => CLK_IN1); -- Clocking primitive -------------------------------------- -- Instantiation of the DCM primitive -- * Unused inputs are tied off -- * Unused outputs are labeled unused dcm_sp_inst: DCM_SP generic map (CLKDV_DIVIDE => 10.000, CLKFX_DIVIDE => 4, CLKFX_MULTIPLY => 2, CLKIN_DIVIDE_BY_2 => FALSE, CLKIN_PERIOD => 10.000, CLKOUT_PHASE_SHIFT => "NONE", CLK_FEEDBACK => "1X", DESKEW_ADJUST => "SYSTEM_SYNCHRONOUS", PHASE_SHIFT => 0, STARTUP_WAIT => FALSE) port map -- Input clock (CLKIN => clkin1, CLKFB => clkfb, -- Output clocks CLK0 => clk0, CLK90 => open, CLK180 => open, CLK270 => open, CLK2X => open, CLK2X180 => open, CLKFX => clkfx, CLKFX180 => open, CLKDV => clkdv, -- Ports for dynamic phase shift PSCLK => '0', PSEN => '0', PSINCDEC => '0', PSDONE => open, -- Other control and status signals LOCKED => locked_internal, STATUS => status_internal, RST => '0', -- Unused pin, tie low DSSEN => '0'); -- Output buffering ------------------------------------- clkfb <= clk_out1_internal; clkout1_buf : BUFG port map (O => clk_out1_internal, I => clk0); CLK_OUT1 <= clk_out1_internal; clkout2_buf : BUFG port map (O => CLK_OUT2, I => clkfx); clkout3_buf : BUFG port map (O => CLK_OUT3, I => clkdv); end xilinx;
-- file: clkGen.vhd -- -- (c) Copyright 2008 - 2011 Xilinx, Inc. All rights reserved. -- -- This file contains confidential and proprietary information -- of Xilinx, Inc. and is protected under U.S. and -- international copyright and other intellectual property -- laws. -- -- DISCLAIMER -- This disclaimer is not a license and does not grant any -- rights to the materials distributed herewith. Except as -- otherwise provided in a valid license issued to you by -- Xilinx, and to the maximum extent permitted by applicable -- law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND -- WITH ALL FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES -- AND CONDITIONS, EXPRESS, IMPLIED, OR STATUTORY, INCLUDING -- BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, NON- -- INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE; and -- (2) Xilinx shall not be liable (whether in contract or tort, -- including negligence, or under any other theory of -- liability) for any loss or damage of any kind or nature -- related to, arising under or in connection with these -- materials, including for any direct, or any indirect, -- special, incidental, or consequential loss or damage -- (including loss of data, profits, goodwill, or any type of -- loss or damage suffered as a result of any action brought -- by a third party) even if such damage or loss was -- reasonably foreseeable or Xilinx had been advised of the -- possibility of the same. -- -- CRITICAL APPLICATIONS -- Xilinx products are not designed or intended to be fail- -- safe, or for use in any application requiring fail-safe -- performance, such as life-support or safety devices or -- systems, Class III medical devices, nuclear facilities, -- applications related to the deployment of airbags, or any -- other applications that could lead to death, personal -- injury, or severe property or environmental damage -- (individually and collectively, "Critical -- Applications"). Customer assumes the sole risk and -- liability of any use of Xilinx products in Critical -- Applications, subject only to applicable laws and -- regulations governing limitations on product liability. -- -- THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS -- PART OF THIS FILE AT ALL TIMES. -- ------------------------------------------------------------------------------ -- User entered comments ------------------------------------------------------------------------------ -- None -- ------------------------------------------------------------------------------ -- "Output Output Phase Duty Pk-to-Pk Phase" -- "Clock Freq (MHz) (degrees) Cycle (%) Jitter (ps) Error (ps)" ------------------------------------------------------------------------------ -- CLK_OUT1___100.000______0.000______50.0______200.000____150.000 -- CLK_OUT2____50.000______0.000______50.0______600.000____150.000 -- CLK_OUT3____10.000______0.000______50.0______300.000____150.000 -- ------------------------------------------------------------------------------ -- "Input Clock Freq (MHz) Input Jitter (UI)" ------------------------------------------------------------------------------ -- __primary_________100.000____________0.010 library ieee; use ieee.std_logic_1164.all; use ieee.std_logic_unsigned.all; use ieee.std_logic_arith.all; use ieee.numeric_std.all; library unisim; use unisim.vcomponents.all; entity clkGen is port (-- Clock in ports CLK_IN1 : in std_logic; -- Clock out ports CLK_OUT1 : out std_logic; CLK_OUT2 : out std_logic; CLK_OUT3 : out std_logic ); end clkGen; architecture xilinx of clkGen is attribute CORE_GENERATION_INFO : string; attribute CORE_GENERATION_INFO of xilinx : architecture is "clkGen,clk_wiz_v3_6,{component_name=clkGen,use_phase_alignment=true,use_min_o_jitter=false,use_max_i_jitter=false,use_dyn_phase_shift=false,use_inclk_switchover=false,use_dyn_reconfig=false,feedback_source=FDBK_AUTO,primtype_sel=DCM_SP,num_out_clk=3,clkin1_period=10.000,clkin2_period=10.000,use_power_down=false,use_reset=false,use_locked=false,use_inclk_stopped=false,use_status=false,use_freeze=false,use_clk_valid=false,feedback_type=SINGLE,clock_mgr_type=MANUAL,manual_override=true}"; -- Input clock buffering / unused connectors signal clkin1 : std_logic; -- Output clock buffering signal clk_out1_internal : std_logic; signal clkfb : std_logic; signal clk0 : std_logic; signal clkfx : std_logic; signal clkdv : std_logic; signal clkfbout : std_logic; signal locked_internal : std_logic; signal status_internal : std_logic_vector(7 downto 0); begin -- Input buffering -------------------------------------- clkin1_buf : IBUFG port map (O => clkin1, I => CLK_IN1); -- Clocking primitive -------------------------------------- -- Instantiation of the DCM primitive -- * Unused inputs are tied off -- * Unused outputs are labeled unused dcm_sp_inst: DCM_SP generic map (CLKDV_DIVIDE => 10.000, CLKFX_DIVIDE => 4, CLKFX_MULTIPLY => 2, CLKIN_DIVIDE_BY_2 => FALSE, CLKIN_PERIOD => 10.000, CLKOUT_PHASE_SHIFT => "NONE", CLK_FEEDBACK => "1X", DESKEW_ADJUST => "SYSTEM_SYNCHRONOUS", PHASE_SHIFT => 0, STARTUP_WAIT => FALSE) port map -- Input clock (CLKIN => clkin1, CLKFB => clkfb, -- Output clocks CLK0 => clk0, CLK90 => open, CLK180 => open, CLK270 => open, CLK2X => open, CLK2X180 => open, CLKFX => clkfx, CLKFX180 => open, CLKDV => clkdv, -- Ports for dynamic phase shift PSCLK => '0', PSEN => '0', PSINCDEC => '0', PSDONE => open, -- Other control and status signals LOCKED => locked_internal, STATUS => status_internal, RST => '0', -- Unused pin, tie low DSSEN => '0'); -- Output buffering ------------------------------------- clkfb <= clk_out1_internal; clkout1_buf : BUFG port map (O => clk_out1_internal, I => clk0); CLK_OUT1 <= clk_out1_internal; clkout2_buf : BUFG port map (O => CLK_OUT2, I => clkfx); clkout3_buf : BUFG port map (O => CLK_OUT3, I => clkdv); end xilinx;
-- file: clkGen.vhd -- -- (c) Copyright 2008 - 2011 Xilinx, Inc. All rights reserved. -- -- This file contains confidential and proprietary information -- of Xilinx, Inc. and is protected under U.S. and -- international copyright and other intellectual property -- laws. -- -- DISCLAIMER -- This disclaimer is not a license and does not grant any -- rights to the materials distributed herewith. Except as -- otherwise provided in a valid license issued to you by -- Xilinx, and to the maximum extent permitted by applicable -- law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND -- WITH ALL FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES -- AND CONDITIONS, EXPRESS, IMPLIED, OR STATUTORY, INCLUDING -- BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, NON- -- INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE; and -- (2) Xilinx shall not be liable (whether in contract or tort, -- including negligence, or under any other theory of -- liability) for any loss or damage of any kind or nature -- related to, arising under or in connection with these -- materials, including for any direct, or any indirect, -- special, incidental, or consequential loss or damage -- (including loss of data, profits, goodwill, or any type of -- loss or damage suffered as a result of any action brought -- by a third party) even if such damage or loss was -- reasonably foreseeable or Xilinx had been advised of the -- possibility of the same. -- -- CRITICAL APPLICATIONS -- Xilinx products are not designed or intended to be fail- -- safe, or for use in any application requiring fail-safe -- performance, such as life-support or safety devices or -- systems, Class III medical devices, nuclear facilities, -- applications related to the deployment of airbags, or any -- other applications that could lead to death, personal -- injury, or severe property or environmental damage -- (individually and collectively, "Critical -- Applications"). Customer assumes the sole risk and -- liability of any use of Xilinx products in Critical -- Applications, subject only to applicable laws and -- regulations governing limitations on product liability. -- -- THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS -- PART OF THIS FILE AT ALL TIMES. -- ------------------------------------------------------------------------------ -- User entered comments ------------------------------------------------------------------------------ -- None -- ------------------------------------------------------------------------------ -- "Output Output Phase Duty Pk-to-Pk Phase" -- "Clock Freq (MHz) (degrees) Cycle (%) Jitter (ps) Error (ps)" ------------------------------------------------------------------------------ -- CLK_OUT1___100.000______0.000______50.0______200.000____150.000 -- CLK_OUT2____50.000______0.000______50.0______600.000____150.000 -- CLK_OUT3____10.000______0.000______50.0______300.000____150.000 -- ------------------------------------------------------------------------------ -- "Input Clock Freq (MHz) Input Jitter (UI)" ------------------------------------------------------------------------------ -- __primary_________100.000____________0.010 library ieee; use ieee.std_logic_1164.all; use ieee.std_logic_unsigned.all; use ieee.std_logic_arith.all; use ieee.numeric_std.all; library unisim; use unisim.vcomponents.all; entity clkGen is port (-- Clock in ports CLK_IN1 : in std_logic; -- Clock out ports CLK_OUT1 : out std_logic; CLK_OUT2 : out std_logic; CLK_OUT3 : out std_logic ); end clkGen; architecture xilinx of clkGen is attribute CORE_GENERATION_INFO : string; attribute CORE_GENERATION_INFO of xilinx : architecture is "clkGen,clk_wiz_v3_6,{component_name=clkGen,use_phase_alignment=true,use_min_o_jitter=false,use_max_i_jitter=false,use_dyn_phase_shift=false,use_inclk_switchover=false,use_dyn_reconfig=false,feedback_source=FDBK_AUTO,primtype_sel=DCM_SP,num_out_clk=3,clkin1_period=10.000,clkin2_period=10.000,use_power_down=false,use_reset=false,use_locked=false,use_inclk_stopped=false,use_status=false,use_freeze=false,use_clk_valid=false,feedback_type=SINGLE,clock_mgr_type=MANUAL,manual_override=true}"; -- Input clock buffering / unused connectors signal clkin1 : std_logic; -- Output clock buffering signal clk_out1_internal : std_logic; signal clkfb : std_logic; signal clk0 : std_logic; signal clkfx : std_logic; signal clkdv : std_logic; signal clkfbout : std_logic; signal locked_internal : std_logic; signal status_internal : std_logic_vector(7 downto 0); begin -- Input buffering -------------------------------------- clkin1_buf : IBUFG port map (O => clkin1, I => CLK_IN1); -- Clocking primitive -------------------------------------- -- Instantiation of the DCM primitive -- * Unused inputs are tied off -- * Unused outputs are labeled unused dcm_sp_inst: DCM_SP generic map (CLKDV_DIVIDE => 10.000, CLKFX_DIVIDE => 4, CLKFX_MULTIPLY => 2, CLKIN_DIVIDE_BY_2 => FALSE, CLKIN_PERIOD => 10.000, CLKOUT_PHASE_SHIFT => "NONE", CLK_FEEDBACK => "1X", DESKEW_ADJUST => "SYSTEM_SYNCHRONOUS", PHASE_SHIFT => 0, STARTUP_WAIT => FALSE) port map -- Input clock (CLKIN => clkin1, CLKFB => clkfb, -- Output clocks CLK0 => clk0, CLK90 => open, CLK180 => open, CLK270 => open, CLK2X => open, CLK2X180 => open, CLKFX => clkfx, CLKFX180 => open, CLKDV => clkdv, -- Ports for dynamic phase shift PSCLK => '0', PSEN => '0', PSINCDEC => '0', PSDONE => open, -- Other control and status signals LOCKED => locked_internal, STATUS => status_internal, RST => '0', -- Unused pin, tie low DSSEN => '0'); -- Output buffering ------------------------------------- clkfb <= clk_out1_internal; clkout1_buf : BUFG port map (O => clk_out1_internal, I => clk0); CLK_OUT1 <= clk_out1_internal; clkout2_buf : BUFG port map (O => CLK_OUT2, I => clkfx); clkout3_buf : BUFG port map (O => CLK_OUT3, I => clkdv); end xilinx;
------------------------------------------------------------------------------- -- -- File: MIPI_DPHY_Receiver.vhd -- Author: Elod Gyorgy -- Original Project: MIPI D-PHY Receiver IP -- Date: 15 December 2017 -- ------------------------------------------------------------------------------- --MIT License -- --Copyright (c) 2016 Digilent -- --Permission is hereby granted, free of charge, to any person obtaining a copy --of this software and associated documentation files (the "Software"), to deal --in the Software without restriction, including without limitation the rights --to use, copy, modify, merge, publish, distribute, sublicense, and/or sell --copies of the Software, and to permit persons to whom the Software is --furnished to do so, subject to the following conditions: -- --The above copyright notice and this permission notice shall be included in all --copies or substantial portions of the Software. -- --THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR --IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, --FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE --AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER --LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, --OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE --SOFTWARE. -- ------------------------------------------------------------------------------- -- -- Purpose: -- The MIPI_DPHY_Receiver IP is an implementation of a subset of the PHY-level -- protocol of the MIPI D-PHY 1.0 specification. It bundles a SCNN clock lane -- and one or more SFEN data lanes to implement the reciever end of a Lane -- Interconnect. In an FPGA implementation of the communication stack -- it occupies the lowest level. On top of it, over the PHY-Protocol Interface -- (PPI) connects the protocol layer specific to the application, like the Camera -- Serial Interface (CSI). ------------------------------------------------------------------------------- library ieee; use ieee.std_logic_1164.all; use ieee.numeric_std.all; library UNISIM; use UNISIM.VComponents.all; use work.DPHY_types.ALL; use work.DebugLib.all; entity MIPI_DPHY_Receiver is generic ( -- Users to add parameters here kVersionMajor : natural := 0; -- TCL-propagated from VLNV kVersionMinor : natural := 0; -- TCL-propagated from VLNV kNoOfDataLanes : natural range 1 to 2:= 2; kGenerateMMCM : boolean := false; kGenerateAXIL : boolean := false; kAddDelayClk_ps : integer := 0; kAddDelayData0_ps : integer := 0; kAddDelayData1_ps : integer := 0; kRefClkFreqHz : integer := 200_000_000; -- TCL-propagated kDebug : boolean := true; kLPFromLane0 : boolean := true; kSharedLogic : boolean := true; -- Parameters of Axi Slave Bus Interface S_AXI_LITE C_S_AXI_LITE_DATA_WIDTH : integer := 32; C_S_AXI_LITE_ADDR_WIDTH : integer := 4; C_S_AXI_LITE_FREQ_HZ : integer := 100_000_000 -- TCL-propagated ); port ( -- Users to add ports here dphy_clk_hs_p : in std_logic; dphy_clk_hs_n : in std_logic; dphy_clk_lp_p : in std_logic; dphy_clk_lp_n : in std_logic; dphy_data_hs_p : in std_logic_vector(kNoOfDataLanes-1 downto 0); dphy_data_hs_n : in std_logic_vector(kNoOfDataLanes-1 downto 0); dphy_data_lp_p : in std_logic_vector(kNoOfDataLanes-1 downto 0); dphy_data_lp_n : in std_logic_vector(kNoOfDataLanes-1 downto 0); RefClk : in std_logic; --200MHz aRst : in std_logic; --Only to be de-asserted when RefClk is valid rDlyCtrlLockedIn : in std_logic; --if IDELAYCTRL instantiated externally, input its locked signal rDlyCtrlLockedOut : out std_logic; --if IDELAYCTRL instantiated internally, output its locked signal --PHY-Protocol Interface (PPI) --Clock lane RxDDRClkHS : out std_logic; --Receiver DDR Clock (may be used by the protocol) aRxClkActiveHS : out std_logic; --Receiver Clock Active aClkStopstate : out std_logic; --Lane is in Stop state aClkEnable : in std_logic; --Enable Lane Module aClkUlpsActiveNot : out std_logic; --ULP State (not) Active aRxUlpsClkNot : out std_logic; --Receive Ultra-Low Power State on Clock Lane aClkForceRxmode : in std_logic; --Force Lane Module Into Receive mode / Wait for Stop state aClkErrControl : out std_logic; --Control Error RxByteClkHS : out std_logic; --High-Speed Receive Byte Clock --Data lane 0 aD0Stopstate : out std_logic; --Lane is in Stop state aD0Enable : in std_logic; --Enable Lane Module aD0UlpsActiveNot : out std_logic; --ULP State (not) Active rbD0RxDataHS : out std_logic_vector(7 downto 0); --High-Speed Receive Data (least-significant first) rbD0RxValidHS : out std_logic; --High-Speed Receive Data Valid rbD0RxActiveHS : out std_logic; --High-Speed Reception Active rbD0RxSyncHS : out std_logic; --Receiver Synchronization Observed (pulse) rbD0ErrSotHS : out std_logic; --Start-of-Transmission (SoT) Error (pulse) rbD0ErrSotSyncHS : out std_logic; --Start-of-Transmission (SoT) Synchronization Error (pulse) aD0ForceRxmode : in std_logic; --Force Lane Module Into Receive mode / Wait for Stop state D0RxClkEsc : out std_logic; --Escape mode Receive Clock (not periodic) aD0RxDataEsc : out std_logic_vector(7 downto 0); --Escape mode Receive Data aD0RxValidEsc : out std_logic; --Escape mode Receive Data Valid aD0RxLpdtEsc : out std_logic; --Escape Low-Power Data Receive Mode aD0RxUlpsEsc : out std_logic; --Escape Ultra-Low Power (Receive) mode aD0RxTriggerEsc : out std_logic_vector(3 downto 0); --Escape mode Receive Trigger 3-0 aD0ErrEsc : out std_logic; --Escape Entry Error aD0ErrControl : out std_logic; --Control Error --Data lane 1 aD1Stopstate : out std_logic; --Lane is in Stop state aD1Enable : in std_logic; --Enable Lane Module aD1UlpsActiveNot : out std_logic; --ULP State (not) Active rbD1RxDataHS : out std_logic_vector(7 downto 0); --High-Speed Receive Data (least-significant first) rbD1RxValidHS : out std_logic; --High-Speed Receive Data Valid rbD1RxActiveHS : out std_logic; --High-Speed Reception Active rbD1RxSyncHS : out std_logic; --Receiver Synchronization Observed (pulse) rbD1ErrSotHS : out std_logic; --Start-of-Transmission (SoT) Error (pulse) rbD1ErrSotSyncHS : out std_logic; --Start-of-Transmission (SoT) Synchronization Error (pulse) aD1ForceRxmode : in std_logic; --Force Lane Module Into Receive mode / Wait for Stop state D1RxClkEsc : out std_logic; --Escape mode Receive Clock (not periodic) aD1RxDataEsc : out std_logic_vector(7 downto 0); --Escape mode Receive Data aD1RxValidEsc : out std_logic; --Escape mode Receive Data Valid aD1RxLpdtEsc : out std_logic; --Escape Low-Power Data Receive Mode aD1RxUlpsEsc : out std_logic; --Escape Ultra-Low Power (Receive) mode aD1RxTriggerEsc : out std_logic_vector(3 downto 0); --Escape mode Receive Trigger 3-0 aD1ErrEsc : out std_logic; --Escape Entry Error aD1ErrControl : out std_logic; --Control Error -- User ports ends -- Do not modify the ports beyond this line -- Ports of Axi Slave Bus Interface S_AXI_LITE s_axi_lite_aclk : in std_logic; s_axi_lite_aresetn : in std_logic; s_axi_lite_awaddr : in std_logic_vector(C_S_AXI_LITE_ADDR_WIDTH-1 downto 0); s_axi_lite_awprot : in std_logic_vector(2 downto 0); s_axi_lite_awvalid : in std_logic; s_axi_lite_awready : out std_logic; s_axi_lite_wdata : in std_logic_vector(C_S_AXI_LITE_DATA_WIDTH-1 downto 0); s_axi_lite_wstrb : in std_logic_vector((C_S_AXI_LITE_DATA_WIDTH/8)-1 downto 0); s_axi_lite_wvalid : in std_logic; s_axi_lite_wready : out std_logic; s_axi_lite_bresp : out std_logic_vector(1 downto 0); s_axi_lite_bvalid : out std_logic; s_axi_lite_bready : in std_logic; s_axi_lite_araddr : in std_logic_vector(C_S_AXI_LITE_ADDR_WIDTH-1 downto 0); s_axi_lite_arprot : in std_logic_vector(2 downto 0); s_axi_lite_arvalid : in std_logic; s_axi_lite_arready : out std_logic; s_axi_lite_rdata : out std_logic_vector(C_S_AXI_LITE_DATA_WIDTH-1 downto 0); s_axi_lite_rresp : out std_logic_vector(1 downto 0); s_axi_lite_rvalid : out std_logic; s_axi_lite_rready : in std_logic ); end MIPI_DPHY_Receiver; architecture arch_imp of MIPI_DPHY_Receiver is function MIN(LEFT, RIGHT: INTEGER) return INTEGER is begin if LEFT < RIGHT then return LEFT; else return RIGHT; end if; end; constant kDlyRstDelay : natural := 32; constant kGenerateIDELAYCTRL : boolean := kSharedLogic; constant kCtlClkFreqHz : natural := kRefClkFreqHz; --make all delays positive constant kDelayAdjust : integer := MIN(kAddDelayClk_ps, MIN(kAddDelayData0_ps, kAddDelayData1_ps)); constant kAddAdjDelayClk_ps : integer := kAddDelayClk_ps - kDelayAdjust; constant kAddAdjDelayData0_ps : integer := kAddDelayData0_ps - kDelayAdjust; constant kAddAdjDelayData1_ps : integer := kAddDelayData1_ps - kDelayAdjust; type dataLaneHSType is array(kNoOfDataLanes-1 downto 0) of std_logic; type dataLaneLPType is array(kNoOfDataLanes-1 downto 0) of std_logic_vector(1 downto 0); type dataLaneWordType is array(kNoOfDataLanes-1 downto 0) of std_logic_vector(7 downto 0); type dLP_int_t is array (kNoOfDataLanes-1 downto 0) of std_logic_vector(7 downto 0); signal dLP0_in, dLP1_in, dLP0_out, dLP1_out : dLP_int_t; signal HS_Clock : std_logic; signal HS_Data : dataLaneHSType; signal LP_Clock : std_logic_vector(1 downto 0); signal aLPBuf, cLP_in, cLP_out : dataLaneLPType; signal dDataWord : dataLaneWordType; signal dDataAligned : dataLaneHSType; signal RxDDRClkHS_int, RxByteClkHS_int, aRxClkActiveHS_int : std_logic; signal cHSClkLocked : std_logic; signal xEnable, xSoftRst : std_logic; signal rDlyLckd, rDlyRst, rExtRst, rSoftRst, rSoftEnable, rIntRst : std_logic; signal rDlyRstCnt : natural range 0 to kDlyRstDelay - 1 := kDlyRstDelay - 1; signal aLaneSCNNEnable : std_logic; signal aLaneSFENEnable : std_logic_vector(kNoOfDataLanes-1 downto 0); type PPIRxLaneType is record aStopstate : std_logic; --Lane is in Stop state aEnable : std_logic; --Enable Lane Module aUlpsActiveNot : std_logic; --ULP State (not) Active rbRxDataHS : std_logic_vector(7 downto 0); --High-Speed Receive Data (least-significant first) rbRxValidHS : std_logic; --High-Speed Receive Data Valid rbRxActiveHS : std_logic; --High-Speed Reception Active rbRxSyncHS : std_logic; --Receiver Synchronization Observed (pulse) rbErrSotHS : std_logic; --Start-of-Transmission (SoT) Error (pulse) rbErrSotSyncHS : std_logic; --Start-of-Transmission (SoT) Synchronization Error (pulse) aForceRxmode : std_logic; --Force Lane Module Into Receive mode / Wait for Stop state RxClkEsc : std_logic; --Escape mode Receive Clock (not periodic) aRxDataEsc : std_logic_vector(7 downto 0); --Escape mode Receive Data aRxValidEsc : std_logic; --Escape mode Receive Data Valid aRxLpdtEsc : std_logic; --Escape Low-Power Data Receive Mode aRxUlpsEsc : std_logic; --Escape Ultra-Low Power (Receive) mode aRxTriggerEsc : std_logic_vector(3 downto 0); --Escape mode Receive Trigger 3-0 aErrEsc : std_logic; --Escape Entry Error aErrControl : std_logic; --Control Error end record PPIRxLaneType; type PPIRxType is array(kNoOfDataLanes-1 downto 0) of PPIRxLaneType; signal SFEN_Lanes : PPIRxType; signal debugSCNN : DebugSCNN_Type; type DebugSFEN_Lanes_Type is array(kNoOfDataLanes-1 downto 0) of DebugSFEN_Type; signal debugSFEN : DebugSFEN_Lanes_Type; signal rTrigOut : std_logic; signal rTrigInAck, rSFEN_TrigOut, rbSFEN_TrigOut, rbSFEN_TrigInAck, rSFEN_TrigInAck : std_logic_vector(kNoOfDataLanes-1 downto 0); begin ------------------------------------------------------------------------------- -- Map PPI ports to array type signals for easier module instantiation below ------------------------------------------------------------------------------- PPIGen1: if kNoOfDataLanes >= 1 generate aD0Stopstate <= SFEN_Lanes(0).aStopstate; SFEN_Lanes(0).aEnable <= aD0Enable; aD0UlpsActiveNot <= SFEN_Lanes(0).aUlpsActiveNot; rbD0RxDataHS <= SFEN_Lanes(0).rbRxDataHS; rbD0RxValidHS <= SFEN_Lanes(0).rbRxValidHS; rbD0RxActiveHS <= SFEN_Lanes(0).rbRxActiveHS; rbD0RxSyncHS <= SFEN_Lanes(0).rbRxSyncHS; rbD0ErrSotHS <= SFEN_Lanes(0).rbErrSotHS; rbD0ErrSotSyncHS <= SFEN_Lanes(0).rbErrSotSyncHS; SFEN_Lanes(0).aForceRxmode <= aD0ForceRxmode; D0RxClkEsc <= SFEN_Lanes(0).RxClkEsc; aD0RxDataEsc <= SFEN_Lanes(0).aRxDataEsc; aD0RxValidEsc <= SFEN_Lanes(0).aRxValidEsc; aD0RxLpdtEsc <= SFEN_Lanes(0).aRxLpdtEsc; aD0RxUlpsEsc <= SFEN_Lanes(0).aRxUlpsEsc; aD0RxTriggerEsc <= SFEN_Lanes(0).aRxTriggerEsc; aD0ErrEsc <= SFEN_Lanes(0).aErrEsc; aD0ErrControl <= SFEN_Lanes(0).aErrControl; end generate; PPIGen2: if kNoOfDataLanes >= 2 generate aD1Stopstate <= SFEN_Lanes(1).aStopstate; SFEN_Lanes(1).aEnable <= aD1Enable; aD1UlpsActiveNot <= SFEN_Lanes(1).aUlpsActiveNot; rbD1RxDataHS <= SFEN_Lanes(1).rbRxDataHS; rbD1RxValidHS <= SFEN_Lanes(1).rbRxValidHS; rbD1RxActiveHS <= SFEN_Lanes(1).rbRxActiveHS; rbD1RxSyncHS <= SFEN_Lanes(1).rbRxSyncHS; rbD1ErrSotHS <= SFEN_Lanes(1).rbErrSotHS; rbD1ErrSotSyncHS <= SFEN_Lanes(1).rbErrSotSyncHS; SFEN_Lanes(1).aForceRxmode <= aD1ForceRxmode; D1RxClkEsc <= SFEN_Lanes(1).RxClkEsc; aD1RxDataEsc <= SFEN_Lanes(1).aRxDataEsc; aD1RxValidEsc <= SFEN_Lanes(1).aRxValidEsc; aD1RxLpdtEsc <= SFEN_Lanes(1).aRxLpdtEsc; aD1RxUlpsEsc <= SFEN_Lanes(1).aRxUlpsEsc; aD1RxTriggerEsc <= SFEN_Lanes(1).aRxTriggerEsc; aD1ErrEsc <= SFEN_Lanes(1).aErrEsc; aD1ErrControl <= SFEN_Lanes(1).aErrControl; end generate; ------------------------------------------------------------------------------- -- AXI-Lite interface for control and status ------------------------------------------------------------------------------- YesAXILITE: if kGenerateAXIL generate AXI_Lite_Control: entity work.MIPI_DPHY_Receiver_S_AXI_Lite generic map ( kVersionMajor => kVersionMajor, kVersionMinor => kVersionMinor, C_S_AXI_DATA_WIDTH => C_S_AXI_LITE_DATA_WIDTH, C_S_AXI_ADDR_WIDTH => C_S_AXI_LITE_ADDR_WIDTH ) port map ( xEnable => xEnable, xRst => xSoftRst, S_AXI_ACLK => s_axi_lite_aclk, S_AXI_ARESETN => s_axi_lite_aresetn, S_AXI_AWADDR => s_axi_lite_awaddr, S_AXI_AWPROT => s_axi_lite_awprot, S_AXI_AWVALID => s_axi_lite_awvalid, S_AXI_AWREADY => s_axi_lite_awready, S_AXI_WDATA => s_axi_lite_wdata, S_AXI_WSTRB => s_axi_lite_wstrb, S_AXI_WVALID => s_axi_lite_wvalid, S_AXI_WREADY => s_axi_lite_wready, S_AXI_BRESP => s_axi_lite_bresp, S_AXI_BVALID => s_axi_lite_bvalid, S_AXI_BREADY => s_axi_lite_bready, S_AXI_ARADDR => s_axi_lite_araddr, S_AXI_ARPROT => s_axi_lite_arprot, S_AXI_ARVALID => s_axi_lite_arvalid, S_AXI_ARREADY => s_axi_lite_arready, S_AXI_RDATA => s_axi_lite_rdata, S_AXI_RRESP => s_axi_lite_rresp, S_AXI_RVALID => s_axi_lite_rvalid, S_AXI_RREADY => s_axi_lite_rready ); CoreSoftReset: entity work.ResetBridge generic map ( kPolarity => '1') port map ( aRst => xSoftRst, OutClk => RefClk, oRst => rSoftRst); SyncAsyncClkEnable: entity work.SyncAsync generic map ( kResetTo => '0', kStages => 2) --use double FF synchronizer port map ( aReset => '0', --lane-level enable aIn => xEnable, OutClk => RefClk, oOut => rSoftEnable); end generate; NoAXILITE: if not kGenerateAXIL generate rSoftEnable <= '1'; rSoftRst <= '0'; end generate; -- We need a reset bridge to use the asynchronous aRst signal to reset our circuitry -- and decrease the chance of metastability. The signal rExtRst can be used as -- asynchronous reset for any flip-flop in the RefClk domain, since it will be de-asserted -- synchronously. CoreAsyncReset: entity work.ResetBridge generic map ( kPolarity => '1') port map ( aRst => aRst, OutClk => RefClk, oRst => rExtRst); rIntRst <= rSoftRst or rExtRst; ------------------------------------------------------------------------------- -- IDELAYCTRL needed by the IDELAYE2 primitives on the data lanes ------------------------------------------------------------------------------- GenIDELAYCTRL: if (kGenerateIDELAYCTRL) generate --IDELAYCTRL must be reset after configuration or refclk lost for 52ns(K7), 72ns(A7) at least ResetIDELAYCTRL: process(rIntRst, RefClk) begin if Rising_Edge(RefClk) then if (rIntRst = '1') then rDlyRstCnt <= kDlyRstDelay - 1; rDlyRst <= '1'; elsif (rDlyRstCnt /= 0) then rDlyRstCnt <= rDlyRstCnt - 1; else rDlyRst <= '0'; end if; end if; end process; IDelayCtrlX: IDELAYCTRL port map ( RDY => rDlyLckd, REFCLK => RefClk, RST => rDlyRst); rDlyCtrlLockedOut <= rDlyLckd; end generate GenIDELAYCTRL; GenNoIDELAYCTRL: if (not kGenerateIDELAYCTRL) generate rDlyLckd <= not rIntRst and rDlyCtrlLockedIn; end generate GenNoIDELAYCTRL; ------------------------------------------------------------------------------- -- Clock lane modules: enable, input buffer, D-PHY SCNN module ------------------------------------------------------------------------------- aLaneSCNNEnable <= aClkEnable and rSoftEnable and rDlyLckd; ClockInputBuffer: entity work.InputBuffer Port map ( HS_p => dphy_clk_hs_p, HS_n => dphy_clk_hs_n, LP_n => dphy_clk_lp_n, LP_p => dphy_clk_lp_p, aHS => HS_Clock, aLP => LP_Clock ); ClockLane: entity work.DPHY_LaneSCNN Generic map ( kGenerateMMCM => false, kRefClkFreqHz => kRefClkFreqHz, kAddDelay_ps => kAddAdjDelayClk_ps ) Port map ( aLP => LP_Clock, aHS => HS_Clock, RefClk => RefClk, RxDDRClkHS => RxDDRClkHS_int, RxByteClkHS => RxByteClkHS_int, aRxClkActiveHS => aRxClkActiveHS_int, aForceRxmode => aClkForceRxmode, aStopstate => aClkStopstate, aEnable => aLaneSCNNEnable, aRxUlpsClkNot => aRxUlpsClkNot, aUlpsActiveNot => aClkUlpsActiveNot, debug => debugSCNN ); ------------------------------------------------------------------------------- -- Date lane modules: enable, input buffer, D-PHY SFEN module ------------------------------------------------------------------------------- DataLaneGen: for i in kNoOfDataLanes-1 downto 0 generate InputBufferDataX: entity work.InputBuffer Generic map ( kNoLP => kLPFromLane0 and i /= 0 ) Port map ( HS_p => dphy_data_hs_p(i), HS_n => dphy_data_hs_n(i), LP_n => dphy_data_lp_n(i), LP_p => dphy_data_lp_p(i), aHS => HS_Data(i), aLP => aLPBuf(i) ); aLaneSFENEnable(i) <= SFEN_Lanes(i).aEnable and rSoftEnable and rDlyLckd; DPHY_LaneSFEN_X: entity work.DPHY_LaneSFEN Generic map ( kRefClkFreqHz => kRefClkFreqHz, kAddDelay_ps => kAddAdjDelayData0_ps, kNoLP => kLPFromLane0 and i /= 0 ) Port map ( dLP0_in => dLP0_in(i), dLP1_in => dLP1_in(i), dLP0_out => dLP0_out(i), dLP1_out => dLP1_out(i), cLP_in => cLP_in(i), cLP_out => cLP_out(i), aLP => aLPBuf(i), aHS => HS_Data(i), RefClk => RefClk, SerClkHS => RxDDRClkHS_int, DivClk => RxByteClkHS_int, aRxClkActiveHS => aRxClkActiveHS_int, --PPI RxByteClkHS => open, --see RxByteClkHS_int below rbRxDataHS => SFEN_Lanes(i).rbRxDataHS, rbRxValidHS => SFEN_Lanes(i).rbRxValidHS, rbRxActiveHS => SFEN_Lanes(i).rbRxActiveHS, rbRxSyncHS => SFEN_Lanes(i).rbRxSyncHS, rbErrSotHS => SFEN_Lanes(i).rbErrSotHS, rbErrSotSyncHS => SFEN_Lanes(i).rbErrSotSyncHS, aEnable => aLaneSFENEnable(i), aStopstate => SFEN_Lanes(i).aStopstate, aForceRxmode => SFEN_Lanes(i).aForceRxmode, aErrEsc => SFEN_Lanes(i).aErrEsc, aErrControl => SFEN_Lanes(i).aErrControl, debug => debugSFEN(i) ); ShareLPFromOtherLane: if kLPFromLane0 and i /= 0 generate dLP0_in(i) <= dLP0_out(0); dLP1_in(i) <= dLP0_out(0); cLP_in(i) <= cLP_out(0); end generate ShareLPFromOtherLane; --D0RxClkEsc <= --aD0RxDataEsc <= --aD0RxValidEsc <= --aD0RxLpdtEsc <= --aD0RxUlpsEsc <= --aD0RxTriggerEsc <= end generate DataLaneGen; -- We output a single divided clock common for all data lanes RxByteClkHS <= RxByteClkHS_int; RxDDRClkHS <= RxDDRClkHS_int; aRxClkActiveHS <= aRxClkActiveHS_int; ---------------------------------------------------------------------------------- -- Debug modules ---------------------------------------------------------------------------------- GenerateDebug: if kDebug generate ILA_SCNN_RefClkX : ila_scnn_refclk PORT MAP ( clk => RefClk, trig_out => rTrigOut, trig_out_ack => rTrigInAck(0), probe0(0) => debugSCNN.cIntRst, probe1 => debugSCNN.cLP, probe2(0) => debugSCNN.cHSRst, probe3(0) => debugSCNN.cHSClkLocked, probe4 => debugSCNN.state, probe5(0) => debugSCNN.cClkSettleTout, probe6(0) => debugSCNN.cBUFR_Rst, probe7(0) => debugSCNN.cMMCM_Rst, probe8(0) => debugSCNN.cMMCM_RstTout, probe9(0) => debugSCNN.cMMCM_Locked ); ILA_SFEN_Gen: for i in kNoOfDataLanes-1 downto 0 generate ILA_SFEN_RefClkX : ila_sfen_refclk PORT MAP ( clk => RefClk, trig_out => rSFEN_TrigOut(i), trig_out_ack => rSFEN_TrigInAck(i), trig_in => rTrigOut, trig_in_ack => rTrigInAck(i), probe0(0) => debugSFEN(i).cIntRst, probe1 => debugSFEN(i).cLP, probe2 => debugSFEN(i).state, probe3(0) => debugSFEN(i).cHSClkRst, probe4(0) => debugSFEN(i).cForceRxmode, probe5(0) => debugSFEN(i).cInitTout, probe6(0) => debugSFEN(i).cHSSettleTout, probe7(0) => debugSFEN(i).cHSSettled, probe8(0) => debugSFEN(i).cHSReset ); SyncAsyncTrigAck: entity work.SyncAsync port map ( aReset => '0', aIn => rbSFEN_TrigInAck(i), OutClk => RefClk, oOut => rSFEN_TrigInAck(i)); SyncAsyncTrigOut: entity work.SyncAsync port map ( aReset => '0', aIn => rSFEN_TrigOut(i), OutClk => RxByteClkHS_int, oOut => rbSFEN_TrigOut(i)); ILA_SFEN_RxClkX : ila_sfen_rxclk PORT MAP ( clk => RxByteClkHS_int, trig_in => rbSFEN_TrigOut(i), trig_in_ack => rbSFEN_TrigInAck(i), probe0(0) => debugSFEN(i).dSyncHard, probe1(0) => debugSFEN(i).dSyncSoft, probe2(0) => debugSFEN(i).dSyncErr, probe3(0) => SFEN_Lanes(i).rbRxActiveHS, probe4(0) => SFEN_Lanes(i).rbRxSyncHS, probe5(0) => SFEN_Lanes(i).rbRxValidHS, probe6(0) => SFEN_Lanes(i).rbErrSotHS, probe7(0) => SFEN_Lanes(i).rbErrSotSyncHS, probe8 => SFEN_Lanes(i).rbRxDataHS ); end generate ILA_SFEN_Gen; end generate; end arch_imp;
---------------------------------------------------------------------------------- -- Company: -- Engineer: -- -- Create Date: 15:27:41 04/17/2015 -- Design Name: -- Module Name: AmplifierFP - Behavioral -- Project Name: -- Target Devices: -- Tool versions: -- Description: -- -- Dependencies: -- -- Revision: -- Revision 0.01 - File Created -- Additional Comments: -- ---------------------------------------------------------------------------------- library IEEE; use IEEE.STD_LOGIC_1164.ALL; use ieee.std_logic_1164.all; use ieee.numeric_std.all; entity AmplifierFP is generic ( INTBIT_WIDTH : positive := 24; FRACBIT_WIDTH : positive := 8); Port ( CLK : in std_logic; RESET : in std_logic; IN_SIG : in signed ((INTBIT_WIDTH - 1) downto 0); --amplifier input signal IN_COEF : in signed (((INTBIT_WIDTH + FRACBIT_WIDTH) - 1) downto 0); --amplifying coefficient OUT_AMP : out signed ((INTBIT_WIDTH - 1) downto 0) := (others => '0'); --amplifier output OUT_RDY : out std_logic ); end AmplifierFP; architecture Behavioral of AmplifierFP is COMPONENT MultiplierFP PORT( CLK : IN std_logic; RESET : IN std_logic; IN_SIG : IN signed((INTBIT_WIDTH - 1) downto 0); IN_COEF : IN signed(((INTBIT_WIDTH + FRACBIT_WIDTH) - 1) downto 0); OUT_MULT : OUT signed((2*(INTBIT_WIDTH + FRACBIT_WIDTH) - 1) downto 0); READY : OUT std_logic ); END COMPONENT; signal mult_out : signed ((2*(INTBIT_WIDTH + FRACBIT_WIDTH) - 1) downto 0) := (others => '0'); signal AMP_OUT_in, AMP_OUT_out : signed ((INTBIT_WIDTH - 1) downto 0) := (others => '0'); signal mult_ready : std_logic := '0'; begin Amp_multiplier: MultiplierFP PORT MAP( CLK => CLK, RESET => RESET, IN_SIG => IN_SIG, IN_COEF => IN_COEF, OUT_MULT => mult_out, READY => mult_ready ); -- for fixed point -- AMP_OUT_in <= mult_out(2*BIT_WIDTH - BIT_WIDTH - 1 downto 0); -- for integers AMP_OUT_in <= mult_out((2*FRACBIT_WIDTH + INTBIT_WIDTH) - 1 downto (2*FRACBIT_WIDTH )); seq_proc : process (CLK) begin if(CLK'event and CLK = '1')then -- update the ready signal when new values gets written to the buffer if (mult_ready = '1') then AMP_OUT_out <= AMP_OUT_in; end if; end if; end process; OUT_RDY <= mult_ready; OUT_AMP <= AMP_OUT_out; end Behavioral;
---------------------------------------------------------------------------------- -- Company: -- Engineer: -- -- Create Date: 15:27:41 04/17/2015 -- Design Name: -- Module Name: AmplifierFP - Behavioral -- Project Name: -- Target Devices: -- Tool versions: -- Description: -- -- Dependencies: -- -- Revision: -- Revision 0.01 - File Created -- Additional Comments: -- ---------------------------------------------------------------------------------- library IEEE; use IEEE.STD_LOGIC_1164.ALL; use ieee.std_logic_1164.all; use ieee.numeric_std.all; entity AmplifierFP is generic ( INTBIT_WIDTH : positive := 24; FRACBIT_WIDTH : positive := 8); Port ( CLK : in std_logic; RESET : in std_logic; IN_SIG : in signed ((INTBIT_WIDTH - 1) downto 0); --amplifier input signal IN_COEF : in signed (((INTBIT_WIDTH + FRACBIT_WIDTH) - 1) downto 0); --amplifying coefficient OUT_AMP : out signed ((INTBIT_WIDTH - 1) downto 0) := (others => '0'); --amplifier output OUT_RDY : out std_logic ); end AmplifierFP; architecture Behavioral of AmplifierFP is COMPONENT MultiplierFP PORT( CLK : IN std_logic; RESET : IN std_logic; IN_SIG : IN signed((INTBIT_WIDTH - 1) downto 0); IN_COEF : IN signed(((INTBIT_WIDTH + FRACBIT_WIDTH) - 1) downto 0); OUT_MULT : OUT signed((2*(INTBIT_WIDTH + FRACBIT_WIDTH) - 1) downto 0); READY : OUT std_logic ); END COMPONENT; signal mult_out : signed ((2*(INTBIT_WIDTH + FRACBIT_WIDTH) - 1) downto 0) := (others => '0'); signal AMP_OUT_in, AMP_OUT_out : signed ((INTBIT_WIDTH - 1) downto 0) := (others => '0'); signal mult_ready : std_logic := '0'; begin Amp_multiplier: MultiplierFP PORT MAP( CLK => CLK, RESET => RESET, IN_SIG => IN_SIG, IN_COEF => IN_COEF, OUT_MULT => mult_out, READY => mult_ready ); -- for fixed point -- AMP_OUT_in <= mult_out(2*BIT_WIDTH - BIT_WIDTH - 1 downto 0); -- for integers AMP_OUT_in <= mult_out((2*FRACBIT_WIDTH + INTBIT_WIDTH) - 1 downto (2*FRACBIT_WIDTH )); seq_proc : process (CLK) begin if(CLK'event and CLK = '1')then -- update the ready signal when new values gets written to the buffer if (mult_ready = '1') then AMP_OUT_out <= AMP_OUT_in; end if; end if; end process; OUT_RDY <= mult_ready; OUT_AMP <= AMP_OUT_out; end Behavioral;
---------------------------------------------------------------------------------- -- Company: -- Engineer: -- -- Create Date: 15:27:41 04/17/2015 -- Design Name: -- Module Name: AmplifierFP - Behavioral -- Project Name: -- Target Devices: -- Tool versions: -- Description: -- -- Dependencies: -- -- Revision: -- Revision 0.01 - File Created -- Additional Comments: -- ---------------------------------------------------------------------------------- library IEEE; use IEEE.STD_LOGIC_1164.ALL; use ieee.std_logic_1164.all; use ieee.numeric_std.all; entity AmplifierFP is generic ( INTBIT_WIDTH : positive := 24; FRACBIT_WIDTH : positive := 8); Port ( CLK : in std_logic; RESET : in std_logic; IN_SIG : in signed ((INTBIT_WIDTH - 1) downto 0); --amplifier input signal IN_COEF : in signed (((INTBIT_WIDTH + FRACBIT_WIDTH) - 1) downto 0); --amplifying coefficient OUT_AMP : out signed ((INTBIT_WIDTH - 1) downto 0) := (others => '0'); --amplifier output OUT_RDY : out std_logic ); end AmplifierFP; architecture Behavioral of AmplifierFP is COMPONENT MultiplierFP PORT( CLK : IN std_logic; RESET : IN std_logic; IN_SIG : IN signed((INTBIT_WIDTH - 1) downto 0); IN_COEF : IN signed(((INTBIT_WIDTH + FRACBIT_WIDTH) - 1) downto 0); OUT_MULT : OUT signed((2*(INTBIT_WIDTH + FRACBIT_WIDTH) - 1) downto 0); READY : OUT std_logic ); END COMPONENT; signal mult_out : signed ((2*(INTBIT_WIDTH + FRACBIT_WIDTH) - 1) downto 0) := (others => '0'); signal AMP_OUT_in, AMP_OUT_out : signed ((INTBIT_WIDTH - 1) downto 0) := (others => '0'); signal mult_ready : std_logic := '0'; begin Amp_multiplier: MultiplierFP PORT MAP( CLK => CLK, RESET => RESET, IN_SIG => IN_SIG, IN_COEF => IN_COEF, OUT_MULT => mult_out, READY => mult_ready ); -- for fixed point -- AMP_OUT_in <= mult_out(2*BIT_WIDTH - BIT_WIDTH - 1 downto 0); -- for integers AMP_OUT_in <= mult_out((2*FRACBIT_WIDTH + INTBIT_WIDTH) - 1 downto (2*FRACBIT_WIDTH )); seq_proc : process (CLK) begin if(CLK'event and CLK = '1')then -- update the ready signal when new values gets written to the buffer if (mult_ready = '1') then AMP_OUT_out <= AMP_OUT_in; end if; end if; end process; OUT_RDY <= mult_ready; OUT_AMP <= AMP_OUT_out; end Behavioral;
---------------------------------------------------------------------------------- -- Company: -- Engineer: -- -- Create Date: 15:27:41 04/17/2015 -- Design Name: -- Module Name: AmplifierFP - Behavioral -- Project Name: -- Target Devices: -- Tool versions: -- Description: -- -- Dependencies: -- -- Revision: -- Revision 0.01 - File Created -- Additional Comments: -- ---------------------------------------------------------------------------------- library IEEE; use IEEE.STD_LOGIC_1164.ALL; use ieee.std_logic_1164.all; use ieee.numeric_std.all; entity AmplifierFP is generic ( INTBIT_WIDTH : positive := 24; FRACBIT_WIDTH : positive := 8); Port ( CLK : in std_logic; RESET : in std_logic; IN_SIG : in signed ((INTBIT_WIDTH - 1) downto 0); --amplifier input signal IN_COEF : in signed (((INTBIT_WIDTH + FRACBIT_WIDTH) - 1) downto 0); --amplifying coefficient OUT_AMP : out signed ((INTBIT_WIDTH - 1) downto 0) := (others => '0'); --amplifier output OUT_RDY : out std_logic ); end AmplifierFP; architecture Behavioral of AmplifierFP is COMPONENT MultiplierFP PORT( CLK : IN std_logic; RESET : IN std_logic; IN_SIG : IN signed((INTBIT_WIDTH - 1) downto 0); IN_COEF : IN signed(((INTBIT_WIDTH + FRACBIT_WIDTH) - 1) downto 0); OUT_MULT : OUT signed((2*(INTBIT_WIDTH + FRACBIT_WIDTH) - 1) downto 0); READY : OUT std_logic ); END COMPONENT; signal mult_out : signed ((2*(INTBIT_WIDTH + FRACBIT_WIDTH) - 1) downto 0) := (others => '0'); signal AMP_OUT_in, AMP_OUT_out : signed ((INTBIT_WIDTH - 1) downto 0) := (others => '0'); signal mult_ready : std_logic := '0'; begin Amp_multiplier: MultiplierFP PORT MAP( CLK => CLK, RESET => RESET, IN_SIG => IN_SIG, IN_COEF => IN_COEF, OUT_MULT => mult_out, READY => mult_ready ); -- for fixed point -- AMP_OUT_in <= mult_out(2*BIT_WIDTH - BIT_WIDTH - 1 downto 0); -- for integers AMP_OUT_in <= mult_out((2*FRACBIT_WIDTH + INTBIT_WIDTH) - 1 downto (2*FRACBIT_WIDTH )); seq_proc : process (CLK) begin if(CLK'event and CLK = '1')then -- update the ready signal when new values gets written to the buffer if (mult_ready = '1') then AMP_OUT_out <= AMP_OUT_in; end if; end if; end process; OUT_RDY <= mult_ready; OUT_AMP <= AMP_OUT_out; end Behavioral;
----------------------------------------------------------------------------- -- LEON3 Demonstration design test bench configuration -- Copyright (C) 2009 Aeroflex Gaisler ------------------------------------------------------------------------------ library techmap; use techmap.gencomp.all; package config is -- Technology and synthesis options constant CFG_FABTECH : integer := zynq7000; constant CFG_MEMTECH : integer := zynq7000; constant CFG_PADTECH : integer := zynq7000; constant CFG_TRANSTECH : integer := GTP0; constant CFG_NOASYNC : integer := 0; constant CFG_SCAN : integer := 0; -- Clock generator constant CFG_CLKTECH : integer := zynq7000; constant CFG_CLKMUL : integer := (8); constant CFG_CLKDIV : integer := (32); constant CFG_OCLKDIV : integer := 1; constant CFG_OCLKBDIV : integer := 0; constant CFG_OCLKCDIV : integer := 0; constant CFG_PCIDLL : integer := 0; constant CFG_PCISYSCLK: integer := 0; constant CFG_CLK_NOFB : integer := 0; -- LEON3 processor core constant CFG_LEON3 : integer := 1; constant CFG_NCPU : integer := (1); constant CFG_NWIN : integer := (8); constant CFG_V8 : integer := 16#32# + 4*0; constant CFG_MAC : integer := 0; constant CFG_BP : integer := 1; constant CFG_SVT : integer := 1; constant CFG_RSTADDR : integer := 16#00000#; constant CFG_LDDEL : integer := (1); constant CFG_NOTAG : integer := 1; constant CFG_NWP : integer := (1); constant CFG_PWD : integer := 1*2; constant CFG_FPU : integer := 0 + 16*0 + 32*0; constant CFG_GRFPUSH : integer := 0; constant CFG_ICEN : integer := 1; constant CFG_ISETS : integer := 2; constant CFG_ISETSZ : integer := 8; constant CFG_ILINE : integer := 8; constant CFG_IREPL : integer := 0; constant CFG_ILOCK : integer := 0; constant CFG_ILRAMEN : integer := 0; constant CFG_ILRAMADDR: integer := 16#8E#; constant CFG_ILRAMSZ : integer := 1; constant CFG_DCEN : integer := 1; constant CFG_DSETS : integer := 2; constant CFG_DSETSZ : integer := 4; constant CFG_DLINE : integer := 8; constant CFG_DREPL : integer := 0; constant CFG_DLOCK : integer := 0; constant CFG_DSNOOP : integer := 1*2 + 4*1; constant CFG_DFIXED : integer := 16#0#; constant CFG_DLRAMEN : integer := 0; constant CFG_DLRAMADDR: integer := 16#8F#; constant CFG_DLRAMSZ : integer := 1; constant CFG_MMUEN : integer := 1; constant CFG_ITLBNUM : integer := 8; constant CFG_DTLBNUM : integer := 8; constant CFG_TLB_TYPE : integer := 0 + 1*2; constant CFG_TLB_REP : integer := 0; constant CFG_MMU_PAGE : integer := 0; constant CFG_DSU : integer := 1; constant CFG_ITBSZ : integer := 2 + 64*0; constant CFG_ATBSZ : integer := 2; constant CFG_AHBPF : integer := 0; constant CFG_LEON3FT_EN : integer := 0; constant CFG_IUFT_EN : integer := 0; constant CFG_FPUFT_EN : integer := 0; constant CFG_RF_ERRINJ : integer := 0; constant CFG_CACHE_FT_EN : integer := 0; constant CFG_CACHE_ERRINJ : integer := 0; constant CFG_LEON3_NETLIST: integer := 0; constant CFG_DISAS : integer := 0 + 0; constant CFG_PCLOW : integer := 2; constant CFG_NP_ASI : integer := 0; constant CFG_WRPSR : integer := 0; -- AMBA settings constant CFG_DEFMST : integer := (0); constant CFG_RROBIN : integer := 1; constant CFG_SPLIT : integer := 0; constant CFG_FPNPEN : integer := 0; constant CFG_AHBIO : integer := 16#FFF#; constant CFG_APBADDR : integer := 16#800#; constant CFG_AHB_MON : integer := 0; constant CFG_AHB_MONERR : integer := 0; constant CFG_AHB_MONWAR : integer := 0; constant CFG_AHB_DTRACE : integer := 0; -- JTAG based DSU interface constant CFG_AHB_JTAG : integer := 1; -- Ethernet DSU constant CFG_DSU_ETH : integer := 0 + 0 + 0; constant CFG_ETH_BUF : integer := 1; constant CFG_ETH_IPM : integer := 16#C0A8#; constant CFG_ETH_IPL : integer := 16#0033#; constant CFG_ETH_ENM : integer := 16#020000#; constant CFG_ETH_ENL : integer := 16#000009#; -- AHB status register constant CFG_AHBSTAT : integer := 1; constant CFG_AHBSTATN : integer := (1); -- AHB ROM constant CFG_AHBROMEN : integer := 1; constant CFG_AHBROPIP : integer := 1; constant CFG_AHBRODDR : integer := 16#000#; constant CFG_ROMADDR : integer := 16#100#; constant CFG_ROMMASK : integer := 16#E00# + 16#100#; -- AHB RAM constant CFG_AHBRAMEN : integer := 0; constant CFG_AHBRSZ : integer := 1; constant CFG_AHBRADDR : integer := 16#A00#; constant CFG_AHBRPIPE : integer := 0; -- UART 1 constant CFG_UART1_ENABLE : integer := 1; constant CFG_UART1_FIFO : integer := 8; -- LEON3 interrupt controller constant CFG_IRQ3_ENABLE : integer := 1; constant CFG_IRQ3_NSEC : integer := 0; -- Modular timer constant CFG_GPT_ENABLE : integer := 1; constant CFG_GPT_NTIM : integer := (2); constant CFG_GPT_SW : integer := (8); constant CFG_GPT_TW : integer := (32); constant CFG_GPT_IRQ : integer := (8); constant CFG_GPT_SEPIRQ : integer := 1; constant CFG_GPT_WDOGEN : integer := 0; constant CFG_GPT_WDOG : integer := 16#0#; -- GPIO port constant CFG_GRGPIO_ENABLE : integer := 1; constant CFG_GRGPIO_IMASK : integer := 16#0000#; constant CFG_GRGPIO_WIDTH : integer := (16); -- GRLIB debugging constant CFG_DUART : integer := 0; end;
----------------------------------------------------------------------------- -- LEON3 Demonstration design test bench configuration -- Copyright (C) 2009 Aeroflex Gaisler ------------------------------------------------------------------------------ library techmap; use techmap.gencomp.all; package config is -- Technology and synthesis options constant CFG_FABTECH : integer := zynq7000; constant CFG_MEMTECH : integer := zynq7000; constant CFG_PADTECH : integer := zynq7000; constant CFG_TRANSTECH : integer := GTP0; constant CFG_NOASYNC : integer := 0; constant CFG_SCAN : integer := 0; -- Clock generator constant CFG_CLKTECH : integer := zynq7000; constant CFG_CLKMUL : integer := (8); constant CFG_CLKDIV : integer := (32); constant CFG_OCLKDIV : integer := 1; constant CFG_OCLKBDIV : integer := 0; constant CFG_OCLKCDIV : integer := 0; constant CFG_PCIDLL : integer := 0; constant CFG_PCISYSCLK: integer := 0; constant CFG_CLK_NOFB : integer := 0; -- LEON3 processor core constant CFG_LEON3 : integer := 1; constant CFG_NCPU : integer := (1); constant CFG_NWIN : integer := (8); constant CFG_V8 : integer := 16#32# + 4*0; constant CFG_MAC : integer := 0; constant CFG_BP : integer := 1; constant CFG_SVT : integer := 1; constant CFG_RSTADDR : integer := 16#00000#; constant CFG_LDDEL : integer := (1); constant CFG_NOTAG : integer := 1; constant CFG_NWP : integer := (1); constant CFG_PWD : integer := 1*2; constant CFG_FPU : integer := 0 + 16*0 + 32*0; constant CFG_GRFPUSH : integer := 0; constant CFG_ICEN : integer := 1; constant CFG_ISETS : integer := 2; constant CFG_ISETSZ : integer := 8; constant CFG_ILINE : integer := 8; constant CFG_IREPL : integer := 0; constant CFG_ILOCK : integer := 0; constant CFG_ILRAMEN : integer := 0; constant CFG_ILRAMADDR: integer := 16#8E#; constant CFG_ILRAMSZ : integer := 1; constant CFG_DCEN : integer := 1; constant CFG_DSETS : integer := 2; constant CFG_DSETSZ : integer := 4; constant CFG_DLINE : integer := 8; constant CFG_DREPL : integer := 0; constant CFG_DLOCK : integer := 0; constant CFG_DSNOOP : integer := 1*2 + 4*1; constant CFG_DFIXED : integer := 16#0#; constant CFG_DLRAMEN : integer := 0; constant CFG_DLRAMADDR: integer := 16#8F#; constant CFG_DLRAMSZ : integer := 1; constant CFG_MMUEN : integer := 1; constant CFG_ITLBNUM : integer := 8; constant CFG_DTLBNUM : integer := 8; constant CFG_TLB_TYPE : integer := 0 + 1*2; constant CFG_TLB_REP : integer := 0; constant CFG_MMU_PAGE : integer := 0; constant CFG_DSU : integer := 1; constant CFG_ITBSZ : integer := 2 + 64*0; constant CFG_ATBSZ : integer := 2; constant CFG_AHBPF : integer := 0; constant CFG_LEON3FT_EN : integer := 0; constant CFG_IUFT_EN : integer := 0; constant CFG_FPUFT_EN : integer := 0; constant CFG_RF_ERRINJ : integer := 0; constant CFG_CACHE_FT_EN : integer := 0; constant CFG_CACHE_ERRINJ : integer := 0; constant CFG_LEON3_NETLIST: integer := 0; constant CFG_DISAS : integer := 0 + 0; constant CFG_PCLOW : integer := 2; constant CFG_NP_ASI : integer := 0; constant CFG_WRPSR : integer := 0; -- AMBA settings constant CFG_DEFMST : integer := (0); constant CFG_RROBIN : integer := 1; constant CFG_SPLIT : integer := 0; constant CFG_FPNPEN : integer := 0; constant CFG_AHBIO : integer := 16#FFF#; constant CFG_APBADDR : integer := 16#800#; constant CFG_AHB_MON : integer := 0; constant CFG_AHB_MONERR : integer := 0; constant CFG_AHB_MONWAR : integer := 0; constant CFG_AHB_DTRACE : integer := 0; -- JTAG based DSU interface constant CFG_AHB_JTAG : integer := 1; -- Ethernet DSU constant CFG_DSU_ETH : integer := 0 + 0 + 0; constant CFG_ETH_BUF : integer := 1; constant CFG_ETH_IPM : integer := 16#C0A8#; constant CFG_ETH_IPL : integer := 16#0033#; constant CFG_ETH_ENM : integer := 16#020000#; constant CFG_ETH_ENL : integer := 16#000009#; -- AHB status register constant CFG_AHBSTAT : integer := 1; constant CFG_AHBSTATN : integer := (1); -- AHB ROM constant CFG_AHBROMEN : integer := 1; constant CFG_AHBROPIP : integer := 1; constant CFG_AHBRODDR : integer := 16#000#; constant CFG_ROMADDR : integer := 16#100#; constant CFG_ROMMASK : integer := 16#E00# + 16#100#; -- AHB RAM constant CFG_AHBRAMEN : integer := 0; constant CFG_AHBRSZ : integer := 1; constant CFG_AHBRADDR : integer := 16#A00#; constant CFG_AHBRPIPE : integer := 0; -- UART 1 constant CFG_UART1_ENABLE : integer := 1; constant CFG_UART1_FIFO : integer := 8; -- LEON3 interrupt controller constant CFG_IRQ3_ENABLE : integer := 1; constant CFG_IRQ3_NSEC : integer := 0; -- Modular timer constant CFG_GPT_ENABLE : integer := 1; constant CFG_GPT_NTIM : integer := (2); constant CFG_GPT_SW : integer := (8); constant CFG_GPT_TW : integer := (32); constant CFG_GPT_IRQ : integer := (8); constant CFG_GPT_SEPIRQ : integer := 1; constant CFG_GPT_WDOGEN : integer := 0; constant CFG_GPT_WDOG : integer := 16#0#; -- GPIO port constant CFG_GRGPIO_ENABLE : integer := 1; constant CFG_GRGPIO_IMASK : integer := 16#0000#; constant CFG_GRGPIO_WIDTH : integer := (16); -- GRLIB debugging constant CFG_DUART : integer := 0; end;
-- Copyright (C) 2001 Bill Billowitch. -- Some of the work to develop this test suite was done with Air Force -- support. The Air Force and Bill Billowitch assume no -- responsibilities for this software. -- This file is part of VESTs (Vhdl tESTs). -- VESTs is free software; you can redistribute it and/or modify it -- under the terms of the GNU General Public License as published by the -- Free Software Foundation; either version 2 of the License, or (at -- your option) any later version. -- VESTs is distributed in the hope that it will be useful, but WITHOUT -- ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -- FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- for more details. -- You should have received a copy of the GNU General Public License -- along with VESTs; if not, write to the Free Software Foundation, -- Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -- --------------------------------------------------------------------- -- -- $Id: tc2919.vhd,v 1.2 2001-10-26 16:30:24 paw Exp $ -- $Revision: 1.2 $ -- -- --------------------------------------------------------------------- ENTITY c02s01b01x02p06n01i02919ent IS END c02s01b01x02p06n01i02919ent; ARCHITECTURE c02s01b01x02p06n01i02919arch OF c02s01b01x02p06n01i02919ent IS procedure proc1 (signal x1 : bit; z1 : boolean); procedure proc1 (signal x1 : bit; z1 : boolean) is begin null; end proc1; signal b: bit_vector (4 downto 1); BEGIN TESTING: PROCESS variable i : integer := 1; BEGIN proc1 (b(i), true); -- Failure_here -- b(i) is not a static name. assert FALSE report "***FAILED TEST: c02s01b01x02p06n01i02919 - The actual signal associated with a signal parameter must be denoted by a static name." severity ERROR; wait; END PROCESS TESTING; END c02s01b01x02p06n01i02919arch;
-- Copyright (C) 2001 Bill Billowitch. -- Some of the work to develop this test suite was done with Air Force -- support. The Air Force and Bill Billowitch assume no -- responsibilities for this software. -- This file is part of VESTs (Vhdl tESTs). -- VESTs is free software; you can redistribute it and/or modify it -- under the terms of the GNU General Public License as published by the -- Free Software Foundation; either version 2 of the License, or (at -- your option) any later version. -- VESTs is distributed in the hope that it will be useful, but WITHOUT -- ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -- FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- for more details. -- You should have received a copy of the GNU General Public License -- along with VESTs; if not, write to the Free Software Foundation, -- Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -- --------------------------------------------------------------------- -- -- $Id: tc2919.vhd,v 1.2 2001-10-26 16:30:24 paw Exp $ -- $Revision: 1.2 $ -- -- --------------------------------------------------------------------- ENTITY c02s01b01x02p06n01i02919ent IS END c02s01b01x02p06n01i02919ent; ARCHITECTURE c02s01b01x02p06n01i02919arch OF c02s01b01x02p06n01i02919ent IS procedure proc1 (signal x1 : bit; z1 : boolean); procedure proc1 (signal x1 : bit; z1 : boolean) is begin null; end proc1; signal b: bit_vector (4 downto 1); BEGIN TESTING: PROCESS variable i : integer := 1; BEGIN proc1 (b(i), true); -- Failure_here -- b(i) is not a static name. assert FALSE report "***FAILED TEST: c02s01b01x02p06n01i02919 - The actual signal associated with a signal parameter must be denoted by a static name." severity ERROR; wait; END PROCESS TESTING; END c02s01b01x02p06n01i02919arch;
-- Copyright (C) 2001 Bill Billowitch. -- Some of the work to develop this test suite was done with Air Force -- support. The Air Force and Bill Billowitch assume no -- responsibilities for this software. -- This file is part of VESTs (Vhdl tESTs). -- VESTs is free software; you can redistribute it and/or modify it -- under the terms of the GNU General Public License as published by the -- Free Software Foundation; either version 2 of the License, or (at -- your option) any later version. -- VESTs is distributed in the hope that it will be useful, but WITHOUT -- ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -- FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- for more details. -- You should have received a copy of the GNU General Public License -- along with VESTs; if not, write to the Free Software Foundation, -- Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -- --------------------------------------------------------------------- -- -- $Id: tc2919.vhd,v 1.2 2001-10-26 16:30:24 paw Exp $ -- $Revision: 1.2 $ -- -- --------------------------------------------------------------------- ENTITY c02s01b01x02p06n01i02919ent IS END c02s01b01x02p06n01i02919ent; ARCHITECTURE c02s01b01x02p06n01i02919arch OF c02s01b01x02p06n01i02919ent IS procedure proc1 (signal x1 : bit; z1 : boolean); procedure proc1 (signal x1 : bit; z1 : boolean) is begin null; end proc1; signal b: bit_vector (4 downto 1); BEGIN TESTING: PROCESS variable i : integer := 1; BEGIN proc1 (b(i), true); -- Failure_here -- b(i) is not a static name. assert FALSE report "***FAILED TEST: c02s01b01x02p06n01i02919 - The actual signal associated with a signal parameter must be denoted by a static name." severity ERROR; wait; END PROCESS TESTING; END c02s01b01x02p06n01i02919arch;
-- Copyright (C) 2001 Bill Billowitch. -- Some of the work to develop this test suite was done with Air Force -- support. The Air Force and Bill Billowitch assume no -- responsibilities for this software. -- This file is part of VESTs (Vhdl tESTs). -- VESTs is free software; you can redistribute it and/or modify it -- under the terms of the GNU General Public License as published by the -- Free Software Foundation; either version 2 of the License, or (at -- your option) any later version. -- VESTs is distributed in the hope that it will be useful, but WITHOUT -- ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -- FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- for more details. -- You should have received a copy of the GNU General Public License -- along with VESTs; if not, write to the Free Software Foundation, -- Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -- --------------------------------------------------------------------- -- -- $Id: tc135.vhd,v 1.2 2001-10-26 16:29:40 paw Exp $ -- $Revision: 1.2 $ -- -- --------------------------------------------------------------------- ENTITY c04s03b02x02p08n01i00135ent IS END c04s03b02x02p08n01i00135ent; ARCHITECTURE c04s03b02x02p08n01i00135arch OF c04s03b02x02p08n01i00135ent IS type AT1 is array (INTEGER range <>, INTEGER range <>) of INTEGER; subtype ST1 is AT1(1 to 2, 1 to 2); BEGIN TESTING: PROCESS procedure Proc1(P : inout ST1; ref : in ST1; set : in ST1) is begin if (P=ref) then P := set; end if; end; variable V : ST1 := ((1, 2), (3, 4)); BEGIN V := ((1, 2), (3, 4)); Proc1( P(1,1) => V(2,2), P(1,2) => V(2,1), P(2,1) => V(1,2), P(2,2) => V(1,1), ref => ((4, 3), (2, 1)), set => ((9, 8), (7, 6))); -- test here assert V = ((6, 7), (8, 9)) report "FAIL: actual V didn't get set right"; assert NOT( V = ((6,7),(8,9)) ) report "***PASSED TEST: c04s03b02x02p08n01i00135" severity NOTE; assert ( V = ((6,7),(8,9)) ) report "***FAILED TEST: c04s03b02x02p08n01i00135 - Association element in an association list test failed." severity ERROR; wait; END PROCESS TESTING; END c04s03b02x02p08n01i00135arch;
-- Copyright (C) 2001 Bill Billowitch. -- Some of the work to develop this test suite was done with Air Force -- support. The Air Force and Bill Billowitch assume no -- responsibilities for this software. -- This file is part of VESTs (Vhdl tESTs). -- VESTs is free software; you can redistribute it and/or modify it -- under the terms of the GNU General Public License as published by the -- Free Software Foundation; either version 2 of the License, or (at -- your option) any later version. -- VESTs is distributed in the hope that it will be useful, but WITHOUT -- ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -- FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- for more details. -- You should have received a copy of the GNU General Public License -- along with VESTs; if not, write to the Free Software Foundation, -- Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -- --------------------------------------------------------------------- -- -- $Id: tc135.vhd,v 1.2 2001-10-26 16:29:40 paw Exp $ -- $Revision: 1.2 $ -- -- --------------------------------------------------------------------- ENTITY c04s03b02x02p08n01i00135ent IS END c04s03b02x02p08n01i00135ent; ARCHITECTURE c04s03b02x02p08n01i00135arch OF c04s03b02x02p08n01i00135ent IS type AT1 is array (INTEGER range <>, INTEGER range <>) of INTEGER; subtype ST1 is AT1(1 to 2, 1 to 2); BEGIN TESTING: PROCESS procedure Proc1(P : inout ST1; ref : in ST1; set : in ST1) is begin if (P=ref) then P := set; end if; end; variable V : ST1 := ((1, 2), (3, 4)); BEGIN V := ((1, 2), (3, 4)); Proc1( P(1,1) => V(2,2), P(1,2) => V(2,1), P(2,1) => V(1,2), P(2,2) => V(1,1), ref => ((4, 3), (2, 1)), set => ((9, 8), (7, 6))); -- test here assert V = ((6, 7), (8, 9)) report "FAIL: actual V didn't get set right"; assert NOT( V = ((6,7),(8,9)) ) report "***PASSED TEST: c04s03b02x02p08n01i00135" severity NOTE; assert ( V = ((6,7),(8,9)) ) report "***FAILED TEST: c04s03b02x02p08n01i00135 - Association element in an association list test failed." severity ERROR; wait; END PROCESS TESTING; END c04s03b02x02p08n01i00135arch;
-- Copyright (C) 2001 Bill Billowitch. -- Some of the work to develop this test suite was done with Air Force -- support. The Air Force and Bill Billowitch assume no -- responsibilities for this software. -- This file is part of VESTs (Vhdl tESTs). -- VESTs is free software; you can redistribute it and/or modify it -- under the terms of the GNU General Public License as published by the -- Free Software Foundation; either version 2 of the License, or (at -- your option) any later version. -- VESTs is distributed in the hope that it will be useful, but WITHOUT -- ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -- FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- for more details. -- You should have received a copy of the GNU General Public License -- along with VESTs; if not, write to the Free Software Foundation, -- Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -- --------------------------------------------------------------------- -- -- $Id: tc135.vhd,v 1.2 2001-10-26 16:29:40 paw Exp $ -- $Revision: 1.2 $ -- -- --------------------------------------------------------------------- ENTITY c04s03b02x02p08n01i00135ent IS END c04s03b02x02p08n01i00135ent; ARCHITECTURE c04s03b02x02p08n01i00135arch OF c04s03b02x02p08n01i00135ent IS type AT1 is array (INTEGER range <>, INTEGER range <>) of INTEGER; subtype ST1 is AT1(1 to 2, 1 to 2); BEGIN TESTING: PROCESS procedure Proc1(P : inout ST1; ref : in ST1; set : in ST1) is begin if (P=ref) then P := set; end if; end; variable V : ST1 := ((1, 2), (3, 4)); BEGIN V := ((1, 2), (3, 4)); Proc1( P(1,1) => V(2,2), P(1,2) => V(2,1), P(2,1) => V(1,2), P(2,2) => V(1,1), ref => ((4, 3), (2, 1)), set => ((9, 8), (7, 6))); -- test here assert V = ((6, 7), (8, 9)) report "FAIL: actual V didn't get set right"; assert NOT( V = ((6,7),(8,9)) ) report "***PASSED TEST: c04s03b02x02p08n01i00135" severity NOTE; assert ( V = ((6,7),(8,9)) ) report "***FAILED TEST: c04s03b02x02p08n01i00135 - Association element in an association list test failed." severity ERROR; wait; END PROCESS TESTING; END c04s03b02x02p08n01i00135arch;
---------------------------------------------------------------------------------- -- Company: -- Engineer: -- -- Create Date: 16:59:20 05/21/2016 -- Design Name: -- Module Name: mux - Behavioral -- Project Name: -- Target Devices: -- Tool versions: -- Description: -- -- Dependencies: -- -- Revision: -- Revision 0.01 - File Created -- Additional Comments: -- library IEEE; use IEEE.STD_LOGIC_1164.ALL; --use work.CONSTANTS.all; -- Uncomment the following library declaration if using -- arithmetic functions with Signed or Unsigned values use IEEE.NUMERIC_STD.ALL; use work.CONSTANTS.all; -- Uncomment the following library declaration if instantiating -- any Xilinx primitives in this code. --library UNISIM; --use UNISIM.VComponents.all; entity muxperso is Port ( ADDR1 : in STD_LOGIC_vector(ADDR_BIT_MUX-1 downto 0); data_write1 : in STD_LOGIC; data_in1 : in STD_LOGIC_VECTOR(ITER_RANGE-1 downto 0); ADDR2 : in STD_LOGIC_vector(ADDR_BIT_MUX-1 downto 0); data_write2 : in STD_LOGIC; data_in2 : in STD_LOGIC_VECTOR(ITER_RANGE-1 downto 0); -- ADDR3 : in STD_LOGIC_vector(ADDR_BIT_MUX-1 downto 0); -- data_write3 : in STD_LOGIC; -- data_in3 : in STD_LOGIC_VECTOR(ITER_RANGE-1 downto 0); -- ADDR4 : in STD_LOGIC_vector(ADDR_BIT_MUX-1 downto 0); -- data_write4 : in STD_LOGIC; -- data_in4 : in STD_LOGIC_VECTOR(ITER_RANGE-1 downto 0); ADDR : out STD_LOGIC_vector(ADDR_BIT-1 downto 0); data_write : out STD_LOGIC; data_out : out STD_LOGIC_VECTOR(ITER_RANGE-1 downto 0)); end muxperso; architecture Behavioral of muxperso is begin ADDR<= std_logic_vector( unsigned("00" & ADDR1) + to_unsigned(38400, ADDR_BIT)) when (data_write1 = '1') else std_logic_vector(unsigned("00" & ADDR2) + to_unsigned(38400, ADDR_BIT)) ; data_out<=data_in1 when(data_write1 = '1') else data_in2; data_write<='1' when (data_write1 = '1') else data_write2; end Behavioral;
-- file: clk_base.vhd -- -- (c) Copyright 2008 - 2013 Xilinx, Inc. All rights reserved. -- -- This file contains confidential and proprietary information -- of Xilinx, Inc. and is protected under U.S. and -- international copyright and other intellectual property -- laws. -- -- DISCLAIMER -- This disclaimer is not a license and does not grant any -- rights to the materials distributed herewith. Except as -- otherwise provided in a valid license issued to you by -- Xilinx, and to the maximum extent permitted by applicable -- law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND -- WITH ALL FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES -- AND CONDITIONS, EXPRESS, IMPLIED, OR STATUTORY, INCLUDING -- BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, NON- -- INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE; and -- (2) Xilinx shall not be liable (whether in contract or tort, -- including negligence, or under any other theory of -- liability) for any loss or damage of any kind or nature -- related to, arising under or in connection with these -- materials, including for any direct, or any indirect, -- special, incidental, or consequential loss or damage -- (including loss of data, profits, goodwill, or any type of -- loss or damage suffered as a result of any action brought -- by a third party) even if such damage or loss was -- reasonably foreseeable or Xilinx had been advised of the -- possibility of the same. -- -- CRITICAL APPLICATIONS -- Xilinx products are not designed or intended to be fail- -- safe, or for use in any application requiring fail-safe -- performance, such as life-support or safety devices or -- systems, Class III medical devices, nuclear facilities, -- applications related to the deployment of airbags, or any -- other applications that could lead to death, personal -- injury, or severe property or environmental damage -- (individually and collectively, "Critical -- Applications"). Customer assumes the sole risk and -- liability of any use of Xilinx products in Critical -- Applications, subject only to applicable laws and -- regulations governing limitations on product liability. -- -- THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS -- PART OF THIS FILE AT ALL TIMES. -- ------------------------------------------------------------------------------ -- User entered comments ------------------------------------------------------------------------------ -- None -- ------------------------------------------------------------------------------ -- Output Output Phase Duty Cycle Pk-to-Pk Phase -- Clock Freq (MHz) (degrees) (%) Jitter (ps) Error (ps) ------------------------------------------------------------------------------ -- CLK_OUT1___100.000______0.000______50.0______130.958_____98.575 -- CLK_OUT2___250.000______0.000______50.0______110.209_____98.575 -- ------------------------------------------------------------------------------ -- Input Clock Freq (MHz) Input Jitter (UI) ------------------------------------------------------------------------------ -- __primary_________100.000____________0.010 library ieee; use ieee.std_logic_1164.all; use ieee.std_logic_unsigned.all; use ieee.std_logic_arith.all; use ieee.numeric_std.all; library unisim; use unisim.vcomponents.all; entity clk_base is port (-- Clock in ports clk_raw : in std_logic; -- Clock out ports clk_100MHz : out std_logic; clk_250MHz : out std_logic; -- Status and control signals locked : out std_logic ); end clk_base; architecture xilinx of clk_base is attribute CORE_GENERATION_INFO : string; attribute CORE_GENERATION_INFO of xilinx : architecture is "clk_base,clk_wiz_v5_1,{component_name=clk_base,use_phase_alignment=true,use_min_o_jitter=false,use_max_i_jitter=false,use_dyn_phase_shift=false,use_inclk_switchover=false,use_dyn_reconfig=false,enable_axi=0,feedback_source=FDBK_AUTO,PRIMITIVE=MMCM,num_out_clk=2,clkin1_period=10.0,clkin2_period=10.0,use_power_down=false,use_reset=false,use_locked=true,use_inclk_stopped=false,feedback_type=SINGLE,CLOCK_MGR_TYPE=NA,manual_override=false}"; component clk_base_clk_wiz port (-- Clock in ports clk_raw : in std_logic; -- Clock out ports clk_100MHz : out std_logic; clk_250MHz : out std_logic; -- Status and control signals locked : out std_logic ); end component; begin U0: clk_base_clk_wiz port map ( -- Clock in ports clk_raw => clk_raw, -- Clock out ports clk_100MHz => clk_100MHz, clk_250MHz => clk_250MHz, -- Status and control signals locked => locked ); end xilinx;
-- file: clk_base.vhd -- -- (c) Copyright 2008 - 2013 Xilinx, Inc. All rights reserved. -- -- This file contains confidential and proprietary information -- of Xilinx, Inc. and is protected under U.S. and -- international copyright and other intellectual property -- laws. -- -- DISCLAIMER -- This disclaimer is not a license and does not grant any -- rights to the materials distributed herewith. Except as -- otherwise provided in a valid license issued to you by -- Xilinx, and to the maximum extent permitted by applicable -- law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND -- WITH ALL FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES -- AND CONDITIONS, EXPRESS, IMPLIED, OR STATUTORY, INCLUDING -- BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, NON- -- INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE; and -- (2) Xilinx shall not be liable (whether in contract or tort, -- including negligence, or under any other theory of -- liability) for any loss or damage of any kind or nature -- related to, arising under or in connection with these -- materials, including for any direct, or any indirect, -- special, incidental, or consequential loss or damage -- (including loss of data, profits, goodwill, or any type of -- loss or damage suffered as a result of any action brought -- by a third party) even if such damage or loss was -- reasonably foreseeable or Xilinx had been advised of the -- possibility of the same. -- -- CRITICAL APPLICATIONS -- Xilinx products are not designed or intended to be fail- -- safe, or for use in any application requiring fail-safe -- performance, such as life-support or safety devices or -- systems, Class III medical devices, nuclear facilities, -- applications related to the deployment of airbags, or any -- other applications that could lead to death, personal -- injury, or severe property or environmental damage -- (individually and collectively, "Critical -- Applications"). Customer assumes the sole risk and -- liability of any use of Xilinx products in Critical -- Applications, subject only to applicable laws and -- regulations governing limitations on product liability. -- -- THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS -- PART OF THIS FILE AT ALL TIMES. -- ------------------------------------------------------------------------------ -- User entered comments ------------------------------------------------------------------------------ -- None -- ------------------------------------------------------------------------------ -- Output Output Phase Duty Cycle Pk-to-Pk Phase -- Clock Freq (MHz) (degrees) (%) Jitter (ps) Error (ps) ------------------------------------------------------------------------------ -- CLK_OUT1___100.000______0.000______50.0______130.958_____98.575 -- CLK_OUT2___250.000______0.000______50.0______110.209_____98.575 -- ------------------------------------------------------------------------------ -- Input Clock Freq (MHz) Input Jitter (UI) ------------------------------------------------------------------------------ -- __primary_________100.000____________0.010 library ieee; use ieee.std_logic_1164.all; use ieee.std_logic_unsigned.all; use ieee.std_logic_arith.all; use ieee.numeric_std.all; library unisim; use unisim.vcomponents.all; entity clk_base is port (-- Clock in ports clk_raw : in std_logic; -- Clock out ports clk_100MHz : out std_logic; clk_250MHz : out std_logic; -- Status and control signals locked : out std_logic ); end clk_base; architecture xilinx of clk_base is attribute CORE_GENERATION_INFO : string; attribute CORE_GENERATION_INFO of xilinx : architecture is "clk_base,clk_wiz_v5_1,{component_name=clk_base,use_phase_alignment=true,use_min_o_jitter=false,use_max_i_jitter=false,use_dyn_phase_shift=false,use_inclk_switchover=false,use_dyn_reconfig=false,enable_axi=0,feedback_source=FDBK_AUTO,PRIMITIVE=MMCM,num_out_clk=2,clkin1_period=10.0,clkin2_period=10.0,use_power_down=false,use_reset=false,use_locked=true,use_inclk_stopped=false,feedback_type=SINGLE,CLOCK_MGR_TYPE=NA,manual_override=false}"; component clk_base_clk_wiz port (-- Clock in ports clk_raw : in std_logic; -- Clock out ports clk_100MHz : out std_logic; clk_250MHz : out std_logic; -- Status and control signals locked : out std_logic ); end component; begin U0: clk_base_clk_wiz port map ( -- Clock in ports clk_raw => clk_raw, -- Clock out ports clk_100MHz => clk_100MHz, clk_250MHz => clk_250MHz, -- Status and control signals locked => locked ); end xilinx;
-- file: clk_base.vhd -- -- (c) Copyright 2008 - 2013 Xilinx, Inc. All rights reserved. -- -- This file contains confidential and proprietary information -- of Xilinx, Inc. and is protected under U.S. and -- international copyright and other intellectual property -- laws. -- -- DISCLAIMER -- This disclaimer is not a license and does not grant any -- rights to the materials distributed herewith. Except as -- otherwise provided in a valid license issued to you by -- Xilinx, and to the maximum extent permitted by applicable -- law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND -- WITH ALL FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES -- AND CONDITIONS, EXPRESS, IMPLIED, OR STATUTORY, INCLUDING -- BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, NON- -- INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE; and -- (2) Xilinx shall not be liable (whether in contract or tort, -- including negligence, or under any other theory of -- liability) for any loss or damage of any kind or nature -- related to, arising under or in connection with these -- materials, including for any direct, or any indirect, -- special, incidental, or consequential loss or damage -- (including loss of data, profits, goodwill, or any type of -- loss or damage suffered as a result of any action brought -- by a third party) even if such damage or loss was -- reasonably foreseeable or Xilinx had been advised of the -- possibility of the same. -- -- CRITICAL APPLICATIONS -- Xilinx products are not designed or intended to be fail- -- safe, or for use in any application requiring fail-safe -- performance, such as life-support or safety devices or -- systems, Class III medical devices, nuclear facilities, -- applications related to the deployment of airbags, or any -- other applications that could lead to death, personal -- injury, or severe property or environmental damage -- (individually and collectively, "Critical -- Applications"). Customer assumes the sole risk and -- liability of any use of Xilinx products in Critical -- Applications, subject only to applicable laws and -- regulations governing limitations on product liability. -- -- THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS -- PART OF THIS FILE AT ALL TIMES. -- ------------------------------------------------------------------------------ -- User entered comments ------------------------------------------------------------------------------ -- None -- ------------------------------------------------------------------------------ -- Output Output Phase Duty Cycle Pk-to-Pk Phase -- Clock Freq (MHz) (degrees) (%) Jitter (ps) Error (ps) ------------------------------------------------------------------------------ -- CLK_OUT1___100.000______0.000______50.0______130.958_____98.575 -- CLK_OUT2___250.000______0.000______50.0______110.209_____98.575 -- ------------------------------------------------------------------------------ -- Input Clock Freq (MHz) Input Jitter (UI) ------------------------------------------------------------------------------ -- __primary_________100.000____________0.010 library ieee; use ieee.std_logic_1164.all; use ieee.std_logic_unsigned.all; use ieee.std_logic_arith.all; use ieee.numeric_std.all; library unisim; use unisim.vcomponents.all; entity clk_base is port (-- Clock in ports clk_raw : in std_logic; -- Clock out ports clk_100MHz : out std_logic; clk_250MHz : out std_logic; -- Status and control signals locked : out std_logic ); end clk_base; architecture xilinx of clk_base is attribute CORE_GENERATION_INFO : string; attribute CORE_GENERATION_INFO of xilinx : architecture is "clk_base,clk_wiz_v5_1,{component_name=clk_base,use_phase_alignment=true,use_min_o_jitter=false,use_max_i_jitter=false,use_dyn_phase_shift=false,use_inclk_switchover=false,use_dyn_reconfig=false,enable_axi=0,feedback_source=FDBK_AUTO,PRIMITIVE=MMCM,num_out_clk=2,clkin1_period=10.0,clkin2_period=10.0,use_power_down=false,use_reset=false,use_locked=true,use_inclk_stopped=false,feedback_type=SINGLE,CLOCK_MGR_TYPE=NA,manual_override=false}"; component clk_base_clk_wiz port (-- Clock in ports clk_raw : in std_logic; -- Clock out ports clk_100MHz : out std_logic; clk_250MHz : out std_logic; -- Status and control signals locked : out std_logic ); end component; begin U0: clk_base_clk_wiz port map ( -- Clock in ports clk_raw => clk_raw, -- Clock out ports clk_100MHz => clk_100MHz, clk_250MHz => clk_250MHz, -- Status and control signals locked => locked ); end xilinx;
-- file: clk_base.vhd -- -- (c) Copyright 2008 - 2013 Xilinx, Inc. All rights reserved. -- -- This file contains confidential and proprietary information -- of Xilinx, Inc. and is protected under U.S. and -- international copyright and other intellectual property -- laws. -- -- DISCLAIMER -- This disclaimer is not a license and does not grant any -- rights to the materials distributed herewith. Except as -- otherwise provided in a valid license issued to you by -- Xilinx, and to the maximum extent permitted by applicable -- law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND -- WITH ALL FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES -- AND CONDITIONS, EXPRESS, IMPLIED, OR STATUTORY, INCLUDING -- BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, NON- -- INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE; and -- (2) Xilinx shall not be liable (whether in contract or tort, -- including negligence, or under any other theory of -- liability) for any loss or damage of any kind or nature -- related to, arising under or in connection with these -- materials, including for any direct, or any indirect, -- special, incidental, or consequential loss or damage -- (including loss of data, profits, goodwill, or any type of -- loss or damage suffered as a result of any action brought -- by a third party) even if such damage or loss was -- reasonably foreseeable or Xilinx had been advised of the -- possibility of the same. -- -- CRITICAL APPLICATIONS -- Xilinx products are not designed or intended to be fail- -- safe, or for use in any application requiring fail-safe -- performance, such as life-support or safety devices or -- systems, Class III medical devices, nuclear facilities, -- applications related to the deployment of airbags, or any -- other applications that could lead to death, personal -- injury, or severe property or environmental damage -- (individually and collectively, "Critical -- Applications"). Customer assumes the sole risk and -- liability of any use of Xilinx products in Critical -- Applications, subject only to applicable laws and -- regulations governing limitations on product liability. -- -- THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS -- PART OF THIS FILE AT ALL TIMES. -- ------------------------------------------------------------------------------ -- User entered comments ------------------------------------------------------------------------------ -- None -- ------------------------------------------------------------------------------ -- Output Output Phase Duty Cycle Pk-to-Pk Phase -- Clock Freq (MHz) (degrees) (%) Jitter (ps) Error (ps) ------------------------------------------------------------------------------ -- CLK_OUT1___100.000______0.000______50.0______130.958_____98.575 -- CLK_OUT2___250.000______0.000______50.0______110.209_____98.575 -- ------------------------------------------------------------------------------ -- Input Clock Freq (MHz) Input Jitter (UI) ------------------------------------------------------------------------------ -- __primary_________100.000____________0.010 library ieee; use ieee.std_logic_1164.all; use ieee.std_logic_unsigned.all; use ieee.std_logic_arith.all; use ieee.numeric_std.all; library unisim; use unisim.vcomponents.all; entity clk_base is port (-- Clock in ports clk_raw : in std_logic; -- Clock out ports clk_100MHz : out std_logic; clk_250MHz : out std_logic; -- Status and control signals locked : out std_logic ); end clk_base; architecture xilinx of clk_base is attribute CORE_GENERATION_INFO : string; attribute CORE_GENERATION_INFO of xilinx : architecture is "clk_base,clk_wiz_v5_1,{component_name=clk_base,use_phase_alignment=true,use_min_o_jitter=false,use_max_i_jitter=false,use_dyn_phase_shift=false,use_inclk_switchover=false,use_dyn_reconfig=false,enable_axi=0,feedback_source=FDBK_AUTO,PRIMITIVE=MMCM,num_out_clk=2,clkin1_period=10.0,clkin2_period=10.0,use_power_down=false,use_reset=false,use_locked=true,use_inclk_stopped=false,feedback_type=SINGLE,CLOCK_MGR_TYPE=NA,manual_override=false}"; component clk_base_clk_wiz port (-- Clock in ports clk_raw : in std_logic; -- Clock out ports clk_100MHz : out std_logic; clk_250MHz : out std_logic; -- Status and control signals locked : out std_logic ); end component; begin U0: clk_base_clk_wiz port map ( -- Clock in ports clk_raw => clk_raw, -- Clock out ports clk_100MHz => clk_100MHz, clk_250MHz => clk_250MHz, -- Status and control signals locked => locked ); end xilinx;
-- file: clk_base.vhd -- -- (c) Copyright 2008 - 2013 Xilinx, Inc. All rights reserved. -- -- This file contains confidential and proprietary information -- of Xilinx, Inc. and is protected under U.S. and -- international copyright and other intellectual property -- laws. -- -- DISCLAIMER -- This disclaimer is not a license and does not grant any -- rights to the materials distributed herewith. Except as -- otherwise provided in a valid license issued to you by -- Xilinx, and to the maximum extent permitted by applicable -- law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND -- WITH ALL FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES -- AND CONDITIONS, EXPRESS, IMPLIED, OR STATUTORY, INCLUDING -- BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, NON- -- INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE; and -- (2) Xilinx shall not be liable (whether in contract or tort, -- including negligence, or under any other theory of -- liability) for any loss or damage of any kind or nature -- related to, arising under or in connection with these -- materials, including for any direct, or any indirect, -- special, incidental, or consequential loss or damage -- (including loss of data, profits, goodwill, or any type of -- loss or damage suffered as a result of any action brought -- by a third party) even if such damage or loss was -- reasonably foreseeable or Xilinx had been advised of the -- possibility of the same. -- -- CRITICAL APPLICATIONS -- Xilinx products are not designed or intended to be fail- -- safe, or for use in any application requiring fail-safe -- performance, such as life-support or safety devices or -- systems, Class III medical devices, nuclear facilities, -- applications related to the deployment of airbags, or any -- other applications that could lead to death, personal -- injury, or severe property or environmental damage -- (individually and collectively, "Critical -- Applications"). Customer assumes the sole risk and -- liability of any use of Xilinx products in Critical -- Applications, subject only to applicable laws and -- regulations governing limitations on product liability. -- -- THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS -- PART OF THIS FILE AT ALL TIMES. -- ------------------------------------------------------------------------------ -- User entered comments ------------------------------------------------------------------------------ -- None -- ------------------------------------------------------------------------------ -- Output Output Phase Duty Cycle Pk-to-Pk Phase -- Clock Freq (MHz) (degrees) (%) Jitter (ps) Error (ps) ------------------------------------------------------------------------------ -- CLK_OUT1___100.000______0.000______50.0______130.958_____98.575 -- CLK_OUT2___250.000______0.000______50.0______110.209_____98.575 -- ------------------------------------------------------------------------------ -- Input Clock Freq (MHz) Input Jitter (UI) ------------------------------------------------------------------------------ -- __primary_________100.000____________0.010 library ieee; use ieee.std_logic_1164.all; use ieee.std_logic_unsigned.all; use ieee.std_logic_arith.all; use ieee.numeric_std.all; library unisim; use unisim.vcomponents.all; entity clk_base is port (-- Clock in ports clk_raw : in std_logic; -- Clock out ports clk_100MHz : out std_logic; clk_250MHz : out std_logic; -- Status and control signals locked : out std_logic ); end clk_base; architecture xilinx of clk_base is attribute CORE_GENERATION_INFO : string; attribute CORE_GENERATION_INFO of xilinx : architecture is "clk_base,clk_wiz_v5_1,{component_name=clk_base,use_phase_alignment=true,use_min_o_jitter=false,use_max_i_jitter=false,use_dyn_phase_shift=false,use_inclk_switchover=false,use_dyn_reconfig=false,enable_axi=0,feedback_source=FDBK_AUTO,PRIMITIVE=MMCM,num_out_clk=2,clkin1_period=10.0,clkin2_period=10.0,use_power_down=false,use_reset=false,use_locked=true,use_inclk_stopped=false,feedback_type=SINGLE,CLOCK_MGR_TYPE=NA,manual_override=false}"; component clk_base_clk_wiz port (-- Clock in ports clk_raw : in std_logic; -- Clock out ports clk_100MHz : out std_logic; clk_250MHz : out std_logic; -- Status and control signals locked : out std_logic ); end component; begin U0: clk_base_clk_wiz port map ( -- Clock in ports clk_raw => clk_raw, -- Clock out ports clk_100MHz => clk_100MHz, clk_250MHz => clk_250MHz, -- Status and control signals locked => locked ); end xilinx;
-- file: clk_base.vhd -- -- (c) Copyright 2008 - 2013 Xilinx, Inc. All rights reserved. -- -- This file contains confidential and proprietary information -- of Xilinx, Inc. and is protected under U.S. and -- international copyright and other intellectual property -- laws. -- -- DISCLAIMER -- This disclaimer is not a license and does not grant any -- rights to the materials distributed herewith. Except as -- otherwise provided in a valid license issued to you by -- Xilinx, and to the maximum extent permitted by applicable -- law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND -- WITH ALL FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES -- AND CONDITIONS, EXPRESS, IMPLIED, OR STATUTORY, INCLUDING -- BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, NON- -- INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE; and -- (2) Xilinx shall not be liable (whether in contract or tort, -- including negligence, or under any other theory of -- liability) for any loss or damage of any kind or nature -- related to, arising under or in connection with these -- materials, including for any direct, or any indirect, -- special, incidental, or consequential loss or damage -- (including loss of data, profits, goodwill, or any type of -- loss or damage suffered as a result of any action brought -- by a third party) even if such damage or loss was -- reasonably foreseeable or Xilinx had been advised of the -- possibility of the same. -- -- CRITICAL APPLICATIONS -- Xilinx products are not designed or intended to be fail- -- safe, or for use in any application requiring fail-safe -- performance, such as life-support or safety devices or -- systems, Class III medical devices, nuclear facilities, -- applications related to the deployment of airbags, or any -- other applications that could lead to death, personal -- injury, or severe property or environmental damage -- (individually and collectively, "Critical -- Applications"). Customer assumes the sole risk and -- liability of any use of Xilinx products in Critical -- Applications, subject only to applicable laws and -- regulations governing limitations on product liability. -- -- THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS -- PART OF THIS FILE AT ALL TIMES. -- ------------------------------------------------------------------------------ -- User entered comments ------------------------------------------------------------------------------ -- None -- ------------------------------------------------------------------------------ -- Output Output Phase Duty Cycle Pk-to-Pk Phase -- Clock Freq (MHz) (degrees) (%) Jitter (ps) Error (ps) ------------------------------------------------------------------------------ -- CLK_OUT1___100.000______0.000______50.0______130.958_____98.575 -- CLK_OUT2___250.000______0.000______50.0______110.209_____98.575 -- ------------------------------------------------------------------------------ -- Input Clock Freq (MHz) Input Jitter (UI) ------------------------------------------------------------------------------ -- __primary_________100.000____________0.010 library ieee; use ieee.std_logic_1164.all; use ieee.std_logic_unsigned.all; use ieee.std_logic_arith.all; use ieee.numeric_std.all; library unisim; use unisim.vcomponents.all; entity clk_base is port (-- Clock in ports clk_raw : in std_logic; -- Clock out ports clk_100MHz : out std_logic; clk_250MHz : out std_logic; -- Status and control signals locked : out std_logic ); end clk_base; architecture xilinx of clk_base is attribute CORE_GENERATION_INFO : string; attribute CORE_GENERATION_INFO of xilinx : architecture is "clk_base,clk_wiz_v5_1,{component_name=clk_base,use_phase_alignment=true,use_min_o_jitter=false,use_max_i_jitter=false,use_dyn_phase_shift=false,use_inclk_switchover=false,use_dyn_reconfig=false,enable_axi=0,feedback_source=FDBK_AUTO,PRIMITIVE=MMCM,num_out_clk=2,clkin1_period=10.0,clkin2_period=10.0,use_power_down=false,use_reset=false,use_locked=true,use_inclk_stopped=false,feedback_type=SINGLE,CLOCK_MGR_TYPE=NA,manual_override=false}"; component clk_base_clk_wiz port (-- Clock in ports clk_raw : in std_logic; -- Clock out ports clk_100MHz : out std_logic; clk_250MHz : out std_logic; -- Status and control signals locked : out std_logic ); end component; begin U0: clk_base_clk_wiz port map ( -- Clock in ports clk_raw => clk_raw, -- Clock out ports clk_100MHz => clk_100MHz, clk_250MHz => clk_250MHz, -- Status and control signals locked => locked ); end xilinx;
-- file: clk_base.vhd -- -- (c) Copyright 2008 - 2013 Xilinx, Inc. All rights reserved. -- -- This file contains confidential and proprietary information -- of Xilinx, Inc. and is protected under U.S. and -- international copyright and other intellectual property -- laws. -- -- DISCLAIMER -- This disclaimer is not a license and does not grant any -- rights to the materials distributed herewith. Except as -- otherwise provided in a valid license issued to you by -- Xilinx, and to the maximum extent permitted by applicable -- law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND -- WITH ALL FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES -- AND CONDITIONS, EXPRESS, IMPLIED, OR STATUTORY, INCLUDING -- BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, NON- -- INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE; and -- (2) Xilinx shall not be liable (whether in contract or tort, -- including negligence, or under any other theory of -- liability) for any loss or damage of any kind or nature -- related to, arising under or in connection with these -- materials, including for any direct, or any indirect, -- special, incidental, or consequential loss or damage -- (including loss of data, profits, goodwill, or any type of -- loss or damage suffered as a result of any action brought -- by a third party) even if such damage or loss was -- reasonably foreseeable or Xilinx had been advised of the -- possibility of the same. -- -- CRITICAL APPLICATIONS -- Xilinx products are not designed or intended to be fail- -- safe, or for use in any application requiring fail-safe -- performance, such as life-support or safety devices or -- systems, Class III medical devices, nuclear facilities, -- applications related to the deployment of airbags, or any -- other applications that could lead to death, personal -- injury, or severe property or environmental damage -- (individually and collectively, "Critical -- Applications"). Customer assumes the sole risk and -- liability of any use of Xilinx products in Critical -- Applications, subject only to applicable laws and -- regulations governing limitations on product liability. -- -- THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS -- PART OF THIS FILE AT ALL TIMES. -- ------------------------------------------------------------------------------ -- User entered comments ------------------------------------------------------------------------------ -- None -- ------------------------------------------------------------------------------ -- Output Output Phase Duty Cycle Pk-to-Pk Phase -- Clock Freq (MHz) (degrees) (%) Jitter (ps) Error (ps) ------------------------------------------------------------------------------ -- CLK_OUT1___100.000______0.000______50.0______130.958_____98.575 -- CLK_OUT2___250.000______0.000______50.0______110.209_____98.575 -- ------------------------------------------------------------------------------ -- Input Clock Freq (MHz) Input Jitter (UI) ------------------------------------------------------------------------------ -- __primary_________100.000____________0.010 library ieee; use ieee.std_logic_1164.all; use ieee.std_logic_unsigned.all; use ieee.std_logic_arith.all; use ieee.numeric_std.all; library unisim; use unisim.vcomponents.all; entity clk_base is port (-- Clock in ports clk_raw : in std_logic; -- Clock out ports clk_100MHz : out std_logic; clk_250MHz : out std_logic; -- Status and control signals locked : out std_logic ); end clk_base; architecture xilinx of clk_base is attribute CORE_GENERATION_INFO : string; attribute CORE_GENERATION_INFO of xilinx : architecture is "clk_base,clk_wiz_v5_1,{component_name=clk_base,use_phase_alignment=true,use_min_o_jitter=false,use_max_i_jitter=false,use_dyn_phase_shift=false,use_inclk_switchover=false,use_dyn_reconfig=false,enable_axi=0,feedback_source=FDBK_AUTO,PRIMITIVE=MMCM,num_out_clk=2,clkin1_period=10.0,clkin2_period=10.0,use_power_down=false,use_reset=false,use_locked=true,use_inclk_stopped=false,feedback_type=SINGLE,CLOCK_MGR_TYPE=NA,manual_override=false}"; component clk_base_clk_wiz port (-- Clock in ports clk_raw : in std_logic; -- Clock out ports clk_100MHz : out std_logic; clk_250MHz : out std_logic; -- Status and control signals locked : out std_logic ); end component; begin U0: clk_base_clk_wiz port map ( -- Clock in ports clk_raw => clk_raw, -- Clock out ports clk_100MHz => clk_100MHz, clk_250MHz => clk_250MHz, -- Status and control signals locked => locked ); end xilinx;
-- file: clk_base.vhd -- -- (c) Copyright 2008 - 2013 Xilinx, Inc. All rights reserved. -- -- This file contains confidential and proprietary information -- of Xilinx, Inc. and is protected under U.S. and -- international copyright and other intellectual property -- laws. -- -- DISCLAIMER -- This disclaimer is not a license and does not grant any -- rights to the materials distributed herewith. Except as -- otherwise provided in a valid license issued to you by -- Xilinx, and to the maximum extent permitted by applicable -- law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND -- WITH ALL FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES -- AND CONDITIONS, EXPRESS, IMPLIED, OR STATUTORY, INCLUDING -- BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, NON- -- INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE; and -- (2) Xilinx shall not be liable (whether in contract or tort, -- including negligence, or under any other theory of -- liability) for any loss or damage of any kind or nature -- related to, arising under or in connection with these -- materials, including for any direct, or any indirect, -- special, incidental, or consequential loss or damage -- (including loss of data, profits, goodwill, or any type of -- loss or damage suffered as a result of any action brought -- by a third party) even if such damage or loss was -- reasonably foreseeable or Xilinx had been advised of the -- possibility of the same. -- -- CRITICAL APPLICATIONS -- Xilinx products are not designed or intended to be fail- -- safe, or for use in any application requiring fail-safe -- performance, such as life-support or safety devices or -- systems, Class III medical devices, nuclear facilities, -- applications related to the deployment of airbags, or any -- other applications that could lead to death, personal -- injury, or severe property or environmental damage -- (individually and collectively, "Critical -- Applications"). Customer assumes the sole risk and -- liability of any use of Xilinx products in Critical -- Applications, subject only to applicable laws and -- regulations governing limitations on product liability. -- -- THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS -- PART OF THIS FILE AT ALL TIMES. -- ------------------------------------------------------------------------------ -- User entered comments ------------------------------------------------------------------------------ -- None -- ------------------------------------------------------------------------------ -- Output Output Phase Duty Cycle Pk-to-Pk Phase -- Clock Freq (MHz) (degrees) (%) Jitter (ps) Error (ps) ------------------------------------------------------------------------------ -- CLK_OUT1___100.000______0.000______50.0______130.958_____98.575 -- CLK_OUT2___250.000______0.000______50.0______110.209_____98.575 -- ------------------------------------------------------------------------------ -- Input Clock Freq (MHz) Input Jitter (UI) ------------------------------------------------------------------------------ -- __primary_________100.000____________0.010 library ieee; use ieee.std_logic_1164.all; use ieee.std_logic_unsigned.all; use ieee.std_logic_arith.all; use ieee.numeric_std.all; library unisim; use unisim.vcomponents.all; entity clk_base is port (-- Clock in ports clk_raw : in std_logic; -- Clock out ports clk_100MHz : out std_logic; clk_250MHz : out std_logic; -- Status and control signals locked : out std_logic ); end clk_base; architecture xilinx of clk_base is attribute CORE_GENERATION_INFO : string; attribute CORE_GENERATION_INFO of xilinx : architecture is "clk_base,clk_wiz_v5_1,{component_name=clk_base,use_phase_alignment=true,use_min_o_jitter=false,use_max_i_jitter=false,use_dyn_phase_shift=false,use_inclk_switchover=false,use_dyn_reconfig=false,enable_axi=0,feedback_source=FDBK_AUTO,PRIMITIVE=MMCM,num_out_clk=2,clkin1_period=10.0,clkin2_period=10.0,use_power_down=false,use_reset=false,use_locked=true,use_inclk_stopped=false,feedback_type=SINGLE,CLOCK_MGR_TYPE=NA,manual_override=false}"; component clk_base_clk_wiz port (-- Clock in ports clk_raw : in std_logic; -- Clock out ports clk_100MHz : out std_logic; clk_250MHz : out std_logic; -- Status and control signals locked : out std_logic ); end component; begin U0: clk_base_clk_wiz port map ( -- Clock in ports clk_raw => clk_raw, -- Clock out ports clk_100MHz => clk_100MHz, clk_250MHz => clk_250MHz, -- Status and control signals locked => locked ); end xilinx;
-- file: clk_base.vhd -- -- (c) Copyright 2008 - 2013 Xilinx, Inc. All rights reserved. -- -- This file contains confidential and proprietary information -- of Xilinx, Inc. and is protected under U.S. and -- international copyright and other intellectual property -- laws. -- -- DISCLAIMER -- This disclaimer is not a license and does not grant any -- rights to the materials distributed herewith. Except as -- otherwise provided in a valid license issued to you by -- Xilinx, and to the maximum extent permitted by applicable -- law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND -- WITH ALL FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES -- AND CONDITIONS, EXPRESS, IMPLIED, OR STATUTORY, INCLUDING -- BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, NON- -- INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE; and -- (2) Xilinx shall not be liable (whether in contract or tort, -- including negligence, or under any other theory of -- liability) for any loss or damage of any kind or nature -- related to, arising under or in connection with these -- materials, including for any direct, or any indirect, -- special, incidental, or consequential loss or damage -- (including loss of data, profits, goodwill, or any type of -- loss or damage suffered as a result of any action brought -- by a third party) even if such damage or loss was -- reasonably foreseeable or Xilinx had been advised of the -- possibility of the same. -- -- CRITICAL APPLICATIONS -- Xilinx products are not designed or intended to be fail- -- safe, or for use in any application requiring fail-safe -- performance, such as life-support or safety devices or -- systems, Class III medical devices, nuclear facilities, -- applications related to the deployment of airbags, or any -- other applications that could lead to death, personal -- injury, or severe property or environmental damage -- (individually and collectively, "Critical -- Applications"). Customer assumes the sole risk and -- liability of any use of Xilinx products in Critical -- Applications, subject only to applicable laws and -- regulations governing limitations on product liability. -- -- THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS -- PART OF THIS FILE AT ALL TIMES. -- ------------------------------------------------------------------------------ -- User entered comments ------------------------------------------------------------------------------ -- None -- ------------------------------------------------------------------------------ -- Output Output Phase Duty Cycle Pk-to-Pk Phase -- Clock Freq (MHz) (degrees) (%) Jitter (ps) Error (ps) ------------------------------------------------------------------------------ -- CLK_OUT1___100.000______0.000______50.0______130.958_____98.575 -- CLK_OUT2___250.000______0.000______50.0______110.209_____98.575 -- ------------------------------------------------------------------------------ -- Input Clock Freq (MHz) Input Jitter (UI) ------------------------------------------------------------------------------ -- __primary_________100.000____________0.010 library ieee; use ieee.std_logic_1164.all; use ieee.std_logic_unsigned.all; use ieee.std_logic_arith.all; use ieee.numeric_std.all; library unisim; use unisim.vcomponents.all; entity clk_base is port (-- Clock in ports clk_raw : in std_logic; -- Clock out ports clk_100MHz : out std_logic; clk_250MHz : out std_logic; -- Status and control signals locked : out std_logic ); end clk_base; architecture xilinx of clk_base is attribute CORE_GENERATION_INFO : string; attribute CORE_GENERATION_INFO of xilinx : architecture is "clk_base,clk_wiz_v5_1,{component_name=clk_base,use_phase_alignment=true,use_min_o_jitter=false,use_max_i_jitter=false,use_dyn_phase_shift=false,use_inclk_switchover=false,use_dyn_reconfig=false,enable_axi=0,feedback_source=FDBK_AUTO,PRIMITIVE=MMCM,num_out_clk=2,clkin1_period=10.0,clkin2_period=10.0,use_power_down=false,use_reset=false,use_locked=true,use_inclk_stopped=false,feedback_type=SINGLE,CLOCK_MGR_TYPE=NA,manual_override=false}"; component clk_base_clk_wiz port (-- Clock in ports clk_raw : in std_logic; -- Clock out ports clk_100MHz : out std_logic; clk_250MHz : out std_logic; -- Status and control signals locked : out std_logic ); end component; begin U0: clk_base_clk_wiz port map ( -- Clock in ports clk_raw => clk_raw, -- Clock out ports clk_100MHz => clk_100MHz, clk_250MHz => clk_250MHz, -- Status and control signals locked => locked ); end xilinx;
-- file: clk_base.vhd -- -- (c) Copyright 2008 - 2013 Xilinx, Inc. All rights reserved. -- -- This file contains confidential and proprietary information -- of Xilinx, Inc. and is protected under U.S. and -- international copyright and other intellectual property -- laws. -- -- DISCLAIMER -- This disclaimer is not a license and does not grant any -- rights to the materials distributed herewith. Except as -- otherwise provided in a valid license issued to you by -- Xilinx, and to the maximum extent permitted by applicable -- law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND -- WITH ALL FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES -- AND CONDITIONS, EXPRESS, IMPLIED, OR STATUTORY, INCLUDING -- BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, NON- -- INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE; and -- (2) Xilinx shall not be liable (whether in contract or tort, -- including negligence, or under any other theory of -- liability) for any loss or damage of any kind or nature -- related to, arising under or in connection with these -- materials, including for any direct, or any indirect, -- special, incidental, or consequential loss or damage -- (including loss of data, profits, goodwill, or any type of -- loss or damage suffered as a result of any action brought -- by a third party) even if such damage or loss was -- reasonably foreseeable or Xilinx had been advised of the -- possibility of the same. -- -- CRITICAL APPLICATIONS -- Xilinx products are not designed or intended to be fail- -- safe, or for use in any application requiring fail-safe -- performance, such as life-support or safety devices or -- systems, Class III medical devices, nuclear facilities, -- applications related to the deployment of airbags, or any -- other applications that could lead to death, personal -- injury, or severe property or environmental damage -- (individually and collectively, "Critical -- Applications"). Customer assumes the sole risk and -- liability of any use of Xilinx products in Critical -- Applications, subject only to applicable laws and -- regulations governing limitations on product liability. -- -- THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS -- PART OF THIS FILE AT ALL TIMES. -- ------------------------------------------------------------------------------ -- User entered comments ------------------------------------------------------------------------------ -- None -- ------------------------------------------------------------------------------ -- Output Output Phase Duty Cycle Pk-to-Pk Phase -- Clock Freq (MHz) (degrees) (%) Jitter (ps) Error (ps) ------------------------------------------------------------------------------ -- CLK_OUT1___100.000______0.000______50.0______130.958_____98.575 -- CLK_OUT2___250.000______0.000______50.0______110.209_____98.575 -- ------------------------------------------------------------------------------ -- Input Clock Freq (MHz) Input Jitter (UI) ------------------------------------------------------------------------------ -- __primary_________100.000____________0.010 library ieee; use ieee.std_logic_1164.all; use ieee.std_logic_unsigned.all; use ieee.std_logic_arith.all; use ieee.numeric_std.all; library unisim; use unisim.vcomponents.all; entity clk_base is port (-- Clock in ports clk_raw : in std_logic; -- Clock out ports clk_100MHz : out std_logic; clk_250MHz : out std_logic; -- Status and control signals locked : out std_logic ); end clk_base; architecture xilinx of clk_base is attribute CORE_GENERATION_INFO : string; attribute CORE_GENERATION_INFO of xilinx : architecture is "clk_base,clk_wiz_v5_1,{component_name=clk_base,use_phase_alignment=true,use_min_o_jitter=false,use_max_i_jitter=false,use_dyn_phase_shift=false,use_inclk_switchover=false,use_dyn_reconfig=false,enable_axi=0,feedback_source=FDBK_AUTO,PRIMITIVE=MMCM,num_out_clk=2,clkin1_period=10.0,clkin2_period=10.0,use_power_down=false,use_reset=false,use_locked=true,use_inclk_stopped=false,feedback_type=SINGLE,CLOCK_MGR_TYPE=NA,manual_override=false}"; component clk_base_clk_wiz port (-- Clock in ports clk_raw : in std_logic; -- Clock out ports clk_100MHz : out std_logic; clk_250MHz : out std_logic; -- Status and control signals locked : out std_logic ); end component; begin U0: clk_base_clk_wiz port map ( -- Clock in ports clk_raw => clk_raw, -- Clock out ports clk_100MHz => clk_100MHz, clk_250MHz => clk_250MHz, -- Status and control signals locked => locked ); end xilinx;
-- (c) Copyright 1995-2017 Xilinx, Inc. All rights reserved. -- -- This file contains confidential and proprietary information -- of Xilinx, Inc. and is protected under U.S. and -- international copyright and other intellectual property -- laws. -- -- DISCLAIMER -- This disclaimer is not a license and does not grant any -- rights to the materials distributed herewith. Except as -- otherwise provided in a valid license issued to you by -- Xilinx, and to the maximum extent permitted by applicable -- law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND -- WITH ALL FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES -- AND CONDITIONS, EXPRESS, IMPLIED, OR STATUTORY, INCLUDING -- BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, NON- -- INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE; and -- (2) Xilinx shall not be liable (whether in contract or tort, -- including negligence, or under any other theory of -- liability) for any loss or damage of any kind or nature -- related to, arising under or in connection with these -- materials, including for any direct, or any indirect, -- special, incidental, or consequential loss or damage -- (including loss of data, profits, goodwill, or any type of -- loss or damage suffered as a result of any action brought -- by a third party) even if such damage or loss was -- reasonably foreseeable or Xilinx had been advised of the -- possibility of the same. -- -- CRITICAL APPLICATIONS -- Xilinx products are not designed or intended to be fail- -- safe, or for use in any application requiring fail-safe -- performance, such as life-support or safety devices or -- systems, Class III medical devices, nuclear facilities, -- applications related to the deployment of airbags, or any -- other applications that could lead to death, personal -- injury, or severe property or environmental damage -- (individually and collectively, "Critical -- Applications"). Customer assumes the sole risk and -- liability of any use of Xilinx products in Critical -- Applications, subject only to applicable laws and -- regulations governing limitations on product liability. -- -- THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS -- PART OF THIS FILE AT ALL TIMES. -- -- DO NOT MODIFY THIS FILE. -- IP VLNV: CPE233:F17:Mux4x1:1.0 -- IP Revision: 2 LIBRARY ieee; USE ieee.std_logic_1164.ALL; USE ieee.numeric_std.ALL; ENTITY Program_Counter_Mux4x1_0_1 IS PORT ( A : IN STD_LOGIC_VECTOR(9 DOWNTO 0); B : IN STD_LOGIC_VECTOR(9 DOWNTO 0); C : IN STD_LOGIC_VECTOR(9 DOWNTO 0); D : IN STD_LOGIC_VECTOR(9 DOWNTO 0); SEL : IN STD_LOGIC_VECTOR(1 DOWNTO 0); X : OUT STD_LOGIC_VECTOR(9 DOWNTO 0) ); END Program_Counter_Mux4x1_0_1; ARCHITECTURE Program_Counter_Mux4x1_0_1_arch OF Program_Counter_Mux4x1_0_1 IS ATTRIBUTE DowngradeIPIdentifiedWarnings : STRING; ATTRIBUTE DowngradeIPIdentifiedWarnings OF Program_Counter_Mux4x1_0_1_arch: ARCHITECTURE IS "yes"; COMPONENT Mux4x1 IS PORT ( A : IN STD_LOGIC_VECTOR(9 DOWNTO 0); B : IN STD_LOGIC_VECTOR(9 DOWNTO 0); C : IN STD_LOGIC_VECTOR(9 DOWNTO 0); D : IN STD_LOGIC_VECTOR(9 DOWNTO 0); SEL : IN STD_LOGIC_VECTOR(1 DOWNTO 0); X : OUT STD_LOGIC_VECTOR(9 DOWNTO 0) ); END COMPONENT Mux4x1; ATTRIBUTE X_CORE_INFO : STRING; ATTRIBUTE X_CORE_INFO OF Program_Counter_Mux4x1_0_1_arch: ARCHITECTURE IS "Mux4x1,Vivado 2016.4"; ATTRIBUTE CHECK_LICENSE_TYPE : STRING; ATTRIBUTE CHECK_LICENSE_TYPE OF Program_Counter_Mux4x1_0_1_arch : ARCHITECTURE IS "Program_Counter_Mux4x1_0_1,Mux4x1,{}"; BEGIN U0 : Mux4x1 PORT MAP ( A => A, B => B, C => C, D => D, SEL => SEL, X => X ); END Program_Counter_Mux4x1_0_1_arch;
-- (c) Copyright 1995-2017 Xilinx, Inc. All rights reserved. -- -- This file contains confidential and proprietary information -- of Xilinx, Inc. and is protected under U.S. and -- international copyright and other intellectual property -- laws. -- -- DISCLAIMER -- This disclaimer is not a license and does not grant any -- rights to the materials distributed herewith. Except as -- otherwise provided in a valid license issued to you by -- Xilinx, and to the maximum extent permitted by applicable -- law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND -- WITH ALL FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES -- AND CONDITIONS, EXPRESS, IMPLIED, OR STATUTORY, INCLUDING -- BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, NON- -- INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE; and -- (2) Xilinx shall not be liable (whether in contract or tort, -- including negligence, or under any other theory of -- liability) for any loss or damage of any kind or nature -- related to, arising under or in connection with these -- materials, including for any direct, or any indirect, -- special, incidental, or consequential loss or damage -- (including loss of data, profits, goodwill, or any type of -- loss or damage suffered as a result of any action brought -- by a third party) even if such damage or loss was -- reasonably foreseeable or Xilinx had been advised of the -- possibility of the same. -- -- CRITICAL APPLICATIONS -- Xilinx products are not designed or intended to be fail- -- safe, or for use in any application requiring fail-safe -- performance, such as life-support or safety devices or -- systems, Class III medical devices, nuclear facilities, -- applications related to the deployment of airbags, or any -- other applications that could lead to death, personal -- injury, or severe property or environmental damage -- (individually and collectively, "Critical -- Applications"). Customer assumes the sole risk and -- liability of any use of Xilinx products in Critical -- Applications, subject only to applicable laws and -- regulations governing limitations on product liability. -- -- THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS -- PART OF THIS FILE AT ALL TIMES. -- -- DO NOT MODIFY THIS FILE. -- IP VLNV: CPE233:F17:Mux4x1:1.0 -- IP Revision: 2 LIBRARY ieee; USE ieee.std_logic_1164.ALL; USE ieee.numeric_std.ALL; ENTITY Program_Counter_Mux4x1_0_1 IS PORT ( A : IN STD_LOGIC_VECTOR(9 DOWNTO 0); B : IN STD_LOGIC_VECTOR(9 DOWNTO 0); C : IN STD_LOGIC_VECTOR(9 DOWNTO 0); D : IN STD_LOGIC_VECTOR(9 DOWNTO 0); SEL : IN STD_LOGIC_VECTOR(1 DOWNTO 0); X : OUT STD_LOGIC_VECTOR(9 DOWNTO 0) ); END Program_Counter_Mux4x1_0_1; ARCHITECTURE Program_Counter_Mux4x1_0_1_arch OF Program_Counter_Mux4x1_0_1 IS ATTRIBUTE DowngradeIPIdentifiedWarnings : STRING; ATTRIBUTE DowngradeIPIdentifiedWarnings OF Program_Counter_Mux4x1_0_1_arch: ARCHITECTURE IS "yes"; COMPONENT Mux4x1 IS PORT ( A : IN STD_LOGIC_VECTOR(9 DOWNTO 0); B : IN STD_LOGIC_VECTOR(9 DOWNTO 0); C : IN STD_LOGIC_VECTOR(9 DOWNTO 0); D : IN STD_LOGIC_VECTOR(9 DOWNTO 0); SEL : IN STD_LOGIC_VECTOR(1 DOWNTO 0); X : OUT STD_LOGIC_VECTOR(9 DOWNTO 0) ); END COMPONENT Mux4x1; ATTRIBUTE X_CORE_INFO : STRING; ATTRIBUTE X_CORE_INFO OF Program_Counter_Mux4x1_0_1_arch: ARCHITECTURE IS "Mux4x1,Vivado 2016.4"; ATTRIBUTE CHECK_LICENSE_TYPE : STRING; ATTRIBUTE CHECK_LICENSE_TYPE OF Program_Counter_Mux4x1_0_1_arch : ARCHITECTURE IS "Program_Counter_Mux4x1_0_1,Mux4x1,{}"; BEGIN U0 : Mux4x1 PORT MAP ( A => A, B => B, C => C, D => D, SEL => SEL, X => X ); END Program_Counter_Mux4x1_0_1_arch;
------------------------------------------------------------------------------- -- lmb_v10.vhd - Entity and architecture ------------------------------------------------------------------------------- -- -- (c) Copyright [2003] - [2011] Xilinx, Inc. All rights reserved. -- -- This file contains confidential and proprietary information -- of Xilinx, Inc. and is protected under U.S. and -- international copyright and other intellectual property -- laws. -- -- DISCLAIMER -- This disclaimer is not a license and does not grant any -- rights to the materials distributed herewith. Except as -- otherwise provided in a valid license issued to you by -- Xilinx, and to the maximum extent permitted by applicable -- law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND -- WITH ALL FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES -- AND CONDITIONS, EXPRESS, IMPLIED, OR STATUTORY, INCLUDING -- BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, NON- -- INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE; and -- (2) Xilinx shall not be liable (whether in contract or tort, -- including negligence, or under any other theory of -- liability) for any loss or damage of any kind or nature -- related to, arising under or in connection with these -- materials, including for any direct, or any indirect, -- special, incidental, or consequential loss or damage -- (including loss of data, profits, goodwill, or any type of -- loss or damage suffered as a result of any action brought -- by a third party) even if such damage or loss was -- reasonably foreseeable or Xilinx had been advised of the -- possibility of the same. -- -- CRITICAL APPLICATIONS -- Xilinx products are not designed or intended to be fail- -- safe, or for use in any application requiring fail-safe -- performance, such as life-support or safety devices or -- systems, Class III medical devices, nuclear facilities, -- applications related to the deployment of airbags, or any -- other applications that could lead to death, personal -- injury, or severe property or environmental damage -- (individually and collectively, "Critical -- Applications"). Customer assumes the sole risk and -- liability of any use of Xilinx products in Critical -- Applications, subject only to applicable laws and -- regulations governing limitations on product liability. -- -- THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS -- PART OF THIS FILE AT ALL TIMES -- ------------------------------------------------------------------------------- -- Filename: lmb_v10.vhd -- -- Description: -- -- VHDL-Standard: VHDL'93 ------------------------------------------------------------------------------- -- Structure: -- lmb_v10.vhd -- ------------------------------------------------------------------------------- -- Author: rolandp -- -- History: -- goran 2002-01-30 First Version -- paulo 2002-04-10 Renamed C_NUM_SLAVES to C_LMB_NUM_SLAVES -- roland 2010-02-13 UE, CE and Wait signals added -- ------------------------------------------------------------------------------- -- Naming Conventions: -- active low signals: "*_n" -- clock signals: "clk", "clk_div#", "clk_#x" -- reset signals: "rst", "rst_n" -- generics: "C_*" -- user defined types: "*_TYPE" -- state machine next state: "*_ns" -- state machine current state: "*_cs" -- combinatorial signals: "*_com" -- pipelined or register delay signals: "*_d#" -- counter signals: "*cnt*" -- clock enable signals: "*_ce" -- internal version of output port "*_i" -- device pins: "*_pin" -- ports: - Names begin with Uppercase -- processes: "*_PROCESS" -- component instantiations: "<ENTITY_>I_<#|FUNC> ------------------------------------------------------------------------------- library IEEE; use IEEE.std_logic_1164.all; entity lmb_v10 is generic ( C_LMB_NUM_SLAVES : integer := 4; C_LMB_DWIDTH : integer := 32; C_LMB_AWIDTH : integer := 32; C_EXT_RESET_HIGH : integer := 1 ); port ( -- Global Ports LMB_Clk : in std_logic; SYS_Rst : in std_logic; LMB_Rst : out std_logic; -- LMB master signals M_ABus : in std_logic_vector(0 to C_LMB_AWIDTH-1); M_ReadStrobe : in std_logic; M_WriteStrobe : in std_logic; M_AddrStrobe : in std_logic; M_DBus : in std_logic_vector(0 to C_LMB_DWIDTH-1); M_BE : in std_logic_vector(0 to (C_LMB_DWIDTH+7)/8-1); -- LMB slave signals Sl_DBus : in std_logic_vector(0 to (C_LMB_DWIDTH*C_LMB_NUM_SLAVES)-1); Sl_Ready : in std_logic_vector(0 to C_LMB_NUM_SLAVES-1); Sl_Wait : in std_logic_vector(0 to C_LMB_NUM_SLAVES-1); Sl_UE : in std_logic_vector(0 to C_LMB_NUM_SLAVES-1); Sl_CE : in std_logic_vector(0 to C_LMB_NUM_SLAVES-1); -- LMB output signals LMB_ABus : out std_logic_vector(0 to C_LMB_AWIDTH-1); LMB_ReadStrobe : out std_logic; LMB_WriteStrobe : out std_logic; LMB_AddrStrobe : out std_logic; LMB_ReadDBus : out std_logic_vector(0 to C_LMB_DWIDTH-1); LMB_WriteDBus : out std_logic_vector(0 to C_LMB_DWIDTH-1); LMB_Ready : out std_logic; LMB_Wait : out std_logic; LMB_UE : out std_logic; LMB_CE : out std_logic; LMB_BE : out std_logic_vector(0 to (C_LMB_DWIDTH+7)/8-1) ); end entity lmb_v10; library unisim; use unisim.all; architecture IMP of lmb_v10 is component FDS is port( Q : out std_logic; D : in std_logic; C : in std_logic; S : in std_logic); end component FDS; signal sys_rst_i : std_logic; begin -- architecture IMP ----------------------------------------------------------------------------- -- Driving the reset signal ----------------------------------------------------------------------------- SYS_RST_PROC : process (SYS_Rst) is variable sys_rst_input : std_logic; begin if C_EXT_RESET_HIGH = 0 then sys_rst_input := not SYS_Rst; else sys_rst_input := SYS_Rst; end if; sys_rst_i <= sys_rst_input; end process SYS_RST_PROC; POR_FF_I : FDS port map ( Q => LMB_Rst, D => '0', C => LMB_Clk, S => sys_rst_i); ----------------------------------------------------------------------------- -- Drive all Master to Slave signals ----------------------------------------------------------------------------- LMB_ABus <= M_ABus; LMB_ReadStrobe <= M_ReadStrobe; LMB_WriteStrobe <= M_WriteStrobe; LMB_AddrStrobe <= M_AddrStrobe; LMB_BE <= M_BE; LMB_WriteDBus <= M_DBus; ----------------------------------------------------------------------------- -- Drive all the Slave to Master signals ----------------------------------------------------------------------------- Ready_ORing : process (Sl_Ready) is variable i : std_logic; begin -- process Ready_ORing i := '0'; for S in Sl_Ready'range loop i := i or Sl_Ready(S); end loop; -- S LMB_Ready <= i; end process Ready_ORing; Wait_ORing : process (Sl_Wait) is variable i : std_logic; begin -- process Wait_ORing i := '0'; for S in Sl_Wait'range loop i := i or Sl_Wait(S); end loop; -- S LMB_Wait <= i; end process Wait_ORing; SI_UE_ORing : process (Sl_UE) is variable i : std_logic; begin -- process UE_ORing i := '0'; for S in Sl_UE'range loop i := i or Sl_UE(S); end loop; -- S LMB_UE <= i; end process SI_UE_ORing; SI_CE_ORing : process (Sl_CE) is variable i : std_logic; begin -- process CE_ORing i := '0'; for S in Sl_CE'range loop i := i or Sl_CE(S); end loop; -- S LMB_CE <= i; end process SI_CE_ORing; DBus_Oring : process (Sl_Ready, Sl_DBus) is variable Res : std_logic_vector(0 to C_LMB_DWIDTH-1); variable Tmp : std_logic_vector(Sl_DBus'range); variable tmp_or : std_logic; begin -- process DBus_Oring if (C_LMB_NUM_SLAVES = 1) then LMB_ReadDBus <= Sl_DBus; else -- First gating all data signals with their resp. ready signal for I in 0 to C_LMB_NUM_SLAVES-1 loop for J in 0 to C_LMB_DWIDTH-1 loop tmp(I*C_LMB_DWIDTH + J) := Sl_Ready(I) and Sl_DBus(I*C_LMB_DWIDTH + J); end loop; -- J end loop; -- I -- then oring the tmp signals together for J in 0 to C_LMB_DWIDTH-1 loop tmp_or := '0'; for I in 0 to C_LMB_NUM_SLAVES-1 loop tmp_or := tmp_or or tmp(I*C_LMB_DWIDTH + j); end loop; -- J res(J) := tmp_or; end loop; -- I LMB_ReadDBus <= Res; end if; end process DBus_Oring; end architecture IMP;
------------------------------------------------------------------------------- -- lmb_v10.vhd - Entity and architecture ------------------------------------------------------------------------------- -- -- (c) Copyright [2003] - [2011] Xilinx, Inc. All rights reserved. -- -- This file contains confidential and proprietary information -- of Xilinx, Inc. and is protected under U.S. and -- international copyright and other intellectual property -- laws. -- -- DISCLAIMER -- This disclaimer is not a license and does not grant any -- rights to the materials distributed herewith. Except as -- otherwise provided in a valid license issued to you by -- Xilinx, and to the maximum extent permitted by applicable -- law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND -- WITH ALL FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES -- AND CONDITIONS, EXPRESS, IMPLIED, OR STATUTORY, INCLUDING -- BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, NON- -- INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE; and -- (2) Xilinx shall not be liable (whether in contract or tort, -- including negligence, or under any other theory of -- liability) for any loss or damage of any kind or nature -- related to, arising under or in connection with these -- materials, including for any direct, or any indirect, -- special, incidental, or consequential loss or damage -- (including loss of data, profits, goodwill, or any type of -- loss or damage suffered as a result of any action brought -- by a third party) even if such damage or loss was -- reasonably foreseeable or Xilinx had been advised of the -- possibility of the same. -- -- CRITICAL APPLICATIONS -- Xilinx products are not designed or intended to be fail- -- safe, or for use in any application requiring fail-safe -- performance, such as life-support or safety devices or -- systems, Class III medical devices, nuclear facilities, -- applications related to the deployment of airbags, or any -- other applications that could lead to death, personal -- injury, or severe property or environmental damage -- (individually and collectively, "Critical -- Applications"). Customer assumes the sole risk and -- liability of any use of Xilinx products in Critical -- Applications, subject only to applicable laws and -- regulations governing limitations on product liability. -- -- THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS -- PART OF THIS FILE AT ALL TIMES -- ------------------------------------------------------------------------------- -- Filename: lmb_v10.vhd -- -- Description: -- -- VHDL-Standard: VHDL'93 ------------------------------------------------------------------------------- -- Structure: -- lmb_v10.vhd -- ------------------------------------------------------------------------------- -- Author: rolandp -- -- History: -- goran 2002-01-30 First Version -- paulo 2002-04-10 Renamed C_NUM_SLAVES to C_LMB_NUM_SLAVES -- roland 2010-02-13 UE, CE and Wait signals added -- ------------------------------------------------------------------------------- -- Naming Conventions: -- active low signals: "*_n" -- clock signals: "clk", "clk_div#", "clk_#x" -- reset signals: "rst", "rst_n" -- generics: "C_*" -- user defined types: "*_TYPE" -- state machine next state: "*_ns" -- state machine current state: "*_cs" -- combinatorial signals: "*_com" -- pipelined or register delay signals: "*_d#" -- counter signals: "*cnt*" -- clock enable signals: "*_ce" -- internal version of output port "*_i" -- device pins: "*_pin" -- ports: - Names begin with Uppercase -- processes: "*_PROCESS" -- component instantiations: "<ENTITY_>I_<#|FUNC> ------------------------------------------------------------------------------- library IEEE; use IEEE.std_logic_1164.all; entity lmb_v10 is generic ( C_LMB_NUM_SLAVES : integer := 4; C_LMB_DWIDTH : integer := 32; C_LMB_AWIDTH : integer := 32; C_EXT_RESET_HIGH : integer := 1 ); port ( -- Global Ports LMB_Clk : in std_logic; SYS_Rst : in std_logic; LMB_Rst : out std_logic; -- LMB master signals M_ABus : in std_logic_vector(0 to C_LMB_AWIDTH-1); M_ReadStrobe : in std_logic; M_WriteStrobe : in std_logic; M_AddrStrobe : in std_logic; M_DBus : in std_logic_vector(0 to C_LMB_DWIDTH-1); M_BE : in std_logic_vector(0 to (C_LMB_DWIDTH+7)/8-1); -- LMB slave signals Sl_DBus : in std_logic_vector(0 to (C_LMB_DWIDTH*C_LMB_NUM_SLAVES)-1); Sl_Ready : in std_logic_vector(0 to C_LMB_NUM_SLAVES-1); Sl_Wait : in std_logic_vector(0 to C_LMB_NUM_SLAVES-1); Sl_UE : in std_logic_vector(0 to C_LMB_NUM_SLAVES-1); Sl_CE : in std_logic_vector(0 to C_LMB_NUM_SLAVES-1); -- LMB output signals LMB_ABus : out std_logic_vector(0 to C_LMB_AWIDTH-1); LMB_ReadStrobe : out std_logic; LMB_WriteStrobe : out std_logic; LMB_AddrStrobe : out std_logic; LMB_ReadDBus : out std_logic_vector(0 to C_LMB_DWIDTH-1); LMB_WriteDBus : out std_logic_vector(0 to C_LMB_DWIDTH-1); LMB_Ready : out std_logic; LMB_Wait : out std_logic; LMB_UE : out std_logic; LMB_CE : out std_logic; LMB_BE : out std_logic_vector(0 to (C_LMB_DWIDTH+7)/8-1) ); end entity lmb_v10; library unisim; use unisim.all; architecture IMP of lmb_v10 is component FDS is port( Q : out std_logic; D : in std_logic; C : in std_logic; S : in std_logic); end component FDS; signal sys_rst_i : std_logic; begin -- architecture IMP ----------------------------------------------------------------------------- -- Driving the reset signal ----------------------------------------------------------------------------- SYS_RST_PROC : process (SYS_Rst) is variable sys_rst_input : std_logic; begin if C_EXT_RESET_HIGH = 0 then sys_rst_input := not SYS_Rst; else sys_rst_input := SYS_Rst; end if; sys_rst_i <= sys_rst_input; end process SYS_RST_PROC; POR_FF_I : FDS port map ( Q => LMB_Rst, D => '0', C => LMB_Clk, S => sys_rst_i); ----------------------------------------------------------------------------- -- Drive all Master to Slave signals ----------------------------------------------------------------------------- LMB_ABus <= M_ABus; LMB_ReadStrobe <= M_ReadStrobe; LMB_WriteStrobe <= M_WriteStrobe; LMB_AddrStrobe <= M_AddrStrobe; LMB_BE <= M_BE; LMB_WriteDBus <= M_DBus; ----------------------------------------------------------------------------- -- Drive all the Slave to Master signals ----------------------------------------------------------------------------- Ready_ORing : process (Sl_Ready) is variable i : std_logic; begin -- process Ready_ORing i := '0'; for S in Sl_Ready'range loop i := i or Sl_Ready(S); end loop; -- S LMB_Ready <= i; end process Ready_ORing; Wait_ORing : process (Sl_Wait) is variable i : std_logic; begin -- process Wait_ORing i := '0'; for S in Sl_Wait'range loop i := i or Sl_Wait(S); end loop; -- S LMB_Wait <= i; end process Wait_ORing; SI_UE_ORing : process (Sl_UE) is variable i : std_logic; begin -- process UE_ORing i := '0'; for S in Sl_UE'range loop i := i or Sl_UE(S); end loop; -- S LMB_UE <= i; end process SI_UE_ORing; SI_CE_ORing : process (Sl_CE) is variable i : std_logic; begin -- process CE_ORing i := '0'; for S in Sl_CE'range loop i := i or Sl_CE(S); end loop; -- S LMB_CE <= i; end process SI_CE_ORing; DBus_Oring : process (Sl_Ready, Sl_DBus) is variable Res : std_logic_vector(0 to C_LMB_DWIDTH-1); variable Tmp : std_logic_vector(Sl_DBus'range); variable tmp_or : std_logic; begin -- process DBus_Oring if (C_LMB_NUM_SLAVES = 1) then LMB_ReadDBus <= Sl_DBus; else -- First gating all data signals with their resp. ready signal for I in 0 to C_LMB_NUM_SLAVES-1 loop for J in 0 to C_LMB_DWIDTH-1 loop tmp(I*C_LMB_DWIDTH + J) := Sl_Ready(I) and Sl_DBus(I*C_LMB_DWIDTH + J); end loop; -- J end loop; -- I -- then oring the tmp signals together for J in 0 to C_LMB_DWIDTH-1 loop tmp_or := '0'; for I in 0 to C_LMB_NUM_SLAVES-1 loop tmp_or := tmp_or or tmp(I*C_LMB_DWIDTH + j); end loop; -- J res(J) := tmp_or; end loop; -- I LMB_ReadDBus <= Res; end if; end process DBus_Oring; end architecture IMP;
------------------------------------------------------------------------------- -- lmb_v10.vhd - Entity and architecture ------------------------------------------------------------------------------- -- -- (c) Copyright [2003] - [2011] Xilinx, Inc. All rights reserved. -- -- This file contains confidential and proprietary information -- of Xilinx, Inc. and is protected under U.S. and -- international copyright and other intellectual property -- laws. -- -- DISCLAIMER -- This disclaimer is not a license and does not grant any -- rights to the materials distributed herewith. Except as -- otherwise provided in a valid license issued to you by -- Xilinx, and to the maximum extent permitted by applicable -- law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND -- WITH ALL FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES -- AND CONDITIONS, EXPRESS, IMPLIED, OR STATUTORY, INCLUDING -- BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, NON- -- INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE; and -- (2) Xilinx shall not be liable (whether in contract or tort, -- including negligence, or under any other theory of -- liability) for any loss or damage of any kind or nature -- related to, arising under or in connection with these -- materials, including for any direct, or any indirect, -- special, incidental, or consequential loss or damage -- (including loss of data, profits, goodwill, or any type of -- loss or damage suffered as a result of any action brought -- by a third party) even if such damage or loss was -- reasonably foreseeable or Xilinx had been advised of the -- possibility of the same. -- -- CRITICAL APPLICATIONS -- Xilinx products are not designed or intended to be fail- -- safe, or for use in any application requiring fail-safe -- performance, such as life-support or safety devices or -- systems, Class III medical devices, nuclear facilities, -- applications related to the deployment of airbags, or any -- other applications that could lead to death, personal -- injury, or severe property or environmental damage -- (individually and collectively, "Critical -- Applications"). Customer assumes the sole risk and -- liability of any use of Xilinx products in Critical -- Applications, subject only to applicable laws and -- regulations governing limitations on product liability. -- -- THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS -- PART OF THIS FILE AT ALL TIMES -- ------------------------------------------------------------------------------- -- Filename: lmb_v10.vhd -- -- Description: -- -- VHDL-Standard: VHDL'93 ------------------------------------------------------------------------------- -- Structure: -- lmb_v10.vhd -- ------------------------------------------------------------------------------- -- Author: rolandp -- -- History: -- goran 2002-01-30 First Version -- paulo 2002-04-10 Renamed C_NUM_SLAVES to C_LMB_NUM_SLAVES -- roland 2010-02-13 UE, CE and Wait signals added -- ------------------------------------------------------------------------------- -- Naming Conventions: -- active low signals: "*_n" -- clock signals: "clk", "clk_div#", "clk_#x" -- reset signals: "rst", "rst_n" -- generics: "C_*" -- user defined types: "*_TYPE" -- state machine next state: "*_ns" -- state machine current state: "*_cs" -- combinatorial signals: "*_com" -- pipelined or register delay signals: "*_d#" -- counter signals: "*cnt*" -- clock enable signals: "*_ce" -- internal version of output port "*_i" -- device pins: "*_pin" -- ports: - Names begin with Uppercase -- processes: "*_PROCESS" -- component instantiations: "<ENTITY_>I_<#|FUNC> ------------------------------------------------------------------------------- library IEEE; use IEEE.std_logic_1164.all; entity lmb_v10 is generic ( C_LMB_NUM_SLAVES : integer := 4; C_LMB_DWIDTH : integer := 32; C_LMB_AWIDTH : integer := 32; C_EXT_RESET_HIGH : integer := 1 ); port ( -- Global Ports LMB_Clk : in std_logic; SYS_Rst : in std_logic; LMB_Rst : out std_logic; -- LMB master signals M_ABus : in std_logic_vector(0 to C_LMB_AWIDTH-1); M_ReadStrobe : in std_logic; M_WriteStrobe : in std_logic; M_AddrStrobe : in std_logic; M_DBus : in std_logic_vector(0 to C_LMB_DWIDTH-1); M_BE : in std_logic_vector(0 to (C_LMB_DWIDTH+7)/8-1); -- LMB slave signals Sl_DBus : in std_logic_vector(0 to (C_LMB_DWIDTH*C_LMB_NUM_SLAVES)-1); Sl_Ready : in std_logic_vector(0 to C_LMB_NUM_SLAVES-1); Sl_Wait : in std_logic_vector(0 to C_LMB_NUM_SLAVES-1); Sl_UE : in std_logic_vector(0 to C_LMB_NUM_SLAVES-1); Sl_CE : in std_logic_vector(0 to C_LMB_NUM_SLAVES-1); -- LMB output signals LMB_ABus : out std_logic_vector(0 to C_LMB_AWIDTH-1); LMB_ReadStrobe : out std_logic; LMB_WriteStrobe : out std_logic; LMB_AddrStrobe : out std_logic; LMB_ReadDBus : out std_logic_vector(0 to C_LMB_DWIDTH-1); LMB_WriteDBus : out std_logic_vector(0 to C_LMB_DWIDTH-1); LMB_Ready : out std_logic; LMB_Wait : out std_logic; LMB_UE : out std_logic; LMB_CE : out std_logic; LMB_BE : out std_logic_vector(0 to (C_LMB_DWIDTH+7)/8-1) ); end entity lmb_v10; library unisim; use unisim.all; architecture IMP of lmb_v10 is component FDS is port( Q : out std_logic; D : in std_logic; C : in std_logic; S : in std_logic); end component FDS; signal sys_rst_i : std_logic; begin -- architecture IMP ----------------------------------------------------------------------------- -- Driving the reset signal ----------------------------------------------------------------------------- SYS_RST_PROC : process (SYS_Rst) is variable sys_rst_input : std_logic; begin if C_EXT_RESET_HIGH = 0 then sys_rst_input := not SYS_Rst; else sys_rst_input := SYS_Rst; end if; sys_rst_i <= sys_rst_input; end process SYS_RST_PROC; POR_FF_I : FDS port map ( Q => LMB_Rst, D => '0', C => LMB_Clk, S => sys_rst_i); ----------------------------------------------------------------------------- -- Drive all Master to Slave signals ----------------------------------------------------------------------------- LMB_ABus <= M_ABus; LMB_ReadStrobe <= M_ReadStrobe; LMB_WriteStrobe <= M_WriteStrobe; LMB_AddrStrobe <= M_AddrStrobe; LMB_BE <= M_BE; LMB_WriteDBus <= M_DBus; ----------------------------------------------------------------------------- -- Drive all the Slave to Master signals ----------------------------------------------------------------------------- Ready_ORing : process (Sl_Ready) is variable i : std_logic; begin -- process Ready_ORing i := '0'; for S in Sl_Ready'range loop i := i or Sl_Ready(S); end loop; -- S LMB_Ready <= i; end process Ready_ORing; Wait_ORing : process (Sl_Wait) is variable i : std_logic; begin -- process Wait_ORing i := '0'; for S in Sl_Wait'range loop i := i or Sl_Wait(S); end loop; -- S LMB_Wait <= i; end process Wait_ORing; SI_UE_ORing : process (Sl_UE) is variable i : std_logic; begin -- process UE_ORing i := '0'; for S in Sl_UE'range loop i := i or Sl_UE(S); end loop; -- S LMB_UE <= i; end process SI_UE_ORing; SI_CE_ORing : process (Sl_CE) is variable i : std_logic; begin -- process CE_ORing i := '0'; for S in Sl_CE'range loop i := i or Sl_CE(S); end loop; -- S LMB_CE <= i; end process SI_CE_ORing; DBus_Oring : process (Sl_Ready, Sl_DBus) is variable Res : std_logic_vector(0 to C_LMB_DWIDTH-1); variable Tmp : std_logic_vector(Sl_DBus'range); variable tmp_or : std_logic; begin -- process DBus_Oring if (C_LMB_NUM_SLAVES = 1) then LMB_ReadDBus <= Sl_DBus; else -- First gating all data signals with their resp. ready signal for I in 0 to C_LMB_NUM_SLAVES-1 loop for J in 0 to C_LMB_DWIDTH-1 loop tmp(I*C_LMB_DWIDTH + J) := Sl_Ready(I) and Sl_DBus(I*C_LMB_DWIDTH + J); end loop; -- J end loop; -- I -- then oring the tmp signals together for J in 0 to C_LMB_DWIDTH-1 loop tmp_or := '0'; for I in 0 to C_LMB_NUM_SLAVES-1 loop tmp_or := tmp_or or tmp(I*C_LMB_DWIDTH + j); end loop; -- J res(J) := tmp_or; end loop; -- I LMB_ReadDBus <= Res; end if; end process DBus_Oring; end architecture IMP;
------------------------------------------------------------------------------- -- lmb_v10.vhd - Entity and architecture ------------------------------------------------------------------------------- -- -- (c) Copyright [2003] - [2011] Xilinx, Inc. All rights reserved. -- -- This file contains confidential and proprietary information -- of Xilinx, Inc. and is protected under U.S. and -- international copyright and other intellectual property -- laws. -- -- DISCLAIMER -- This disclaimer is not a license and does not grant any -- rights to the materials distributed herewith. Except as -- otherwise provided in a valid license issued to you by -- Xilinx, and to the maximum extent permitted by applicable -- law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND -- WITH ALL FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES -- AND CONDITIONS, EXPRESS, IMPLIED, OR STATUTORY, INCLUDING -- BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, NON- -- INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE; and -- (2) Xilinx shall not be liable (whether in contract or tort, -- including negligence, or under any other theory of -- liability) for any loss or damage of any kind or nature -- related to, arising under or in connection with these -- materials, including for any direct, or any indirect, -- special, incidental, or consequential loss or damage -- (including loss of data, profits, goodwill, or any type of -- loss or damage suffered as a result of any action brought -- by a third party) even if such damage or loss was -- reasonably foreseeable or Xilinx had been advised of the -- possibility of the same. -- -- CRITICAL APPLICATIONS -- Xilinx products are not designed or intended to be fail- -- safe, or for use in any application requiring fail-safe -- performance, such as life-support or safety devices or -- systems, Class III medical devices, nuclear facilities, -- applications related to the deployment of airbags, or any -- other applications that could lead to death, personal -- injury, or severe property or environmental damage -- (individually and collectively, "Critical -- Applications"). Customer assumes the sole risk and -- liability of any use of Xilinx products in Critical -- Applications, subject only to applicable laws and -- regulations governing limitations on product liability. -- -- THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS -- PART OF THIS FILE AT ALL TIMES -- ------------------------------------------------------------------------------- -- Filename: lmb_v10.vhd -- -- Description: -- -- VHDL-Standard: VHDL'93 ------------------------------------------------------------------------------- -- Structure: -- lmb_v10.vhd -- ------------------------------------------------------------------------------- -- Author: rolandp -- -- History: -- goran 2002-01-30 First Version -- paulo 2002-04-10 Renamed C_NUM_SLAVES to C_LMB_NUM_SLAVES -- roland 2010-02-13 UE, CE and Wait signals added -- ------------------------------------------------------------------------------- -- Naming Conventions: -- active low signals: "*_n" -- clock signals: "clk", "clk_div#", "clk_#x" -- reset signals: "rst", "rst_n" -- generics: "C_*" -- user defined types: "*_TYPE" -- state machine next state: "*_ns" -- state machine current state: "*_cs" -- combinatorial signals: "*_com" -- pipelined or register delay signals: "*_d#" -- counter signals: "*cnt*" -- clock enable signals: "*_ce" -- internal version of output port "*_i" -- device pins: "*_pin" -- ports: - Names begin with Uppercase -- processes: "*_PROCESS" -- component instantiations: "<ENTITY_>I_<#|FUNC> ------------------------------------------------------------------------------- library IEEE; use IEEE.std_logic_1164.all; entity lmb_v10 is generic ( C_LMB_NUM_SLAVES : integer := 4; C_LMB_DWIDTH : integer := 32; C_LMB_AWIDTH : integer := 32; C_EXT_RESET_HIGH : integer := 1 ); port ( -- Global Ports LMB_Clk : in std_logic; SYS_Rst : in std_logic; LMB_Rst : out std_logic; -- LMB master signals M_ABus : in std_logic_vector(0 to C_LMB_AWIDTH-1); M_ReadStrobe : in std_logic; M_WriteStrobe : in std_logic; M_AddrStrobe : in std_logic; M_DBus : in std_logic_vector(0 to C_LMB_DWIDTH-1); M_BE : in std_logic_vector(0 to (C_LMB_DWIDTH+7)/8-1); -- LMB slave signals Sl_DBus : in std_logic_vector(0 to (C_LMB_DWIDTH*C_LMB_NUM_SLAVES)-1); Sl_Ready : in std_logic_vector(0 to C_LMB_NUM_SLAVES-1); Sl_Wait : in std_logic_vector(0 to C_LMB_NUM_SLAVES-1); Sl_UE : in std_logic_vector(0 to C_LMB_NUM_SLAVES-1); Sl_CE : in std_logic_vector(0 to C_LMB_NUM_SLAVES-1); -- LMB output signals LMB_ABus : out std_logic_vector(0 to C_LMB_AWIDTH-1); LMB_ReadStrobe : out std_logic; LMB_WriteStrobe : out std_logic; LMB_AddrStrobe : out std_logic; LMB_ReadDBus : out std_logic_vector(0 to C_LMB_DWIDTH-1); LMB_WriteDBus : out std_logic_vector(0 to C_LMB_DWIDTH-1); LMB_Ready : out std_logic; LMB_Wait : out std_logic; LMB_UE : out std_logic; LMB_CE : out std_logic; LMB_BE : out std_logic_vector(0 to (C_LMB_DWIDTH+7)/8-1) ); end entity lmb_v10; library unisim; use unisim.all; architecture IMP of lmb_v10 is component FDS is port( Q : out std_logic; D : in std_logic; C : in std_logic; S : in std_logic); end component FDS; signal sys_rst_i : std_logic; begin -- architecture IMP ----------------------------------------------------------------------------- -- Driving the reset signal ----------------------------------------------------------------------------- SYS_RST_PROC : process (SYS_Rst) is variable sys_rst_input : std_logic; begin if C_EXT_RESET_HIGH = 0 then sys_rst_input := not SYS_Rst; else sys_rst_input := SYS_Rst; end if; sys_rst_i <= sys_rst_input; end process SYS_RST_PROC; POR_FF_I : FDS port map ( Q => LMB_Rst, D => '0', C => LMB_Clk, S => sys_rst_i); ----------------------------------------------------------------------------- -- Drive all Master to Slave signals ----------------------------------------------------------------------------- LMB_ABus <= M_ABus; LMB_ReadStrobe <= M_ReadStrobe; LMB_WriteStrobe <= M_WriteStrobe; LMB_AddrStrobe <= M_AddrStrobe; LMB_BE <= M_BE; LMB_WriteDBus <= M_DBus; ----------------------------------------------------------------------------- -- Drive all the Slave to Master signals ----------------------------------------------------------------------------- Ready_ORing : process (Sl_Ready) is variable i : std_logic; begin -- process Ready_ORing i := '0'; for S in Sl_Ready'range loop i := i or Sl_Ready(S); end loop; -- S LMB_Ready <= i; end process Ready_ORing; Wait_ORing : process (Sl_Wait) is variable i : std_logic; begin -- process Wait_ORing i := '0'; for S in Sl_Wait'range loop i := i or Sl_Wait(S); end loop; -- S LMB_Wait <= i; end process Wait_ORing; SI_UE_ORing : process (Sl_UE) is variable i : std_logic; begin -- process UE_ORing i := '0'; for S in Sl_UE'range loop i := i or Sl_UE(S); end loop; -- S LMB_UE <= i; end process SI_UE_ORing; SI_CE_ORing : process (Sl_CE) is variable i : std_logic; begin -- process CE_ORing i := '0'; for S in Sl_CE'range loop i := i or Sl_CE(S); end loop; -- S LMB_CE <= i; end process SI_CE_ORing; DBus_Oring : process (Sl_Ready, Sl_DBus) is variable Res : std_logic_vector(0 to C_LMB_DWIDTH-1); variable Tmp : std_logic_vector(Sl_DBus'range); variable tmp_or : std_logic; begin -- process DBus_Oring if (C_LMB_NUM_SLAVES = 1) then LMB_ReadDBus <= Sl_DBus; else -- First gating all data signals with their resp. ready signal for I in 0 to C_LMB_NUM_SLAVES-1 loop for J in 0 to C_LMB_DWIDTH-1 loop tmp(I*C_LMB_DWIDTH + J) := Sl_Ready(I) and Sl_DBus(I*C_LMB_DWIDTH + J); end loop; -- J end loop; -- I -- then oring the tmp signals together for J in 0 to C_LMB_DWIDTH-1 loop tmp_or := '0'; for I in 0 to C_LMB_NUM_SLAVES-1 loop tmp_or := tmp_or or tmp(I*C_LMB_DWIDTH + j); end loop; -- J res(J) := tmp_or; end loop; -- I LMB_ReadDBus <= Res; end if; end process DBus_Oring; end architecture IMP;
-- Library & Use Statements LIBRARY ieee; USE ieee.std_logic_1164.all; USE ieee.numeric_std.all; -- Entity Declaration ENTITY baud_tick IS PORT( clk : IN std_logic; baud_tick : OUT std_logic; reset_n : IN std_logic; start_bit : in std_logic ); END baud_tick; -- Architecture Declaration  ARCHITECTURE rtl OF baud_tick IS CONSTANT period : unsigned(9 downto 0) := to_unsigned(434, 10); CONSTANT init_period : unsigned(9 downto 0) := to_unsigned(651, 10); -- length of a byte (8) for byte countdown CONSTANT byte_countdown_length : unsigned(3 downto 0) := to_unsigned(8, 4); -- signals for baud tick period counter SIGNAL count, next_count : unsigned(9 downto 0); -- signals for byte counter SIGNAL byte_countdown : unsigned(3 downto 0); SIGNAL next_byte_countdown : unsigned(3 downto 0); -- Begin Architecture BEGIN -- input logic for baud tick input_logic: PROCESS(count, start_bit) BEGIN IF start_bit = '1' THEN next_count <= init_period; -- decrement ELSIF count > 0 THEN next_count <= count - 1 ; -- start new period ELSE next_count <= period; END IF; END PROCESS input_logic; -- baud tick period countdown baud_flip_flops : PROCESS(clk, reset_n) BEGIN IF reset_n = '0' THEN count <= init_period; ELSIF rising_edge(clk) THEN count <= next_count; END IF; END PROCESS baud_flip_flops; -- baud tick output logic output_logic: PROCESS(count, byte_countdown) BEGIN -- send a baud tick, if we reached zero from the counter -- only send a baud tick, if we didnt count down from 8 ticks yet IF (count = 0 AND byte_countdown > 0) THEN baud_tick <= '1'; -- send no baud tick, if we didnt reach the next baud tick yet ELSE baud_tick <= '0'; END IF; END PROCESS output_logic; -- byte countdown logic countdown_logic: PROCESS(start_bit, count, byte_countdown) BEGIN IF start_bit = '1' THEN next_byte_countdown <= byte_countdown_length; -- decrement ELSIF (count = 0 AND byte_countdown > 0) THEN next_byte_countdown <= byte_countdown - 1; -- freeze ELSIF (count = 0 AND byte_countdown = 0) THEN next_byte_countdown <= to_unsigned(0, 4); -- else dont touch the flip flops ELSE next_byte_countdown <= byte_countdown; END IF; END PROCESS countdown_logic; -- byte countdown flip flops countdown_flop_flops: PROCESS(clk, count, reset_n) BEGIN IF reset_n = '0' THEN byte_countdown <= to_unsigned(0, 4); ELSIF rising_edge(clk) THEN byte_countdown <= next_byte_countdown; END IF; END PROCESS countdown_flop_flops; END rtl;
library ieee; use ieee.std_logic_1164.all; use work.rec02_pkg.all; entity rec02 is port (inp : myrec; o : out std_logic); end rec02; architecture behav of rec02 is begin o <= inp.b when inp.a > 3 else '0'; end behav;
-- IT Tijuana, NetList-FPGA-Optimizer 0.01 (printed on 2016-05-26.16:17:17) LIBRARY IEEE; USE IEEE.STD_LOGIC_1164.all; USE IEEE.NUMERIC_STD.all; ENTITY epic_random_entity IS PORT ( reset, clk: IN std_logic; input1, input2, input3, input4, input5, input6: IN unsigned(0 TO 3); output1, output2, output3, output4, output5, output6, output7, output8, output9: OUT unsigned(0 TO 4)); END epic_random_entity; ARCHITECTURE epic_random_description OF epic_random_entity IS SIGNAL current_state : unsigned(0 TO 7) := "00000000"; SHARED VARIABLE register1: unsigned(0 TO 4) := "00000"; SHARED VARIABLE register2: unsigned(0 TO 4) := "00000"; SHARED VARIABLE register3: unsigned(0 TO 4) := "00000"; SHARED VARIABLE register4: unsigned(0 TO 4) := "00000"; SHARED VARIABLE register5: unsigned(0 TO 4) := "00000"; SHARED VARIABLE register6: unsigned(0 TO 4) := "00000"; SHARED VARIABLE register7: unsigned(0 TO 4) := "00000"; SHARED VARIABLE register8: unsigned(0 TO 4) := "00000"; SHARED VARIABLE register9: unsigned(0 TO 4) := "00000"; SHARED VARIABLE register10: unsigned(0 TO 4) := "00000"; SHARED VARIABLE register11: unsigned(0 TO 4) := "00000"; SHARED VARIABLE register12: unsigned(0 TO 4) := "00000"; SHARED VARIABLE register13: unsigned(0 TO 4) := "00000"; BEGIN moore_machine: PROCESS(clk, reset) BEGIN IF reset = '0' THEN current_state <= "00000000"; ELSIF clk = '1' AND clk'event THEN IF current_state < 4 THEN current_state <= current_state + 1; END IF; END IF; END PROCESS moore_machine; operations: PROCESS(current_state) BEGIN CASE current_state IS WHEN "00000001" => register1 := input1 + 1; register2 := input2 * 2; WHEN "00000010" => register2 := register2 + 4; register3 := input3 + 5; register4 := input4 - 6; register1 := register1 * 8; WHEN "00000011" => register5 := ((NOT register2) + 1) XOR register2; register4 := register4 * 12; register6 := input5 - 13; WHEN "00000100" => register7 := register6 + register3; register8 := input6 srl 14; register9 := register3 * 16; register3 := register6 - register3; register5 := register5 + 18; register10 := register6 + 20; WHEN "00000101" => output1 <= register2(0 TO 1) & register5(0 TO 2); register2 := register4 + 23; register3 := register3 * 25; register4 := register8 srl 27; WHEN "00000110" => register5 := register8 sll to_integer(register4); register11 := ((NOT register2) + 1) XOR register2; WHEN "00000111" => register11 := register8 - register11; register12 := register6 - 31; WHEN "00001000" => output2 <= register2(0 TO 1) & register11(0 TO 2); register2 := register10 * 34; register3 := register3 + 36; WHEN "00001001" => register10 := ((NOT register3) + 1) XOR register3; register9 := register9 + 40; register1 := register1 + 42; WHEN "00001010" => register11 := ((NOT register9) + 1) XOR register9; register10 := register8 + register4 + register10; register12 := register12 * 46; register7 := register7 * 48; WHEN "00001011" => register13 := ((NOT register1) + 1) XOR register1; register7 := register7 + 52; register2 := register2 + 54; WHEN "00001100" => register13 := register8 - register13; output3 <= register3(0 TO 1) & register10(0 TO 2); register3 := ((NOT register2) + 1) XOR register2; WHEN "00001101" => register10 := ((NOT register7) + 1) XOR register7; register3 := register8 + register4 + register3; register12 := register12 + 61; register5 := register11 - register5; WHEN "00001110" => output4 <= register9(0 TO 1) & register5(0 TO 2); register5 := ((NOT register12) + 1) XOR register12; register9 := register8 + register4 + register10; WHEN "00001111" => output5 <= register2(0 TO 1) & register3(0 TO 2); register2 := register4 + register5; WHEN "00010000" => output6 <= register7(0 TO 1) & register9(0 TO 2); WHEN "00010001" => output7 <= register1(0 TO 1) & register13(0 TO 2); WHEN "00010010" => output8 <= register12(0 TO 1) & register2(0 TO 2); register1 := register6 * 70; WHEN "00010011" => register1 := register1 + 72; WHEN "00010100" => register2 := ((NOT register1) + 1) XOR register1; WHEN "00010101" => register2 := register8 - register2; WHEN "00010110" => output9 <= register1(0 TO 1) & register2(0 TO 2); WHEN OTHERS => NULL; END CASE; END PROCESS operations; END epic_random_description;
-- ************************************************************************* -- -- (c) Copyright 2010-2011 Xilinx, Inc. All rights reserved. -- -- This file contains confidential and proprietary information -- of Xilinx, Inc. and is protected under U.S. and -- international copyright and other intellectual property -- laws. -- -- DISCLAIMER -- This disclaimer is not a license and does not grant any -- rights to the materials distributed herewith. Except as -- otherwise provided in a valid license issued to you by -- Xilinx, and to the maximum extent permitted by applicable -- law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND -- WITH ALL FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES -- AND CONDITIONS, EXPRESS, IMPLIED, OR STATUTORY, INCLUDING -- BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, NON- -- INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE; and -- (2) Xilinx shall not be liable (whether in contract or tort, -- including negligence, or under any other theory of -- liability) for any loss or damage of any kind or nature -- related to, arising under or in connection with these -- materials, including for any direct, or any indirect, -- special, incidental, or consequential loss or damage -- (including loss of data, profits, goodwill, or any type of -- loss or damage suffered as a result of any action brought -- by a third party) even if such damage or loss was -- reasonably foreseeable or Xilinx had been advised of the -- possibility of the same. -- -- CRITICAL APPLICATIONS -- Xilinx products are not designed or intended to be fail- -- safe, or for use in any application requiring fail-safe -- performance, such as life-support or safety devices or -- systems, Class III medical devices, nuclear facilities, -- applications related to the deployment of airbags, or any -- other applications that could lead to death, personal -- injury, or severe property or environmental damage -- (individually and collectively, "Critical -- Applications"). Customer assumes the sole risk and -- liability of any use of Xilinx products in Critical -- Applications, subject only to applicable laws and -- regulations governing limitations on product liability. -- -- THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS -- PART OF THIS FILE AT ALL TIMES. -- -- ************************************************************************* -- ------------------------------------------------------------------------------- -- Filename: axi_sg_wrdata_cntl.vhd -- -- Description: -- This file implements the DataMover Master Write Data Controller. -- -- -- -- -- VHDL-Standard: VHDL'93 ------------------------------------------------------------------------------- library IEEE; use IEEE.std_logic_1164.all; use IEEE.numeric_std.all; library axi_sg_v4_1_3; use axi_sg_v4_1_3.axi_sg_fifo; ------------------------------------------------------------------------------- entity axi_sg_wrdata_cntl is generic ( C_REALIGNER_INCLUDED : Integer range 0 to 1 := 0; -- Indicates the Data Realignment function is included (external -- to this module) C_ENABLE_INDET_BTT : Integer range 0 to 1 := 0; -- Indicates the INDET BTT function is included (external -- to this module) C_SF_BYTES_RCVD_WIDTH : Integer range 1 to 23 := 1; -- Sets the width of the data2wsc_bytes_rcvd port used for -- relaying the actual number of bytes received when Idet BTT is -- enabled (C_ENABLE_INDET_BTT = 1) C_SEL_ADDR_WIDTH : Integer range 1 to 8 := 5; -- Sets the width of the LS bits of the transfer address that -- are being used to Demux write data to a wider AXI4 Write -- Data Bus C_DATA_CNTL_FIFO_DEPTH : Integer range 1 to 32 := 4; -- Sets the depth of the internal command fifo used for the -- command queue C_MMAP_DWIDTH : Integer range 32 to 1024 := 32; -- Indicates the native data width of the Read Data port C_STREAM_DWIDTH : Integer range 8 to 1024 := 32; -- Sets the width of the Stream output data port C_TAG_WIDTH : Integer range 1 to 8 := 4; -- Indicates the width of the Tag field of the input command C_FAMILY : String := "virtex7" -- Indicates the device family of the target FPGA ); port ( -- Clock and Reset inputs ---------------------------------------------- -- primary_aclk : in std_logic; -- -- Primary synchronization clock for the Master side -- -- interface and internal logic. It is also used -- -- for the User interface synchronization when -- -- C_STSCMD_IS_ASYNC = 0. -- -- -- Reset input -- mmap_reset : in std_logic; -- -- Reset used for the internal master logic -- ------------------------------------------------------------------------ -- Soft Shutdown internal interface ------------------------------------ -- rst2data_stop_request : in std_logic; -- -- Active high soft stop request to modules -- -- data2addr_stop_req : Out std_logic; -- -- Active high signal requesting the Address Controller -- -- to stop posting commands to the AXI Read Address Channel -- -- data2rst_stop_cmplt : Out std_logic; -- -- Active high indication that the Data Controller has completed -- -- any pending transfers committed by the Address Controller -- -- after a stop has been requested by the Reset module. -- ------------------------------------------------------------------------ -- Store and Forward support signals for external User logic ------------ -- wr_xfer_cmplt : Out std_logic; -- -- Active high indication that the Data Controller has completed -- -- a single write data transfer on the AXI4 Write Data Channel. -- -- This signal is escentially echos the assertion of wlast sent -- -- to the AXI4. -- -- s2mm_ld_nxt_len : out std_logic; -- -- Active high pulse indicating a new xfer length has been queued -- -- to the WDC Cmd FIFO -- -- s2mm_wr_len : out std_logic_vector(7 downto 0); -- -- Bus indicating the AXI LEN value associated with the xfer command -- -- loaded into the WDC Command FIFO. -- ------------------------------------------------------------------------- -- AXI Write Data Channel Skid buffer I/O --------------------------------------- -- data2skid_saddr_lsb : out std_logic_vector(C_SEL_ADDR_WIDTH-1 downto 0); -- -- Write DATA output to skid buffer -- -- data2skid_wdata : Out std_logic_vector(C_STREAM_DWIDTH-1 downto 0); -- -- Write DATA output to skid buffer -- -- data2skid_wstrb : Out std_logic_vector((C_STREAM_DWIDTH/8)-1 downto 0); -- -- Write DATA output to skid buffer -- -- data2skid_wlast : Out std_logic; -- -- Write LAST output to skid buffer -- -- data2skid_wvalid : Out std_logic; -- -- Write VALID output to skid buffer -- -- skid2data_wready : In std_logic; -- -- Write READY input from skid buffer -- ---------------------------------------------------------------------------------- -- AXI Slave Stream In ----------------------------------------------------------- -- s2mm_strm_wvalid : In std_logic; -- -- AXI Stream VALID input -- -- s2mm_strm_wready : Out Std_logic; -- -- AXI Stream READY Output -- -- s2mm_strm_wdata : In std_logic_vector(C_STREAM_DWIDTH-1 downto 0); -- -- AXI Stream data input -- -- s2mm_strm_wstrb : In std_logic_vector((C_STREAM_DWIDTH/8)-1 downto 0); -- -- AXI Stream STRB input -- -- s2mm_strm_wlast : In std_logic; -- -- AXI Stream LAST input -- ---------------------------------------------------------------------------------- -- Stream input sideband signal from Indeterminate BTT and/or DRE ---------------- -- s2mm_strm_eop : In std_logic; -- -- Stream End of Packet marker input. This is only used when Indeterminate -- -- BTT mode is enable. Otherwise it is ignored -- -- -- s2mm_stbs_asserted : in std_logic_vector(7 downto 0); -- -- Indicates the number of asserted WSTRB bits for the -- -- associated input stream data beat -- -- -- -- Realigner Underrun/overrun error flag used in non Indeterminate BTT -- -- Mode -- realign2wdc_eop_error : In std_logic ; -- -- Asserted active high and will only clear with reset. It is only used -- -- when Indeterminate BTT is not enabled and the Realigner Module is -- -- instantiated upstream from the WDC. The Realigner will detect overrun -- -- underrun conditions and will will relay these conditions via this signal. -- ---------------------------------------------------------------------------------- -- Command Calculator Interface -------------------------------------------------- -- mstr2data_tag : In std_logic_vector(C_TAG_WIDTH-1 downto 0); -- -- The next command tag -- -- mstr2data_saddr_lsb : In std_logic_vector(C_SEL_ADDR_WIDTH-1 downto 0); -- -- The next command start address LSbs to use for the write strb -- -- demux (only used if Stream data width is less than the MMap Dwidth). -- -- mstr2data_len : In std_logic_vector(7 downto 0); -- -- The LEN value output to the Address Channel -- -- mstr2data_strt_strb : In std_logic_vector((C_STREAM_DWIDTH/8)-1 downto 0); -- -- The starting strobe value to use for the first stream data beat -- -- mstr2data_last_strb : In std_logic_vector((C_STREAM_DWIDTH/8)-1 downto 0); -- -- The endiing (LAST) strobe value to use for the last stream -- -- data beat -- -- mstr2data_drr : In std_logic; -- -- The starting tranfer of a sequence of transfers -- -- mstr2data_eof : In std_logic; -- -- The endiing tranfer of a sequence of transfers -- -- mstr2data_sequential : In std_logic; -- -- The next sequential tranfer of a sequence of transfers -- -- spawned from a single parent command -- -- mstr2data_calc_error : In std_logic; -- -- Indication if the next command in the calculation pipe -- -- has a calculation error -- -- mstr2data_cmd_cmplt : In std_logic; -- -- The final child tranfer of a parent command fetched from -- -- the Command FIFO (not necessarily an EOF command) -- -- mstr2data_cmd_valid : In std_logic; -- -- The next command valid indication to the Data Channel -- -- Controller for the AXI MMap -- -- data2mstr_cmd_ready : Out std_logic ; -- -- Indication from the Data Channel Controller that the -- -- command is being accepted on the AXI Address -- -- Channel -- ---------------------------------------------------------------------------------- -- Address Controller Interface -------------------------------------------------- -- addr2data_addr_posted : In std_logic ; -- -- Indication from the Address Channel Controller to the -- -- Data Controller that an address has been posted to the -- -- AXI Address Channel -- -- -- data2addr_data_rdy : out std_logic; -- -- Indication that the Data Channel is ready to send the first -- -- databeat of the next command on the write data channel. -- -- This is used for the "wait for data" feature which keeps the -- -- address controller from issuing a transfer request until the -- -- corresponding data valid is asserted on the stream input. The -- -- WDC will continue to assert the output until an assertion on -- -- the addr2data_addr_posted is received. -- --------------------------------------------------------------------------------- -- Premature TLAST assertion error flag ------------------------------------------ -- data2all_tlast_error : Out std_logic; -- -- When asserted, this indicates the data controller detected -- -- a premature TLAST assertion on the incoming data stream. -- --------------------------------------------------------------------------------- -- Data Controller Halted Status ------------------------------------------------- -- data2all_dcntlr_halted : Out std_logic; -- -- When asserted, this indicates the data controller has satisfied -- -- all pending transfers queued by the Address Controller and is halted. -- ---------------------------------------------------------------------------------- -- Input Stream Skid Buffer Halt control ----------------------------------------- -- data2skid_halt : Out std_logic; -- -- The data controller asserts this output for 1 primary clock period -- -- The pulse commands the MM2S Stream skid buffer to tun off outputs -- -- at the next tlast transmission. -- ---------------------------------------------------------------------------------- -- Write Status Controller Interface --------------------------------------------- -- data2wsc_tag : Out std_logic_vector(C_TAG_WIDTH-1 downto 0); -- -- The command tag -- -- data2wsc_calc_err : Out std_logic ; -- -- Indication that the current command out from the Cntl FIFO -- -- has a calculation error -- -- data2wsc_last_err : Out std_logic ; -- -- Indication that the current write transfer encountered a premature -- -- TLAST assertion on the incoming Stream Channel -- -- data2wsc_cmd_cmplt : Out std_logic ; -- -- Indication by the Data Channel Controller that the -- -- corresponding status is the last status for a command -- -- pulled from the command FIFO -- -- wsc2data_ready : in std_logic; -- -- Input from the Write Status Module indicating that the -- -- Status Reg/FIFO is ready to accept data -- -- data2wsc_valid : Out std_logic; -- -- Output to the Command/Status Module indicating that the -- -- Data Controller has valid tag and err indicators to write -- -- to the Status module -- -- data2wsc_eop : Out std_logic; -- -- Output to the Write Status Controller indicating that the -- -- associated command status also corresponds to a End of Packet -- -- marker for the input Stream. This is only used when Inderminate -- -- BTT is enabled in the S2MM. -- -- data2wsc_bytes_rcvd : Out std_logic_vector(C_SF_BYTES_RCVD_WIDTH-1 downto 0); -- -- Output to the Write Status Controller indicating the actual -- -- number of bytes received from the Stream input for the -- -- corresponding command status. This is only used when Inderminate -- -- BTT is enabled in the S2MM. -- -- wsc2mstr_halt_pipe : In std_logic -- -- Indication to Halt the Data and Address Command pipeline due -- -- to the Status FIFO going full or an internal error being logged -- ---------------------------------------------------------------------------------- ); end entity axi_sg_wrdata_cntl; architecture implementation of axi_sg_wrdata_cntl is attribute DowngradeIPIdentifiedWarnings: string; attribute DowngradeIPIdentifiedWarnings of implementation : architecture is "yes"; -- Function declaration ---------------------------------------- ------------------------------------------------------------------- -- Function -- -- Function Name: funct_get_dbeat_residue_width -- -- Function Description: -- Calculates the number of Least significant bits of the BTT field -- that are unused for the LEN calculation -- ------------------------------------------------------------------- -- coverage off function funct_get_dbeat_residue_width (bytes_per_beat : integer) return integer is Variable temp_dbeat_residue_width : Integer := 0; -- 8-bit stream begin case bytes_per_beat is when 128 => -- 1024 bits -- Added per Per CR616409 temp_dbeat_residue_width := 7; -- Added per Per CR616409 when 64 => -- 512 bits -- Added per Per CR616409 temp_dbeat_residue_width := 6; -- Added per Per CR616409 when 32 => -- 256 bits temp_dbeat_residue_width := 5; when 16 => -- 128 bits temp_dbeat_residue_width := 4; when 8 => -- 64 bits temp_dbeat_residue_width := 3; when 4 => -- 32 bits temp_dbeat_residue_width := 2; when 2 => -- 16 bits temp_dbeat_residue_width := 1; when others => -- assume 1-byte transfers temp_dbeat_residue_width := 0; end case; Return (temp_dbeat_residue_width); end function funct_get_dbeat_residue_width; -- coverage on ------------------------------------------------------------------- -- Function -- -- Function Name: funct_set_cnt_width -- -- Function Description: -- Sets a count width based on a fifo depth. A depth of 4 or less -- is a special case which requires a minimum count width of 3 bits. -- ------------------------------------------------------------------- function funct_set_cnt_width (fifo_depth : integer) return integer is Variable temp_cnt_width : Integer := 4; begin if (fifo_depth <= 4) then temp_cnt_width := 3; -- coverage off elsif (fifo_depth <= 8) then temp_cnt_width := 4; elsif (fifo_depth <= 16) then temp_cnt_width := 5; elsif (fifo_depth <= 32) then temp_cnt_width := 6; else -- fifo depth <= 64 temp_cnt_width := 7; end if; -- coverage on Return (temp_cnt_width); end function funct_set_cnt_width; -- Constant Declarations -------------------------------------------- Constant STRM_STRB_WIDTH : integer := C_STREAM_DWIDTH/8; Constant LEN_OF_ZERO : std_logic_vector(7 downto 0) := (others => '0'); Constant USE_SYNC_FIFO : integer := 0; Constant REG_FIFO_PRIM : integer := 0; Constant BRAM_FIFO_PRIM : integer := 1; Constant SRL_FIFO_PRIM : integer := 2; Constant FIFO_PRIM_TYPE : integer := SRL_FIFO_PRIM; Constant TAG_WIDTH : integer := C_TAG_WIDTH; Constant SADDR_LSB_WIDTH : integer := C_SEL_ADDR_WIDTH; Constant LEN_WIDTH : integer := 8; Constant STRB_WIDTH : integer := C_STREAM_DWIDTH/8; Constant DRR_WIDTH : integer := 1; Constant EOF_WIDTH : integer := 1; Constant CALC_ERR_WIDTH : integer := 1; Constant CMD_CMPLT_WIDTH : integer := 1; Constant SEQUENTIAL_WIDTH : integer := 1; Constant DCTL_FIFO_WIDTH : Integer := TAG_WIDTH + -- Tag field SADDR_LSB_WIDTH + -- LS Address field width LEN_WIDTH + -- LEN field STRB_WIDTH + -- Starting Strobe field STRB_WIDTH + -- Ending Strobe field DRR_WIDTH + -- DRE Re-alignment Request Flag Field EOF_WIDTH + -- EOF flag field SEQUENTIAL_WIDTH + -- Sequential command flag CMD_CMPLT_WIDTH + -- Command Complete Flag CALC_ERR_WIDTH; -- Calc error flag Constant TAG_STRT_INDEX : integer := 0; Constant SADDR_LSB_STRT_INDEX : integer := TAG_STRT_INDEX + TAG_WIDTH; Constant LEN_STRT_INDEX : integer := SADDR_LSB_STRT_INDEX + SADDR_LSB_WIDTH; Constant STRT_STRB_STRT_INDEX : integer := LEN_STRT_INDEX + LEN_WIDTH; Constant LAST_STRB_STRT_INDEX : integer := STRT_STRB_STRT_INDEX + STRB_WIDTH; Constant DRR_STRT_INDEX : integer := LAST_STRB_STRT_INDEX + STRB_WIDTH; Constant EOF_STRT_INDEX : integer := DRR_STRT_INDEX + DRR_WIDTH; Constant SEQUENTIAL_STRT_INDEX : integer := EOF_STRT_INDEX + EOF_WIDTH; Constant CMD_CMPLT_STRT_INDEX : integer := SEQUENTIAL_STRT_INDEX+SEQUENTIAL_WIDTH; Constant CALC_ERR_STRT_INDEX : integer := CMD_CMPLT_STRT_INDEX+CMD_CMPLT_WIDTH; Constant ADDR_INCR_VALUE : integer := C_STREAM_DWIDTH/8; Constant ADDR_POSTED_CNTR_WIDTH : integer := funct_set_cnt_width(C_DATA_CNTL_FIFO_DEPTH); Constant ADDR_POSTED_ZERO : unsigned(ADDR_POSTED_CNTR_WIDTH-1 downto 0) := (others => '0'); Constant ADDR_POSTED_ONE : unsigned(ADDR_POSTED_CNTR_WIDTH-1 downto 0) := TO_UNSIGNED(1, ADDR_POSTED_CNTR_WIDTH); Constant ADDR_POSTED_MAX : unsigned(ADDR_POSTED_CNTR_WIDTH-1 downto 0) := (others => '1'); -- Signal Declarations -------------------------------------------- signal sig_get_next_dqual : std_logic := '0'; signal sig_last_mmap_dbeat : std_logic := '0'; signal sig_last_mmap_dbeat_reg : std_logic := '0'; signal sig_mmap2data_ready : std_logic := '0'; signal sig_data2mmap_valid : std_logic := '0'; signal sig_data2mmap_last : std_logic := '0'; signal sig_data2mmap_data : std_logic_vector(C_STREAM_DWIDTH-1 downto 0) := (others => '0'); signal sig_ld_new_cmd : std_logic := '0'; signal sig_ld_new_cmd_reg : std_logic := '0'; signal sig_cmd_cmplt_reg : std_logic := '0'; signal sig_calc_error_reg : std_logic := '0'; signal sig_tag_reg : std_logic_vector(TAG_WIDTH-1 downto 0) := (others => '0'); signal sig_addr_lsb_reg : std_logic_vector(C_SEL_ADDR_WIDTH-1 downto 0) := (others => '0'); signal sig_strt_strb_reg : std_logic_vector(STRM_STRB_WIDTH-1 downto 0) := (others => '0'); signal sig_last_strb_reg : std_logic_vector(STRM_STRB_WIDTH-1 downto 0) := (others => '0'); signal sig_addr_posted : std_logic := '0'; signal sig_dqual_rdy : std_logic := '0'; signal sig_good_mmap_dbeat : std_logic := '0'; signal sig_first_dbeat : std_logic := '0'; signal sig_last_dbeat : std_logic := '0'; signal sig_single_dbeat : std_logic := '0'; signal sig_new_len_eq_0 : std_logic := '0'; signal sig_dbeat_cntr : unsigned(7 downto 0) := (others => '0'); Signal sig_dbeat_cntr_int : Integer range 0 to 255 := 0; signal sig_dbeat_cntr_eq_0 : std_logic := '0'; signal sig_dbeat_cntr_eq_1 : std_logic := '0'; signal sig_wsc_ready : std_logic := '0'; signal sig_push_to_wsc : std_logic := '0'; signal sig_push_to_wsc_cmplt : std_logic := '0'; signal sig_set_push2wsc : std_logic := '0'; signal sig_data2wsc_tag : std_logic_vector(TAG_WIDTH-1 downto 0) := (others => '0'); signal sig_data2wsc_calc_err : std_logic := '0'; signal sig_data2wsc_last_err : std_logic := '0'; signal sig_data2wsc_cmd_cmplt : std_logic := '0'; signal sig_tlast_error : std_logic := '0'; signal sig_tlast_error_strbs : std_logic := '0'; signal sig_end_stbs_match_err : std_logic := '0'; signal sig_tlast_error_reg : std_logic := '0'; signal sig_cmd_is_eof : std_logic := '0'; signal sig_push_err2wsc : std_logic := '0'; signal sig_tlast_error_ovrrun : std_logic := '0'; signal sig_tlast_error_undrrun : std_logic := '0'; signal sig_next_tag_reg : std_logic_vector(TAG_WIDTH-1 downto 0) := (others => '0'); signal sig_next_strt_strb_reg : std_logic_vector(STRM_STRB_WIDTH-1 downto 0) := (others => '0'); signal sig_next_last_strb_reg : std_logic_vector(STRM_STRB_WIDTH-1 downto 0) := (others => '0'); signal sig_next_eof_reg : std_logic := '0'; signal sig_next_sequential_reg : std_logic := '0'; signal sig_next_cmd_cmplt_reg : std_logic := '0'; signal sig_next_calc_error_reg : std_logic := '0'; signal sig_pop_dqual_reg : std_logic := '0'; signal sig_push_dqual_reg : std_logic := '0'; signal sig_dqual_reg_empty : std_logic := '0'; signal sig_dqual_reg_full : std_logic := '0'; signal sig_addr_posted_cntr : unsigned(ADDR_POSTED_CNTR_WIDTH-1 downto 0) := (others => '0'); signal sig_addr_posted_cntr_eq_0 : std_logic := '0'; signal sig_addr_posted_cntr_max : std_logic := '0'; signal sig_decr_addr_posted_cntr : std_logic := '0'; signal sig_incr_addr_posted_cntr : std_logic := '0'; signal sig_addr_posted_cntr_eq_1 : std_logic := '0'; signal sig_apc_going2zero : std_logic := '0'; signal sig_aposted_cntr_ready : std_logic := '0'; signal sig_addr_chan_rdy : std_logic := '0'; Signal sig_no_posted_cmds : std_logic := '0'; signal sig_ls_addr_cntr : unsigned(C_SEL_ADDR_WIDTH-1 downto 0) := (others => '0'); signal sig_incr_ls_addr_cntr : std_logic := '0'; signal sig_addr_incr_unsgnd : unsigned(C_SEL_ADDR_WIDTH-1 downto 0) := (others => '0'); Signal sig_cmd_fifo_data_in : std_logic_vector(DCTL_FIFO_WIDTH-1 downto 0) := (others => '0'); Signal sig_cmd_fifo_data_out : std_logic_vector(DCTL_FIFO_WIDTH-1 downto 0) := (others => '0'); signal sig_fifo_next_tag : std_logic_vector(TAG_WIDTH-1 downto 0) := (others => '0'); signal sig_fifo_next_sadddr_lsb : std_logic_vector(C_SEL_ADDR_WIDTH-1 downto 0) := (others => '0'); signal sig_fifo_next_len : std_logic_vector(7 downto 0) := (others => '0'); signal sig_fifo_next_strt_strb : std_logic_vector(STRM_STRB_WIDTH-1 downto 0) := (others => '0'); signal sig_fifo_next_last_strb : std_logic_vector(STRM_STRB_WIDTH-1 downto 0) := (others => '0'); signal sig_fifo_next_drr : std_logic := '0'; signal sig_fifo_next_eof : std_logic := '0'; signal sig_fifo_next_cmd_cmplt : std_logic := '0'; signal sig_fifo_next_sequential : std_logic := '0'; signal sig_fifo_next_calc_error : std_logic := '0'; signal sig_cmd_fifo_empty : std_logic := '0'; signal sig_fifo_wr_cmd_valid : std_logic := '0'; signal sig_fifo_wr_cmd_ready : std_logic := '0'; signal sig_fifo_rd_cmd_valid : std_logic := '0'; signal sig_fifo_rd_cmd_ready : std_logic := '0'; signal sig_sequential_push : std_logic := '0'; signal sig_clr_dqual_reg : std_logic := '0'; signal sig_tlast_err_stop : std_logic := '0'; signal sig_halt_reg : std_logic := '0'; signal sig_halt_reg_dly1 : std_logic := '0'; signal sig_halt_reg_dly2 : std_logic := '0'; signal sig_halt_reg_dly3 : std_logic := '0'; signal sig_data2skid_halt : std_logic := '0'; signal sig_stop_wvalid : std_logic := '0'; signal sig_data2rst_stop_cmplt : std_logic := '0'; signal sig_s2mm_strm_wready : std_logic := '0'; signal sig_s2mm_strm_wready_del : std_logic := '0'; signal sig_good_strm_dbeat : std_logic := '0'; signal sig_halt_strb : std_logic_vector(STRM_STRB_WIDTH-1 downto 0) := (others => '0'); signal sig_sfhalt_next_strt_strb : std_logic_vector(STRM_STRB_WIDTH-1 downto 0) := (others => '0'); signal sig_wfd_simult_clr_set : std_logic := '0'; signal sig_wr_xfer_cmplt : std_logic := '0'; signal sig_s2mm_ld_nxt_len : std_logic := '0'; signal sig_s2mm_wr_len : std_logic_vector(7 downto 0) := (others => '0'); signal sig_data2mstr_cmd_ready : std_logic := '0'; signal sig_spcl_push_err2wsc : std_logic := '0'; begin --(architecture implementation) -- Command calculator handshake data2mstr_cmd_ready <= sig_data2mstr_cmd_ready; -- Write Data Channel Skid Buffer Port assignments sig_mmap2data_ready <= skid2data_wready ; data2skid_wvalid <= sig_data2mmap_valid ; data2skid_wlast <= sig_data2mmap_last ; data2skid_wdata <= sig_data2mmap_data ; data2skid_saddr_lsb <= sig_addr_lsb_reg ; -- AXI MM2S Stream Channel Port assignments sig_data2mmap_data <= s2mm_strm_wdata ; -- Premature TLAST assertion indication data2all_tlast_error <= sig_tlast_error_reg ; -- Stream Input Ready Handshake s2mm_strm_wready <= sig_s2mm_strm_wready ; sig_good_strm_dbeat <= s2mm_strm_wvalid and sig_s2mm_strm_wready; -- sig_s2mm_strm_wready_del; sig_data2mmap_last <= sig_dbeat_cntr_eq_0 and sig_dqual_rdy; -- Write Status Block interface signals data2wsc_valid <= sig_push_to_wsc and not(sig_tlast_err_stop) ; -- only allow 1 status write on TLAST errror sig_wsc_ready <= wsc2data_ready ; data2wsc_tag <= sig_data2wsc_tag ; data2wsc_calc_err <= sig_data2wsc_calc_err ; data2wsc_last_err <= sig_data2wsc_last_err ; data2wsc_cmd_cmplt <= sig_data2wsc_cmd_cmplt ; -- Address Channel Controller synchro pulse input sig_addr_posted <= addr2data_addr_posted; -- Request to halt the Address Channel Controller data2addr_stop_req <= sig_halt_reg or sig_tlast_error_reg; -- Halted flag to the reset module data2rst_stop_cmplt <= sig_data2rst_stop_cmplt; -- Indicate the Write Data Controller is always ready data2addr_data_rdy <= '1'; -- Write Transfer Completed Status output wr_xfer_cmplt <= sig_wr_xfer_cmplt ; -- New LEN value is being loaded s2mm_ld_nxt_len <= sig_s2mm_ld_nxt_len; -- The new LEN value s2mm_wr_len <= sig_s2mm_wr_len; ------------------------------------------------------------- -- Synchronous Process with Sync Reset -- -- Label: IMP_WR_CMPLT_FLAG -- -- Process Description: -- Implements the status flag indicating that a write data -- transfer has completed. This is an echo of a wlast assertion -- and a qualified data beat on the AXI4 Write Data Channel. -- ------------------------------------------------------------- IMP_WR_CMPLT_FLAG : process (primary_aclk) begin if (primary_aclk'event and primary_aclk = '1') then if (mmap_reset = '1') then sig_wr_xfer_cmplt <= '0'; sig_s2mm_strm_wready_del <= '0'; else sig_wr_xfer_cmplt <= sig_data2mmap_last and sig_good_strm_dbeat; sig_s2mm_strm_wready_del <= sig_s2mm_strm_wready; end if; end if; end process IMP_WR_CMPLT_FLAG; ------------------------------------------------------------ -- If Generate -- -- Label: GEN_OMIT_INDET_BTT -- -- If Generate Description: -- Omits any Indeterminate BTT Support logic and includes -- any error detection needed in Non Indeterminate BTT mode. -- ------------------------------------------------------------ GEN_OMIT_INDET_BTT : if (C_ENABLE_INDET_BTT = 0) generate begin sig_sfhalt_next_strt_strb <= sig_fifo_next_strt_strb; -- Just housekeep the output port signals data2wsc_eop <= '0'; data2wsc_bytes_rcvd <= (others => '0'); -- WRSTRB logic ------------------------------ -- Generate the Write Strobes for the MMap Write Data Channel -- for the non Indeterminate BTT Case data2skid_wstrb <= (others => '1') when mmap_reset = '0' else (others => '0'); --sig_strt_strb_reg -- data2skid_wstrb <= sig_strt_strb_reg -- When (sig_first_dbeat = '1') -- Else sig_last_strb_reg -- When (sig_last_dbeat = '1') -- Else (others => '1'); -- Generate the Stream Ready for the Stream input side sig_s2mm_strm_wready <= sig_halt_reg or -- force tready if a halt requested (sig_mmap2data_ready and sig_addr_chan_rdy and -- This puts combinational logic in the stream WREADY path sig_dqual_rdy and not(sig_calc_error_reg) and not(sig_tlast_error_reg)); -- Stop the stream channel at a overrun/underrun detection -- MMap Write Data Channel Valid Handshaking sig_data2mmap_valid <= (s2mm_strm_wvalid or sig_tlast_error_reg or -- force valid if TLAST error sig_halt_reg ) and -- force valid if halt requested sig_addr_chan_rdy and -- xfers are commited on the address channel and sig_dqual_rdy and -- there are commands in the command fifo not(sig_calc_error_reg) and not(sig_stop_wvalid); -- gate off wvalid immediately after a wlast for 1 clk -- or when the soft shutdown has completed ------------------------------------------------------------ -- If Generate -- -- Label: GEN_LOCAL_ERR_DETECT -- -- If Generate Description: -- Implements the local overrun and underrun detection when -- the S2MM Realigner is not included. -- -- ------------------------------------------------------------ GEN_LOCAL_ERR_DETECT : if (C_REALIGNER_INCLUDED = 0) generate begin ------- Input Stream TLAST assertion error ------------------------------- sig_tlast_error_ovrrun <= sig_cmd_is_eof and sig_dbeat_cntr_eq_0 and sig_good_mmap_dbeat and not(s2mm_strm_wlast); sig_tlast_error_undrrun <= s2mm_strm_wlast and sig_good_mmap_dbeat and (not(sig_dbeat_cntr_eq_0) or not(sig_cmd_is_eof)); sig_end_stbs_match_err <= '1' -- Set flag if the calculated end strobe value When ((s2mm_strm_wstrb /= sig_next_last_strb_reg) and -- does not match the received strobe value (s2mm_strm_wlast = '1') and -- at TLAST assertion (sig_good_mmap_dbeat = '1')) -- Qualified databeat Else '0'; sig_tlast_error <= (sig_tlast_error_ovrrun or sig_tlast_error_undrrun or sig_end_stbs_match_err) and not(sig_halt_reg); -- Suppress TLAST error when in soft shutdown -- Just housekeep this when local TLAST error detection is used sig_spcl_push_err2wsc <= '0'; end generate GEN_LOCAL_ERR_DETECT; ------------------------------------------------------------ -- If Generate -- -- Label: GEN_EXTERN_ERR_DETECT -- -- If Generate Description: -- Omits the local overrun and underrun detection and relies -- on the S2MM Realigner for the detection. -- ------------------------------------------------------------ GEN_EXTERN_ERR_DETECT : if (C_REALIGNER_INCLUDED = 1) generate begin sig_tlast_error_undrrun <= '0'; -- not used here sig_tlast_error_ovrrun <= '0'; -- not used here sig_end_stbs_match_err <= '0'; -- not used here sig_tlast_error <= realign2wdc_eop_error and -- External error detection asserted not(sig_halt_reg); -- Suppress TLAST error when in soft shutdown -- Special case for pushing error status when timing is such that no -- addresses have been posted to AXI and a TLAST error has been detected -- by the Realigner module and propagated in from the Stream input side. sig_spcl_push_err2wsc <= sig_tlast_error_reg and not(sig_tlast_err_stop) and not(sig_addr_chan_rdy ); end generate GEN_EXTERN_ERR_DETECT; ------------------------------------------------------------- -- Synchronous Process with Sync Reset -- -- Label: IMP_TLAST_ERR_REG -- -- Process Description: -- Implements a sample and hold flop for the flag indicating -- that the input Stream TLAST assertion was not at the expected -- data beat relative to the commanded number of databeats -- from the associated command from the SCC or PCC. ------------------------------------------------------------- IMP_TLAST_ERR_REG : process (primary_aclk) begin if (primary_aclk'event and primary_aclk = '1') then if (mmap_reset = '1') then sig_tlast_error_reg <= '0'; -- coverage off elsif (sig_tlast_error = '1') then sig_tlast_error_reg <= '1'; -- coverage on else null; -- hold current state end if; end if; end process IMP_TLAST_ERR_REG; ------------------------------------------------------------- -- Synchronous Process with Sync Reset -- -- Label: IMP_TLAST_ERROR_STOP -- -- Process Description: -- Implements the flop to generate a stop flag once the TLAST -- error condition has been relayed to the Write Status -- Controller. This stop flag is used to prevent any more -- pushes to the Write Status Controller. -- ------------------------------------------------------------- IMP_TLAST_ERROR_STOP : process (primary_aclk) begin if (primary_aclk'event and primary_aclk = '1') then if (mmap_reset = '1') then sig_tlast_err_stop <= '0'; -- coverage off elsif (sig_tlast_error_reg = '1' and sig_push_to_wsc_cmplt = '1') then sig_tlast_err_stop <= '1'; -- coverage on else null; -- Hold State end if; end if; end process IMP_TLAST_ERROR_STOP; end generate GEN_OMIT_INDET_BTT; ------------------------------------------------------------ -- If Generate -- -- Label: GEN_INDET_BTT -- -- If Generate Description: -- Includes any Indeterminate BTT Support logic. Primarily -- this is a counter for the input stream bytes received. The -- received byte count is relayed to the Write Status Controller -- for each parent command completed. -- When a packet completion is indicated via the EOP marker -- assertion, the status to the Write Status Controller also -- indicates the EOP condition. -- Note that underrun and overrun detection/error flagging -- is disabled in Indeterminate BTT Mode. -- ------------------------------------------------------------ -- GEN_INDET_BTT : if (C_ENABLE_INDET_BTT = 1) generate -- -- -- local constants -- Constant BYTE_CNTR_WIDTH : integer := C_SF_BYTES_RCVD_WIDTH; -- Constant NUM_ZEROS_WIDTH : integer := 8; -- Constant BYTES_PER_DBEAT : integer := C_STREAM_DWIDTH/8; -- Constant STRBGEN_ADDR_SLICE_WIDTH : integer := -- funct_get_dbeat_residue_width(BYTES_PER_DBEAT); -- -- Constant STRBGEN_ADDR_0 : std_logic_vector(STRBGEN_ADDR_SLICE_WIDTH-1 downto 0) := (others => '0'); -- -- -- -- -- local signals -- signal lsig_byte_cntr : unsigned(BYTE_CNTR_WIDTH-1 downto 0) := (others => '0'); -- signal lsig_byte_cntr_incr_value : unsigned(BYTE_CNTR_WIDTH-1 downto 0) := (others => '0'); -- signal lsig_ld_byte_cntr : std_logic := '0'; -- signal lsig_incr_byte_cntr : std_logic := '0'; -- signal lsig_clr_byte_cntr : std_logic := '0'; -- signal lsig_end_of_cmd_reg : std_logic := '0'; -- signal lsig_eop_s_h_reg : std_logic := '0'; -- signal lsig_eop_reg : std_logic := '0'; -- signal sig_strbgen_addr : std_logic_vector(STRBGEN_ADDR_SLICE_WIDTH-1 downto 0) := (others => '0'); -- signal sig_strbgen_bytes : std_logic_vector(STRBGEN_ADDR_SLICE_WIDTH downto 0) := (others => '0'); -- -- -- -- -- begin -- -- -- -- Assign the outputs to the Write Status Controller -- data2wsc_eop <= lsig_eop_reg and -- not(sig_next_calc_error_reg); -- -- data2wsc_bytes_rcvd <= STD_LOGIC_VECTOR(lsig_byte_cntr); -- -- -- -- -- WRSTRB logic ------------------------------ -- -- -- -- --sig_strbgen_bytes <= (others => '1'); -- set to the max value -- -- -- -- set the length to the max number of bytes per databeat -- sig_strbgen_bytes <= STD_LOGIC_VECTOR(TO_UNSIGNED(BYTES_PER_DBEAT, STRBGEN_ADDR_SLICE_WIDTH+1)); -- -- -- -- -- -- -- sig_strbgen_addr <= STD_LOGIC_VECTOR(RESIZE(UNSIGNED(sig_fifo_next_sadddr_lsb), -- STRBGEN_ADDR_SLICE_WIDTH)) ; -- -- -- -- -- ------------------------------------------------------------ -- -- Instance: I_STRT_STRB_GEN -- -- -- -- Description: -- -- Strobe generator used to generate the starting databeat -- -- strobe value for soft shutdown case where the S2MM has to -- -- flush out all of the transfers that have been committed -- -- to the AXI Write address channel. Starting Strobes must -- -- match the committed address offest for each transfer. -- -- -- ------------------------------------------------------------ -- I_STRT_STRB_GEN : entity axi_sg_v4_1_3.axi_sg_strb_gen2 -- generic map ( -- -- C_OP_MODE => 0 , -- 0 = Offset/Length mode -- C_STRB_WIDTH => BYTES_PER_DBEAT , -- C_OFFSET_WIDTH => STRBGEN_ADDR_SLICE_WIDTH , -- C_NUM_BYTES_WIDTH => STRBGEN_ADDR_SLICE_WIDTH+1 -- -- ) -- port map ( -- -- start_addr_offset => sig_strbgen_addr , -- end_addr_offset => STRBGEN_ADDR_0 , -- not used in op mode 0 -- num_valid_bytes => sig_strbgen_bytes , -- strb_out => sig_sfhalt_next_strt_strb -- -- ); -- -- -- -- -- -- -- -- -- Generate the WSTRB to use during soft shutdown -- sig_halt_strb <= sig_strt_strb_reg -- When (sig_first_dbeat = '1' or -- sig_single_dbeat = '1') -- Else (others => '1'); -- -- -- -- -- Generate the Write Strobes for the MMap Write Data Channel -- -- for the Indeterminate BTT case. Strobes come from the Stream -- -- input from the Indeterminate BTT module during normal operation. -- -- However, during soft shutdown, those strobes become unpredictable -- -- so generated strobes have to be used. -- data2skid_wstrb <= sig_halt_strb -- When (sig_halt_reg = '1') -- -- Else s2mm_strm_wstrb; -- -- -- -- -- Generate the Stream Ready for the Stream input side -- sig_s2mm_strm_wready <= sig_halt_reg or -- force tready if a halt requested -- (sig_mmap2data_ready and -- MMap is accepting the xfers -- sig_addr_chan_rdy and -- xfers are commited on the address channel and -- sig_dqual_rdy and -- there are commands in the command fifo -- not(sig_calc_error_reg) and -- No internal error -- not(sig_stop_wvalid)); -- Gate off stream ready immediately after a wlast for 1 clk -- -- or when the soft shutdown has completed -- -- -- -- MMap Write Data Channel Valid Handshaking -- sig_data2mmap_valid <= (s2mm_strm_wvalid or -- Normal Stream input valid -- sig_halt_reg ) and -- force valid if halt requested -- sig_addr_chan_rdy and -- xfers are commited on the address channel and -- sig_dqual_rdy and -- there are commands in the command fifo -- not(sig_calc_error_reg) and -- No internal error -- not(sig_stop_wvalid); -- Gate off wvalid immediately after a wlast for 1 clk -- -- or when the soft shutdown has completed -- -- -- -- -- TLAST Error housekeeping for Indeterminate BTT Mode -- -- There is no Underrun/overrun in Stroe and Forward mode -- -- sig_tlast_error_ovrrun <= '0'; -- Not used with Indeterminate BTT -- sig_tlast_error_undrrun <= '0'; -- Not used with Indeterminate BTT -- sig_end_stbs_match_err <= '0'; -- Not used with Indeterminate BTT -- sig_tlast_error <= '0'; -- Not used with Indeterminate BTT -- sig_tlast_error_reg <= '0'; -- Not used with Indeterminate BTT -- sig_tlast_err_stop <= '0'; -- Not used with Indeterminate BTT -- -- -- -- -- -- ------------------------------------------------------------- -- -- Synchronous Process with Sync Reset -- -- -- -- Label: IMP_EOP_REG_FLOP -- -- -- -- Process Description: -- -- Register the End of Packet marker. -- -- -- ------------------------------------------------------------- -- IMP_EOP_REG_FLOP : process (primary_aclk) -- begin -- if (primary_aclk'event and primary_aclk = '1') then -- if (mmap_reset = '1') then -- -- lsig_end_of_cmd_reg <= '0'; -- lsig_eop_reg <= '0'; -- -- -- Elsif (sig_good_strm_dbeat = '1') Then -- -- -- lsig_end_of_cmd_reg <= sig_next_cmd_cmplt_reg and -- s2mm_strm_wlast; -- -- lsig_eop_reg <= s2mm_strm_eop; -- -- else -- -- null; -- hold current state -- -- end if; -- end if; -- end process IMP_EOP_REG_FLOP; -- -- -- -- -- -- ----- Byte Counter Logic ----------------------------------------------- -- -- The Byte counter reflects the actual byte count received on the -- -- Stream input for each parent command loaded into the S2MM command -- -- FIFO. Thus it counts input bytes until the command complete qualifier -- -- is set and the TLAST input from the Stream input. -- -- -- lsig_clr_byte_cntr <= lsig_end_of_cmd_reg and -- Clear if a new stream packet does not start -- not(sig_good_strm_dbeat); -- immediately after the previous one finished. -- -- -- lsig_ld_byte_cntr <= lsig_end_of_cmd_reg and -- Only load if a new stream packet starts -- sig_good_strm_dbeat; -- immediately after the previous one finished. -- -- lsig_incr_byte_cntr <= sig_good_strm_dbeat; -- -- -- lsig_byte_cntr_incr_value <= RESIZE(UNSIGNED(s2mm_stbs_asserted), -- BYTE_CNTR_WIDTH); -- -- ------------------------------------------------------------- -- -- Synchronous Process with Sync Reset -- -- -- -- Label: IMP_BYTE_CMTR -- -- -- -- Process Description: -- -- Keeps a running byte count per burst packet loaded into the -- -- xfer FIFO. It is based on the strobes set on the incoming -- -- Stream dbeat. -- -- -- ------------------------------------------------------------- -- IMP_BYTE_CMTR : process (primary_aclk) -- begin -- if (primary_aclk'event and primary_aclk = '1') then -- if (mmap_reset = '1' or -- lsig_clr_byte_cntr = '1') then -- -- lsig_byte_cntr <= (others => '0'); -- -- elsif (lsig_ld_byte_cntr = '1') then -- -- lsig_byte_cntr <= lsig_byte_cntr_incr_value; -- -- elsif (lsig_incr_byte_cntr = '1') then -- -- lsig_byte_cntr <= lsig_byte_cntr + lsig_byte_cntr_incr_value; -- -- else -- null; -- hold current value -- end if; -- end if; -- end process IMP_BYTE_CMTR; -- -- -- -- -- -- end generate GEN_INDET_BTT; -- -- Internal logic ------------------------------ sig_good_mmap_dbeat <= sig_mmap2data_ready and sig_data2mmap_valid; sig_last_mmap_dbeat <= sig_good_mmap_dbeat and sig_data2mmap_last; sig_get_next_dqual <= sig_last_mmap_dbeat; ------------------------------------------------------------- -- Synchronous Process with Sync Reset -- -- Label: REG_LAST_DBEAT -- -- Process Description: -- This implements a FLOP that creates a pulse -- indicating the LAST signal for an outgoing write data channel -- has been sent. Note that it is possible to have back to -- back LAST databeats. -- ------------------------------------------------------------- REG_LAST_DBEAT : process (primary_aclk) begin if (primary_aclk'event and primary_aclk = '1') then if (mmap_reset = '1') then sig_last_mmap_dbeat_reg <= '0'; else sig_last_mmap_dbeat_reg <= sig_last_mmap_dbeat; end if; end if; end process REG_LAST_DBEAT; ----- Write Status Interface Stuff -------------------------- sig_push_to_wsc_cmplt <= sig_push_to_wsc and sig_wsc_ready; sig_set_push2wsc <= (sig_good_mmap_dbeat and sig_dbeat_cntr_eq_0) or sig_push_err2wsc or sig_spcl_push_err2wsc; -- Special case from CR616212 ------------------------------------------------------------- -- Synchronous Process with Sync Reset -- -- Label: IMP_INTERR_PUSH_FLOP -- -- Process Description: -- Generate a 1 clock wide pulse when a calc error has propagated -- from the Command Calculator. This pulse is used to force a -- push of the error status to the Write Status Controller -- without a AXI transfer completion. -- ------------------------------------------------------------- IMP_INTERR_PUSH_FLOP : process (primary_aclk) begin if (primary_aclk'event and primary_aclk = '1') then if (mmap_reset = '1' or sig_push_err2wsc = '1') then sig_push_err2wsc <= '0'; elsif (sig_ld_new_cmd_reg = '1' and sig_calc_error_reg = '1') then sig_push_err2wsc <= '1'; else null; -- hold state end if; end if; end process IMP_INTERR_PUSH_FLOP; ------------------------------------------------------------- -- Synchronous Process with Sync Reset -- -- Label: IMP_PUSH2WSC_FLOP -- -- Process Description: -- Implements a Sample and hold register for the outbound status -- signals to the Write Status Controller (WSC). This register -- has to support back to back transfer completions. -- ------------------------------------------------------------- IMP_PUSH2WSC_FLOP : process (primary_aclk) begin if (primary_aclk'event and primary_aclk = '1') then if (mmap_reset = '1' or (sig_push_to_wsc_cmplt = '1' and sig_set_push2wsc = '0')) then sig_push_to_wsc <= '0'; sig_data2wsc_tag <= (others => '0'); sig_data2wsc_calc_err <= '0'; sig_data2wsc_last_err <= '0'; sig_data2wsc_cmd_cmplt <= '0'; elsif (sig_set_push2wsc = '1' and sig_tlast_err_stop = '0') then sig_push_to_wsc <= '1'; sig_data2wsc_tag <= sig_tag_reg ; sig_data2wsc_calc_err <= sig_calc_error_reg ; sig_data2wsc_last_err <= sig_tlast_error_reg or sig_tlast_error ; sig_data2wsc_cmd_cmplt <= sig_cmd_cmplt_reg or sig_tlast_error_reg or sig_tlast_error ; else null; -- hold current state end if; end if; end process IMP_PUSH2WSC_FLOP; ------------------------------------------------------------- -- Synchronous Process with Sync Reset -- -- Label: IMP_LD_NEW_CMD_REG -- -- Process Description: -- Registers the flag indicating a new command has been -- loaded. Needs to be a 1 clk wide pulse. -- ------------------------------------------------------------- IMP_LD_NEW_CMD_REG : process (primary_aclk) begin if (primary_aclk'event and primary_aclk = '1') then if (mmap_reset = '1' or sig_ld_new_cmd_reg = '1') then sig_ld_new_cmd_reg <= '0'; else sig_ld_new_cmd_reg <= sig_ld_new_cmd; end if; end if; end process IMP_LD_NEW_CMD_REG; ------------------------------------------------------------- -- Synchronous Process with Sync Reset -- -- Label: IMP_NXT_LEN_REG -- -- Process Description: -- Registers the load control and length value for a command -- passed to the WDC input command interface. The registered -- signals are used for the external Indeterminate BTT support -- ports. -- ------------------------------------------------------------- IMP_NXT_LEN_REG : process (primary_aclk) begin if (primary_aclk'event and primary_aclk = '1') then if (mmap_reset = '1') then sig_s2mm_ld_nxt_len <= '0'; sig_s2mm_wr_len <= (others => '0'); else sig_s2mm_ld_nxt_len <= mstr2data_cmd_valid and sig_data2mstr_cmd_ready; sig_s2mm_wr_len <= mstr2data_len; end if; end if; end process IMP_NXT_LEN_REG; ------------------------------------------------------------ -- If Generate -- -- Label: GEN_NO_DATA_CNTL_FIFO -- -- If Generate Description: -- Omits the input data control FIFO if the requested FIFO -- depth is 1. The Data Qualifier Register serves as a -- 1 deep FIFO by itself. -- ------------------------------------------------------------ GEN_NO_DATA_CNTL_FIFO : if (C_DATA_CNTL_FIFO_DEPTH = 1) generate begin -- Command Calculator Handshake output sig_data2mstr_cmd_ready <= sig_fifo_wr_cmd_ready; sig_fifo_rd_cmd_valid <= mstr2data_cmd_valid ; -- pre 13.1 sig_fifo_wr_cmd_ready <= sig_dqual_reg_empty and -- pre 13.1 sig_aposted_cntr_ready and -- pre 13.1 not(wsc2mstr_halt_pipe) and -- The Wr Status Controller is not stalling -- pre 13.1 not(sig_calc_error_reg); -- the command execution pipe and there is -- pre 13.1 -- no calculation error being propagated sig_fifo_wr_cmd_ready <= sig_push_dqual_reg; sig_fifo_next_tag <= mstr2data_tag ; sig_fifo_next_sadddr_lsb <= mstr2data_saddr_lsb ; sig_fifo_next_len <= mstr2data_len ; sig_fifo_next_strt_strb <= mstr2data_strt_strb ; sig_fifo_next_last_strb <= mstr2data_last_strb ; sig_fifo_next_drr <= mstr2data_drr ; sig_fifo_next_eof <= mstr2data_eof ; sig_fifo_next_sequential <= mstr2data_sequential ; sig_fifo_next_cmd_cmplt <= mstr2data_cmd_cmplt ; sig_fifo_next_calc_error <= mstr2data_calc_error ; end generate GEN_NO_DATA_CNTL_FIFO; ------------------------------------------------------------ -- If Generate -- -- Label: GEN_DATA_CNTL_FIFO -- -- If Generate Description: -- Includes the input data control FIFO if the requested -- FIFO depth is more than 1. -- ------------------------------------------------------------ GEN_DATA_CNTL_FIFO : if (C_DATA_CNTL_FIFO_DEPTH > 1) generate begin -- Command Calculator Handshake output sig_data2mstr_cmd_ready <= sig_fifo_wr_cmd_ready; sig_fifo_wr_cmd_valid <= mstr2data_cmd_valid ; -- pop the fifo when dqual reg is pushed sig_fifo_rd_cmd_ready <= sig_push_dqual_reg; -- Format the input fifo data word sig_cmd_fifo_data_in <= mstr2data_calc_error & mstr2data_cmd_cmplt & mstr2data_sequential & mstr2data_eof & mstr2data_drr & mstr2data_last_strb & mstr2data_strt_strb & mstr2data_len & mstr2data_saddr_lsb & mstr2data_tag ; -- Rip the output fifo data word sig_fifo_next_tag <= sig_cmd_fifo_data_out((TAG_STRT_INDEX+TAG_WIDTH)-1 downto TAG_STRT_INDEX); sig_fifo_next_sadddr_lsb <= sig_cmd_fifo_data_out((SADDR_LSB_STRT_INDEX+SADDR_LSB_WIDTH)-1 downto SADDR_LSB_STRT_INDEX); sig_fifo_next_len <= sig_cmd_fifo_data_out((LEN_STRT_INDEX+LEN_WIDTH)-1 downto LEN_STRT_INDEX); sig_fifo_next_strt_strb <= sig_cmd_fifo_data_out((STRT_STRB_STRT_INDEX+STRB_WIDTH)-1 downto STRT_STRB_STRT_INDEX); sig_fifo_next_last_strb <= sig_cmd_fifo_data_out((LAST_STRB_STRT_INDEX+STRB_WIDTH)-1 downto LAST_STRB_STRT_INDEX); sig_fifo_next_drr <= sig_cmd_fifo_data_out(DRR_STRT_INDEX); sig_fifo_next_eof <= sig_cmd_fifo_data_out(EOF_STRT_INDEX); sig_fifo_next_sequential <= sig_cmd_fifo_data_out(SEQUENTIAL_STRT_INDEX); sig_fifo_next_cmd_cmplt <= sig_cmd_fifo_data_out(CMD_CMPLT_STRT_INDEX); sig_fifo_next_calc_error <= sig_cmd_fifo_data_out(CALC_ERR_STRT_INDEX); ------------------------------------------------------------ -- Instance: I_DATA_CNTL_FIFO -- -- Description: -- Instance for the Command Qualifier FIFO -- ------------------------------------------------------------ I_DATA_CNTL_FIFO : entity axi_sg_v4_1_3.axi_sg_fifo generic map ( C_DWIDTH => DCTL_FIFO_WIDTH , C_DEPTH => C_DATA_CNTL_FIFO_DEPTH , C_IS_ASYNC => USE_SYNC_FIFO , C_PRIM_TYPE => FIFO_PRIM_TYPE , C_FAMILY => C_FAMILY ) port map ( -- Write Clock and reset fifo_wr_reset => mmap_reset , fifo_wr_clk => primary_aclk , -- Write Side fifo_wr_tvalid => sig_fifo_wr_cmd_valid , fifo_wr_tready => sig_fifo_wr_cmd_ready , fifo_wr_tdata => sig_cmd_fifo_data_in , fifo_wr_full => open , -- Read Clock and reset fifo_async_rd_reset => mmap_reset , fifo_async_rd_clk => primary_aclk , -- Read Side fifo_rd_tvalid => sig_fifo_rd_cmd_valid , fifo_rd_tready => sig_fifo_rd_cmd_ready , fifo_rd_tdata => sig_cmd_fifo_data_out , fifo_rd_empty => sig_cmd_fifo_empty ); end generate GEN_DATA_CNTL_FIFO; -- Data Qualifier Register ------------------------------------ sig_ld_new_cmd <= sig_push_dqual_reg ; sig_dqual_rdy <= sig_dqual_reg_full ; sig_strt_strb_reg <= sig_next_strt_strb_reg ; sig_last_strb_reg <= sig_next_last_strb_reg ; sig_tag_reg <= sig_next_tag_reg ; sig_cmd_cmplt_reg <= sig_next_cmd_cmplt_reg ; sig_calc_error_reg <= sig_next_calc_error_reg ; sig_cmd_is_eof <= sig_next_eof_reg ; -- new for no bubbles between child requests sig_sequential_push <= sig_good_mmap_dbeat and -- MMap handshake qualified sig_last_dbeat and -- last data beat of transfer sig_next_sequential_reg;-- next queued command is sequential -- to the current command -- pre 13.1 sig_push_dqual_reg <= (sig_sequential_push or -- pre 13.1 sig_dqual_reg_empty) and -- pre 13.1 sig_fifo_rd_cmd_valid and -- pre 13.1 sig_aposted_cntr_ready and -- pre 13.1 not(wsc2mstr_halt_pipe); -- The Wr Status Controller is not -- pre 13.1 -- stalling the command execution pipe sig_push_dqual_reg <= (sig_sequential_push or sig_dqual_reg_empty) and sig_fifo_rd_cmd_valid and sig_aposted_cntr_ready and not(sig_calc_error_reg) and -- 13.1 addition => An error has not been propagated not(wsc2mstr_halt_pipe); -- The Wr Status Controller is not -- stalling the command execution pipe sig_pop_dqual_reg <= not(sig_next_calc_error_reg) and sig_get_next_dqual and sig_dqual_reg_full ; -- new for no bubbles between child requests sig_clr_dqual_reg <= mmap_reset or (sig_pop_dqual_reg and not(sig_push_dqual_reg)); ------------------------------------------------------------- -- Synchronous Process with Sync Reset -- -- Label: IMP_DQUAL_REG -- -- Process Description: -- This process implements a register for the Data -- Control and qualifiers. It operates like a 1 deep Sync FIFO. -- ------------------------------------------------------------- IMP_DQUAL_REG : process (primary_aclk) begin if (primary_aclk'event and primary_aclk = '1') then if (sig_clr_dqual_reg = '1') then sig_next_tag_reg <= (others => '0'); sig_next_strt_strb_reg <= (others => '0'); sig_next_last_strb_reg <= (others => '0'); sig_next_eof_reg <= '0' ; sig_next_sequential_reg <= '0' ; sig_next_cmd_cmplt_reg <= '0' ; sig_next_calc_error_reg <= '0' ; sig_dqual_reg_empty <= '1' ; sig_dqual_reg_full <= '0' ; elsif (sig_push_dqual_reg = '1') then sig_next_tag_reg <= sig_fifo_next_tag ; sig_next_strt_strb_reg <= sig_sfhalt_next_strt_strb ; sig_next_last_strb_reg <= sig_fifo_next_last_strb ; sig_next_eof_reg <= sig_fifo_next_eof ; sig_next_sequential_reg <= sig_fifo_next_sequential ; sig_next_cmd_cmplt_reg <= sig_fifo_next_cmd_cmplt ; sig_next_calc_error_reg <= sig_fifo_next_calc_error ; sig_dqual_reg_empty <= '0'; sig_dqual_reg_full <= '1'; else null; -- don't change state end if; end if; end process IMP_DQUAL_REG; -- Address LS Cntr logic -------------------------- sig_addr_lsb_reg <= STD_LOGIC_VECTOR(sig_ls_addr_cntr); sig_addr_incr_unsgnd <= TO_UNSIGNED(ADDR_INCR_VALUE, C_SEL_ADDR_WIDTH); sig_incr_ls_addr_cntr <= sig_good_mmap_dbeat; ------------------------------------------------------------- -- Synchronous Process with Sync Reset -- -- Label: DO_ADDR_LSB_CNTR -- -- Process Description: -- Implements the LS Address Counter used for controlling -- the Write STRB DeMux during Burst transfers -- ------------------------------------------------------------- DO_ADDR_LSB_CNTR : process (primary_aclk) begin if (primary_aclk'event and primary_aclk = '1') then if (mmap_reset = '1' or (sig_pop_dqual_reg = '1'and sig_push_dqual_reg = '0')) then -- Clear the Counter sig_ls_addr_cntr <= (others => '0'); elsif (sig_push_dqual_reg = '1') then -- Load the Counter sig_ls_addr_cntr <= unsigned(sig_fifo_next_sadddr_lsb); elsif (sig_incr_ls_addr_cntr = '1') then -- Increment the Counter sig_ls_addr_cntr <= sig_ls_addr_cntr + sig_addr_incr_unsgnd; else null; -- Hold Current value end if; end if; end process DO_ADDR_LSB_CNTR; -- Address Posted Counter Logic -------------------------------------- sig_addr_chan_rdy <= not(sig_addr_posted_cntr_eq_0 or sig_apc_going2zero) ; -- Gates data channel xfer handshake sig_aposted_cntr_ready <= not(sig_addr_posted_cntr_max) ; -- Gates new command fetching sig_no_posted_cmds <= sig_addr_posted_cntr_eq_0 ; -- Used for flushing cmds that are posted sig_incr_addr_posted_cntr <= sig_addr_posted ; sig_decr_addr_posted_cntr <= sig_last_mmap_dbeat_reg ; sig_addr_posted_cntr_eq_0 <= '1' when (sig_addr_posted_cntr = ADDR_POSTED_ZERO) Else '0'; sig_addr_posted_cntr_max <= '1' when (sig_addr_posted_cntr = ADDR_POSTED_MAX) Else '0'; sig_addr_posted_cntr_eq_1 <= '1' when (sig_addr_posted_cntr = ADDR_POSTED_ONE) Else '0'; sig_apc_going2zero <= sig_addr_posted_cntr_eq_1 and sig_decr_addr_posted_cntr and not(sig_incr_addr_posted_cntr); ------------------------------------------------------------- -- Synchronous Process with Sync Reset -- -- Label: IMP_ADDR_POSTED_FIFO_CNTR -- -- Process Description: -- This process implements a counter for the tracking -- if an Address has been posted on the AXI address channel. -- The Data Controller must wait for an address to be posted -- before proceeding with the corresponding data transfer on -- the Data Channel. The counter is also used to track flushing -- operations where all transfers commited on the AXI Address -- Channel have to be completed before a halt can occur. ------------------------------------------------------------- IMP_ADDR_POSTED_FIFO_CNTR : process (primary_aclk) begin if (primary_aclk'event and primary_aclk = '1') then if (mmap_reset = '1') then sig_addr_posted_cntr <= ADDR_POSTED_ZERO; elsif (sig_incr_addr_posted_cntr = '1' and sig_decr_addr_posted_cntr = '0' and sig_addr_posted_cntr_max = '0') then sig_addr_posted_cntr <= sig_addr_posted_cntr + ADDR_POSTED_ONE ; elsif (sig_incr_addr_posted_cntr = '0' and sig_decr_addr_posted_cntr = '1' and sig_addr_posted_cntr_eq_0 = '0') then sig_addr_posted_cntr <= sig_addr_posted_cntr - ADDR_POSTED_ONE ; else null; -- don't change state end if; end if; end process IMP_ADDR_POSTED_FIFO_CNTR; ------- First/Middle/Last Dbeat detimination ------------------- sig_new_len_eq_0 <= '1' When (sig_fifo_next_len = LEN_OF_ZERO) else '0'; ------------------------------------------------------------- -- Synchronous Process with Sync Reset -- -- Label: DO_FIRST_MID_LAST -- -- Process Description: -- Implements the detection of the First/Mid/Last databeat of -- a transfer. -- ------------------------------------------------------------- DO_FIRST_MID_LAST : process (primary_aclk) begin if (primary_aclk'event and primary_aclk = '1') then if (mmap_reset = '1') then sig_first_dbeat <= '0'; sig_last_dbeat <= '0'; sig_single_dbeat <= '0'; elsif (sig_ld_new_cmd = '1') then sig_first_dbeat <= not(sig_new_len_eq_0); sig_last_dbeat <= sig_new_len_eq_0; sig_single_dbeat <= sig_new_len_eq_0; Elsif (sig_dbeat_cntr_eq_1 = '1' and sig_good_mmap_dbeat = '1') Then sig_first_dbeat <= '0'; sig_last_dbeat <= '1'; sig_single_dbeat <= '0'; Elsif (sig_dbeat_cntr_eq_0 = '0' and sig_dbeat_cntr_eq_1 = '0' and sig_good_mmap_dbeat = '1') Then sig_first_dbeat <= '0'; sig_last_dbeat <= '0'; sig_single_dbeat <= '0'; else null; -- hold current state end if; end if; end process DO_FIRST_MID_LAST; ------- Data Controller Halted Indication ------------------------------- data2all_dcntlr_halted <= sig_no_posted_cmds or sig_calc_error_reg; ------- Data Beat counter logic ------------------------------- sig_dbeat_cntr_int <= TO_INTEGER(sig_dbeat_cntr); sig_dbeat_cntr_eq_0 <= '1' when (sig_dbeat_cntr_int = 0) Else '0'; sig_dbeat_cntr_eq_1 <= '1' when (sig_dbeat_cntr_int = 1) Else '0'; ------------------------------------------------------------- -- Synchronous Process with Sync Reset -- -- Label: DO_DBEAT_CNTR -- -- Process Description: -- Implements the transfer data beat counter used to track -- progress of the transfer. -- ------------------------------------------------------------- DO_DBEAT_CNTR : process (primary_aclk) begin if (primary_aclk'event and primary_aclk = '1') then if (mmap_reset = '1') then sig_dbeat_cntr <= (others => '0'); elsif (sig_ld_new_cmd = '1') then sig_dbeat_cntr <= unsigned(sig_fifo_next_len); Elsif (sig_good_mmap_dbeat = '1' and sig_dbeat_cntr_eq_0 = '0') Then sig_dbeat_cntr <= sig_dbeat_cntr-1; else null; -- Hold current state end if; end if; end process DO_DBEAT_CNTR; ------- Soft Shutdown Logic ------------------------------- -- Formulate the soft shutdown complete flag sig_data2rst_stop_cmplt <= (sig_halt_reg_dly3 and -- Normal Mode shutdown sig_no_posted_cmds and not(sig_calc_error_reg)) or (sig_halt_reg_dly3 and -- Shutdown after error trap sig_calc_error_reg); -- Generate a gate signal to deassert the WVALID output -- for 1 clock cycle after a WLAST is issued. This only -- occurs when in soft shutdown mode. sig_stop_wvalid <= (sig_last_mmap_dbeat_reg and sig_halt_reg) or sig_data2rst_stop_cmplt; -- Assign the output port skid buf control for the -- input Stream skid buffer data2skid_halt <= sig_data2skid_halt; -- Create a 1 clock wide pulse to tell the input -- stream skid buffer to shut down. sig_data2skid_halt <= sig_halt_reg_dly2 and not(sig_halt_reg_dly3); ------------------------------------------------------------- -- Synchronous Process with Sync Reset -- -- Label: IMP_HALT_REQ_REG -- -- Process Description: -- Implements the flop for capturing the Halt request from -- the Reset module. -- ------------------------------------------------------------- IMP_HALT_REQ_REG : process (primary_aclk) begin if (primary_aclk'event and primary_aclk = '1') then if (mmap_reset = '1') then sig_halt_reg <= '0'; elsif (rst2data_stop_request = '1') then sig_halt_reg <= '1'; else null; -- Hold current State end if; end if; end process IMP_HALT_REQ_REG; ------------------------------------------------------------- -- Synchronous Process with Sync Reset -- -- Label: IMP_HALT_REQ_REG_DLY -- -- Process Description: -- Implements the flops for delaying the halt request by 3 -- clocks to allow the Address Controller to halt before the -- Data Contoller can safely indicate it has exhausted all -- transfers committed to the AXI Address Channel by the Address -- Controller. -- ------------------------------------------------------------- IMP_HALT_REQ_REG_DLY : process (primary_aclk) begin if (primary_aclk'event and primary_aclk = '1') then if (mmap_reset = '1') then sig_halt_reg_dly1 <= '0'; sig_halt_reg_dly2 <= '0'; sig_halt_reg_dly3 <= '0'; else sig_halt_reg_dly1 <= sig_halt_reg; sig_halt_reg_dly2 <= sig_halt_reg_dly1; sig_halt_reg_dly3 <= sig_halt_reg_dly2; end if; end if; end process IMP_HALT_REQ_REG_DLY; end implementation;
-- NetUP Universal Dual DVB-CI FPGA firmware -- http://www.netup.tv -- -- Copyright (c) 2014 NetUP Inc, AVB Labs -- License: GPLv3 -- ci_bridge_0.vhd -- This file was auto-generated as part of a generation operation. -- If you edit it your changes will probably be lost. library IEEE; use IEEE.std_logic_1164.all; use IEEE.numeric_std.all; entity ci_bridge_0 is port ( clk : in std_logic := '0'; -- clock.clk address : in std_logic_vector(1 downto 0) := (others => '0'); -- avalon_slave_0.address byteenable : in std_logic_vector(1 downto 0) := (others => '0'); -- .byteenable writedata : in std_logic_vector(15 downto 0) := (others => '0'); -- .writedata write : in std_logic := '0'; -- .write readdata : out std_logic_vector(15 downto 0); -- .readdata rst : in std_logic := '0'; -- reset_sink.reset cia_reset : out std_logic; -- conduit_end.export cib_reset : out std_logic; -- .export cia_ce_n : out std_logic; -- .export cib_ce_n : out std_logic; -- .export ci_reg_n : out std_logic; -- .export ci_a : out std_logic_vector(14 downto 0); -- .export ci_we_n : out std_logic; -- .export ci_oe_n : out std_logic; -- .export ci_iowr_n : out std_logic; -- .export ci_iord_n : out std_logic; -- .export cia_wait_n : in std_logic := '0'; -- .export cib_wait_n : in std_logic := '0'; -- .export cia_ireq_n : in std_logic := '0'; -- .export cib_ireq_n : in std_logic := '0'; -- .export cia_cd_n : in std_logic_vector(1 downto 0) := (others => '0'); -- .export cib_cd_n : in std_logic_vector(1 downto 0) := (others => '0'); -- .export cia_overcurrent_n : in std_logic := '0'; -- .export cib_overcurrent_n : in std_logic := '0'; -- .export cia_reset_buf_oe_n : out std_logic; -- .export cib_reset_buf_oe_n : out std_logic; -- .export cia_data_buf_oe_n : out std_logic; -- .export cib_data_buf_oe_n : out std_logic; -- .export ci_bus_dir : out std_logic; -- .export interrupt : out std_logic; -- .export cam_interrupts : out std_logic_vector(1 downto 0); -- .export cam0_ready : out std_logic; -- .export cam0_bypass : out std_logic; -- .export cam1_ready : out std_logic; -- .export cam1_bypass : out std_logic; -- .export cam0_fail : out std_logic; -- .export cam1_fail : out std_logic; -- .export ci_d_out : out std_logic_vector(7 downto 0); -- .export ci_d_in : in std_logic_vector(7 downto 0) := (others => '0'); -- .export ci_d_en : out std_logic; -- .export cam_writedata : in std_logic_vector(7 downto 0) := (others => '0'); -- .export cam_write : in std_logic := '0'; -- .export cam_readdata : out std_logic_vector(7 downto 0); -- .export cam_read : in std_logic := '0'; -- .export cam_address : in std_logic_vector(17 downto 0) := (others => '0'); -- .export cam_waitreq : out std_logic -- .export ); end entity ci_bridge_0; architecture rtl of ci_bridge_0 is component ci_bridge is port ( clk : in std_logic := 'X'; -- clk address : in std_logic_vector(1 downto 0) := (others => 'X'); -- address byteenable : in std_logic_vector(1 downto 0) := (others => 'X'); -- byteenable writedata : in std_logic_vector(15 downto 0) := (others => 'X'); -- writedata write : in std_logic := 'X'; -- write readdata : out std_logic_vector(15 downto 0); -- readdata rst : in std_logic := 'X'; -- reset cia_reset : out std_logic; -- export cib_reset : out std_logic; -- export cia_ce_n : out std_logic; -- export cib_ce_n : out std_logic; -- export ci_reg_n : out std_logic; -- export ci_a : out std_logic_vector(14 downto 0); -- export ci_we_n : out std_logic; -- export ci_oe_n : out std_logic; -- export ci_iowr_n : out std_logic; -- export ci_iord_n : out std_logic; -- export cia_wait_n : in std_logic := 'X'; -- export cib_wait_n : in std_logic := 'X'; -- export cia_ireq_n : in std_logic := 'X'; -- export cib_ireq_n : in std_logic := 'X'; -- export cia_cd_n : in std_logic_vector(1 downto 0) := (others => 'X'); -- export cib_cd_n : in std_logic_vector(1 downto 0) := (others => 'X'); -- export cia_overcurrent_n : in std_logic := 'X'; -- export cib_overcurrent_n : in std_logic := 'X'; -- export cia_reset_buf_oe_n : out std_logic; -- export cib_reset_buf_oe_n : out std_logic; -- export cia_data_buf_oe_n : out std_logic; -- export cib_data_buf_oe_n : out std_logic; -- export ci_bus_dir : out std_logic; -- export interrupt : out std_logic; -- export cam_interrupts : out std_logic_vector(1 downto 0); -- export cam0_ready : out std_logic; -- export cam0_bypass : out std_logic; -- export cam1_ready : out std_logic; -- export cam1_bypass : out std_logic; -- export cam0_fail : out std_logic; -- export cam1_fail : out std_logic; -- export ci_d_out : out std_logic_vector(7 downto 0); -- export ci_d_in : in std_logic_vector(7 downto 0) := (others => 'X'); -- export ci_d_en : out std_logic; -- export cam_writedata : in std_logic_vector(7 downto 0) := (others => 'X'); -- export cam_write : in std_logic := 'X'; -- export cam_readdata : out std_logic_vector(7 downto 0); -- export cam_read : in std_logic := 'X'; -- export cam_address : in std_logic_vector(17 downto 0) := (others => 'X'); -- export cam_waitreq : out std_logic -- export ); end component ci_bridge; begin ci_bridge_0 : component ci_bridge port map ( clk => clk, -- clock.clk address => address, -- avalon_slave_0.address byteenable => byteenable, -- .byteenable writedata => writedata, -- .writedata write => write, -- .write readdata => readdata, -- .readdata rst => rst, -- reset_sink.reset cia_reset => cia_reset, -- conduit_end.export cib_reset => cib_reset, -- .export cia_ce_n => cia_ce_n, -- .export cib_ce_n => cib_ce_n, -- .export ci_reg_n => ci_reg_n, -- .export ci_a => ci_a, -- .export ci_we_n => ci_we_n, -- .export ci_oe_n => ci_oe_n, -- .export ci_iowr_n => ci_iowr_n, -- .export ci_iord_n => ci_iord_n, -- .export cia_wait_n => cia_wait_n, -- .export cib_wait_n => cib_wait_n, -- .export cia_ireq_n => cia_ireq_n, -- .export cib_ireq_n => cib_ireq_n, -- .export cia_cd_n => cia_cd_n, -- .export cib_cd_n => cib_cd_n, -- .export cia_overcurrent_n => cia_overcurrent_n, -- .export cib_overcurrent_n => cib_overcurrent_n, -- .export cia_reset_buf_oe_n => cia_reset_buf_oe_n, -- .export cib_reset_buf_oe_n => cib_reset_buf_oe_n, -- .export cia_data_buf_oe_n => cia_data_buf_oe_n, -- .export cib_data_buf_oe_n => cib_data_buf_oe_n, -- .export ci_bus_dir => ci_bus_dir, -- .export interrupt => interrupt, -- .export cam_interrupts => cam_interrupts, -- .export cam0_ready => cam0_ready, -- .export cam0_bypass => cam0_bypass, -- .export cam1_ready => cam1_ready, -- .export cam1_bypass => cam1_bypass, -- .export cam0_fail => cam0_fail, -- .export cam1_fail => cam1_fail, -- .export ci_d_out => ci_d_out, -- .export ci_d_in => ci_d_in, -- .export ci_d_en => ci_d_en, -- .export cam_writedata => cam_writedata, -- .export cam_write => cam_write, -- .export cam_readdata => cam_readdata, -- .export cam_read => cam_read, -- .export cam_address => cam_address, -- .export cam_waitreq => cam_waitreq -- .export ); end architecture rtl; -- of ci_bridge_0
-- ------------------------------------------------------------- -- -- Generated Entity Declaration for %ENTYNAME% -- -- Based on Mix Entity Template mix_template-e.vhd -- -- (C) 2002 Micronas GmbH -- -- !!! Do not edit this file! Autogenerated by MIX !!! -- $Author: lutscher $ -- $Id: mix_template-e.vhd,v 1.1 2009/12/15 12:02:53 lutscher Exp $ -- $Date: 2009/12/15 12:02:53 $ -- $Log: mix_template-e.vhd,v $ -- Revision 1.1 2009/12/15 12:02:53 lutscher -- initial release -- -- Revision 1.1 2003/03/25 13:49:00 wig -- VHDL Templates -- -- -- Generator: %0%%VERSION%, wilfried.gaensheimer@micronas.com -- -- -------------------------------------------------------------- Library IEEE; Use IEEE.std_logic_1164.all; Use IEEE.std_logic_arith.all; entity %ENTYNAME% is generic( -- %GEN% : %TYPE% := %VALUE; -- generic list ); port( -- generated %S% : %IO% %TYPE%; -- %IO% := in|out|inout|buffer -- CLK : in std_ulogic; -- RESET : in std_ulogic; -- TEST_SE : in std_ulogic; -- AM_PM_DISPLAY : out std_ulogic; -- DISP1 : out std_ulogic_vector(13 downto 0); -- DISP2 : out std_ulogic_vector(13 downto 0) ); end %ENTYNAME%;
----------------------------------------------------------------------------- --! @file --! @copyright Copyright 2015 GNSS Sensor Ltd. All right reserved. --! @author Sergey Khabarov - sergeykhbr@gmail.com --! @brief Technology specific RAM selector ------------------------------------------------------------------------------ library ieee; use ieee.std_logic_1164.all; library commonlib; use commonlib.types_common.all; library techmap; use techmap.gencomp.all; use techmap.types_mem.all; entity Ram32_tech is generic ( generic_tech : integer := 0; generic_kWords : integer := 1 ); port ( i_clk : in std_logic; i_address : in std_logic_vector(10+log2(generic_kWords)-1 downto 0); i_wr_ena : in std_logic; i_data : in std_logic_vector(31 downto 0); o_data : out std_logic_vector(31 downto 0) ); end; architecture rtl of Ram32_tech is component Ram32_inferred generic ( generic_kWords : integer := 1 ); port ( i_clk : in std_logic; i_address : in std_logic_vector(10+log2(generic_kWords)-1 downto 0); i_wr_ena : in std_logic; i_data : in std_logic_vector(31 downto 0); o_data : out std_logic_vector(31 downto 0) ); end component; -- micron 180 nm tech component micron180_syncram generic (abits : integer := 10; dbits : integer := 8 ); port ( clk : in std_ulogic; address : in std_logic_vector((abits -1) downto 0); datain : in std_logic_vector((dbits -1) downto 0); dataout : out std_logic_vector((dbits -1) downto 0); enable : in std_ulogic; write : in std_ulogic ); end component; -- TODO: add there other ASIC components begin genmem0 : if generic_tech = inferred or is_fpga(generic_tech) /= 0 generate ram_infer : Ram32_inferred generic map ( generic_kWords => generic_kWords ) port map ( i_clk, i_address, i_wr_ena, i_data, o_data ); end generate; genmem1 : if generic_tech = micron180 generate k4 : if generic_kWords = 4 generate x0 : micron180_syncram generic map (12, 32) port map (i_clk, i_address, i_data, o_data, '1', i_wr_ena); end generate; k8 : if generic_kWords = 8 generate x0 : micron180_syncram generic map (13, 32) port map (i_clk, i_address, i_data, o_data, '1', i_wr_ena); end generate; end generate; end;
----------------------------------------------------------------------------- --! @file --! @copyright Copyright 2015 GNSS Sensor Ltd. All right reserved. --! @author Sergey Khabarov - sergeykhbr@gmail.com --! @brief Technology specific RAM selector ------------------------------------------------------------------------------ library ieee; use ieee.std_logic_1164.all; library commonlib; use commonlib.types_common.all; library techmap; use techmap.gencomp.all; use techmap.types_mem.all; entity Ram32_tech is generic ( generic_tech : integer := 0; generic_kWords : integer := 1 ); port ( i_clk : in std_logic; i_address : in std_logic_vector(10+log2(generic_kWords)-1 downto 0); i_wr_ena : in std_logic; i_data : in std_logic_vector(31 downto 0); o_data : out std_logic_vector(31 downto 0) ); end; architecture rtl of Ram32_tech is component Ram32_inferred generic ( generic_kWords : integer := 1 ); port ( i_clk : in std_logic; i_address : in std_logic_vector(10+log2(generic_kWords)-1 downto 0); i_wr_ena : in std_logic; i_data : in std_logic_vector(31 downto 0); o_data : out std_logic_vector(31 downto 0) ); end component; -- micron 180 nm tech component micron180_syncram generic (abits : integer := 10; dbits : integer := 8 ); port ( clk : in std_ulogic; address : in std_logic_vector((abits -1) downto 0); datain : in std_logic_vector((dbits -1) downto 0); dataout : out std_logic_vector((dbits -1) downto 0); enable : in std_ulogic; write : in std_ulogic ); end component; -- TODO: add there other ASIC components begin genmem0 : if generic_tech = inferred or is_fpga(generic_tech) /= 0 generate ram_infer : Ram32_inferred generic map ( generic_kWords => generic_kWords ) port map ( i_clk, i_address, i_wr_ena, i_data, o_data ); end generate; genmem1 : if generic_tech = micron180 generate k4 : if generic_kWords = 4 generate x0 : micron180_syncram generic map (12, 32) port map (i_clk, i_address, i_data, o_data, '1', i_wr_ena); end generate; k8 : if generic_kWords = 8 generate x0 : micron180_syncram generic map (13, 32) port map (i_clk, i_address, i_data, o_data, '1', i_wr_ena); end generate; end generate; end;
LIBRARY ieee; USE ieee.std_logic_1164.all; USE ieee.std_logic_unsigned.all; USE ieee.std_logic_arith.all; --*************************************************** --*** *** --*** SINGLE PRECISION INVERSE - TOP LEVEL *** --*** *** --*** FP_INV.VHD *** --*** *** --*** Function: IEEE754 SP Inverse *** --*** (multiplicative iterative algorithm) *** --*** *** --*** 09/12/07 ML *** --*** *** --*** (c) 2007 Altera Corporation *** --*** *** --*** Change History *** --*** *** --*** *** --*** *** --*** *** --*************************************************** --*************************************************** --*** Notes: Latency = 14 *** --*************************************************** ENTITY fp_inv IS GENERIC (synthesize : integer := 1); PORT ( sysclk : IN STD_LOGIC; reset : IN STD_LOGIC; enable : IN STD_LOGIC; signin : IN STD_LOGIC; exponentin : IN STD_LOGIC_VECTOR (8 DOWNTO 1); mantissain : IN STD_LOGIC_VECTOR (23 DOWNTO 1); signout : OUT STD_LOGIC; exponentout : OUT STD_LOGIC_VECTOR (8 DOWNTO 1); mantissaout : OUT STD_LOGIC_VECTOR (23 DOWNTO 1); -------------------------------------------------- nanout : OUT STD_LOGIC; invalidout : OUT STD_LOGIC; dividebyzeroout : OUT STD_LOGIC ); END fp_inv; ARCHITECTURE div OF fp_inv IS constant expwidth : positive := 8; constant manwidth : positive := 23; constant coredepth : positive := 12; type expfftype IS ARRAY (coredepth-1 DOWNTO 1) OF STD_LOGIC_VECTOR (expwidth+2 DOWNTO 1); signal zerovec : STD_LOGIC_VECTOR (manwidth DOWNTO 1); signal signinff : STD_LOGIC; signal manff : STD_LOGIC_VECTOR (manwidth DOWNTO 1); signal expinff : STD_LOGIC_VECTOR (expwidth DOWNTO 1); signal expoffset : STD_LOGIC_VECTOR (expwidth+2 DOWNTO 1); signal invertnum : STD_LOGIC_VECTOR (36 DOWNTO 1); signal quotient : STD_LOGIC_VECTOR (36 DOWNTO 1); signal signff : STD_LOGIC_VECTOR (coredepth-1 DOWNTO 1); signal expff : expfftype; -- conditions signal zeroman : STD_LOGIC_VECTOR (manwidth DOWNTO 1); signal zeroexp : STD_LOGIC_VECTOR (expwidth DOWNTO 1); signal maxexp : STD_LOGIC_VECTOR (expwidth DOWNTO 1); signal zeromaninff : STD_LOGIC; signal zeroexpinff : STD_LOGIC; signal maxexpinff : STD_LOGIC; signal zeroinff : STD_LOGIC; signal infinityinff : STD_LOGIC; signal naninff : STD_LOGIC; signal dividebyzeroff, nanff : STD_LOGIC_VECTOR (coredepth-3 DOWNTO 1); component fp_inv_core IS GENERIC (synthesize : integer := 1); PORT ( sysclk : IN STD_LOGIC; reset : IN STD_LOGIC; enable : IN STD_LOGIC; divisor : IN STD_LOGIC_VECTOR (36 DOWNTO 1); quotient : OUT STD_LOGIC_VECTOR (36 DOWNTO 1) ); end component; component fp_divrnd PORT ( sysclk : IN STD_LOGIC; reset : IN STD_LOGIC; enable : IN STD_LOGIC; signin : IN STD_LOGIC; exponentdiv : IN STD_LOGIC_VECTOR (expwidth+2 DOWNTO 1); mantissadiv : IN STD_LOGIC_VECTOR (manwidth+1 DOWNTO 1); nanin : IN STD_LOGIC; dividebyzeroin : IN STD_LOGIC; signout : OUT STD_LOGIC; exponentout : OUT STD_LOGIC_VECTOR (expwidth DOWNTO 1); mantissaout : OUT STD_LOGIC_VECTOR (manwidth DOWNTO 1); -------------------------------------------------- nanout : OUT STD_LOGIC; invalidout : OUT STD_LOGIC; dividebyzeroout : OUT STD_LOGIC ); end component; BEGIN gzva: FOR k IN 1 TO manwidth GENERATE zerovec(k) <= '0'; END GENERATE; gxa: FOR k IN 1 TO expwidth-1 GENERATE expoffset(k) <= '1'; END GENERATE; expoffset(expwidth+2 DOWNTO expwidth) <= "000"; pma: PROCESS (sysclk,reset) BEGIN IF (reset = '1') THEN FOR k IN 1 TO manwidth LOOP manff(k) <= '0'; END LOOP; FOR k IN 1 TO expwidth LOOP expinff(k) <= '0'; END LOOP; FOR k IN 1 TO coredepth-1 LOOP signff(k) <= '0'; END LOOP; FOR k IN 1 TO coredepth-1 LOOP FOR j IN 1 TO expwidth+2 LOOP expff(k)(j) <= '0'; END LOOP; END LOOP; ELSIF (rising_edge(sysclk)) THEN IF (enable = '1') THEN signinff <= signin; manff <= mantissain; expinff <= exponentin; signff(1) <= signinff; FOR k IN 2 TO coredepth-1 LOOP signff(k) <= signff(k-1); END LOOP; expff(1)(expwidth+2 DOWNTO 1) <= expoffset - ("00" & expinff); expff(2)(expwidth+2 DOWNTO 1) <= expff(1)(expwidth+2 DOWNTO 1) + expoffset; FOR k IN 3 TO coredepth-2 LOOP expff(k)(expwidth+2 DOWNTO 1) <= expff(k-1)(expwidth+2 DOWNTO 1); END LOOP; -- inverse always less than 1, decrement exponent expff(coredepth-1)(expwidth+2 DOWNTO 1) <= expff(coredepth-2)(expwidth+2 DOWNTO 1) - (zerovec(expwidth+1 DOWNTO 1) & '1'); END IF; END IF; END PROCESS; --******************** --*** CHECK INPUTS *** --******************** zeroman(1) <= manff(1); gca: FOR k IN 2 TO manwidth GENERATE zeroman(k) <= zeroman(k-1) OR manff(k); END GENERATE; zeroexp(1) <= expinff(1); gcb: FOR k IN 2 TO expwidth GENERATE zeroexp(k) <= zeroexp(k-1) OR expinff(k); END GENERATE; maxexp(1) <= expinff(1); gcc: FOR k IN 2 TO expwidth GENERATE maxexp(k) <= maxexp(k-1) AND expinff(k); END GENERATE; pcc: PROCESS (sysclk,reset) BEGIN IF (reset = '1') THEN zeromaninff <= '0'; zeroexpinff <= '0'; maxexpinff <= '0'; zeroinff <= '0'; infinityinff <= '0'; naninff <= '0'; FOR k IN 1 TO coredepth-3 LOOP dividebyzeroff(k) <= '0'; nanff(k) <= '0'; END LOOP; ELSIF (rising_edge(sysclk)) THEN IF (enable = '1') THEN zeromaninff <= zeroman(manwidth); zeroexpinff <= zeroexp(expwidth); maxexpinff <= maxexp(expwidth); -- zero when man = 0, exp = 0 -- infinity when man = 0, exp = max -- nan when man != 0, exp = max -- all ffs '1' when condition true zeroinff <= NOT(zeromaninff OR zeroexpinff); infinityinff <= NOT(zeromaninff) AND maxexpinff; naninff <= zeromaninff AND maxexpinff; -- nan output when nan input nanff(1) <= naninff; FOR k IN 2 TO coredepth-3 LOOP nanff(k) <= nanff(k-1); END LOOP; dividebyzeroff(1) <= zeroinff; FOR k IN 2 TO coredepth-3 LOOP dividebyzeroff(k) <= dividebyzeroff(k-1); END LOOP; END IF; END IF; END PROCESS; --******************* --*** DIVIDE CORE *** --******************* invertnum <= '1' & mantissain & "000000000000"; -- will give output between 0.5 and 0.99999... -- will always need to be normalized invcore: fp_inv_core GENERIC MAP (synthesize=>synthesize) PORT MAP (sysclk=>sysclk,reset=>reset,enable=>enable, divisor=>invertnum, quotient=>quotient); --************************ --*** ROUND AND OUTPUT *** --************************ rndout: fp_divrnd PORT MAP (sysclk=>sysclk,reset=>reset,enable=>enable, signin=>signff(coredepth-1), exponentdiv=>expff(coredepth-1)(expwidth+2 DOWNTO 1), mantissadiv=>quotient(34 DOWNTO 11), nanin=>nanff(coredepth-3),dividebyzeroin=>dividebyzeroff(coredepth-3), signout=>signout,exponentout=>exponentout,mantissaout=>mantissaout, nanout=>nanout,invalidout=>invalidout,dividebyzeroout=>dividebyzeroout); END div;
LIBRARY ieee; USE ieee.std_logic_1164.all; USE ieee.std_logic_unsigned.all; USE ieee.std_logic_arith.all; --*************************************************** --*** *** --*** SINGLE PRECISION INVERSE - TOP LEVEL *** --*** *** --*** FP_INV.VHD *** --*** *** --*** Function: IEEE754 SP Inverse *** --*** (multiplicative iterative algorithm) *** --*** *** --*** 09/12/07 ML *** --*** *** --*** (c) 2007 Altera Corporation *** --*** *** --*** Change History *** --*** *** --*** *** --*** *** --*** *** --*************************************************** --*************************************************** --*** Notes: Latency = 14 *** --*************************************************** ENTITY fp_inv IS GENERIC (synthesize : integer := 1); PORT ( sysclk : IN STD_LOGIC; reset : IN STD_LOGIC; enable : IN STD_LOGIC; signin : IN STD_LOGIC; exponentin : IN STD_LOGIC_VECTOR (8 DOWNTO 1); mantissain : IN STD_LOGIC_VECTOR (23 DOWNTO 1); signout : OUT STD_LOGIC; exponentout : OUT STD_LOGIC_VECTOR (8 DOWNTO 1); mantissaout : OUT STD_LOGIC_VECTOR (23 DOWNTO 1); -------------------------------------------------- nanout : OUT STD_LOGIC; invalidout : OUT STD_LOGIC; dividebyzeroout : OUT STD_LOGIC ); END fp_inv; ARCHITECTURE div OF fp_inv IS constant expwidth : positive := 8; constant manwidth : positive := 23; constant coredepth : positive := 12; type expfftype IS ARRAY (coredepth-1 DOWNTO 1) OF STD_LOGIC_VECTOR (expwidth+2 DOWNTO 1); signal zerovec : STD_LOGIC_VECTOR (manwidth DOWNTO 1); signal signinff : STD_LOGIC; signal manff : STD_LOGIC_VECTOR (manwidth DOWNTO 1); signal expinff : STD_LOGIC_VECTOR (expwidth DOWNTO 1); signal expoffset : STD_LOGIC_VECTOR (expwidth+2 DOWNTO 1); signal invertnum : STD_LOGIC_VECTOR (36 DOWNTO 1); signal quotient : STD_LOGIC_VECTOR (36 DOWNTO 1); signal signff : STD_LOGIC_VECTOR (coredepth-1 DOWNTO 1); signal expff : expfftype; -- conditions signal zeroman : STD_LOGIC_VECTOR (manwidth DOWNTO 1); signal zeroexp : STD_LOGIC_VECTOR (expwidth DOWNTO 1); signal maxexp : STD_LOGIC_VECTOR (expwidth DOWNTO 1); signal zeromaninff : STD_LOGIC; signal zeroexpinff : STD_LOGIC; signal maxexpinff : STD_LOGIC; signal zeroinff : STD_LOGIC; signal infinityinff : STD_LOGIC; signal naninff : STD_LOGIC; signal dividebyzeroff, nanff : STD_LOGIC_VECTOR (coredepth-3 DOWNTO 1); component fp_inv_core IS GENERIC (synthesize : integer := 1); PORT ( sysclk : IN STD_LOGIC; reset : IN STD_LOGIC; enable : IN STD_LOGIC; divisor : IN STD_LOGIC_VECTOR (36 DOWNTO 1); quotient : OUT STD_LOGIC_VECTOR (36 DOWNTO 1) ); end component; component fp_divrnd PORT ( sysclk : IN STD_LOGIC; reset : IN STD_LOGIC; enable : IN STD_LOGIC; signin : IN STD_LOGIC; exponentdiv : IN STD_LOGIC_VECTOR (expwidth+2 DOWNTO 1); mantissadiv : IN STD_LOGIC_VECTOR (manwidth+1 DOWNTO 1); nanin : IN STD_LOGIC; dividebyzeroin : IN STD_LOGIC; signout : OUT STD_LOGIC; exponentout : OUT STD_LOGIC_VECTOR (expwidth DOWNTO 1); mantissaout : OUT STD_LOGIC_VECTOR (manwidth DOWNTO 1); -------------------------------------------------- nanout : OUT STD_LOGIC; invalidout : OUT STD_LOGIC; dividebyzeroout : OUT STD_LOGIC ); end component; BEGIN gzva: FOR k IN 1 TO manwidth GENERATE zerovec(k) <= '0'; END GENERATE; gxa: FOR k IN 1 TO expwidth-1 GENERATE expoffset(k) <= '1'; END GENERATE; expoffset(expwidth+2 DOWNTO expwidth) <= "000"; pma: PROCESS (sysclk,reset) BEGIN IF (reset = '1') THEN FOR k IN 1 TO manwidth LOOP manff(k) <= '0'; END LOOP; FOR k IN 1 TO expwidth LOOP expinff(k) <= '0'; END LOOP; FOR k IN 1 TO coredepth-1 LOOP signff(k) <= '0'; END LOOP; FOR k IN 1 TO coredepth-1 LOOP FOR j IN 1 TO expwidth+2 LOOP expff(k)(j) <= '0'; END LOOP; END LOOP; ELSIF (rising_edge(sysclk)) THEN IF (enable = '1') THEN signinff <= signin; manff <= mantissain; expinff <= exponentin; signff(1) <= signinff; FOR k IN 2 TO coredepth-1 LOOP signff(k) <= signff(k-1); END LOOP; expff(1)(expwidth+2 DOWNTO 1) <= expoffset - ("00" & expinff); expff(2)(expwidth+2 DOWNTO 1) <= expff(1)(expwidth+2 DOWNTO 1) + expoffset; FOR k IN 3 TO coredepth-2 LOOP expff(k)(expwidth+2 DOWNTO 1) <= expff(k-1)(expwidth+2 DOWNTO 1); END LOOP; -- inverse always less than 1, decrement exponent expff(coredepth-1)(expwidth+2 DOWNTO 1) <= expff(coredepth-2)(expwidth+2 DOWNTO 1) - (zerovec(expwidth+1 DOWNTO 1) & '1'); END IF; END IF; END PROCESS; --******************** --*** CHECK INPUTS *** --******************** zeroman(1) <= manff(1); gca: FOR k IN 2 TO manwidth GENERATE zeroman(k) <= zeroman(k-1) OR manff(k); END GENERATE; zeroexp(1) <= expinff(1); gcb: FOR k IN 2 TO expwidth GENERATE zeroexp(k) <= zeroexp(k-1) OR expinff(k); END GENERATE; maxexp(1) <= expinff(1); gcc: FOR k IN 2 TO expwidth GENERATE maxexp(k) <= maxexp(k-1) AND expinff(k); END GENERATE; pcc: PROCESS (sysclk,reset) BEGIN IF (reset = '1') THEN zeromaninff <= '0'; zeroexpinff <= '0'; maxexpinff <= '0'; zeroinff <= '0'; infinityinff <= '0'; naninff <= '0'; FOR k IN 1 TO coredepth-3 LOOP dividebyzeroff(k) <= '0'; nanff(k) <= '0'; END LOOP; ELSIF (rising_edge(sysclk)) THEN IF (enable = '1') THEN zeromaninff <= zeroman(manwidth); zeroexpinff <= zeroexp(expwidth); maxexpinff <= maxexp(expwidth); -- zero when man = 0, exp = 0 -- infinity when man = 0, exp = max -- nan when man != 0, exp = max -- all ffs '1' when condition true zeroinff <= NOT(zeromaninff OR zeroexpinff); infinityinff <= NOT(zeromaninff) AND maxexpinff; naninff <= zeromaninff AND maxexpinff; -- nan output when nan input nanff(1) <= naninff; FOR k IN 2 TO coredepth-3 LOOP nanff(k) <= nanff(k-1); END LOOP; dividebyzeroff(1) <= zeroinff; FOR k IN 2 TO coredepth-3 LOOP dividebyzeroff(k) <= dividebyzeroff(k-1); END LOOP; END IF; END IF; END PROCESS; --******************* --*** DIVIDE CORE *** --******************* invertnum <= '1' & mantissain & "000000000000"; -- will give output between 0.5 and 0.99999... -- will always need to be normalized invcore: fp_inv_core GENERIC MAP (synthesize=>synthesize) PORT MAP (sysclk=>sysclk,reset=>reset,enable=>enable, divisor=>invertnum, quotient=>quotient); --************************ --*** ROUND AND OUTPUT *** --************************ rndout: fp_divrnd PORT MAP (sysclk=>sysclk,reset=>reset,enable=>enable, signin=>signff(coredepth-1), exponentdiv=>expff(coredepth-1)(expwidth+2 DOWNTO 1), mantissadiv=>quotient(34 DOWNTO 11), nanin=>nanff(coredepth-3),dividebyzeroin=>dividebyzeroff(coredepth-3), signout=>signout,exponentout=>exponentout,mantissaout=>mantissaout, nanout=>nanout,invalidout=>invalidout,dividebyzeroout=>dividebyzeroout); END div;
LIBRARY ieee; USE ieee.std_logic_1164.all; USE ieee.std_logic_unsigned.all; USE ieee.std_logic_arith.all; --*************************************************** --*** *** --*** SINGLE PRECISION INVERSE - TOP LEVEL *** --*** *** --*** FP_INV.VHD *** --*** *** --*** Function: IEEE754 SP Inverse *** --*** (multiplicative iterative algorithm) *** --*** *** --*** 09/12/07 ML *** --*** *** --*** (c) 2007 Altera Corporation *** --*** *** --*** Change History *** --*** *** --*** *** --*** *** --*** *** --*************************************************** --*************************************************** --*** Notes: Latency = 14 *** --*************************************************** ENTITY fp_inv IS GENERIC (synthesize : integer := 1); PORT ( sysclk : IN STD_LOGIC; reset : IN STD_LOGIC; enable : IN STD_LOGIC; signin : IN STD_LOGIC; exponentin : IN STD_LOGIC_VECTOR (8 DOWNTO 1); mantissain : IN STD_LOGIC_VECTOR (23 DOWNTO 1); signout : OUT STD_LOGIC; exponentout : OUT STD_LOGIC_VECTOR (8 DOWNTO 1); mantissaout : OUT STD_LOGIC_VECTOR (23 DOWNTO 1); -------------------------------------------------- nanout : OUT STD_LOGIC; invalidout : OUT STD_LOGIC; dividebyzeroout : OUT STD_LOGIC ); END fp_inv; ARCHITECTURE div OF fp_inv IS constant expwidth : positive := 8; constant manwidth : positive := 23; constant coredepth : positive := 12; type expfftype IS ARRAY (coredepth-1 DOWNTO 1) OF STD_LOGIC_VECTOR (expwidth+2 DOWNTO 1); signal zerovec : STD_LOGIC_VECTOR (manwidth DOWNTO 1); signal signinff : STD_LOGIC; signal manff : STD_LOGIC_VECTOR (manwidth DOWNTO 1); signal expinff : STD_LOGIC_VECTOR (expwidth DOWNTO 1); signal expoffset : STD_LOGIC_VECTOR (expwidth+2 DOWNTO 1); signal invertnum : STD_LOGIC_VECTOR (36 DOWNTO 1); signal quotient : STD_LOGIC_VECTOR (36 DOWNTO 1); signal signff : STD_LOGIC_VECTOR (coredepth-1 DOWNTO 1); signal expff : expfftype; -- conditions signal zeroman : STD_LOGIC_VECTOR (manwidth DOWNTO 1); signal zeroexp : STD_LOGIC_VECTOR (expwidth DOWNTO 1); signal maxexp : STD_LOGIC_VECTOR (expwidth DOWNTO 1); signal zeromaninff : STD_LOGIC; signal zeroexpinff : STD_LOGIC; signal maxexpinff : STD_LOGIC; signal zeroinff : STD_LOGIC; signal infinityinff : STD_LOGIC; signal naninff : STD_LOGIC; signal dividebyzeroff, nanff : STD_LOGIC_VECTOR (coredepth-3 DOWNTO 1); component fp_inv_core IS GENERIC (synthesize : integer := 1); PORT ( sysclk : IN STD_LOGIC; reset : IN STD_LOGIC; enable : IN STD_LOGIC; divisor : IN STD_LOGIC_VECTOR (36 DOWNTO 1); quotient : OUT STD_LOGIC_VECTOR (36 DOWNTO 1) ); end component; component fp_divrnd PORT ( sysclk : IN STD_LOGIC; reset : IN STD_LOGIC; enable : IN STD_LOGIC; signin : IN STD_LOGIC; exponentdiv : IN STD_LOGIC_VECTOR (expwidth+2 DOWNTO 1); mantissadiv : IN STD_LOGIC_VECTOR (manwidth+1 DOWNTO 1); nanin : IN STD_LOGIC; dividebyzeroin : IN STD_LOGIC; signout : OUT STD_LOGIC; exponentout : OUT STD_LOGIC_VECTOR (expwidth DOWNTO 1); mantissaout : OUT STD_LOGIC_VECTOR (manwidth DOWNTO 1); -------------------------------------------------- nanout : OUT STD_LOGIC; invalidout : OUT STD_LOGIC; dividebyzeroout : OUT STD_LOGIC ); end component; BEGIN gzva: FOR k IN 1 TO manwidth GENERATE zerovec(k) <= '0'; END GENERATE; gxa: FOR k IN 1 TO expwidth-1 GENERATE expoffset(k) <= '1'; END GENERATE; expoffset(expwidth+2 DOWNTO expwidth) <= "000"; pma: PROCESS (sysclk,reset) BEGIN IF (reset = '1') THEN FOR k IN 1 TO manwidth LOOP manff(k) <= '0'; END LOOP; FOR k IN 1 TO expwidth LOOP expinff(k) <= '0'; END LOOP; FOR k IN 1 TO coredepth-1 LOOP signff(k) <= '0'; END LOOP; FOR k IN 1 TO coredepth-1 LOOP FOR j IN 1 TO expwidth+2 LOOP expff(k)(j) <= '0'; END LOOP; END LOOP; ELSIF (rising_edge(sysclk)) THEN IF (enable = '1') THEN signinff <= signin; manff <= mantissain; expinff <= exponentin; signff(1) <= signinff; FOR k IN 2 TO coredepth-1 LOOP signff(k) <= signff(k-1); END LOOP; expff(1)(expwidth+2 DOWNTO 1) <= expoffset - ("00" & expinff); expff(2)(expwidth+2 DOWNTO 1) <= expff(1)(expwidth+2 DOWNTO 1) + expoffset; FOR k IN 3 TO coredepth-2 LOOP expff(k)(expwidth+2 DOWNTO 1) <= expff(k-1)(expwidth+2 DOWNTO 1); END LOOP; -- inverse always less than 1, decrement exponent expff(coredepth-1)(expwidth+2 DOWNTO 1) <= expff(coredepth-2)(expwidth+2 DOWNTO 1) - (zerovec(expwidth+1 DOWNTO 1) & '1'); END IF; END IF; END PROCESS; --******************** --*** CHECK INPUTS *** --******************** zeroman(1) <= manff(1); gca: FOR k IN 2 TO manwidth GENERATE zeroman(k) <= zeroman(k-1) OR manff(k); END GENERATE; zeroexp(1) <= expinff(1); gcb: FOR k IN 2 TO expwidth GENERATE zeroexp(k) <= zeroexp(k-1) OR expinff(k); END GENERATE; maxexp(1) <= expinff(1); gcc: FOR k IN 2 TO expwidth GENERATE maxexp(k) <= maxexp(k-1) AND expinff(k); END GENERATE; pcc: PROCESS (sysclk,reset) BEGIN IF (reset = '1') THEN zeromaninff <= '0'; zeroexpinff <= '0'; maxexpinff <= '0'; zeroinff <= '0'; infinityinff <= '0'; naninff <= '0'; FOR k IN 1 TO coredepth-3 LOOP dividebyzeroff(k) <= '0'; nanff(k) <= '0'; END LOOP; ELSIF (rising_edge(sysclk)) THEN IF (enable = '1') THEN zeromaninff <= zeroman(manwidth); zeroexpinff <= zeroexp(expwidth); maxexpinff <= maxexp(expwidth); -- zero when man = 0, exp = 0 -- infinity when man = 0, exp = max -- nan when man != 0, exp = max -- all ffs '1' when condition true zeroinff <= NOT(zeromaninff OR zeroexpinff); infinityinff <= NOT(zeromaninff) AND maxexpinff; naninff <= zeromaninff AND maxexpinff; -- nan output when nan input nanff(1) <= naninff; FOR k IN 2 TO coredepth-3 LOOP nanff(k) <= nanff(k-1); END LOOP; dividebyzeroff(1) <= zeroinff; FOR k IN 2 TO coredepth-3 LOOP dividebyzeroff(k) <= dividebyzeroff(k-1); END LOOP; END IF; END IF; END PROCESS; --******************* --*** DIVIDE CORE *** --******************* invertnum <= '1' & mantissain & "000000000000"; -- will give output between 0.5 and 0.99999... -- will always need to be normalized invcore: fp_inv_core GENERIC MAP (synthesize=>synthesize) PORT MAP (sysclk=>sysclk,reset=>reset,enable=>enable, divisor=>invertnum, quotient=>quotient); --************************ --*** ROUND AND OUTPUT *** --************************ rndout: fp_divrnd PORT MAP (sysclk=>sysclk,reset=>reset,enable=>enable, signin=>signff(coredepth-1), exponentdiv=>expff(coredepth-1)(expwidth+2 DOWNTO 1), mantissadiv=>quotient(34 DOWNTO 11), nanin=>nanff(coredepth-3),dividebyzeroin=>dividebyzeroff(coredepth-3), signout=>signout,exponentout=>exponentout,mantissaout=>mantissaout, nanout=>nanout,invalidout=>invalidout,dividebyzeroout=>dividebyzeroout); END div;