-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathdecode-jtag-idcode.pl
More file actions
executable file
·1976 lines (1741 loc) · 81.9 KB
/
Copy pathdecode-jtag-idcode.pl
File metadata and controls
executable file
·1976 lines (1741 loc) · 81.9 KB
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
#!/usr/bin/perl
=head1 OVERVIEW
decode-jtag-idcode.pl version 1.03
This command-line tool breaks a JTAG IDCODE up into fields as specified in IEEE standard 1149.1.
=head1 USAGE
S<perl decode-jtag-idcode.pl [options] E<lt>0xIDCODE<gt>>
Example:
perl decode-jtag-idcode.pl 0x4ba00477
=head1 OPTIONS
=over
=item *
B<-h, --help>
Print this help text.
=item *
B<--version>
Prints the name and version number.
=item *
B<--license>
Print the license.
=back
=head1 EXIT CODE
Exit code: 0 on success, some other value on error.
=head1 FEEDBACK
Please send feedback to rdiezmail-tools at yahoo.de
=head1 LICENSE
Copyright (C) 2013 R. Diez
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License version 3 as published by
the Free Software Foundation.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License version 3 for more details.
You should have received a copy of the GNU Affero General Public License version 3
along with this program. If not, see L<http://www.gnu.org/licenses/>.
=cut
use strict;
use warnings;
use Getopt::Long;
use Pod::Usage;
use FindBin qw( $Bin $Script );
use constant SCRIPT_VERSION => "1.03"; # If you update it, update also the perldoc text above.
use constant EXIT_CODE_SUCCESS => 0;
use constant EXIT_CODE_FAILURE_ARGS => 1;
use constant EXIT_CODE_FAILURE_ERROR => 2;
use integer; # There is no need to resort to floating point at any time in this script.
# ----------- main routine, the script entry point is at the bottom -----------
sub main ()
{
my $arg_help = 0;
my $arg_h = 0;
my $arg_version = 0;
my $arg_license = 0;
Getopt::Long::Configure( "no_auto_abbrev", "prefix_pattern=(--|-)", "no_ignore_case" );
my $result = GetOptions(
'help' => \$arg_help,
'h' => \$arg_h,
'version' => \$arg_version,
'license' => \$arg_license
);
if ( not $result )
{
# GetOptions has already printed an error message.
return EXIT_CODE_FAILURE_ARGS;
}
if ( $arg_help || $arg_h )
{
write_stdout( "\n" . get_cmdline_help_from_pod( "$Bin/$Script" ) );
return EXIT_CODE_SUCCESS;
}
if ( $arg_version )
{
write_stdout( "decode-jtag-idcode.pl version " . SCRIPT_VERSION . "\n" );
return EXIT_CODE_SUCCESS;
}
if ( $arg_license )
{
write_stdout( get_license_text() );
return EXIT_CODE_SUCCESS;
}
if ( 1 != scalar @ARGV )
{
die "Invalid number of arguments. Run this tool with the --help option for usage information.\n";
}
my $idcodeArg = shift @ARGV;
my $idcodeValue = read_idcode( trim_blanks( $idcodeArg ) );
decode_idcode( $idcodeValue );
return EXIT_CODE_SUCCESS;
}
sub read_idcode ( $ )
{
my $idcodeArg = shift;
my $ret;
eval
{
use constant PREFIX => "0x";
if ( !str_starts_with( $idcodeArg, PREFIX ) )
{
die qq<The IDCODE must start with "@{[ PREFIX ]}".\n>;
}
my $hexPart = substr( $idcodeArg, length(PREFIX) );
if ( length( $hexPart ) == 0 )
{
die qq<Invalid JTAG IDCODE.\n>;
}
use constant MAX_HEX_DIGIT_LEN => 8;
if ( length( $hexPart ) > MAX_HEX_DIGIT_LEN )
{
die qq<The IDCODE is too long. A JTAG IDCODE is a 32-bit number and can have a maximum of @{[ MAX_HEX_DIGIT_LEN ]} hexadecimal digits.\n>;
}
if ( lc( $hexPart ) =~ m/[^0-9a-f]/ )
{
die qq<The IDCODE is not a valid hexadecimal number.\n>;
}
$ret = hex( $hexPart );
};
my $errorMessage = $@;
if ( $errorMessage )
{
die qq<Error reading JTAG IDCODE "$idcodeArg": $errorMessage\n>;
}
return $ret;
}
sub decode_idcode ( $ )
{
my $idcodeValue = shift;
# Convert to a 32-bit number, and then to binary.
my $binaryVal = unpack( "B32", pack( "N", $idcodeValue ) );
if ( 32 != length $binaryVal )
{
die qq<Internal error converting the JTAG IDCODE hexadecimal value to binary.\n>;
}
# write_stdout( $binaryVal . "\n" );
my $version = substr( $binaryVal, 0, 4 );
my $partNumber = substr( $binaryVal, 4, 16 );
my $manufacturer = substr( $binaryVal, 20, 11 );
my $leadingBit = substr( $binaryVal, 31, 1 );
my $versionsSuffix = sprintf( "(0x%X, %u)", oct( "0b$version" ) , oct( "0b$version" ) );
my $partNumberSuffix = sprintf( "(0x%X, %u)", oct( "0b$partNumber" ) , oct( "0b$partNumber" ) );
my $manufacturerSuffix = sprintf( "(0x%X, %u)", oct( "0b$manufacturer" ), oct( "0b$manufacturer" ) );
my $manufacturerName = get_manufacturer_name( $manufacturer );
my $manufacturerSuffix2 = " # Name: $manufacturerName";
write_stdout( sprintf( "Decoding of JTAG IDCODE 0x%08X (%u, 0b%s):\n", $idcodeValue, $idcodeValue, $binaryVal ) );
write_stdout( "Version: 0b$version $versionsSuffix\n" );
write_stdout( "Part number: 0b$partNumber $partNumberSuffix\n" );
write_stdout( "Manufacturer: 0b$manufacturer $manufacturerSuffix$manufacturerSuffix2\n" );
# According to the IEEE standard 1149.1, if this bit is zero, then the device did not have an IDCODE to read.
my $leadingBitSuffix = $leadingBit eq "1" ? "Always set to 1 according to the IEEE standard 1149.1" : "WRONG, should be 1 according to the IEEE standard 1149.1";
write_stdout( "Leading bit: $leadingBit # $leadingBitSuffix\n" );
}
sub get_manufacturer_name ( $ )
{
my $manufacturer = shift;
my %list =
(
# Data copied from this file (under MIT license), which is dated from Oct 10, 2011:
# http://playtag.googlecode.com/svn/trunk/playtag/bsdl/data/manufacturers.txt
# There is a script there in order to extract it from the published PDF document:
# http://playtag.googlecode.com/svn/trunk/tools/bsdl/updatemfg.py
# And then processed with emacs' replace-regexp, in order to turn it into perl syntax as follows:
# \([01]*\)[ ]*\(.*\) -> '\1' => '\2',
'00000000001' => 'AMD',
'00000000010' => 'AMI',
'00000000011' => 'Fairchild',
'00000000100' => 'Fujitsu',
'00000000101' => 'GTE',
'00000000110' => 'Harris',
'00000000111' => 'Hitachi',
'00000001000' => 'Inmos',
'00000001001' => 'Intel',
'00000001010' => 'I.T.T.',
'00000001011' => 'Intersil',
'00000001100' => 'Monolithic Memories',
'00000001101' => 'Mostek',
'00000001110' => 'Freescale (Motorola)',
'00000001111' => 'National',
'00000010000' => 'NEC',
'00000010001' => 'RCA',
'00000010010' => 'Raytheon',
'00000010011' => 'Conexant (Rockwell)',
'00000010100' => 'Seeq',
'00000010101' => 'NXP (Philips)',
'00000010110' => 'Synertek',
'00000010111' => 'Texas Instruments',
'00000011000' => 'Toshiba',
'00000011001' => 'Xicor',
'00000011010' => 'Zilog',
'00000011011' => 'Eurotechnique',
'00000011100' => 'Mitsubishi',
'00000011101' => 'Lucent (AT&T)',
'00000011110' => 'Exel',
'00000011111' => 'Atmel',
'00000100000' => 'SGS/Thomson',
'00000100001' => 'Lattice Semi.',
'00000100010' => 'NCR',
'00000100011' => 'Wafer Scale Integration',
'00000100100' => 'IBM',
'00000100101' => 'Tristar',
'00000100110' => 'Visic',
'00000100111' => 'Intl. CMOS Technology',
'00000101000' => 'SSSI',
'00000101001' => 'MicrochipTechnology',
'00000101010' => 'Ricoh Ltd.',
'00000101011' => 'VLSI',
'00000101100' => 'Micron Technology',
'00000101101' => 'Hynix Semiconductor (Hyundai Electronics)',
'00000101110' => 'OKI Semiconductor',
'00000101111' => 'ACTEL',
'00000110000' => 'Sharp',
'00000110001' => 'Catalyst',
'00000110010' => 'Panasonic',
'00000110011' => 'IDT',
'00000110100' => 'Cypress',
'00000110101' => 'DEC',
'00000110110' => 'LSI Logic',
'00000110111' => 'Zarlink (Plessey)',
'00000111000' => 'UTMC',
'00000111001' => 'Thinking Machine',
'00000111010' => 'Thomson CSF',
'00000111011' => 'Integrated CMOS (Vertex)',
'00000111100' => 'Honeywell',
'00000111101' => 'Tektronix',
'00000111110' => 'Oracle Corporation',
'00000111111' => 'Silicon Storage Technology',
'00001000000' => 'ProMos/Mosel Vitelic',
'00001000001' => 'Infineon (Siemens)',
'00001000010' => 'Macronix',
'00001000011' => 'Xerox',
'00001000100' => 'Plus Logic',
'00001000101' => 'SanDisk Corporation',
'00001000110' => 'Elan Circuit Tech.',
'00001000111' => 'European Silicon Str.',
'00001001000' => 'Apple Computer',
'00001001001' => 'Xilinx',
'00001001010' => 'Compaq',
'00001001011' => 'Protocol Engines',
'00001001100' => 'SCI',
'00001001101' => 'Seiko Instruments',
'00001001110' => 'Samsung',
'00001001111' => 'I3 Design System',
'00001010000' => 'Klic',
'00001010001' => 'Crosspoint Solutions',
'00001010010' => 'Alliance Semiconductor',
'00001010011' => 'Tandem',
'00001010100' => 'Hewlett-Packard',
'00001010101' => 'Integrated Silicon Solutions',
'00001010110' => 'Brooktree',
'00001010111' => 'New Media',
'00001011000' => 'MHS Electronic',
'00001011001' => 'Performance Semi.',
'00001011010' => 'Winbond Electronic',
'00001011011' => 'Kawasaki Steel',
'00001011100' => 'Bright Micro',
'00001011101' => 'TECMAR',
'00001011110' => 'Exar',
'00001011111' => 'PCMCIA',
'00001100000' => 'LG Semi (Goldstar)',
'00001100001' => 'Northern Telecom',
'00001100010' => 'Sanyo',
'00001100011' => 'Array Microsystems',
'00001100100' => 'Crystal Semiconductor',
'00001100101' => 'Analog Devices',
'00001100110' => 'PMC-Sierra',
'00001100111' => 'Asparix',
'00001101000' => 'Convex Computer',
'00001101001' => 'Quality Semiconductor',
'00001101010' => 'Nimbus Technology',
'00001101011' => 'Transwitch',
'00001101100' => 'Micronas (ITT Intermetall)',
'00001101101' => 'Cannon',
'00001101110' => 'Altera',
'00001101111' => 'NEXCOM',
'00001110000' => 'QUALCOMM',
'00001110001' => 'Sony',
'00001110010' => 'Cray Research',
'00001110011' => 'AMS(Austria Micro)',
'00001110100' => 'Vitesse',
'00001110101' => 'Aster Electronics',
'00001110110' => 'Bay Networks (Synoptic)',
'00001110111' => 'Zentrum/ZMD',
'00001111000' => 'TRW',
'00001111001' => 'Thesys',
'00001111010' => 'Solbourne Computer',
'00001111011' => 'Allied-Signal',
'00001111100' => 'Dialog Semiconductor',
'00001111101' => 'Media Vision',
'00001111110' => 'Numonyx Corporation',
'00010000001' => 'Cirrus Logic',
'00010000010' => 'National Instruments',
'00010000011' => 'ILC Data Device',
'00010000100' => 'Alcatel Mietec',
'00010000101' => 'Micro Linear',
'00010000110' => 'Univ. of NC',
'00010000111' => 'JTAG Technologies',
'00010001000' => 'BAE Systems (Loral)',
'00010001001' => 'Nchip',
'00010001010' => 'Galileo Tech',
'00010001011' => 'Bestlink Systems',
'00010001100' => 'Graychip',
'00010001101' => 'GENNUM',
'00010001110' => 'VideoLogic',
'00010001111' => 'Robert Bosch',
'00010010000' => 'Chip Express',
'00010010001' => 'DATARAM',
'00010010010' => 'United Microelectronics Corp.',
'00010010011' => 'TCSI',
'00010010100' => 'Smart Modular',
'00010010101' => 'Hughes Aircraft',
'00010010110' => 'Lanstar Semiconductor',
'00010010111' => 'Qlogic',
'00010011000' => 'Kingston',
'00010011001' => 'Music Semi',
'00010011010' => 'Ericsson Components',
'00010011011' => 'SpaSE',
'00010011100' => 'Eon Silicon Devices',
'00010011101' => 'Programmable Micro Corp',
'00010011110' => 'DoD',
'00010011111' => 'Integ. Memories Tech.',
'00010100000' => 'Corollary Inc.',
'00010100001' => 'Dallas Semiconductor',
'00010100010' => 'Omnivision',
'00010100011' => 'EIV(Switzerland)',
'00010100100' => 'Novatel Wireless',
'00010100101' => 'Zarlink (Mitel)',
'00010100110' => 'Clearpoint',
'00010100111' => 'Cabletron',
'00010101000' => 'STEC (Silicon Tech)',
'00010101001' => 'Vanguard',
'00010101010' => 'Hagiwara Sys-Com',
'00010101011' => 'Vantis',
'00010101100' => 'Celestica',
'00010101101' => 'Century',
'00010101110' => 'Hal Computers',
'00010101111' => 'Rohm Company Ltd.',
'00010110000' => 'Juniper Networks',
'00010110001' => 'Libit Signal Processing',
'00010110010' => 'Mushkin Enhanced Memory',
'00010110011' => 'Tundra Semiconductor',
'00010110100' => 'Adaptec Inc.',
'00010110101' => 'LightSpeed Semi.',
'00010110110' => 'ZSP Corp.',
'00010110111' => 'AMIC Technology',
'00010111000' => 'Adobe Systems',
'00010111001' => 'Dynachip',
'00010111010' => 'PNY Electronics',
'00010111011' => 'Newport Digital',
'00010111100' => 'MMC Networks',
'00010111101' => 'T Square',
'00010111110' => 'Seiko Epson',
'00010111111' => 'Broadcom',
'00011000000' => 'Viking Components',
'00011000001' => 'V3 Semiconductor',
'00011000010' => 'Flextronics (Orbit Semiconductor)',
'00011000011' => 'Suwa Electronics',
'00011000100' => 'Transmeta',
'00011000101' => 'Micron CMS',
'00011000110' => 'American Computer & Digital Components Inc',
'00011000111' => 'Enhance 3000 Inc',
'00011001000' => 'Tower Semiconductor',
'00011001001' => 'CPU Design',
'00011001010' => 'Price Point',
'00011001011' => 'Maxim Integrated Product',
'00011001100' => 'Tellabs',
'00011001101' => 'Centaur Technology',
'00011001110' => 'Unigen Corporation',
'00011001111' => 'Transcend Information',
'00011010000' => 'Memory Card Technology',
'00011010001' => 'CKD Corporation Ltd.',
'00011010010' => 'Capital Instruments, Inc.',
'00011010011' => 'Aica Kogyo, Ltd.',
'00011010100' => 'Linvex Technology',
'00011010101' => 'MSC Vertriebs GmbH',
'00011010110' => 'AKM Company, Ltd.',
'00011010111' => 'Dynamem, Inc.',
'00011011000' => 'NERA ASA',
'00011011001' => 'GSI Technology',
'00011011010' => 'Dane-Elec (C Memory)',
'00011011011' => 'Acorn Computers',
'00011011100' => 'Lara Technology',
'00011011101' => 'Oak Technology, Inc.',
'00011011110' => 'Itec Memory',
'00011011111' => 'Tanisys Technology',
'00011100000' => 'Truevision',
'00011100001' => 'Wintec Industries',
'00011100010' => 'Super PC Memory',
'00011100011' => 'MGV Memory',
'00011100100' => 'Galvantech',
'00011100101' => 'Gadzoox Networks',
'00011100110' => 'Multi Dimensional Cons.',
'00011100111' => 'GateField',
'00011101000' => 'Integrated Memory System',
'00011101001' => 'Triscend',
'00011101010' => 'XaQti',
'00011101011' => 'Goldenram',
'00011101100' => 'Clear Logic',
'00011101101' => 'Cimaron Communications',
'00011101110' => 'Nippon Steel Semi. Corp.',
'00011101111' => 'Advantage Memory',
'00011110000' => 'AMCC',
'00011110001' => 'LeCroy',
'00011110010' => 'Yamaha Corporation',
'00011110011' => 'Digital Microwave',
'00011110100' => 'NetLogic Microsystems',
'00011110101' => 'MIMOS Semiconductor',
'00011110110' => 'Advanced Fibre',
'00011110111' => 'BF Goodrich Data.',
'00011111000' => 'Epigram',
'00011111001' => 'Acbel Polytech Inc.',
'00011111010' => 'Apacer Technology',
'00011111011' => 'Admor Memory',
'00011111100' => 'FOXCONN',
'00011111101' => 'Quadratics Superconductor',
'00011111110' => '3COM',
'00100000001' => 'Camintonn Corporation',
'00100000010' => 'ISOA Incorporated',
'00100000011' => 'Agate Semiconductor',
'00100000100' => 'ADMtek Incorporated',
'00100000101' => 'HYPERTEC',
'00100000110' => 'Adhoc Technologies',
'00100000111' => 'MOSAID Technologies',
'00100001000' => 'Ardent Technologies',
'00100001001' => 'Switchcore',
'00100001010' => 'Cisco Systems, Inc.',
'00100001011' => 'Allayer Technologies',
'00100001100' => 'WorkX AG (Wichman)',
'00100001101' => 'Oasis Semiconductor',
'00100001110' => 'Novanet Semiconductor',
'00100001111' => 'E-M Solutions',
'00100010000' => 'Power General',
'00100010001' => 'Advanced Hardware Arch.',
'00100010010' => 'Inova Semiconductors GmbH',
'00100010011' => 'Telocity',
'00100010100' => 'Delkin Devices',
'00100010101' => 'Symagery Microsystems',
'00100010110' => 'C-Port Corporation',
'00100010111' => 'SiberCore Technologies',
'00100011000' => 'Southland Microsystems',
'00100011001' => 'Malleable Technologies',
'00100011010' => 'Kendin Communications',
'00100011011' => 'Great Technology Microcomputer',
'00100011100' => 'Sanmina Corporation',
'00100011101' => 'HADCO Corporation',
'00100011110' => 'Corsair',
'00100011111' => 'Actrans System Inc.',
'00100100000' => 'ALPHA Technologies',
'00100100001' => 'Silicon Laboratories, Inc. (Cygnal)',
'00100100010' => 'Artesyn Technologies',
'00100100011' => 'Align Manufacturing',
'00100100100' => 'Peregrine Semiconductor',
'00100100101' => 'Chameleon Systems',
'00100100110' => 'Aplus Flash Technology',
'00100100111' => 'MIPS Technologies',
'00100101000' => 'Chrysalis ITS',
'00100101001' => 'ADTEC Corporation',
'00100101010' => 'Kentron Technologies',
'00100101011' => 'Win Technologies',
'00100101100' => 'Tachyon Semiconductor (ASIC)',
'00100101101' => 'Extreme Packet Devices',
'00100101110' => 'RF Micro Devices',
'00100101111' => 'Siemens AG',
'00100110000' => 'Sarnoff Corporation',
'00100110001' => 'Itautec SA',
'00100110010' => 'Radiata Inc.',
'00100110011' => 'Benchmark Elect. (AVEX)',
'00100110100' => 'Legend',
'00100110101' => 'SpecTek Incorporated',
'00100110110' => 'Hi/fn',
'00100110111' => 'Enikia Incorporated',
'00100111000' => 'SwitchOn Networks',
'00100111001' => 'AANetcom Incorporated',
'00100111010' => 'Micro Memory Bank',
'00100111011' => 'ESS Technology',
'00100111100' => 'Virata Corporation',
'00100111101' => 'Excess Bandwidth',
'00100111110' => 'West Bay Semiconductor',
'00100111111' => 'DSP Group',
'00101000000' => 'Newport Communications',
'00101000001' => 'Chip2Chip Incorporated',
'00101000010' => 'Phobos Corporation',
'00101000011' => 'Intellitech Corporation',
'00101000100' => 'Nordic VLSI ASA',
'00101000101' => 'Ishoni Networks',
'00101000110' => 'Silicon Spice',
'00101000111' => 'Alchemy Semiconductor',
'00101001000' => 'Agilent Technologies',
'00101001001' => 'Centillium Communications',
'00101001010' => 'W.L. Gore',
'00101001011' => 'HanBit Electronics',
'00101001100' => 'GlobeSpan',
'00101001101' => 'Element 14',
'00101001110' => 'Pycon',
'00101001111' => 'Saifun Semiconductors',
'00101010000' => 'Sibyte, Incorporated',
'00101010001' => 'MetaLink Technologies',
'00101010010' => 'Feiya Technology',
'00101010011' => 'I & C Technology',
'00101010100' => 'Shikatronics',
'00101010101' => 'Elektrobit',
'00101010110' => 'Megic',
'00101010111' => 'Com-Tier',
'00101011000' => 'Malaysia Micro Solutions',
'00101011001' => 'Hyperchip',
'00101011010' => 'Gemstone Communications',
'00101011011' => 'Anadigm (Anadyne)',
'00101011100' => '3ParData',
'00101011101' => 'Mellanox Technologies',
'00101011110' => 'Tenx Technologies',
'00101011111' => 'Helix AG',
'00101100000' => 'Domosys',
'00101100001' => 'Skyup Technology',
'00101100010' => 'HiNT Corporation',
'00101100011' => 'Chiaro',
'00101100100' => 'MDT Technologies GmbH',
'00101100101' => 'Exbit Technology A/S',
'00101100110' => 'Integrated Technology Express',
'00101100111' => 'AVED Memory',
'00101101000' => 'Legerity',
'00101101001' => 'Jasmine Networks',
'00101101010' => 'Caspian Networks',
'00101101011' => 'nCUBE',
'00101101100' => 'Silicon Access Networks',
'00101101101' => 'FDK Corporation',
'00101101110' => 'High Bandwidth Access',
'00101101111' => 'MultiLink Technology',
'00101110000' => 'BRECIS',
'00101110001' => 'World Wide Packets',
'00101110010' => 'APW',
'00101110011' => 'Chicory Systems',
'00101110100' => 'Xstream Logic',
'00101110101' => 'Fast-Chip',
'00101110110' => 'Zucotto Wireless',
'00101110111' => 'Realchip',
'00101111000' => 'Galaxy Power',
'00101111001' => 'eSilicon',
'00101111010' => 'Morphics Technology',
'00101111011' => 'Accelerant Networks',
'00101111100' => 'Silicon Wave',
'00101111101' => 'SandCraft',
'00101111110' => 'Elpida',
'00110000001' => 'Solectron',
'00110000010' => 'Optosys Technologies',
'00110000011' => 'Buffalo (Formerly Melco)',
'00110000100' => 'TriMedia Technologies',
'00110000101' => 'Cyan Technologies',
'00110000110' => 'Global Locate',
'00110000111' => 'Optillion',
'00110001000' => 'Terago Communications',
'00110001001' => 'Ikanos Communications',
'00110001010' => 'Princeton Technology',
'00110001011' => 'Nanya Technology',
'00110001100' => 'Elite Flash Storage',
'00110001101' => 'Mysticom',
'00110001110' => 'LightSand Communications',
'00110001111' => 'ATI Technologies',
'00110010000' => 'Agere Systems',
'00110010001' => 'NeoMagic',
'00110010010' => 'AuroraNetics',
'00110010011' => 'Golden Empire',
'00110010100' => 'Mushkin',
'00110010101' => 'Tioga Technologies',
'00110010110' => 'Netlist',
'00110010111' => 'TeraLogic',
'00110011000' => 'Cicada Semiconductor',
'00110011001' => 'Centon Electronics',
'00110011010' => 'Tyco Electronics',
'00110011011' => 'Magis Works',
'00110011100' => 'Zettacom',
'00110011101' => 'Cogency Semiconductor',
'00110011110' => 'Chipcon AS',
'00110011111' => 'Aspex Technology',
'00110100000' => 'F5 Networks',
'00110100001' => 'Programmable Silicon Solutions',
'00110100010' => 'ChipWrights',
'00110100011' => 'Acorn Networks',
'00110100100' => 'Quicklogic',
'00110100101' => 'Kingmax Semiconductor',
'00110100110' => 'BOPS',
'00110100111' => 'Flasys',
'00110101000' => 'BitBlitz Communications',
'00110101001' => 'eMemory Technology',
'00110101010' => 'Procket Networks',
'00110101011' => 'Purple Ray',
'00110101100' => 'Trebia Networks',
'00110101101' => 'Delta Electronics',
'00110101110' => 'Onex Communications',
'00110101111' => 'Ample Communications',
'00110110000' => 'Memory Experts Intl',
'00110110001' => 'Astute Networks',
'00110110010' => 'Azanda Network Devices',
'00110110011' => 'Dibcom',
'00110110100' => 'Tekmos',
'00110110101' => 'API NetWorks',
'00110110110' => 'Bay Microsystems',
'00110110111' => 'Firecron Ltd',
'00110111000' => 'Resonext Communications',
'00110111001' => 'Tachys Technologies',
'00110111010' => 'Equator Technology',
'00110111011' => 'Concept Computer',
'00110111100' => 'SILCOM',
'00110111101' => '3Dlabs',
'00110111110' => 'c’t Magazine',
'00110111111' => 'Sanera Systems',
'00111000000' => 'Silicon Packets',
'00111000001' => 'Viasystems Group',
'00111000010' => 'Simtek',
'00111000011' => 'Semicon Devices Singapore',
'00111000100' => 'Satron Handelsges',
'00111000101' => 'Improv Systems',
'00111000110' => 'INDUSYS GmbH',
'00111000111' => 'Corrent',
'00111001000' => 'Infrant Technologies',
'00111001001' => 'Ritek Corp',
'00111001010' => 'empowerTel Networks',
'00111001011' => 'Hypertec',
'00111001100' => 'Cavium Networks',
'00111001101' => 'PLX Technology',
'00111001110' => 'Massana Design',
'00111001111' => 'Intrinsity',
'00111010000' => 'Valence Semiconductor',
'00111010001' => 'Terawave Communications',
'00111010010' => 'IceFyre Semiconductor',
'00111010011' => 'Primarion',
'00111010100' => 'Picochip Designs Ltd',
'00111010101' => 'Silverback Systems',
'00111010110' => 'Jade Star Technologies',
'00111010111' => 'Pijnenburg Securealink',
'00111011000' => 'takeMS International AG',
'00111011001' => 'Cambridge Silicon Radio',
'00111011010' => 'Swissbit',
'00111011011' => 'Nazomi Communications',
'00111011100' => 'eWave System',
'00111011101' => 'Rockwell Collins',
'00111011110' => 'Picocel Co. Ltd. (Paion)',
'00111011111' => 'Alphamosaic Ltd',
'00111100000' => 'Sandburst',
'00111100001' => 'SiCon Video',
'00111100010' => 'NanoAmp Solutions',
'00111100011' => 'Ericsson Technology',
'00111100100' => 'PrairieComm',
'00111100101' => 'Mitac International',
'00111100110' => 'Layer N Networks',
'00111100111' => 'MtekVision (Atsana)',
'00111101000' => 'Allegro Networks',
'00111101001' => 'Marvell Semiconductors',
'00111101010' => 'Netergy Microelectronic',
'00111101011' => 'NVIDIA',
'00111101100' => 'Internet Machines',
'00111101101' => 'Peak Electronics',
'00111101110' => 'Litchfield Communication',
'00111101111' => 'Accton Technology',
'00111110000' => 'Teradiant Networks',
'00111110001' => 'Scaleo Chip',
'00111110010' => 'Cortina Systems',
'00111110011' => 'RAM Components',
'00111110100' => 'Raqia Networks',
'00111110101' => 'ClearSpeed',
'00111110110' => 'Matsushita Battery',
'00111110111' => 'Xelerated',
'00111111000' => 'SimpleTech',
'00111111001' => 'Utron Technology',
'00111111010' => 'Astec International',
'00111111011' => 'AVM gmbH',
'00111111100' => 'Redux Communications',
'00111111101' => 'Dot Hill Systems',
'00111111110' => 'TeraChip',
'01000000001' => 'T-RAM Incorporated',
'01000000010' => 'Innovics Wireless',
'01000000011' => 'Teknovus',
'01000000100' => 'KeyEye Communications',
'01000000101' => 'Runcom Technologies',
'01000000110' => 'RedSwitch',
'01000000111' => 'Dotcast',
'01000001000' => 'Silicon Mountain Memory',
'01000001001' => 'Signia Technologies',
'01000001010' => 'Pixim',
'01000001011' => 'Galazar Networks',
'01000001100' => 'White Electronic Designs',
'01000001101' => 'Patriot Scientific',
'01000001110' => 'Neoaxiom Corporation',
'01000001111' => '3Y Power Technology',
'01000010000' => 'Scaleo Chip',
'01000010001' => 'Potentia Power Systems',
'01000010010' => 'C-guys Incorporated',
'01000010011' => 'Digital Communications Technology Incorporated',
'01000010100' => 'Silicon-Based Technology',
'01000010101' => 'Fulcrum Microsystems',
'01000010110' => 'Positivo Informatica Ltd',
'01000010111' => 'XIOtech Corporation',
'01000011000' => 'PortalPlayer',
'01000011001' => 'Zhiying Software',
'01000011010' => 'ParkerVision, Inc.',
'01000011011' => 'Phonex Broadband',
'01000011100' => 'Skyworks Solutions',
'01000011101' => 'Entropic Communications',
'01000011110' => 'Pacific Force Technology',
'01000011111' => 'Zensys A/S',
'01000100000' => 'Legend Silicon Corp.',
'01000100001' => 'Sci-worx GmbH',
'01000100010' => 'SMSC (Standard Microsystems)',
'01000100011' => 'Renesas Electronics',
'01000100100' => 'Raza Microelectronics',
'01000100101' => 'Phyworks',
'01000100110' => 'MediaTek',
'01000100111' => 'Non-cents Productions',
'01000101000' => 'US Modular',
'01000101001' => 'Wintegra Ltd.',
'01000101010' => 'Mathstar',
'01000101011' => 'StarCore',
'01000101100' => 'Oplus Technologies',
'01000101101' => 'Mindspeed',
'01000101110' => 'Just Young Computer',
'01000101111' => 'Radia Communications',
'01000110000' => 'OCZ',
'01000110001' => 'Emuzed',
'01000110010' => 'LOGIC Devices',
'01000110011' => 'Inphi Corporation',
'01000110100' => 'Quake Technologies',
'01000110101' => 'Vixel',
'01000110110' => 'SolusTek',
'01000110111' => 'Kongsberg Maritime',
'01000111000' => 'Faraday Technology',
'01000111001' => 'Altium Ltd.',
'01000111010' => 'Insyte',
'01000111011' => 'ARM Ltd.',
'01000111100' => 'DigiVision',
'01000111101' => 'Vativ Technologies',
'01000111110' => 'Endicott Interconnect Technologies',
'01000111111' => 'Pericom',
'01001000000' => 'Bandspeed',
'01001000001' => 'LeWiz Communications',
'01001000010' => 'CPU Technology',
'01001000011' => 'Ramaxel Technology',
'01001000100' => 'DSP Group',
'01001000101' => 'Axis Communications',
'01001000110' => 'Legacy Electronics',
'01001000111' => 'Chrontel',
'01001001000' => 'Powerchip Semiconductor',
'01001001001' => 'MobilEye Technologies',
'01001001010' => 'Excel Semiconductor',
'01001001011' => 'A-DATA Technology',
'01001001100' => 'VirtualDigm',
'01001001101' => 'G Skill Intl',
'01001001110' => 'Quanta Computer',
'01001001111' => 'Yield Microelectronics',
'01001010000' => 'Afa Technologies',
'01001010001' => 'KINGBOX Technology Co. Ltd.',
'01001010010' => 'Ceva',
'01001010011' => 'iStor Networks',
'01001010100' => 'Advance Modules',
'01001010101' => 'Microsoft',
'01001010110' => 'Open-Silicon',
'01001010111' => 'Goal Semiconductor',
'01001011000' => 'ARC International',
'01001011001' => 'Simmtec',
'01001011010' => 'Metanoia',
'01001011011' => 'Key Stream',
'01001011100' => 'Lowrance Electronics',
'01001011101' => 'Adimos',
'01001011110' => 'SiGe Semiconductor',
'01001011111' => 'Fodus Communications',
'01001100000' => 'Credence Systems Corp.',
'01001100001' => 'Genesis Microchip Inc.',
'01001100010' => 'Vihana, Inc.',
'01001100011' => 'WIS Technologies',
'01001100100' => 'GateChange Technologies',
'01001100101' => 'High Density Devices AS',
'01001100110' => 'Synopsys',
'01001100111' => 'Gigaram',
'01001101000' => 'Enigma Semiconductor Inc.',
'01001101001' => 'Century Micro Inc.',
'01001101010' => 'Icera Semiconductor',
'01001101011' => 'Mediaworks Integrated Systems',
'01001101100' => 'O’Neil Product Development',
'01001101101' => 'Supreme Top Technology Ltd.',
'01001101110' => 'MicroDisplay Corporation',
'01001101111' => 'Team Group Inc.',
'01001110000' => 'Sinett Corporation',
'01001110001' => 'Toshiba Corporation',
'01001110010' => 'Tensilica',
'01001110011' => 'SiRF Technology',
'01001110100' => 'Bacoc Inc.',
'01001110101' => 'SMaL Camera Technologies',
'01001110110' => 'Thomson SC',
'01001110111' => 'Airgo Networks',
'01001111000' => 'Wisair Ltd.',
'01001111001' => 'SigmaTel',
'01001111010' => 'Arkados',
'01001111011' => 'Compete IT gmbH Co. KG',
'01001111100' => 'Eudar Technology Inc.',
'01001111101' => 'Focus Enhancements',
'01001111110' => 'Xyratex',
'01010000001' => 'Specular Networks',
'01010000010' => 'Patriot Memory (PDP Systems)',
'01010000011' => 'U-Chip Technology Corp.',
'01010000100' => 'Silicon Optix',
'01010000101' => 'Greenfield Networks',
'01010000110' => 'CompuRAM GmbH',
'01010000111' => 'Stargen, Inc.',
'01010001000' => 'NetCell Corporation',
'01010001001' => 'Excalibrus Technologies Ltd',
'01010001010' => 'SCM Microsystems',
'01010001011' => 'Xsigo Systems, Inc.',
'01010001100' => 'CHIPS & Systems Inc',
'01010001101' => 'Tier 1 Multichip Solutions',
'01010001110' => 'CWRL Labs',
'01010001111' => 'Teradici',
'01010010000' => 'Gigaram, Inc.',
'01010010001' => 'g2 Microsystems',
'01010010010' => 'PowerFlash Semiconductor',
'01010010011' => 'P.A. Semi, Inc.',
'01010010100' => 'NovaTech Solutions, S.A.',
'01010010101' => 'c2 Microsystems, Inc.',
'01010010110' => 'Level5 Networks',
'01010010111' => 'COS Memory AG',
'01010011000' => 'Innovasic Semiconductor',
'01010011001' => '02IC Co. Ltd',
'01010011010' => 'Tabula, Inc.',
'01010011011' => 'Crucial Technology',
'01010011100' => 'Chelsio Communications',
'01010011101' => 'Solarflare Communications',
'01010011110' => 'Xambala Inc.',
'01010011111' => 'EADS Astrium',
'01010100000' => 'Terra Semiconductor, Inc.',
'01010100001' => 'Imaging Works, Inc.',
'01010100010' => 'Astute Networks, Inc.',
'01010100011' => 'Tzero',
'01010100100' => 'Emulex',
'01010100101' => 'Power-One',
'01010100110' => 'Pulse~LINK Inc.',
'01010100111' => 'Hon Hai Precision Industry',
'01010101000' => 'White Rock Networks Inc.',
'01010101001' => 'Telegent Systems USA, Inc.',
'01010101010' => 'Atrua Technologies, Inc.',
'01010101011' => 'Acbel Polytech Inc.',
'01010101100' => 'eRide Inc.',
'01010101101' => 'ULi Electronics Inc.',
'01010101110' => 'Magnum Semiconductor Inc.',
'01010101111' => 'neoOne Technology, Inc.',
'01010110000' => 'Connex Technology, Inc.',
'01010110001' => 'Stream Processors, Inc.',
'01010110010' => 'Focus Enhancements',
'01010110011' => 'Telecis Wireless, Inc.',
'01010110100' => 'uNav Microelectronics',
'01010110101' => 'Tarari, Inc.',
'01010110110' => 'Ambric, Inc.',
'01010110111' => 'Newport Media, Inc.',
'01010111000' => 'VMTS',
'01010111001' => 'Enuclia Semiconductor, Inc.',
'01010111010' => 'Virtium Technology Inc.',
'01010111011' => 'Solid State System Co., Ltd.',
'01010111100' => 'Kian Tech LLC',
'01010111101' => 'Artimi',
'01010111110' => 'Power Quotient International',
'01010111111' => 'Avago Technologies',
'01011000000' => 'ADTechnology',
'01011000001' => 'Sigma Designs',
'01011000010' => 'SiCortex, Inc.',
'01011000011' => 'Ventura Technology Group',
'01011000100' => 'eASIC',
'01011000101' => 'M.H.S. SAS',
'01011000110' => 'Micro Star International',
'01011000111' => 'Rapport Inc.',
'01011001000' => 'Makway International',
'01011001001' => 'Broad Reach Engineering Co.',
'01011001010' => 'Semiconductor Mfg Intl Corp',
'01011001011' => 'SiConnect',
'01011001100' => 'FCI USA Inc.',
'01011001101' => 'Validity Sensors',
'01011001110' => 'Coney Technology Co. Ltd.',
'01011001111' => 'Spans Logic',
'01011010000' => 'Neterion Inc.',
'01011010001' => 'Qimonda',
'01011010010' => 'New Japan Radio Co. Ltd.',
'01011010011' => 'Velogix',
'01011010100' => 'Montalvo Systems',
'01011010101' => 'iVivity Inc.',
'01011010110' => 'Walton Chaintech',
'01011010111' => 'AENEON',
'01011011000' => 'Lorom Industrial Co. Ltd.',
'01011011001' => 'Radiospire Networks',
'01011011010' => 'Sensio Technologies, Inc.',
'01011011011' => 'Nethra Imaging',
'01011011100' => 'Hexon Technology Pte Ltd',
'01011011101' => 'CompuStocx (CSX)',
'01011011110' => 'Methode Electronics, Inc.',
'01011011111' => 'Connect One Ltd.',
'01011100000' => 'Opulan Technologies',
'01011100001' => 'Septentrio NV',
'01011100010' => 'Goldenmars Technology Inc.',
'01011100011' => 'Kreton Corporation',
'01011100100' => 'Cochlear Ltd.',
'01011100101' => 'Altair Semiconductor',
'01011100110' => 'NetEffect, Inc.',
'01011100111' => 'Spansion, Inc.',
'01011101000' => 'Taiwan Semiconductor Mfg',
'01011101001' => 'Emphany Systems Inc.',
'01011101010' => 'ApaceWave Technologies',
'01011101011' => 'Mobilygen Corporation',
'01011101100' => 'Tego',
'01011101101' => 'Cswitch Corporation',
'01011101110' => 'Haier (Beijing) IC Design Co.',
'01011101111' => 'MetaRAM',
'01011110000' => 'Axel Electronics Co. Ltd.',
'01011110001' => 'Tilera Corporation',
'01011110010' => 'Aquantia',
'01011110011' => 'Vivace Semiconductor',
'01011110100' => 'Redpine Signals',
'01011110101' => 'Octalica',
'01011110110' => 'InterDigital Communications',
'01011110111' => 'Avant Technology',
'01011111000' => 'Asrock, Inc.',
'01011111001' => 'Availink',
'01011111010' => 'Quartics, Inc.',
'01011111011' => 'Element CXI',
'01011111100' => 'Innovaciones Microelectronicas',
'01011111101' => 'VeriSilicon Microelectronics',
'01011111110' => 'W5 Networks',
'01100000001' => 'MOVEKING',
'01100000010' => 'Mavrix Technology, Inc.',
'01100000011' => 'CellGuide Ltd.',