summaryrefslogtreecommitdiffstats
blob: 17c92c674ce25d95390412ecf09df91aaf9ff075 (plain) (blame)
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
// factory_defaults dss script
// Import the DSS packages into our namespace to save on typing
importPackage(Packages.com.ti.debug.engine.scripting);
importPackage(Packages.com.ti.ccstudio.scripting.environment);
importPackage(Packages.java.lang);
importPackage(Packages.java.io);
importPackage(Packages.java.util);

// Create our scripting environment object - which is the main entry point into
// any script and the factory for creating other Scriptable ervers and Sessions
var script = ScriptingEnvironment.instance()

var debugScriptEnv = ScriptingEnvironment.instance();
// program_evm environment.
testEnv = {};

// Get the Debug Server and start a Debug Session
var debugServer = script.getServer("DebugServer.1");

//***************Functions define***************************


function isFile(path)
{
	try
	{   
		file = new java.io.FileReader(path);
	}
	catch (ex)
	{
		return false;
	}

	return true;

}


//****************Get New Time Stamp***********************
function localTime()
{
	// get time stamp
	var currentTime = new Date();
	var year = currentTime.getFullYear();
	var month = currentTime.getMonth() + 1;
	month = month + "";
	if (month.length == 1)
	{
		month = "0" + month;
	}
	var day = currentTime.getDate();
	var hour = currentTime.getHours();
	var minute = currentTime.getMinutes();
	minute = minute + "";
	if (minute.length == 1)
	{
		minute = "0" + minute;
	}
	var second = currentTime.getSeconds();
	second = second + "";
	if (second.length == 1)
	{
		second = "0" + second;
	}
    
	return (year+"_"+month+"_"+day+"_"+hour+minute+second);
}

/**
 * Get error code from the given exception.
 * @param {exception} The exception from which to get the error code.
 */
function getErrorCode(exception)
{
	var ex2 = exception.javaException;
	if (ex2 instanceof Packages.com.ti.ccstudio.scripting.environment.ScriptingException) {
		return ex2.getErrorID();
	}
	return 0;
}
function fileCopy(source,destination)
{
	inputFile = new File(source);
    outputFile = new File(destination);
    infile = new  java.io.FileReader(inputFile);
    out = new java.io.FileWriter(outputFile);
    var c;

    while ((c = infile.read()) != -1)
      out.write(c);

    infile.close();
    out.close();
}

function pausecomp(millis)
 {
  var date = new Date();
  var curDate = null;
  do { curDate = new Date(); }
  while(curDate-date < millis)
  { 
  //print("Waiting "+millis+"ms...\r\n") 
  }
}

//*******************************************
// Declarations and Inititalizations
var nandwriter_dir    = java.lang.System.getProperty("user.dir");
var dss_script_dir    = java.lang.System.getenv("DSS_SCRIPT_DIR");
var host_os           = "";
var script_logs    = nandwriter_dir+"/logs/";
var script_configs = nandwriter_dir+"/configs/";
var script_binaries = nandwriter_dir+"/binaries/";
var targetConfig = "";
var writeAll = false;
var writerImages = "";
var big_endian = false;
var targetFlag = "unknown";
var targetConfig = "unknown";
var emul560 = false;
var xds200 = false;
var emulation_spec = "onboard XDS100";
testEnv.cioFile = null;

if (java.lang.System.getProperty("os.name").match(/Linux/i))
{
        host_os = "-linuxhost";
}

// Parse the arguments
if (arguments.length > 0 && arguments.length < 3)
{
    // parse the board spec
    var board_spec = arguments[0].toLowerCase();
    board_spec = board_spec.replace(/^tmd(x|s)/, "");
    board_spec = board_spec.replace(/^evmc/, "evm");
    
    // find endian, user wants
    if (board_spec.match(/-be$/))
    {
        big_endian = true;
        board_spec = board_spec.replace(/-be$/, "");
    }
    else
        board_spec = board_spec.replace(/-le$/, "");
        
    // find onboard emulation option for this board 
    if (board_spec.match(/lx?e$/))
    {
        emul560 = true;
	emulation_spec = "XDS560 mezzanine";
        board_spec = board_spec.replace(/e$/, "");
    }
      
    if (board_spec.match(/ls$/))
    {
        xds200 = true;
	emulation_spec = "XDS200 emulator";
        board_spec = board_spec.replace(/ls$/, "l");
    }

    if (board_spec.match(/k2h$/))
    {
        emulation_spec = "XDS2xx emulator";
    }
	
    // for now, use the same software for lx and l variants
    board_spec = board_spec.replace(/lx$/, "l");
    
    // for now, treat evm6618l as an alias for evm6670l
    board_spec = board_spec.replace(/evm6618/, "evm6670");
        
    targetFlag = board_spec;
    
    endian_spec = (big_endian ? "-be" : "");
    
    board_binaries = script_binaries + targetFlag + endian_spec + "/";
    targetConfig = java.lang.System.getenv("PROGRAM_EVM_TARGET_CONFIG_FILE");
    if (!targetConfig)    
        targetConfig = script_configs + targetFlag + "/" + targetFlag + (emul560 ? "e" : "") + (xds200 ? "s" : "") + host_os + ".ccxml";

    print("board: " + targetFlag);
    print("endian: " + (big_endian ? "Big" : "Little"));
    print("emulation: " + emulation_spec);
    print("binaries: " + board_binaries);
    print("ccxml: " + targetConfig);
    
    var dir = new File(board_binaries);
    if (!dir.exists())
    {
        print("board binaries directory not found");
        java.lang.System.exit(2);
    }
    
    if(arguments[1])
        writerImages = arguments[1];
    else
        writeAll = true;   
}
else
{
  print("Syntax error in command line");
	print("Syntax: program_evm.js [tmdx|tmds]evm[c](<device>)l[x][e][-le|-be] [images_to_write]")
  
	print("    tmdx: TMDX type EVM")
	print("    tmds: TMDS type EVM")
	print("    c: Not used, for backward compatibility")
	print("    <device> is the board name e.g 6472,6678 etc")
	print("    l: Low cost EVM")
	print("    x: EVM supports encryption")
	print("    e: EVM uses 560 Mezzanine Emulator daughter card")
	print("    le: Little Endian")
	print("    be: Big Endian")

	print("    example: TMDXEVM6678L-le")	
	print("    [images_to_write] OPTIONAL is a list of the images to be written")
	print("    example: eeprom50,nor")
	print("    If not specified all (eeprom50,eeprom51,nand,nor) will be written")
	java.lang.System.exit(0);
}

var i2cwriterbinary = board_binaries + "eepromwriter_" + targetFlag + ".out";
var nandwriterbinary = board_binaries + "nandwriter_" + targetFlag + ".out";
var norwriterbinary = board_binaries + "norwriter_" + targetFlag + ".out";
var eepromwriter_input51 = board_binaries + "eepromwriter_input51.txt";
var eepromwriter_input50 = board_binaries + "eepromwriter_input50.txt";
var eepromwriter_input = board_binaries + "eepromwriter_input.txt";
var eeprom50 = board_binaries + "eeprom50.bin";
var eeprom51 = board_binaries + "eeprom51.bin";
var nand = board_binaries + "nand.bin";
var nor = board_binaries + "nor.bin";

// Note: nAddress is the load address for using eepromwriter.
//       nandNorAddress is the address used for nandwriter and norwriter.
switch (targetFlag)
{
	case "evm6457l":
		cpu_id = "C64XP_1";
		var nAddress = 0x800000;
		var nandNorAddress = nAddress;
		var iblByteSwap = false;
		break;
	case "evm6474l":
		cpu_id = "C64XP_0";
		var nAddress = 0x800000;
		var nandNorAddress = nAddress;
		var iblByteSwap = false;
		break;
	case "evm6455":
		cpu_id = "C64XP_0";
		var nAddress = 0x800000;
		var nandNorAddress = nAddress;
		var iblByteSwap = false;
		break;
	case "evm6474":
		cpu_id = "C64XP_1A";
		var nAddress = 0x800000;
		var nandNorAddress = nAddress;
		var iblByteSwap = false;
		break;
	case "evm6472l":
		cpu_id = "C64XP_A";
		var nAddress = 0x800000;
		var nandNorAddress = nAddress;
		var iblByteSwap = false;
		break;
	case "evm6670l":
		cpu_id = "C66xx_0";
		var nAddress = 0x0C000000;
		var nandNorAddress = 0x80000000;
		var iblByteSwap = false;
		break;
	case "evm6678l":
		cpu_id = "C66xx_0";
		var nAddress = 0x0C000000;
		var nandNorAddress = 0x80000000;
		var iblByteSwap = false;
		break;
	case "evm6657l":
		cpu_id = "C66xx_0";
		var nAddress = 0x0C000000;
		var nandNorAddress = 0x80000000;
		var iblByteSwap = false;
		break;
	case "evmk2h":
		cpu_id = "C66xx_0";
		var nAddress = 0x0C000000;
		var nandNorAddress = 0x80000000;
		var iblByteSwap = false;
        break;
	default:
		script.traceWrite("Could not file cpu id for target " + targetFlag + "\n");


}

start = localTime();
testEnv.cioFile = script_logs+targetFlag+"_"+start+"-cio"+".txt";
// Create a log file in the current directory to log script execution
script.traceBegin(script_logs+targetFlag+"_"+start+"-trace"+".txt")

// Configure target
debugServer.setConfig(targetConfig);
pausecomp(1000);
debugSession = debugServer.openSession("*",cpu_id);

if (testEnv.cioFile != null)
	debugSession.beginCIOLogging(testEnv.cioFile);
pausecomp(1000);
debugSession.target.connect();
pausecomp(1000);
debugSession.target.reset();
pausecomp(1000);

//POST
if(writeAll || writerImages.match(/eeprom50/))
{
	//Write EEPROM
	start = localTime();
	script.traceWrite("Start writing eeprom50");
	script.traceWrite("Writer:" + i2cwriterbinary + "\r\n");
	script.traceWrite("Image:" + eeprom50 + "\r\n");
	if (isFile(i2cwriterbinary) && isFile(eeprom50)) 
	{
		fileCopy(eepromwriter_input50,eepromwriter_input);
		debugSession.memory.loadProgram(i2cwriterbinary);
		var nPage = 0x0;
	//	var nAddress = 0x80000000;
		var sFilename = eeprom50 ;
		var nTypeSize = 32;
		var bByteSwap = false;
		try
		{
			debugSession.memory.loadRaw(nPage, nAddress, sFilename, nTypeSize, bByteSwap);
		}
		catch (ex)
		{
		   errCode = getErrorCode(ex);
		   script.traceWrite("Error code #" + errCode + ", could not load file " + sFilename +
					" to target memory!");
		}
		debugSession.target.run()
		end = localTime();
	}
	else
	{
		script.traceWrite("Required EEPROM50 files do not exist in " + board_binaries + "\n");
	 
	}
}

//IBL 
if(writeAll || writerImages.match(/eeprom51/))
{
	start = localTime();
	script.traceWrite("Start writing eeprom51");
	script.traceWrite("Writer:" + i2cwriterbinary + "\r\n");
	script.traceWrite("Image:" + eeprom51 + "\r\n");
	
	if (isFile(i2cwriterbinary) && isFile(eeprom51)) 
	{
		fileCopy(eepromwriter_input51,eepromwriter_input);
		debugSession.memory.loadProgram(i2cwriterbinary);
		var nPage = 0x0;
	//	var nAddress = 0x80000000;
		var sFilename = eeprom51;
		var nTypeSize = 32;
		var bByteSwap = iblByteSwap;
		try
		{
			debugSession.memory.loadRaw(nPage, nAddress, sFilename, nTypeSize, bByteSwap);
		}
		catch (ex)
		{
		   errCode = getErrorCode(ex);
		   script.traceWrite("Error code #" + errCode + ", could not load file " + sFilename +
					" to target memory!");
		}

		debugSession.target.run()
		end = localTime();
	}
	else
	{
		script.traceWrite("Required EEPROM51 files do not exist in " + board_binaries + "\n");
	 
	}
}


//NAND
if(writeAll || writerImages.match(/nand/))
{
    if (writerImages.match(/format/))
    {
       /* No action is taken for NAND since it is format*/
    }
	else
	{
    	start_nand = localTime();
    	script.traceWrite("Writer:" + nandwriterbinary + "\r\n");
    	script.traceWrite("NAND:" + nand + "\r\n");
    	if (isFile(nand) && isFile(nandwriterbinary)) 
    	{
    		debugSession.memory.loadProgram(nandwriterbinary);
    		var nPage = 0x0;
    	//	var nAddress = 0x80000000;
    		var sFilename = nand;
    		var nTypeSize = 32;
    		var bByteSwap = false;
    
    		try
    		{   
    			script.traceWrite("Start loading nand.bin");
    			debugSession.memory.loadRaw(nPage, nandNorAddress, sFilename, nTypeSize, bByteSwap);
    
    		}
    		catch (ex)
    		{
    		   errCode = getErrorCode(ex);
    		   script.traceWrite("Error code #" + errCode + ", could not load file " + sFilename +
    					" to target memory!");
    		}
    		script.traceWrite("Start programming NAND");
    		debugSession.target.run()
    		script.traceWrite("End programming NAND");
    		end_nand = localTime();
    	}
    	else
    	{
    		script.traceWrite("Required NAND files does not exist in " + board_binaries + "\n");
    	 
    	}
     }
}

//FORMAT the flash
if (writerImages.match(/format/))
{
//NAND Erase all
    if (writerImages.match(/nand/))
    {
    	start_nand = localTime();
    	script.traceWrite("Writer:" + nandwriterbinary + "\r\n");
    	if (isFile(nandwriterbinary)) 
    	{
    		debugSession.memory.loadProgram(nandwriterbinary);
    		var nPage = 0x0;
    		var nValue = 0x12345678;
    
    		try
    		{   
    			script.traceWrite("Formatting NAND device ... Initiated");
    			// Get the address of that symbol
    			var flag_address = debugSession.symbol.getAddress("nand_erase_flag")			
    			debugSession.memory.writeWord(nPage, flag_address, nValue);
    		}
    		catch (ex)
    		{
    		   errCode = getErrorCode(ex);
    		   script.traceWrite("Error code #" + errCode + ", could not set the nandwriter for erasing all nand blocks! ");
    		}
    		debugSession.target.run()
    		script.traceWrite("Formatting NAND device ...Completed");
			end_nand = localTime();
    	}
    	else
    	{
    		script.traceWrite("Required NAND binary does not exist in " + board_binaries + "\n");
    	 
    	}
    }
	else
	{ 
	  /* No action is taken */
	  script.traceWrite("FLASH FORMAT - No Action is taken, please provide the supported format command string, e.g., format-nand");
	}

    if (testEnv.cioFile != null)
    {
    	// Stop CIO logging.
    	debugSession.endCIOLogging();
    }
    
    debugSession.terminate();
    debugServer.stop()
    
    // Stop logging and exit.
    script.traceEnd();
    java.lang.System.exit(0);
	
}

//NOR
if(writeAll || writerImages.match(/nor/))
{
	start_nor = localTime();
	script.traceWrite("Writer:" + norwriterbinary + "\r\n");
	script.traceWrite("NOR:" + nor + "\r\n");

	
	if (isFile(nor) && isFile(norwriterbinary)) 
	{
	
		debugSession.memory.loadProgram(norwriterbinary);
		var nPage = 0x0;
	//	var nAddress = 0x80000000;
		var sFilename = nor ;
		var nTypeSize = 32;
		var bByteSwap = false;
		try
		{   
			script.traceWrite("Start loading nor.bin");
			debugSession.memory.loadRaw(nPage, nandNorAddress, sFilename, nTypeSize, bByteSwap);

		}
		catch (ex)
		{
		   errCode = getErrorCode(ex);
		   script.traceWrite("Error code #" + errCode + ", could not load file " + sFilename +
					" to target memory!");
		}
		script.traceWrite("Start programming NOR");
		script.traceWrite(localTime());
		debugSession.target.run()
		script.traceWrite("End programming NOR");
		end_nor = localTime();
    }
	else
	{
		script.traceWrite("Required NOR files does not exist in " + board_binaries + "\n");
	 
	}

}

if (testEnv.cioFile != null)
{
	// Stop CIO logging.
	debugSession.endCIOLogging();
}

debugSession.terminate();
debugServer.stop()

// Stop logging and exit.
script.traceEnd();
java.lang.System.exit(0);