Line 74... |
Line 74... |
reg app_req_wr_n ; // 1 -> Read, 0 -> Write
|
reg app_req_wr_n ; // 1 -> Read, 0 -> Write
|
reg [dw-1:0] app_wr_data ; // Write Data
|
reg [dw-1:0] app_wr_data ; // Write Data
|
reg [dw/8-1:0] app_wr_en_n ; // Write Enable, Active Low
|
reg [dw/8-1:0] app_wr_en_n ; // Write Enable, Active Low
|
wire app_rd_valid ; // Read Valid
|
wire app_rd_valid ; // Read Valid
|
wire app_last_rd ; // Last Read Valid
|
wire app_last_rd ; // Last Read Valid
|
|
wire app_last_wr ; // Last Write Valid
|
wire [dw-1:0] app_rd_data ; // Read Data
|
wire [dw-1:0] app_rd_data ; // Read Data
|
|
|
//--------------------------------------------
|
//--------------------------------------------
|
// SDRAM I/F
|
// SDRAM I/F
|
//--------------------------------------------
|
//--------------------------------------------
|
Line 133... |
Line 134... |
|
|
|
|
/* Request from app */
|
/* Request from app */
|
.app_req (app_req ), // Transfer Request
|
.app_req (app_req ), // Transfer Request
|
.app_req_addr (app_req_addr ), // SDRAM Address
|
.app_req_addr (app_req_addr ), // SDRAM Address
|
.app_req_addr_mask (29'h1FFF_FFFF ), // Address mask for queue wrap
|
|
.app_req_len (app_req_len ), // Burst Length (in 16 bit words)
|
.app_req_len (app_req_len ), // Burst Length (in 16 bit words)
|
.app_req_wrap (1'b0 ), // Wrap mode request (xfr_len = 4)
|
.app_req_wrap (1'b0 ), // Wrap mode request (xfr_len = 4)
|
.app_req_wr_n (app_req_wr_n ), // 0 => Write request, 1 => read req
|
.app_req_wr_n (app_req_wr_n ), // 0 => Write request, 1 => read req
|
.app_req_ack (app_req_ack ), // Request has been accepted
|
.app_req_ack (app_req_ack ), // Request has been accepted
|
.sdr_core_busy_n ( ), // OK to arbitrate next request
|
.sdr_core_busy_n ( ), // OK to arbitrate next request
|
|
|
.app_wr_data (app_wr_data ),
|
.app_wr_data (app_wr_data ),
|
.app_wr_en_n (app_wr_en_n ),
|
.app_wr_en_n (app_wr_en_n ),
|
.app_rd_data (app_rd_data ),
|
.app_rd_data (app_rd_data ),
|
.app_last_rd (app_last_rd ),
|
.app_last_rd (app_last_rd ),
|
|
.app_last_wr (app_last_wr ),
|
.app_rd_valid (app_rd_valid ),
|
.app_rd_valid (app_rd_valid ),
|
.app_wr_next_req (app_wr_next_req ),
|
.app_wr_next_req (app_wr_next_req ),
|
.app_req_dma_last (app_req ),
|
.app_req_dma_last (app_req ),
|
|
|
/* Interface to SDRAMs */
|
/* Interface to SDRAMs */
|
Line 268... |
Line 269... |
#1000;
|
#1000;
|
wait(u_dut.sdr_init_done == 1);
|
wait(u_dut.sdr_init_done == 1);
|
|
|
#1000;
|
#1000;
|
|
|
burst_write(32'h4_0000,6'h4);
|
$display("-------------------------------------- ");
|
|
$display(" Case-1: Single Write/Read Case ");
|
|
$display("-------------------------------------- ");
|
|
|
|
burst_write(32'h4_0000,8'h4);
|
#1000;
|
#1000;
|
burst_read();
|
burst_read();
|
|
|
#1000;
|
// Repeat one more time to analysis the
|
burst_write(32'h0040_0000,6'h5);
|
// SDRAM state change for same col/row address
|
#1000;
|
$display("-------------------------------------- ");
|
|
$display(" Case-2: Repeat same transfer once again ");
|
|
$display("----------------------------------------");
|
|
burst_write(32'h4_0000,8'h4);
|
|
burst_read();
|
|
burst_write(32'h0040_0000,8'h5);
|
|
burst_read();
|
|
|
|
$display("----------------------------------------");
|
|
$display(" Case-3 Create a Page Cross Over ");
|
|
$display("----------------------------------------");
|
|
burst_write(32'h4_0FFC,8'h8);
|
|
burst_write(32'h0040_0FF8,8'hF);
|
|
burst_read();
|
|
burst_read();
|
|
|
|
$display("----------------------------------------");
|
|
$display(" Case:4 4 Write & 4 Read ");
|
|
$display("----------------------------------------");
|
|
burst_write(32'h4_0000,8'h4);
|
|
burst_write(32'h5_0000,8'h5);
|
|
burst_write(32'h6_0000,8'h6);
|
|
burst_write(32'h7_0000,8'h7);
|
|
burst_read();
|
|
burst_read();
|
|
burst_read();
|
burst_read();
|
burst_read();
|
|
|
// 4 Write & 4 Read
|
$display("---------------------------------------");
|
burst_write(32'h4_0000,6'h4);
|
$display(" Case:5 16 Write & 16 Read With Different Bank and Row ");
|
burst_write(32'h5_0000,6'h5);
|
$display("---------------------------------------");
|
burst_write(32'h6_0000,6'h6);
|
//----------------------------------------
|
burst_write(32'h7_0000,6'h7);
|
// Address Decodeing:
|
|
// with cfg_col bit configured as: 00
|
|
// <12 Bit Row> <2 Bit Bank> <8 Bit Column> <2'b00>
|
|
//
|
|
burst_write({12'h000,2'b00,8'h00,2'b00},8'h4); // Row: 0 Bank : 0
|
|
burst_write({12'h000,2'b01,8'h00,2'b00},8'h5); // Row: 0 Bank : 1
|
|
burst_write({12'h000,2'b10,8'h00,2'b00},8'h6); // Row: 0 Bank : 2
|
|
burst_write({12'h000,2'b11,8'h00,2'b00},8'h7); // Row: 0 Bank : 3
|
|
burst_write({12'h001,2'b00,8'h00,2'b00},8'h4); // Row: 1 Bank : 0
|
|
burst_write({12'h001,2'b01,8'h00,2'b00},8'h5); // Row: 1 Bank : 1
|
|
burst_write({12'h001,2'b10,8'h00,2'b00},8'h6); // Row: 1 Bank : 2
|
|
burst_write({12'h001,2'b11,8'h00,2'b00},8'h7); // Row: 1 Bank : 3
|
|
burst_read();
|
|
burst_read();
|
|
burst_read();
|
|
burst_read();
|
burst_read();
|
burst_read();
|
burst_read();
|
burst_read();
|
burst_read();
|
burst_read();
|
burst_read();
|
burst_read();
|
|
|
|
burst_write({12'h002,2'b00,8'h00,2'b00},8'h4); // Row: 2 Bank : 0
|
|
burst_write({12'h002,2'b01,8'h00,2'b00},8'h5); // Row: 2 Bank : 1
|
|
burst_write({12'h002,2'b10,8'h00,2'b00},8'h6); // Row: 2 Bank : 2
|
|
burst_write({12'h002,2'b11,8'h00,2'b00},8'h7); // Row: 2 Bank : 3
|
|
burst_write({12'h003,2'b00,8'h00,2'b00},8'h4); // Row: 3 Bank : 0
|
|
burst_write({12'h003,2'b01,8'h00,2'b00},8'h5); // Row: 3 Bank : 1
|
|
burst_write({12'h003,2'b10,8'h00,2'b00},8'h6); // Row: 3 Bank : 2
|
|
burst_write({12'h003,2'b11,8'h00,2'b00},8'h7); // Row: 3 Bank : 3
|
|
|
// 2 write and 2 read random
|
burst_read();
|
|
burst_read();
|
|
burst_read();
|
|
burst_read();
|
|
burst_read();
|
|
burst_read();
|
|
burst_read();
|
|
burst_read();
|
|
|
|
$display("---------------------------------------------------");
|
|
$display(" Case: 6 Random 2 write and 2 read random");
|
|
$display("---------------------------------------------------");
|
for(k=0; k < 20; k++) begin
|
for(k=0; k < 20; k++) begin
|
StartAddr = $random & 32'h003FFFFF;
|
StartAddr = $random & 32'h003FFFFF;
|
burst_write(StartAddr,($random & 8'h3f)+1);
|
burst_write(StartAddr,($random & 8'h3f)+1);
|
#100;
|
#100;
|
|
|