X-Git-Url: http://git.rot13.org/?p=goodfet;a=blobdiff_plain;f=client%2FGoodFETMSP430.py;h=671bccd0779fd70e93b623dfd48f59f97ff42a89;hp=580534b7ad0b4b65eca6534b1b75c2ecc8886c9e;hb=598bfb091e51a8d5b7e463bd834203d677d99977;hpb=2e3eabe60e117a56637fd1ca621152826e84e05b diff --git a/client/GoodFETMSP430.py b/client/GoodFETMSP430.py index 580534b..671bccd 100644 --- a/client/GoodFETMSP430.py +++ b/client/GoodFETMSP430.py @@ -10,12 +10,13 @@ import sys, time, string, cStringIO, struct, glob, serial, os; from GoodFET import GoodFET; class GoodFETMSP430(GoodFET): + APP=0x11; MSP430APP=0x11; #Changed by inheritors. CoreID=0; DeviceID=0; JTAGID=0; MSP430ident=0; - def MSP430setup(self): + def setup(self): """Move the FET into the MSP430 JTAG application.""" self.writecmd(self.MSP430APP,0x10,0,None); @@ -29,26 +30,32 @@ class GoodFETMSP430(GoodFET): CoreID=ord(self.data[0])+(ord(self.data[1])<<8); return CoreID; def MSP430deviceid(self): - """Get the Core ID.""" + """Get the Device ID.""" self.writecmd(self.MSP430APP,0xF1); DeviceID=( ord(self.data[0])+(ord(self.data[1])<<8)+ (ord(self.data[2])<<16)+(ord(self.data[3])<<24)); return DeviceID; + def peek16(self,adr,memory="vn"): + return self.MSP430peek(adr); + def peek8(self,address, memory="vn"): + adr=self.MSP430peek(adr&~1); + if adr&1==0: return adr&0xFF; + else: return adr>>8; def MSP430peek(self,adr): """Read a word at an address.""" self.data=[adr&0xff, (adr&0xff00)>>8, (adr&0xff0000)>>16,(adr&0xff000000)>>24, - ]; - self.writecmd(self.MSP430APP,0x02,4,self.data,1); + ]; + self.writecmd(self.MSP430APP,0x02,4,self.data); + return ord(self.data[0])+(ord(self.data[1])<<8); - def MSP430peekblock(self,adr,blocks=1): + def MSP430peekblock(self,adr): """Grab a few block from an SPI Flash ROM. Block size is unknown""" data=[adr&0xff, (adr&0xff00)>>8, (adr&0xff0000)>>16,(adr&0xff000000)>>24, - blocks]; - - self.writecmd(self.MSP430APP,0x02,5,data,blocks); + 0x00,0x04]; + self.writecmd(self.MSP430APP,0x02,6,data); return self.data; def MSP430poke(self,adr,val): @@ -65,15 +72,22 @@ class GoodFETMSP430(GoodFET): val&0xff, (val&0xff00)>>8]; self.writecmd(self.MSP430APP,0xE1,6,self.data); return ord(self.data[0])+(ord(self.data[1])<<8); - - def MSP430start(self): + def MSP430pokeflashblock(self,adr,data): + """Write many words to flash memory at an address.""" + self.data=[adr&0xff, (adr&0xff00)>>8, + (adr&0xff0000)>>16,(adr&0xff000000)>>24]+data; + #print "Writing %i bytes to %x" % (len(data),adr); + #print "%2x %2x %2x %2x ..." % (data[0], data[1], data[2], data[3]); + self.writecmd(self.MSP430APP,0xE1,len(self.data),self.data); + return ord(self.data[0])+(ord(self.data[1])<<8); + def start(self): """Start debugging.""" self.writecmd(self.MSP430APP,0x20,0,self.data); self.JTAGID=ord(self.data[0]); #print "Identified as %02x." % self.JTAGID; if(not (self.JTAGID==0x89 or self.JTAGID==0x91)): - print "Error, misidentified as %02x." % self.JTAGID; - + print "Error, misidentified as %02x.\nCheck wiring, as this should be 0x89 or 0x91." % self.JTAGID; + self.MSP430haltcpu(); def MSP430haltcpu(self): """Halt the CPU.""" self.writecmd(self.MSP430APP,0xA0,0,self.data); @@ -117,15 +131,15 @@ class GoodFETMSP430(GoodFET): 0xf249: "MSP430F24x", 0xf26f: "MSP430F261x", 0xf237: "MSP430F23x0", - + 0xf201: "MSP430F201x", #MSP430F1xx 0xf16c: "MSP430F161x", - 0xf149: "MSP430F13x", #or f14x(1) - 0xf112: "MSP430F11x", #or f11x1 + 0xf149: "MSP430F13x", #or f14x(1) + 0xf112: "MSP430F11x", #or f11x1 0xf143: "MSP430F14x", - 0xf112: "MSP430F11x", #or F11x1A - 0xf123: "MSP430F1xx", #or F123x + 0xf112: "MSP430F11x", #or F11x1A + 0xf123: "MSP430F1xx", #or F123x 0x1132: "MSP430F1122", #or F1132 0x1232: "MSP430F1222", #or F1232 0xf169: "MSP430F16x", @@ -139,8 +153,10 @@ class GoodFETMSP430(GoodFET): } def MSP430test(self): """Test MSP430 JTAG. Requires that a chip be attached.""" + if self.MSP430ident()==0xffff: - print "Is anything connected?"; + print "ERROR Is anything connected?"; + print "Testing %s." % self.MSP430identstr(); print "Testing RAM from 200 to 210."; for a in range(0x200,0x210): self.MSP430poke(a,0); @@ -174,18 +190,15 @@ class GoodFETMSP430(GoodFET): print "Tests complete, erasing." self.MSP430masserase(); - def MSP430flashtest(self): - self.MSP430masserase(); - i=0x2500; - while(i<0xFFFF): - if(self.MSP430peek(i)!=0xFFFF): - print "ERROR: Unerased flash at %04x."%i; - self.MSP430writeflash(i,0xDEAD); - i+=2; def MSP430masserase(self): """Erase MSP430 flash memory.""" self.writecmd(self.MSP430APP,0xE3,0,None); - + def MSP430setPC(self, pc): + """Set the program counter.""" + self.writecmd(self.MSP430APP,0xC2,2,[pc&0xFF,(pc>>8)&0xFF]); + def MSP430run(self): + """Reset the MSP430 to run on its own.""" + self.writecmd(self.MSP430APP,0x21,0,None); def MSP430dumpbsl(self): self.MSP430dumpmem(0xC00,0xfff); def MSP430dumpallmem(self):