-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathspi_shift_reg.v
340 lines (320 loc) · 8.25 KB
/
spi_shift_reg.v
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
`include "spi_defines.v"
module spi_shift_reg(rx_negedge,
tx_negedge,
byte_sel,
latch,
len,
p_in,
wb_clk_in,
wb_rst,
go,
miso,
lsb,
sclk,
cpol_0,
cpol_1,
p_out,
last,
mosi,
tip);
input rx_negedge,
tx_negedge,
wb_clk_in,
wb_rst,
go,miso,
lsb,
sclk,
cpol_0,
cpol_1;
input [3:0] byte_sel,latch;
input [`SPI_CHAR_LEN_BITS-1:0] len;
input [31:0] p_in;
output [`SPI_MAX_CHAR-1:0] p_out;
output reg tip,mosi;
output last;
reg [`SPI_CHAR_LEN_BITS:0] char_count;
reg [`SPI_MAX_CHAR-1:0] master_data; // shift register
reg [`SPI_CHAR_LEN_BITS:0] tx_bit_pos; // next bit position
reg [`SPI_CHAR_LEN_BITS:0] rx_bit_pos; // next bit position
wire rx_clk; // rx clock enable
wire tx_clk; // tx clock enable
// Character bit counter...............
always@(posedge wb_clk_in or posedge wb_rst)
begin
if(wb_rst)
begin
char_count <= 0;
end
else
begin
if(tip)
begin
if(cpol_0)
begin
char_count <= char_count - 1;
end
end
else
char_count <= {1'b0,len}; // This stores the character bits other than 128 bits
end
end
// Calculate transfer in progress
always@(posedge wb_clk_in or posedge wb_rst)
begin
if(wb_rst)
begin
tip <= 0;
end
else
begin
if(go && ~tip)
begin
tip <= 1;
end
else if(last && tip && cpol_0)
begin
tip <= 0;
end
end
end
// Calculate last
assign last = ~(|char_count);
// Calculate the serial out
always@(posedge wb_clk_in or posedge wb_rst)
begin
if(wb_rst)
begin
mosi <= 0;
end
else
begin
if(tx_clk)
begin
mosi <= master_data[tx_bit_pos[`SPI_CHAR_LEN_BITS-1:0]];
end
end
end
// Calculate tx_clk,rx_clk
assign tx_clk = ((tx_negedge)?cpol_1 : cpol_0) && !last;
assign rx_clk = ((rx_negedge)?cpol_1 : cpol_0) && (!last || sclk);
// Calculate TX_BIT Position
always@(lsb,len,char_count)
begin
if(lsb)
begin
tx_bit_pos = ({~{|len},len}-char_count);
end
else
begin
tx_bit_pos = char_count-1;
end
end
// Calculate RX_BIT Position based on rx_negedge as miso depends on rx_clk
always@(lsb,len,rx_negedge,char_count)
begin
if(lsb)
begin
if(rx_negedge)
rx_bit_pos = {~(|len),len}-(char_count+1);
else
rx_bit_pos = {~(|len),len}-char_count;
end
else
begin
if(rx_negedge)
begin
rx_bit_pos = char_count;
end
else
begin
rx_bit_pos = char_count-1;
end
end
end
// Calculate p_out
assign p_out = master_data;
// Latching of data
always@(posedge wb_clk_in or posedge wb_rst)
begin
if(wb_rst)
master_data <= {`SPI_MAX_CHAR{1'b0}};
// Recieving bits from the parallel line
`ifdef SPI_MAX_CHAR_128
else if(latch[0] && !tip) // TX0 is selected
begin
if(byte_sel[0])
begin
master_data[7:0] <= p_in[7:0];
end
if(byte_sel[1])
begin
master_data[15:8] <= p_in[15:8];
end
if(byte_sel[2])
begin
master_data[23:16] <= p_in[23:16];
end
if(byte_sel[3])
begin
master_data[31:24] <= p_in[31:24];
end
end
else if(latch[1] && !tip) // TX1 is selected
begin
if(byte_sel[0])
begin
master_data[39:32] <= p_in[7:0];
end
if(byte_sel[1])
begin
master_data[47:40] <= p_in[15:8];
end
if(byte_sel[2])
begin
master_data[55:48] <= p_in[23:16];
end
if(byte_sel[3])
begin
master_data[63:56] <= p_in[31:24];
end
end
else if(latch[2] && !tip) // TX2 is selected
begin
if(byte_sel[0])
begin
master_data[71:64] <= p_in[7:0];
end
if(byte_sel[1])
begin
master_data[79:72] <= p_in[15:8];
end
if(byte_sel[2])
begin
master_data[87:80] <= p_in[23:16];
end
if(byte_sel[3])
begin
master_data[95:88] <= p_in[31:24];
end
end
else if(latch[3] && !tip) // TX3 is selected
begin
if(byte_sel[0])
begin
master_data[103:96] <= p_in[7:0];
end
if(byte_sel[1])
begin
master_data[111:104] <= p_in[15:8];
end
if(byte_sel[2])
begin
master_data[119:112] <= p_in[23:16];
end
if(byte_sel[3])
begin
master_data[127:120] <= p_in[31:24];
end
end
`else
`ifdef SPI_MAX_CHAR_64
else if(latch[0] && !tip) // TX0 is selected
begin
if(byte_sel[0])
begin
master_data[7:0] <= p_in[7:0];
end
if(byte_sel[1])
begin
master_data[15:8] <= p_in[15:8];
end
if(byte_sel[2])
begin
master_data[23:16] <= p_in[23:16];
end
if(byte_sel[3])
begin
master_data[31:24] <= p_in[31:24];
end
end
else if(latch[1] && !tip) // TX1 is selected
begin
if(byte_sel[0])
begin
master_data[39:32] <= p_in[7:0];
end
if(byte_sel[1])
begin
master_data[47:40] <= p_in[15:8];
end
if(byte_sel[2])
begin
master_data[55:48] <= p_in[23:16];
end
if(byte_sel[3])
begin
master_data[63:56] <= p_in[31:24];
end
end
`else
else if(latch[0] && !tip) //TX0 is selected
begin
`ifdef SPI_MAX_CHAR_8
if(byte_sel[0])
begin
master_data[7:0] <= p_in[7:0];
end
`endif
`ifdef SPI_MAX_CHAR_16
if(byte_sel[0])
begin
master_data[7:0] <= p_in[7:0];
end
if(byte_sel[1])
begin
master_data[15:8] <= p_in[15:8];
end
`endif
`ifdef SPI_MAX_CHAR_24
if(byte_sel[0])
begin
master_data[7:0] <= p_in[7:0];
end
if(byte_sel[1])
begin
master_data[15:8] <= p_in[15:8];
end
if(byte_sel[2])
begin
master_data[23:16] <= p_in[23:16];
end
`endif
`ifdef SPI_MAX_CHAR_32
if(byte_sel[0])
begin
master_data[7:0] <= p_in[7:0];
end
if(byte_sel[1])
begin
master_data[15:8] <= p_in[15:8];
end
if(byte_sel[2])
begin
master_data[23:16] <= p_in[23:16];
end
if(byte_sel[3])
begin
master_data[31:24] <= p_in[31:24];
end
`endif
end
`endif
`endif
// Receiving bits from the serial line
else
begin
if(rx_clk)
master_data[rx_bit_pos[`SPI_CHAR_LEN_BITS-1:0]] <= miso;
end
end
endmodule