URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [orpsocv2/] [boards/] [xilinx/] [atlys/] [rtl/] [verilog/] [xilinx_ddr2/] [ddr2_mig.v] - Rev 633
Go to most recent revision | Compare with Previous | Blame | View Log
//***************************************************************************** // (c) Copyright 2009 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. // //***************************************************************************** // ____ ____ // / /\/ / // /___/ \ / Vendor : Xilinx // \ \ \/ Version : 3.6.1 // \ \ Application : MIG // / / Filename : ddr2_mig #.v // /___/ /\ Date Last Modified : $Date: 2010/10/27 17:40:11 $ // \ \ / \ Date Created : Tue Feb 23 2010 // \___\/\___\ // //Device : Spartan-6 //Design Name : DDR/DDR2/DDR3/LPDDR //Purpose : This is a template file for the design top module. This module contains // all the four memory controllers and the two infrastructures. However, // only the enabled modules will be active and others inactive. //Reference : //Revision History : //***************************************************************************** `timescale 1ns/1ps (* X_CORE_INFO = "mig_v3_61_ddr2_ddr2_s6, Coregen 12.4" , CORE_GENERATION_INFO = "ddr2_ddr2_s6,mig_v3_61,{component_name=ddr2_mig, C3_MEM_INTERFACE_TYPE=DDR2_SDRAM, C3_CLK_PERIOD=3750, C3_MEMORY_PART=mt47h64m16xx-25e, C3_OUTPUT_DRV=FULL, C3_RTT_NOM=50OHMS, C3_DQS#_ENABLE=YES, C3_HIGH_TEMP_SR=NORMAL, C3_PORT_CONFIG=One 128-bit bi-directional port, C3_MEM_ADDR_ORDER=BANK_ROW_COLUMN, C3_PORT_ENABLE=Port0, C3_CLASS_ADDR=II, C3_CLASS_DATA=II, C3_INPUT_PIN_TERMINATION=CALIB_TERM, C3_DATA_TERMINATION=25 Ohms, C3_CLKFBOUT_MULT_F=2, C3_CLKOUT_DIVIDE=1, C3_DEBUG_PORT=0, INPUT_CLK_TYPE=Single-Ended, LANGUAGE=Verilog, SYNTHESIS_TOOL=ISE, NO_OF_CONTROLLERS=1}" *) module ddr2_mig # ( parameter C3_P0_MASK_SIZE = 16, parameter C3_P0_DATA_PORT_SIZE = 128, parameter DEBUG_EN = 0, parameter C3_MEMCLK_PERIOD = 3750, parameter C3_CALIB_SOFT_IP = "TRUE", parameter C3_SIMULATION = "FALSE", parameter C3_RST_ACT_LOW = 0, parameter C3_INPUT_CLK_TYPE = "SINGLE_ENDED", parameter C3_MEM_ADDR_ORDER = "BANK_ROW_COLUMN", parameter C3_NUM_DQ_PINS = 16, parameter C3_MEM_ADDR_WIDTH = 13, parameter C3_MEM_BANKADDR_WIDTH = 3 ) ( inout [C3_NUM_DQ_PINS-1:0] mcb3_dram_dq, output [C3_MEM_ADDR_WIDTH-1:0] mcb3_dram_a, output [C3_MEM_BANKADDR_WIDTH-1:0] mcb3_dram_ba, output mcb3_dram_ras_n, output mcb3_dram_cas_n, output mcb3_dram_we_n, output mcb3_dram_odt, output mcb3_dram_cke, output mcb3_dram_dm, inout mcb3_dram_udqs, inout mcb3_dram_udqs_n, inout mcb3_rzq, inout mcb3_zio, output mcb3_dram_udm, input c3_sys_clk, input c3_sys_rst_n, output c3_calib_done, output c3_clk0, output c3_rst0, inout mcb3_dram_dqs, inout mcb3_dram_dqs_n, output mcb3_dram_ck, output mcb3_dram_ck_n, input c3_p0_cmd_clk, input c3_p0_cmd_en, input [2:0] c3_p0_cmd_instr, input [5:0] c3_p0_cmd_bl, input [29:0] c3_p0_cmd_byte_addr, output c3_p0_cmd_empty, output c3_p0_cmd_full, input c3_p0_wr_clk, input c3_p0_wr_en, input [C3_P0_MASK_SIZE - 1:0] c3_p0_wr_mask, input [C3_P0_DATA_PORT_SIZE - 1:0] c3_p0_wr_data, output c3_p0_wr_full, output c3_p0_wr_empty, output [6:0] c3_p0_wr_count, output c3_p0_wr_underrun, output c3_p0_wr_error, input c3_p0_rd_clk, input c3_p0_rd_en, output [C3_P0_DATA_PORT_SIZE - 1:0] c3_p0_rd_data, output c3_p0_rd_full, output c3_p0_rd_empty, output [6:0] c3_p0_rd_count, output c3_p0_rd_overflow, output c3_p0_rd_error ); // The parameter CX_PORT_ENABLE shows all the active user ports in the design. // For example, the value 6'b111100 tells that only port-2, port-3, port-4 // and port-5 are enabled. The other two ports are inactive. An inactive port // can be a disabled port or an invisible logical port. Few examples to the // invisible logical port are port-4 and port-5 in the user port configuration, // Config-2: Four 32-bit bi-directional ports and the ports port-2 through // port-5 in Config-4: Two 64-bit bi-directional ports. Please look into the // Chapter-2 of ug388.pdf in the /docs directory for further details. localparam C3_P1_MASK_SIZE =16; localparam C3_P1_DATA_PORT_SIZE =128; localparam C3_PORT_ENABLE = 6'b000001; localparam C3_PORT_CONFIG = "B128"; localparam C3_CLKOUT0_DIVIDE = 1; localparam C3_CLKOUT1_DIVIDE = 1; localparam C3_CLKOUT2_DIVIDE = 16; localparam C3_CLKOUT3_DIVIDE = 8; localparam C3_CLKFBOUT_MULT = 2; localparam C3_DIVCLK_DIVIDE = 1; localparam C3_ARB_ALGORITHM = 0; localparam C3_ARB_NUM_TIME_SLOTS = 12; localparam C3_ARB_TIME_SLOT_0 = 3'o0; localparam C3_ARB_TIME_SLOT_1 = 3'o0; localparam C3_ARB_TIME_SLOT_2 = 3'o0; localparam C3_ARB_TIME_SLOT_3 = 3'o0; localparam C3_ARB_TIME_SLOT_4 = 3'o0; localparam C3_ARB_TIME_SLOT_5 = 3'o0; localparam C3_ARB_TIME_SLOT_6 = 3'o0; localparam C3_ARB_TIME_SLOT_7 = 3'o0; localparam C3_ARB_TIME_SLOT_8 = 3'o0; localparam C3_ARB_TIME_SLOT_9 = 3'o0; localparam C3_ARB_TIME_SLOT_10 = 3'o0; localparam C3_ARB_TIME_SLOT_11 = 3'o0; localparam C3_MEM_TRAS = 42500; localparam C3_MEM_TRCD = 12500; localparam C3_MEM_TREFI = 7800000; localparam C3_MEM_TRFC = 127500; localparam C3_MEM_TRP = 12500; localparam C3_MEM_TWR = 15000; localparam C3_MEM_TRTP = 7500; localparam C3_MEM_TWTR = 7500; localparam C3_MEM_TYPE = "DDR2"; localparam C3_MEM_DENSITY = "1Gb"; localparam C3_MEM_BURST_LEN = 8; localparam C3_MEM_CAS_LATENCY = 4; localparam C3_MEM_NUM_COL_BITS = 10; localparam C3_MEM_DDR1_2_ODS = "FULL"; localparam C3_MEM_DDR2_RTT = "50OHMS"; localparam C3_MEM_DDR2_DIFF_DQS_EN = "YES"; localparam C3_MEM_DDR2_3_PA_SR = "FULL"; localparam C3_MEM_DDR2_3_HIGH_TEMP_SR = "NORMAL"; localparam C3_MEM_DDR3_CAS_LATENCY = 6; localparam C3_MEM_DDR3_ODS = "DIV6"; localparam C3_MEM_DDR3_RTT = "DIV2"; localparam C3_MEM_DDR3_CAS_WR_LATENCY = 5; localparam C3_MEM_DDR3_AUTO_SR = "ENABLED"; localparam C3_MEM_MOBILE_PA_SR = "FULL"; localparam C3_MEM_MDDR_ODS = "FULL"; localparam C3_MC_CALIB_BYPASS = "NO"; localparam C3_MC_CALIBRATION_MODE = "CALIBRATION"; localparam C3_MC_CALIBRATION_DELAY = "HALF"; localparam C3_SKIP_IN_TERM_CAL = 0; localparam C3_SKIP_DYNAMIC_CAL = 0; localparam C3_LDQSP_TAP_DELAY_VAL = 0; localparam C3_LDQSN_TAP_DELAY_VAL = 0; localparam C3_UDQSP_TAP_DELAY_VAL = 0; localparam C3_UDQSN_TAP_DELAY_VAL = 0; localparam C3_DQ0_TAP_DELAY_VAL = 0; localparam C3_DQ1_TAP_DELAY_VAL = 0; localparam C3_DQ2_TAP_DELAY_VAL = 0; localparam C3_DQ3_TAP_DELAY_VAL = 0; localparam C3_DQ4_TAP_DELAY_VAL = 0; localparam C3_DQ5_TAP_DELAY_VAL = 0; localparam C3_DQ6_TAP_DELAY_VAL = 0; localparam C3_DQ7_TAP_DELAY_VAL = 0; localparam C3_DQ8_TAP_DELAY_VAL = 0; localparam C3_DQ9_TAP_DELAY_VAL = 0; localparam C3_DQ10_TAP_DELAY_VAL = 0; localparam C3_DQ11_TAP_DELAY_VAL = 0; localparam C3_DQ12_TAP_DELAY_VAL = 0; localparam C3_DQ13_TAP_DELAY_VAL = 0; localparam C3_DQ14_TAP_DELAY_VAL = 0; localparam C3_DQ15_TAP_DELAY_VAL = 0; localparam C3_MCB_USE_EXTERNAL_BUFPLL = 1; localparam C3_INCLK_PERIOD = ((C3_MEMCLK_PERIOD * C3_CLKFBOUT_MULT) / (C3_DIVCLK_DIVIDE * C3_CLKOUT0_DIVIDE * 2)); localparam C3_ARB_TIME0_SLOT = {3'b111, 3'b111, 3'b111, 3'b111, 3'b111, C3_ARB_TIME_SLOT_0[2:0]}; localparam C3_ARB_TIME1_SLOT = {3'b111, 3'b111, 3'b111, 3'b111, 3'b111, C3_ARB_TIME_SLOT_1[2:0]}; localparam C3_ARB_TIME2_SLOT = {3'b111, 3'b111, 3'b111, 3'b111, 3'b111, C3_ARB_TIME_SLOT_2[2:0]}; localparam C3_ARB_TIME3_SLOT = {3'b111, 3'b111, 3'b111, 3'b111, 3'b111, C3_ARB_TIME_SLOT_3[2:0]}; localparam C3_ARB_TIME4_SLOT = {3'b111, 3'b111, 3'b111, 3'b111, 3'b111, C3_ARB_TIME_SLOT_4[2:0]}; localparam C3_ARB_TIME5_SLOT = {3'b111, 3'b111, 3'b111, 3'b111, 3'b111, C3_ARB_TIME_SLOT_5[2:0]}; localparam C3_ARB_TIME6_SLOT = {3'b111, 3'b111, 3'b111, 3'b111, 3'b111, C3_ARB_TIME_SLOT_6[2:0]}; localparam C3_ARB_TIME7_SLOT = {3'b111, 3'b111, 3'b111, 3'b111, 3'b111, C3_ARB_TIME_SLOT_7[2:0]}; localparam C3_ARB_TIME8_SLOT = {3'b111, 3'b111, 3'b111, 3'b111, 3'b111, C3_ARB_TIME_SLOT_8[2:0]}; localparam C3_ARB_TIME9_SLOT = {3'b111, 3'b111, 3'b111, 3'b111, 3'b111, C3_ARB_TIME_SLOT_9[2:0]}; localparam C3_ARB_TIME10_SLOT = {3'b111, 3'b111, 3'b111, 3'b111, 3'b111, C3_ARB_TIME_SLOT_10[2:0]}; localparam C3_ARB_TIME11_SLOT = {3'b111, 3'b111, 3'b111, 3'b111, 3'b111, C3_ARB_TIME_SLOT_11[2:0]}; wire c3_sys_clk_p; wire c3_sys_clk_n; wire c3_async_rst; wire c3_sysclk_2x; wire c3_sysclk_2x_180; wire c3_pll_ce_0; wire c3_pll_ce_90; wire c3_pll_lock; wire c3_mcb_drp_clk; wire c3_cmp_error; wire c3_cmp_data_valid; wire c3_vio_modify_enable; wire [2:0] c3_vio_data_mode_value; wire [2:0] c3_vio_addr_mode_value; wire [31:0] c3_cmp_data; wire c3_p1_cmd_clk; wire c3_p1_cmd_en; wire[2:0] c3_p1_cmd_instr; wire[5:0] c3_p1_cmd_bl; wire[29:0] c3_p1_cmd_byte_addr; wire c3_p1_cmd_empty; wire c3_p1_cmd_full; wire c3_p1_wr_clk; wire c3_p1_wr_en; wire[C3_P1_MASK_SIZE-1:0] c3_p1_wr_mask; wire[C3_P1_DATA_PORT_SIZE-1:0] c3_p1_wr_data; wire c3_p1_wr_full; wire c3_p1_wr_empty; wire[6:0] c3_p1_wr_count; wire c3_p1_wr_underrun; wire c3_p1_wr_error; wire c3_p1_rd_clk; wire c3_p1_rd_en; wire[C3_P1_DATA_PORT_SIZE-1:0] c3_p1_rd_data; wire c3_p1_rd_full; wire c3_p1_rd_empty; wire[6:0] c3_p1_rd_count; wire c3_p1_rd_overflow; wire c3_p1_rd_error; wire c3_p2_cmd_clk; wire c3_p2_cmd_en; wire[2:0] c3_p2_cmd_instr; wire[5:0] c3_p2_cmd_bl; wire[29:0] c3_p2_cmd_byte_addr; wire c3_p2_cmd_empty; wire c3_p2_cmd_full; wire c3_p2_wr_clk; wire c3_p2_wr_en; wire[3:0] c3_p2_wr_mask; wire[31:0] c3_p2_wr_data; wire c3_p2_wr_full; wire c3_p2_wr_empty; wire[6:0] c3_p2_wr_count; wire c3_p2_wr_underrun; wire c3_p2_wr_error; wire c3_p2_rd_clk; wire c3_p2_rd_en; wire[31:0] c3_p2_rd_data; wire c3_p2_rd_full; wire c3_p2_rd_empty; wire[6:0] c3_p2_rd_count; wire c3_p2_rd_overflow; wire c3_p2_rd_error; wire c3_p3_cmd_clk; wire c3_p3_cmd_en; wire[2:0] c3_p3_cmd_instr; wire[5:0] c3_p3_cmd_bl; wire[29:0] c3_p3_cmd_byte_addr; wire c3_p3_cmd_empty; wire c3_p3_cmd_full; wire c3_p3_wr_clk; wire c3_p3_wr_en; wire[3:0] c3_p3_wr_mask; wire[31:0] c3_p3_wr_data; wire c3_p3_wr_full; wire c3_p3_wr_empty; wire[6:0] c3_p3_wr_count; wire c3_p3_wr_underrun; wire c3_p3_wr_error; wire c3_p3_rd_clk; wire c3_p3_rd_en; wire[31:0] c3_p3_rd_data; wire c3_p3_rd_full; wire c3_p3_rd_empty; wire[6:0] c3_p3_rd_count; wire c3_p3_rd_overflow; wire c3_p3_rd_error; wire c3_p4_cmd_clk; wire c3_p4_cmd_en; wire[2:0] c3_p4_cmd_instr; wire[5:0] c3_p4_cmd_bl; wire[29:0] c3_p4_cmd_byte_addr; wire c3_p4_cmd_empty; wire c3_p4_cmd_full; wire c3_p4_wr_clk; wire c3_p4_wr_en; wire[3:0] c3_p4_wr_mask; wire[31:0] c3_p4_wr_data; wire c3_p4_wr_full; wire c3_p4_wr_empty; wire[6:0] c3_p4_wr_count; wire c3_p4_wr_underrun; wire c3_p4_wr_error; wire c3_p4_rd_clk; wire c3_p4_rd_en; wire[31:0] c3_p4_rd_data; wire c3_p4_rd_full; wire c3_p4_rd_empty; wire[6:0] c3_p4_rd_count; wire c3_p4_rd_overflow; wire c3_p4_rd_error; wire c3_p5_cmd_clk; wire c3_p5_cmd_en; wire[2:0] c3_p5_cmd_instr; wire[5:0] c3_p5_cmd_bl; wire[29:0] c3_p5_cmd_byte_addr; wire c3_p5_cmd_empty; wire c3_p5_cmd_full; wire c3_p5_wr_clk; wire c3_p5_wr_en; wire[3:0] c3_p5_wr_mask; wire[31:0] c3_p5_wr_data; wire c3_p5_wr_full; wire c3_p5_wr_empty; wire[6:0] c3_p5_wr_count; wire c3_p5_wr_underrun; wire c3_p5_wr_error; wire c3_p5_rd_clk; wire c3_p5_rd_en; wire[31:0] c3_p5_rd_data; wire c3_p5_rd_full; wire c3_p5_rd_empty; wire[6:0] c3_p5_rd_count; wire c3_p5_rd_overflow; wire c3_p5_rd_error; assign c3_sys_clk_p = 1'b0; assign c3_sys_clk_n = 1'b0; // Infrastructure-3 instantiation infrastructure # ( .C_INCLK_PERIOD (C3_INCLK_PERIOD), .C_RST_ACT_LOW (C3_RST_ACT_LOW), .C_INPUT_CLK_TYPE (C3_INPUT_CLK_TYPE), .C_CLKOUT0_DIVIDE (C3_CLKOUT0_DIVIDE), .C_CLKOUT1_DIVIDE (C3_CLKOUT1_DIVIDE), .C_CLKOUT2_DIVIDE (C3_CLKOUT2_DIVIDE), .C_CLKOUT3_DIVIDE (C3_CLKOUT3_DIVIDE), .C_CLKFBOUT_MULT (C3_CLKFBOUT_MULT), .C_DIVCLK_DIVIDE (C3_DIVCLK_DIVIDE) ) memc3_infrastructure_inst ( .sys_clk_p (c3_sys_clk_p), .sys_clk_n (c3_sys_clk_n), .sys_clk (c3_sys_clk), .sys_rst_n (c3_sys_rst_n), .clk0 (c3_clk0), .rst0 (c3_rst0), .async_rst (c3_async_rst), .sysclk_2x (c3_sysclk_2x), .sysclk_2x_180 (c3_sysclk_2x_180), .pll_ce_0 (c3_pll_ce_0), .pll_ce_90 (c3_pll_ce_90), .pll_lock (c3_pll_lock), .mcb_drp_clk (c3_mcb_drp_clk) ); // Controller-3 instantiation memc_wrapper # ( .C_MEMCLK_PERIOD (C3_MEMCLK_PERIOD), .C_CALIB_SOFT_IP (C3_CALIB_SOFT_IP), .C_SIMULATION (C3_SIMULATION), .C_ARB_NUM_TIME_SLOTS (C3_ARB_NUM_TIME_SLOTS), .C_ARB_TIME_SLOT_0 (C3_ARB_TIME0_SLOT), .C_ARB_TIME_SLOT_1 (C3_ARB_TIME1_SLOT), .C_ARB_TIME_SLOT_2 (C3_ARB_TIME2_SLOT), .C_ARB_TIME_SLOT_3 (C3_ARB_TIME3_SLOT), .C_ARB_TIME_SLOT_4 (C3_ARB_TIME4_SLOT), .C_ARB_TIME_SLOT_5 (C3_ARB_TIME5_SLOT), .C_ARB_TIME_SLOT_6 (C3_ARB_TIME6_SLOT), .C_ARB_TIME_SLOT_7 (C3_ARB_TIME7_SLOT), .C_ARB_TIME_SLOT_8 (C3_ARB_TIME8_SLOT), .C_ARB_TIME_SLOT_9 (C3_ARB_TIME9_SLOT), .C_ARB_TIME_SLOT_10 (C3_ARB_TIME10_SLOT), .C_ARB_TIME_SLOT_11 (C3_ARB_TIME11_SLOT), .C_ARB_ALGORITHM (C3_ARB_ALGORITHM), .C_PORT_ENABLE (C3_PORT_ENABLE), .C_PORT_CONFIG (C3_PORT_CONFIG), .C_MEM_TRAS (C3_MEM_TRAS), .C_MEM_TRCD (C3_MEM_TRCD), .C_MEM_TREFI (C3_MEM_TREFI), .C_MEM_TRFC (C3_MEM_TRFC), .C_MEM_TRP (C3_MEM_TRP), .C_MEM_TWR (C3_MEM_TWR), .C_MEM_TRTP (C3_MEM_TRTP), .C_MEM_TWTR (C3_MEM_TWTR), .C_MEM_ADDR_ORDER (C3_MEM_ADDR_ORDER), .C_NUM_DQ_PINS (C3_NUM_DQ_PINS), .C_MEM_TYPE (C3_MEM_TYPE), .C_MEM_DENSITY (C3_MEM_DENSITY), .C_MEM_BURST_LEN (C3_MEM_BURST_LEN), .C_MEM_CAS_LATENCY (C3_MEM_CAS_LATENCY), .C_MEM_ADDR_WIDTH (C3_MEM_ADDR_WIDTH), .C_MEM_BANKADDR_WIDTH (C3_MEM_BANKADDR_WIDTH), .C_MEM_NUM_COL_BITS (C3_MEM_NUM_COL_BITS), .C_MEM_DDR1_2_ODS (C3_MEM_DDR1_2_ODS), .C_MEM_DDR2_RTT (C3_MEM_DDR2_RTT), .C_MEM_DDR2_DIFF_DQS_EN (C3_MEM_DDR2_DIFF_DQS_EN), .C_MEM_DDR2_3_PA_SR (C3_MEM_DDR2_3_PA_SR), .C_MEM_DDR2_3_HIGH_TEMP_SR (C3_MEM_DDR2_3_HIGH_TEMP_SR), .C_MEM_DDR3_CAS_LATENCY (C3_MEM_DDR3_CAS_LATENCY), .C_MEM_DDR3_ODS (C3_MEM_DDR3_ODS), .C_MEM_DDR3_RTT (C3_MEM_DDR3_RTT), .C_MEM_DDR3_CAS_WR_LATENCY (C3_MEM_DDR3_CAS_WR_LATENCY), .C_MEM_DDR3_AUTO_SR (C3_MEM_DDR3_AUTO_SR), .C_MEM_MOBILE_PA_SR (C3_MEM_MOBILE_PA_SR), .C_MEM_MDDR_ODS (C3_MEM_MDDR_ODS), .C_MC_CALIB_BYPASS (C3_MC_CALIB_BYPASS), .C_MC_CALIBRATION_MODE (C3_MC_CALIBRATION_MODE), .C_MC_CALIBRATION_DELAY (C3_MC_CALIBRATION_DELAY), .C_SKIP_IN_TERM_CAL (C3_SKIP_IN_TERM_CAL), .C_SKIP_DYNAMIC_CAL (C3_SKIP_DYNAMIC_CAL), .LDQSP_TAP_DELAY_VAL (C3_LDQSP_TAP_DELAY_VAL), .UDQSP_TAP_DELAY_VAL (C3_UDQSP_TAP_DELAY_VAL), .LDQSN_TAP_DELAY_VAL (C3_LDQSN_TAP_DELAY_VAL), .UDQSN_TAP_DELAY_VAL (C3_UDQSN_TAP_DELAY_VAL), .DQ0_TAP_DELAY_VAL (C3_DQ0_TAP_DELAY_VAL), .DQ1_TAP_DELAY_VAL (C3_DQ1_TAP_DELAY_VAL), .DQ2_TAP_DELAY_VAL (C3_DQ2_TAP_DELAY_VAL), .DQ3_TAP_DELAY_VAL (C3_DQ3_TAP_DELAY_VAL), .DQ4_TAP_DELAY_VAL (C3_DQ4_TAP_DELAY_VAL), .DQ5_TAP_DELAY_VAL (C3_DQ5_TAP_DELAY_VAL), .DQ6_TAP_DELAY_VAL (C3_DQ6_TAP_DELAY_VAL), .DQ7_TAP_DELAY_VAL (C3_DQ7_TAP_DELAY_VAL), .DQ8_TAP_DELAY_VAL (C3_DQ8_TAP_DELAY_VAL), .DQ9_TAP_DELAY_VAL (C3_DQ9_TAP_DELAY_VAL), .DQ10_TAP_DELAY_VAL (C3_DQ10_TAP_DELAY_VAL), .DQ11_TAP_DELAY_VAL (C3_DQ11_TAP_DELAY_VAL), .DQ12_TAP_DELAY_VAL (C3_DQ12_TAP_DELAY_VAL), .DQ13_TAP_DELAY_VAL (C3_DQ13_TAP_DELAY_VAL), .DQ14_TAP_DELAY_VAL (C3_DQ14_TAP_DELAY_VAL), .DQ15_TAP_DELAY_VAL (C3_DQ15_TAP_DELAY_VAL), .C_P0_MASK_SIZE (C3_P0_MASK_SIZE), .C_P0_DATA_PORT_SIZE (C3_P0_DATA_PORT_SIZE), .C_P1_MASK_SIZE (C3_P1_MASK_SIZE), .C_P1_DATA_PORT_SIZE (C3_P1_DATA_PORT_SIZE) ) memc3_wrapper_inst ( .mcbx_dram_addr (mcb3_dram_a), .mcbx_dram_ba (mcb3_dram_ba), .mcbx_dram_ras_n (mcb3_dram_ras_n), .mcbx_dram_cas_n (mcb3_dram_cas_n), .mcbx_dram_we_n (mcb3_dram_we_n), .mcbx_dram_cke (mcb3_dram_cke), .mcbx_dram_clk (mcb3_dram_ck), .mcbx_dram_clk_n (mcb3_dram_ck_n), .mcbx_dram_dq (mcb3_dram_dq), .mcbx_dram_dqs (mcb3_dram_dqs), .mcbx_dram_dqs_n (mcb3_dram_dqs_n), .mcbx_dram_udqs (mcb3_dram_udqs), .mcbx_dram_udqs_n (mcb3_dram_udqs_n), .mcbx_dram_udm (mcb3_dram_udm), .mcbx_dram_ldm (mcb3_dram_dm), .mcbx_dram_odt (mcb3_dram_odt), .mcbx_dram_ddr3_rst ( ), .mcbx_rzq (mcb3_rzq), .mcbx_zio (mcb3_zio), .calib_done (c3_calib_done), .async_rst (c3_async_rst), .sysclk_2x (c3_sysclk_2x), .sysclk_2x_180 (c3_sysclk_2x_180), .pll_ce_0 (c3_pll_ce_0), .pll_ce_90 (c3_pll_ce_90), .pll_lock (c3_pll_lock), .mcb_drp_clk (c3_mcb_drp_clk), // The following port map shows all the six logical user ports. However, all // of them may not be active in this design. A port should be enabled to // validate its port map. If it is not,the complete port is going to float // by getting disconnected from the lower level MCB modules. The port enable // information of a controller can be obtained from the corresponding local // parameter CX_PORT_ENABLE. In such a case, we can simply ignore its port map. // The following comments will explain when a port is going to be active. // Config-1: Two 32-bit bi-directional and four 32-bit unidirectional ports // Config-2: Four 32-bit bi-directional ports // Config-3: One 64-bit bi-directional and two 32-bit bi-directional ports // Config-4: Two 64-bit bi-directional ports // Config-5: One 128-bit bi-directional port // User Port-0 command interface will be active only when the port is enabled in // the port configurations Config-1, Config-2, Config-3, Config-4 and Config-5 .p0_cmd_clk (c3_p0_cmd_clk), .p0_cmd_en (c3_p0_cmd_en), .p0_cmd_instr (c3_p0_cmd_instr), .p0_cmd_bl (c3_p0_cmd_bl), .p0_cmd_byte_addr (c3_p0_cmd_byte_addr), .p0_cmd_full (c3_p0_cmd_full), .p0_cmd_empty (c3_p0_cmd_empty), // User Port-0 data write interface will be active only when the port is enabled in // the port configurations Config-1, Config-2, Config-3, Config-4 and Config-5 .p0_wr_clk (c3_p0_wr_clk), .p0_wr_en (c3_p0_wr_en), .p0_wr_mask (c3_p0_wr_mask), .p0_wr_data (c3_p0_wr_data), .p0_wr_full (c3_p0_wr_full), .p0_wr_count (c3_p0_wr_count), .p0_wr_empty (c3_p0_wr_empty), .p0_wr_underrun (c3_p0_wr_underrun), .p0_wr_error (c3_p0_wr_error), // User Port-0 data read interface will be active only when the port is enabled in // the port configurations Config-1, Config-2, Config-3, Config-4 and Config-5 .p0_rd_clk (c3_p0_rd_clk), .p0_rd_en (c3_p0_rd_en), .p0_rd_data (c3_p0_rd_data), .p0_rd_empty (c3_p0_rd_empty), .p0_rd_count (c3_p0_rd_count), .p0_rd_full (c3_p0_rd_full), .p0_rd_overflow (c3_p0_rd_overflow), .p0_rd_error (c3_p0_rd_error), // User Port-1 command interface will be active only when the port is enabled in // the port configurations Config-1, Config-2, Config-3 and Config-4 .p1_cmd_clk (c3_p1_cmd_clk), .p1_cmd_en (c3_p1_cmd_en), .p1_cmd_instr (c3_p1_cmd_instr), .p1_cmd_bl (c3_p1_cmd_bl), .p1_cmd_byte_addr (c3_p1_cmd_byte_addr), .p1_cmd_full (c3_p1_cmd_full), .p1_cmd_empty (c3_p1_cmd_empty), // User Port-1 data write interface will be active only when the port is enabled in // the port configurations Config-1, Config-2, Config-3 and Config-4 .p1_wr_clk (c3_p1_wr_clk), .p1_wr_en (c3_p1_wr_en), .p1_wr_mask (c3_p1_wr_mask), .p1_wr_data (c3_p1_wr_data), .p1_wr_full (c3_p1_wr_full), .p1_wr_count (c3_p1_wr_count), .p1_wr_empty (c3_p1_wr_empty), .p1_wr_underrun (c3_p1_wr_underrun), .p1_wr_error (c3_p1_wr_error), // User Port-1 data read interface will be active only when the port is enabled in // the port configurations Config-1, Config-2, Config-3 and Config-4 .p1_rd_clk (c3_p1_rd_clk), .p1_rd_en (c3_p1_rd_en), .p1_rd_data (c3_p1_rd_data), .p1_rd_empty (c3_p1_rd_empty), .p1_rd_count (c3_p1_rd_count), .p1_rd_full (c3_p1_rd_full), .p1_rd_overflow (c3_p1_rd_overflow), .p1_rd_error (c3_p1_rd_error), // User Port-2 command interface will be active only when the port is enabled in // the port configurations Config-1, Config-2 and Config-3 .p2_cmd_clk (c3_p2_cmd_clk), .p2_cmd_en (c3_p2_cmd_en), .p2_cmd_instr (c3_p2_cmd_instr), .p2_cmd_bl (c3_p2_cmd_bl), .p2_cmd_byte_addr (c3_p2_cmd_byte_addr), .p2_cmd_full (c3_p2_cmd_full), .p2_cmd_empty (c3_p2_cmd_empty), // User Port-2 data write interface will be active only when the port is enabled in // the port configurations Config-1 write direction, Config-2 and Config-3 .p2_wr_clk (c3_p2_wr_clk), .p2_wr_en (c3_p2_wr_en), .p2_wr_mask (c3_p2_wr_mask), .p2_wr_data (c3_p2_wr_data), .p2_wr_full (c3_p2_wr_full), .p2_wr_count (c3_p2_wr_count), .p2_wr_empty (c3_p2_wr_empty), .p2_wr_underrun (c3_p2_wr_underrun), .p2_wr_error (c3_p2_wr_error), // User Port-2 data read interface will be active only when the port is enabled in // the port configurations Config-1 read direction, Config-2 and Config-3 .p2_rd_clk (c3_p2_rd_clk), .p2_rd_en (c3_p2_rd_en), .p2_rd_data (c3_p2_rd_data), .p2_rd_empty (c3_p2_rd_empty), .p2_rd_count (c3_p2_rd_count), .p2_rd_full (c3_p2_rd_full), .p2_rd_overflow (c3_p2_rd_overflow), .p2_rd_error (c3_p2_rd_error), // User Port-3 command interface will be active only when the port is enabled in // the port configurations Config-1 and Config-2 .p3_cmd_clk (c3_p3_cmd_clk), .p3_cmd_en (c3_p3_cmd_en), .p3_cmd_instr (c3_p3_cmd_instr), .p3_cmd_bl (c3_p3_cmd_bl), .p3_cmd_byte_addr (c3_p3_cmd_byte_addr), .p3_cmd_full (c3_p3_cmd_full), .p3_cmd_empty (c3_p3_cmd_empty), // User Port-3 data write interface will be active only when the port is enabled in // the port configurations Config-1 write direction and Config-2 .p3_wr_clk (c3_p3_wr_clk), .p3_wr_en (c3_p3_wr_en), .p3_wr_mask (c3_p3_wr_mask), .p3_wr_data (c3_p3_wr_data), .p3_wr_full (c3_p3_wr_full), .p3_wr_count (c3_p3_wr_count), .p3_wr_empty (c3_p3_wr_empty), .p3_wr_underrun (c3_p3_wr_underrun), .p3_wr_error (c3_p3_wr_error), // User Port-3 data read interface will be active only when the port is enabled in // the port configurations Config-1 read direction and Config-2 .p3_rd_clk (c3_p3_rd_clk), .p3_rd_en (c3_p3_rd_en), .p3_rd_data (c3_p3_rd_data), .p3_rd_empty (c3_p3_rd_empty), .p3_rd_count (c3_p3_rd_count), .p3_rd_full (c3_p3_rd_full), .p3_rd_overflow (c3_p3_rd_overflow), .p3_rd_error (c3_p3_rd_error), // User Port-4 command interface will be active only when the port is enabled in // the port configuration Config-1 .p4_cmd_clk (c3_p4_cmd_clk), .p4_cmd_en (c3_p4_cmd_en), .p4_cmd_instr (c3_p4_cmd_instr), .p4_cmd_bl (c3_p4_cmd_bl), .p4_cmd_byte_addr (c3_p4_cmd_byte_addr), .p4_cmd_full (c3_p4_cmd_full), .p4_cmd_empty (c3_p4_cmd_empty), // User Port-4 data write interface will be active only when the port is enabled in // the port configuration Config-1 write direction .p4_wr_clk (c3_p4_wr_clk), .p4_wr_en (c3_p4_wr_en), .p4_wr_mask (c3_p4_wr_mask), .p4_wr_data (c3_p4_wr_data), .p4_wr_full (c3_p4_wr_full), .p4_wr_count (c3_p4_wr_count), .p4_wr_empty (c3_p4_wr_empty), .p4_wr_underrun (c3_p4_wr_underrun), .p4_wr_error (c3_p4_wr_error), // User Port-4 data read interface will be active only when the port is enabled in // the port configuration Config-1 read direction .p4_rd_clk (c3_p4_rd_clk), .p4_rd_en (c3_p4_rd_en), .p4_rd_data (c3_p4_rd_data), .p4_rd_empty (c3_p4_rd_empty), .p4_rd_count (c3_p4_rd_count), .p4_rd_full (c3_p4_rd_full), .p4_rd_overflow (c3_p4_rd_overflow), .p4_rd_error (c3_p4_rd_error), // User Port-5 command interface will be active only when the port is enabled in // the port configuration Config-1 .p5_cmd_clk (c3_p5_cmd_clk), .p5_cmd_en (c3_p5_cmd_en), .p5_cmd_instr (c3_p5_cmd_instr), .p5_cmd_bl (c3_p5_cmd_bl), .p5_cmd_byte_addr (c3_p5_cmd_byte_addr), .p5_cmd_full (c3_p5_cmd_full), .p5_cmd_empty (c3_p5_cmd_empty), // User Port-5 data write interface will be active only when the port is enabled in // the port configuration Config-1 write direction .p5_wr_clk (c3_p5_wr_clk), .p5_wr_en (c3_p5_wr_en), .p5_wr_mask (c3_p5_wr_mask), .p5_wr_data (c3_p5_wr_data), .p5_wr_full (c3_p5_wr_full), .p5_wr_count (c3_p5_wr_count), .p5_wr_empty (c3_p5_wr_empty), .p5_wr_underrun (c3_p5_wr_underrun), .p5_wr_error (c3_p5_wr_error), // User Port-5 data read interface will be active only when the port is enabled in // the port configuration Config-1 read direction .p5_rd_clk (c3_p5_rd_clk), .p5_rd_en (c3_p5_rd_en), .p5_rd_data (c3_p5_rd_data), .p5_rd_empty (c3_p5_rd_empty), .p5_rd_count (c3_p5_rd_count), .p5_rd_full (c3_p5_rd_full), .p5_rd_overflow (c3_p5_rd_overflow), .p5_rd_error (c3_p5_rd_error), .selfrefresh_enter (1'b0), .selfrefresh_mode (c3_selfrefresh_mode) ); endmodule
Go to most recent revision | Compare with Previous | Blame | View Log