Chipcon support is coming along.
authortravisutk <travisutk@12e2690d-a6be-4b82-a7b7-67c4a43b65c8>
Tue, 9 Jun 2009 22:08:35 +0000 (22:08 +0000)
committertravisutk <travisutk@12e2690d-a6be-4b82-a7b7-67c4a43b65c8>
Tue, 9 Jun 2009 22:08:35 +0000 (22:08 +0000)
All simple macros except instruction execution.
Nothing has been tested; I'm still waiting on hardware.

git-svn-id: https://svn.code.sf.net/p/goodfet/code/trunk@33 12e2690d-a6be-4b82-a7b7-67c4a43b65c8

firmware/apps/Makefile
firmware/apps/chipcon/chipcon.c [new file with mode: 0644]
firmware/include/chipcon.h [new file with mode: 0644]
firmware/include/command.h

index 2c99c0d..7228f2c 100644 (file)
@@ -10,14 +10,23 @@ GCCINC=-T ../ldscripts/161x.x
 
 CC=msp430-gcc -g -mmcu=$(mcu) -DGCC $(GCCINC) -I ../include
 
-apps= monitor/monitor.c spi/spi.c i2c/i2c.c
+apps= monitor/monitor.c spi/spi.c i2c/i2c.c chipcon/chipcon.c
 libs= ../lib/msp430f1612.c ../lib/command.c
 app=goodfet
 
+all: $(app)
+
+goodfet.hex: goodfet
+
+
 install: $(app)
        $(BSL) -e -p $(app) 
        $(BSL) -P $(app) -r
 $(app): $(app).c $(libs) $(apps)
+$(app).hex: $(app)
+       msp430-objcopy goodfet -O ihex goodfet.hex
+m4s: $(app).hex
+       msp430-objdump -D -m msp430 $(app).hex | m4s init
 erase:
        $(BSL) -e 
 clean:
diff --git a/firmware/apps/chipcon/chipcon.c b/firmware/apps/chipcon/chipcon.c
new file mode 100644 (file)
index 0000000..2748a58
--- /dev/null
@@ -0,0 +1,305 @@
+//GoodFET ChipCon Debugging Application
+//Handles basic I/O for the Chipcon 8051 debugging protocol.
+
+//Higher level left to client application.
+
+//This is like SPI, except that you read or write, not both.
+
+/** N.B. The READ verb performs a write of all (any) supplied data,
+    then reads a single byte reply from the target.  The WRITE verb
+    only writes.
+*/
+
+//This is REALLY untested.
+
+#include "platform.h"
+#include "command.h"
+#include "chipcon.h"
+
+#include <signal.h>
+#include <io.h>
+#include <iomacros.h>
+
+
+/** Concerning clock rates,
+    the maximimum clock rates are defined on page 4 of the spec.
+    They vary, but are roughly 30MHz.  Raising this clock rate might
+    allow for clock glitching, but the GoodFET isn't sufficient fast for that.
+    Perhaps a 200MHz ARM or an FPGA in the BadassFET?
+*/
+
+//Pins and I/O
+//MISO and MOSI are the same pin, direction changes.
+#define RST  BIT0
+#define MOSI BIT2
+#define MISO BIT2
+#define SCK  BIT3
+
+//This could be more accurate.
+//Does it ever need to be?
+#define CCSPEED 0
+#define CCDELAY(x) delay(x)
+
+#define SETMOSI P5OUT|=MOSI
+#define CLRMOSI P5OUT&=~MOSI
+#define SETCLK P5OUT|=SCK
+#define CLRCLK P5OUT&=~SCK
+#define READMISO (P5IN&MISO?1:0)
+
+#define CCWRITE P5DIR|=MOSI
+#define CCREAD P5DIR&=~MISO
+
+//! Set up the pins for CC mode.  Does not init debugger.
+unsigned char ccsetup(){
+  P5OUT|=MOSI+SCK+RST;
+  P5DIR|=MOSI+SCK+RST;
+  //P5DIR&=~MISO;  //MOSI is MISO
+}
+
+//! Initialize the debugger
+void ccdebuginit(){
+  //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
+  
+  //Raise !RST.
+  P5OUT|=RST;
+}
+
+//! Read and write a CC bit.
+unsigned char cctrans8(unsigned char byte){
+  unsigned int bit;
+  //This function came from the SPI Wikipedia article.
+  //Minor alterations.
+  
+  for (bit = 0; bit < 8; bit++) {
+    /* write MOSI on trailing edge of previous clock */
+    if (byte & 0x80)
+      SETMOSI;
+    else
+      CLRMOSI;
+    byte <<= 1;
+    /* half a clock cycle before leading/rising edge */
+    CCDELAY(CCSPEED/2);
+    SETCLK;
+    /* half a clock cycle before trailing/falling edge */
+    CCDELAY(CCSPEED/2);
+    /* read MISO on trailing edge */
+    byte |= READMISO;
+    CLRCLK;
+  }
+  
+  return byte;
+}
+
+//! Send a command from txbytes.
+void cccmd(unsigned char len){
+  unsigned char i;
+  CCWRITE;
+  for(i=0;i<len;i++)
+    cctrans8(cmddata[i]);
+}
+
+//! Fetch a reply, usually 1 byte.
+void ccread(unsigned char len){
+  unsigned char i;
+  CCREAD;
+  for(i=0;i<len;i++)
+    cmddata[i]=cctrans8(0);
+}
+
+//! Handles a monitor command.
+void cchandle(unsigned char app,
+              unsigned char verb,
+              unsigned char len){
+  unsigned char i;
+  switch(verb){
+    //PEEK and POKE will come later.
+  case READ:  //Write a command and return 1-byte reply.
+    cccmd(len);
+    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
+    ccdebuginit();
+    break;
+  case STOP://exit debugger
+    //Take RST low, then high.
+    P5OUT&=~RST;
+    CCDELAY(CCSPEED);
+    P5OUT|=RST;
+    break;
+  case SETUP:
+    ccsetup();
+    txdata(app,verb,0);
+    break;
+    
+  //Micro commands!
+  case CC_CHIP_ERASE:
+    cc_chip_erase();
+    txdata(app,verb,1);
+    break;
+  case CC_WR_CONFIG:
+    cc_wr_config(cmddata[0]);
+    txdata(app,verb,1);
+    break;
+  case CC_RD_CONFIG:
+    cc_rd_config();
+    txdata(app,verb,1);
+    break;
+  case CC_GET_PC:
+    cc_get_pc();
+    txdata(app,verb,1);
+    break;
+  case CC_READ_STATUS:
+    cc_read_status();
+    txdata(app,verb,1);
+    break;
+  case CC_SET_HW_BRKPNT:
+    cc_set_hw_brkpnt(cmddataword[0]);
+    txdata(app,verb,1);
+    break;
+  case CC_HALT:
+    cc_halt();
+    txdata(app,verb,1);
+    break;
+  case CC_RESUME:
+    cc_resume();
+    txdata(app,verb,1);
+    break;
+  case CC_DEBUG_INSTR:
+    txdata(app,NOK,0);//TODO add me
+    break;
+  case CC_STEP_INSTR:
+    cc_step_instr();
+    txdata(app,verb,1);
+    break;
+  case CC_STEP_REPLACE:
+    txdata(app,NOK,0);//TODO add me
+    break;
+  case CC_GET_CHIP_ID:
+    cc_get_chip_id();
+    txdata(app,verb,2);
+    break;
+
+
+  //Macro commands
+  case CC_READ_CODE_MEMORY:
+  case CC_READ_XDATA_MEMORY:
+  case CC_WRITE_XDATA_MEMORY:
+  case CC_SET_PC:
+  case CC_CLOCK_INIT:
+  case CC_WRITE_FLASH_PAGE:
+  case CC_MASS_ERASE_FLASH:
+  case CC_PROGRAM_FLASH:
+    txdata(app,NOK,0);//TODO implement me.
+    break;
+  }
+}
+
+//! Erase all of a Chipcon's memory.
+void cc_chip_erase(){
+  cmddata[0]=0x14;
+  cccmd(1);
+  ccread(1);
+}
+//! Write the configuration byte.
+void cc_wr_config(unsigned char config){
+  cmddata[0]=0x1d;
+  cmddata[1]=config;
+  cccmd(2);
+  ccread(1);
+}
+//! Read the configuration byte.
+unsigned char cc_rd_config(){
+  cmddata[0]=0x24;
+  cccmd(1);
+  ccread(1);
+  return cmddata[0];
+}
+
+
+
+//! Read the status register
+unsigned char cc_read_status(){
+  cmddata[0]=0x34;
+  cccmd(1);
+  ccread(1);
+  return cmddata[0];
+}
+
+//! Read the CHIP ID bytes.
+unsigned short cc_get_chip_id(){
+  unsigned short toret;
+  cmddata[0]=0x68;
+  cccmd(1);
+  ccread(2);
+  
+  //Return the word.
+  toret=cmddata[1];
+  toret=toret<<8+cmddata[1];
+  return toret;
+}
+
+
+//! Read the PC
+unsigned short cc_get_pc(){
+  cmddata[0]=0x28;
+  cccmd(1);
+  ccread(2);
+  
+  //Return the word.
+  return cmddataword[0];
+}
+
+
+//! Set a hardware breakpoint.
+void cc_set_hw_brkpnt(unsigned short adr){
+  cmddataword[0]=adr;
+  cccmd(2);
+  ccread(1);
+  return;
+}
+
+
+//! Halt the CPU.
+void cc_halt(){
+  cmddata[0]=0x44;
+  cccmd(1);
+  ccread(1);
+  return;
+}
+//! Resume the CPU.
+void cc_resume(){
+  cmddata[0]=0x4C;
+  cccmd(1);
+  ccread(1);
+  return;
+}
+
+
+//! Step an instruction
+void cc_step_instr(){
+  cmddata[0]=0x5C;
+  cccmd(1);
+  ccread(1);
+  return;
+}
diff --git a/firmware/include/chipcon.h b/firmware/include/chipcon.h
new file mode 100644 (file)
index 0000000..cf339f1
--- /dev/null
@@ -0,0 +1,25 @@
+//These high-level functions are implemented in chipcon.c.
+
+
+//! Erase a chipcon chip.
+void cc_chip_erase();
+//! Write the configuration byte.
+void cc_wr_config(unsigned char config);
+//! Read the configuration byte.
+unsigned char cc_rd_config();
+//! Read the status register.
+unsigned char cc_read_status();
+//! Read the CHIP ID bytes.
+unsigned short cc_get_chip_id();
+//! Get the PC
+unsigned short cc_get_pc();
+//! Set a hardware breakpoint.
+void cc_set_hw_brkpnt(unsigned short);
+
+//! Halt the CPU.
+void cc_halt();
+//! Resume the CPU.
+void cc_resume();
+//! Step an instruction
+void cc_step_instr();
+
index f91eded..2c722c3 100644 (file)
@@ -16,6 +16,30 @@ extern unsigned char cmddata[256];
 #define NOK   0x7E
 #define OK    0x7F
 
+//CHIPCON commands
+#define CC_CHIP_ERASE 0x80
+#define CC_WR_CONFIG 0x81
+#define CC_RD_CONFIG 0x82
+#define CC_GET_PC 0x83
+#define CC_READ_STATUS 0x84
+#define CC_SET_HW_BRKPNT 0x85
+#define CC_HALT 0x86
+#define CC_RESUME 0x87
+#define CC_DEBUG_INSTR 0x88
+#define CC_STEP_INSTR 0x89
+#define CC_STEP_REPLACE 0x8a
+#define CC_GET_CHIP_ID 0x8b
+//CHIPCON macros
+#define CC_READ_CODE_MEMORY 0x90
+#define CC_READ_XDATA_MEMORY 0x91
+#define CC_WRITE_XDATA_MEMORY 0x92
+#define CC_SET_PC 0x93
+#define CC_CLOCK_INIT 0x94
+#define CC_WRITE_FLASH_PAGE 0x95
+#define CC_READ_FLASH_PAGE 0x96
+#define CC_MASS_ERASE_FLASH 0x97
+#define CC_PROGRAM_FLASH 0x98
+
 //! Handle a command.  Defined in goodfet.c
 void handle(unsigned char app,
            unsigned char verb,