forked from andrewpeck/emulator_fw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_impact.log
1086 lines (1084 loc) · 48.4 KB
/
_impact.log
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
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
iMPACT Version: 14.6
iMPACT log file Started on Tue Mar 10 16:55:50 2015
Welcome to iMPACT
iMPACT Version: 14.6
// *** BATCH CMD : setMode -bs
GUI --- Auto connect to cable...
// *** BATCH CMD : setCable -port auto
AutoDetecting cable. Please wait.
*** WARNING ***: When port is set to auto detect mode, cable speed is set todefault 6 MHz regardless of explicit arguments supplied for setting the baudrates
PROGRESS_START - Starting Operation.
Connecting to cable (Usb Port - USB21).
Checking cable driver.
File version of /home/Xilinx/14.6/ISE_DS/ISE/bin/lin64/xusbdfwu.hex = 1030.
File version of /etc/hotplug/usb/xusbdfwu.fw/xusbdfwu.hex = 1030.
Using libusb.
Kernel release = 2.6.32-504.8.1.el6.x86_64.
Max current requested during enumeration is 300 mA.
Type = 0x0005.
write (count, cmdBuffer, dataBuffer) failed 20000020.
Cable Type = 3, Revision = 0.
Setting cable speed to 6 MHz.
Cable connection established.
Firmware version = 2300.
File version of /home/Xilinx/14.6/ISE_DS/ISE/data/xusb_xp2.hex = 2401.
Firmware hex file version = 2401.
Downloading /home/Xilinx/14.6/ISE_DS/ISE/data/xusb_xp2.hex.
Downloaded firmware version = 2401.
PLD file version = 200Dh.
PLD version = 200Dh.
PROGRESS_END - End Operation.
Elapsed time = 0 sec.
Type = 0x0005.
ESN option: 000013C9C45D01.
Attempting to identify devices in the boundary-scan chain configuration...
INFO:iMPACT - Current time: 3/10/15 4:56 PM
// *** BATCH CMD : Identify -inferir
PROGRESS_START - Starting Operation.
Identifying chain contents...'0': : Manufacturer's ID = Xilinx xcf32p, Version : 13
INFO:iMPACT:1777 -
Reading /home/Xilinx/14.6/ISE_DS/ISE/xcfp/data/xcf32p.bsd...
INFO:iMPACT:501 - '1': Added Device xcf32p successfully.
----------------------------------------------------------------------
'1': : Manufacturer's ID = Xilinx xcf32p, Version : 13
INFO:iMPACT:501 - '1': Added Device xcf32p successfully.
----------------------------------------------------------------------
'2': : Manufacturer's ID = Xilinx xc6vlx195t, Version : 2
INFO:iMPACT:1777 -
Reading /home/Xilinx/14.6/ISE_DS/ISE/virtex6/data/xc6vlx195t.bsd...
INFO:iMPACT:501 - '1': Added Device xc6vlx195t successfully.
----------------------------------------------------------------------
done.
PROGRESS_END - End Operation.
Elapsed time = 0 sec.
// *** BATCH CMD : identifyMPM
// *** BATCH CMD : assignFile -p 1 -file"/home/cscdev/20150206/CSC_GEM_Emulator_fw_code/work/CSC_GEM_Emulator.bit"
'1': Loading file'/home/cscdev/20150206/CSC_GEM_Emulator_fw_code/work/CSC_GEM_Emulator.bit' ...
done.
INFO:iMPACT:2257 - Startup Clock has been changed to 'JtagClk' in the bitstream stored in memory,
but the original bitstream file remains unchanged.
UserID read from the bitstream file = 0x15030201.
----------------------------------------------------------------------
INFO:iMPACT:501 - '1': Added Device xc6vlx195t successfully.
----------------------------------------------------------------------
INFO:iMPACT - Current time: 3/10/15 4:59 PM
// *** BATCH CMD : Program -p 1
Maximum TCK operating frequency for this device chain: 15000000.
Validating chain...
Boundary-scan chain validated successfully.
1: Device Temperature: Current Reading: -273.00 C
1: VCCINT Supply: Current Reading: 0.000 V
1: VCCAUX Supply: Current Reading: 0.000 V
'1': Programming device...
PROGRESS_START - Starting Operation.
Match_cycle = NoWait.
Match cycle: NoWait
LCK_cycle = NoWait.
LCK cycle: NoWait
done.
INFO:iMPACT:2219 - Status register values:
INFO:iMPACT - 0011 1111 0011 1110 0000 1011 1100 1000
INFO:iMPACT:579 - '1': Completed downloading bit file to device.
INFO:iMPACT:188 - '1': Programming completed successfully.
Match_cycle = NoWait.
Match cycle: NoWait
LCK_cycle = NoWait.
LCK cycle: NoWait
INFO:iMPACT - '1': Checking done pin....done.
'1': Programmed successfully.
PROGRESS_END - End Operation.
Elapsed time = 22 sec.
INFO:iMPACT - Current time: 3/10/15 4:59 PM
// *** BATCH CMD : ReadIdcode -p 1
Maximum TCK operating frequency for this device chain: 15000000.
Validating chain...
Boundary-scan chain validated successfully.
1: Device Temperature: Current Reading: -273.00 C
1: VCCINT Supply: Current Reading: 0.000 V
1: VCCAUX Supply: Current Reading: 0.000 V
'1': IDCODE is '00100100001001001100000010010011'
'1': IDCODE is '2424c093' (in hex).
'1': : Manufacturer's ID = Xilinx xc6vlx195t, Version : 2
INFO:iMPACT - Current time: 3/10/15 4:59 PM
// *** BATCH CMD : ReadUsercode -p 1
Maximum TCK operating frequency for this device chain: 15000000.
Validating chain...
Boundary-scan chain validated successfully.
1: Device Temperature: Current Reading: -273.00 C
1: VCCINT Supply: Current Reading: 0.000 V
1: VCCAUX Supply: Current Reading: 0.000 V
'1': Usercode is '15030201'
INFO:iMPACT - Current time: 3/10/15 5:08 PM
Updating config file/home/cscdev/20150206/CSC_GEM_Emulator_fw_code/work/CSC_GEM_Emulator.bit...
INFO:iMPACT:2257 - Startup Clock has been changed to 'JtagClk' in the bitstream stored in memory,
but the original bitstream file remains unchanged.
// *** BATCH CMD : ReadUsercode -p 1
ERROR:Cse - A reference voltage has not been detected on the ribbon cable interface to the target system ( pin 2 ). Check that power is applied to the target system and that the ribbon cable is properly seated at both ends. The status LED on Platform Cable USB will be GREEN if target voltage is in the proper range and applied to the correct pin.
// *** BATCH CMD : assignFile -p 1 -file"/home/cscdev/20150206/CSC_GEM_Emulator_fw_code/work/CSC_GEM_Emulator.bit"
'1': Loading file'/home/cscdev/20150206/CSC_GEM_Emulator_fw_code/work/CSC_GEM_Emulator.bit' ...
done.
UserID read from the bitstream file = 0x15031001.
----------------------------------------------------------------------
INFO:iMPACT:501 - '1': Added Device xc6vlx195t successfully.
----------------------------------------------------------------------
INFO:iMPACT - Current time: 3/10/15 5:09 PM
// *** BATCH CMD : Program -p 1
ERROR:Cse - A reference voltage has not been detected on the ribbon cable interface to the target system ( pin 2 ). Check that power is applied to the target system and that the ribbon cable is properly seated at both ends. The status LED on Platform Cable USB will be GREEN if target voltage is in the proper range and applied to the correct pin.
// *** BATCH CMD : assignFile -p 1 -file"/home/cscdev/20150206/CSC_GEM_Emulator_fw_code/work/CSC_GEM_Emulator.bit"
'1': Loading file'/home/cscdev/20150206/CSC_GEM_Emulator_fw_code/work/CSC_GEM_Emulator.bit' ...
done.
UserID read from the bitstream file = 0x15031001.
----------------------------------------------------------------------
INFO:iMPACT:501 - '1': Added Device xc6vlx195t successfully.
----------------------------------------------------------------------
INFO:iMPACT - Current time: 3/10/15 5:09 PM
// *** BATCH CMD : Program -p 1
Maximum TCK operating frequency for this device chain: 15000000.
Validating chain...
Boundary-scan chain validated successfully.
1: Device Temperature: Current Reading: -273.00 C
1: VCCINT Supply: Current Reading: 0.000 V
1: VCCAUX Supply: Current Reading: 0.000 V
PROGRESS_START - Starting Operation.
'1': Programming device...
Match_cycle = NoWait.
Match cycle: NoWait
LCK_cycle = NoWait.
LCK cycle: NoWait
done.
INFO:iMPACT:2219 - Status register values:
INFO:iMPACT - 0011 1111 0011 1110 0000 1011 1100 1000
INFO:iMPACT:579 - '1': Completed downloading bit file to device.
INFO:iMPACT:188 - '1': Programming completed successfully.
Match_cycle = NoWait.
Match cycle: NoWait
LCK_cycle = NoWait.
LCK cycle: NoWait
INFO:iMPACT - '1': Checking done pin....done.
'1': Programmed successfully.
PROGRESS_END - End Operation.
Elapsed time = 22 sec.
// *** BATCH CMD : setMode -bs
// *** BATCH CMD : setMode -ss
// *** BATCH CMD : setMode -sm
// *** BATCH CMD : setMode -hw140
// *** BATCH CMD : setMode -spi
// *** BATCH CMD : setMode -acecf
// *** BATCH CMD : setMode -acempm
// *** BATCH CMD : setMode -pff
// *** BATCH CMD : setMode -bs
// *** BATCH CMD : setMode -ss
// *** BATCH CMD : setMode -sm
// *** BATCH CMD : setMode -hw140
// *** BATCH CMD : setMode -spi
// *** BATCH CMD : setMode -acecf
// *** BATCH CMD : setMode -acempm
// *** BATCH CMD : setMode -pff
Welcome to iMPACT
iMPACT Version: 14.6
// *** BATCH CMD : setMode -bs
GUI --- Auto connect to cable...
// *** BATCH CMD : setCable -port auto
AutoDetecting cable. Please wait.
*** WARNING ***: When port is set to auto detect mode, cable speed is set todefault 6 MHz regardless of explicit arguments supplied for setting the baudrates
PROGRESS_START - Starting Operation.
Connecting to cable (Usb Port - USB21).
Checking cable driver.
File version of /home/Xilinx/14.6/ISE_DS/ISE/bin/lin64/xusbdfwu.hex = 1030.
File version of /etc/hotplug/usb/xusbdfwu.fw/xusbdfwu.hex = 1030.
Using libusb.
Kernel release = 2.6.32-504.8.1.el6.x86_64.
Max current requested during enumeration is 300 mA.
Type = 0x0005.
Cable Type = 3, Revision = 0.
Setting cable speed to 6 MHz.
Cable connection established.
Firmware version = 2401.
File version of /home/Xilinx/14.6/ISE_DS/ISE/data/xusb_xp2.hex = 2401.
Firmware hex file version = 2401.
PLD file version = 200Dh.
PLD version = 200Dh.
PROGRESS_END - End Operation.
Elapsed time = 0 sec.
Type = 0x0005.
ESN option: 000013C9C45D01.
Attempting to identify devices in the boundary-scan chain configuration...
INFO:iMPACT - Current time: 3/11/15 1:28 PM
// *** BATCH CMD : Identify -inferir
PROGRESS_START - Starting Operation.
----------------------------------------------------------------------
Identifying chain contents...'0': : Manufacturer's ID = Xilinx xc6vlx130t, Version : 8
INFO:iMPACT:1777 -
Reading /home/Xilinx/14.6/ISE_DS/ISE/virtex6/data/xc6vlx130t.bsd...
INFO:iMPACT:501 - '1': Added Device xc6vlx130t successfully.
----------------------------------------------------------------------
done.
PROGRESS_END - End Operation.
Elapsed time = 0 sec.
// *** BATCH CMD : identifyMPM
INFO:iMPACT - Current time: 3/11/15 1:28 PM
// *** BATCH CMD : ReadUsercode -p 1
Maximum TCK operating frequency for this device chain: 66000000.
Validating chain...
Boundary-scan chain validated successfully.
1: Device Temperature: Current Reading: 27.24 C, Min. Reading: 26.75 C, Max.Reading: 27.73 C
1: VCCINT Supply: Current Reading: 0.984 V, Min. Reading: 0.981 V, Max.Reading: 0.984 V
1: VCCAUX Supply: Current Reading: 2.505 V, Min. Reading: 2.499 V, Max.Reading: 2.505 V
'1': Usercode is 'ffffffff'
INFO:iMPACT - File /home/cscdev/XilinxProj/GLIB/GLIB_Flash.cfi does not exist.
Selected part: XCF128X
// *** BATCH CMD : attachflash -position 1 -bpi "XCF128X"
// *** BATCH CMD : assignfiletoattachedflash -position 1 -file"/home/cscdev/XilinxProj/GLIB/GLIB_Flash.mcs"
INFO:iMPACT - A CFI file is not detected. To ensure correct and safe configuration,
Please make sure a CFI file is present in the same directory as the PROM file,
or, regenerate the PROM file with the latest software.
INFO:iMPACT - Current time: 3/11/15 1:35 PM
// *** BATCH CMD : Program -p 1 -dataWidth 16 -rs1 NONE -rs0 NONE -bpionly -e-loadfpga
PROGRESS_START - Starting Operation.
Maximum TCK operating frequency for this device chain: 66000000.
Validating chain...
Boundary-scan chain validated successfully.
1: Device Temperature: Current Reading: 27.24 C, Min. Reading: 26.75 C, Max.Reading: 27.73 C
1: VCCINT Supply: Current Reading: 0.984 V, Min. Reading: 0.981 V, Max.Reading: 0.984 V
1: VCCAUX Supply: Current Reading: 2.502 V, Min. Reading: 2.499 V, Max.Reading: 2.505 V
'1': BPI access core not detected. BPI access core will be downloaded to thedevice to enable operations.
INFO:iMPACT - Downloading core file /home/Xilinx/14.6/ISE_DS/ISE/virtex6/data/xc6vlx130t_jbpi.cor.
'1': Downloading core...
Match_cycle = NoWait.
Match cycle: NoWait
LCK_cycle = NoWait.
LCK cycle: NoWait
done.
INFO:iMPACT:2219 - Status register values:
INFO:iMPACT - 0011 1111 0101 1110 0000 1011 1100 1000
INFO:iMPACT:2492 - '1': Completed downloading core to device.
Current cable speed is set to 6.000 Mhz.
Cable speed is default to 3Mhz or lower for BPI operations.
Current cable speed is set to 3.000 Mhz.
Setting Flash Control Pins ...
Setting Configuration Register ...
Populating BPI common flash interface ...
Common Flash Interface Information Query completed successfully.
INFO:iMPACT - Common Flash Interface Information from Device:
INFO:iMPACT - Verification string: 51 52 59
INFO:iMPACT - Manufacturer ID: 49
INFO:iMPACT - Vendor ID: 01
INFO:iMPACT - Device Code: 18
Setting Flash Control Pins ...
Using x16 mode ...
Setting Flash Control Pins ...
Setting Configuration Register ...
'1': Erasing device...
'1': Start address = 0x00000000, End address = 0x002DF7BF.
done.
'1': Erasure completed successfully.
Setting Flash Control Pins ...
Using x16 mode ...
Setting Flash Control Pins ...
Setting Configuration Register ...
INFO:iMPACT - Using Word Programming.
'1': Programming Flash.
done.
Setting Flash Control Pins ...
'1': Flash Programming completed successfully.
Current cable speed is resumed to 6.000 Mhz.
INFO:iMPACT:188 - '1': Programming completed successfully.
Match_cycle = NoWait.
Match cycle: NoWait
LCK_cycle = NoWait.
LCK cycle: NoWait
INFO:iMPACT - '1': Checking done pin....done.
'1': Programmed successfully.
PROGRESS_END - End Operation.
Elapsed time = 243 sec.
INFO:iMPACT - Current time: 3/11/15 1:39 PM
// *** BATCH CMD : ReadUsercode -p 1
Maximum TCK operating frequency for this device chain: 66000000.
Validating chain...
Boundary-scan chain validated successfully.
1: Device Temperature: Current Reading: 30.69 C, Min. Reading: 28.23 C, Max.Reading: 30.69 C
1: VCCINT Supply: Current Reading: 0.973 V, Min. Reading: 0.970 V, Max.Reading: 0.984 V
1: VCCAUX Supply: Current Reading: 2.502 V, Min. Reading: 2.499 V, Max.Reading: 2.505 V
'1': Usercode is 'ffffffff'
INFO:iMPACT - Current time: 3/11/15 1:40 PM
// *** BATCH CMD : ReadUsercode -p 1
Maximum TCK operating frequency for this device chain: 66000000.
Validating chain...
Boundary-scan chain validated successfully.
1: Device Temperature: Current Reading: 30.69 C, Min. Reading: 28.23 C, Max.Reading: 31.18 C
1: VCCINT Supply: Current Reading: 0.973 V, Min. Reading: 0.970 V, Max.Reading: 0.984 V
1: VCCAUX Supply: Current Reading: 2.502 V, Min. Reading: 2.499 V, Max.Reading: 2.505 V
'1': Usercode is 'ffffffff'
Attempting to identify devices in the boundary-scan chain configuration...
INFO:iMPACT - Current time: 3/11/15 3:50 PM
// *** BATCH CMD : Identify -inferir
PROGRESS_START - Starting Operation.
Identifying chain contents...'0': : Manufacturer's ID = Xilinx xcf32p, Version : 13
INFO:iMPACT:1777 -
Reading /home/Xilinx/14.6/ISE_DS/ISE/xcfp/data/xcf32p.bsd...
INFO:iMPACT:501 - '1': Added Device xcf32p successfully.
----------------------------------------------------------------------
'1': : Manufacturer's ID = Xilinx xcf32p, Version : 13
INFO:iMPACT:501 - '1': Added Device xcf32p successfully.
----------------------------------------------------------------------
'2': : Manufacturer's ID = Xilinx xc6vlx195t, Version : 2
INFO:iMPACT:1777 -
Reading /home/Xilinx/14.6/ISE_DS/ISE/virtex6/data/xc6vlx195t.bsd...
INFO:iMPACT:501 - '1': Added Device xc6vlx195t successfully.
----------------------------------------------------------------------
done.
PROGRESS_END - End Operation.
Elapsed time = 0 sec.
// *** BATCH CMD : identifyMPM
// *** BATCH CMD : assignFile -p 1 -file"/home/cscdev/20150206/CSC_GEM_Emulator_fw_code/work/CSC_GEM_Emulator.bit"
'1': Loading file'/home/cscdev/20150206/CSC_GEM_Emulator_fw_code/work/CSC_GEM_Emulator.bit' ...
done.
INFO:iMPACT:2257 - Startup Clock has been changed to 'JtagClk' in the bitstream stored in memory,
but the original bitstream file remains unchanged.
UserID read from the bitstream file = 0x15031101.
----------------------------------------------------------------------
INFO:iMPACT:501 - '1': Added Device xc6vlx195t successfully.
----------------------------------------------------------------------
INFO:iMPACT - Current time: 3/11/15 3:52 PM
// *** BATCH CMD : ReadIdcode -p 1
Maximum TCK operating frequency for this device chain: 15000000.
Validating chain...
Boundary-scan chain validated successfully.
1: Device Temperature: Current Reading: -273.00 C
1: VCCINT Supply: Current Reading: 0.000 V
1: VCCAUX Supply: Current Reading: 0.000 V
'1': IDCODE is '00100100001001001100000010010011'
'1': IDCODE is '2424c093' (in hex).
'1': : Manufacturer's ID = Xilinx xc6vlx195t, Version : 2
INFO:iMPACT - Current time: 3/11/15 3:52 PM
// *** BATCH CMD : ReadUsercode -p 1
Maximum TCK operating frequency for this device chain: 15000000.
Validating chain...
Boundary-scan chain validated successfully.
1: Device Temperature: Current Reading: -273.00 C
1: VCCINT Supply: Current Reading: 0.000 V
1: VCCAUX Supply: Current Reading: 0.000 V
'1': Usercode is '15020401'
INFO:iMPACT - Current time: 3/11/15 3:52 PM
// *** BATCH CMD : Program -p 1
Maximum TCK operating frequency for this device chain: 15000000.
Validating chain...
Boundary-scan chain validated successfully.
1: Device Temperature: Current Reading: -273.00 C
1: VCCINT Supply: Current Reading: 0.000 V
1: VCCAUX Supply: Current Reading: 0.000 V
PROGRESS_START - Starting Operation.
'1': Programming device...
Match_cycle = NoWait.
Match cycle: NoWait
LCK_cycle = NoWait.
LCK cycle: NoWait
done.
INFO:iMPACT:2219 - Status register values:
INFO:iMPACT - 0011 1111 0011 1110 0000 1011 1100 1000
INFO:iMPACT:579 - '1': Completed downloading bit file to device.
INFO:iMPACT:188 - '1': Programming completed successfully.
Match_cycle = NoWait.
Match cycle: NoWait
LCK_cycle = NoWait.
LCK cycle: NoWait
INFO:iMPACT - '1': Checking done pin....done.
'1': Programmed successfully.
PROGRESS_END - End Operation.
Elapsed time = 23 sec.
// *** BATCH CMD : assignFile -p 1 -file"/home/cscdev/20150206/CSC_GEM_Emulator_fw_code/work/CSC_GEM_Emulator_previous.bit"
'1': Loading file'/home/cscdev/20150206/CSC_GEM_Emulator_fw_code/work/CSC_GEM_Emulator_previous.bit' ...
done.
INFO:iMPACT:2257 - Startup Clock has been changed to 'JtagClk' in the bitstream stored in memory,
but the original bitstream file remains unchanged.
UserID read from the bitstream file = 0x15031101.
----------------------------------------------------------------------
INFO:iMPACT:501 - '1': Added Device xc6vlx195t successfully.
----------------------------------------------------------------------
INFO:iMPACT - Current time: 3/11/15 4:40 PM
// *** BATCH CMD : Program -p 1
Maximum TCK operating frequency for this device chain: 15000000.
Validating chain...
Boundary-scan chain validated successfully.
1: Device Temperature: Current Reading: -273.00 C
1: VCCINT Supply: Current Reading: 0.000 V
1: VCCAUX Supply: Current Reading: 0.000 V
PROGRESS_START - Starting Operation.
'1': Programming device...
Match_cycle = NoWait.
Match cycle: NoWait
LCK_cycle = NoWait.
LCK cycle: NoWait
done.
INFO:iMPACT:2219 - Status register values:
INFO:iMPACT - 0011 1111 0011 1110 0000 1011 1100 1000
INFO:iMPACT:579 - '1': Completed downloading bit file to device.
INFO:iMPACT:188 - '1': Programming completed successfully.
Match_cycle = NoWait.
Match cycle: NoWait
LCK_cycle = NoWait.
LCK cycle: NoWait
INFO:iMPACT - '1': Checking done pin....done.
'1': Programmed successfully.
PROGRESS_END - End Operation.
Elapsed time = 22 sec.
// *** BATCH CMD : assignFile -p 1 -file"/home/cscdev/20150206/CSC_GEM_Emulator_fw_code/work/CSC_GEM_Emulator.bit"
'1': Loading file'/home/cscdev/20150206/CSC_GEM_Emulator_fw_code/work/CSC_GEM_Emulator.bit' ...
done.
INFO:iMPACT:2257 - Startup Clock has been changed to 'JtagClk' in the bitstream stored in memory,
but the original bitstream file remains unchanged.
UserID read from the bitstream file = 0x15031102.
----------------------------------------------------------------------
INFO:iMPACT:501 - '1': Added Device xc6vlx195t successfully.
----------------------------------------------------------------------
INFO:iMPACT - Current time: 3/11/15 4:57 PM
// *** BATCH CMD : Program -p 1
Maximum TCK operating frequency for this device chain: 15000000.
Validating chain...
Boundary-scan chain validated successfully.
1: Device Temperature: Current Reading: -273.00 C
1: VCCINT Supply: Current Reading: 0.000 V
1: VCCAUX Supply: Current Reading: 0.000 V
PROGRESS_START - Starting Operation.
'1': Programming device...
Match_cycle = NoWait.
Match cycle: NoWait
LCK_cycle = NoWait.
LCK cycle: NoWait
done.
INFO:iMPACT:2219 - Status register values:
INFO:iMPACT - 0011 1111 0011 1110 0000 1011 1100 1000
INFO:iMPACT:579 - '1': Completed downloading bit file to device.
INFO:iMPACT:188 - '1': Programming completed successfully.
Match_cycle = NoWait.
Match cycle: NoWait
LCK_cycle = NoWait.
LCK cycle: NoWait
INFO:iMPACT - '1': Checking done pin....done.
'1': Programmed successfully.
PROGRESS_END - End Operation.
Elapsed time = 22 sec.
// *** BATCH CMD : assignFile -p 1 -file"/home/cscdev/20150206/CSC_GEM_Emulator_fw_code/work/CSC_GEM_Emulator_previous.bit"
'1': Loading file'/home/cscdev/20150206/CSC_GEM_Emulator_fw_code/work/CSC_GEM_Emulator_previous.bit' ...
done.
INFO:iMPACT:2257 - Startup Clock has been changed to 'JtagClk' in the bitstream stored in memory,
but the original bitstream file remains unchanged.
UserID read from the bitstream file = 0x15031101.
----------------------------------------------------------------------
INFO:iMPACT:501 - '1': Added Device xc6vlx195t successfully.
----------------------------------------------------------------------
INFO:iMPACT - Current time: 3/11/15 5:00 PM
// *** BATCH CMD : Program -p 1
Maximum TCK operating frequency for this device chain: 15000000.
Validating chain...
Boundary-scan chain validated successfully.
1: Device Temperature: Current Reading: -273.00 C
1: VCCINT Supply: Current Reading: 0.000 V
1: VCCAUX Supply: Current Reading: 0.000 V
PROGRESS_START - Starting Operation.
'1': Programming device...
Match_cycle = NoWait.
Match cycle: NoWait
LCK_cycle = NoWait.
LCK cycle: NoWait
done.
INFO:iMPACT:2219 - Status register values:
INFO:iMPACT - 0011 1111 0011 1110 0000 1011 1100 1000
INFO:iMPACT:579 - '1': Completed downloading bit file to device.
INFO:iMPACT:188 - '1': Programming completed successfully.
Match_cycle = NoWait.
Match cycle: NoWait
LCK_cycle = NoWait.
LCK cycle: NoWait
INFO:iMPACT - '1': Checking done pin....done.
'1': Programmed successfully.
PROGRESS_END - End Operation.
Elapsed time = 22 sec.
INFO:iMPACT - Current time: 3/13/15 3:06 PM
// *** BATCH CMD : ReadIdcode -p 1
ERROR:Cse - A reference voltage has not been detected on the ribbon cable interface to the target system ( pin 2 ). Check that power is applied to the target system and that the ribbon cable is properly seated at both ends. The status LED on Platform Cable USB will be GREEN if target voltage is in the proper range and applied to the correct pin.
INFO:iMPACT - Current time: 3/13/15 3:08 PM
// *** BATCH CMD : ReadIdcode -p 1
Maximum TCK operating frequency for this device chain: 15000000.
Validating chain...
Boundary-scan chain validated successfully.
1: Device Temperature: Current Reading: -273.00 C
1: VCCINT Supply: Current Reading: 0.000 V
1: VCCAUX Supply: Current Reading: 0.000 V
'1': IDCODE is '00100100001001001100000010010011'
'1': IDCODE is '2424c093' (in hex).
'1': : Manufacturer's ID = Xilinx xc6vlx195t, Version : 2
// *** BATCH CMD : assignFile -p 1 -file"/home/cscdev/20150206/CSC_GEM_Emulator_fw_code/work/CSC_GEM_Emulator.bit"
'1': Loading file'/home/cscdev/20150206/CSC_GEM_Emulator_fw_code/work/CSC_GEM_Emulator.bit' ...
done.
INFO:iMPACT:2257 - Startup Clock has been changed to 'JtagClk' in the bitstream stored in memory,
but the original bitstream file remains unchanged.
UserID read from the bitstream file = 0x15031102.
----------------------------------------------------------------------
INFO:iMPACT:501 - '1': Added Device xc6vlx195t successfully.
----------------------------------------------------------------------
INFO:iMPACT - Current time: 3/13/15 3:09 PM
// *** BATCH CMD : Program -p 1
Maximum TCK operating frequency for this device chain: 15000000.
Validating chain...
Boundary-scan chain validated successfully.
1: Device Temperature: Current Reading: -273.00 C
1: VCCINT Supply: Current Reading: 0.000 V
1: VCCAUX Supply: Current Reading: 0.000 V
PROGRESS_START - Starting Operation.
'1': Programming device...
Match_cycle = NoWait.
Match cycle: NoWait
LCK_cycle = NoWait.
LCK cycle: NoWait
done.
INFO:iMPACT:2219 - Status register values:
INFO:iMPACT - 0011 1111 0011 1110 0000 1011 1100 1000
INFO:iMPACT:579 - '1': Completed downloading bit file to device.
INFO:iMPACT:188 - '1': Programming completed successfully.
Match_cycle = NoWait.
Match cycle: NoWait
LCK_cycle = NoWait.
LCK cycle: NoWait
INFO:iMPACT - '1': Checking done pin....done.
'1': Programmed successfully.
PROGRESS_END - End Operation.
Elapsed time = 22 sec.
INFO:iMPACT - Current time: 3/13/15 3:37 PM
// *** BATCH CMD : ReadUsercode -p 1
Maximum TCK operating frequency for this device chain: 15000000.
Validating chain...
Boundary-scan chain validated successfully.
1: Device Temperature: Current Reading: -273.00 C
1: VCCINT Supply: Current Reading: 0.000 V
1: VCCAUX Supply: Current Reading: 0.000 V
'1': Usercode is '15031102'
// *** BATCH CMD : assignFile -p 1 -file"/home/cscdev/20150206/CSC_GEM_Emulator_fw_code/work/CSC_GEM_Emulator.bit"
'1': Loading file'/home/cscdev/20150206/CSC_GEM_Emulator_fw_code/work/CSC_GEM_Emulator.bit' ...
done.
UserID read from the bitstream file = 0x15031102.
----------------------------------------------------------------------
INFO:iMPACT:501 - '1': Added Device xc6vlx195t successfully.
----------------------------------------------------------------------
INFO:iMPACT - Current time: 3/13/15 4:30 PM
Updating config file/home/cscdev/20150206/CSC_GEM_Emulator_fw_code/work/CSC_GEM_Emulator.bit...
INFO:iMPACT:2257 - Startup Clock has been changed to 'JtagClk' in the bitstream stored in memory,
but the original bitstream file remains unchanged.
// *** BATCH CMD : Program -p 1
Maximum TCK operating frequency for this device chain: 15000000.
Validating chain...
Boundary-scan chain validated successfully.
1: Device Temperature: Current Reading: -273.00 C
1: VCCINT Supply: Current Reading: 0.000 V
1: VCCAUX Supply: Current Reading: 0.000 V
PROGRESS_START - Starting Operation.
'1': Programming device...
Match_cycle = NoWait.
Match cycle: NoWait
LCK_cycle = NoWait.
LCK cycle: NoWait
done.
INFO:iMPACT:2219 - Status register values:
INFO:iMPACT - 0011 1111 0011 1110 0000 1011 1100 1000
INFO:iMPACT:579 - '1': Completed downloading bit file to device.
INFO:iMPACT:188 - '1': Programming completed successfully.
Match_cycle = NoWait.
Match cycle: NoWait
LCK_cycle = NoWait.
LCK cycle: NoWait
INFO:iMPACT - '1': Checking done pin....done.
'1': Programmed successfully.
PROGRESS_END - End Operation.
Elapsed time = 22 sec.
INFO:iMPACT - Current time: 3/13/15 4:31 PM
// *** BATCH CMD : ReadUsercode -p 1
Maximum TCK operating frequency for this device chain: 15000000.
Validating chain...
Boundary-scan chain validated successfully.
1: Device Temperature: Current Reading: -273.00 C
1: VCCINT Supply: Current Reading: 0.000 V
1: VCCAUX Supply: Current Reading: 0.000 V
'1': Usercode is '15031301'
INFO:iMPACT - Current time: 3/13/15 4:37 PM
// *** BATCH CMD : Program -p 1
Maximum TCK operating frequency for this device chain: 15000000.
Validating chain...
Boundary-scan chain validated successfully.
1: Device Temperature: Current Reading: -273.00 C
1: VCCINT Supply: Current Reading: 0.000 V
1: VCCAUX Supply: Current Reading: 0.000 V
PROGRESS_START - Starting Operation.
'1': Programming device...
Match_cycle = NoWait.
Match cycle: NoWait
LCK_cycle = NoWait.
LCK cycle: NoWait
done.
INFO:iMPACT:2219 - Status register values:
INFO:iMPACT - 0011 1111 0011 1110 0000 1011 1100 1000
INFO:iMPACT:579 - '1': Completed downloading bit file to device.
INFO:iMPACT:188 - '1': Programming completed successfully.
Match_cycle = NoWait.
Match cycle: NoWait
LCK_cycle = NoWait.
LCK cycle: NoWait
INFO:iMPACT - '1': Checking done pin....done.
'1': Programmed successfully.
PROGRESS_END - End Operation.
Elapsed time = 22 sec.
INFO:iMPACT - Current time: 3/16/15 2:28 PM
Updating config file/home/cscdev/20150206/CSC_GEM_Emulator_fw_code/work/CSC_GEM_Emulator.bit...
INFO:iMPACT:2257 - Startup Clock has been changed to 'JtagClk' in the bitstream stored in memory,
but the original bitstream file remains unchanged.
// *** BATCH CMD : ReadUsercode -p 1
Maximum TCK operating frequency for this device chain: 15000000.
Validating chain...
Boundary-scan chain validated successfully.
1: Device Temperature: Current Reading: -273.00 C
1: VCCINT Supply: Current Reading: 0.000 V
1: VCCAUX Supply: Current Reading: 0.000 V
'1': Usercode is '15020401'
INFO:iMPACT - Current time: 3/16/15 2:28 PM
// *** BATCH CMD : Program -p 1
Maximum TCK operating frequency for this device chain: 15000000.
Validating chain...
Boundary-scan chain validated successfully.
1: Device Temperature: Current Reading: -273.00 C
1: VCCINT Supply: Current Reading: 0.000 V
1: VCCAUX Supply: Current Reading: 0.000 V
PROGRESS_START - Starting Operation.
'1': Programming device...
Match_cycle = NoWait.
Match cycle: NoWait
LCK_cycle = NoWait.
LCK cycle: NoWait
done.
INFO:iMPACT:2218 - Error shows in the status register, release done bit is NOT 1.
INFO:iMPACT:2219 - Status register values:
INFO:iMPACT - 0011 0001 0011 1000 0000 0011 1100 1000
PROGRESS_END - End Operation.
Elapsed time = 23 sec.
INFO:iMPACT - Current time: 3/16/15 2:29 PM
// *** BATCH CMD : ReadUsercode -p 1
Maximum TCK operating frequency for this device chain: 15000000.
Validating chain...
Boundary-scan chain validated successfully.
1: Device Temperature: Current Reading: -273.00 C
1: VCCINT Supply: Current Reading: 0.000 V
1: VCCAUX Supply: Current Reading: 0.000 V
'1': Usercode is '15031601'
INFO:iMPACT - Current time: 3/16/15 2:30 PM
// *** BATCH CMD : Program -p 1
Maximum TCK operating frequency for this device chain: 15000000.
Validating chain...
Boundary-scan chain validated successfully.
1: Device Temperature: Current Reading: -273.00 C
1: VCCINT Supply: Current Reading: 0.000 V
1: VCCAUX Supply: Current Reading: 0.000 V
PROGRESS_START - Starting Operation.
'1': Programming device...
Match_cycle = NoWait.
Match cycle: NoWait
LCK_cycle = NoWait.
LCK cycle: NoWait
done.
INFO:iMPACT:2218 - Error shows in the status register, release done bit is NOT 1.
INFO:iMPACT:2219 - Status register values:
INFO:iMPACT - 0011 0001 0011 1000 0000 0011 1100 1000
PROGRESS_END - End Operation.
Elapsed time = 22 sec.
INFO:iMPACT - Current time: 3/16/15 2:32 PM
Updating config file/home/cscdev/20150206/CSC_GEM_Emulator_fw_code/work/CSC_GEM_Emulator.bit...
INFO:iMPACT:2257 - Startup Clock has been changed to 'JtagClk' in the bitstream stored in memory,
but the original bitstream file remains unchanged.
// *** BATCH CMD : ReadUsercode -p 1
Maximum TCK operating frequency for this device chain: 15000000.
Validating chain...
Boundary-scan chain validated successfully.
1: Device Temperature: Current Reading: -273.00 C
1: VCCINT Supply: Current Reading: 0.000 V
1: VCCAUX Supply: Current Reading: 0.000 V
'1': Usercode is '15031601'
INFO:iMPACT - Current time: 3/16/15 2:32 PM
// *** BATCH CMD : Program -p 1
Maximum TCK operating frequency for this device chain: 15000000.
Validating chain...
Boundary-scan chain validated successfully.
1: Device Temperature: Current Reading: -273.00 C
1: VCCINT Supply: Current Reading: 0.000 V
1: VCCAUX Supply: Current Reading: 0.000 V
PROGRESS_START - Starting Operation.
'1': Programming device...
Match_cycle = NoWait.
Match cycle: NoWait
LCK_cycle = NoWait.
LCK cycle: NoWait
done.
INFO:iMPACT:2219 - Status register values:
INFO:iMPACT - 0011 1111 0011 1110 0000 1011 1100 1000
INFO:iMPACT:579 - '1': Completed downloading bit file to device.
INFO:iMPACT:188 - '1': Programming completed successfully.
Match_cycle = NoWait.
Match cycle: NoWait
LCK_cycle = NoWait.
LCK cycle: NoWait
INFO:iMPACT - '1': Checking done pin....done.
'1': Programmed successfully.
PROGRESS_END - End Operation.
Elapsed time = 22 sec.
INFO:iMPACT - Current time: 3/16/15 2:32 PM
// *** BATCH CMD : ReadUsercode -p 1
Maximum TCK operating frequency for this device chain: 15000000.
Validating chain...
Boundary-scan chain validated successfully.
1: Device Temperature: Current Reading: -273.00 C
1: VCCINT Supply: Current Reading: 0.000 V
1: VCCAUX Supply: Current Reading: 0.000 V
'1': Usercode is '15031601'
INFO:iMPACT - Current time: 3/16/15 2:36 PM
// *** BATCH CMD : ReadUsercode -p 2
'2': Putting device in ISP mode...done.
Maximum TCK operating frequency for this device chain: 15000000.
Validating chain...
Boundary-scan chain validated successfully.
1: Device Temperature: Current Reading: -273.00 C
1: VCCINT Supply: Current Reading: 0.000 V
1: VCCAUX Supply: Current Reading: 0.000 V
'2': Putting device in ISP mode...done.
'2': Usercode is '020415c1'
INFO:iMPACT - Current time: 3/16/15 2:36 PM
// *** BATCH CMD : ReadUsercode -p 3
'3': Putting device in ISP mode...done.
Maximum TCK operating frequency for this device chain: 15000000.
Validating chain...
Boundary-scan chain validated successfully.
1: Device Temperature: Current Reading: -273.00 C
1: VCCINT Supply: Current Reading: 0.000 V
1: VCCAUX Supply: Current Reading: 0.000 V
'3': Putting device in ISP mode...done.
'3': Usercode is '020415c0'
// *** BATCH CMD : setMode -pff
// *** BATCH CMD : addConfigDevice -name "EmulatorBoard" -path"/home/cscdev/XilinxProj/CSC_GEM_Emulator_fw_code/work"
// *** BATCH CMD : setSubmode -pffversion
// *** BATCH CMD : setAttribute -configdevice -attr multibootBpiType -value ""
// *** BATCH CMD : addDesign -version 0 -name "0"
// *** BATCH CMD : setAttribute -configdevice -attr compressed -value "FALSE"
// *** BATCH CMD : setAttribute -configdevice -attr autoSize -value "FALSE"
// *** BATCH CMD : setAttribute -configdevice -attr fileFormat -value "mcs"
// *** BATCH CMD : setAttribute -configdevice -attr fillValue -value "FF"
// *** BATCH CMD : setAttribute -configdevice -attr swapBit -value "FALSE"
// *** BATCH CMD : setAttribute -configdevice -attr dir -value "UP"
// *** BATCH CMD : setAttribute -configdevice -attr multiboot -value "FALSE"
// *** BATCH CMD : setAttribute -configdevice -attr spiSelected -value "FALSE"
// *** BATCH CMD : addPromDevice -p 1 -size 0 -name xcf32p
'1': Added Device xcf32p successfully.
----------------------------------------------------------------------
// *** BATCH CMD : addPromDevice -p 2 -size 0 -name xcf32p
'2': Added Device xcf32p successfully.
----------------------------------------------------------------------
// *** BATCH CMD : setMode -pff
// *** BATCH CMD : setSubmode -pffversion
// *** BATCH CMD : setMode -pff
// *** BATCH CMD : addDeviceChain -index 0
// *** BATCH CMD : setMode -pff
// *** BATCH CMD : addDeviceChain -index 0
Override chain at index 0.
Overriding chain at index 0.
// *** BATCH CMD : setMode -pff
// *** BATCH CMD : setSubmode -pffversion
// *** BATCH CMD : setMode -pff
------------------------ GUI: Wizard Data Report ---------------------------
Compression : false
Fill Value : FF
Output Format : mcs
Swap Bits : false
LoadDirection : UP
PROM Basename : EmulatorBoard
File Location : /home/cscdev/XilinxProj/CSC_GEM_Emulator_fw_code/work/
Auto Selcet : false
Number of Revisions : 1
Number of PROMs : 2
PROM Name : xcf32p, PROM Size : 33554432 bits
-------------------------- END of Report ----------------------------
// *** BATCH CMD : setMode -pff
// *** BATCH CMD : addDeviceChain -index 0
Override chain at index 0.
Overriding chain at index 0.
// *** BATCH CMD : setAttribute -design -attr name -value "0000"
StartAddr=100000
// *** BATCH CMD : addPromDevice -p 2 -size 0 -name xcf32p
'2': Added Device xcf32p successfully.
----------------------------------------------------------------------
// *** BATCH CMD : deletePromDevice -position 1
----------------------------------------------------------------------
// *** BATCH CMD : addPromDevice -p 3 -size 0 -name xcf32p
'3': Added Device xcf32p successfully.
----------------------------------------------------------------------
// *** BATCH CMD : deletePromDevice -position 2
----------------------------------------------------------------------
RectHeight =531.000000
SliderPos=0
Clicked=424
RectHeight =1072.000000
SliderPos=535
Clicked=905
// *** BATCH CMD : setMode -bs
// *** BATCH CMD : setMode -pff
// *** BATCH CMD : addDevice -p 1 -file"/home/cscdev/XilinxProj/CSC_GEM_Emulator_fw_code/work/CSC_GEM_Emulator-fast.bit"
'1': Loading file'/home/cscdev/XilinxProj/CSC_GEM_Emulator_fw_code/work/CSC_GEM_Emulator-fast.bit' ...
INFO:iMPACT - Elapsed time = 2 sec.
done.
INFO:iMPACT:501 - '1': Added Device xc6vlx195t successfully.
----------------------------------------------------------------------
Add one device.Revision 0, Design 0000 Device #0 is Selected.
INFO:iMPACT - Current time: 3/16/15 2:43 PM
// *** BATCH CMD : setMode -pff
// *** BATCH CMD : setSubmode -pffversion
Total configuration bit size = 61552736 bits.
Total configuration byte size = 7694092 bytes.
// *** BATCH CMD : generate
0x800000 (8388608) bytes loaded up from 0x0
Using user-specified prom size of 8192K
Writing file"/home/cscdev/XilinxProj/CSC_GEM_Emulator_fw_code/work/EmulatorBoard_0.mcs".
Writing file"/home/cscdev/XilinxProj/CSC_GEM_Emulator_fw_code/work/EmulatorBoard_0.prm".
Writing file"/home/cscdev/XilinxProj/CSC_GEM_Emulator_fw_code/work/EmulatorBoard_0.sig".
Writing file"/home/cscdev/XilinxProj/CSC_GEM_Emulator_fw_code/work/EmulatorBoard_1.mcs".
Writing file"/home/cscdev/XilinxProj/CSC_GEM_Emulator_fw_code/work/EmulatorBoard_1.prm".
Writing file"/home/cscdev/XilinxProj/CSC_GEM_Emulator_fw_code/work/EmulatorBoard_1.sig".
Writing file"/home/cscdev/XilinxProj/CSC_GEM_Emulator_fw_code/work/EmulatorBoard_0.cfi".
Writing file"/home/cscdev/XilinxProj/CSC_GEM_Emulator_fw_code/work/EmulatorBoard_1.cfi".
// *** BATCH CMD : setCurrentDesign -version 0
// *** BATCH CMD : setMode -bs
// *** BATCH CMD : assignFile -p 1 -file"/home/cscdev/XilinxProj/CSC_GEM_Emulator_fw_code/work/CSC_GEM_Emulator-fast.bit"
'1': Loading file'/home/cscdev/XilinxProj/CSC_GEM_Emulator_fw_code/work/CSC_GEM_Emulator-fast.bit' ...
done.
INFO:iMPACT:2257 - Startup Clock has been changed to 'JtagClk' in the bitstream stored in memory,
but the original bitstream file remains unchanged.
UserID read from the bitstream file = 0x15031601.
----------------------------------------------------------------------
INFO:iMPACT:501 - '1': Added Device xc6vlx195t successfully.
----------------------------------------------------------------------
INFO:iMPACT - Current time: 3/16/15 2:43 PM
// *** BATCH CMD : ReadUsercode -p 2
'2': Putting device in ISP mode...done.
Maximum TCK operating frequency for this device chain: 15000000.
Validating chain...
Boundary-scan chain validated successfully.
1: Device Temperature: Current Reading: -273.00 C
1: VCCINT Supply: Current Reading: 0.000 V
1: VCCAUX Supply: Current Reading: 0.000 V
'2': Putting device in ISP mode...done.
'2': Usercode is '020415c1'
// *** BATCH CMD : assignFile -p 2 -file"/home/cscdev/XilinxProj/CSC_GEM_Emulator_fw_code/work/EmulatorBoard_1.mcs"
'2': Loading file'/home/cscdev/XilinxProj/CSC_GEM_Emulator_fw_code/work/EmulatorBoard_1.mcs' ...
WARNING:iMPACT - The file '/home/cscdev/XilinxProj/CSC_GEM_Emulator_fw_code/work/EmulatorBoard_1.mcs' does not appear to be a configuration file.
This file will not configure a Xilinx device in Serial or SelectMap modes and may not be intended for configuration.
If this is a cascaded PROM file, you may ignore this warning and proceed.
done.
INFO:iMPACT:1835 - Loading CFI file /home/cscdev/XilinxProj/CSC_GEM_Emulator_fw_code/work/EmulatorBoard_1.cfi
// *** BATCH CMD : setAttribute -position 2 -attr packageName -value ""
INFO:iMPACT - Current time: 3/16/15 2:43 PM
// *** BATCH CMD : ReadUsercode -p 3
'3': Putting device in ISP mode...done.
Maximum TCK operating frequency for this device chain: 15000000.
Validating chain...
Boundary-scan chain validated successfully.
1: Device Temperature: Current Reading: -273.00 C
1: VCCINT Supply: Current Reading: 0.000 V
1: VCCAUX Supply: Current Reading: 0.000 V
'3': Putting device in ISP mode...done.
'3': Usercode is '020415c0'
// *** BATCH CMD : assignFile -p 3 -file"/home/cscdev/XilinxProj/CSC_GEM_Emulator_fw_code/work/EmulatorBoard_0.mcs"
'3': Loading file'/home/cscdev/XilinxProj/CSC_GEM_Emulator_fw_code/work/EmulatorBoard_0.mcs' ...
done.
INFO:iMPACT:1835 - Loading CFI file /home/cscdev/XilinxProj/CSC_GEM_Emulator_fw_code/work/EmulatorBoard_0.cfi
// *** BATCH CMD : setAttribute -position 3 -attr packageName -value ""
// *** BATCH CMD : setMode -bs
// *** BATCH CMD : setMode -ss
// *** BATCH CMD : setMode -sm
// *** BATCH CMD : setMode -hw140
// *** BATCH CMD : setMode -spi
// *** BATCH CMD : setMode -acecf
// *** BATCH CMD : setMode -acempm
// *** BATCH CMD : setMode -pff
// *** BATCH CMD : setMode -bs
// *** BATCH CMD : saveProjectFile -file"/home/cscdev/XilinxProj/CSC_GEM_Emulator_fw_code/work/EmulatorBoardDownload.ipf"
INFO:iMPACT - Current time: 3/16/15 2:47 PM
// *** BATCH CMD : Program -p 2 -e -parallel -u 150316c1 -ver 0customercode:150316c1cf32 -defaultVersion 0
'2': Putting device in ISP mode...done.
Maximum TCK operating frequency for this device chain: 15000000.
Validating chain...
Boundary-scan chain validated successfully.
1: Device Temperature: Current Reading: -273.00 C
1: VCCINT Supply: Current Reading: 0.000 V
1: VCCAUX Supply: Current Reading: 0.000 V
'2': Erasing device...
'2': Putting device in ISP mode...done.
'2': Putting device in ISP mode...done.
'2': Parallel Mode has been previously programmed in this device,you must firstperform a stand alone erase in order to erase this mode.
'2': Putting device in ISP mode...done.
PROGRESS_START - Starting Operation.
'2': Erasure completed successfully.
'2': Putting device in ISP mode...done.
'2': Putting device in ISP mode...done.
'2': Putting device in ISP mode...done.
'2': Putting device in ISP mode...done.
'2': Putting device in ISP mode...done.
'2': Putting device in ISP mode...done.
'2': Putting device in ISP mode...done.
'2': Programming revision selection to 0.
done.
'2': Putting device in ISP mode...done.
'2': Setting usercode...done.
'2': Putting device in ISP mode...done.
'2': Setting customer code...
done.
'2': Putting device in ISP mode...done.
'2': Putting device in ISP mode...done.
'2': Putting device in ISP mode...done.
'2': Programming completed successfully.
PROGRESS_END - End Operation.
Elapsed time = 150 sec.
INFO:iMPACT - Current time: 3/16/15 2:50 PM
// *** BATCH CMD : ReadUsercode -p 3 -u 150316c0
'3': Putting device in ISP mode...done.
Maximum TCK operating frequency for this device chain: 15000000.
Validating chain...
Boundary-scan chain validated successfully.
1: Device Temperature: Current Reading: -273.00 C
1: VCCINT Supply: Current Reading: 0.000 V
1: VCCAUX Supply: Current Reading: 0.000 V
'3': Putting device in ISP mode...done.
'3': Usercode is '020415c0'
INFO:iMPACT - Current time: 3/16/15 2:50 PM
// *** BATCH CMD : ReadCustomerCode -p 3
'3': Putting device in ISP mode...done.
Maximum TCK operating frequency for this device chain: 15000000.
Validating chain...
Boundary-scan chain validated successfully.
1: Device Temperature: Current Reading: -273.00 C
1: VCCINT Supply: Current Reading: 0.000 V
1: VCCAUX Supply: Current Reading: 0.000 V
'3': Putting device in ISP mode...done.
'3': Putting device in ISP mode...done.
'3': Customer Code of Revision# 0 is'ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff'
INFO:iMPACT - Current time: 3/16/15 2:50 PM
// *** BATCH CMD : ReadUsercode -p 3 -u 150316c0
'3': Putting device in ISP mode...done.
Maximum TCK operating frequency for this device chain: 15000000.
Validating chain...
Boundary-scan chain validated successfully.
1: Device Temperature: Current Reading: -273.00 C
1: VCCINT Supply: Current Reading: 0.000 V
1: VCCAUX Supply: Current Reading: 0.000 V
'3': Putting device in ISP mode...done.
'3': Usercode is '020415c0'
INFO:iMPACT - Current time: 3/16/15 2:50 PM
// *** BATCH CMD : Program -p 3 -e -parallel -u 150316c0 -ver 0customercode:150316c0cf32 -defaultVersion 0
'3': Putting device in ISP mode...done.
Maximum TCK operating frequency for this device chain: 15000000.
Validating chain...
Boundary-scan chain validated successfully.
1: Device Temperature: Current Reading: -273.00 C
1: VCCINT Supply: Current Reading: 0.000 V
1: VCCAUX Supply: Current Reading: 0.000 V
'3': Erasing device...
'3': Putting device in ISP mode...done.
'3': Putting device in ISP mode...done.
'3': Parallel Mode has been previously programmed in this device,you must firstperform a stand alone erase in order to erase this mode.
'3': Putting device in ISP mode...done.
PROGRESS_START - Starting Operation.
'3': Erasure completed successfully.
'3': Putting device in ISP mode...done.
'3': Putting device in ISP mode...done.
'3': Putting device in ISP mode...done.
'3': Putting device in ISP mode...done.
'3': Putting device in ISP mode...done.
'3': Putting device in ISP mode...done.
'3': Putting device in ISP mode...done.