blob: 1e202bac183a8c2b9dd63cef387ca50d41393e99 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
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
|