OpenCores
URL https://opencores.org/ocsvn/usb_fpga_2_14/usb_fpga_2_14/trunk

Subversion Repositories usb_fpga_2_14

[/] [usb_fpga_2_14/] [trunk/] [examples/] [memfifo/] [fpga-2.18/] [memfifo.srcs/] [sources_1/] [ip/] [mig_7series_0/] [mig_7series_0.veo] - Blame information for rev 2

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 2 ZTEX
//*****************************************************************************
2
// (c) Copyright 2009 - 2010 Xilinx, Inc. All rights reserved.
3
//
4
// This file contains confidential and proprietary information
5
// of Xilinx, Inc. and is protected under U.S. and
6
// international copyright and other intellectual property
7
// laws.
8
//
9
// DISCLAIMER
10
// This disclaimer is not a license and does not grant any
11
// rights to the materials distributed herewith. Except as
12
// otherwise provided in a valid license issued to you by
13
// Xilinx, and to the maximum extent permitted by applicable
14
// law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND
15
// WITH ALL FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES
16
// AND CONDITIONS, EXPRESS, IMPLIED, OR STATUTORY, INCLUDING
17
// BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, NON-
18
// INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE; and
19
// (2) Xilinx shall not be liable (whether in contract or tort,
20
// including negligence, or under any other theory of
21
// liability) for any loss or damage of any kind or nature
22
// related to, arising under or in connection with these
23
// materials, including for any direct, or any indirect,
24
// special, incidental, or consequential loss or damage
25
// (including loss of data, profits, goodwill, or any type of
26
// loss or damage suffered as a result of any action brought
27
// by a third party) even if such damage or loss was
28
// reasonably foreseeable or Xilinx had been advised of the
29
// possibility of the same.
30
//
31
// CRITICAL APPLICATIONS
32
// Xilinx products are not designed or intended to be fail-
33
// safe, or for use in any application requiring fail-safe
34
// performance, such as life-support or safety devices or
35
// systems, Class III medical devices, nuclear facilities,
36
// applications related to the deployment of airbags, or any
37
// other applications that could lead to death, personal
38
// injury, or severe property or environmental damage
39
// (individually and collectively, "Critical
40
// Applications"). Customer assumes the sole risk and
41
// liability of any use of Xilinx products in Critical
42
// Applications, subject only to applicable laws and
43
// regulations governing limitations on product liability.
44
//
45
// THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS
46
// PART OF THIS FILE AT ALL TIMES.
47
//
48
//*****************************************************************************
49
//   ____  ____
50
//  /   /\/   /
51
// /___/  \  /   Vendor             : Xilinx
52
// \   \   \/    Version            : 2.3
53
//  \   \        Application        : MIG
54
//  /   /        Filename           : mig_7series_0.veo
55
// /___/   /\    Date Last Modified : $Date: 2011/06/02 08:34:47 $
56
// \   \  /  \   Date Created       : Tue Sept 21 2010
57
//  \___\/\___\
58
//
59
// Device           : 7 Series
60
// Design Name      : DDR3 SDRAM
61
// Purpose          : Template file containing code that can be used as a model
62
//                    for instantiating a CORE Generator module in a HDL design.
63
// Revision History :
64
//*****************************************************************************
65
 
66
// The following must be inserted into your Verilog file for this
67
// core to be instantiated. Change the instance name and port connections
68
// (in parentheses) to your own signal names.
69
 
70
//----------- Begin Cut here for INSTANTIATION Template ---// INST_TAG
71
 
72
  mig_7series_0 u_mig_7series_0 (
73
 
74
    // Memory interface ports
75
    .ddr3_addr                      (ddr3_addr),  // output [13:0]              ddr3_addr
76
    .ddr3_ba                        (ddr3_ba),  // output [2:0]         ddr3_ba
77
    .ddr3_cas_n                     (ddr3_cas_n),  // output                    ddr3_cas_n
78
    .ddr3_ck_n                      (ddr3_ck_n),  // output [0:0]               ddr3_ck_n
79
    .ddr3_ck_p                      (ddr3_ck_p),  // output [0:0]               ddr3_ck_p
80
    .ddr3_cke                       (ddr3_cke),  // output [0:0]                ddr3_cke
81
    .ddr3_ras_n                     (ddr3_ras_n),  // output                    ddr3_ras_n
82
    .ddr3_reset_n                   (ddr3_reset_n),  // output                  ddr3_reset_n
83
    .ddr3_we_n                      (ddr3_we_n),  // output                     ddr3_we_n
84
    .ddr3_dq                        (ddr3_dq),  // inout [15:0]         ddr3_dq
85
    .ddr3_dqs_n                     (ddr3_dqs_n),  // inout [1:0]               ddr3_dqs_n
86
    .ddr3_dqs_p                     (ddr3_dqs_p),  // inout [1:0]               ddr3_dqs_p
87
    .init_calib_complete            (init_calib_complete),  // output                   init_calib_complete
88
 
89
    .ddr3_dm                        (ddr3_dm),  // output [1:0]         ddr3_dm
90
    .ddr3_odt                       (ddr3_odt),  // output [0:0]                ddr3_odt
91
    // Application interface ports
92
    .app_addr                       (app_addr),  // input [27:0]                app_addr
93
    .app_cmd                        (app_cmd),  // input [2:0]          app_cmd
94
    .app_en                         (app_en),  // input                         app_en
95
    .app_wdf_data                   (app_wdf_data),  // input [127:0]           app_wdf_data
96
    .app_wdf_end                    (app_wdf_end),  // input                            app_wdf_end
97
    .app_wdf_wren                   (app_wdf_wren),  // input                           app_wdf_wren
98
    .app_rd_data                    (app_rd_data),  // output [127:0]           app_rd_data
99
    .app_rd_data_end                (app_rd_data_end),  // output                       app_rd_data_end
100
    .app_rd_data_valid              (app_rd_data_valid),  // output                     app_rd_data_valid
101
    .app_rdy                        (app_rdy),  // output                       app_rdy
102
    .app_wdf_rdy                    (app_wdf_rdy),  // output                   app_wdf_rdy
103
    .app_sr_req                     (app_sr_req),  // input                     app_sr_req
104
    .app_ref_req                    (app_ref_req),  // input                    app_ref_req
105
    .app_zq_req                     (app_zq_req),  // input                     app_zq_req
106
    .app_sr_active                  (app_sr_active),  // output                 app_sr_active
107
    .app_ref_ack                    (app_ref_ack),  // output                   app_ref_ack
108
    .app_zq_ack                     (app_zq_ack),  // output                    app_zq_ack
109
    .ui_clk                         (ui_clk),  // output                        ui_clk
110
    .ui_clk_sync_rst                (ui_clk_sync_rst),  // output                       ui_clk_sync_rst
111
    .app_wdf_mask                   (app_wdf_mask),  // input [15:0]            app_wdf_mask
112
    // System Clock Ports
113
    .sys_clk_i                       (sys_clk_i),
114
    // Reference Clock Ports
115
    .clk_ref_i                      (clk_ref_i),
116
    .device_temp_i                  (device_temp_i),  // input [11:0]                   device_temp_i
117
    .sys_rst                        (sys_rst) // input sys_rst
118
    );
119
 
120
// INST_TAG_END ------ End INSTANTIATION Template ---------
121
 
122
// You must compile the wrapper file mig_7series_0.v when simulating
123
// the core, mig_7series_0. When compiling the wrapper file, be sure to
124
// reference the XilinxCoreLib Verilog simulation library. For detailed
125
// instructions, please refer to the "CORE Generator Help".

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.