-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathI2C.scala
executable file
·475 lines (413 loc) · 9.97 KB
/
I2C.scala
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
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
package MySpinalHardware
import spinal.core._
import spinal.lib._
import spinal.lib.fsm._
import spinal.lib.io._
import spinal.core.sim._
class i2cMaster() extends Component {
val io = new Bundle {
val i_addr = in Bits(7 bits)
val i_read = in Bool()
val i_send = in Bool()
val i_end = in Bool()
val i_stop = in Bool()
val i_data = in Bits(8 bits)
val o_data = out Bits(8 bits)
val o_vaild = out Bool()
val o_sent = out Bool()
val o_error = out Bool()
val o_busy = out Bool()
val o_scl_write = out Bool()
val o_sda_write = out Bool()
val i_scl = in Bool()
val i_sda = in Bool()
}
val start = Reg(Bool()) init(False)
val sent1 = Reg(Bool()) init(False)
val error = Reg(Bool()) init(False)
val busy = Reg(Bool()) init(False)
io.o_sent := False
io.o_vaild := False
io.o_error := error
io.o_busy := busy
val addr = Cat(io.i_addr, io.i_read)
val scl_write = Reg(Bool()) init(True)
val sda_write = Reg(Bool()) init(True)
val scl_read = io.i_scl
val sda_read = io.i_sda
io.o_scl_write := scl_write
io.o_sda_write := sda_write
val dataIn = Reg(Bits(8 bits)) init(0)
io.o_data := dataIn
val clkCounter = Counter(4)
val bitCounter = Counter(8)
val revBitCount = 7 - bitCounter.value
val fsm = new StateMachine
{
val Wait: State = new State with EntryPoint
{
whenIsActive{
start := False
sent1 := False
busy := False
sda_write := True
scl_write := True
when(io.i_send){
error := False
busy := True
goto(Start)
}
}
}
val Start: State = new StateDelay(2)
{
whenIsActive{
sda_write := False
}
whenCompleted{
scl_write := False
bitCounter.clear()
clkCounter.clear()
goto(SendAddr)
}
}
val StopStart: State = new State
{
whenIsActive{
busy := False
sent1 := False
sda_write := True
scl_write := !clkCounter(1)
clkCounter.increment()
when(clkCounter === 1)
{
sda_write := False
}
when(clkCounter === 2)
{
bitCounter.clear()
clkCounter.clear()
sda_write := False
busy := True
goto(SendAddr)
}
}
}
val SendAddr: State = new State
{
whenIsActive{
sda_write := addr(revBitCount)
start := True
when(start){
scl_write := !clkCounter(1)
clkCounter.increment()
when(clkCounter === 2)
{
bitCounter.increment()
}
when(bitCounter.willOverflow)
{
goto(GetSlaveACK)
start := False
}
}
}
}
val GetSlaveACK: State = new State
{
whenIsActive{
sda_write := True
when(sent1){
io.o_sent := True
}
clkCounter.increment()
scl_write := !clkCounter(1)
when(clkCounter === 1){
error := sda_read
}
when(clkCounter === 2){
when(error){
goto(Error)
}elsewhen(io.i_end && sent1){
goto(End)
}elsewhen(io.i_stop){
goto(StopStart)
}otherwise{
bitCounter.clear()
when(io.i_read)
{
goto(ReadByte)
}otherwise{
goto(WriteByte)
}
}
}
}
}
val MasterACK: State = new State
{
whenIsActive{
when(io.i_end){
sda_write := True
}otherwise(sda_write := False)
clkCounter.increment()
scl_write := !clkCounter(1)
when(clkCounter === 2){
when(io.i_end){
goto(End)
}otherwise{
goto(ReadByte)
}
}
}
}
val ReadByte: State = new State
{
whenIsActive{
sda_write := True
scl_write := !clkCounter(1)
when(clkCounter === 1){
dataIn := dataIn(6 downto 0) ## sda_read
when(scl_read){
clkCounter.increment()
}
}otherwise{
clkCounter.increment()
}
when(clkCounter === 2)
{
bitCounter.increment()
}
when(bitCounter.willOverflow)
{
io.o_vaild := True
start := False
goto(MasterACK)
}
}
}
val WriteByte: State = new State
{
whenIsActive{
sda_write := io.i_data(revBitCount)
scl_write := !clkCounter(1)
when(clkCounter === 1){
when(scl_read){
clkCounter.increment()
}
}otherwise{
clkCounter.increment()
}
when(clkCounter === 2)
{
bitCounter.increment()
}
when(bitCounter.willOverflow)
{
sent1 := True
start := False
goto(GetSlaveACK)
}
}
}
val Error: State = new State{
whenIsActive{
goto(End)
}
}
val End: State = new State
{
whenIsActive{
clkCounter.increment()
when(clkCounter === 3){
scl_write := False
sda_write := False
}
when(clkCounter === 0){
scl_write := True
}
when(clkCounter === 1){
sda_write := True
goto(Wait)
}
}
}
}
}
class i2cMasterControl() extends Component {
val io = new Bundle {
val i_addr = in Bits(7 bits)
val i_start = in Bool()
val i_readAmount = in Bits(3 bits)
val i_writeAmount = in Bits(3 bits)
val i_stream = slave Stream (Bits(8 bits))
val o_stream = master Stream (Bits(8 bits))
val o_error = out Bool()
val o_busy = out Bool()
val o_scl_write = out Bool()
val o_sda_write = out Bool()
val i_scl = in Bool()
val i_sda = in Bool()
}
val source,sink = Stream(Bits(8 bits))
val InputFiFo = StreamFifo(
dataType = Bits(8 bits),
depth = 16
)
val OutputFiFo = StreamFifo(
dataType = Bits(8 bits),
depth = 16
)
InputFiFo.io.push << io.i_stream
InputFiFo.io.pop >> sink
OutputFiFo.io.push << source
OutputFiFo.io.pop >> io.o_stream
sink.ready := False
val i2c = new i2cMaster()
i2c.io.i_addr := io.i_addr
i2c.io.i_data := sink.payload
i2c.io.i_scl := io.i_scl
i2c.io.i_sda := io.i_sda
io.o_scl_write := i2c.io.o_scl_write
io.o_sda_write := i2c.io.o_sda_write
io.o_error := i2c.io.o_error
i2c.io.i_send := False
i2c.io.i_end := False
i2c.io.i_stop := False
val read = Reg(Bool) init(False)
i2c.io.i_read := read
source.payload := i2c.io.o_data
source.valid := i2c.io.o_vaild
val busy = Reg(Bool) init(False)
io.o_busy := busy
val counter = Counter(16)
val fsm = new StateMachine
{
val Wait: State = new State with EntryPoint
{
whenIsActive{
counter.clear()
busy := False
when(io.i_start)
{
busy := True
when(io.i_writeAmount =/= 0){
goto(Send)
read := False
i2c.io.i_send := True
}otherwise{
goto(Read)
read := True
i2c.io.i_send := True
}
}
}
whenIsInactive{
when(i2c.io.o_error){
}
}
}
val Send: State = new State
{
whenIsActive{
when(i2c.io.o_sent.rise()){
counter.increment()
sink.ready := True
}
when(io.i_writeAmount.asUInt === counter){
when(io.i_readAmount === 0){
i2c.io.i_end := True
when(!i2c.io.o_busy){
goto(Wait)
}
}otherwise{
i2c.io.i_stop := True
read := True
when(!i2c.io.o_busy){
goto(Read)
counter.clear()
}
}
}
}
}
val Read: State = new State
{
whenIsActive{
when(i2c.io.o_vaild && io.i_readAmount.asUInt =/= counter){
counter.increment()
}
when(io.i_readAmount.asUInt === counter){
i2c.io.i_end := True
when(!i2c.io.o_busy){
goto(Wait)
}
}
}
}
}
}
// object I2CSim {
// def main(args: Array[String]) {
// SimConfig.withWave.compile{
// val dut = new i2cMasterControl()
// dut
// }.doSim{dut =>
// //Fork a process to generate the reset and the clock on the dut
// dut.clockDomain.forkStimulus(period = 10)
// var modelState = 0
// var addr = 0x00
// var data = 0x00
// var bitcounter = 0
// var last_scl = true
// var last_sda = true
// // dut.io.i_data #= 0xA5;
// dut.io.i_addr #= 0x1F;
// dut.io.i_stream.payload #= 0x01;
// dut.io.i_writeAmount #= 0x01;
// dut.io.i_readAmount #= 0x02;
// // dut.io.i_read #= false;
// // dut.io.i_end #= false;
// // dut.io.i_stop #= false;
// for(idx <- 0 to 300){
// dut.io.i_start #= false;
// dut.io.i_stream.valid #= false;
// dut.io.io_scl #= true;
// if(idx == 10) dut.io.i_stream.valid #= true;
// if(idx == 20) dut.io.i_start #= true;
// //if(idx >= 149 && idx <= 200) dut.io.io_scl #= false;
// // if(idx == 10) dut.io.i_send #= true; else dut.io.i_send #= false;
// // if(idx > 10 && dut.io.io_scl.toBoolean && !dut.io.io_sda.toBoolean && last_sda && modelState == 0){
// // println("Start!");
// // modelState = 1
// // }else if(idx > 10 && dut.io.io_scl.toBoolean && !last_scl && bitcounter < 8 && modelState == 1){
// // println("Got Addr Bit: ", bitcounter, dut.io.io_sda.toBoolean);
// // }else if(idx > 10 && !dut.io.io_scl.toBoolean && last_scl && bitcounter < 8 && modelState == 1){
// // bitcounter+=1
// // }else if(idx > 10 && bitcounter == 8 && modelState >= 1 && modelState <= 3){
// // if(modelState == 1) modelState = 2;
// // if(!dut.io.io_scl.toBoolean && last_scl && modelState == 3){bitcounter = 0; modelState = 4;}
// // if(dut.io.io_scl.toBoolean && !last_scl && modelState == 2) modelState = 3;
// // dut.io.io_sda #= false
// // }else if(idx > 10 && dut.io.io_scl.toBoolean && !last_scl && bitcounter < 8 && modelState == 4){
// // println("Got Data Bit: ", bitcounter, dut.io.io_sda.toBoolean);
// // }else if(idx > 10 && !dut.io.io_scl.toBoolean && last_scl && bitcounter < 8 && modelState == 4){
// // bitcounter+=1
// // }else if(idx > 10 && bitcounter == 8 && modelState >= 4 && modelState <= 5){
// // if(modelState == 1) modelState = 5;
// // if(!dut.io.io_scl.toBoolean && last_scl && modelState == 6) bitcounter = 0;
// // if(dut.io.io_scl.toBoolean && !last_scl && modelState == 5) modelState = 6;
// // dut.io.io_sda #= false
// // dut.io.i_end #= true
// // }else if(idx > 10 && dut.io.io_scl.toBoolean && dut.io.io_sda.toBoolean && !last_sda){
// // modelState = 0
// // println("End!");
// //}
// last_scl = dut.io.io_scl.toBoolean
// last_sda = dut.io.io_sda.toBoolean
// //Wait a rising edge on the clock
// dut.clockDomain.waitRisingEdge()
// }
// }
// }
// }