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.14/] [memfifo.srcs/] [sources_1/] [ip/] [mig_7series_0/] [mig_7series_0/] [user_design/] [rtl/] [mig_7series_0.v] - Blame information for rev 2

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 2 ZTEX
//*****************************************************************************
2
// (c) Copyright 2009 - 2012 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.v
55
// /___/   /\     Date Last Modified : $Date: 2011/06/02 08:35:03 $
56
// \   \  /  \    Date Created       : Wed Feb 01 2012
57
//  \___\/\___\
58
//
59
// Device           : 7 Series
60
// Design Name      : DDR3 SDRAM
61
// Purpose          :
62
//   Wrapper module for the user design top level file. This module can be 
63
//   instantiated in the system and interconnect as shown in example design 
64
//   (example_top module).
65
// Revision History :
66
//*****************************************************************************
67
`timescale 1ps/1ps
68
 
69
module mig_7series_0 (
70
  // Inouts
71
  inout [15:0]       ddr3_dq,
72
  inout [1:0]        ddr3_dqs_n,
73
  inout [1:0]        ddr3_dqs_p,
74
  // Outputs
75
  output [13:0]     ddr3_addr,
76
  output [2:0]        ddr3_ba,
77
  output            ddr3_ras_n,
78
  output            ddr3_cas_n,
79
  output            ddr3_we_n,
80
  output            ddr3_reset_n,
81
  output [0:0]       ddr3_ck_p,
82
  output [0:0]       ddr3_ck_n,
83
  output [0:0]       ddr3_cke,
84
  output [1:0]     ddr3_dm,
85
  output [0:0]       ddr3_odt,
86
  // Inputs
87
  // Single-ended system clock
88
  input             sys_clk_i,
89
  // Single-ended iodelayctrl clk (reference clock)
90
  input             clk_ref_i,
91
  // user interface signals
92
  input [27:0]       app_addr,
93
  input [2:0]       app_cmd,
94
  input             app_en,
95
  input [127:0]        app_wdf_data,
96
  input             app_wdf_end,
97
  input [15:0]        app_wdf_mask,
98
  input             app_wdf_wren,
99
  output [127:0]       app_rd_data,
100
  output            app_rd_data_end,
101
  output            app_rd_data_valid,
102
  output            app_rdy,
103
  output            app_wdf_rdy,
104
  input         app_sr_req,
105
  input         app_ref_req,
106
  input         app_zq_req,
107
  output            app_sr_active,
108
  output            app_ref_ack,
109
  output            app_zq_ack,
110
  output            ui_clk,
111
  output            ui_clk_sync_rst,
112
  output            init_calib_complete,
113
  input [11:0]          device_temp_i,
114
                      // The 12 MSB bits of the temperature sensor transfer
115
                      // function need to be connected to this port. This port
116
                      // will be synchronized w.r.t. to fabric clock internally.
117
  input                 sys_rst
118
  );
119
 
120
// Start of IP top instance
121
  mig_7series_0_mig u_mig_7series_0_mig (
122
 
123
    // Memory interface ports
124
    .ddr3_addr                      (ddr3_addr),
125
    .ddr3_ba                        (ddr3_ba),
126
    .ddr3_cas_n                     (ddr3_cas_n),
127
    .ddr3_ck_n                      (ddr3_ck_n),
128
    .ddr3_ck_p                      (ddr3_ck_p),
129
    .ddr3_cke                       (ddr3_cke),
130
    .ddr3_ras_n                     (ddr3_ras_n),
131
    .ddr3_reset_n                   (ddr3_reset_n),
132
    .ddr3_we_n                      (ddr3_we_n),
133
    .ddr3_dq                        (ddr3_dq),
134
    .ddr3_dqs_n                     (ddr3_dqs_n),
135
    .ddr3_dqs_p                     (ddr3_dqs_p),
136
    .init_calib_complete            (init_calib_complete),
137
 
138
    .ddr3_dm                        (ddr3_dm),
139
    .ddr3_odt                       (ddr3_odt),
140
    // Application interface ports
141
    .app_addr                       (app_addr),
142
    .app_cmd                        (app_cmd),
143
    .app_en                         (app_en),
144
    .app_wdf_data                   (app_wdf_data),
145
    .app_wdf_end                    (app_wdf_end),
146
    .app_wdf_wren                   (app_wdf_wren),
147
    .app_rd_data                    (app_rd_data),
148
    .app_rd_data_end                (app_rd_data_end),
149
    .app_rd_data_valid              (app_rd_data_valid),
150
    .app_rdy                        (app_rdy),
151
    .app_wdf_rdy                    (app_wdf_rdy),
152
    .app_sr_req                     (app_sr_req),
153
    .app_ref_req                    (app_ref_req),
154
    .app_zq_req                     (app_zq_req),
155
    .app_sr_active                  (app_sr_active),
156
    .app_ref_ack                    (app_ref_ack),
157
    .app_zq_ack                     (app_zq_ack),
158
    .ui_clk                         (ui_clk),
159
    .ui_clk_sync_rst                (ui_clk_sync_rst),
160
    .app_wdf_mask                   (app_wdf_mask),
161
    // System Clock Ports
162
    .sys_clk_i                       (sys_clk_i),
163
    // Reference Clock Ports
164
    .clk_ref_i                      (clk_ref_i),
165
    .device_temp_i                  (device_temp_i),
166
    .sys_rst                        (sys_rst)
167
    );
168
// End of IP top instance
169
 
170
endmodule

powered by: WebSVN 2.1.0

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