Commit 2e147f2 1 parent db9fd9a commit 2e147f2 Copy full SHA for 2e147f2
File tree 2 files changed +0
-26
lines changed
hdl/projects/gimlet/sequencer
2 files changed +0
-26
lines changed Original file line number Diff line number Diff line change @@ -348,31 +348,6 @@ import PowerRail::*;
348
348
349
349
endmodule
350
350
351
- module mkA1PowerDownA0InteractionTest( Empty ) ;
352
-
353
- Bench bench < - mkBench() ;
354
-
355
- mkAutoFSM( seq
356
- dynamicAssert( bench.a1_ok == False , " Expected sequencer in A2" ) ;
357
- dynamicAssert( bench.seq_to_sp3_rsmrst_v3p3_l == 0 , " Expected RSMRST_L asserted" ) ;
358
- bench.power_up() ;
359
- await( bench.a1_ok) ;
360
- bench.a0_busy() ;
361
- dynamicAssert( bench.seq_to_sp3_rsmrst_v3p3_l == 1 , " Expected RSMRST_L de-asserted" ) ;
362
- bench.power_down() ; // Should not actually happen because A0 is busy
363
- delay( 200 ) ;
364
- dynamicAssert( bench.a1_ok == True , " Expected a1_ok to still be asserted since it can't power down" ) ;
365
- dynamicAssert( bench.seq_to_sp3_rsmrst_v3p3_l == 1 , " Expected RSMRST_L still de-asserted" ) ;
366
- bench.a0_idle() ;
367
- delay( 5 ) ;
368
- dynamicAssert( bench.a1_ok == False , " Expected a1_ok to be de-asserted we can now power down" ) ;
369
- dynamicAssert( bench.seq_to_sp3_rsmrst_v3p3_l == 0 , " Expected RSMRST_L asserted" ) ;
370
- dynamicAssert( bench.v3p3_s5.enabled == False , " Expected v3p3_s5_en de-asserted" ) ;
371
- delay( 200 ) ;
372
- endseq ) ;
373
-
374
- endmodule
375
-
376
351
module mkA1MAPOTest( Empty ) ;
377
352
378
353
Bench bench < - mkBench() ;
Original file line number Diff line number Diff line change @@ -93,7 +93,6 @@ bluesim_tests('A1Tests',
93
93
'mkA1PowerUpTest' ,
94
94
'mkA1PowerDownTest' ,
95
95
'mkA1MAPOTest' ,
96
- 'mkA1PowerDownA0InteractionTest' ,
97
96
],
98
97
deps = [
99
98
':A1Block'
You can’t perform that action at this time.
0 commit comments