-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
Copy pathjedutil.cpp
8273 lines (6797 loc) · 220 KB
/
jedutil.cpp
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
// license:BSD-3-Clause
// copyright-holders:Aaron Giles
/***************************************************************************
jedutil.c
JEDEC file utilities.
****************************************************************************
Binary file format:
Offset
0 = Total number of fuses (32 bits)
4 = Raw fuse data, packed 8 bits at a time, LSB to MSB
****************************************************************************
Known types:
20-pin devices:
PAL10H8 = QP20 QF0320
PAL12H6 = QP20 QF0320
PAL14H4 = QP20 QF0448
PAL16H2 = QP20 QF0512
PAL16C1 = QP20 QF0512
PAL10L8 = QP20 QF0320
PAL12L6 = QP20 QF0320
PAL14L4 = QP20 QF0448
PAL16L2 = QP20 QF0512
PAL10P8 = QP20 QF0328
PAL12P6 = QP20 QF0390
PAL14P4 = QP20 QF0452
PAL16P2 = QP20 QF0514
PAL16P8 = QP20 QF2056
PAL16RP4 = QP20 QF2056
PAL16RP6 = QP20 QF2056
PAL16RP8 = QP20 QF2056
15S8 = QP20 QF0448
CK2605 = QP20 QF1106
PLS153 = QP20 QF1842
PAL16L8 = QP20 QF2048
PAL16R4 = QP20 QF2048
PAL16R6 = QP20 QF2048
PAL16R8 = QP20 QF2048
PAL16RA8 = QP20 QF2056?
PAL16V8R = QP20 QF2194
PALCE16V8 = QP20 QF2194
GAL16V8A = QP20 QF2194
ATF16V8B = QP20 QF2194
18CV8 = QP20 QF2696
AMPAL18P8 = QP20 QF2600
5C032 = QP20
PLUS16L8 = QP20
PLUS16R4 = QP20
PLUS16R6 = QP20
PLUS16R8 = QP20
EPL10P8 = QP20
EPL12P6 = QP20
EPL14P4 = QP20
EPL16P2 = QP20
EPL16P8 = QP20 QF2072
EPL16RP8 = QP20
EPL16RP6 = QP20
EPL16RP4 = QP20
PAL16A4 = QP20
PAL16X4 = QP20
24-pin devices:
PAL6L16 = QP24 QF0192
PAL8L14 = QP24 QF0224
PAL12H10 = QP24 QF0480
PAL12L10 = QP24 QF0480
PAL14H8 = QP24 QF0560
PAL14L8 = QP24 QF0560
PAL16H6 = QP24 QF0640
PAL16L6 = QP24 QF0640
PAL18H4 = QP24 QF0720
PAL18L4 = QP24 QF0720
PAL20C1 = QP24 QF0640
PAL20L2 = QP24 QF0640
PAL20L8 = QP24 QF2560
PAL20L10 = QP24 QF1600
PAL20R4 = QP24 QF2560
PAL20R6 = QP24 QF2560
PAL20R8 = QP24 QF2560
PAL20RA10 = QP24 QF3210
PAL20X4 = QP24 QF1600
PAL20X8 = QP24 QF1600
PAL20X10 = QP24 QF1600
GAL20V8A = QP24 QF2706
PALCE20V8 = QP24 QF2706
ATF20V10B = QP24 QF2706
GAL22V10 = QP24 QF5892
ATF22V10C = QP24 QF5892 (GAL Mode)
PALCE22V10 = QP24 QF5828
PAL22V10 = QP24 QF5828
ATF22V10C = QP24 QF5828 (PAL Mode)
ATF22V10C = QP24 QF5893 (Power Down Mode)
PLS173 = QP24
GAL6001 = QP24
28-pin devices:
PLS100 = QP28 QF1928 (Tri-State)
82S100 = QP20 QF1928 (Tri-State)
PLS101 = QP20 QF1928 (Open Collector)
82S101 = QP20 QF1928 (Open Collector)
****************************************************************************
Thanks to Charles MacDonald (http://cgfm2.emuviews.com/) for providing
information on how to decode the PLS153/82S153 and CK2605 fuse map.
***************************************************************************/
#include <cstdint>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cctype>
#include <set>
#include <vector>
#include "corestr.h"
#include "ioprocs.h"
#include "jedparse.h"
#include "plaparse.h"
/***************************************************************************
CONSTANTS
***************************************************************************/
#define NO_OUTPUT_ENABLE_FUSE_ROW 0xFFFF
/* Output pin flags */
#define OUTPUT_ACTIVELOW 0x00000001
#define OUTPUT_ACTIVEHIGH 0x00000002
#define OUTPUT_COMBINATORIAL 0x00000004
#define OUTPUT_REGISTERED 0x00000008
#define OUTPUT_FEEDBACK_OUTPUT 0x00000010 /* Feedback state depends on output enable */
#define OUTPUT_FEEDBACK_COMBINATORIAL 0x00000020 /* Feedback state independent of output enable */
#define OUTPUT_FEEDBACK_REGISTERED 0x00000040 /* Feedback state independent of output enable */
#define OUTPUT_FEEDBACK_NONE 0x00000080 /* Feedback not available */
/*
Output Feedback Output
OE -----------|
|
|-\
IN ----------| >----|----< OUT >
|-/ |
|
FEEDBACK ------------|
Output Feedback Combinatorial/Registered
OE ----------------|
|
|-\
IN ----------|----| >----< OUT >
| |-/
|
FEEDBACK ----|
*/
/* Fuse state flag */
#define LOW_FUSE_BLOWN 0x00000001
#define HIGH_FUSE_BLOWN 0x00000002
#define LOWHIGH_FUSE_BLOWN 0x00000004
#define NO_FUSE_BLOWN 0x00000008
/* Symbols */
#define AND_SYMBOL "&"
#define OR_SYMBOL "+"
#define XOR_SYMBOL ":+:"
#define LOW_SYMBOL "/"
#define INPUT_SYMBOL "i"
#define OUTPUT_SYMBOL "o"
#define REGISTERED_FEEDBACK_OUTPUT_SYMBOL "rfo"
#define OUTPUT_FEEDBACK_SYMBOL "of"
#define REGISTERED_FEEDBACK_SYMBOL "rf"
#define COMBINATORIAL_ASSIGNMENT "="
#define REGISTERED_ASSIGNMENT ":="
/***************************************************************************
TYPE DEFINITIONS
***************************************************************************/
typedef int (*command_func_type)(int argc, char *argv[]);
typedef struct _command_entry command_entry;
struct _command_entry
{
const char *command;
command_func_type command_func;
};
/* Pin fuse row configuration */
typedef struct _pin_fuse_rows pin_fuse_rows;
struct _pin_fuse_rows
{
uint16_t pin; /* Pin number */
uint16_t fuserowoutputenable; /* Fuse row for the output enable */
uint16_t fuserowtermstart; /* Fuse row for the first term */
uint16_t fuserowtermend; /* Fuse row for the last term */
};
/* Pin fuse column configuration */
typedef struct _pin_fuse_columns pin_fuse_columns;
struct _pin_fuse_columns
{
uint16_t pin; /* Pin number */
uint16_t lowfusecolumn; /* Column number for low output */
uint16_t highfusecolumn; /* Column number for high output */
};
typedef struct _pal_data pal_data;
typedef void (*print_product_terms_func)(const pal_data* pal, const jed_data* jed);
typedef void (*config_pins_func)(const pal_data* pal, const jed_data* jed);
typedef int (*is_product_term_enabled_func)(const pal_data* pal, const jed_data* jed, uint16_t fuserow);
typedef uint16_t (*get_pin_fuse_state_func)(const pal_data* pal, const jed_data* jed, uint16_t pin, uint16_t fuserow);
struct _pal_data
{
const char *name;
uint32_t numfuses;
const pin_fuse_rows *pinfuserows;
uint16_t pinfuserowscount;
const pin_fuse_columns *pinfusecolumns;
uint16_t pinfusecolumnscount;
print_product_terms_func print_product_terms;
config_pins_func config_pins;
is_product_term_enabled_func is_product_term_enabled;
get_pin_fuse_state_func get_pin_fuse_state;
};
/* Pin output configuration */
typedef struct _pin_output_config pin_output_config;
struct _pin_output_config
{
uint16_t pin;
uint16_t flags;
};
typedef std::vector<const pal_data*> pal_data_vector;
/***************************************************************************
FUNCTION PROTOTYPES
***************************************************************************/
static void print_pal10l8_product_terms(const pal_data* pal, const jed_data* jed);
static void print_pal10h8_product_terms(const pal_data* pal, const jed_data* jed);
static void print_pal12l6_product_terms(const pal_data* pal, const jed_data* jed);
static void print_pal12h6_product_terms(const pal_data* pal, const jed_data* jed);
static void print_pal14l4_product_terms(const pal_data* pal, const jed_data* jed);
static void print_pal14h4_product_terms(const pal_data* pal, const jed_data* jed);
static void print_pal16l2_product_terms(const pal_data* pal, const jed_data* jed);
static void print_pal16h2_product_terms(const pal_data* pal, const jed_data* jed);
static void print_pal16c1_product_terms(const pal_data* pal, const jed_data* jed);
static void print_pal16l8_product_terms(const pal_data* pal, const jed_data* jed);
static void print_pal16r4_product_terms(const pal_data* pal, const jed_data* jed);
static void print_pal16r6_product_terms(const pal_data* pal, const jed_data* jed);
static void print_pal16r8_product_terms(const pal_data* pal, const jed_data* jed);
static void print_gal16v8_product_terms(const pal_data* pal, const jed_data* jed);
static void print_peel18cv8_product_terms(const pal_data* pal, const jed_data* jed);
static void print_ampal18p8_product_terms(const pal_data* pal, const jed_data* jed);
static void print_gal18v10_product_terms(const pal_data* pal, const jed_data* jed);
static void print_pal20l8_product_terms(const pal_data* pal, const jed_data* jed);
static void print_pal20l10_product_terms(const pal_data* pal, const jed_data* jed);
static void print_pal20r4_product_terms(const pal_data* pal, const jed_data* jed);
static void print_pal20r6_product_terms(const pal_data* pal, const jed_data* jed);
static void print_pal20r8_product_terms(const pal_data* pal, const jed_data* jed);
static void print_pal20ra10_product_terms(const pal_data* pal, const jed_data* jed);
static void print_pal20x4_product_terms(const pal_data* pal, const jed_data* jed);
static void print_pal20x8_product_terms(const pal_data* pal, const jed_data* jed);
static void print_pal20x10_product_terms(const pal_data* pal, const jed_data* jed);
static void print_gal20v8_product_terms(const pal_data* pal, const jed_data* jed);
static void print_palce22v10_pal22v10_product_terms(const pal_data* pal, const jed_data* jed);
static void print_gal22v10_product_terms(const pal_data* pal, const jed_data* jed);
static void print_atf22v10_power_down_mode_product_terms(const pal_data* pal, const jed_data* jed);
static void print_82s153_pls153_product_terms(const pal_data* pal, const jed_data* jed);
static void print_ck2605_product_terms(const pal_data* pal, const jed_data* jed);
#if defined(ricoh_pals)
static void print_epl10p8_product_terms(const pal_data* pal, const jed_data* jed);
static void print_epl12p6_product_terms(const pal_data* pal, const jed_data* jed);
static void print_epl14p4_product_terms(const pal_data* pal, const jed_data* jed);
static void print_epl16p2_product_terms(const pal_data* pal, const jed_data* jed);
static void print_epl16p8_product_terms(const pal_data* pal, const jed_data* jed);
static void print_epl16rp8_product_terms(const pal_data* pal, const jed_data* jed);
static void print_epl16rp6_product_terms(const pal_data* pal, const jed_data* jed);
static void print_epl16rp4_product_terms(const pal_data* pal, const jed_data* jed);
#endif
static void print_pal10p8_product_terms(const pal_data* pal, const jed_data* jed);
static void print_pal12p6_product_terms(const pal_data* pal, const jed_data* jed);
static void print_pal14p4_product_terms(const pal_data* pal, const jed_data* jed);
static void print_pal16p2_product_terms(const pal_data* pal, const jed_data* jed);
static void print_pal16p8_product_terms(const pal_data* pal, const jed_data* jed);
static void print_pal16rp4_product_terms(const pal_data* pal, const jed_data* jed);
static void print_pal16rp6_product_terms(const pal_data* pal, const jed_data* jed);
static void print_pal16rp8_product_terms(const pal_data* pal, const jed_data* jed);
static void print_pal6l16_product_terms(const pal_data* pal, const jed_data* jed);
static void print_pal8l14_product_terms(const pal_data* pal, const jed_data* jed);
static void print_pal12h10_product_terms(const pal_data* pal, const jed_data* jed);
static void print_pal12l10_product_terms(const pal_data* pal, const jed_data* jed);
static void print_pal14h8_product_terms(const pal_data* pal, const jed_data* jed);
static void print_pal14l8_product_terms(const pal_data* pal, const jed_data* jed);
static void print_pal16h6_product_terms(const pal_data* pal, const jed_data* jed);
static void print_pal16l6_product_terms(const pal_data* pal, const jed_data* jed);
static void print_pal18h4_product_terms(const pal_data* pal, const jed_data* jed);
static void print_pal18l4_product_terms(const pal_data* pal, const jed_data* jed);
static void print_pal20c1_product_terms(const pal_data* pal, const jed_data* jed);
static void print_pal20l2_product_terms(const pal_data* pal, const jed_data* jed);
static void print_82s100_pls100_product_terms(const pal_data* pal, const jed_data* jed);
static void config_pal10l8_pins(const pal_data* pal, const jed_data* jed);
static void config_pal10h8_pins(const pal_data* pal, const jed_data* jed);
static void config_pal12l6_pins(const pal_data* pal, const jed_data* jed);
static void config_pal12h6_pins(const pal_data* pal, const jed_data* jed);
static void config_pal14l4_pins(const pal_data* pal, const jed_data* jed);
static void config_pal14h4_pins(const pal_data* pal, const jed_data* jed);
static void config_pal16l2_pins(const pal_data* pal, const jed_data* jed);
static void config_pal16h2_pins(const pal_data* pal, const jed_data* jed);
static void config_pal16c1_pins(const pal_data* pal, const jed_data* jed);
static void config_pal16l8_pins(const pal_data* pal, const jed_data* jed);
static void config_pal16r4_pins(const pal_data* pal, const jed_data* jed);
static void config_pal16r6_pins(const pal_data* pal, const jed_data* jed);
static void config_pal16r8_pins(const pal_data* pal, const jed_data* jed);
static void config_gal16v8_pins(const pal_data* pal, const jed_data* jed);
static void config_peel18cv8_pins(const pal_data* pal, const jed_data* jed);
static void config_ampal18p8_pins(const pal_data* pal, const jed_data* jed);
static void config_gal18v10_pins(const pal_data* pal, const jed_data* jed);
static void config_pal20l8_pins(const pal_data* pal, const jed_data* jed);
static void config_pal20l10_pins(const pal_data* pal, const jed_data* jed);
static void config_pal20r4_pins(const pal_data* pal, const jed_data* jed);
static void config_pal20r6_pins(const pal_data* pal, const jed_data* jed);
static void config_pal20r8_pins(const pal_data* pal, const jed_data* jed);
static void config_pal20ra10_pins(const pal_data* pal, const jed_data* jed);
static void config_pal20x4_pins(const pal_data* pal, const jed_data* jed);
static void config_pal20x8_pins(const pal_data* pal, const jed_data* jed);
static void config_pal20x10_pins(const pal_data* pal, const jed_data* jed);
static void config_gal20v8_pins(const pal_data* pal, const jed_data* jed);
static void config_palce22v10_pal22v10_pins(const pal_data* pal, const jed_data* jed);
static void config_gal22v10_pins(const pal_data* pal, const jed_data* jed);
static void config_atf22v10_power_down_mode_pins(const pal_data* pal, const jed_data* jed);
static void config_82s153_pls153_pins(const pal_data* pal, const jed_data* jed);
static void config_ck2605_pins(const pal_data* pal, const jed_data* jed);
#if defined(ricoh_pals)
static void config_epl10p8_pins(const pal_data* pal, const jed_data* jed);
static void config_epl12p6_pins(const pal_data* pal, const jed_data* jed);
static void config_epl14p4_pins(const pal_data* pal, const jed_data* jed);
static void config_epl16p2_pins(const pal_data* pal, const jed_data* jed);
static void config_epl16p8_pins(const pal_data* pal, const jed_data* jed);
static void config_epl16rp8_pins(const pal_data* pal, const jed_data* jed);
static void config_epl16rp6_pins(const pal_data* pal, const jed_data* jed);
static void config_epl16rp4_pins(const pal_data* pal, const jed_data* jed);
#endif
static void config_pal10p8_pins(const pal_data* pal, const jed_data* jed);
static void config_pal12p6_pins(const pal_data* pal, const jed_data* jed);
static void config_pal14p4_pins(const pal_data* pal, const jed_data* jed);
static void config_pal16p2_pins(const pal_data* pal, const jed_data* jed);
static void config_pal16p8_pins(const pal_data* pal, const jed_data* jed);
static void config_pal16rp4_pins(const pal_data* pal, const jed_data* jed);
static void config_pal16rp6_pins(const pal_data* pal, const jed_data* jed);
static void config_pal16rp8_pins(const pal_data* pal, const jed_data* jed);
static void config_pal6l16_pins(const pal_data* pal, const jed_data* jed);
static void config_pal8l14_pins(const pal_data* pal, const jed_data* jed);
static void config_pal12h10_pins(const pal_data* pal, const jed_data* jed);
static void config_pal12l10_pins(const pal_data* pal, const jed_data* jed);
static void config_pal14h8_pins(const pal_data* pal, const jed_data* jed);
static void config_pal14l8_pins(const pal_data* pal, const jed_data* jed);
static void config_pal16h6_pins(const pal_data* pal, const jed_data* jed);
static void config_pal16l6_pins(const pal_data* pal, const jed_data* jed);
static void config_pal18h4_pins(const pal_data* pal, const jed_data* jed);
static void config_pal18l4_pins(const pal_data* pal, const jed_data* jed);
static void config_pal20c1_pins(const pal_data* pal, const jed_data* jed);
static void config_pal20l2_pins(const pal_data* pal, const jed_data* jed);
static void config_82s100_pls100_pins(const pal_data* pal, const jed_data* jed);
static int is_gal16v8_product_term_enabled(const pal_data* pal, const jed_data* jed, uint16_t fuserow);
static int is_gal20v8_product_term_enabled(const pal_data* pal, const jed_data* jed, uint16_t fuserow);
static uint16_t get_peel18cv8_pin_fuse_state(const pal_data* pal, const jed_data* jed, uint16_t pin, uint16_t fuserow);
/***************************************************************************
GLOBAL VARIABLES
***************************************************************************/
static uint8_t *dstbuf;
static size_t dstbuflen;
static uint16_t inputpins[26];
static uint16_t inputpinscount;
static pin_output_config outputpins[26];
static uint16_t outputpinscount;
static pin_fuse_rows pal10l8pinfuserows[] = {
{12, NO_OUTPUT_ENABLE_FUSE_ROW, 280, 300},
{13, NO_OUTPUT_ENABLE_FUSE_ROW, 240, 260},
{14, NO_OUTPUT_ENABLE_FUSE_ROW, 200, 220},
{15, NO_OUTPUT_ENABLE_FUSE_ROW, 160, 180},
{16, NO_OUTPUT_ENABLE_FUSE_ROW, 120, 140},
{17, NO_OUTPUT_ENABLE_FUSE_ROW, 80, 100},
{18, NO_OUTPUT_ENABLE_FUSE_ROW, 40, 60},
{19, NO_OUTPUT_ENABLE_FUSE_ROW, 0, 20}};
static pin_fuse_rows pal10h8pinfuserows[] = {
{12, NO_OUTPUT_ENABLE_FUSE_ROW, 280, 300},
{13, NO_OUTPUT_ENABLE_FUSE_ROW, 240, 260},
{14, NO_OUTPUT_ENABLE_FUSE_ROW, 200, 220},
{15, NO_OUTPUT_ENABLE_FUSE_ROW, 160, 180},
{16, NO_OUTPUT_ENABLE_FUSE_ROW, 120, 140},
{17, NO_OUTPUT_ENABLE_FUSE_ROW, 80, 100},
{18, NO_OUTPUT_ENABLE_FUSE_ROW, 40, 60},
{19, NO_OUTPUT_ENABLE_FUSE_ROW, 0, 20}};
static pin_fuse_rows pal12l6pinfuserows[] = {
{13, NO_OUTPUT_ENABLE_FUSE_ROW, 288, 360},
{14, NO_OUTPUT_ENABLE_FUSE_ROW, 240, 264},
{15, NO_OUTPUT_ENABLE_FUSE_ROW, 192, 216},
{16, NO_OUTPUT_ENABLE_FUSE_ROW, 144, 168},
{17, NO_OUTPUT_ENABLE_FUSE_ROW, 96, 120},
{18, NO_OUTPUT_ENABLE_FUSE_ROW, 0, 72}};
static pin_fuse_rows pal12h6pinfuserows[] = {
{13, NO_OUTPUT_ENABLE_FUSE_ROW, 288, 360},
{14, NO_OUTPUT_ENABLE_FUSE_ROW, 240, 264},
{15, NO_OUTPUT_ENABLE_FUSE_ROW, 192, 216},
{16, NO_OUTPUT_ENABLE_FUSE_ROW, 144, 168},
{17, NO_OUTPUT_ENABLE_FUSE_ROW, 96, 120},
{18, NO_OUTPUT_ENABLE_FUSE_ROW, 0, 72}};
static pin_fuse_rows pal14l4pinfuserows[] = {
{14, NO_OUTPUT_ENABLE_FUSE_ROW, 336, 420},
{15, NO_OUTPUT_ENABLE_FUSE_ROW, 224, 308},
{16, NO_OUTPUT_ENABLE_FUSE_ROW, 112, 196},
{17, NO_OUTPUT_ENABLE_FUSE_ROW, 0, 84}};
static pin_fuse_rows pal14h4pinfuserows[] = {
{14, NO_OUTPUT_ENABLE_FUSE_ROW, 336, 420},
{15, NO_OUTPUT_ENABLE_FUSE_ROW, 224, 308},
{16, NO_OUTPUT_ENABLE_FUSE_ROW, 112, 196},
{17, NO_OUTPUT_ENABLE_FUSE_ROW, 0, 84}};
static pin_fuse_rows pal16l2pinfuserows[] = {
{15, NO_OUTPUT_ENABLE_FUSE_ROW, 256, 480},
{16, NO_OUTPUT_ENABLE_FUSE_ROW, 0, 224}};
static pin_fuse_rows pal16h2pinfuserows[] = {
{15, NO_OUTPUT_ENABLE_FUSE_ROW, 256, 480},
{16, NO_OUTPUT_ENABLE_FUSE_ROW, 0, 224}};
static pin_fuse_rows pal16c1pinfuserows[] = {
{15, NO_OUTPUT_ENABLE_FUSE_ROW, 0, 480},
{16, NO_OUTPUT_ENABLE_FUSE_ROW, 0, 480}};
static pin_fuse_rows pal16l8pinfuserows[] = {
{12, 1792, 1824, 2016},
{13, 1536, 1568, 1760},
{14, 1280, 1312, 1504},
{15, 1024, 1056, 1248},
{16, 768, 800, 992},
{17, 512, 544, 736},
{18, 256, 288, 480},
{19, 0, 32, 224}};
static pin_fuse_rows pal16r4pinfuserows[] = {
{12, 1792, 1824, 2016},
{13, 1536, 1568, 1760},
{14, NO_OUTPUT_ENABLE_FUSE_ROW, 1280, 1504}, /* Registered Output */
{15, NO_OUTPUT_ENABLE_FUSE_ROW, 1024, 1248}, /* Registered Output */
{16, NO_OUTPUT_ENABLE_FUSE_ROW, 768, 992}, /* Registered Output */
{17, NO_OUTPUT_ENABLE_FUSE_ROW, 512, 736}, /* Registered Output */
{18, 256, 288, 480},
{19, 0, 32, 224}};
static pin_fuse_rows pal16r6pinfuserows[] = {
{12, 1792, 1824, 2016},
{13, NO_OUTPUT_ENABLE_FUSE_ROW, 1536, 1760}, /* Registered Output */
{14, NO_OUTPUT_ENABLE_FUSE_ROW, 1280, 1504}, /* Registered Output */
{15, NO_OUTPUT_ENABLE_FUSE_ROW, 1024, 1248}, /* Registered Output */
{16, NO_OUTPUT_ENABLE_FUSE_ROW, 768, 992}, /* Registered Output */
{17, NO_OUTPUT_ENABLE_FUSE_ROW, 512, 736}, /* Registered Output */
{18, NO_OUTPUT_ENABLE_FUSE_ROW, 256, 480}, /* Registered Output */
{19, 0, 32, 224}};
static pin_fuse_rows pal16r8pinfuserows[] = {
{12, NO_OUTPUT_ENABLE_FUSE_ROW, 1792, 2016}, /* Registered Output */
{13, NO_OUTPUT_ENABLE_FUSE_ROW, 1536, 1760}, /* Registered Output */
{14, NO_OUTPUT_ENABLE_FUSE_ROW, 1280, 1504}, /* Registered Output */
{15, NO_OUTPUT_ENABLE_FUSE_ROW, 1024, 1248}, /* Registered Output */
{16, NO_OUTPUT_ENABLE_FUSE_ROW, 768, 992}, /* Registered Output */
{17, NO_OUTPUT_ENABLE_FUSE_ROW, 512, 736}, /* Registered Output */
{18, NO_OUTPUT_ENABLE_FUSE_ROW, 256, 480}, /* Registered Output */
{19, NO_OUTPUT_ENABLE_FUSE_ROW, 0, 224}}; /* Registered Output */
static pin_fuse_rows gal16v8pinfuserows[] = {
{12, 0, 0, 0},
{13, 0, 0, 0},
{14, 0, 0, 0},
{15, 0, 0, 0},
{16, 0, 0, 0},
{17, 0, 0, 0},
{18, 0, 0, 0},
{19, 0, 0, 0}};
static pin_fuse_rows peel18cv8pinfuserows[] = {
{12, 2556, 2016, 2268},
{13, 2520, 1728, 1980},
{14, 2484, 1440, 1692},
{15, 2448, 1152, 1404},
{16, 2412, 864, 1116},
{17, 2376, 576, 828},
{18, 2340, 288, 540},
{19, 2304, 0, 252}};
static pin_fuse_rows ampal18p8pinfuserows[] = {
{12, 2268, 2304, 2556},
{13, 1944, 1980, 2232},
{14, 1620, 1656, 1908},
{15, 1296, 1332, 1584},
{16, 972, 1008, 1260},
{17, 648, 684, 936},
{18, 324, 360, 612},
{19, 0, 36, 288}};
static pin_fuse_rows gal18v10pinfuserows[] = {
{9, 3096, 3132, 3384},
{11, 2772, 2808, 3060},
{12, 2448, 2484, 2736},
{13, 2124, 2160, 2412},
{14, 1728, 1764, 2088},
{15, 1332, 1368, 1692},
{16, 1008, 1044, 1296},
{17, 684, 720, 972},
{18, 360, 396, 648},
{19, 36, 72, 324}};
static pin_fuse_rows pal20l8pinfuserows[] = {
{15, 2240, 2280, 2520},
{16, 1920, 1960, 2200},
{17, 1600, 1640, 1880},
{18, 1280, 1320, 1560},
{19, 960, 1000, 1240},
{20, 640, 680, 920},
{21, 320, 360, 600},
{22, 0, 40, 280}};
static pin_fuse_rows pal20l10pinfuserows[] = {
{14, 1440, 1480, 1560},
{15, 1280, 1320, 1400},
{16, 1120, 1160, 1240},
{17, 960, 1000, 1080},
{18, 800, 840, 920},
{19, 640, 680, 760},
{20, 480, 520, 600},
{21, 320, 360, 440},
{22, 160, 200, 280},
{23, 0, 40, 120}};
static pin_fuse_rows pal20r4pinfuserows[] = {
{15, 2240, 2280, 2520},
{16, 1920, 1960, 2200},
{17, NO_OUTPUT_ENABLE_FUSE_ROW, 1600, 1880}, /* Registered Output */
{18, NO_OUTPUT_ENABLE_FUSE_ROW, 1280, 1560}, /* Registered Output */
{19, NO_OUTPUT_ENABLE_FUSE_ROW, 960, 1240}, /* Registered Output */
{20, NO_OUTPUT_ENABLE_FUSE_ROW, 640, 920}, /* Registered Output */
{21, 320, 360, 600},
{22, 0, 40, 280}};
static pin_fuse_rows pal20r6pinfuserows[] = {
{15, 2240, 2280, 2520},
{16, NO_OUTPUT_ENABLE_FUSE_ROW, 1920, 2200}, /* Registered Output */
{17, NO_OUTPUT_ENABLE_FUSE_ROW, 1600, 1880}, /* Registered Output */
{18, NO_OUTPUT_ENABLE_FUSE_ROW, 1280, 1560}, /* Registered Output */
{19, NO_OUTPUT_ENABLE_FUSE_ROW, 960, 1240}, /* Registered Output */
{20, NO_OUTPUT_ENABLE_FUSE_ROW, 640, 920}, /* Registered Output */
{21, NO_OUTPUT_ENABLE_FUSE_ROW, 320, 600}, /* Registered Output */
{22, 0, 40, 280}};
static pin_fuse_rows pal20r8pinfuserows[] = {
{15, NO_OUTPUT_ENABLE_FUSE_ROW, 2240, 2520}, /* Registered Output */
{16, NO_OUTPUT_ENABLE_FUSE_ROW, 1920, 2200}, /* Registered Output */
{17, NO_OUTPUT_ENABLE_FUSE_ROW, 1600, 1880}, /* Registered Output */
{18, NO_OUTPUT_ENABLE_FUSE_ROW, 1280, 1560}, /* Registered Output */
{19, NO_OUTPUT_ENABLE_FUSE_ROW, 960, 1240}, /* Registered Output */
{20, NO_OUTPUT_ENABLE_FUSE_ROW, 640, 920}, /* Registered Output */
{21, NO_OUTPUT_ENABLE_FUSE_ROW, 320, 600}, /* Registered Output */
{22, NO_OUTPUT_ENABLE_FUSE_ROW, 0, 280}}; /* Registered Output */
static pin_fuse_rows pal20ra10pinfuserows[] = {
{ 14, 0, 0, 0 }, /* Registered Output */
{ 15, 0, 0, 0 }, /* Registered Output */
{ 16, 0, 0, 0 }, /* Registered Output */
{ 17, 0, 0, 0 }, /* Registered Output */
{ 18, 0, 0, 0 }, /* Registered Output */
{ 19, 0, 0, 0 }, /* Registered Output */
{ 20, 0, 0, 0 }, /* Registered Output */
{ 21, 0, 0, 0 }, /* Registered Output */
{ 22, 0, 0, 0 }, /* Registered Output */
{ 23, 0, 0, 0 }}; /* Registered Output */
static pin_fuse_rows pal20x4pinfuserows[] = {
{14, 1440, 1480, 1560},
{15, 1280, 1320, 1400},
{16, 1120, 1160, 1240},
{17, NO_OUTPUT_ENABLE_FUSE_ROW, 960, 1080}, /* Registered Output */
{18, NO_OUTPUT_ENABLE_FUSE_ROW, 800, 920}, /* Registered Output */
{19, NO_OUTPUT_ENABLE_FUSE_ROW, 640, 760}, /* Registered Output */
{20, NO_OUTPUT_ENABLE_FUSE_ROW, 480, 600}, /* Registered Output */
{21, 320, 360, 440},
{22, 160, 200, 280},
{23, 0, 40, 120}};
static pin_fuse_rows pal20x8pinfuserows[] = {
{14, 1440, 1480, 1560},
{15, NO_OUTPUT_ENABLE_FUSE_ROW, 1280, 1400}, /* Registered Output */
{16, NO_OUTPUT_ENABLE_FUSE_ROW, 1120, 1240}, /* Registered Output */
{17, NO_OUTPUT_ENABLE_FUSE_ROW, 960, 1080}, /* Registered Output */
{18, NO_OUTPUT_ENABLE_FUSE_ROW, 800, 920}, /* Registered Output */
{19, NO_OUTPUT_ENABLE_FUSE_ROW, 640, 760}, /* Registered Output */
{20, NO_OUTPUT_ENABLE_FUSE_ROW, 480, 600}, /* Registered Output */
{21, NO_OUTPUT_ENABLE_FUSE_ROW, 320, 440}, /* Registered Output */
{22, NO_OUTPUT_ENABLE_FUSE_ROW, 160, 280}, /* Registered Output */
{23, 0, 40, 120}};
static pin_fuse_rows pal20x10pinfuserows[] = {
{14, NO_OUTPUT_ENABLE_FUSE_ROW, 1440, 1560}, /* Registered Output */
{15, NO_OUTPUT_ENABLE_FUSE_ROW, 1280, 1400}, /* Registered Output */
{16, NO_OUTPUT_ENABLE_FUSE_ROW, 1120, 1240}, /* Registered Output */
{17, NO_OUTPUT_ENABLE_FUSE_ROW, 960, 1080}, /* Registered Output */
{18, NO_OUTPUT_ENABLE_FUSE_ROW, 800, 920}, /* Registered Output */
{19, NO_OUTPUT_ENABLE_FUSE_ROW, 640, 760}, /* Registered Output */
{20, NO_OUTPUT_ENABLE_FUSE_ROW, 480, 600}, /* Registered Output */
{21, NO_OUTPUT_ENABLE_FUSE_ROW, 320, 440}, /* Registered Output */
{22, NO_OUTPUT_ENABLE_FUSE_ROW, 160, 280}, /* Registered Output */
{23, NO_OUTPUT_ENABLE_FUSE_ROW, 0, 120}}; /* Registered Output */
static pin_fuse_rows gal20v8pinfuserows[] = {
{15, 0, 0, 0},
{16, 0, 0, 0},
{17, 0, 0, 0},
{18, 0, 0, 0},
{19, 0, 0, 0},
{20, 0, 0, 0},
{21, 0, 0, 0},
{22, 0, 0, 0}};
static pin_fuse_rows palce22v10_pal22v10pinfuserows[] = {
{14, 5368, 5412, 5720},
{15, 4884, 4928, 5324},
{16, 4312, 4356, 4840},
{17, 3652, 3696, 4268},
{18, 2904, 2948, 3608},
{19, 2156, 2200, 2860},
{20, 1496, 1540, 2112},
{21, 924, 968, 1452},
{22, 440, 484, 880},
{23, 44, 88, 396}};
static pin_fuse_rows gal22v10pinfuserows[] = {
{14, 5368, 5412, 5720},
{15, 4884, 4928, 5324},
{16, 4312, 4356, 4840},
{17, 3652, 3696, 4268},
{18, 2904, 2948, 3608},
{19, 2156, 2200, 2860},
{20, 1496, 1540, 2112},
{21, 924, 968, 1452},
{22, 440, 484, 880},
{23, 44, 88, 396}};
static pin_fuse_rows atf22v10powerdownmodepinfuserows[] = {
{14, 5368, 5412, 5720},
{15, 4884, 4928, 5324},
{16, 4312, 4356, 4840},
{17, 3652, 3696, 4268},
{18, 2904, 2948, 3608},
{19, 2156, 2200, 2860},
{20, 1496, 1540, 2112},
{21, 924, 968, 1452},
{22, 440, 484, 880},
{23, 44, 88, 396}};
static pin_fuse_rows _82s153_pls153pinfuserows[] = {
{9, 1472, 0, 0},
{11, 1508, 0, 0},
{12, 1544, 0, 0},
{13, 1580, 0, 0},
{14, 1616, 0, 0},
{15, 1652, 0, 0},
{16, 1688, 0, 0},
{17, 1724, 0, 0},
{18, 1760, 0, 0},
{19, 1796, 0, 0}};
static pin_fuse_rows ck2605pinfuserows[] = {
{9, 736, 0, 0},
{11, 772, 0, 0},
{12, 808, 0, 0},
{13, 844, 0, 0},
{14, 880, 0, 0},
{15, 916, 0, 0},
{16, 952, 0, 0},
{17, 988, 0, 0},
{18, 1024, 0, 0},
{19, 1060, 0, 0}};
#if defined(ricoh_pals)
static pin_fuse_rows epl10p8pinfuserows[] = {
{12, NO_OUTPUT_ENABLE_FUSE_ROW, 560, 620},
{13, NO_OUTPUT_ENABLE_FUSE_ROW, 480, 540},
{14, NO_OUTPUT_ENABLE_FUSE_ROW, 400, 460},
{15, NO_OUTPUT_ENABLE_FUSE_ROW, 320, 380},
{16, NO_OUTPUT_ENABLE_FUSE_ROW, 240, 300},
{17, NO_OUTPUT_ENABLE_FUSE_ROW, 160, 220},
{18, NO_OUTPUT_ENABLE_FUSE_ROW, 80, 140},
{19, NO_OUTPUT_ENABLE_FUSE_ROW, 0, 60}};
static pin_fuse_rows epl12p6pinfuserows[] = {
{13, NO_OUTPUT_ENABLE_FUSE_ROW, 576, 744},
{14, NO_OUTPUT_ENABLE_FUSE_ROW, 480, 552},
{15, NO_OUTPUT_ENABLE_FUSE_ROW, 384, 456},
{16, NO_OUTPUT_ENABLE_FUSE_ROW, 288, 360},
{17, NO_OUTPUT_ENABLE_FUSE_ROW, 192, 264},
{18, NO_OUTPUT_ENABLE_FUSE_ROW, 0, 168}};
static pin_fuse_rows epl14p4pinfuserows[] = {
{14, NO_OUTPUT_ENABLE_FUSE_ROW, 672, 868},
{15, NO_OUTPUT_ENABLE_FUSE_ROW, 448, 644},
{16, NO_OUTPUT_ENABLE_FUSE_ROW, 224, 420},
{17, NO_OUTPUT_ENABLE_FUSE_ROW, 0, 196}};
static pin_fuse_rows epl16p2pinfuserows[] = {
{15, NO_OUTPUT_ENABLE_FUSE_ROW, 512, 992},
{16, NO_OUTPUT_ENABLE_FUSE_ROW, 0, 480}};
static pin_fuse_rows epl16p8pinfuserows[] = {
{12, 1792, 1824, 2016},
{13, 1536, 1568, 1760},
{14, 1280, 1312, 1504},
{15, 1024, 1056, 1248},
{16, 768, 800, 992},
{17, 512, 544, 736},
{18, 256, 288, 480},
{19, 0, 32, 224}};
static pin_fuse_rows epl16rp8pinfuserows[] = {
{12, NO_OUTPUT_ENABLE_FUSE_ROW, 1792, 2016}, /* Registered Output */
{13, NO_OUTPUT_ENABLE_FUSE_ROW, 1536, 1760}, /* Registered Output */
{14, NO_OUTPUT_ENABLE_FUSE_ROW, 1280, 1504}, /* Registered Output */
{15, NO_OUTPUT_ENABLE_FUSE_ROW, 1024, 1248}, /* Registered Output */
{16, NO_OUTPUT_ENABLE_FUSE_ROW, 768, 992}, /* Registered Output */
{17, NO_OUTPUT_ENABLE_FUSE_ROW, 512, 736}, /* Registered Output */
{18, NO_OUTPUT_ENABLE_FUSE_ROW, 256, 480}, /* Registered Output */
{19, NO_OUTPUT_ENABLE_FUSE_ROW, 0, 224}}; /* Registered Output */
static pin_fuse_rows epl16rp6pinfuserows[] = {
{12, 1792, 1824, 2016},
{13, NO_OUTPUT_ENABLE_FUSE_ROW, 1536, 1760}, /* Registered Output */
{14, NO_OUTPUT_ENABLE_FUSE_ROW, 1280, 1504}, /* Registered Output */
{15, NO_OUTPUT_ENABLE_FUSE_ROW, 1024, 1248}, /* Registered Output */
{16, NO_OUTPUT_ENABLE_FUSE_ROW, 768, 992}, /* Registered Output */
{17, NO_OUTPUT_ENABLE_FUSE_ROW, 512, 736}, /* Registered Output */
{18, NO_OUTPUT_ENABLE_FUSE_ROW, 256, 480}, /* Registered Output */
{19, 0, 32, 224}};
static pin_fuse_rows epl16rp4pinfuserows[] = {
{12, 1792, 1824, 2016},
{13, 1536, 1568, 1760},
{14, NO_OUTPUT_ENABLE_FUSE_ROW, 1280, 1504}, /* Registered Output */
{15, NO_OUTPUT_ENABLE_FUSE_ROW, 1024, 1248}, /* Registered Output */
{16, NO_OUTPUT_ENABLE_FUSE_ROW, 768, 992}, /* Registered Output */
{17, NO_OUTPUT_ENABLE_FUSE_ROW, 512, 736}, /* Registered Output */
{18, 256, 288, 480},
{19, 0, 32, 224}};
#endif
static pin_fuse_rows pal10p8pinfuserows[] = {
{12, NO_OUTPUT_ENABLE_FUSE_ROW, 280, 300},
{13, NO_OUTPUT_ENABLE_FUSE_ROW, 240, 260},
{14, NO_OUTPUT_ENABLE_FUSE_ROW, 200, 220},
{15, NO_OUTPUT_ENABLE_FUSE_ROW, 160, 180},
{16, NO_OUTPUT_ENABLE_FUSE_ROW, 120, 140},
{17, NO_OUTPUT_ENABLE_FUSE_ROW, 80, 100},
{18, NO_OUTPUT_ENABLE_FUSE_ROW, 40, 60},
{19, NO_OUTPUT_ENABLE_FUSE_ROW, 0, 20}};
static pin_fuse_rows pal12p6pinfuserows[] = {
{13, NO_OUTPUT_ENABLE_FUSE_ROW, 288, 360},
{14, NO_OUTPUT_ENABLE_FUSE_ROW, 240, 264},
{15, NO_OUTPUT_ENABLE_FUSE_ROW, 192, 216},
{16, NO_OUTPUT_ENABLE_FUSE_ROW, 144, 168},
{17, NO_OUTPUT_ENABLE_FUSE_ROW, 96, 120},
{18, NO_OUTPUT_ENABLE_FUSE_ROW, 0, 72}};
static pin_fuse_rows pal14p4pinfuserows[] = {
{14, NO_OUTPUT_ENABLE_FUSE_ROW, 336, 420},
{15, NO_OUTPUT_ENABLE_FUSE_ROW, 224, 308},
{16, NO_OUTPUT_ENABLE_FUSE_ROW, 112, 196},
{17, NO_OUTPUT_ENABLE_FUSE_ROW, 0, 84}};
static pin_fuse_rows pal16p2pinfuserows[] = {
{15, NO_OUTPUT_ENABLE_FUSE_ROW, 256, 480},
{16, NO_OUTPUT_ENABLE_FUSE_ROW, 0, 224}};
static pin_fuse_rows pal16p8pinfuserows[] = {
{12, 1792, 1824, 2016},
{13, 1536, 1568, 1760},
{14, 1280, 1312, 1504},
{15, 1024, 1056, 1248},
{16, 768, 800, 992},
{17, 512, 544, 736},
{18, 256, 288, 480},
{19, 0, 32, 224}};
static pin_fuse_rows pal16rp4pinfuserows[] = {
{12, 1792, 1824, 2016},
{13, 1536, 1568, 1760},
{14, NO_OUTPUT_ENABLE_FUSE_ROW, 1280, 1504}, /* Registered Output */
{15, NO_OUTPUT_ENABLE_FUSE_ROW, 1024, 1248}, /* Registered Output */
{16, NO_OUTPUT_ENABLE_FUSE_ROW, 768, 992}, /* Registered Output */
{17, NO_OUTPUT_ENABLE_FUSE_ROW, 512, 736}, /* Registered Output */
{18, 256, 288, 480},
{19, 0, 32, 224}};
static pin_fuse_rows pal16rp6pinfuserows[] = {
{12, 1792, 1824, 2016},
{13, NO_OUTPUT_ENABLE_FUSE_ROW, 1536, 1760}, /* Registered Output */
{14, NO_OUTPUT_ENABLE_FUSE_ROW, 1280, 1504}, /* Registered Output */
{15, NO_OUTPUT_ENABLE_FUSE_ROW, 1024, 1248}, /* Registered Output */
{16, NO_OUTPUT_ENABLE_FUSE_ROW, 768, 992}, /* Registered Output */
{17, NO_OUTPUT_ENABLE_FUSE_ROW, 512, 736}, /* Registered Output */
{18, NO_OUTPUT_ENABLE_FUSE_ROW, 256, 480}, /* Registered Output */
{19, 0, 32, 224}};
static pin_fuse_rows pal16rp8pinfuserows[] = {
{12, NO_OUTPUT_ENABLE_FUSE_ROW, 1792, 2016}, /* Registered Output */
{13, NO_OUTPUT_ENABLE_FUSE_ROW, 1536, 1760}, /* Registered Output */
{14, NO_OUTPUT_ENABLE_FUSE_ROW, 1280, 1504}, /* Registered Output */
{15, NO_OUTPUT_ENABLE_FUSE_ROW, 1024, 1248}, /* Registered Output */
{16, NO_OUTPUT_ENABLE_FUSE_ROW, 768, 992}, /* Registered Output */
{17, NO_OUTPUT_ENABLE_FUSE_ROW, 512, 736}, /* Registered Output */
{18, NO_OUTPUT_ENABLE_FUSE_ROW, 256, 480}, /* Registered Output */
{19, NO_OUTPUT_ENABLE_FUSE_ROW, 0, 224}}; /* Registered Output */
static pin_fuse_rows pal6l16pinfuserows[] = {
{1, NO_OUTPUT_ENABLE_FUSE_ROW, 0, 0},
{2, NO_OUTPUT_ENABLE_FUSE_ROW, 24, 24},
{3, NO_OUTPUT_ENABLE_FUSE_ROW, 36, 36},
{10, NO_OUTPUT_ENABLE_FUSE_ROW, 132, 132},
{11, NO_OUTPUT_ENABLE_FUSE_ROW, 168, 168},
{13, NO_OUTPUT_ENABLE_FUSE_ROW, 180, 180},
{14, NO_OUTPUT_ENABLE_FUSE_ROW, 156, 156},
{15, NO_OUTPUT_ENABLE_FUSE_ROW, 144, 144},
{16, NO_OUTPUT_ENABLE_FUSE_ROW, 120, 120},
{17, NO_OUTPUT_ENABLE_FUSE_ROW, 108, 108},
{18, NO_OUTPUT_ENABLE_FUSE_ROW, 96, 96},
{19, NO_OUTPUT_ENABLE_FUSE_ROW, 84, 84},
{20, NO_OUTPUT_ENABLE_FUSE_ROW, 72, 72},
{21, NO_OUTPUT_ENABLE_FUSE_ROW, 60, 60},
{22, NO_OUTPUT_ENABLE_FUSE_ROW, 48, 48},
{23, NO_OUTPUT_ENABLE_FUSE_ROW, 12, 12}};
static pin_fuse_rows pal8l14pinfuserows[] = {
{1, NO_OUTPUT_ENABLE_FUSE_ROW, 0, 0},
{2, NO_OUTPUT_ENABLE_FUSE_ROW, 32, 32},
{11, NO_OUTPUT_ENABLE_FUSE_ROW, 192, 192},
{13, NO_OUTPUT_ENABLE_FUSE_ROW, 208, 208},
{14, NO_OUTPUT_ENABLE_FUSE_ROW, 176, 176},
{15, NO_OUTPUT_ENABLE_FUSE_ROW, 160, 160},
{16, NO_OUTPUT_ENABLE_FUSE_ROW, 144, 144},
{17, NO_OUTPUT_ENABLE_FUSE_ROW, 128, 128},
{18, NO_OUTPUT_ENABLE_FUSE_ROW, 112, 112},
{19, NO_OUTPUT_ENABLE_FUSE_ROW, 96, 96},
{20, NO_OUTPUT_ENABLE_FUSE_ROW, 80, 80},
{21, NO_OUTPUT_ENABLE_FUSE_ROW, 64, 64},
{22, NO_OUTPUT_ENABLE_FUSE_ROW, 48, 48},
{23, NO_OUTPUT_ENABLE_FUSE_ROW, 16, 16}};
static pin_fuse_rows pal12h10pinfuserows[] = {
{14, NO_OUTPUT_ENABLE_FUSE_ROW, 432, 456},
{15, NO_OUTPUT_ENABLE_FUSE_ROW, 384, 408},
{16, NO_OUTPUT_ENABLE_FUSE_ROW, 336, 360},
{17, NO_OUTPUT_ENABLE_FUSE_ROW, 288, 312},
{18, NO_OUTPUT_ENABLE_FUSE_ROW, 240, 264},
{19, NO_OUTPUT_ENABLE_FUSE_ROW, 192, 216},
{20, NO_OUTPUT_ENABLE_FUSE_ROW, 144, 168},
{21, NO_OUTPUT_ENABLE_FUSE_ROW, 96, 120},
{22, NO_OUTPUT_ENABLE_FUSE_ROW, 48, 72},
{23, NO_OUTPUT_ENABLE_FUSE_ROW, 0, 24}};
static pin_fuse_rows pal12l10pinfuserows[] = {
{14, NO_OUTPUT_ENABLE_FUSE_ROW, 432, 456},
{15, NO_OUTPUT_ENABLE_FUSE_ROW, 384, 408},
{16, NO_OUTPUT_ENABLE_FUSE_ROW, 336, 360},
{17, NO_OUTPUT_ENABLE_FUSE_ROW, 288, 312},
{18, NO_OUTPUT_ENABLE_FUSE_ROW, 240, 264},
{19, NO_OUTPUT_ENABLE_FUSE_ROW, 192, 216},
{20, NO_OUTPUT_ENABLE_FUSE_ROW, 144, 168},
{21, NO_OUTPUT_ENABLE_FUSE_ROW, 96, 120},
{22, NO_OUTPUT_ENABLE_FUSE_ROW, 48, 72},
{23, NO_OUTPUT_ENABLE_FUSE_ROW, 0, 24}};
static pin_fuse_rows pal14h8pinfuserows[] = {
{15, NO_OUTPUT_ENABLE_FUSE_ROW, 448, 532},
{16, NO_OUTPUT_ENABLE_FUSE_ROW, 392, 420},
{17, NO_OUTPUT_ENABLE_FUSE_ROW, 336, 364},
{18, NO_OUTPUT_ENABLE_FUSE_ROW, 280, 308},
{19, NO_OUTPUT_ENABLE_FUSE_ROW, 224, 252},
{20, NO_OUTPUT_ENABLE_FUSE_ROW, 168, 196},
{21, NO_OUTPUT_ENABLE_FUSE_ROW, 112, 140},
{22, NO_OUTPUT_ENABLE_FUSE_ROW, 0, 84}};
static pin_fuse_rows pal14l8pinfuserows[] = {
{15, NO_OUTPUT_ENABLE_FUSE_ROW, 448, 532},
{16, NO_OUTPUT_ENABLE_FUSE_ROW, 392, 420},
{17, NO_OUTPUT_ENABLE_FUSE_ROW, 336, 364},
{18, NO_OUTPUT_ENABLE_FUSE_ROW, 280, 308},
{19, NO_OUTPUT_ENABLE_FUSE_ROW, 224, 252},
{20, NO_OUTPUT_ENABLE_FUSE_ROW, 168, 196},
{21, NO_OUTPUT_ENABLE_FUSE_ROW, 112, 140},
{22, NO_OUTPUT_ENABLE_FUSE_ROW, 0, 84}};
static pin_fuse_rows pal16h6pinfuserows[] = {
{16, NO_OUTPUT_ENABLE_FUSE_ROW, 512, 608},
{17, NO_OUTPUT_ENABLE_FUSE_ROW, 384, 480},
{18, NO_OUTPUT_ENABLE_FUSE_ROW, 320, 352},
{19, NO_OUTPUT_ENABLE_FUSE_ROW, 256, 288},
{20, NO_OUTPUT_ENABLE_FUSE_ROW, 128, 224},
{21, NO_OUTPUT_ENABLE_FUSE_ROW, 0, 96}};
static pin_fuse_rows pal16l6pinfuserows[] = {
{16, NO_OUTPUT_ENABLE_FUSE_ROW, 512, 608},
{17, NO_OUTPUT_ENABLE_FUSE_ROW, 384, 480},
{18, NO_OUTPUT_ENABLE_FUSE_ROW, 320, 352},
{19, NO_OUTPUT_ENABLE_FUSE_ROW, 256, 288},
{20, NO_OUTPUT_ENABLE_FUSE_ROW, 128, 224},
{21, NO_OUTPUT_ENABLE_FUSE_ROW, 0, 96}};