Skip to content
Snippets Groups Projects
ivm_core.c 65.6 KiB
Newer Older
  • Learn to ignore specific revisions
  • 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
    /*
     * Porting to u-boot:
     *
     * (C) Copyright 2010
     * Stefano Babic, DENX Software Engineering, sbabic@denx.de.
     *
     * Lattice ispVME Embedded code to load Lattice's FPGA:
     *
     * Copyright 2009 Lattice Semiconductor Corp.
     *
     * ispVME Embedded allows programming of Lattice's suite of FPGA
     * devices on embedded systems through the JTAG port.  The software
     * is distributed in source code form and is open to re - distribution
     * and modification where applicable.
     *
     * Revision History of ivm_core.c module:
     * 4/25/06 ht   Change some variables from unsigned short or int
     *              to long int to make the code compiler independent.
     * 5/24/06 ht   Support using RESET (TRST) pin as a special purpose
     *              control pin such as triggering the loading of known
     *              state exit.
     * 3/6/07 ht added functions to support output to terminals
     *
     * 09/11/07 NN Type cast mismatch variables
     *		   Moved the sclock() function to hardware.c
     * 08/28/08 NN Added Calculate checksum support.
     * 4/1/09 Nguyen replaced the recursive function call codes on
     *        the ispVMLCOUNT function
     * See file CREDITS for list of people who contributed to this
     * project.
     *
     * This program is free software; you can redistribute it and/or
     * modify it under the terms of the GNU General Public License as
     * published by the Free Software Foundation; either version 2 of
     * the License, or (at your option) any later version.
     *
     * 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 General Public License for more details.
     *
     * You should have received a copy of the GNU General Public License
     * along with this program; if not, write to the Free Software
     * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
     * MA 02111-1307 USA
     */
    
    #include <common.h>
    #include <linux/string.h>
    #include <malloc.h>
    #include <lattice.h>
    
    #define vme_out_char(c)	printf("%c", c)
    #define vme_out_hex(c)	printf("%x", c)
    #define vme_out_string(s) printf("%s", s)
    
    /*
     *
     * Global variables used to specify the flow control and data type.
     *
     *	g_usFlowControl:	flow control register. Each bit in the
     *                               register can potentially change the
     *                               personality of the embedded engine.
     *	g_usDataType:		holds the data type of the current row.
     *
     */
    
    static unsigned short g_usFlowControl;
    unsigned short g_usDataType;
    
    /*
     *
     * Global variables used to specify the ENDDR and ENDIR.
     *
     *	g_ucEndDR:		the state that the device goes to after SDR.
     *	g_ucEndIR:		the state that the device goes to after SIR.
     *
     */
    
    unsigned char g_ucEndDR = DRPAUSE;
    unsigned char g_ucEndIR = IRPAUSE;
    
    /*
     *
     * Global variables used to support header/trailer.
     *
     *	g_usHeadDR:		the number of lead devices in bypass.
     *	g_usHeadIR:		the sum of IR length of lead devices.
     *	g_usTailDR:		the number of tail devices in bypass.
     *	g_usTailIR:		the sum of IR length of tail devices.
     *
     */
    
    static unsigned short g_usHeadDR;
    static unsigned short g_usHeadIR;
    static unsigned short g_usTailDR;
    static unsigned short g_usTailIR;
    
    /*
     *
     * Global variable to store the number of bits of data or instruction
     * to be shifted into or out from the device.
     *
     */
    
    static unsigned short g_usiDataSize;
    
    /*
     *
     * Stores the frequency. Default to 1 MHz.
     *
     */
    
    static int g_iFrequency = 1000;
    
    /*
     *
     * Stores the maximum amount of ram needed to hold a row of data.
     *
     */
    
    static unsigned short g_usMaxSize;
    
    /*
     *
     * Stores the LSH or RSH value.
     *
     */
    
    static unsigned short g_usShiftValue;
    
    /*
     *
     * Stores the current repeat loop value.
     *
     */
    
    static unsigned short g_usRepeatLoops;
    
    /*
     *
     * Stores the current vendor.
     *
     */
    
    static signed char g_cVendor = LATTICE;
    
    /*
     *
     * Stores the VME file CRC.
     *
     */
    
    unsigned short g_usCalculatedCRC;
    
    /*
     *
     * Stores the Device Checksum.
     *
     */
    /* 08/28/08 NN Added Calculate checksum support. */
    unsigned long g_usChecksum;
    static unsigned int g_uiChecksumIndex;
    
    /*
     *
     * Stores the current state of the JTAG state machine.
     *
     */
    
    static signed char g_cCurrentJTAGState;
    
    /*
     *
     * Global variables used to support looping.
     *
     *	g_pucHeapMemory:	holds the entire repeat loop.
     *	g_iHeapCounter:		points to the current byte in the repeat loop.
     *	g_iHEAPSize:		the current size of the repeat in bytes.
     *
     */
    
    unsigned char *g_pucHeapMemory;
    unsigned short g_iHeapCounter;
    unsigned short g_iHEAPSize;
    static unsigned short previous_size;
    
    /*
     *
     * Global variables used to support intelligent programming.
     *
     *	g_usIntelDataIndex:     points to the current byte of the
     *                               intelligent buffer.
     *	g_usIntelBufferSize:	holds the size of the intelligent
     *                               buffer.
     *
     */
    
    unsigned short g_usIntelDataIndex;
    unsigned short g_usIntelBufferSize;
    
    /*
     *
     * Supported VME versions.
     *
     */
    
    const char *const g_szSupportedVersions[] = {
    	"__VME2.0", "__VME3.0", "____12.0", "____12.1", 0};
    
    /*
     *
     * Holds the maximum size of each respective buffer. These variables are used
     * to write the HEX files when converting VME to HEX.
     *
    */
    
    static unsigned short g_usTDOSize;
    static unsigned short g_usMASKSize;
    static unsigned short g_usTDISize;
    static unsigned short g_usDMASKSize;
    static unsigned short g_usLCOUNTSize;
    static unsigned short g_usHDRSize;
    static unsigned short g_usTDRSize;
    static unsigned short g_usHIRSize;
    static unsigned short g_usTIRSize;
    static unsigned short g_usHeapSize;
    
    /*
     *
     * Global variables used to store data.
     *
     *	g_pucOutMaskData:	local RAM to hold one row of MASK data.
     *	g_pucInData:		local RAM to hold one row of TDI data.
     *	g_pucOutData:		local RAM to hold one row of TDO data.
     *	g_pucHIRData:		local RAM to hold the current SIR header.
     *	g_pucTIRData:		local RAM to hold the current SIR trailer.
     *	g_pucHDRData:		local RAM to hold the current SDR header.
     *	g_pucTDRData:		local RAM to hold the current SDR trailer.
     *	g_pucIntelBuffer:	local RAM to hold the current intelligent buffer
     *	g_pucOutDMaskData:	local RAM to hold one row of DMASK data.
     *
     */
    
    unsigned char	*g_pucOutMaskData	= NULL,
    		*g_pucInData		= NULL,
    		*g_pucOutData		= NULL,
    		*g_pucHIRData		= NULL,
    		*g_pucTIRData		= NULL,
    		*g_pucHDRData		= NULL,
    		*g_pucTDRData		= NULL,
    		*g_pucIntelBuffer	= NULL,
    		*g_pucOutDMaskData	= NULL;
    
    /*
     *
     * JTAG state machine transition table.
     *
     */
    
    struct {
    	 unsigned char  CurState;  /* From this state */
    	 unsigned char  NextState; /* Step to this state */
    	 unsigned char  Pattern;   /* The tragetory of TMS */
    	 unsigned char  Pulses;    /* The number of steps */
    } g_JTAGTransistions[25] = {
    { RESET,	RESET,		0xFC, 6 },	/* Transitions from RESET */
    { RESET,	IDLE,		0x00, 1 },
    { RESET,	DRPAUSE,	0x50, 5 },
    { RESET,	IRPAUSE,	0x68, 6 },
    { IDLE,		RESET,		0xE0, 3 },	/* Transitions from IDLE */
    { IDLE,		DRPAUSE,	0xA0, 4 },
    { IDLE,		IRPAUSE,	0xD0, 5 },
    { DRPAUSE,	RESET,		0xF8, 5 },	/* Transitions from DRPAUSE */
    { DRPAUSE,	IDLE,		0xC0, 3 },
    { DRPAUSE,	IRPAUSE,	0xF4, 7 },
    { DRPAUSE,	DRPAUSE,	0xE8, 6 },/* 06/14/06 Support POLL STATUS LOOP*/
    { IRPAUSE,	RESET,		0xF8, 5 },	/* Transitions from IRPAUSE */
    { IRPAUSE,	IDLE,		0xC0, 3 },
    { IRPAUSE,	DRPAUSE,	0xE8, 6 },
    { DRPAUSE,	SHIFTDR,	0x80, 2 }, /* Extra transitions using SHIFTDR */
    { IRPAUSE,	SHIFTDR,	0xE0, 5 },
    { SHIFTDR,	DRPAUSE,	0x80, 2 },
    { SHIFTDR,	IDLE,		0xC0, 3 },
    { IRPAUSE,	SHIFTIR,	0x80, 2 },/* Extra transitions using SHIFTIR */
    { SHIFTIR,	IRPAUSE,	0x80, 2 },
    { SHIFTIR,	IDLE,		0xC0, 3 },
    { DRPAUSE,	DRCAPTURE,	0xE0, 4 }, /* 11/15/05 Support DRCAPTURE*/
    { DRCAPTURE, DRPAUSE,	0x80, 2 },
    { IDLE,     DRCAPTURE,	0x80, 2 },
    { IRPAUSE,  DRCAPTURE,  0xE0, 4 }
    };
    
    /*
     *
     * List to hold all LVDS pairs.
     *
     */
    
    LVDSPair *g_pLVDSList;
    unsigned short g_usLVDSPairCount;
    
    /*
     *
     * Function prototypes.
     *
     */
    
    static signed char ispVMDataCode(void);
    static long int ispVMDataSize(void);
    static void ispVMData(unsigned char *Data);
    static signed char ispVMShift(signed char Code);
    static signed char ispVMAmble(signed char Code);
    static signed char ispVMLoop(unsigned short a_usLoopCount);
    static signed char ispVMBitShift(signed char mode, unsigned short bits);
    static void ispVMComment(unsigned short a_usCommentSize);
    static void ispVMHeader(unsigned short a_usHeaderSize);
    static signed char ispVMLCOUNT(unsigned short a_usCountSize);
    static void ispVMClocks(unsigned short Clocks);
    static void ispVMBypass(signed char ScanType, unsigned short Bits);
    static void ispVMStateMachine(signed char NextState);
    static signed char ispVMSend(unsigned short int);
    static signed char ispVMRead(unsigned short int);
    static signed char ispVMReadandSave(unsigned short int);
    static signed char ispVMProcessLVDS(unsigned short a_usLVDSCount);
    static void ispVMMemManager(signed char types, unsigned short size);
    
    /*
     *
     * External variables and functions in hardware.c module
     *
     */
    static signed char g_cCurrentJTAGState;
    
    #ifdef DEBUG
    
    /*
     *
     * GetState
     *
     * Returns the state as a string based on the opcode. Only used
     * for debugging purposes.
     *
     */
    
    const char *GetState(unsigned char a_ucState)
    {
    	switch (a_ucState) {
    	case RESET:
    		return "RESET";
    	case IDLE:
    		return "IDLE";
    	case IRPAUSE:
    		return "IRPAUSE";
    	case DRPAUSE:
    		return "DRPAUSE";
    	case SHIFTIR:
    		return "SHIFTIR";
    	case SHIFTDR:
    		return "SHIFTDR";
    	case DRCAPTURE:/* 11/15/05 support DRCAPTURE*/
    		return "DRCAPTURE";
    	default:
    		break;
    	}
    
    	return 0;
    }
    
    /*
     *
     * PrintData
     *
     * Prints the data. Only used for debugging purposes.
     *
     */
    
    void PrintData(unsigned short a_iDataSize, unsigned char *a_pucData)
    {
    	/* 09/11/07 NN added local variables initialization */
    	unsigned short usByteSize  = 0;
    	unsigned short usBitIndex  = 0;
    	signed short usByteIndex   = 0;
    	unsigned char ucByte       = 0;
    	unsigned char ucFlipByte   = 0;
    
    	if (a_iDataSize % 8) {
    		/* 09/11/07 NN Type cast mismatch variables */
    		usByteSize = (unsigned short)(a_iDataSize / 8 + 1);
    	} else {
    		/* 09/11/07 NN Type cast mismatch variables */
    		usByteSize = (unsigned short)(a_iDataSize / 8);
    	}
    	puts("(");
    	/* 09/11/07 NN Type cast mismatch variables */
    	for (usByteIndex = (signed short)(usByteSize - 1);
    		usByteIndex >= 0; usByteIndex--) {
    		ucByte = a_pucData[usByteIndex];
    		ucFlipByte = 0x00;
    
    		/*
    		*
    		* Flip each byte.
    		*
    		*/
    
    		for (usBitIndex = 0; usBitIndex < 8; usBitIndex++) {
    			ucFlipByte <<= 1;
    			if (ucByte & 0x1) {
    				ucFlipByte |= 0x1;
    			}
    
    			ucByte >>= 1;
    		}
    
    		/*
    		*
    		* Print the flipped byte.
    		*
    		*/
    
    		printf("%.02X", ucFlipByte);
    		if ((usByteSize - usByteIndex) % 40 == 39) {
    			puts("\n\t\t");
    		}
    		if (usByteIndex < 0)
    			break;
    	}
    	puts(")");
    }
    #endif /* DEBUG */
    
    void ispVMMemManager(signed char cTarget, unsigned short usSize)
    {
    	switch (cTarget) {
    	case XTDI:
    	case TDI:
    		if (g_pucInData != NULL) {
    			if (previous_size == usSize) {/*memory exist*/
    				break;
    			} else {
    				free(g_pucInData);
    				g_pucInData = NULL;
    			}
    		}
    		g_pucInData = (unsigned char *) malloc(usSize / 8 + 2);
    		previous_size = usSize;
    	case XTDO:
    	case TDO:
    		if (g_pucOutData != NULL) {
    			if (previous_size == usSize) { /*already exist*/
    				break;
    			} else {
    				free(g_pucOutData);
    				g_pucOutData = NULL;
    			}
    		}
    		g_pucOutData = (unsigned char *) malloc(usSize / 8 + 2);
    		previous_size = usSize;
    		break;
    	case MASK:
    		if (g_pucOutMaskData != NULL) {
    			if (previous_size == usSize) {/*already allocated*/
    				break;
    			} else {
    				free(g_pucOutMaskData);
    				g_pucOutMaskData = NULL;
    			}
    		}
    		g_pucOutMaskData = (unsigned char *) malloc(usSize / 8 + 2);
    		previous_size = usSize;
    		break;
    	case HIR:
    		if (g_pucHIRData != NULL) {
    			free(g_pucHIRData);
    			g_pucHIRData = NULL;
    		}
    		g_pucHIRData = (unsigned char *) malloc(usSize / 8 + 2);
    		break;
    	case TIR:
    		if (g_pucTIRData != NULL) {
    			free(g_pucTIRData);
    			g_pucTIRData = NULL;
    		}
    		g_pucTIRData = (unsigned char *) malloc(usSize / 8 + 2);
    		break;
    	case HDR:
    		if (g_pucHDRData != NULL) {
    			free(g_pucHDRData);
    			g_pucHDRData = NULL;
    		}
    		g_pucHDRData = (unsigned char *) malloc(usSize / 8 + 2);
    		break;
    	case TDR:
    		if (g_pucTDRData != NULL) {
    			free(g_pucTDRData);
    			g_pucTDRData = NULL;
    		}
    		g_pucTDRData = (unsigned char *) malloc(usSize / 8 + 2);
    		break;
    	case HEAP:
    		if (g_pucHeapMemory != NULL) {
    			free(g_pucHeapMemory);
    			g_pucHeapMemory = NULL;
    		}
    		g_pucHeapMemory = (unsigned char *) malloc(usSize + 2);
    		break;
    	case DMASK:
    		if (g_pucOutDMaskData != NULL) {
    			if (previous_size == usSize) { /*already allocated*/
    				break;
    			} else {
    				free(g_pucOutDMaskData);
    				g_pucOutDMaskData = NULL;
    			}
    		}
    		g_pucOutDMaskData = (unsigned char *) malloc(usSize / 8 + 2);
    		previous_size = usSize;
    		break;
    	case LHEAP:
    		if (g_pucIntelBuffer != NULL) {
    			free(g_pucIntelBuffer);
    			g_pucIntelBuffer = NULL;
    		}
    		g_pucIntelBuffer = (unsigned char *) malloc(usSize + 2);
    		break;
    	case LVDS:
    		if (g_pLVDSList != NULL) {
    			free(g_pLVDSList);
    			g_pLVDSList = NULL;
    		}
    		g_pLVDSList = (LVDSPair *) malloc(usSize * sizeof(LVDSPair));
    		if (g_pLVDSList)
    			memset(g_pLVDSList, 0, usSize * sizeof(LVDSPair));
    		break;
    	default:
    		return;
        }
    }
    
    void ispVMFreeMem(void)
    {
    	if (g_pucHeapMemory != NULL) {
    		free(g_pucHeapMemory);
    		g_pucHeapMemory = NULL;
    	}
    
    	if (g_pucOutMaskData != NULL) {
    		free(g_pucOutMaskData);
    		g_pucOutMaskData = NULL;
    	}
    
    	if (g_pucInData != NULL) {
    		free(g_pucInData);
    		g_pucInData = NULL;
    	}
    
    	if (g_pucOutData != NULL) {
    		free(g_pucOutData);
    		g_pucOutData = NULL;
    	}
    
    	if (g_pucHIRData != NULL) {
    		free(g_pucHIRData);
    		g_pucHIRData = NULL;
    	}
    
    	if (g_pucTIRData != NULL) {
    		free(g_pucTIRData);
    		g_pucTIRData = NULL;
    	}
    
    	if (g_pucHDRData != NULL) {
    		free(g_pucHDRData);
    		g_pucHDRData = NULL;
    	}
    
    	if (g_pucTDRData != NULL) {
    		free(g_pucTDRData);
    		g_pucTDRData = NULL;
    	}
    
    	if (g_pucOutDMaskData != NULL) {
    		free(g_pucOutDMaskData);
    		g_pucOutDMaskData = NULL;
    	}
    
    	if (g_pucIntelBuffer != NULL) {
    		free(g_pucIntelBuffer);
    		g_pucIntelBuffer = NULL;
    	}
    
    	if (g_pLVDSList != NULL) {
    		free(g_pLVDSList);
    		g_pLVDSList = NULL;
    	}
    }
    
    
    /*
     *
     * ispVMDataSize
     *
     * Returns a VME-encoded number, usually used to indicate the
     * bit length of an SIR/SDR command.
     *
     */
    
    long int ispVMDataSize()
    {
    	/* 09/11/07 NN added local variables initialization */
    	long int iSize           = 0;
    	signed char cCurrentByte = 0;
    	signed char cIndex       = 0;
    	cIndex = 0;
    	while ((cCurrentByte = GetByte()) & 0x80) {
    		iSize |= ((long int) (cCurrentByte & 0x7F)) << cIndex;
    		cIndex += 7;
    	}
    	iSize |= ((long int) (cCurrentByte & 0x7F)) << cIndex;
    	return iSize;
    }
    
    /*
     *
     * ispVMCode
     *
     * This is the heart of the embedded engine. All the high-level opcodes
     * are extracted here. Once they have been identified, then it
     * will call other functions to handle the processing.
     *
     */
    
    signed char ispVMCode()
    {
    	/* 09/11/07 NN added local variables initialization */
    	unsigned short iRepeatSize = 0;
    	signed char cOpcode	   = 0;
    	signed char cRetCode       = 0;
    	unsigned char ucState      = 0;
    	unsigned short usDelay     = 0;
    	unsigned short usToggle    = 0;
    	unsigned char usByte       = 0;
    
    	/*
    	*
    	* Check the compression flag only if this is the first time
    	* this function is entered. Do not check the compression flag if
    	* it is being called recursively from other functions within
    	* the embedded engine.
    	*
    	*/
    
    	if (!(g_usDataType & LHEAP_IN) && !(g_usDataType & HEAP_IN)) {
    		usByte = GetByte();
    		if (usByte == 0xf1) {
    			g_usDataType |= COMPRESS;
    		} else if (usByte == 0xf2) {
    			g_usDataType &= ~COMPRESS;
    		} else {
    			return VME_INVALID_FILE;
    		}
    	}
    
    	/*
    	*
    	* Begin looping through all the VME opcodes.
    	*
    	*/
    
    	while ((cOpcode = GetByte()) >= 0) {
    
    		switch (cOpcode) {
    		case STATE:
    
    			/*
    			 * Step the JTAG state machine.
    			 */
    
    			ucState = GetByte();
    
    			/*
    			 * Step the JTAG state machine to DRCAPTURE
    			 * to support Looping.
    			 */
    
    			if ((g_usDataType & LHEAP_IN) &&
    				 (ucState == DRPAUSE) &&
    				 (g_cCurrentJTAGState == ucState)) {
    				ispVMStateMachine(DRCAPTURE);
    			}
    
    			ispVMStateMachine(ucState);
    
    #ifdef DEBUG
    			if (g_usDataType & LHEAP_IN) {
    				debug("LDELAY %s ", GetState(ucState));
    			} else {
    				debug("STATE %s;\n", GetState(ucState));
    			}
    #endif /* DEBUG */
    			break;
    		case SIR:
    		case SDR:
    		case XSDR:
    
    #ifdef DEBUG
    			switch (cOpcode) {
    			case SIR:
    				puts("SIR ");
    				break;
    			case SDR:
    			case XSDR:
    				if (g_usDataType & LHEAP_IN) {
    					puts("LSDR ");
    				} else {
    					puts("SDR ");
    				}
    				break;
    			}
    #endif /* DEBUG */
    			/*
    			*
    			* Shift in data into the device.
    			*
    			*/
    
    			cRetCode = ispVMShift(cOpcode);
    			if (cRetCode != 0) {
    				return cRetCode;
    			}
    			break;
    		case WAIT:
    
    			/*
    			*
    			* Observe delay.
    			*
    			*/
    
    			/* 09/11/07 NN Type cast mismatch variables */
    			usDelay = (unsigned short) ispVMDataSize();
    			ispVMDelay(usDelay);
    
    #ifdef DEBUG
    			if (usDelay & 0x8000) {
    
    				/*
    				 * Since MSB is set, the delay time must be
    				 * decoded to millisecond. The SVF2VME encodes
    				 * the MSB to represent millisecond.
    				 */
    
    				usDelay &= ~0x8000;
    				if (g_usDataType & LHEAP_IN) {
    					printf("%.2E SEC;\n",
    						(float) usDelay / 1000);
    				} else {
    					printf("RUNTEST %.2E SEC;\n",
    						(float) usDelay / 1000);
    				}
    			} else {
    				/*
    				 * Since MSB is not set, the delay time
    				 * is given as microseconds.
    				 */
    
    				if (g_usDataType & LHEAP_IN) {
    					printf("%.2E SEC;\n",
    						(float) usDelay / 1000000);
    				} else {
    					printf("RUNTEST %.2E SEC;\n",
    						(float) usDelay / 1000000);
    				}
    			}
    #endif /* DEBUG */
    			break;
    		case TCK:
    
    			/*
    			 * Issue clock toggles.
    			*/
    
    			/* 09/11/07 NN Type cast mismatch variables */
    			usToggle = (unsigned short) ispVMDataSize();
    			ispVMClocks(usToggle);
    
    #ifdef DEBUG
    			printf("RUNTEST %d TCK;\n", usToggle);
    #endif /* DEBUG */
    			break;
    		case ENDDR:
    
    			/*
    			*
    			* Set the ENDDR.
    			*
    			*/
    
    			g_ucEndDR = GetByte();
    
    #ifdef DEBUG
    			printf("ENDDR %s;\n", GetState(g_ucEndDR));
    #endif /* DEBUG */
    			break;
    		case ENDIR:
    
    			/*
    			*
    			* Set the ENDIR.
    			*
    			*/
    
    			g_ucEndIR = GetByte();
    
    #ifdef DEBUG
    			printf("ENDIR %s;\n", GetState(g_ucEndIR));
    #endif /* DEBUG */
    			break;
    		case HIR:
    		case TIR:
    		case HDR:
    		case TDR:
    
    #ifdef DEBUG
    			switch (cOpcode) {
    			case HIR:
    				puts("HIR ");
    				break;
    			case TIR:
    				puts("TIR ");
    				break;
    			case HDR:
    				puts("HDR ");
    				break;
    			case TDR:
    				puts("TDR ");
    				break;
    			}
    #endif /* DEBUG */
    			/*
    			 * Set the header/trailer of the device in order
    			 * to bypass
    			 * successfully.
    			 */
    
    			cRetCode = ispVMAmble(cOpcode);
    			if (cRetCode != 0) {
    				return cRetCode;
    			}
    
    #ifdef DEBUG
    			puts(";\n");
    #endif /* DEBUG */
    			break;
    		case MEM:
    
    			/*
    			 * The maximum RAM required to support
    			 * processing one row of the VME file.
    			 */
    
    			/* 09/11/07 NN Type cast mismatch variables */
    			g_usMaxSize = (unsigned short) ispVMDataSize();
    
    #ifdef DEBUG
    			printf("// MEMSIZE %d\n", g_usMaxSize);
    #endif /* DEBUG */
    			break;
    		case VENDOR:
    
    			/*
    			*
    			* Set the VENDOR type.
    			*
    			*/
    
    			cOpcode = GetByte();
    			switch (cOpcode) {
    			case LATTICE:
    #ifdef DEBUG
    				puts("// VENDOR LATTICE\n");
    #endif /* DEBUG */
    				g_cVendor = LATTICE;
    				break;
    			case ALTERA:
    #ifdef DEBUG
    				puts("// VENDOR ALTERA\n");
    #endif /* DEBUG */
    				g_cVendor = ALTERA;
    				break;
    			case XILINX:
    #ifdef DEBUG
    				puts("// VENDOR XILINX\n");
    #endif /* DEBUG */
    				g_cVendor = XILINX;
    				break;
    			default:
    				break;
    			}
    			break;
    		case SETFLOW:
    
    			/*
    			 * Set the flow control. Flow control determines
    			 * the personality of the embedded engine.
    			 */
    
    			/* 09/11/07 NN Type cast mismatch variables */
    			g_usFlowControl |= (unsigned short) ispVMDataSize();
    			break;
    		case RESETFLOW:
    
    			/*
    			*
    			* Unset the flow control.
    			*
    			*/
    
    			/* 09/11/07 NN Type cast mismatch variables */
    			g_usFlowControl &= (unsigned short) ~(ispVMDataSize());
    			break;
    		case HEAP:
    
    			/*
    			*
    			* Allocate heap size to store loops.
    			*
    			*/
    
    			cRetCode = GetByte();
    			if (cRetCode != SECUREHEAP) {
    				return VME_INVALID_FILE;
    			}
    			/* 09/11/07 NN Type cast mismatch variables */
    			g_iHEAPSize = (unsigned short) ispVMDataSize();
    
    			/*
    			 * Store the maximum size of the HEAP buffer.
    			 * Used to convert VME to HEX.
    			 */
    
    			if (g_iHEAPSize > g_usHeapSize) {
    				g_usHeapSize = g_iHEAPSize;
    			}
    
    			ispVMMemManager(HEAP, (unsigned short) g_iHEAPSize);
    			break;
    		case REPEAT:
    
    			/*
    			*
    			* Execute loops.
    			*
    			*/
    
    			g_usRepeatLoops = 0;
    
    			/* 09/11/07 NN Type cast mismatch variables */
    			iRepeatSize = (unsigned short) ispVMDataSize();
    
    			cRetCode = ispVMLoop((unsigned short) iRepeatSize);
    			if (cRetCode != 0) {
    				return cRetCode;
    			}
    			break;
    		case ENDLOOP:
    
    			/*
    			*
    			* Exit point from processing loops.
    			*
    			*/
    
    			return cRetCode;
    		case ENDVME:
    
    			/*
    			 * The only valid exit point that indicates
    			 * end of programming.
    			 */
    
    			return cRetCode;
    		case SHR:
    
    			/*
    			*
    			* Right-shift address.
    			*
    			*/
    
    			g_usFlowControl |= SHIFTRIGHT;
    
    			/* 09/11/07 NN Type cast mismatch variables */
    			g_usShiftValue = (unsigned short) (g_usRepeatLoops *
    				(unsigned short)GetByte());
    			break;
    		case SHL:
    
    			/*