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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/arch/m68k/mac/debug.c
  3.  *
  4.  * Shamelessly stolen (SCC code and general framework) from:
  5.  *
  6.  * linux/arch/m68k/atari/debug.c
  7.  *
  8.  * Atari debugging and serial console stuff
  9.  *
  10.  * Assembled of parts of former atari/config.c 97-12-18 by Roman Hodek
  11.  *  
  12.  * This file is subject to the terms and conditions of the GNU General Public
  13.  * License.  See the file COPYING in the main directory of this archive
  14.  * for more details.
  15.  */
  16. #include <linux/config.h>
  17. #include <linux/types.h>
  18. #include <linux/sched.h>
  19. #include <linux/tty.h>
  20. #include <linux/console.h>
  21. #include <linux/init.h>
  22. #include <linux/delay.h>
  23. #define BOOTINFO_COMPAT_1_0
  24. #include <asm/setup.h>
  25. #include <asm/bootinfo.h>
  26. #include <asm/machw.h>
  27. #include <asm/macints.h>
  28. extern char m68k_debug_device[];
  29. extern struct compat_bootinfo compat_boot_info;
  30. extern unsigned long mac_videobase;
  31. extern unsigned long mac_videodepth;
  32. extern unsigned long mac_rowbytes;
  33. extern void mac_serial_print(char *);
  34. #define DEBUG_HEADS
  35. #undef DEBUG_SCREEN
  36. #define DEBUG_SERIAL
  37. /*
  38.  * These two auxiliary debug functions should go away ASAP. Only usage: 
  39.  * before the console output is up (after head.S come some other crucial
  40.  * setup routines :-) it permits writing 'data' to the screen as bit patterns
  41.  * (good luck reading those). Helped to figure that the bootinfo contained
  42.  * garbage data on the amount and size of memory chunks ...
  43.  *
  44.  * The 'pos' argument now simply means 'linefeed after print' ...
  45.  */
  46. #ifdef DEBUG_SCREEN
  47. static int peng=0, line=0;
  48. #endif
  49. void mac_debugging_short(int pos, short num)
  50. {
  51. #ifdef DEBUG_SCREEN
  52. unsigned char *pengoffset;
  53. unsigned char *pptr;
  54. int i;
  55. #endif
  56. #ifdef DEBUG_SERIAL
  57. printk("debug: %d !n", num);
  58. #endif
  59. #ifdef DEBUG_SCREEN
  60. if (!MACH_IS_MAC) {
  61. /* printk("debug: %d !n", num); */
  62. return;
  63. }
  64. /* calculate current offset */
  65. pengoffset=(unsigned char *)(mac_videobase+(150+line*2)*mac_rowbytes)
  66.     +80*peng;
  67. pptr=pengoffset;
  68. for(i=0;i<8*sizeof(short);i++) /* # of bits */
  69. {
  70. /*        value        mask for bit i, reverse order */
  71. *pptr++ = (num & ( 1 << (8*sizeof(short)-i-1) ) ? 0xFF : 0x00);
  72. }
  73. peng++;
  74. if (pos) {
  75. line++;
  76. peng = 0;
  77. }
  78. #endif
  79. }
  80. void mac_debugging_long(int pos, long addr)
  81. {
  82. #ifdef DEBUG_SCREEN
  83. unsigned char *pengoffset;
  84. unsigned char *pptr;
  85. int i;
  86. #endif
  87. #ifdef DEBUG_SERIAL
  88. printk("debug: #%ld !n", addr);
  89. #endif
  90. #ifdef DEBUG_SCREEN
  91. if (!MACH_IS_MAC) {
  92. /* printk("debug: #%ld !n", addr); */
  93. return;
  94. }
  95. pengoffset=(unsigned char *)(mac_videobase+(150+line*2)*mac_rowbytes)
  96.     +80*peng;
  97. pptr=pengoffset;
  98. for(i=0;i<8*sizeof(long);i++) /* # of bits */
  99. {
  100. *pptr++ = (addr & ( 1 << (8*sizeof(long)-i-1) ) ? 0xFF : 0x00);
  101. }
  102. peng++;
  103. if (pos) {
  104. line++;
  105. peng = 0;
  106. }
  107. #endif
  108. }
  109. #ifdef DEBUG_SERIAL
  110. /*
  111.  * TODO: serial debug code
  112.  */
  113. struct SCC
  114.  {
  115.   u_char cha_b_ctrl;
  116.   u_char char_dummy1;
  117.   u_char cha_a_ctrl;
  118.   u_char char_dummy2;
  119.   u_char cha_b_data;
  120.   u_char char_dummy3;
  121.   u_char cha_a_data;
  122.  };
  123. # define scc (*((volatile struct SCC*)mac_bi_data.sccbase))
  124. /* Flag that serial port is already initialized and used */
  125. int mac_SCC_init_done = 0;
  126. /* Can be set somewhere, if a SCC master reset has already be done and should
  127.  * not be repeated; used by kgdb */
  128. int mac_SCC_reset_done = 0;
  129. static int scc_port = -1;
  130. static struct console mac_console_driver = {
  131. name: "debug",
  132. flags: CON_PRINTBUFFER,
  133. index: -1,
  134. };
  135. /*
  136.  * Crude hack to get console output to the screen before the framebuffer
  137.  * is initialized (happens a lot later in 2.1!).
  138.  * We just use the console routines declared in head.S, this will interfere
  139.  * with regular framebuffer console output and should be used exclusively
  140.  * to debug kernel problems manifesting before framebuffer init (aka WSOD)
  141.  *
  142.  * To keep this hack from interfering with the regular console driver, either
  143.  * deregister this driver before/on framebuffer console init, or silence this
  144.  * function after the fbcon driver is running (will lose console messages!?).
  145.  * To debug real early bugs, need to write a 'mac_register_console_hack()'
  146.  * that is called from start_kernel() before setup_arch() and just registers
  147.  * this driver if Mac.
  148.  */
  149. void mac_debug_console_write (struct console *co, const char *str,
  150.       unsigned int count)
  151. {
  152. mac_serial_print(str);
  153. }
  154. /* Mac: loops_per_jiffy min. 19000 ^= .5 us; MFPDELAY was 0.6 us*/
  155. #define uSEC 1
  156. static inline void mac_sccb_out (char c)
  157. {
  158.     int i;
  159.     do {
  160. for( i = uSEC; i > 0; --i )
  161. barrier();
  162.     } while (!(scc.cha_b_ctrl & 0x04)); /* wait for tx buf empty */
  163.     for( i = uSEC; i > 0; --i )
  164. barrier();
  165.     scc.cha_b_data = c;
  166. }
  167. static inline void mac_scca_out (char c)
  168. {
  169.     int i;
  170.     do {
  171. for( i = uSEC; i > 0; --i )
  172. barrier();
  173.     } while (!(scc.cha_a_ctrl & 0x04)); /* wait for tx buf empty */
  174.     for( i = uSEC; i > 0; --i )
  175. barrier();
  176.     scc.cha_a_data = c;
  177. }
  178. void mac_sccb_console_write (struct console *co, const char *str,
  179.       unsigned int count)
  180. {
  181.     while (count--) {
  182. if (*str == 'n')
  183.     mac_sccb_out( 'r' );
  184. mac_sccb_out( *str++ );
  185.     }
  186. }
  187. void mac_scca_console_write (struct console *co, const char *str,
  188.       unsigned int count)
  189. {
  190.     while (count--) {
  191. if (*str == 'n')
  192.     mac_scca_out( 'r' );
  193. mac_scca_out( *str++ );
  194.     }
  195. }
  196. #if defined(CONFIG_SERIAL_CONSOLE) || defined(DEBUG_SERIAL)
  197. int mac_sccb_console_wait_key(struct console *co)
  198. {
  199.     int i;
  200.     do {
  201. for( i = uSEC; i > 0; --i )
  202. barrier();
  203.     } while( !(scc.cha_b_ctrl & 0x01) ); /* wait for rx buf filled */
  204.     for( i = uSEC; i > 0; --i )
  205. barrier();
  206.     return( scc.cha_b_data );
  207. }
  208. int mac_scca_console_wait_key(struct console *co)
  209. {
  210.     int i;
  211.     do {
  212. for( i = uSEC; i > 0; --i )
  213. barrier();
  214.     } while( !(scc.cha_a_ctrl & 0x01) ); /* wait for rx buf filled */
  215.     for( i = uSEC; i > 0; --i )
  216. barrier();
  217.     return( scc.cha_a_data );
  218. }
  219. #endif
  220. /* The following two functions do a quick'n'dirty initialization of the MFP or
  221.  * SCC serial ports. They're used by the debugging interface, kgdb, and the
  222.  * serial console code. */
  223. #define SCCB_WRITE(reg,val)
  224.     do {
  225. int i;
  226. scc.cha_b_ctrl = (reg);
  227. for( i = uSEC; i > 0; --i )
  228. barrier();
  229. scc.cha_b_ctrl = (val);
  230. for( i = uSEC; i > 0; --i )
  231. barrier();
  232.     } while(0)
  233. #define SCCA_WRITE(reg,val)
  234.     do {
  235. int i;
  236. scc.cha_a_ctrl = (reg);
  237. for( i = uSEC; i > 0; --i )
  238. barrier();
  239. scc.cha_a_ctrl = (val);
  240. for( i = uSEC; i > 0; --i )
  241. barrier();
  242.     } while(0)
  243. /* loops_per_jiffy isn't initialized yet, so we can't use udelay(). This does a
  244.  * delay of ~ 60us. */
  245. /* Mac: loops_per_jiffy min. 19000 ^= .5 us; MFPDELAY was 0.6 us*/
  246. #define LONG_DELAY()
  247.     do {
  248. int i;
  249. for( i = 60*uSEC; i > 0; --i )
  250.     barrier();
  251.     } while(0)
  252.     
  253. #ifndef CONFIG_SERIAL_CONSOLE
  254. static void __init mac_init_scc_port( int cflag, int port )
  255. #else
  256. void mac_init_scc_port( int cflag, int port )
  257. #endif
  258. {
  259. extern int mac_SCC_reset_done;
  260. /*
  261.  * baud rates: 1200, 1800, 2400, 4800, 9600, 19.2k, 38.4k, 57.6k, 115.2k
  262.  */
  263. static int clksrc_table[9] =
  264. /* reg 11: 0x50 = BRG, 0x00 = RTxC, 0x28 = TRxC */
  265.      { 0x50, 0x50, 0x50, 0x50, 0x50, 0x50, 0x50, 0x00, 0x00 };
  266. static int clkmode_table[9] =
  267. /* reg 4: 0x40 = x16, 0x80 = x32, 0xc0 = x64 */
  268.      { 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0xc0, 0x80 };
  269. static int div_table[9] =
  270. /* reg12 (BRG low) */
  271.      { 94, 62, 46, 22, 10, 4, 1, 0, 0 };
  272.     int baud = cflag & CBAUD;
  273.     int clksrc, clkmode, div, reg3, reg5;
  274.     
  275.     if (cflag & CBAUDEX)
  276. baud += B38400;
  277.     if (baud < B1200 || baud > B38400+2)
  278. baud = B9600; /* use default 9600bps for non-implemented rates */
  279.     baud -= B1200; /* tables starts at 1200bps */
  280.     clksrc  = clksrc_table[baud];
  281.     clkmode = clkmode_table[baud];
  282.     div     = div_table[baud];
  283.     reg3 = (((cflag & CSIZE) == CS8) ? 0xc0 : 0x40);
  284.     reg5 = (((cflag & CSIZE) == CS8) ? 0x60 : 0x20) | 0x82 /* assert DTR/RTS */;
  285.     if (port == 1) {
  286.     (void)scc.cha_b_ctrl; /* reset reg pointer */
  287.     SCCB_WRITE( 9, 0xc0 ); /* reset */
  288.     LONG_DELAY(); /* extra delay after WR9 access */
  289.     SCCB_WRITE( 4, (cflag & PARENB) ? ((cflag & PARODD) ? 0x01 : 0x03) : 0 |
  290.   0x04 /* 1 stopbit */ |
  291.   clkmode );
  292.     SCCB_WRITE( 3, reg3 );
  293.     SCCB_WRITE( 5, reg5 );
  294.     SCCB_WRITE( 9, 0 ); /* no interrupts */
  295.     LONG_DELAY(); /* extra delay after WR9 access */
  296.     SCCB_WRITE( 10, 0 ); /* NRZ mode */
  297.     SCCB_WRITE( 11, clksrc ); /* main clock source */
  298.     SCCB_WRITE( 12, div ); /* BRG value */
  299.     SCCB_WRITE( 13, 0 ); /* BRG high byte */
  300.     SCCB_WRITE( 14, 1 );
  301.     SCCB_WRITE( 3, reg3 | 1 );
  302.     SCCB_WRITE( 5, reg5 | 8 );
  303.     } else if (port == 0) {
  304.     (void)scc.cha_a_ctrl; /* reset reg pointer */
  305.     SCCA_WRITE( 9, 0xc0 ); /* reset */
  306.     LONG_DELAY(); /* extra delay after WR9 access */
  307.     SCCA_WRITE( 4, (cflag & PARENB) ? ((cflag & PARODD) ? 0x01 : 0x03) : 0 |
  308.   0x04 /* 1 stopbit */ |
  309.   clkmode );
  310.     SCCA_WRITE( 3, reg3 );
  311.     SCCA_WRITE( 5, reg5 );
  312.     SCCA_WRITE( 9, 0 ); /* no interrupts */
  313.     LONG_DELAY(); /* extra delay after WR9 access */
  314.     SCCA_WRITE( 10, 0 ); /* NRZ mode */
  315.     SCCA_WRITE( 11, clksrc ); /* main clock source */
  316.     SCCA_WRITE( 12, div ); /* BRG value */
  317.     SCCA_WRITE( 13, 0 ); /* BRG high byte */
  318.     SCCA_WRITE( 14, 1 );
  319.     SCCA_WRITE( 3, reg3 | 1 );
  320.     SCCA_WRITE( 5, reg5 | 8 );
  321.     }
  322.     mac_SCC_reset_done = 1;
  323.     mac_SCC_init_done = 1;
  324. }
  325. #endif /* DEBUG_SERIAL */
  326. void mac_init_scca_port( int cflag )
  327. {
  328. mac_init_scc_port(cflag, 0);
  329. }
  330. void mac_init_sccb_port( int cflag )
  331. {
  332. mac_init_scc_port(cflag, 1);
  333. }
  334. void __init mac_debug_init(void)
  335. {
  336. #ifdef DEBUG_SERIAL
  337.     if (   !strcmp( m68k_debug_device, "ser"  )
  338.         || !strcmp( m68k_debug_device, "ser1" )) {
  339. /* Mac modem port */
  340. mac_init_scc_port( B9600|CS8, 0 );
  341. mac_console_driver.write = mac_scca_console_write;
  342. #ifdef CONFIG_SERIAL_CONSOLE
  343. mac_console_driver.wait_key = mac_scca_console_wait_key;
  344. #endif
  345. scc_port = 0;
  346.     }
  347.     else if (!strcmp( m68k_debug_device, "ser2" )) {
  348. /* Mac printer port */
  349. mac_init_scc_port( B9600|CS8, 1 );
  350. mac_console_driver.write = mac_sccb_console_write;
  351. #ifdef CONFIG_SERIAL_CONSOLE
  352. mac_console_driver.wait_key = mac_sccb_console_wait_key;
  353. #endif
  354. scc_port = 1;
  355.     }
  356. #endif
  357. #ifdef DEBUG_HEADS
  358.     if (   !strcmp( m68k_debug_device, "scn"  )
  359.         || !strcmp( m68k_debug_device, "con" )) {
  360. /* display, using head.S console routines */
  361. mac_console_driver.write = mac_debug_console_write;
  362.     }
  363. #endif
  364.     if (mac_console_driver.write)
  365. register_console(&mac_console_driver);
  366. }
  367. /*
  368.  * Local variables:
  369.  *  c-indent-level: 4
  370.  *  tab-width: 8
  371.  * End:
  372.  */