mirror of https://github.com/contiki-ng/mspsim
127 lines
3.9 KiB
Java
127 lines
3.9 KiB
Java
/**
|
|
* Copyright (c) 2007, Swedish Institute of Computer Science.
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions are met:
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
* 3. Neither the name of the Institute nor the names of its contributors
|
|
* may be used to endorse or promote products derived from this software
|
|
* without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
* SUCH DAMAGE.
|
|
*
|
|
* This file is part of MSPSim.
|
|
*
|
|
* $Id$
|
|
*
|
|
* -----------------------------------------------------------------
|
|
*
|
|
* Utils
|
|
*
|
|
* Author : Joakim Eriksson, Niclas Finne
|
|
* Created : Sun Oct 21 22:00:00 2007
|
|
* Updated : $Date$
|
|
* $Revision$
|
|
*/
|
|
package se.sics.mspsim.util;
|
|
import java.io.IOException;
|
|
|
|
import se.sics.mspsim.config.MSP430f1611Config;
|
|
import se.sics.mspsim.core.*;
|
|
|
|
/**
|
|
* Test - tests a firmware file and exits when reporting "FAIL:" first
|
|
* on a line...
|
|
*/
|
|
public class Test implements USARTListener {
|
|
|
|
private StringBuilder lineBuffer = new StringBuilder();
|
|
private MSP430 cpu;
|
|
|
|
public Test(MSP430 cpu) {
|
|
this.cpu = cpu;
|
|
IOUnit usart = cpu.getIOUnit("USART 1");
|
|
if (usart instanceof USART) {
|
|
((USART) usart).addUSARTListener(this);
|
|
}
|
|
}
|
|
|
|
public void dataReceived(USARTSource source, int data) {
|
|
if (data == '\n') {
|
|
String line = lineBuffer.toString();
|
|
lineBuffer.setLength(0);
|
|
System.out.println("#|" + line);
|
|
if (line.startsWith("FAIL:")) {
|
|
System.exit(0);
|
|
} else if (line.startsWith("EXIT")) {
|
|
System.out.println("Tests succeded!");
|
|
System.exit(0);
|
|
} else if (line.startsWith("DEBUG")) {
|
|
cpu.setDebug(true);
|
|
} else if (line.startsWith("PROFILE")) {
|
|
cpu.getProfiler().printProfile(System.out);
|
|
} else if (line.startsWith("CLEARPROFILE")) {
|
|
cpu.getProfiler().clearProfile();
|
|
}
|
|
} else {
|
|
lineBuffer.append((char) data);
|
|
}
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
MSP430 cpu = new MSP430(0, new ComponentRegistry(), new MSP430f1611Config());
|
|
int index = 0;
|
|
if (args[index].startsWith("-")) {
|
|
// Flag
|
|
if ("-debug".equalsIgnoreCase(args[index])) {
|
|
cpu.setDebug(true);
|
|
} else {
|
|
System.err.println("Unknown flag: " + args[index]);
|
|
System.exit(1);
|
|
}
|
|
index++;
|
|
}
|
|
|
|
try {
|
|
int[] memory = cpu.memory;
|
|
ELF elf = ELF.readELF(args[index++]);
|
|
elf.loadPrograms(memory);
|
|
MapTable map = elf.getMap();
|
|
cpu.getDisAsm().setMap(map);
|
|
cpu.setMap(map);
|
|
cpu.reset();
|
|
|
|
// Create the "tester"
|
|
new Test(cpu);
|
|
try {
|
|
cpu.cpuloop();
|
|
} catch (Exception e) {
|
|
e.printStackTrace();
|
|
}
|
|
} catch (IOException ioe) {
|
|
ioe.printStackTrace();
|
|
}
|
|
|
|
}
|
|
|
|
public void stateChanged(int state) {
|
|
// TODO Auto-generated method stub
|
|
|
|
}
|
|
}
|