1 |
568 |
julius |
//*****************************************************************************
|
2 |
|
|
// DISCLAIMER OF LIABILITY
|
3 |
|
|
//
|
4 |
|
|
// This file contains proprietary and confidential information of
|
5 |
|
|
// Xilinx, Inc. ("Xilinx"), that is distributed under a license
|
6 |
|
|
// from Xilinx, and may be used, copied and/or disclosed only
|
7 |
|
|
// pursuant to the terms of a valid license agreement with Xilinx.
|
8 |
|
|
//
|
9 |
|
|
// XILINX IS PROVIDING THIS DESIGN, CODE, OR INFORMATION
|
10 |
|
|
// ("MATERIALS") "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER
|
11 |
|
|
// EXPRESSED, IMPLIED, OR STATUTORY, INCLUDING WITHOUT
|
12 |
|
|
// LIMITATION, ANY WARRANTY WITH RESPECT TO NONINFRINGEMENT,
|
13 |
|
|
// MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE. Xilinx
|
14 |
|
|
// does not warrant that functions included in the Materials will
|
15 |
|
|
// meet the requirements of Licensee, or that the operation of the
|
16 |
|
|
// Materials will be uninterrupted or error-free, or that defects
|
17 |
|
|
// in the Materials will be corrected. Furthermore, Xilinx does
|
18 |
|
|
// not warrant or make any representations regarding use, or the
|
19 |
|
|
// results of the use, of the Materials in terms of correctness,
|
20 |
|
|
// accuracy, reliability or otherwise.
|
21 |
|
|
//
|
22 |
|
|
// Xilinx products are not designed or intended to be fail-safe,
|
23 |
|
|
// or for use in any application requiring fail-safe performance,
|
24 |
|
|
// such as life-support or safety devices or systems, Class III
|
25 |
|
|
// medical devices, nuclear facilities, applications related to
|
26 |
|
|
// the deployment of airbags, or any other applications that could
|
27 |
|
|
// lead to death, personal injury or severe property or
|
28 |
|
|
// environmental damage (individually and collectively, "critical
|
29 |
|
|
// applications"). Customer assumes the sole risk and liability
|
30 |
|
|
// of any use of Xilinx products in critical applications,
|
31 |
|
|
// subject only to applicable laws and regulations governing
|
32 |
|
|
// limitations on product liability.
|
33 |
|
|
//
|
34 |
|
|
// Copyright 2005, 2006, 2007 Xilinx, Inc.
|
35 |
|
|
// All rights reserved.
|
36 |
|
|
//
|
37 |
|
|
// This disclaimer and copyright notice must be retained as part
|
38 |
|
|
// of this file at all times.
|
39 |
|
|
//*****************************************************************************
|
40 |
|
|
// ____ ____
|
41 |
|
|
// / /\/ /
|
42 |
|
|
// /___/ \ / Vendor : Xilinx
|
43 |
|
|
// \ \ \/ Version : 3.6.1
|
44 |
|
|
// \ \ Application : MIG
|
45 |
|
|
// / / Filename : s3adsp_ddr2_parameters_0.v
|
46 |
|
|
// /___/ /\ Date Last Modified : $Date: 2010/11/26 18:25:42 $
|
47 |
|
|
// \ \ / \ Date Created : Mon May 2 2005
|
48 |
|
|
// \___\/\___\
|
49 |
|
|
// Device : Spartan-3/3A/3A-DSP
|
50 |
|
|
// Design Name : DDR2 SDRAM
|
51 |
|
|
// Purpose : This module has the parameters used in the design
|
52 |
|
|
//*****************************************************************************
|
53 |
|
|
|
54 |
|
|
//`timescale 1ns/100ps
|
55 |
|
|
|
56 |
|
|
// The reset polarity is set to active low by default.
|
57 |
|
|
// You can change this by editing the parameter RESET_ACTIVE_LOW.
|
58 |
|
|
// Please do not change any of the other parameters directly by editing the RTL.
|
59 |
|
|
// All other changes should be done through the GUI.
|
60 |
|
|
|
61 |
|
|
`define DATA_WIDTH 32
|
62 |
|
|
`define DATA_STROBE_WIDTH 4
|
63 |
|
|
`define DATA_MASK_WIDTH 4
|
64 |
|
|
`define CLK_WIDTH 2
|
65 |
|
|
`define CKE_WIDTH 1
|
66 |
|
|
`define ROW_ADDRESS 13
|
67 |
|
|
`define MEMORY_WIDTH 8
|
68 |
|
|
`define REGISTERED 0
|
69 |
|
|
`define DATABITSPERSTROBE 8
|
70 |
|
|
`define RESET_PORT 0
|
71 |
|
|
`define MASK_ENABLE 1
|
72 |
|
|
`define USE_DM_PORT 1
|
73 |
|
|
`define COLUMN_ADDRESS 10
|
74 |
|
|
`define BANK_ADDRESS 2
|
75 |
|
|
`define DEBUG_EN 0
|
76 |
|
|
`define CLK_TYPE "SINGLE_ENDED"
|
77 |
|
|
`define LOAD_MODE_REGISTER 13'b0010100110011
|
78 |
|
|
`define EXT_LOAD_MODE_REGISTER 13'b0000000000000
|
79 |
|
|
`define RESET_ACTIVE_LOW 1'b1
|
80 |
|
|
`define RAS_COUNT_VALUE 5'b00101
|
81 |
|
|
`define RP_COUNT_VALUE 3'b001
|
82 |
|
|
`define RFC_COUNT_VALUE 8'b00001101
|
83 |
|
|
`define TWR_COUNT_VALUE 3'b010
|
84 |
|
|
`define MAX_REF_WIDTH 10
|
85 |
|
|
`define MAX_REF_CNT 10'b1111100111
|
86 |
|
|
|
87 |
|
|
`include "synthesis-defines.v"
|
88 |
|
|
`ifndef SYNTHESIS
|
89 |
|
|
// To skip the 200us wait at simulation start
|
90 |
|
|
`define simulation
|
91 |
|
|
`endif
|