!GEN is now 1 by default.
[goodfet] / firmware / apps / chipcon / chipcon.c
1 /*! \file chipcon.c
2   \author Travis Goodspeed
3   \brief Chipcon 8051 debugging.
4 */
5
6
7 //This is like SPI, except that you read or write, not both.
8
9 /* N.B. The READ verb performs a write of all (any) supplied data,
10    then reads a single byte reply from the target.  The WRITE verb
11    only writes.
12 */
13
14 #include "platform.h"
15 #include "command.h"
16 #include "chipcon.h"
17
18 #include <signal.h>
19 #include <io.h>
20 #include <iomacros.h>
21
22
23 /* Concerning clock rates, the maximimum clock rates are defined on
24    page 4 of the spec.  They vary, but are roughly 30MHz.  Raising
25    this clock rate might allow for clock glitching, but the GoodFET
26    isn't sufficient fast for that.  Perhaps a 200MHz ARM or an FPGA in
27    the BadassFET?
28 */
29
30 //Pins and I/O
31 //MISO and MOSI are the same pin, direction changes.
32 #define RST  BIT0
33 #define MOSI BIT2
34 #define MISO BIT2
35 #define SCK  BIT3
36
37 //This could be more accurate.
38 //Does it ever need to be?
39 #define CCSPEED 3
40 #define CCDELAY(x) delay(x)
41
42 #define SETMOSI P5OUT|=MOSI
43 #define CLRMOSI P5OUT&=~MOSI
44 #define SETCLK P5OUT|=SCK
45 #define CLRCLK P5OUT&=~SCK
46 #define READMISO (P5IN&MISO?1:0)
47
48 #define CCWRITE P5DIR|=MOSI
49 #define CCREAD P5DIR&=~MISO
50
51 //! Set up the pins for CC mode.  Does not init debugger.
52 void ccsetup(){
53   P5OUT|=MOSI+SCK+RST;
54   P5DIR|=MOSI+SCK+RST;
55   //P5DIR&=~MISO;  //MOSI is MISO
56 }
57
58 //! Initialize the debugger
59 void ccdebuginit(){
60   //Two positive debug clock pulses while !RST is low.
61   //Take RST low, pulse twice, then high.
62   P5OUT&=~SCK;
63   P5OUT&=~RST;
64   
65   //pulse twice
66   CCDELAY(CCSPEED);
67   P5OUT|=SCK;  //up
68   CCDELAY(CCSPEED);
69   P5OUT&=~SCK; //down
70   CCDELAY(CCSPEED);
71   P5OUT|=SCK;  //up
72   CCDELAY(CCSPEED);
73   P5OUT&=~SCK; //down
74   
75   //Raise !RST.
76   P5OUT|=RST;
77 }
78
79 //! Read and write a CC bit.
80 unsigned char cctrans8(unsigned char byte){
81   unsigned int bit;
82   //This function came from the SPI Wikipedia article.
83   //Minor alterations.
84   
85   for (bit = 0; bit < 8; bit++) {
86     /* write MOSI on trailing edge of previous clock */
87     if (byte & 0x80)
88       SETMOSI;
89     else
90       CLRMOSI;
91     byte <<= 1;
92  
93     /* half a clock cycle before leading/rising edge */
94     CCDELAY(CCSPEED/2);
95     SETCLK;
96  
97     /* half a clock cycle before trailing/falling edge */
98     CCDELAY(CCSPEED/2);
99  
100     /* read MISO on trailing edge */
101     byte |= READMISO;
102     CLRCLK;
103   }
104   
105   return byte;
106 }
107
108 //! Send a command from txbytes.
109 void cccmd(unsigned char len){
110   unsigned char i;
111   CCWRITE;
112   for(i=0;i<len;i++)
113     cctrans8(cmddata[i]);
114 }
115
116 //! Fetch a reply, usually 1 byte.
117 void ccread(unsigned char len){
118   unsigned char i;
119   CCREAD;
120   for(i=0;i<len;i++)
121     cmddata[i]=cctrans8(0);
122 }
123
124 //! Handles a monitor command.
125 void cchandle(unsigned char app,
126                unsigned char verb,
127                unsigned long len){
128   //Always init.  Might help with buggy lines.
129   //Might hurt too.
130   //ccdebuginit();
131   long i;
132   
133   switch(verb){
134     //CC_PEEK and CC_POKE will come later.
135   case PEEK:
136     cmddata[0]=cc_peekirambyte(cmddata[0]);
137     txdata(app,verb,1);
138     break;
139   case POKE:
140     cmddata[0]=cc_pokeirambyte(cmddata[0],cmddata[1]);
141     txdata(app,verb,0);
142     break;
143   case READ:  //Write a command and return 1-byte reply.
144     cccmd(len);
145     if(cmddata[0]&0x4)
146       ccread(1);
147     txdata(app,verb,1);
148     
149     break;
150   case WRITE: //Write a command with no reply.
151     cccmd(len);
152     txdata(app,verb,0);
153     break;
154   case START://enter debugger
155     ccsetup();
156     ccdebuginit();
157     txdata(app,verb,0);
158     break;
159   case STOP://exit debugger
160     //Take RST low, then high.
161     P5OUT&=~RST;
162     CCDELAY(CCSPEED);
163     P5OUT|=RST;
164     txdata(app,verb,0);
165     break;
166   case SETUP:
167     ccsetup();
168     txdata(app,verb,0);
169     break;
170     
171   //Micro commands!
172   case CC_CHIP_ERASE:
173     cc_chip_erase();
174     txdata(app,verb,1);
175     break;
176   case CC_WR_CONFIG:
177     cc_wr_config(cmddata[0]);
178     txdata(app,verb,1);
179     break;
180   case CC_RD_CONFIG:
181     cc_rd_config();
182     txdata(app,verb,1);
183     break;
184   case CC_GET_PC:
185     cc_get_pc();
186     txdata(app,verb,2);
187     break;
188   case CC_LOCKCHIP:
189     cc_lockchip();
190     //no break, return status
191   case CC_READ_STATUS:
192     cc_read_status();
193     txdata(app,verb,1);
194     break;
195   case CC_SET_HW_BRKPNT:
196     cc_set_hw_brkpnt(cmddataword[0]);
197     txdata(app,verb,1);
198     break;
199   case CC_HALT:
200     cc_halt();
201     txdata(app,verb,1);
202     break;
203   case CC_RESUME:
204     cc_resume();
205     txdata(app,verb,1);
206     break;
207   case CC_DEBUG_INSTR:
208     cc_debug_instr(len);
209     txdata(app,verb,1);
210     break;
211   case CC_STEP_INSTR:
212     cc_step_instr();
213     txdata(app,verb,1);
214     break;
215   case CC_STEP_REPLACE:
216     txdata(app,NOK,0);//TODO add me
217     break;
218   case CC_GET_CHIP_ID:
219     cmddataword[0]=cc_get_chip_id();
220     txdata(app,verb,2);
221     break;
222
223
224   //Macro commands
225   case CC_READ_CODE_MEMORY:
226     cmddata[0]=cc_peekcodebyte(cmddataword[0]);
227     txdata(app,verb,1);
228     break;
229   case CC_READ_XDATA_MEMORY:
230     cmddata[0]=cc_peekdatabyte(cmddataword[0]);
231     txdata(app,verb,1);
232     break;
233   case CC_WRITE_XDATA_MEMORY:
234     cmddata[0]=cc_pokedatabyte(cmddataword[0], cmddata[2]);
235     txdata(app,verb,1);
236     break;
237   case CC_SET_PC:
238     cc_set_pc(cmddatalong[0]);
239     txdata(app,verb,0);
240     break;
241   case CC_WRITE_FLASH_PAGE:
242     cc_write_flash_page(cmddatalong[0]);
243     txdata(app,verb,0);
244     break;
245   case CC_WIPEFLASHBUFFER:
246     for(i=0xf000;i<0xf800;i++)
247       cc_pokedatabyte(i,0xFF);
248     txdata(app,verb,0);
249     break;
250   case CC_MASS_ERASE_FLASH:
251   case CC_CLOCK_INIT:
252   case CC_PROGRAM_FLASH:
253     debugstr("This Chipcon command is not yet implemented.");
254     txdata(app,NOK,0);//TODO implement me.
255     break;
256   }
257 }
258
259 //! Set the Chipcon's Program Counter
260 void cc_set_pc(u32 adr){
261   cmddata[0]=0x02;             //SetPC
262   cmddata[1]=((adr>>8)&0xff);  //HIBYTE
263   cmddata[2]=adr&0xff;         //LOBYTE
264   cc_debug_instr(3);
265   return;
266 }
267
268 //! Erase all of a Chipcon's memory.
269 void cc_chip_erase(){
270   cmddata[0]=CCCMD_CHIP_ERASE; //0x14
271   cccmd(1);
272   ccread(1);
273 }
274 //! Write the configuration byte.
275 void cc_wr_config(unsigned char config){
276   cmddata[0]=CCCMD_WR_CONFIG; //0x1D
277   cmddata[1]=config;
278   cccmd(2);
279   ccread(1);
280 }
281
282 //! Locks the chip.
283 void cc_lockchip(){
284   register int i;
285   
286   debugstr("Locking chip.");
287   cc_wr_config(1);//Select Info Flash 
288   if(!(cc_rd_config()&1))
289     debugstr("Config forgotten!");
290   
291   //Clear config page.
292   for(i=0;i<2048;i++)
293     cc_pokedatabyte(0xf000+i,0);
294   cc_write_flash_page(0);
295   if(cc_peekcodebyte(0))
296     debugstr("Failed to clear info flash byte.");
297   
298   cc_wr_config(0);  
299   if(cc_rd_config()&1)
300     debugstr("Stuck in info flash mode!");
301 }
302
303 //! Read the configuration byte.
304 unsigned char cc_rd_config(){
305   cmddata[0]=CCCMD_RD_CONFIG; //0x24
306   cccmd(1);
307   ccread(1);
308   return cmddata[0];
309 }
310
311
312 //! Read the status register
313 unsigned char cc_read_status(){
314   cmddata[0]=CCCMD_READ_STATUS; //0x3f
315   cccmd(1);
316   ccread(1);
317   return cmddata[0];
318 }
319
320 //! Read the CHIP ID bytes.
321 unsigned short cc_get_chip_id(){
322   cmddata[0]=CCCMD_GET_CHIP_ID; //0x68
323   cccmd(1);
324   ccread(2);
325
326   
327   //Find the flash word size.
328   switch(cmddata[0]){
329   case 0x01://CC1110
330   case 0x81://CC2510
331   case 0x91://CC2511
332     flash_word_size=0x02;
333     //debugstr("2 bytes/flash word");
334     break;
335   default:
336     debugstr("Warning: Guessing flash word size.");
337   case 0x85://CC2430
338   case 0x89://CC2431
339     //debugstr("4 bytes/flash word");
340     flash_word_size=0x04;
341     break;
342   }
343   
344   //Return the word.
345   return cmddataword[0];
346 }
347
348 //! Populates flash buffer in xdata.
349 void cc_write_flash_buffer(u8 *data, u16 len){
350   cc_write_xdata(0xf000, data, len);
351 }
352 //! Populates flash buffer in xdata.
353 void cc_write_xdata(u16 adr, u8 *data, u16 len){
354   u16 i;
355   for(i=0; i<len; i++){
356     cc_pokedatabyte(adr+i,
357                     data[i]);
358   }
359 }
360
361
362 //32-bit words, 2KB pages
363 //0x20 0x00 for CC2430, CC1110
364 #define HIBYTE_WORDS_PER_FLASH_PAGE 0x02
365 #define LOBYTE_WORDS_PER_FLASH_PAGE 0x00
366
367 /** Ugh, this varies by chip.
368     0x800 for CC2430
369     0x400 for CC1110
370 */
371 //#define FLASHPAGE_SIZE 0x400
372 #define MAXFLASHPAGE_SIZE 0x800
373 #define MINFLASHPAGE_SIZE 0x400
374
375
376 //32 bit words on CC2430
377 //16 bit words on CC1110
378 //#define FLASH_WORD_SIZE 0x2
379 u8 flash_word_size = 0; //0x02;
380
381
382 /* Flash Write Timing
383    MHZ | FWT (0xAB)
384    12  | 0x10
385    13  | 0x11
386    16  | 0x15
387    24  | 0x20
388    26  | 0x23  (IM ME)
389    32  | 0x2A  (Modula.si)
390 */
391 //#define FWT 0x23
392
393 const u8 flash_routine[] = {
394   //0:
395   //MOV FADDRH, #imm; 
396   0x75, 0xAD,
397   0x00,//#imm=((address >> 8) / FLASH_WORD_SIZE) & 0x7E,
398   
399   //0x75, 0xAB, 0x23, //Set FWT per clock
400   0x75, 0xAC, 0x00,                                          //                 MOV FADDRL, #00; 
401   /* Erase page. */
402   0x75, 0xAE, 0x01,                                          //                 MOV FLC, #01H; // ERASE 
403                                                              //                 ; Wait for flash erase to complete 
404   0xE5, 0xAE,                                                // eraseWaitLoop:  MOV A, FLC; 
405   0x20, 0xE7, 0xFB,                                          //                 JB ACC_BUSY, eraseWaitLoop; 
406   
407   /* End erase page. */
408                                                              //                 ; Initialize the data pointer 
409   0x90, 0xF0, 0x00,                                          //                 MOV DPTR, #0F000H; 
410                                                              //                 ; Outer loops 
411   0x7F, HIBYTE_WORDS_PER_FLASH_PAGE,                         //                 MOV R7, #imm; 
412   0x7E, LOBYTE_WORDS_PER_FLASH_PAGE,                         //                 MOV R6, #imm; 
413   0x75, 0xAE, 0x02,                                          //                 MOV FLC, #02H; // WRITE 
414                                                              //                     ; Inner loops 
415   //24:
416   0x7D, 0xde /*FLASH_WORD_SIZE*/,                                     // writeLoop:          MOV R5, #imm; 
417   0xE0,                                                      // writeWordLoop:          MOVX A, @DPTR; 
418   0xA3,                                                      //                         INC DPTR; 
419   0xF5, 0xAF,                                                //                         MOV FWDATA, A;  
420   0xDD, 0xFA,                                                //                     DJNZ R5, writeWordLoop; 
421                                                              //                     ; Wait for completion 
422   0xE5, 0xAE,                                                // writeWaitLoop:      MOV A, FLC; 
423   0x20, 0xE6, 0xFB,                                          //                     JB ACC_SWBSY, writeWaitLoop; 
424   0xDE, 0xF1,                                                //                 DJNZ R6, writeLoop; 
425   0xDF, 0xEF,                                                //                 DJNZ R7, writeLoop; 
426                                                              //                 ; Done, fake a breakpoint 
427   0xA5                                                       //                 DB 0xA5; 
428 };
429
430
431 //! Copies flash buffer to flash.
432 void cc_write_flash_page(u32 adr){
433   //Assumes that page has already been written to XDATA 0xF000
434   //debugstr("Flashing 2kb at 0xF000 to given adr.");
435   
436   if(adr&(MINFLASHPAGE_SIZE-1)){
437     debugstr("Flash page address is not on a page boundary.  Aborting.");
438     return;
439   }
440   
441   if(flash_word_size==0){
442     debugstr("Flash word size is wrong.");
443     while(1);
444   }
445   
446   //Routine comes next
447   //WRITE_XDATA_MEMORY(IN: 0xF000 + FLASH_PAGE_SIZE, sizeof(routine), routine);
448   cc_write_xdata(0xF000+MAXFLASHPAGE_SIZE,
449                  (u8*) flash_routine, sizeof(flash_routine));
450   //Patch routine's third byte with
451   //((address >> 8) / FLASH_WORD_SIZE) & 0x7E
452   cc_pokedatabyte(0xF000+MAXFLASHPAGE_SIZE+2,
453                   ((adr>>8)/flash_word_size)&0x7E);
454   //Patch routine to define FLASH_WORD_SIZE
455   if(flash_routine[25]!=0xde)
456     debugstr("Ugly patching code failing in chipcon.c");
457   cc_pokedatabyte(0xF000+MAXFLASHPAGE_SIZE+25,
458                   flash_word_size);
459   
460   //debugstr("Wrote flash routine.");
461   
462   
463   //MOV MEMCTR, (bank * 16) + 1;
464   cmddata[0]=0x75;
465   cmddata[1]=0xc7;
466   cmddata[2]=0x51;
467   cc_debug_instr(3);
468   debugstr("Loaded bank info.");
469   
470   cc_set_pc(0xf000+MAXFLASHPAGE_SIZE);//execute code fragment
471   cc_resume();
472   
473   debugstr("Executing.");
474   
475   
476   while(!(cc_read_status()&CC_STATUS_CPUHALTED)){
477     P1OUT^=1;//blink LED while flashing
478   }
479   
480   
481   debugstr("Done flashing.");
482   
483   P1OUT&=~1;//clear LED
484 }
485
486 //! Read the PC
487 unsigned short cc_get_pc(){
488   cmddata[0]=CCCMD_GET_PC; //0x28
489   cccmd(1);
490   ccread(2);
491   
492   //Return the word.
493   return cmddataword[0];
494 }
495
496 //! Set a hardware breakpoint.
497 void cc_set_hw_brkpnt(unsigned short adr){
498   debugstr("FIXME: This certainly won't work.");
499   cmddataword[0]=adr;
500   cccmd(2);
501   ccread(1);
502   return;
503 }
504
505
506 //! Halt the CPU.
507 void cc_halt(){
508   cmddata[0]=CCCMD_HALT; //0x44
509   cccmd(1);
510   ccread(1);
511   return;
512 }
513 //! Resume the CPU.
514 void cc_resume(){
515   cmddata[0]=CCCMD_RESUME; //0x4C
516   cccmd(1);
517   ccread(1);
518   return;
519 }
520
521
522 //! Step an instruction
523 void cc_step_instr(){
524   cmddata[0]=CCCMD_STEP_INSTR; //0x5C
525   cccmd(1);
526   ccread(1);
527   return;
528 }
529
530 //! Debug an instruction.
531 void cc_debug_instr(unsigned char len){
532   //Bottom two bits of command indicate length.
533   unsigned char cmd=CCCMD_DEBUG_INSTR+(len&0x3); //0x54+len
534   CCWRITE;
535   cctrans8(cmd);  //Second command code
536   cccmd(len&0x3); //Command itself.
537   ccread(1);
538   return;
539 }
540
541 //! Debug an instruction, for local use.
542 unsigned char cc_debug(unsigned char len,
543               unsigned char a,
544               unsigned char b,
545               unsigned char c){
546   unsigned char cmd=CCCMD_DEBUG_INSTR+(len&0x3);//0x54+len
547   CCWRITE;
548   cctrans8(cmd);
549   if(len>0)
550     cctrans8(a);
551   if(len>1)
552     cctrans8(b);
553   if(len>2)
554     cctrans8(c);
555   CCREAD;
556   return cctrans8(0x00);
557 }
558
559 //! Fetch a byte of code memory.
560 unsigned char cc_peekcodebyte(unsigned long adr){
561   /** See page 9 of SWRA124 */
562   unsigned char bank=adr>>15,
563     lb=adr&0xFF,
564     hb=(adr>>8)&0x7F,
565     toret=0;
566   adr&=0x7FFF;
567   
568   //MOV MEMCTR, (bank*16)+1
569   cc_debug(3, 0x75, 0xC7, (bank<<4) + 1);
570   //MOV DPTR, address
571   cc_debug(3, 0x90, hb, lb);
572   
573   //for each byte
574   //CLR A
575   cc_debug(2, 0xE4, 0, 0);
576   //MOVC A, @A+DPTR;
577   toret=cc_debug(3, 0x93, 0, 0);
578   //INC DPTR
579   //cc_debug(1, 0xA3, 0, 0);
580   
581   return toret;
582 }
583
584
585 //! Set a byte of data memory.
586 unsigned char cc_pokedatabyte(unsigned int adr,
587                            unsigned char val){
588   unsigned char
589     hb=(adr&0xFF00)>>8,
590     lb=adr&0xFF;
591   
592   //MOV DPTR, adr
593   cc_debug(3, 0x90, hb, lb);
594   //MOV A, val
595   cc_debug(2, 0x74, val, 0);
596   //MOVX @DPTR, A
597   cc_debug(1, 0xF0, 0, 0);
598   
599   return 0;
600   /*
601 DEBUG_INSTR(IN: 0x90, HIBYTE(address), LOBYTE(address), OUT: Discard);
602 for (n = 0; n < count; n++) {
603     DEBUG_INSTR(IN: 0x74, inputArray[n], OUT: Discard);
604     DEBUG_INSTR(IN: 0xF0, OUT: Discard);
605     DEBUG_INSTR(IN: 0xA3, OUT: Discard);
606 }
607    */
608 }
609
610 //! Fetch a byte of data memory.
611 unsigned char cc_peekdatabyte(unsigned int adr){
612   unsigned char
613     hb=(adr&0xFF00)>>8,
614     lb=adr&0xFF;
615   
616   //MOV DPTR, adr
617   cc_debug(3, 0x90, hb, lb);
618   //MOVX A, @DPTR
619   //Must be 2, perhaps for clocking?
620   return cc_debug(3, 0xE0, 0, 0);
621 }
622
623
624 //! Fetch a byte of IRAM.
625 u8 cc_peekirambyte(u8 adr){
626   //CLR A
627   cc_debug(2, 0xE4, 0, 0);
628   //MOV A, #iram
629   return cc_debug(3, 0xE5, adr, 0);
630 }
631
632 //! Write a byte of IRAM.
633 u8 cc_pokeirambyte(u8 adr, u8 val){
634   //CLR A
635   cc_debug(2, 0xE4, 0, 0);
636   //MOV #iram, #val
637   return cc_debug(3, 0x75, adr, val);
638   //return cc_debug(3, 0x75, val, adr);
639 }
640
641