X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=firmware%2Fapps%2Fchipcon%2Fchipcon.c;h=ce0a9ff03c06387b54cb4d82d29d07f2a7d4ed33;hb=5e18fb77f7a1bb37e805ac8941c1a6a59c631903;hp=6c910e725d4b52e87ec106fda3f8ff4282c7002c;hpb=d9b3b0d57da47a1736a6af0a10b5fa96a03fe6e0;p=goodfet diff --git a/firmware/apps/chipcon/chipcon.c b/firmware/apps/chipcon/chipcon.c index 6c910e7..ce0a9ff 100644 --- a/firmware/apps/chipcon/chipcon.c +++ b/firmware/apps/chipcon/chipcon.c @@ -37,7 +37,8 @@ //This could be more accurate. //Does it ever need to be? #define CCSPEED 3 -#define CCDELAY(x) delay(x) +//#define CCDELAY(x) delay(x) +#define CCDELAY(x) #define SETMOSI P5OUT|=MOSI #define CLRMOSI P5OUT&=~MOSI @@ -52,29 +53,51 @@ void ccsetup(){ P5OUT|=MOSI+SCK+RST; P5DIR|=MOSI+SCK+RST; - //P5DIR&=~MISO; //MOSI is MISO + //P5REN=0xFF; } + +/* 33 cycle critical region +0000000e : + e: f2 d0 0d 00 bis.b #13, &0x0031 ;5 cycles + 12: 31 00 + 14: f2 c2 31 00 bic.b #8, &0x0031 ;4 cycles + 18: d2 c3 31 00 bic.b #1, &0x0031 ;4 + 1c: f2 e2 31 00 xor.b #8, &0x0031 ;4 + 20: f2 e2 31 00 xor.b #8, &0x0031 ;4 + 24: f2 e2 31 00 xor.b #8, &0x0031 ;4 + 28: f2 e2 31 00 xor.b #8, &0x0031 ;4 + 2c: d2 d3 31 00 bis.b #1, &0x0031 ;4 + 30: 30 41 ret +*/ + +/* //! Initialize the debugger void ccdebuginit(){ + //Port output BUT NOT DIRECTION is set at start. + P5OUT|=MOSI+SCK+RST; + + //delay(30); //So the beginning is ready for glitching. + //Two positive debug clock pulses while !RST is low. //Take RST low, pulse twice, then high. P5OUT&=~SCK; P5OUT&=~RST; - //pulse twice - CCDELAY(CCSPEED); - P5OUT|=SCK; //up - CCDELAY(CCSPEED); - P5OUT&=~SCK; //down - CCDELAY(CCSPEED); - P5OUT|=SCK; //up - CCDELAY(CCSPEED); - P5OUT&=~SCK; //down + //Two rising edges. + P5OUT^=SCK; //up + P5OUT^=SCK; //down + P5OUT^=SCK; //up + P5OUT^=SCK; //Unnecessary. + //Raise !RST. P5OUT|=RST; } +*/ + +//! Initialize the debugger. +void ccdebuginit(); //! Read and write a CC bit. unsigned char cctrans8(unsigned char byte){ @@ -145,14 +168,12 @@ void cchandle(unsigned char app, if(cmddata[0]&0x4) ccread(1); txdata(app,verb,1); - break; case WRITE: //Write a command with no reply. cccmd(len); txdata(app,verb,0); break; case START://enter debugger - ccsetup(); ccdebuginit(); txdata(app,verb,0); break; @@ -465,12 +486,12 @@ void cc_write_flash_page(u32 adr){ cmddata[1]=0xc7; cmddata[2]=0x51; cc_debug_instr(3); - debugstr("Loaded bank info."); + //debugstr("Loaded bank info."); cc_set_pc(0xf000+MAXFLASHPAGE_SIZE);//execute code fragment cc_resume(); - debugstr("Executing."); + //debugstr("Executing."); while(!(cc_read_status()&CC_STATUS_CPUHALTED)){ @@ -478,7 +499,7 @@ void cc_write_flash_page(u32 adr){ } - debugstr("Done flashing."); + //debugstr("Done flashing."); P1OUT&=~1;//clear LED }