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
|
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include "unistd.h"
#include "mapfile_xc2c.h"
#include "jedecfile.h"
#include "bitfile.h"
void usage() {
fprintf(stderr,
"\nUsage:xc2c_warp [-v] [-m Mapfile Directory] infile [-o outfile]\n"
" -h\t\tprint this help\n"
" -v\t\tverbose output\n"
" -m\t\tDirectory containing Map files\n"
" -O\t\toutput file (parse input file only if not given\n"
" -i\t\tintput file format (BIT|BIN|BPI|HEX)\n"
" -o\t\toutput file format (BIT|BIN|BPI|HEX)\n");
exit(255);
}
int main(int argc, char**args)
{
bool verbose = false;
bool revert = false;
const char * outfile = NULL;
FILE_STYLE in_style = STYLE_BIT;
FILE_STYLE out_style = STYLE_BIT;
char device[256]= "";
FILE *fp = NULL;
const char * mapdir = NULL;
fprintf(stderr, "Release $Rev: 237 $\n"
"Please provide feedback on success/failure/enhancement requests!\n"
"Check Sourceforge SVN for updates!\n");
while(true) {
switch(getopt(argc, args, "?m:i:vo:O:")) {
case -1:
goto args_done;
case 'v':
verbose = true;
break;
case 'i':
if (BitFile::styleFromString(optarg, &in_style))
{
fprintf(stderr, "Unknown format \"%s\"\n", optarg);
usage();
}
break;
case 'o':
if (BitFile::styleFromString(optarg, &out_style))
{
fprintf(stderr, "Unknown format \"%s\"\n", optarg);
usage();
}
break;
case 'm':
mapdir = optarg;
break;
case 'O':
outfile = optarg;
break;
case '?':
case 'h':
default:
usage();
}
}
args_done:
argc -= optind;
args += optind;
if(argc < 1)
usage();
MapFile_XC2C map;
JedecFile fuses;
BitFile bits;
if (*args[0] == '-')
fp = stdin;
else
{
fp=fopen(args[0],"rb");
if(!fp)
{
fprintf(stderr, "Can't open datafile %s: %s\n", args[0],
strerror(errno));
return 1;
}
}
if (fuses.readFile(fp) == 0)
{
if (verbose)
fprintf(stderr,"Jedecfile %s for %s: %d Fuses, Checksum: 0x%04x\n",
args[0], fuses.getDevice(), fuses.getLength(),
fuses.getChecksum());
strncpy(device, fuses.getDevice(), 255);
}
else
{
if (*args[0] == '-')
fp = stdin;
else
{
fp=fopen(args[0],"rb");
if(!fp)
{
fprintf(stderr, "Can't open datafile %s: %s\n", args[0],
strerror(errno));
return 1;
}
}
if (bits.readFile(fp, in_style) == 0 )
{
if (verbose)
fprintf(stderr,"Got Bitfile for Device %s: %d Fuses\n",
bits.getPartName(), bits.getLength());
revert = true;
strncpy(device, bits.getPartName(), 255);
}
else
{
fprintf(stderr, "File %s not recognized as Bit- or Jedecfile\n",
args[0]);
return 3;
}
}
if (map.loadmapfile(mapdir, device))
{
fprintf(stderr, "failed to load Mapfile %s, aborting\n",
map.GetFilename());
return 2;
}
if(outfile)
{
fp = fopen(outfile,"wb");
if (!fp)
{
fprintf(stderr, "failed to open %s: %s\n", outfile,
strerror(errno));
return 1;
}
}
else return 0;
if (revert)
{
map.bitfile2jedecfile(&bits, &fuses);
fprintf(stderr, "Device %s: %d Fuses, Checksum calculated: 0x%04x,"
" Checksum from file 0x%04x\n",
fuses.getDevice(), fuses.getLength(), fuses.calcChecksum(),
fuses.getChecksum());
fuses.saveAsJed( device, fp);
}
else
{
map.jedecfile2bitfile(0xFFFFFFFF, &fuses, &bits);
bits.saveAs(out_style, device, fp);
}
return 0;
}
|