mirror of
git://projects.qi-hardware.com/nn-usb-fpga.git
synced 2025-01-09 18:40:15 +02:00
64 lines
4.3 KiB
Systemverilog
64 lines
4.3 KiB
Systemverilog
/****************************************************************************************
|
|
*
|
|
* Disclaimer This software code and all associated documentation, comments or other
|
|
* of Warranty: information (collectively "Software") is provided "AS IS" without
|
|
* warranty of any kind. MICRON TECHNOLOGY, INC. ("MTI") EXPRESSLY
|
|
* DISCLAIMS ALL WARRANTIES EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
|
* TO, NONINFRINGEMENT OF THIRD PARTY RIGHTS, AND ANY IMPLIED WARRANTIES
|
|
* OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE. MTI DOES NOT
|
|
* WARRANT THAT THE SOFTWARE WILL MEET YOUR REQUIREMENTS, OR THAT THE
|
|
* OPERATION OF THE SOFTWARE WILL BE UNINTERRUPTED OR ERROR-FREE.
|
|
* FURTHERMORE, MTI DOES NOT MAKE ANY REPRESENTATIONS REGARDING THE USE OR
|
|
* THE RESULTS OF THE USE OF THE SOFTWARE IN TERMS OF ITS CORRECTNESS,
|
|
* ACCURACY, RELIABILITY, OR OTHERWISE. THE ENTIRE RISK ARISING OUT OF USE
|
|
* OR PERFORMANCE OF THE SOFTWARE REMAINS WITH YOU. IN NO EVENT SHALL MTI,
|
|
* ITS AFFILIATED COMPANIES OR THEIR SUPPLIERS BE LIABLE FOR ANY DIRECT,
|
|
* INDIRECT, CONSEQUENTIAL, INCIDENTAL, OR SPECIAL DAMAGES (INCLUDING,
|
|
* WITHOUT LIMITATION, DAMAGES FOR LOSS OF PROFITS, BUSINESS INTERRUPTION,
|
|
* OR LOSS OF INFORMATION) ARISING OUT OF YOUR USE OF OR INABILITY TO USE
|
|
* THE SOFTWARE, EVEN IF MTI HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
|
|
* DAMAGES. Because some jurisdictions prohibit the exclusion or
|
|
* limitation of liability for consequential or incidental damages, the
|
|
* above limitation may not apply to you.
|
|
*
|
|
* Copyright 2003 Micron Technology, Inc. All rights reserved.
|
|
*
|
|
****************************************************************************************/
|
|
|
|
// Timing parameters based on Speed Grade
|
|
|
|
// SYMBOL UNITS DESCRIPTION
|
|
// ------ ----- -----------
|
|
|
|
// `ifdef sg6T // Timing Parameters for -6T (CL = 2.5)
|
|
parameter tCK = 6.0; // tCK ns Nominal Clock Cycle Time
|
|
parameter tDQSQ = 0.45; // tDQSS ns DQS-DQ skew, DQS to last DQ valid, per group, per access
|
|
parameter tMRD = 12.0; // tMRD ns Load Mode Register command cycle time
|
|
parameter tRAP = 15.0; // tRAP ns ACTIVE to READ with Auto precharge command
|
|
parameter tRAS = 42.0; // tRAS ns Active to Precharge command time
|
|
parameter tRC = 60.0; // tRC ns Active to Active/Auto Refresh command time
|
|
parameter tRFC = 120.0; // tRFC ns Refresh to Refresh Command interval time
|
|
parameter tRCD = 15.0; // tRCD ns Active to Read/Write command time
|
|
parameter tRP = 15.0; // tRP ns Precharge command period
|
|
parameter tRRD = 12.0; // tRRD ns Active bank a to Active bank b command time
|
|
parameter tWR = 15.0; // tWR ns Write recovery time
|
|
|
|
|
|
|
|
// Size Parameters based on Part Width
|
|
|
|
|
|
//`else `define x16
|
|
parameter ADDR_BITS = 13; // Set this parameter to control how many Address bits are used
|
|
parameter DQ_BITS = 16; // Set this parameter to control how many Data bits are used
|
|
parameter DQS_BITS = 2; // Set this parameter to control how many DQS bits are used
|
|
parameter DM_BITS = 2; // Set this parameter to control how many DM bits are used
|
|
parameter COL_BITS = 10; // Set this parameter to control how many Column bits are used
|
|
|
|
parameter full_mem_bits = 2+ADDR_BITS+COL_BITS; // Set this parameter to control how many unique addresses are used
|
|
parameter part_mem_bits = 14; // Set this parameter to control how many unique addresses are used
|
|
|
|
parameter no_halt = 0; // If set to 1, the model won't halt on command sequence/major errors
|
|
parameter Debug = 1; // Turn on debug message
|
|
|