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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* Serialport functions for debugging
  2.  *
  3.  * Copyright (c) 2000 Axis Communications AB
  4.  *
  5.  * Authors:  Bjorn Wesen
  6.  *
  7.  * Exports:
  8.  *    console_print_etrax(char *buf)
  9.  *    int getDebugChar()
  10.  *    putDebugChar(int)
  11.  *    enableDebugIRQ()
  12.  *    init_etrax_debug()
  13.  *
  14.  * $Log: debugport.c,v $
  15.  * Revision 1.6  2001/04/17 13:58:39  orjanf
  16.  * * Renamed CONFIG_KGDB to CONFIG_ETRAX_KGDB.
  17.  *
  18.  * Revision 1.5  2001/03/26 14:22:05  bjornw
  19.  * Namechange of some config options
  20.  *
  21.  * Revision 1.4  2000/10/06 12:37:26  bjornw
  22.  * Use physical addresses when talking to DMA
  23.  *
  24.  *
  25.  */
  26. #include <linux/config.h>
  27. #include <linux/console.h>
  28. #include <linux/init.h>
  29. #include <linux/major.h>
  30. #include <asm/system.h>
  31. #include <asm/svinto.h>
  32. #include <asm/io.h>             /* Get SIMCOUT. */
  33. /* Which serial-port is our debug port ? */
  34. #if defined(CONFIG_ETRAX_DEBUG_PORT0) || defined(CONFIG_ETRAX_DEBUG_PORT_NULL)
  35. #define DEBUG_PORT_IDX 0
  36. #define DEBUG_OCMD R_DMA_CH6_CMD
  37. #define DEBUG_FIRST R_DMA_CH6_FIRST
  38. #define DEBUG_OCLRINT R_DMA_CH6_CLR_INTR
  39. #define DEBUG_STATUS R_DMA_CH6_STATUS
  40. #define DEBUG_READ R_SERIAL0_READ
  41. #define DEBUG_WRITE R_SERIAL0_TR_DATA
  42. #define DEBUG_TR_CTRL R_SERIAL0_TR_CTRL
  43. #define DEBUG_REC_CTRL R_SERIAL0_REC_CTRL
  44. #define DEBUG_IRQ IO_STATE(R_IRQ_MASK1_SET, ser0_data, set)
  45. #define DEBUG_DMA_IRQ_CLR IO_STATE(R_IRQ_MASK2_CLR, dma6_descr, clr)
  46. #endif
  47. #ifdef CONFIG_ETRAX_DEBUG_PORT1
  48. #define DEBUG_PORT_IDX 1
  49. #define DEBUG_OCMD R_DMA_CH8_CMD
  50. #define DEBUG_FIRST R_DMA_CH8_FIRST
  51. #define DEBUG_OCLRINT R_DMA_CH8_CLR_INTR
  52. #define DEBUG_STATUS R_DMA_CH8_STATUS
  53. #define DEBUG_READ R_SERIAL1_READ
  54. #define DEBUG_WRITE R_SERIAL1_TR_DATA
  55. #define DEBUG_TR_CTRL R_SERIAL1_TR_CTRL
  56. #define DEBUG_REC_CTRL R_SERIAL1_REC_CTRL
  57. #define DEBUG_IRQ IO_STATE(R_IRQ_MASK1_SET, ser1_data, set)
  58. #define DEBUG_DMA_IRQ_CLR IO_STATE(R_IRQ_MASK2_CLR, dma8_descr, clr)
  59. #endif
  60. #ifdef CONFIG_ETRAX_DEBUG_PORT2
  61. #define DEBUG_PORT_IDX 2
  62. #define DEBUG_OCMD R_DMA_CH2_CMD
  63. #define DEBUG_FIRST R_DMA_CH2_FIRST
  64. #define DEBUG_OCLRINT R_DMA_CH2_CLR_INTR
  65. #define DEBUG_STATUS R_DMA_CH2_STATUS
  66. #define DEBUG_READ R_SERIAL2_READ
  67. #define DEBUG_WRITE R_SERIAL2_TR_DATA
  68. #define DEBUG_TR_CTRL R_SERIAL2_TR_CTRL
  69. #define DEBUG_REC_CTRL R_SERIAL2_REC_CTRL
  70. #define DEBUG_IRQ IO_STATE(R_IRQ_MASK1_SET, ser2_data, set)
  71. #define DEBUG_DMA_IRQ_CLR IO_STATE(R_IRQ_MASK2_CLR, dma2_descr, clr)
  72. #endif
  73. #ifdef CONFIG_ETRAX_DEBUG_PORT3
  74. #define DEBUG_PORT_IDX 3
  75. #define DEBUG_OCMD R_DMA_CH4_CMD
  76. #define DEBUG_FIRST R_DMA_CH4_FIRST
  77. #define DEBUG_OCLRINT R_DMA_CH4_CLR_INTR
  78. #define DEBUG_STATUS R_DMA_CH4_STATUS
  79. #define DEBUG_READ R_SERIAL3_READ
  80. #define DEBUG_WRITE R_SERIAL3_TR_DATA
  81. #define DEBUG_TR_CTRL R_SERIAL3_TR_CTRL
  82. #define DEBUG_REC_CTRL R_SERIAL3_REC_CTRL
  83. #define DEBUG_IRQ IO_STATE(R_IRQ_MASK1_SET, ser3_data, set)
  84. #define DEBUG_DMA_IRQ_CLR IO_STATE(R_IRQ_MASK2_CLR, dma4_descr, clr)
  85. #endif
  86. /* Write a string of count length to the console (debug port) using DMA, polled
  87.  * for completion. Interrupts are disabled during the whole process. Some
  88.  * caution needs to be taken to not interfere with ttyS business on this port.
  89.  */
  90. static void 
  91. console_write(struct console *co, const char *buf, unsigned int len)
  92. {
  93. static struct etrax_dma_descr descr;
  94. unsigned long flags; 
  95. int in_progress;
  96. #ifdef CONFIG_ETRAX_DEBUG_PORT_NULL
  97.         /* no debug printout at all */
  98.         return;
  99. #endif
  100. #ifdef CONFIG_SVINTO_SIM
  101. /* no use to simulate the serial debug output */
  102. SIMCOUT(buf,len);
  103. return;
  104. #endif
  105. save_flags(flags);
  106. cli();
  107. #ifdef CONFIG_ETRAX_KGDB
  108. /* kgdb needs to output debug info using the gdb protocol */
  109. putDebugString(buf, len);
  110. restore_flags(flags);
  111. return;
  112. #endif
  113. /* make sure the transmitter is enabled. 
  114.  * NOTE: this overrides any setting done in ttySx, to 8N1, no auto-CTS.
  115.  * in the future, move the tr/rec_ctrl shadows from etrax100ser.c to
  116.  * shadows.c and use it here as well...
  117.  */
  118. *DEBUG_TR_CTRL = 0x40;
  119. /* if the tty has some ongoing business, remember it */
  120. in_progress = *DEBUG_OCMD & 7;
  121. if(in_progress) {
  122. /* wait until the output dma channel is ready */
  123. while(*DEBUG_OCMD & 7) /* nothing */ ;
  124. }
  125. descr.ctrl = d_eol;
  126. descr.sw_len = len;
  127. descr.buf = __pa(buf);
  128. *DEBUG_FIRST = __pa(&descr); /* write to R_DMAx_FIRST */
  129. *DEBUG_OCMD = 1;       /* dma command start -> R_DMAx_CMD */
  130. /* wait until the output dma channel is ready again */
  131. while(*DEBUG_OCMD & 7) /* nothing */;
  132. /* clear pending interrupts so we don't get a surprise below */
  133. if(in_progress)
  134. *DEBUG_OCLRINT = 2;  /* only clear EOP, leave DESCR for the tty */
  135. else
  136. *DEBUG_OCLRINT = 3;  /* clear both EOP and DESCR */
  137. while(*DEBUG_STATUS & 0x7f); /* wait until output FIFO is empty as well */
  138. restore_flags(flags);
  139. }
  140. /* legacy function */
  141. void
  142. console_print_etrax(const char *buf)
  143. {
  144. console_write(NULL, buf, strlen(buf));
  145. }
  146. /* Use polling to get a single character FROM the debug port */
  147. int
  148. getDebugChar(void)
  149. {
  150. unsigned long readval;
  151. do {
  152. readval = *DEBUG_READ;
  153. } while(!(readval & IO_MASK(R_SERIAL0_READ, data_avail)));
  154. return (readval & IO_MASK(R_SERIAL0_READ, data_in));
  155. }
  156. /* Use polling to put a single character to the debug port */
  157. void
  158. putDebugChar(int val)
  159. {
  160. while(!(*DEBUG_READ & IO_MASK(R_SERIAL0_READ, tr_ready))) ;
  161. ;
  162. *DEBUG_WRITE = val;
  163. }
  164. /* Enable irq for receiving chars on the debug port, used by kgdb */
  165. void
  166. enableDebugIRQ(void)
  167. {
  168. *R_IRQ_MASK1_SET = DEBUG_IRQ;
  169. /* use R_VECT_MASK directly, since we really bypass Linux normal
  170.  * IRQ handling in kgdb anyway, we don't need to use enable_irq
  171.  */
  172. *R_VECT_MASK_SET = IO_STATE(R_VECT_MASK_SET, serial, set);
  173. *DEBUG_REC_CTRL = IO_STATE(R_SERIAL0_REC_CTRL, rec_enable, enable);
  174. }
  175. static kdev_t 
  176. console_device(struct console *c)
  177. {
  178.          return MKDEV(TTY_MAJOR, 64 + c->index);
  179. }
  180. static int __init 
  181. console_setup(struct console *co, char *options)
  182. {
  183.         return 0;
  184. }
  185. static struct console sercons = {
  186.         "ttyS",
  187.         console_write,
  188.         NULL,
  189.         console_device,
  190.         NULL,
  191. NULL,
  192. console_setup,
  193. CON_PRINTBUFFER,
  194. DEBUG_PORT_IDX,
  195. 0,
  196. NULL
  197. };
  198. /*
  199.  *      Register console (for printk's etc)
  200.  */
  201. void __init 
  202. init_etrax_debug(void)
  203. {
  204. register_console(&sercons);
  205. }