summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/i386/ts_386ex/tools/debug_ada/serial_debug.adb
blob: f89e290764316b837c02fd27399100dbcd7f6720 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
with Ada.Text_IO;  use Ada.Text_IO;
with System.Machine_Code;  use System.Machine_Code;

package body Serial_Debug is

   ----------------
   -- Breakpoint --
   ----------------

   procedure Breakpoint is
   begin
      Asm ("int $3",
           No_Output_Operands,
           No_Input_Operands,
           Volatile => True);
   end Breakpoint;


   -- This type is from uart.h
   -- Equivalent to an int, with (COM1, COM2) => (0, 1)

   type BSP_Uart is (COM1, COM2);
   pragma Convention (C, BSP_Uart);


   -- The serial port currently used for console I/O

   BSP_Console_Port: BSP_Uart;
   pragma Import (C, BSP_Console_Port, "BSPConsolePort");


   -- C utility routines to set up serial-port debugging

   procedure I386_Stub_Glue_Init (Debug_Port: in BSP_Uart);
   pragma Import (C, I386_Stub_Glue_Init, "i386_stub_glue_init");

   procedure Set_Debug_Traps;
   pragma Import (C, Set_Debug_Traps, "set_debug_traps");

   procedure I386_Stub_Glue_Init_Breakin;
   pragma Import (C, I386_Stub_Glue_Init_Breakin,
                  "i386_stub_glue_init_breakin");

begin

   if BSP_Console_Port /= COM2
   then
      I386_Stub_Glue_Init (COM2);

      Put_Line ("Remote GDB using COM2...");
   else
      I386_Stub_Glue_Init (COM1);

      Put_Line ("Remote GDB using COM1...");
   end if;

   Put_Line ("Remote GDB setting traps...");

   Set_Debug_Traps;

   Put_Line ("Remote GDB waiting for connection...");

   I386_Stub_Glue_Init_Breakin;

end Serial_Debug;