diff options
Diffstat (limited to 'opencores/sd_interface/model')
-rw-r--r-- | opencores/sd_interface/model/sdModel.v | 99 | ||||
-rw-r--r-- | opencores/sd_interface/model/wb_master_model.v | 176 |
2 files changed, 275 insertions, 0 deletions
diff --git a/opencores/sd_interface/model/sdModel.v b/opencores/sd_interface/model/sdModel.v new file mode 100644 index 000000000..1e202bac1 --- /dev/null +++ b/opencores/sd_interface/model/sdModel.v @@ -0,0 +1,99 @@ +`include "timescale.v"
+
+module sdModel(
+ spiClk,
+ spiDataIn,
+ spiDataOut,
+ spiCS_n
+);
+input spiClk;
+input spiDataIn;
+output spiDataOut;
+reg spiDataOut;
+input spiCS_n;
+
+//local wires and regs
+reg [7:0] rxByte;
+reg [7:0] respByte;
+reg [1:0] smSt;
+reg [7:0] cnt;
+
+`define START 2'b00
+`define WAIT_FF 2'b01
+`define WAIT_FF_FIN 2'b10
+
+initial
+begin
+ smSt = `START;
+end
+
+
+// ------------------------------ txRxByte --------------------------
+task txRxByte;
+input [7:0] txData;
+output [7:0] rxData;
+
+integer i;
+begin
+ spiDataOut <= txData[7];
+ //@(negedge spiCS_n);
+ for (i=0;i<=7;i=i+1) begin
+ @(posedge spiClk);
+ rxData[0] <= spiDataIn;
+ rxData = rxData << 1;
+ @(negedge spiClk);
+ spiDataOut <= txData[6];
+ txData = txData << 1;
+ end
+end
+endtask
+
+
+//response state machine
+always begin
+ case (smSt)
+ `START: begin
+ txRxByte(8'hff, rxByte);
+ if (rxByte == 8'hff) begin
+ smSt <= `WAIT_FF;
+ cnt <= 8'h00;
+ end
+ end
+ `WAIT_FF: begin
+ txRxByte(8'hff, rxByte);
+ if (rxByte == 8'hff) begin
+ cnt <= cnt + 1'b1;
+ if (cnt == 8'h04) begin
+ txRxByte(respByte, rxByte);
+ smSt <= `WAIT_FF_FIN;
+ end
+ end
+ else begin
+ smSt <= `START;
+ cnt <= 8'h00;
+ end
+ end
+ `WAIT_FF_FIN: begin
+ txRxByte(8'hff, rxByte);
+ if (rxByte == 8'h04) begin
+ cnt <= cnt + 1'b1;
+ if (cnt == 8'hff) begin
+ txRxByte(respByte, rxByte);
+ smSt <= `START;
+ end
+ end
+ else
+ smSt <= `START;
+ end
+ endcase
+end
+
+// setRespByte
+task setRespByte;
+ input [7:0] dataByte;
+ begin
+ respByte = dataByte;
+ end
+endtask
+
+endmodule
diff --git a/opencores/sd_interface/model/wb_master_model.v b/opencores/sd_interface/model/wb_master_model.v new file mode 100644 index 000000000..3f8b7ee6a --- /dev/null +++ b/opencores/sd_interface/model/wb_master_model.v @@ -0,0 +1,176 @@ +////////////////////////////////////////////////////////////////////// +//// //// +//// wb_master_model.v //// +//// //// +//// This file is part of the SPI IP core project //// +//// http://www.opencores.org/projects/spi/ //// +//// //// +//// Author(s): //// +//// - Simon Srot (simons@opencores.org) //// +//// //// +//// Based on: //// +//// - i2c/bench/verilog/wb_master_model.v //// +//// Copyright (C) 2001 Richard Herveille //// +//// //// +//// All additional information is avaliable in the Readme.txt //// +//// file. //// +//// //// +////////////////////////////////////////////////////////////////////// +//// //// +//// Copyright (C) 2002 Authors //// +//// //// +//// 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 source file is free software; you can redistribute it //// +//// and/or modify it under the terms of the GNU Lesser General //// +//// Public License as published by the Free Software Foundation; //// +//// either version 2.1 of the License, or (at your option) any //// +//// later version. //// +//// //// +//// This source is distributed in the hope that it will be //// +//// useful, but WITHOUT ANY WARRANTY; without even the implied //// +//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR //// +//// PURPOSE. See the GNU Lesser General Public License for more //// +//// details. //// +//// //// +//// You should have received a copy of the GNU Lesser General //// +//// Public License along with this source; if not, download it //// +//// from http://www.opencores.org/lgpl.shtml //// +//// //// +////////////////////////////////////////////////////////////////////// + +`include "timescale.v" + +module wb_master_model(clk, rst, adr, din, dout, cyc, stb, we, sel, ack, err, rty); + + parameter dwidth = 32; + parameter awidth = 32; + + input clk, rst; + output [awidth -1:0] adr; + input [dwidth -1:0] din; + output [dwidth -1:0] dout; + output cyc, stb; + output we; + output [dwidth/8 -1:0] sel; + input ack, err, rty; + + // Internal signals + reg [awidth -1:0] adr; + reg [dwidth -1:0] dout; + reg cyc, stb; + reg we; + reg [dwidth/8 -1:0] sel; + + reg [dwidth -1:0] q; + + // Memory Logic + initial + begin + adr = {awidth{1'bx}}; + dout = {dwidth{1'bx}}; + cyc = 1'b0; + stb = 1'bx; + we = 1'hx; + sel = {dwidth/8{1'bx}}; + #1; + end + + // Wishbone write cycle + task wb_write; + input delay; + integer delay; + + input [awidth -1:0] a; + input [dwidth -1:0] d; + + begin + + // wait initial delay + repeat(delay) @(posedge clk); + + // assert wishbone signal + #1; + adr = a; + dout = d; + cyc = 1'b1; + stb = 1'b1; + we = 1'b1; + sel = {dwidth/8{1'b1}}; + @(posedge clk); + + // wait for acknowledge from slave + while(~ack) @(posedge clk); + + // negate wishbone signals + #1; + cyc = 1'b0; + stb = 1'bx; + adr = {awidth{1'bx}}; + dout = {dwidth{1'bx}}; + we = 1'hx; + sel = {dwidth/8{1'bx}}; + + end + endtask + + // Wishbone read cycle + task wb_read; + input delay; + integer delay; + + input [awidth -1:0] a; + output [dwidth -1:0] d; + + begin + + // wait initial delay + repeat(delay) @(posedge clk); + + // assert wishbone signals + #1; + adr = a; + dout = {dwidth{1'bx}}; + cyc = 1'b1; + stb = 1'b1; + we = 1'b0; + sel = {dwidth/8{1'b1}}; + @(posedge clk); + + // wait for acknowledge from slave + while(~ack) @(posedge clk); + + // negate wishbone signals + #1; + cyc = 1'b0; + stb = 1'bx; + adr = {awidth{1'bx}}; + dout = {dwidth{1'bx}}; + we = 1'hx; + sel = {dwidth/8{1'bx}}; + d = din; + + end + endtask + + // Wishbone compare cycle (read data from location and compare with expected data) + task wb_cmp; + input delay; + integer delay; + + input [awidth -1:0] a; + input [dwidth -1:0] d_exp; + + begin + wb_read (delay, a, q); + + if (d_exp !== q) + $display("Data compare error. Received %h, expected %h at time %t", q, d_exp, $time); + end + endtask + +endmodule + |