blob: 2eb6a5d7500d49d2e32c818f8ad2266a4dd9c648 [file] [log] [blame]
Björn Stenbergd42d78f2002-04-15 08:35:08 +00001/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2002 by Linus Nielsen Feltzing
11 *
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
14 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
17 *
18 ****************************************************************************/
19/* sh-stub.c -- debugging stub for the Hitachi-SH.
20
21 NOTE!! This code has to be compiled with optimization, otherwise the
22 function inlining which generates the exception handlers won't work.
23
24*/
25
26/* This is originally based on an m68k software stub written by Glenn
27 Engel at HP, but has changed quite a bit.
28
29 Modifications for the SH by Ben Lee and Steve Chamberlain
30
31 Even more modifications for GCC 3.0 and The Rockbox by Linus
32 Nielsen Feltzing
33*/
34
35/****************************************************************************
36
37 THIS SOFTWARE IS NOT COPYRIGHTED
38
39 HP offers the following for use in the public domain. HP makes no
40 warranty with regard to the software or it's performance and the
41 user accepts the software "AS IS" with all faults.
42
43 HP DISCLAIMS ANY WARRANTIES, EXPRESS OR IMPLIED, WITH REGARD
44 TO THIS SOFTWARE INCLUDING BUT NOT LIMITED TO THE WARRANTIES
45 OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
46
47****************************************************************************/
48
49
50/* Remote communication protocol.
51
52 A debug packet whose contents are <data>
53 is encapsulated for transmission in the form:
54
55 $ <data> # CSUM1 CSUM2
56
57 <data> must be ASCII alphanumeric and cannot include characters
58 '$' or '#'. If <data> starts with two characters followed by
59 ':', then the existing stubs interpret this as a sequence number.
60
61 CSUM1 and CSUM2 are ascii hex representation of an 8-bit
62 checksum of <data>, the most significant nibble is sent first.
63 the hex digits 0-9,a-f are used.
64
65 Receiver responds with:
66
67 + - if CSUM is correct and ready for next packet
68 - - if CSUM is incorrect
69
70 <data> is as follows:
71 All values are encoded in ascii hex digits.
72
73 Request Packet
74
75 read registers g
76 reply XX....X Each byte of register data
77 is described by two hex digits.
78 Registers are in the internal order
79 for GDB, and the bytes in a register
80 are in the same order the machine uses.
81 or ENN for an error.
82
83 write regs GXX..XX Each byte of register data
84 is described by two hex digits.
85 reply OK for success
86 ENN for an error
87
88 write reg Pn...=r... Write register n... with value r...,
89 which contains two hex digits for each
90 byte in the register (target byte
91 order).
92 reply OK for success
93 ENN for an error
94 (not supported by all stubs).
95
96 read mem mAA..AA,LLLL AA..AA is address, LLLL is length.
97 reply XX..XX XX..XX is mem contents
98 Can be fewer bytes than requested
99 if able to read only part of the data.
100 or ENN NN is errno
101
102 write mem MAA..AA,LLLL:XX..XX
103 AA..AA is address,
104 LLLL is number of bytes,
105 XX..XX is data
106 reply OK for success
107 ENN for an error (this includes the case
108 where only part of the data was
109 written).
110
111 cont cAA..AA AA..AA is address to resume
112 If AA..AA is omitted,
113 resume at same address.
114
115 step sAA..AA AA..AA is address to resume
116 If AA..AA is omitted,
117 resume at same address.
118
119 last signal ? Reply the current reason for stopping.
120 This is the same reply as is generated
121 for step or cont : SAA where AA is the
122 signal number.
123
124 There is no immediate reply to step or cont.
125 The reply comes when the machine stops.
126 It is SAA AA is the "signal number"
127
128 or... TAAn...:r...;n:r...;n...:r...;
129 AA = signal number
130 n... = register number
131 r... = register contents
132 or... WAA The process exited, and AA is
133 the exit status. This is only
134 applicable for certains sorts of
135 targets.
136 kill request k
137
138 toggle debug d toggle debug flag (see 386 & 68k stubs)
139 reset r reset -- see sparc stub.
140 reserved <other> On other requests, the stub should
141 ignore the request and send an empty
142 response ($#<checksum>). This way
143 we can extend the protocol and GDB
144 can tell whether the stub it is
145 talking to uses the old or the new.
146 search tAA:PP,MM Search backwards starting at address
147 AA for a match with pattern PP and
148 mask MM. PP and MM are 4 bytes.
149 Not supported by all stubs.
150
151 general query qXXXX Request info about XXXX.
152 general set QXXXX=yyyy Set value of XXXX to yyyy.
153 query sect offs qOffsets Get section offsets. Reply is
154 Text=xxx;Data=yyy;Bss=zzz
155 console output Otext Send text to stdout. Only comes from
156 remote target.
157
158 Responses can be run-length encoded to save space. A '*' means that
159 the next character is an ASCII encoding giving a repeat count which
160 stands for that many repititions of the character preceding the '*'.
161 The encoding is n+29, yielding a printable character where n >=3
162 (which is where rle starts to win). Don't use an n > 126.
163
164 So
165 "0* " means the same as "0000". */
166
Linus Nielsen Feltzingf9389fe2002-04-23 20:21:31 +0000167#include "sh7034.h"
Björn Stenbergd42d78f2002-04-15 08:35:08 +0000168#include <string.h>
169#include <setjmp.h>
Linus Nielsen Feltzingf9389fe2002-04-23 20:21:31 +0000170#include <signal.h>
171
172/* We need to undefine this from the sh7034.h file */
173#undef GBR
Björn Stenbergd42d78f2002-04-15 08:35:08 +0000174
175/* Hitachi SH architecture instruction encoding masks */
176
177#define COND_BR_MASK 0xff00
178#define UCOND_DBR_MASK 0xe000
179#define UCOND_RBR_MASK 0xf0df
180#define TRAPA_MASK 0xff00
181
182#define COND_DISP 0x00ff
183#define UCOND_DISP 0x0fff
184#define UCOND_REG 0x0f00
185
186/* Hitachi SH instruction opcodes */
187
188#define BF_INSTR 0x8b00
189#define BT_INSTR 0x8900
190#define BRA_INSTR 0xa000
191#define BSR_INSTR 0xb000
192#define JMP_INSTR 0x402b
193#define JSR_INSTR 0x400b
194#define RTS_INSTR 0x000b
195#define RTE_INSTR 0x002b
196#define TRAPA_INSTR 0xc300
197#define SSTEP_INSTR 0xc37f
198
199/* Hitachi SH processor register masks */
200
201#define T_BIT_MASK 0x0001
202
Björn Stenbergd42d78f2002-04-15 08:35:08 +0000203/*
204 * BUFMAX defines the maximum number of characters in inbound/outbound
205 * buffers. At least NUMREGBYTES*2 are needed for register packets.
206 */
207#define BUFMAX 1024
208
209/*
210 * Number of bytes for registers
211 */
212#define NUMREGBYTES 112 /* 92 */
213
214/*
215 * Forward declarations
216 */
217
218static int hex (char);
219static char *mem2hex (char *mem, char *buf, int count);
220static char *hex2mem (char *buf, char *mem, int count);
221static int hex2int (char **ptr, int *intValue);
222static unsigned char *getpacket (void);
223static void putpacket (register char *buffer);
224static int computeSignal (int exceptionVector);
225void handle_buserror (void);
226void handle_exception (int exceptionVector);
Linus Nielsen Feltzing88c398a2002-04-23 20:33:45 +0000227void init_serial(void);
Björn Stenbergd42d78f2002-04-15 08:35:08 +0000228
229void serial_putc (char ch);
230char serial_getc (void);
231
232/* These are in the file but in asm statements so the compiler can't see them */
233void catch_exception_4 (void);
234void catch_exception_5 (void);
235void catch_exception_6 (void);
236void catch_exception_7 (void);
237void catch_exception_8 (void);
238void catch_exception_9 (void);
239void catch_exception_10 (void);
240void catch_exception_11 (void);
241void catch_exception_12 (void);
242void catch_exception_13 (void);
243void catch_exception_14 (void);
244void catch_exception_15 (void);
245void catch_exception_16 (void);
246void catch_exception_17 (void);
247void catch_exception_18 (void);
248void catch_exception_19 (void);
249void catch_exception_20 (void);
250void catch_exception_21 (void);
251void catch_exception_22 (void);
252void catch_exception_23 (void);
253void catch_exception_24 (void);
254void catch_exception_25 (void);
255void catch_exception_26 (void);
256void catch_exception_27 (void);
257void catch_exception_28 (void);
258void catch_exception_29 (void);
259void catch_exception_30 (void);
260void catch_exception_31 (void);
261void catch_exception_32 (void);
262void catch_exception_33 (void);
263void catch_exception_34 (void);
264void catch_exception_35 (void);
265void catch_exception_36 (void);
266void catch_exception_37 (void);
267void catch_exception_38 (void);
268void catch_exception_39 (void);
269void catch_exception_40 (void);
270void catch_exception_41 (void);
271void catch_exception_42 (void);
272void catch_exception_43 (void);
273void catch_exception_44 (void);
274void catch_exception_45 (void);
275void catch_exception_46 (void);
276void catch_exception_47 (void);
277void catch_exception_48 (void);
278void catch_exception_49 (void);
279void catch_exception_50 (void);
280void catch_exception_51 (void);
281void catch_exception_52 (void);
282void catch_exception_53 (void);
283void catch_exception_54 (void);
284void catch_exception_55 (void);
285void catch_exception_56 (void);
286void catch_exception_57 (void);
287void catch_exception_58 (void);
288void catch_exception_59 (void);
289void catch_exception_60 (void);
290void catch_exception_61 (void);
291void catch_exception_62 (void);
292void catch_exception_63 (void);
293void catch_exception_64 (void);
294void catch_exception_65 (void);
295void catch_exception_66 (void);
296void catch_exception_67 (void);
297void catch_exception_68 (void);
298void catch_exception_69 (void);
299void catch_exception_70 (void);
300void catch_exception_71 (void);
301void catch_exception_72 (void);
302void catch_exception_73 (void);
303void catch_exception_74 (void);
304void catch_exception_75 (void);
305void catch_exception_76 (void);
306void catch_exception_77 (void);
307void catch_exception_78 (void);
308void catch_exception_79 (void);
309void catch_exception_80 (void);
310void catch_exception_81 (void);
311void catch_exception_82 (void);
312void catch_exception_83 (void);
313void catch_exception_84 (void);
314void catch_exception_85 (void);
315void catch_exception_86 (void);
316void catch_exception_87 (void);
317void catch_exception_88 (void);
318void catch_exception_89 (void);
319void catch_exception_90 (void);
320void catch_exception_91 (void);
321void catch_exception_92 (void);
322void catch_exception_93 (void);
323void catch_exception_94 (void);
324void catch_exception_95 (void);
325void catch_exception_96 (void);
326void catch_exception_97 (void);
327void catch_exception_98 (void);
328void catch_exception_99 (void);
329void catch_exception_100 (void);
330void catch_exception_101 (void);
331void catch_exception_102 (void);
332void catch_exception_103 (void);
333void catch_exception_104 (void);
334void catch_exception_105 (void);
335void catch_exception_106 (void);
336void catch_exception_107 (void);
337void catch_exception_108 (void);
338void catch_exception_109 (void);
339void catch_exception_110 (void);
340void catch_exception_111 (void);
341void catch_exception_112 (void);
342void catch_exception_113 (void);
343void catch_exception_114 (void);
344void catch_exception_115 (void);
345void catch_exception_116 (void);
346void catch_exception_117 (void);
347void catch_exception_118 (void);
348void catch_exception_119 (void);
349void catch_exception_120 (void);
350void catch_exception_121 (void);
351void catch_exception_122 (void);
352void catch_exception_123 (void);
353void catch_exception_124 (void);
354void catch_exception_125 (void);
355void catch_exception_126 (void);
356void catch_exception_127 (void);
357
358void breakpoint (void);
359
360
Linus Nielsen Feltzing8ee52132002-04-23 21:59:20 +0000361//#define stub_stack_size 2*1024
Björn Stenbergd42d78f2002-04-15 08:35:08 +0000362
Linus Nielsen Feltzing8ee52132002-04-23 21:59:20 +0000363//int stub_stack[stub_stack_size] __attribute__ ((section (".stack"))) = {0};
Björn Stenbergd42d78f2002-04-15 08:35:08 +0000364
Linus Nielsen Feltzing8ee52132002-04-23 21:59:20 +0000365extern int stub_stack[];
Björn Stenbergd42d78f2002-04-15 08:35:08 +0000366
Linus Nielsen Feltzing88c398a2002-04-23 20:33:45 +0000367void INIT (void);
368void start (void);
Björn Stenbergd42d78f2002-04-15 08:35:08 +0000369
370#define CPU_BUS_ERROR_VEC 9
371#define DMA_BUS_ERROR_VEC 10
372#define NMI_VEC 11
373#define INVALID_INSN_VEC 4
374#define INVALID_SLOT_VEC 6
375#define TRAP_VEC 32
376#define IO_VEC 33
377#define USER_VEC 127
378
Björn Stenbergd42d78f2002-04-15 08:35:08 +0000379char in_nmi; /* Set when handling an NMI, so we don't reenter */
380int dofault; /* Non zero, bus errors will raise exception */
381
382int *stub_sp;
383
384/* debug > 0 prints ill-formed commands in valid packets & checksum errors */
385int remote_debug;
386
387/* jump buffer used for setjmp/longjmp */
388jmp_buf remcomEnv;
389
390enum regnames
Linus Nielsen Feltzingf9389fe2002-04-23 20:21:31 +0000391{
Björn Stenbergd42d78f2002-04-15 08:35:08 +0000392 R0, R1, R2, R3, R4, R5, R6, R7,
393 R8, R9, R10, R11, R12, R13, R14,
394 R15, PC, PR, GBR, VBR, MACH, MACL, SR,
395 TICKS, STALLS, CYCLES, INSTS, PLR
Linus Nielsen Feltzingf9389fe2002-04-23 20:21:31 +0000396};
Björn Stenbergd42d78f2002-04-15 08:35:08 +0000397
398typedef struct
Linus Nielsen Feltzingf9389fe2002-04-23 20:21:31 +0000399{
Björn Stenbergd42d78f2002-04-15 08:35:08 +0000400 short *memAddr;
401 short oldInstr;
Linus Nielsen Feltzingf9389fe2002-04-23 20:21:31 +0000402}
Björn Stenbergd42d78f2002-04-15 08:35:08 +0000403stepData;
404
405int registers[NUMREGBYTES / 4];
406stepData instrBuffer;
407char stepped;
408static const char hexchars[] = "0123456789abcdef";
409static char remcomInBuffer[BUFMAX];
410static char remcomOutBuffer[BUFMAX];
411
412void blink(void)
413{
414 while(1)
415 {
416 int i;
417 PBDR ^= 0x40; /* toggle PB6 */
418 for(i = 0;i < 500000;i++)
419 {
420 }
421 }
422}
423
424char highhex(int x)
425{
426 return hexchars[(x >> 4) & 0xf];
427}
428
429char lowhex(int x)
430{
431 return hexchars[x & 0xf];
432}
433
434/*
435 * Assembly macros
436 */
437
438#define BREAKPOINT() asm("trapa #0x20"::);
439
440
441/*
442 * Routines to handle hex data
443 */
444
445static int hex (char ch)
446{
447 if ((ch >= 'a') && (ch <= 'f'))
448 return (ch - 'a' + 10);
449 if ((ch >= '0') && (ch <= '9'))
450 return (ch - '0');
451 if ((ch >= 'A') && (ch <= 'F'))
452 return (ch - 'A' + 10);
453 return (-1);
454}
455
456/* convert the memory, pointed to by mem into hex, placing result in buf */
457/* return a pointer to the last char put in buf (null) */
458static char *mem2hex (char *mem, char *buf, int count)
459{
460 int i;
461 int ch;
462 for (i = 0; i < count; i++)
463 {
464 ch = *mem++;
465 *buf++ = highhex (ch);
466 *buf++ = lowhex (ch);
467 }
468 *buf = 0;
469 return (buf);
470}
471
472/* convert the hex array pointed to by buf into binary, to be placed in mem */
473/* return a pointer to the character after the last byte written */
474static char *hex2mem (char *buf, char *mem, int count)
475{
476 int i;
477 unsigned char ch;
478 for (i = 0; i < count; i++)
479 {
480 ch = hex (*buf++) << 4;
481 ch = ch + hex (*buf++);
482 *mem++ = ch;
483 }
484 return (mem);
485}
486
487/**********************************************/
488/* WHILE WE FIND NICE HEX CHARS, BUILD AN INT */
489/* RETURN NUMBER OF CHARS PROCESSED */
490/**********************************************/
491static int hex2int (char **ptr, int *intValue)
492{
493 int numChars = 0;
494 int hexValue;
495
496 *intValue = 0;
497
498 while (**ptr)
499 {
500 hexValue = hex (**ptr);
501 if (hexValue >= 0)
502 {
503 *intValue = (*intValue << 4) | hexValue;
504 numChars++;
505 }
506 else
507 break;
508
509 (*ptr)++;
510 }
511
512 return (numChars);
513}
514
515/*
516 * Routines to get and put packets
517 */
518
519/* scan for the sequence $<data>#<checksum> */
520
521unsigned char *getpacket (void)
522{
523 unsigned char *buffer = &remcomInBuffer[0];
524 unsigned char checksum;
525 unsigned char xmitcsum;
526 int count;
527 char ch;
528
529 while (1)
530 {
531 /* wait around for the start character, ignore all other characters */
532 while ((ch = serial_getc ()) != '$')
533 ;
534
535 retry:
536 checksum = 0;
537 xmitcsum = -1;
538 count = 0;
539
540 /* now, read until a # or end of buffer is found */
541 while (count < BUFMAX)
542 {
543 ch = serial_getc ();
544 if (ch == '$')
545 goto retry;
546 if (ch == '#')
547 break;
548 checksum = checksum + ch;
549 buffer[count] = ch;
550 count = count + 1;
551 }
552 buffer[count] = 0;
553
554 if (ch == '#')
555 {
556 ch = serial_getc ();
557 xmitcsum = hex (ch) << 4;
558 ch = serial_getc ();
559 xmitcsum += hex (ch);
560
561 if (checksum != xmitcsum)
562 {
563 serial_putc ('-'); /* failed checksum */
564 }
565 else
566 {
567 serial_putc ('+'); /* successful transfer */
568
569 /* if a sequence char is present, reply the sequence ID */
570 if (buffer[2] == ':')
571 {
572 serial_putc (buffer[0]);
573 serial_putc (buffer[1]);
574
575 return &buffer[3];
576 }
577
578 return &buffer[0];
579 }
580 }
581 }
582}
583
584
585/* send the packet in buffer. */
586
587static void putpacket (register char *buffer)
588{
589 register int checksum;
590
591 /* $<packet info>#<checksum>. */
592 do
593 {
594 char *src = buffer;
595 serial_putc ('$');
596 checksum = 0;
597
598 while (*src)
599 {
600 int runlen;
601
602 /* Do run length encoding */
603 for (runlen = 0; runlen < 100; runlen ++)
604 {
605 if (src[0] != src[runlen])
606 {
607 if (runlen > 3)
608 {
609 int encode;
610 /* Got a useful amount */
611 serial_putc (*src);
612 checksum += *src;
613 serial_putc ('*');
614 checksum += '*';
615 checksum += (encode = runlen + ' ' - 4);
616 serial_putc (encode);
617 src += runlen;
618 }
619 else
620 {
621 serial_putc (*src);
622 checksum += *src;
623 src++;
624 }
625 break;
626 }
627 }
628 }
629
630
631 serial_putc ('#');
632 serial_putc (highhex(checksum));
633 serial_putc (lowhex(checksum));
634 }
635 while (serial_getc() != '+');
636}
637
638
639/* a bus error has occurred, perform a longjmp
640 to return execution and allow handling of the error */
641
642void handle_buserror (void)
643{
644 longjmp (remcomEnv, 1);
645}
646
647/*
648 * this function takes the SH-1 exception number and attempts to
649 * translate this number into a unix compatible signal value
650 */
651static int computeSignal (int exceptionVector)
652{
653 int sigval;
654 switch (exceptionVector)
655 {
656 case INVALID_INSN_VEC:
Linus Nielsen Feltzingf9389fe2002-04-23 20:21:31 +0000657 sigval = SIGILL;
Björn Stenbergd42d78f2002-04-15 08:35:08 +0000658 break;
659 case INVALID_SLOT_VEC:
Linus Nielsen Feltzingf9389fe2002-04-23 20:21:31 +0000660 sigval = SIGILL;
Björn Stenbergd42d78f2002-04-15 08:35:08 +0000661 break;
662 case CPU_BUS_ERROR_VEC:
Linus Nielsen Feltzingf9389fe2002-04-23 20:21:31 +0000663 sigval = SIGBUS;
Björn Stenbergd42d78f2002-04-15 08:35:08 +0000664 break;
665 case DMA_BUS_ERROR_VEC:
Linus Nielsen Feltzingf9389fe2002-04-23 20:21:31 +0000666 sigval = SIGBUS;
Björn Stenbergd42d78f2002-04-15 08:35:08 +0000667 break;
668 case NMI_VEC:
Linus Nielsen Feltzingf9389fe2002-04-23 20:21:31 +0000669 sigval = SIGINT;
Björn Stenbergd42d78f2002-04-15 08:35:08 +0000670 break;
671
672 case TRAP_VEC:
673 case USER_VEC:
Linus Nielsen Feltzingf9389fe2002-04-23 20:21:31 +0000674 sigval = SIGTRAP;
Björn Stenbergd42d78f2002-04-15 08:35:08 +0000675 break;
676
677 default:
Linus Nielsen Feltzingf9389fe2002-04-23 20:21:31 +0000678 sigval = SIGEMT; /* "software generated"*/
Björn Stenbergd42d78f2002-04-15 08:35:08 +0000679 break;
680 }
681 return (sigval);
682}
683
684void doSStep (void)
685{
686 short *instrMem;
687 int displacement;
688 int reg;
689 unsigned short opcode;
690
691 instrMem = (short *) registers[PC];
692
693 opcode = *instrMem;
694 stepped = 1;
695
696 if ((opcode & COND_BR_MASK) == BT_INSTR)
697 {
698 if (registers[SR] & T_BIT_MASK)
699 {
700 displacement = (opcode & COND_DISP) << 1;
701 if (displacement & 0x80)
702 displacement |= 0xffffff00;
703 /*
704 * Remember PC points to second instr.
705 * after PC of branch ... so add 4
706 */
707 instrMem = (short *) (registers[PC] + displacement + 4);
708 }
709 else
710 instrMem += 1;
711 }
712 else if ((opcode & COND_BR_MASK) == BF_INSTR)
713 {
714 if (registers[SR] & T_BIT_MASK)
715 instrMem += 1;
716 else
717 {
718 displacement = (opcode & COND_DISP) << 1;
719 if (displacement & 0x80)
720 displacement |= 0xffffff00;
721 /*
722 * Remember PC points to second instr.
723 * after PC of branch ... so add 4
724 */
725 instrMem = (short *) (registers[PC] + displacement + 4);
726 }
727 }
728 else if ((opcode & UCOND_DBR_MASK) == BRA_INSTR)
729 {
730 displacement = (opcode & UCOND_DISP) << 1;
731 if (displacement & 0x0800)
732 displacement |= 0xfffff000;
733
734 /*
735 * Remember PC points to second instr.
736 * after PC of branch ... so add 4
737 */
738 instrMem = (short *) (registers[PC] + displacement + 4);
739 }
740 else if ((opcode & UCOND_RBR_MASK) == JSR_INSTR)
741 {
742 reg = (char) ((opcode & UCOND_REG) >> 8);
743
744 instrMem = (short *) registers[reg];
745 }
746 else if (opcode == RTS_INSTR)
747 instrMem = (short *) registers[PR];
748 else if (opcode == RTE_INSTR)
749 instrMem = (short *) registers[15];
750 else if ((opcode & TRAPA_MASK) == TRAPA_INSTR)
751 instrMem = (short *) ((opcode & ~TRAPA_MASK) << 2);
752 else
753 instrMem += 1;
754
755 instrBuffer.memAddr = instrMem;
756 instrBuffer.oldInstr = *instrMem;
757 *instrMem = SSTEP_INSTR;
758}
759
760
761/* Undo the effect of a previous doSStep. If we single stepped,
762 restore the old instruction. */
Björn Stenbergd42d78f2002-04-15 08:35:08 +0000763void undoSStep (void)
764{
765 if (stepped)
766 {
767 short *instrMem;
768 instrMem = instrBuffer.memAddr;
769 *instrMem = instrBuffer.oldInstr;
770 }
771 stepped = 0;
772}
773
774/*
Linus Nielsen Feltzingf9389fe2002-04-23 20:21:31 +0000775 * This function does all exception handling. It only does two things -
776 * it figures out why it was called and tells gdb, and then it reacts
777 * to gdb's requests.
778 *
Björn Stenbergd42d78f2002-04-15 08:35:08 +0000779*/
Björn Stenbergd42d78f2002-04-15 08:35:08 +0000780void gdb_handle_exception (int exceptionVector)
781{
Björn Stenbergd42d78f2002-04-15 08:35:08 +0000782 int sigval, stepping;
783 int addr, length;
784 char *ptr;
785
786 /* reply to host that an exception has occurred */
787 sigval = computeSignal (exceptionVector);
788 remcomOutBuffer[0] = 'S';
789 remcomOutBuffer[1] = highhex(sigval);
790 remcomOutBuffer[2] = lowhex (sigval);
791 remcomOutBuffer[3] = 0;
792
793 putpacket (remcomOutBuffer);
794
795 /*
796 * exception 127 indicates a software trap
797 * inserted in place of code ... so back up
798 * PC by one instruction, since this instruction
799 * will later be replaced by its original one!
800 */
801 if (exceptionVector == USER_VEC
802 || exceptionVector == TRAP_VEC)
803 registers[PC] -= 2;
804
805 /*
Linus Nielsen Feltzingf9389fe2002-04-23 20:21:31 +0000806 * Do the things needed to undo
Björn Stenbergd42d78f2002-04-15 08:35:08 +0000807 * any stepping we may have done!
808 */
809 undoSStep ();
810
811 stepping = 0;
812
Björn Stenbergd42d78f2002-04-15 08:35:08 +0000813 while (1)
814 {
815 remcomOutBuffer[0] = 0;
816 ptr = getpacket ();
817
818 switch (*ptr++)
819 {
Linus Nielsen Feltzingf9389fe2002-04-23 20:21:31 +0000820 case '?':
821 remcomOutBuffer[0] = 'S';
822 remcomOutBuffer[1] = highhex (sigval);
823 remcomOutBuffer[2] = lowhex (sigval);
824 remcomOutBuffer[3] = 0;
825 break;
826 case 'd':
827 remote_debug = !(remote_debug); /* toggle debug flag */
828 break;
829 case 'g': /* return the value of the CPU registers */
830 mem2hex ((char *) registers, remcomOutBuffer, NUMREGBYTES);
831 break;
832 case 'G': /* set the value of the CPU registers - return OK */
833 hex2mem (ptr, (char *) registers, NUMREGBYTES);
834 strcpy (remcomOutBuffer, "OK");
Björn Stenbergd42d78f2002-04-15 08:35:08 +0000835 break;
836
Linus Nielsen Feltzingf9389fe2002-04-23 20:21:31 +0000837 /* mAA..AA,LLLL Read LLLL bytes at address AA..AA */
838 case 'm':
839 if (setjmp (remcomEnv) == 0)
840 {
841 dofault = 0;
842 /* TRY, TO READ %x,%x. IF SUCCEED, SET PTR = 0 */
843 if (hex2int (&ptr, &addr))
844 if (*(ptr++) == ',')
845 if (hex2int (&ptr, &length))
846 {
847 ptr = 0;
848 mem2hex ((char *) addr, remcomOutBuffer, length);
849 }
850 if (ptr)
851 strcpy (remcomOutBuffer, "E01");
852 }
853 else
854 strcpy (remcomOutBuffer, "E03");
Björn Stenbergd42d78f2002-04-15 08:35:08 +0000855
Linus Nielsen Feltzingf9389fe2002-04-23 20:21:31 +0000856 /* restore handler for bus error */
857 dofault = 1;
858 break;
859
860 /* MAA..AA,LLLL: Write LLLL bytes at address AA.AA return OK */
861 case 'M':
862 if (setjmp (remcomEnv) == 0)
863 {
864 dofault = 0;
865
866 /* TRY, TO READ '%x,%x:'. IF SUCCEED, SET PTR = 0 */
867 if (hex2int (&ptr, &addr))
868 if (*(ptr++) == ',')
869 if (hex2int (&ptr, &length))
870 if (*(ptr++) == ':')
871 {
872 hex2mem (ptr, (char *) addr, length);
873 ptr = 0;
874 strcpy (remcomOutBuffer, "OK");
875 }
876 if (ptr)
877 strcpy (remcomOutBuffer, "E02");
878 }
879 else
880 strcpy (remcomOutBuffer, "E03");
881
882 /* restore handler for bus error */
883 dofault = 1;
884 break;
885
886 /* cAA..AA Continue at address AA..AA(optional) */
887 /* sAA..AA Step one instruction from AA..AA(optional) */
888 case 's':
889 stepping = 1;
890 case 'c':
891 {
892 /* tRY, to read optional parameter, pc unchanged if no parm */
893 if (hex2int (&ptr, &addr))
894 registers[PC] = addr;
895
896 if (stepping)
897 doSStep ();
898 }
899
900 return;
901 break;
902
903 /* kill the program */
904 case 'k': /* do nothing */
905 break;
906
907 default:
908 break;
909 } /* switch */
Björn Stenbergd42d78f2002-04-15 08:35:08 +0000910
911 /* reply to the request */
912 putpacket (remcomOutBuffer);
913 }
914}
915
916
917/* We've had an exception - go into the gdb stub */
918void handle_exception(int exceptionVector)
919{
920 gdb_handle_exception (exceptionVector);
921}
922
923/* This function will generate a breakpoint exception. It is used at the
924 beginning of a program to sync up with a debugger and can be used
925 otherwise as a quick means to stop program execution and "break" into
926 the debugger. */
927void breakpoint (void)
928{
929 BREAKPOINT ();
930}
931
932/**** Processor-specific routines start here ****/
933/**** Processor-specific routines start here ****/
934/**** Processor-specific routines start here ****/
935
Linus Nielsen Feltzing8ee52132002-04-23 21:59:20 +0000936extern int stack[];
937
Björn Stenbergd42d78f2002-04-15 08:35:08 +0000938/* SH1/SH2 exception vector table format */
939typedef struct
940{
Linus Nielsen Feltzing88c398a2002-04-23 20:33:45 +0000941 void (*func_cold) (void);
Björn Stenbergd42d78f2002-04-15 08:35:08 +0000942 int *stack_cold;
Linus Nielsen Feltzing88c398a2002-04-23 20:33:45 +0000943 void (*func_warm) (void);
Björn Stenbergd42d78f2002-04-15 08:35:08 +0000944 int *stack_warm;
Linus Nielsen Feltzing88c398a2002-04-23 20:33:45 +0000945 void (*(handler[128 - 4])) (void);
Björn Stenbergd42d78f2002-04-15 08:35:08 +0000946} vec_type;
947
948/* vectable is the SH1/SH2 vector table. It must be at address 0
949** or wherever your vbr points.
950** Note that we only define the first 128 vectors, since the Jukebox
951** firmware has its entry point at 0x200
952*/
Björn Stenbergd42d78f2002-04-15 08:35:08 +0000953const vec_type vectable __attribute__ ((section (".vectors"))) =
954{
955 &start, /* 0: Power-on reset PC */
Linus Nielsen Feltzing8ee52132002-04-23 21:59:20 +0000956 stack, /* 1: Power-on reset SP */
Björn Stenbergd42d78f2002-04-15 08:35:08 +0000957 &start, /* 2: Manual reset PC */
Linus Nielsen Feltzing8ee52132002-04-23 21:59:20 +0000958 stack, /* 3: Manual reset SP */
Björn Stenbergd42d78f2002-04-15 08:35:08 +0000959 {
960 &catch_exception_4, /* 4: General invalid instruction */
961 &catch_exception_5, /* 5: Reserved for system */
962 &catch_exception_6, /* 6: Invalid slot instruction */
963 &catch_exception_7, /* 7: Reserved for system */
964 &catch_exception_8, /* 8: Reserved for system */
965 &catch_exception_9, /* 9: CPU bus error */
966 &catch_exception_10, /* 10: DMA bus error */
967 &catch_exception_11, /* 11: NMI */
968 &catch_exception_12, /* 12: User break */
969 &catch_exception_13, /* 13: Reserved for system */
970 &catch_exception_14, /* 14: Reserved for system */
971 &catch_exception_15, /* 15: Reserved for system */
972 &catch_exception_16, /* 16: Reserved for system */
973 &catch_exception_17, /* 17: Reserved for system */
974 &catch_exception_18, /* 18: Reserved for system */
975 &catch_exception_19, /* 19: Reserved for system */
976 &catch_exception_20, /* 20: Reserved for system */
977 &catch_exception_21, /* 21: Reserved for system */
978 &catch_exception_22, /* 22: Reserved for system */
979 &catch_exception_23, /* 23: Reserved for system */
980 &catch_exception_24, /* 24: Reserved for system */
981 &catch_exception_25, /* 25: Reserved for system */
982 &catch_exception_26, /* 26: Reserved for system */
983 &catch_exception_27, /* 27: Reserved for system */
984 &catch_exception_28, /* 28: Reserved for system */
985 &catch_exception_29, /* 29: Reserved for system */
986 &catch_exception_30, /* 30: Reserved for system */
987 &catch_exception_31, /* 31: Reserved for system */
988 &catch_exception_32, /* 32: Trap instr (user vectors) */
989 &catch_exception_33, /* 33: Trap instr (user vectors) */
990 &catch_exception_34, /* 34: Trap instr (user vectors) */
991 &catch_exception_35, /* 35: Trap instr (user vectors) */
992 &catch_exception_36, /* 36: Trap instr (user vectors) */
993 &catch_exception_37, /* 37: Trap instr (user vectors) */
994 &catch_exception_38, /* 38: Trap instr (user vectors) */
995 &catch_exception_39, /* 39: Trap instr (user vectors) */
996 &catch_exception_40, /* 40: Trap instr (user vectors) */
997 &catch_exception_41, /* 41: Trap instr (user vectors) */
998 &catch_exception_42, /* 42: Trap instr (user vectors) */
999 &catch_exception_43, /* 43: Trap instr (user vectors) */
1000 &catch_exception_44, /* 44: Trap instr (user vectors) */
1001 &catch_exception_45, /* 45: Trap instr (user vectors) */
1002 &catch_exception_46, /* 46: Trap instr (user vectors) */
1003 &catch_exception_47, /* 47: Trap instr (user vectors) */
1004 &catch_exception_48, /* 48: Trap instr (user vectors) */
1005 &catch_exception_49, /* 49: Trap instr (user vectors) */
1006 &catch_exception_50, /* 50: Trap instr (user vectors) */
1007 &catch_exception_51, /* 51: Trap instr (user vectors) */
1008 &catch_exception_52, /* 52: Trap instr (user vectors) */
1009 &catch_exception_53, /* 53: Trap instr (user vectors) */
1010 &catch_exception_54, /* 54: Trap instr (user vectors) */
1011 &catch_exception_55, /* 55: Trap instr (user vectors) */
1012 &catch_exception_56, /* 56: Trap instr (user vectors) */
1013 &catch_exception_57, /* 57: Trap instr (user vectors) */
1014 &catch_exception_58, /* 58: Trap instr (user vectors) */
1015 &catch_exception_59, /* 59: Trap instr (user vectors) */
1016 &catch_exception_60, /* 60: Trap instr (user vectors) */
1017 &catch_exception_61, /* 61: Trap instr (user vectors) */
1018 &catch_exception_62, /* 62: Trap instr (user vectors) */
1019 &catch_exception_63, /* 63: Trap instr (user vectors) */
1020 &catch_exception_64, /* 64: IRQ0 */
1021 &catch_exception_65, /* 65: IRQ1 */
1022 &catch_exception_66, /* 66: IRQ2 */
1023 &catch_exception_67, /* 67: IRQ3 */
1024 &catch_exception_68, /* 68: IRQ4 */
1025 &catch_exception_69, /* 69: IRQ5 */
1026 &catch_exception_70, /* 70: IRQ6 */
1027 &catch_exception_71, /* 71: IRQ7 */
1028 &catch_exception_72,
1029 &catch_exception_73,
1030 &catch_exception_74,
1031 &catch_exception_75,
1032 &catch_exception_76,
1033 &catch_exception_77,
1034 &catch_exception_78,
1035 &catch_exception_79,
1036 &catch_exception_80,
1037 &catch_exception_81,
1038 &catch_exception_82,
1039 &catch_exception_83,
1040 &catch_exception_84,
1041 &catch_exception_85,
1042 &catch_exception_86,
1043 &catch_exception_87,
1044 &catch_exception_88,
1045 &catch_exception_89,
1046 &catch_exception_90,
1047 &catch_exception_91,
1048 &catch_exception_92,
1049 &catch_exception_93,
1050 &catch_exception_94,
1051 &catch_exception_95,
1052 &catch_exception_96,
1053 &catch_exception_97,
1054 &catch_exception_98,
1055 &catch_exception_99,
1056 &catch_exception_100,
1057 &catch_exception_101,
1058 &catch_exception_102,
1059 &catch_exception_103,
1060 &catch_exception_104,
1061 &catch_exception_105,
1062 &catch_exception_106,
1063 &catch_exception_107,
1064 &catch_exception_108,
1065 &catch_exception_109,
1066 &catch_exception_110,
1067 &catch_exception_111,
1068 &catch_exception_112,
1069 &catch_exception_113,
1070 &catch_exception_114,
1071 &catch_exception_115,
1072 &catch_exception_116,
1073 &catch_exception_117,
1074 &catch_exception_118,
1075 &catch_exception_119,
1076 &catch_exception_120,
1077 &catch_exception_121,
1078 &catch_exception_122,
1079 &catch_exception_123,
1080 &catch_exception_124,
1081 &catch_exception_125,
1082 &catch_exception_126,
1083 &catch_exception_127}};
1084
1085void INIT (void)
1086{
1087 /* Disable all timer interrupts */
1088 TIER0 = 0;
1089 TIER1 = 0;
1090 TIER2 = 0;
1091 TIER3 = 0;
1092 TIER4 = 0;
1093
1094 init_serial();
1095
1096 in_nmi = 0;
1097 dofault = 1;
1098 stepped = 0;
1099
Linus Nielsen Feltzing8ee52132002-04-23 21:59:20 +00001100 stub_sp = stub_stack;
Björn Stenbergd42d78f2002-04-15 08:35:08 +00001101 breakpoint ();
1102
1103 /* We should never come here */
1104 blink();
1105}
1106
Linus Nielsen Feltzing88c398a2002-04-23 20:33:45 +00001107void sr(void)
Björn Stenbergd42d78f2002-04-15 08:35:08 +00001108{
1109 /* Calling Reset does the same as pressing the button */
1110 asm (".global _Reset\n"
1111 " .global _WarmReset\n"
1112 "_Reset:\n"
1113 "_WarmReset:\n"
1114 " mov.l L_sp,r15\n"
1115 " bra _INIT\n"
1116 " nop\n"
1117 " .align 2\n"
Linus Nielsen Feltzing8ee52132002-04-23 21:59:20 +00001118 "L_sp: .long _stack");
Björn Stenbergd42d78f2002-04-15 08:35:08 +00001119
1120 asm("saveRegisters:\n");
1121 asm(" mov.l @(L_reg, pc), r0\n"
1122 " mov.l @r15+, r1 ! pop R0\n"
1123 " mov.l r2, @(0x08, r0) ! save R2\n"
1124 " mov.l r1, @r0 ! save R0\n"
1125 " mov.l @r15+, r1 ! pop R1\n"
1126 " mov.l r3, @(0x0c, r0) ! save R3\n"
1127 " mov.l r1, @(0x04, r0) ! save R1\n"
1128 " mov.l r4, @(0x10, r0) ! save R4\n"
1129 " mov.l r5, @(0x14, r0) ! save R5\n"
1130 " mov.l r6, @(0x18, r0) ! save R6\n"
1131 " mov.l r7, @(0x1c, r0) ! save R7\n"
1132 " mov.l r8, @(0x20, r0) ! save R8\n"
1133 " mov.l r9, @(0x24, r0) ! save R9\n"
1134 " mov.l r10, @(0x28, r0) ! save R10\n"
1135 " mov.l r11, @(0x2c, r0) ! save R11\n"
1136 " mov.l r12, @(0x30, r0) ! save R12\n"
1137 " mov.l r13, @(0x34, r0) ! save R13\n"
1138 " mov.l r14, @(0x38, r0) ! save R14\n"
1139 " mov.l @r15+, r4 ! save arg to handleException\n"
1140 " add #8, r15 ! hide PC/SR values on stack\n"
1141 " mov.l r15, @(0x3c, r0) ! save R15\n"
1142 " add #-8, r15 ! save still needs old SP value\n"
1143 " add #92, r0 ! readjust register pointer\n"
1144 " mov r15, r2\n"
1145 " add #4, r2\n"
1146 " mov.l @r2, r2 ! R2 has SR\n"
1147 " mov.l @r15, r1 ! R1 has PC\n"
1148 " mov.l r2, @-r0 ! save SR\n"
1149 " sts.l macl, @-r0 ! save MACL\n"
1150 " sts.l mach, @-r0 ! save MACH\n"
1151 " stc.l vbr, @-r0 ! save VBR\n"
1152 " stc.l gbr, @-r0 ! save GBR\n"
1153 " sts.l pr, @-r0 ! save PR\n"
1154 " mov.l @(L_stubstack, pc), r2\n"
1155 " mov.l @(L_hdl_except, pc), r3\n"
1156 " mov.l @r2, r15\n"
1157 " jsr @r3\n"
1158 " mov.l r1, @-r0 ! save PC\n"
1159 " mov.l @(L_stubstack, pc), r0\n"
1160 " mov.l @(L_reg, pc), r1\n"
1161 " bra restoreRegisters\n"
1162 " mov.l r15, @r0 ! save __stub_stack\n"
1163
1164 " .align 2\n"
1165 "L_reg:\n"
1166 " .long _registers\n"
1167 "L_stubstack:\n"
1168 " .long _stub_sp\n"
1169 "L_hdl_except:\n"
1170 " .long _handle_exception");
1171}
1172
Linus Nielsen Feltzing88c398a2002-04-23 20:33:45 +00001173void rr(void)
Björn Stenbergd42d78f2002-04-15 08:35:08 +00001174{
1175 asm(" .align 2 \n"
1176 " .global _resume\n"
1177 "_resume:\n"
1178 " mov r4,r1\n"
1179 "restoreRegisters:\n"
1180 " add #8, r1 ! skip to R2\n"
1181 " mov.l @r1+, r2 ! restore R2\n"
1182 " mov.l @r1+, r3 ! restore R3\n"
1183 " mov.l @r1+, r4 ! restore R4\n"
1184 " mov.l @r1+, r5 ! restore R5\n"
1185 " mov.l @r1+, r6 ! restore R6\n"
1186 " mov.l @r1+, r7 ! restore R7\n"
1187 " mov.l @r1+, r8 ! restore R8\n"
1188 " mov.l @r1+, r9 ! restore R9\n"
1189 " mov.l @r1+, r10 ! restore R10\n"
1190 " mov.l @r1+, r11 ! restore R11\n"
1191 " mov.l @r1+, r12 ! restore R12\n"
1192 " mov.l @r1+, r13 ! restore R13\n"
1193 " mov.l @r1+, r14 ! restore R14\n"
1194 " mov.l @r1+, r15 ! restore programs stack\n"
1195 " mov.l @r1+, r0\n"
1196 " add #-8, r15 ! uncover PC/SR on stack \n"
1197 " mov.l r0, @r15 ! restore PC onto stack\n"
1198 " lds.l @r1+, pr ! restore PR\n"
1199 " ldc.l @r1+, gbr ! restore GBR\n"
1200 " ldc.l @r1+, vbr ! restore VBR\n"
1201 " lds.l @r1+, mach ! restore MACH\n"
1202 " lds.l @r1+, macl ! restore MACL\n"
1203 " mov.l @r1, r0 \n"
1204 " add #-88, r1 ! readjust reg pointer to R1\n"
1205 " mov.l r0, @(4, r15) ! restore SR onto stack+4\n"
1206 " mov.l r2, @-r15\n"
1207 " mov.l L_in_nmi, r0\n"
1208 " mov #0, r2\n"
1209 " mov.b r2, @r0\n"
1210 " mov.l @r15+, r2\n"
1211 " mov.l @r1+, r0 ! restore R0\n"
1212 " rte\n"
1213 " mov.l @r1, r1 ! restore R1");
1214}
1215
Linus Nielsen Feltzingf9389fe2002-04-23 20:21:31 +00001216static inline void code_for_catch_exception(unsigned int n)
Björn Stenbergd42d78f2002-04-15 08:35:08 +00001217{
1218 asm(" .globl _catch_exception_%O0" : : "X" (n) );
1219 asm(" _catch_exception_%O0:" :: "X" (n) );
1220
1221 asm(" add #-4, r15 ! reserve spot on stack ");
1222 asm(" mov.l r1, @-r15 ! push R1 ");
1223
1224 if (n == NMI_VEC)
1225 {
1226 /* Special case for NMI - make sure that they don't nest */
1227 asm(" mov.l r0, @-r15 ! push R0");
1228 asm(" mov.l L_in_nmi, r0");
1229 asm(" tas.b @r0 ! Fend off against addtnl NMIs");
1230 asm(" bt noNMI");
1231 asm(" mov.l @r15+, r0");
1232 asm(" mov.l @r15+, r1");
1233 asm(" add #4, r15");
1234 asm(" rte");
1235 asm(" nop");
1236 asm(".align 2");
1237 asm("L_in_nmi: .long _in_nmi");
1238 asm("noNMI:");
1239 }
1240 else
1241 {
1242
1243 if (n == CPU_BUS_ERROR_VEC)
1244 {
1245 /* Exception 9 (bus errors) are disasbleable - so that you
1246 can probe memory and get zero instead of a fault.
1247 Because the vector table may be in ROM we don't revector
1248 the interrupt like all the other stubs, we check in here
1249 */
1250 asm("mov.l L_dofault,r1");
1251 asm("mov.l @r1,r1");
1252 asm("tst r1,r1");
1253 asm("bf faultaway");
1254 asm("bsr _handle_buserror");
1255 asm(".align 2");
1256 asm("L_dofault: .long _dofault");
1257 asm("faultaway:");
1258 }
1259 asm(" mov #15<<4, r1 ");
1260 asm(" ldc r1, sr ! disable interrupts ");
1261 asm(" mov.l r0, @-r15 ! push R0 ");
1262 }
1263
1264 /* Prepare for saving context, we've already pushed r0 and r1, stick
1265 exception number into the frame */
1266 asm(" mov r15, r0 ");
1267 asm(" add #8, r0 ");
1268 asm(" mov %0,r1" :: "X" (n));
1269 asm(" extu.b r1,r1 ");
1270 asm(" bra saveRegisters ! save register values ");
1271 asm(" mov.l r1, @r0 ! save exception # ");
1272}
1273
1274/* Here we call all defined exceptions, so the inline assembler gets
1275 generated */
1276void exceptions (void)
1277{
1278 code_for_catch_exception (4);
1279 code_for_catch_exception (5);
1280 code_for_catch_exception (6);
1281 code_for_catch_exception (7);
1282 code_for_catch_exception (8);
1283 code_for_catch_exception (9);
1284 code_for_catch_exception (10);
1285 code_for_catch_exception (11);
1286 code_for_catch_exception (12);
1287 code_for_catch_exception (13);
1288 code_for_catch_exception (14);
1289 code_for_catch_exception (15);
1290 code_for_catch_exception (16);
1291 code_for_catch_exception (17);
1292 code_for_catch_exception (18);
1293 code_for_catch_exception (19);
1294 code_for_catch_exception (20);
1295 code_for_catch_exception (21);
1296 code_for_catch_exception (22);
1297 code_for_catch_exception (23);
1298 code_for_catch_exception (24);
1299 code_for_catch_exception (25);
1300 code_for_catch_exception (26);
1301 code_for_catch_exception (27);
1302 code_for_catch_exception (28);
1303 code_for_catch_exception (29);
1304 code_for_catch_exception (30);
1305 code_for_catch_exception (31);
1306 code_for_catch_exception (32);
1307 code_for_catch_exception (33);
1308 code_for_catch_exception (34);
1309 code_for_catch_exception (35);
1310 code_for_catch_exception (36);
1311 code_for_catch_exception (37);
1312 code_for_catch_exception (38);
1313 code_for_catch_exception (39);
1314 code_for_catch_exception (40);
1315 code_for_catch_exception (41);
1316 code_for_catch_exception (42);
1317 code_for_catch_exception (43);
1318 code_for_catch_exception (44);
1319 code_for_catch_exception (45);
1320 code_for_catch_exception (46);
1321 code_for_catch_exception (47);
1322 code_for_catch_exception (48);
1323 code_for_catch_exception (49);
1324 code_for_catch_exception (50);
1325 code_for_catch_exception (51);
1326 code_for_catch_exception (52);
1327 code_for_catch_exception (53);
1328 code_for_catch_exception (54);
1329 code_for_catch_exception (55);
1330 code_for_catch_exception (56);
1331 code_for_catch_exception (57);
1332 code_for_catch_exception (58);
1333 code_for_catch_exception (59);
1334 code_for_catch_exception (60);
1335 code_for_catch_exception (61);
1336 code_for_catch_exception (62);
1337 code_for_catch_exception (63);
1338 code_for_catch_exception (64);
1339 code_for_catch_exception (65);
1340 code_for_catch_exception (66);
1341 code_for_catch_exception (67);
1342 code_for_catch_exception (68);
1343 code_for_catch_exception (69);
1344 code_for_catch_exception (70);
1345 code_for_catch_exception (71);
1346 code_for_catch_exception (72);
1347 code_for_catch_exception (73);
1348 code_for_catch_exception (74);
1349 code_for_catch_exception (75);
1350 code_for_catch_exception (76);
1351 code_for_catch_exception (77);
1352 code_for_catch_exception (78);
1353 code_for_catch_exception (79);
1354 code_for_catch_exception (80);
1355 code_for_catch_exception (81);
1356 code_for_catch_exception (82);
1357 code_for_catch_exception (83);
1358 code_for_catch_exception (84);
1359 code_for_catch_exception (85);
1360 code_for_catch_exception (86);
1361 code_for_catch_exception (87);
1362 code_for_catch_exception (88);
1363 code_for_catch_exception (89);
1364 code_for_catch_exception (90);
1365 code_for_catch_exception (91);
1366 code_for_catch_exception (92);
1367 code_for_catch_exception (93);
1368 code_for_catch_exception (94);
1369 code_for_catch_exception (95);
1370 code_for_catch_exception (96);
1371 code_for_catch_exception (97);
1372 code_for_catch_exception (98);
1373 code_for_catch_exception (99);
1374 code_for_catch_exception (100);
1375 code_for_catch_exception (101);
1376 code_for_catch_exception (102);
1377 code_for_catch_exception (103);
1378 code_for_catch_exception (104);
1379 code_for_catch_exception (105);
1380 code_for_catch_exception (106);
1381 code_for_catch_exception (107);
1382 code_for_catch_exception (108);
1383 code_for_catch_exception (109);
1384 code_for_catch_exception (110);
1385 code_for_catch_exception (111);
1386 code_for_catch_exception (112);
1387 code_for_catch_exception (113);
1388 code_for_catch_exception (114);
1389 code_for_catch_exception (115);
1390 code_for_catch_exception (116);
1391 code_for_catch_exception (117);
1392 code_for_catch_exception (118);
1393 code_for_catch_exception (119);
1394 code_for_catch_exception (120);
1395 code_for_catch_exception (121);
1396 code_for_catch_exception (122);
1397 code_for_catch_exception (123);
1398 code_for_catch_exception (124);
1399 code_for_catch_exception (125);
1400 code_for_catch_exception (126);
1401 code_for_catch_exception (127);
1402}
1403
1404/*
1405 * Port B Control Register (PBCR1)
1406 */
1407#define PB15MD1 0x8000
1408#define PB15MD0 0x4000
1409#define PB14MD1 0x2000
1410#define PB14MD0 0x1000
1411#define PB13MD1 0x0800
1412#define PB13MD0 0x0400
1413#define PB12MD1 0x0200
1414#define PB12MD0 0x0100
1415#define PB11MD1 0x0080
1416#define PB11MD0 0x0040
1417#define PB10MD1 0x0020
1418#define PB10MD0 0x0010
1419#define PB9MD1 0x0008
1420#define PB9MD0 0x0004
1421#define PB8MD1 0x0002
1422#define PB8MD0 0x0001
1423
1424#define PB15MD PB15MD1|PB14MD0
1425#define PB14MD PB14MD1|PB14MD0
1426#define PB13MD PB13MD1|PB13MD0
1427#define PB12MD PB12MD1|PB12MD0
1428#define PB11MD PB11MD1|PB11MD0
1429#define PB10MD PB10MD1|PB10MD0
1430#define PB9MD PB9MD1|PB9MD0
1431#define PB8MD PB8MD1|PB8MD0
1432
1433#define PB_TXD1 PB11MD1
1434#define PB_RXD1 PB10MD1
1435#define PB_TXD0 PB9MD1
1436#define PB_RXD0 PB8MD1
1437
1438#define PB7MD PB7MD1|PB7MD0
1439#define PB6MD PB6MD1|PB6MD0
1440#define PB5MD PB5MD1|PB5MD0
1441#define PB4MD PB4MD1|PB4MD0
1442#define PB3MD PB3MD1|PB3MD0
1443#define PB2MD PB2MD1|PB2MD0
1444#define PB1MD PB1MD1|PB1MD0
1445#define PB0MD PB0MD1|PB0MD0
1446
1447
1448void handleError (char theSSR);
1449
1450void nop (void)
1451{
1452}
1453
1454void init_serial (void)
1455{
1456 int i;
1457
1458 /* Clear Channel 1's SCR */
1459 SCR1 = 0;
1460
1461 /* Set communication to be async, 8-bit data,
1462 no parity, 1 stop bit and use internal clock */
1463 SMR1 = 0;
1464/* BRR1 = SYSCLOCK / (9600 * 32) - 1;*/
1465 BRR1 = 9; /* 38400 */
1466
1467 SCR1 &= ~(SCI_CKE1 | SCI_CKE0);
1468
1469 /* let the hardware settle */
1470 for (i = 0; i < 1000; i++)
1471 nop ();
1472
1473 /* Turn on in and out */
1474 SCR1 |= SCI_RE | SCI_TE;
1475
1476 /* Set the PFC to make RXD1 (pin PB8) an input pin
1477 and TXD1 (pin PB9) an output pin */
1478 PBCR1 &= ~(PB_TXD1 | PB_RXD1);
1479 PBCR1 |= PB_TXD1 | PB_RXD1;
1480}
1481
1482
1483int serial_waitc(void)
1484{
1485 char mySSR;
1486 mySSR = SSR1 & ( SCI_PER | SCI_FER | SCI_ORER );
1487 if ( mySSR )
1488 handleError ( mySSR );
1489 return SSR1 & SCI_RDRF ;
1490}
1491
1492char serial_getc (void)
1493{
1494 char ch;
1495 char mySSR;
1496
1497 while ( ! serial_waitc())
1498 ;
1499
1500 ch = RDR1;
1501 SSR1 &= ~SCI_RDRF;
1502
1503 mySSR = SSR1 & (SCI_PER | SCI_FER | SCI_ORER);
1504
1505 if (mySSR)
1506 handleError (mySSR);
1507
1508 return ch;
1509}
1510
1511void serial_putc (char ch)
1512{
1513 while (!(SSR1 & SCI_TDRE))
1514 {
1515 ;
1516 }
1517
1518 /*
1519 * Write data into TDR and clear TDRE
1520 */
1521 TDR1 = ch;
1522 SSR1 &= ~SCI_TDRE;
1523}
1524
1525void handleError (char theSSR)
1526{
1527 /* Clear all error bits, otherwise the receiver will stop */
1528 SSR1 &= ~(SCI_ORER | SCI_PER | SCI_FER);
1529}