gdb_hook.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:5k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Carsten Langgaard, carstenl@mips.com
  3.  * Copyright (C) 2000 MIPS Technologies, Inc.  All rights reserved.
  4.  *
  5.  * ########################################################################
  6.  *
  7.  *  This program is free software; you can distribute it and/or modify it
  8.  *  under the terms of the GNU General Public License (Version 2) as
  9.  *  published by the Free Software Foundation.
  10.  *
  11.  *  This program is distributed in the hope it will be useful, but WITHOUT
  12.  *  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13.  *  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14.  *  for more details.
  15.  *
  16.  *  You should have received a copy of the GNU General Public License along
  17.  *  with this program; if not, write to the Free Software Foundation, Inc.,
  18.  *  59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
  19.  *
  20.  * ########################################################################
  21.  *
  22.  * This is the interface to the remote debugger stub.
  23.  *
  24.  */
  25. #include <linux/serialP.h>
  26. #include <linux/serial_reg.h>
  27. #include <asm/serial.h>
  28. #include <asm/io.h>
  29. static struct serial_state rs_table[RS_TABLE_SIZE] = {
  30. SERIAL_PORT_DFNS /* Defined in serial.h */
  31. };
  32. static struct async_struct kdb_port_info = {0};
  33. int (*generic_putDebugChar)(char);
  34. char (*generic_getDebugChar)(void);
  35. static __inline__ unsigned int serial_in(struct async_struct *info, int offset)
  36. {
  37. return inb(info->port + offset);
  38. }
  39. static __inline__ void serial_out(struct async_struct *info, int offset,
  40. int value)
  41. {
  42. outb(value, info->port+offset);
  43. }
  44. void rs_kgdb_hook(int tty_no) {
  45. int t;
  46. struct serial_state *ser = &rs_table[tty_no];
  47. kdb_port_info.state = ser;
  48. kdb_port_info.magic = SERIAL_MAGIC;
  49. kdb_port_info.port = ser->port;
  50. kdb_port_info.flags = ser->flags;
  51. /*
  52.  * Clear all interrupts
  53.  */
  54. serial_in(&kdb_port_info, UART_LSR);
  55. serial_in(&kdb_port_info, UART_RX);
  56. serial_in(&kdb_port_info, UART_IIR);
  57. serial_in(&kdb_port_info, UART_MSR);
  58. /*
  59.  * Now, initialize the UART 
  60.  */
  61. serial_out(&kdb_port_info, UART_LCR, UART_LCR_WLEN8); /* reset DLAB */
  62. if (kdb_port_info.flags & ASYNC_FOURPORT) {
  63. kdb_port_info.MCR = UART_MCR_DTR | UART_MCR_RTS;
  64. t = UART_MCR_DTR | UART_MCR_OUT1;
  65. } else {
  66. kdb_port_info.MCR 
  67. = UART_MCR_DTR | UART_MCR_RTS | UART_MCR_OUT2;
  68. t = UART_MCR_DTR | UART_MCR_RTS;
  69. }
  70. kdb_port_info.MCR = t; /* no interrupts, please */
  71. serial_out(&kdb_port_info, UART_MCR, kdb_port_info.MCR);
  72. /*
  73.  * and set the speed of the serial port
  74.  * (currently hardwired to 9600 8N1
  75.  */
  76. /* baud rate is fixed to 9600 (is this sufficient?)*/
  77. t = kdb_port_info.state->baud_base / 9600;
  78. /* set DLAB */
  79. serial_out(&kdb_port_info, UART_LCR, UART_LCR_WLEN8 | UART_LCR_DLAB);
  80. serial_out(&kdb_port_info, UART_DLL, t & 0xff);/* LS of divisor */
  81. serial_out(&kdb_port_info, UART_DLM, t >> 8);  /* MS of divisor */
  82. /* reset DLAB */
  83. serial_out(&kdb_port_info, UART_LCR, UART_LCR_WLEN8);
  84. }
  85. int putDebugChar(char c)
  86. {
  87. return generic_putDebugChar(c);
  88. }
  89. char getDebugChar(void) 
  90. {
  91. return generic_getDebugChar();
  92. }
  93. int rs_putDebugChar(char c)
  94. {
  95. if (!kdb_port_info.state) {  /* need to init device first */
  96. return 0;
  97. }
  98. while ((serial_in(&kdb_port_info, UART_LSR) & UART_LSR_THRE) == 0)
  99. ;
  100. serial_out(&kdb_port_info, UART_TX, c);
  101. return 1;
  102. }
  103. char rs_getDebugChar(void)
  104. {
  105. if (!kdb_port_info.state) {  /* need to init device first */
  106. return 0;
  107. }
  108. while (!(serial_in(&kdb_port_info, UART_LSR) & 1))
  109. ;
  110. return(serial_in(&kdb_port_info, UART_RX));
  111. }
  112. #ifdef CONFIG_MIPS_ATLAS
  113. #include <asm/mips-boards/atlas.h>
  114. #include <asm/mips-boards/saa9730_uart.h>
  115. #define INB(a)     inb((unsigned long)a)
  116. #define OUTB(x,a)  outb(x,(unsigned long)a)
  117. /*
  118.  * This is the interface to the remote debugger stub
  119.  * if the Philips part is used for the debug port,
  120.  * called from the platform setup code.
  121.  *
  122.  * PCI init will not have been done yet, we make a
  123.  * universal assumption about the way the bootloader (YAMON)
  124.  * have located and set up the chip.
  125.  */
  126. static t_uart_saa9730_regmap *kgdb_uart = (void *)(ATLAS_SAA9730_REG + SAA9730_UART_REGS_ADDR);
  127. static int saa9730_kgdb_active = 0;
  128. void saa9730_kgdb_hook(void) 
  129. {
  130.         volatile unsigned char t;
  131.         /*
  132.          * Clear all interrupts
  133.          */
  134. t = INB(&kgdb_uart->Lsr);
  135. t += INB(&kgdb_uart->Msr);
  136. t += INB(&kgdb_uart->Thr_Rbr);
  137. t += INB(&kgdb_uart->Iir_Fcr);
  138.         /*
  139.          * Now, initialize the UART
  140.          */
  141. /* 8 data bits, one stop bit, no parity */
  142. OUTB(SAA9730_LCR_DATA8, &kgdb_uart->Lcr);
  143.         /* baud rate is fixed to 9600 (is this sufficient?)*/
  144. OUTB(0, &kgdb_uart->BaudDivMsb); /* HACK - Assumes standard crystal */
  145. OUTB(23, &kgdb_uart->BaudDivLsb); /* HACK - known for MIPS Atlas */
  146. /* Set RTS/DTR active */
  147. OUTB(SAA9730_MCR_DTR | SAA9730_MCR_RTS, &kgdb_uart->Mcr);
  148. saa9730_kgdb_active = 1;
  149. }
  150. int saa9730_putDebugChar(char c)
  151. {
  152.         if (!saa9730_kgdb_active) {     /* need to init device first */
  153.                 return 0;
  154.         }
  155.         while (!(INB(&kgdb_uart->Lsr) & SAA9730_LSR_THRE))
  156.                 ;
  157. OUTB(c, &kgdb_uart->Thr_Rbr);
  158.         return 1;
  159. }
  160. char saa9730_getDebugChar(void)
  161. {
  162. char c;
  163.         if (!saa9730_kgdb_active) {     /* need to init device first */
  164.                 return 0;
  165.         }
  166.         while (!(INB(&kgdb_uart->Lsr) & SAA9730_LSR_DR))
  167.                 ;
  168. c = INB(&kgdb_uart->Thr_Rbr);
  169.         return(c);
  170. }
  171. #endif