URL
https://opencores.org/ocsvn/pipelined_fft_128/pipelined_fft_128/trunk
Subversion Repositories pipelined_fft_128
[/] [pipelined_fft_128/] [trunk/] [SRC/] [ram2x128.v] - Rev 2
Compare with Previous | Blame | View Log
///////////////////////////////////////////////////////////////////// //// //// //// FFT/IFFT 128 points transform //// //// //// //// Authors: Anatoliy Sergienko, Volodya Lepeha //// //// Company: Unicore Systems http://unicore.co.ua //// //// //// //// Downloaded from: http://www.opencores.org //// //// //// ///////////////////////////////////////////////////////////////////// //// //// //// Copyright (C) 2006-2010 Unicore Systems LTD //// //// www.unicore.co.ua //// //// o.uzenkov@unicore.co.ua //// //// //// //// This source file may be used and distributed without //// //// restriction provided that this copyright statement is not //// //// removed from the file and that any derivative work contains //// //// the original copyright notice and the associated disclaimer.//// //// //// //// THIS SOFTWARE IS PROVIDED "AS IS" //// //// AND ANY EXPRESSED OR IMPLIED WARRANTIES, //// //// INCLUDING, BUT NOT LIMITED TO, THE IMPLIED //// //// WARRANTIES OF MERCHANTABILITY, NONINFRINGEMENT //// //// AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. //// //// IN NO EVENT SHALL THE UNICORE SYSTEMS OR ITS //// //// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, //// //// INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL //// //// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT //// //// OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, //// //// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) //// //// HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, //// //// WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT //// //// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING //// //// IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, //// //// EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. //// //// //// ///////////////////////////////////////////////////////////////////// //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ // DESCRIPTION : 2-port RAM // FUNCTION: 2-port RAM with 1 port to write and 1 port to read // FILES: RAM2x256C.v - dual ported synchronous RAM, contains: // RAM256.v -single ported synchronous RAM // PROPERTIES: 1) Has the volume of 2x256 complex data // 2) Contains 4 single port RAMs for real and imaginary parts of data in the 2-fold volume // Two halves of RAM are switched on and off in the write mode by the signal ODD // 3) RAM is synchronous one, the read datum is outputted in 2 cycles after the address setting // 4) Can be substituted to any 2-port synchronous RAM for example, // to one RAMB16_S36_S36 in Xilinx FPGAs //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ `timescale 1 ns / 1 ps `include "FFT128_CONFIG.inc" module RAM2x128C ( CLK ,ED ,WE ,ODD ,ADDRW ,ADDRR ,DR ,DI ,DOR ,DOI ); `FFT128paramnb output [nb-1:0] DOR ; wire [nb-1:0] DOR ; output [nb-1:0] DOI ; wire [nb-1:0] DOI ; input CLK ; wire CLK ; input ED ; wire ED ; input WE ; //write enable wire WE ; input ODD ; // RAM part switshing wire ODD ; input [6:0] ADDRW ; wire [6:0] ADDRW ; input [6:0] ADDRR ; wire [6:0] ADDRR ; input [nb-1:0] DR ; wire [nb-1:0] DR ; input [nb-1:0] DI ; wire [nb-1:0] DI ; reg oddd,odd2; always @( posedge CLK) begin //switch which reswiches the RAM parts if (ED) begin oddd<=ODD; odd2<=oddd; end end `ifdef FFT128bufferports1 //One-port RAMs are used wire we0,we1; wire [nb-1:0] dor0,dor1,doi0,doi1; wire [6:0] addr0,addr1; assign addr0 =ODD? ADDRW: ADDRR; //MUXA0 assign addr1 = ~ODD? ADDRW:ADDRR; // MUXA1 assign we0 =ODD? WE: 0; // MUXW0: assign we1 =~ODD? WE: 0; // MUXW1: //1-st half - write when odd=1 read when odd=0 RAM128 #(nb) URAM0(.CLK(CLK),.ED(ED),.WE(we0), .ADDR(addr0),.DI(DR),.DO(dor0)); // RAM128 #(nb) URAM1(.CLK(CLK),.ED(ED),.WE(we0), .ADDR(addr0),.DI(DI),.DO(doi0)); //2-d half RAM128 #(nb) URAM2(.CLK(CLK),.ED(ED),.WE(we1), .ADDR(addr1),.DI(DR),.DO(dor1));// RAM128 #(nb) URAM3(.CLK(CLK),.ED(ED),.WE(we1), .ADDR(addr1),.DI(DI),.DO(doi1)); assign DOR=~odd2? dor0 : dor1; // MUXDR: assign DOI=~odd2? doi0 : doi1; // MUXDI: `else //Two-port RAM is used wire [7:0] addrr2 = {ODD,ADDRR}; wire [7:0] addrw2 = {~ODD,ADDRW}; wire [2*nb-1:0] di= {DR,DI} ; //wire [2*nb-1:0] doi; reg [2*nb-1:0] doi; reg [2*nb-1:0] ram [255:0]; reg [7:0] read_addra; always @(posedge CLK) begin if (ED) begin if (WE) ram[addrw2] <= di; read_addra <= addrr2; doi = ram[read_addra]; end end //assign assign DOR=doi[2*nb-1:nb]; // Real read data assign DOI=doi[nb-1:0]; // Imaginary read data `endif endmodule