4e84f08f257426ba82420a2872937fb3293621ea
1 // factory_defaults dss script
2 // Import the DSS packages into our namespace to save on typing
3 importPackage(Packages.com.ti.debug.engine.scripting);
4 importPackage(Packages.com.ti.ccstudio.scripting.environment);
5 importPackage(Packages.java.lang);
6 importPackage(Packages.java.io);
7 importPackage(Packages.java.util);
9 // Create our scripting environment object - which is the main entry point into
10 // any script and the factory for creating other Scriptable ervers and Sessions
11 var script = ScriptingEnvironment.instance()
13 var debugScriptEnv = ScriptingEnvironment.instance();
14 // program_evm environment.
15 testEnv = {};
17 // Get the Debug Server and start a Debug Session
18 var debugServer = script.getServer("DebugServer.1");
20 //***************Functions define***************************
23 function isFile(path)
24 {
25 try
26 {
27 file = new java.io.FileReader(path);
28 }
29 catch (ex)
30 {
31 return false;
32 }
34 return true;
36 }
39 //****************Get New Time Stamp***********************
40 function localTime()
41 {
42 // get time stamp
43 var currentTime = new Date();
44 var year = currentTime.getFullYear();
45 var month = currentTime.getMonth() + 1;
46 month = month + "";
47 if (month.length == 1)
48 {
49 month = "0" + month;
50 }
51 var day = currentTime.getDate();
52 var hour = currentTime.getHours();
53 var minute = currentTime.getMinutes();
54 minute = minute + "";
55 if (minute.length == 1)
56 {
57 minute = "0" + minute;
58 }
59 var second = currentTime.getSeconds();
60 second = second + "";
61 if (second.length == 1)
62 {
63 second = "0" + second;
64 }
66 return (year+"_"+month+"_"+day+"_"+hour+minute+second);
67 }
69 /**
70 * Get error code from the given exception.
71 * @param {exception} The exception from which to get the error code.
72 */
73 function getErrorCode(exception)
74 {
75 var ex2 = exception.javaException;
76 if (ex2 instanceof Packages.com.ti.ccstudio.scripting.environment.ScriptingException) {
77 return ex2.getErrorID();
78 }
79 return 0;
80 }
81 function fileCopy(source,destination)
82 {
83 inputFile = new File(source);
84 outputFile = new File(destination);
85 infile = new java.io.FileReader(inputFile);
86 out = new java.io.FileWriter(outputFile);
87 var c;
89 while ((c = infile.read()) != -1)
90 out.write(c);
92 infile.close();
93 out.close();
94 }
96 function pausecomp(millis)
97 {
98 var date = new Date();
99 var curDate = null;
100 do { curDate = new Date(); }
101 while(curDate-date < millis)
102 {
103 //print("Waiting "+millis+"ms...\r\n")
104 }
105 }
107 //*******************************************
108 // Declarations and Inititalizations
109 var nandwriter_dir = java.lang.System.getProperty("user.dir");
110 var dss_script_dir = java.lang.System.getenv("DSS_SCRIPT_DIR");
111 var host_os = "";
112 var script_logs = nandwriter_dir+"/logs/";
113 var script_configs = nandwriter_dir+"/configs/";
114 var script_binaries = nandwriter_dir+"/binaries/";
115 var targetConfig = "";
116 var writeAll = false;
117 var writerImages = "";
118 var big_endian = false;
119 var targetFlag = "unknown";
120 var targetConfig = "unknown";
121 var emul560 = false;
122 var xds200 = false;
123 var emulation_spec = "onboard XDS100";
124 testEnv.cioFile = null;
126 if (java.lang.System.getProperty("os.name").match(/Linux/i))
127 {
128 host_os = "-linuxhost";
129 }
131 // Parse the arguments
132 if (arguments.length > 0 && arguments.length < 3)
133 {
134 // parse the board spec
135 var board_spec = arguments[0].toLowerCase();
136 board_spec = board_spec.replace(/^tmd(x|s)/, "");
137 board_spec = board_spec.replace(/^evmc/, "evm");
139 // find endian, user wants
140 if (board_spec.match(/-be$/))
141 {
142 big_endian = true;
143 board_spec = board_spec.replace(/-be$/, "");
144 }
145 else
146 board_spec = board_spec.replace(/-le$/, "");
148 // find onboard emulation option for this board
149 if (board_spec.match(/lx?e$/))
150 {
151 emul560 = true;
152 emulation_spec = "XDS560 mezzanine";
153 board_spec = board_spec.replace(/e$/, "");
154 }
156 if (board_spec.match(/ls$/))
157 {
158 xds200 = true;
159 emulation_spec = "XDS200 emulator";
160 board_spec = board_spec.replace(/ls$/, "l");
161 }
163 // for now, use the same software for lx and l variants
164 board_spec = board_spec.replace(/lx$/, "l");
166 // for now, treat evm6618l as an alias for evm6670l
167 board_spec = board_spec.replace(/evm6618/, "evm6670");
169 targetFlag = board_spec;
171 endian_spec = (big_endian ? "-be" : "");
173 board_binaries = script_binaries + targetFlag + endian_spec + "/";
174 targetConfig = java.lang.System.getenv("PROGRAM_EVM_TARGET_CONFIG_FILE");
175 if (!targetConfig)
176 targetConfig = script_configs + targetFlag + "/" + targetFlag + (emul560 ? "e" : "") + (xds200 ? "s" : "") + host_os + ".ccxml";
178 print("board: " + targetFlag);
179 print("endian: " + (big_endian ? "Big" : "Little"));
180 print("emulation: " + emulation_spec);
181 print("binaries: " + board_binaries);
182 print("ccxml: " + targetConfig);
184 var dir = new File(board_binaries);
185 if (!dir.exists())
186 {
187 print("board binaries directory not found");
188 java.lang.System.exit(2);
189 }
191 if(arguments[1])
192 writerImages = arguments[1];
193 else
194 writeAll = true;
195 }
196 else
197 {
198 print("Syntax error in command line");
199 print("Syntax: program_evm.js [tmdx|tmds]evm[c](<device>)l[x][e][-le|-be] [images_to_write]")
201 print(" tmdx: TMDX type EVM")
202 print(" tmds: TMDS type EVM")
203 print(" c: Not used, for backward compatibility")
204 print(" <device> is the board name e.g 6472,6678 etc")
205 print(" l: Low cost EVM")
206 print(" x: EVM supports encryption")
207 print(" e: EVM uses 560 Mezzanine Emulator daughter card")
208 print(" le: Little Endian")
209 print(" be: Big Endian")
211 print(" example: TMDXEVM6678L-le")
212 print(" [images_to_write] OPTIONAL is a list of the images to be written")
213 print(" example: eeprom50,nor")
214 print(" If not specified all (eeprom50,eeprom51,nand,nor) will be written")
215 java.lang.System.exit(0);
216 }
218 var i2cwriterbinary = board_binaries + "eepromwriter_" + targetFlag + ".out";
219 var nandwriterbinary = board_binaries + "nandwriter_" + targetFlag + ".out";
220 var norwriterbinary = board_binaries + "norwriter_" + targetFlag + ".out";
221 var eepromwriter_input51 = board_binaries + "eepromwriter_input51.txt";
222 var eepromwriter_input50 = board_binaries + "eepromwriter_input50.txt";
223 var eepromwriter_input = board_binaries + "eepromwriter_input.txt";
224 var eeprom50 = board_binaries + "eeprom50.bin";
225 var eeprom51 = board_binaries + "eeprom51.bin";
226 var nand = board_binaries + "nand.bin";
227 var nor = board_binaries + "nor.bin";
229 // Note: nAddress is the load address for using eepromwriter.
230 // nandNorAddress is the address used for nandwriter and norwriter.
231 switch (targetFlag)
232 {
233 case "evm6457l":
234 cpu_id = "C64XP_1";
235 var nAddress = 0x800000;
236 var nandNorAddress = nAddress;
237 var iblByteSwap = false;
238 break;
239 case "evm6474l":
240 cpu_id = "C64XP_0";
241 var nAddress = 0x800000;
242 var nandNorAddress = nAddress;
243 var iblByteSwap = false;
244 break;
245 case "evm6455":
246 cpu_id = "C64XP_0";
247 var nAddress = 0x800000;
248 var nandNorAddress = nAddress;
249 var iblByteSwap = false;
250 break;
251 case "evm6474":
252 cpu_id = "C64XP_1A";
253 var nAddress = 0x800000;
254 var nandNorAddress = nAddress;
255 var iblByteSwap = false;
256 break;
257 case "evm6472l":
258 cpu_id = "C64XP_A";
259 var nAddress = 0x800000;
260 var nandNorAddress = nAddress;
261 var iblByteSwap = false;
262 break;
263 case "evm6670l":
264 cpu_id = "C66xx_0";
265 var nAddress = 0x0C000000;
266 var nandNorAddress = 0x80000000;
267 var iblByteSwap = false;
268 break;
269 case "evm6678l":
270 cpu_id = "C66xx_0";
271 var nAddress = 0x0C000000;
272 var nandNorAddress = 0x80000000;
273 var iblByteSwap = false;
274 break;
275 case "evm6657l":
276 cpu_id = "C66xx_0";
277 var nAddress = 0x0C000000;
278 var nandNorAddress = 0x80000000;
279 var iblByteSwap = false;
280 break;
281 case "evmk2h":
282 cpu_id = "C66xx_0";
283 var nAddress = 0x0C000000;
284 var nandNorAddress = 0x80000000;
285 var iblByteSwap = false;
286 break;
287 default:
288 script.traceWrite("Could not file cpu id for target " + targetFlag + "\n");
291 }
293 start = localTime();
294 testEnv.cioFile = script_logs+targetFlag+"_"+start+"-cio"+".txt";
295 // Create a log file in the current directory to log script execution
296 script.traceBegin(script_logs+targetFlag+"_"+start+"-trace"+".txt")
298 // Configure target
299 debugServer.setConfig(targetConfig);
300 pausecomp(1000);
301 debugSession = debugServer.openSession("*",cpu_id);
303 if (testEnv.cioFile != null)
304 debugSession.beginCIOLogging(testEnv.cioFile);
305 pausecomp(1000);
306 debugSession.target.connect();
307 pausecomp(1000);
308 debugSession.target.reset();
309 pausecomp(1000);
311 //POST
312 if(writeAll || writerImages.match(/eeprom50/))
313 {
314 //Write EEPROM
315 start = localTime();
316 script.traceWrite("Start writing eeprom50");
317 script.traceWrite("Writer:" + i2cwriterbinary + "\r\n");
318 script.traceWrite("Image:" + eeprom50 + "\r\n");
319 if (isFile(i2cwriterbinary) && isFile(eeprom50))
320 {
321 fileCopy(eepromwriter_input50,eepromwriter_input);
322 debugSession.memory.loadProgram(i2cwriterbinary);
323 var nPage = 0x0;
324 // var nAddress = 0x80000000;
325 var sFilename = eeprom50 ;
326 var nTypeSize = 32;
327 var bByteSwap = false;
328 try
329 {
330 debugSession.memory.loadRaw(nPage, nAddress, sFilename, nTypeSize, bByteSwap);
331 }
332 catch (ex)
333 {
334 errCode = getErrorCode(ex);
335 script.traceWrite("Error code #" + errCode + ", could not load file " + sFilename +
336 " to target memory!");
337 }
338 debugSession.target.run()
339 end = localTime();
340 }
341 else
342 {
343 script.traceWrite("Required EEPROM50 files do not exist in " + board_binaries + "\n");
345 }
346 }
348 //IBL
349 if(writeAll || writerImages.match(/eeprom51/))
350 {
351 start = localTime();
352 script.traceWrite("Start writing eeprom51");
353 script.traceWrite("Writer:" + i2cwriterbinary + "\r\n");
354 script.traceWrite("Image:" + eeprom51 + "\r\n");
356 if (isFile(i2cwriterbinary) && isFile(eeprom51))
357 {
358 fileCopy(eepromwriter_input51,eepromwriter_input);
359 debugSession.memory.loadProgram(i2cwriterbinary);
360 var nPage = 0x0;
361 // var nAddress = 0x80000000;
362 var sFilename = eeprom51;
363 var nTypeSize = 32;
364 var bByteSwap = iblByteSwap;
365 try
366 {
367 debugSession.memory.loadRaw(nPage, nAddress, sFilename, nTypeSize, bByteSwap);
368 }
369 catch (ex)
370 {
371 errCode = getErrorCode(ex);
372 script.traceWrite("Error code #" + errCode + ", could not load file " + sFilename +
373 " to target memory!");
374 }
376 debugSession.target.run()
377 end = localTime();
378 }
379 else
380 {
381 script.traceWrite("Required EEPROM51 files do not exist in " + board_binaries + "\n");
383 }
384 }
387 //NAND
388 if(writeAll || writerImages.match(/nand/))
389 {
390 if (writerImages.match(/format/))
391 {
392 /* No action is taken for NAND since it is format*/
393 }
394 else
395 {
396 start_nand = localTime();
397 script.traceWrite("Writer:" + nandwriterbinary + "\r\n");
398 script.traceWrite("NAND:" + nand + "\r\n");
399 if (isFile(nand) && isFile(nandwriterbinary))
400 {
401 debugSession.memory.loadProgram(nandwriterbinary);
402 var nPage = 0x0;
403 // var nAddress = 0x80000000;
404 var sFilename = nand;
405 var nTypeSize = 32;
406 var bByteSwap = false;
408 try
409 {
410 script.traceWrite("Start loading nand.bin");
411 debugSession.memory.loadRaw(nPage, nandNorAddress, sFilename, nTypeSize, bByteSwap);
413 }
414 catch (ex)
415 {
416 errCode = getErrorCode(ex);
417 script.traceWrite("Error code #" + errCode + ", could not load file " + sFilename +
418 " to target memory!");
419 }
420 script.traceWrite("Start programming NAND");
421 debugSession.target.run()
422 script.traceWrite("End programming NAND");
423 end_nand = localTime();
424 }
425 else
426 {
427 script.traceWrite("Required NAND files does not exist in " + board_binaries + "\n");
429 }
430 }
431 }
433 //FORMAT the flash
434 if (writerImages.match(/format/))
435 {
436 //NAND Erase all
437 if (writerImages.match(/nand/))
438 {
439 start_nand = localTime();
440 script.traceWrite("Writer:" + nandwriterbinary + "\r\n");
441 if (isFile(nandwriterbinary))
442 {
443 debugSession.memory.loadProgram(nandwriterbinary);
444 var nPage = 0x0;
445 var nValue = 0x12345678;
447 try
448 {
449 script.traceWrite("Formatting NAND device ... Initiated");
450 // Get the address of that symbol
451 var flag_address = debugSession.symbol.getAddress("nand_erase_flag")
452 debugSession.memory.writeWord(nPage, flag_address, nValue);
453 }
454 catch (ex)
455 {
456 errCode = getErrorCode(ex);
457 script.traceWrite("Error code #" + errCode + ", could not set the nandwriter for erasing all nand blocks! ");
458 }
459 debugSession.target.run()
460 script.traceWrite("Formatting NAND device ...Completed");
461 end_nand = localTime();
462 }
463 else
464 {
465 script.traceWrite("Required NAND binary does not exist in " + board_binaries + "\n");
467 }
468 }
469 else
470 {
471 /* No action is taken */
472 script.traceWrite("FLASH FORMAT - No Action is taken, please provide the supported format command string, e.g., format-nand");
473 }
475 if (testEnv.cioFile != null)
476 {
477 // Stop CIO logging.
478 debugSession.endCIOLogging();
479 }
481 debugSession.terminate();
482 debugServer.stop()
484 // Stop logging and exit.
485 script.traceEnd();
486 java.lang.System.exit(0);
488 }
490 //NOR
491 if(writeAll || writerImages.match(/nor/))
492 {
493 start_nor = localTime();
494 script.traceWrite("Writer:" + norwriterbinary + "\r\n");
495 script.traceWrite("NOR:" + nor + "\r\n");
498 if (isFile(nor) && isFile(norwriterbinary))
499 {
501 debugSession.memory.loadProgram(norwriterbinary);
502 var nPage = 0x0;
503 // var nAddress = 0x80000000;
504 var sFilename = nor ;
505 var nTypeSize = 32;
506 var bByteSwap = false;
507 try
508 {
509 script.traceWrite("Start loading nor.bin");
510 debugSession.memory.loadRaw(nPage, nandNorAddress, sFilename, nTypeSize, bByteSwap);
512 }
513 catch (ex)
514 {
515 errCode = getErrorCode(ex);
516 script.traceWrite("Error code #" + errCode + ", could not load file " + sFilename +
517 " to target memory!");
518 }
519 script.traceWrite("Start programming NOR");
520 script.traceWrite(localTime());
521 debugSession.target.run()
522 script.traceWrite("End programming NOR");
523 end_nor = localTime();
524 }
525 else
526 {
527 script.traceWrite("Required NOR files does not exist in " + board_binaries + "\n");
529 }
531 }
533 if (testEnv.cioFile != null)
534 {
535 // Stop CIO logging.
536 debugSession.endCIOLogging();
537 }
539 debugSession.terminate();
540 debugServer.stop()
542 // Stop logging and exit.
543 script.traceEnd();
544 java.lang.System.exit(0);