debug.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:10k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * linux/arch/m68k/atari/debug.c
  3.  *
  4.  * Atari debugging and serial console stuff
  5.  *
  6.  * Assembled of parts of former atari/config.c 97-12-18 by Roman Hodek
  7.  *  
  8.  * This file is subject to the terms and conditions of the GNU General Public
  9.  * License.  See the file COPYING in the main directory of this archive
  10.  * for more details.
  11.  */
  12. #include <linux/config.h>
  13. #include <linux/types.h>
  14. #include <linux/tty.h>
  15. #include <linux/console.h>
  16. #include <linux/init.h>
  17. #include <linux/delay.h>
  18. #include <asm/atarihw.h>
  19. #include <asm/atariints.h>
  20. extern char m68k_debug_device[];
  21. /* Flag that Modem1 port is already initialized and used */
  22. int atari_MFP_init_done = 0;
  23. /* Flag that Modem1 port is already initialized and used */
  24. int atari_SCC_init_done = 0;
  25. /* Can be set somewhere, if a SCC master reset has already be done and should
  26.  * not be repeated; used by kgdb */
  27. int atari_SCC_reset_done = 0;
  28. static struct console atari_console_driver = {
  29. name: "debug",
  30. flags: CON_PRINTBUFFER,
  31. index: -1,
  32. };
  33. static inline void ata_mfp_out (char c)
  34. {
  35.     while (!(mfp.trn_stat & 0x80)) /* wait for tx buf empty */
  36. barrier ();
  37.     mfp.usart_dta = c;
  38. }
  39. void atari_mfp_console_write (struct console *co, const char *str,
  40.       unsigned int count)
  41. {
  42.     while (count--) {
  43. if (*str == 'n')
  44.     ata_mfp_out( 'r' );
  45. ata_mfp_out( *str++ );
  46.     }
  47. }
  48. static inline void ata_scc_out (char c)
  49. {
  50.     do {
  51. MFPDELAY();
  52.     } while (!(scc.cha_b_ctrl & 0x04)); /* wait for tx buf empty */
  53.     MFPDELAY();
  54.     scc.cha_b_data = c;
  55. }
  56. void atari_scc_console_write (struct console *co, const char *str,
  57.       unsigned int count)
  58. {
  59.     while (count--) {
  60. if (*str == 'n')
  61.     ata_scc_out( 'r' );
  62. ata_scc_out( *str++ );
  63.     }
  64. }
  65. static inline void ata_midi_out (char c)
  66. {
  67.     while (!(acia.mid_ctrl & ACIA_TDRE)) /* wait for tx buf empty */
  68. barrier ();
  69.     acia.mid_data = c;
  70. }
  71. void atari_midi_console_write (struct console *co, const char *str,
  72.        unsigned int count)
  73. {
  74.     while (count--) {
  75. if (*str == 'n')
  76.     ata_midi_out( 'r' );
  77. ata_midi_out( *str++ );
  78.     }
  79. }
  80. static int ata_par_out (char c)
  81. {
  82.     unsigned char tmp;
  83.     /* This a some-seconds timeout in case no printer is connected */
  84.     unsigned long i = loops_per_jiffy > 1 ? loops_per_jiffy : 10000000/HZ;
  85.     while( (mfp.par_dt_reg & 1) && --i ) /* wait for BUSY == L */
  86. ;
  87.     if (!i) return( 0 );
  88.     
  89.     sound_ym.rd_data_reg_sel = 15;  /* select port B */
  90.     sound_ym.wd_data = c;           /* put char onto port */
  91.     sound_ym.rd_data_reg_sel = 14;  /* select port A */
  92.     tmp = sound_ym.rd_data_reg_sel;
  93.     sound_ym.wd_data = tmp & ~0x20; /* set strobe L */
  94.     MFPDELAY();                     /* wait a bit */
  95.     sound_ym.wd_data = tmp | 0x20;  /* set strobe H */
  96.     return( 1 );
  97. }
  98. static void atari_par_console_write (struct console *co, const char *str,
  99.      unsigned int count)
  100. {
  101.     static int printer_present = 1;
  102.     if (!printer_present)
  103. return;
  104.     while (count--) {
  105. if (*str == 'n')
  106.     if (!ata_par_out( 'r' )) {
  107. printer_present = 0;
  108. return;
  109.     }
  110. if (!ata_par_out( *str++ )) {
  111.     printer_present = 0;
  112.     return;
  113. }
  114.     }
  115. }
  116. #ifdef CONFIG_SERIAL_CONSOLE
  117. int atari_mfp_console_wait_key(struct console *co)
  118. {
  119.     while( !(mfp.rcv_stat & 0x80) ) /* wait for rx buf filled */
  120. barrier();
  121.     return( mfp.usart_dta );
  122. }
  123. int atari_scc_console_wait_key(struct console *co)
  124. {
  125.     do {
  126. MFPDELAY();
  127.     } while( !(scc.cha_b_ctrl & 0x01) ); /* wait for rx buf filled */
  128.     MFPDELAY();
  129.     return( scc.cha_b_data );
  130. }
  131. int atari_midi_console_wait_key(struct console *co)
  132. {
  133.     while( !(acia.mid_ctrl & ACIA_RDRF) ) /* wait for rx buf filled */
  134. barrier();
  135.     return( acia.mid_data );
  136. }
  137. #endif
  138. /* The following two functions do a quick'n'dirty initialization of the MFP or
  139.  * SCC serial ports. They're used by the debugging interface, kgdb, and the
  140.  * serial console code. */
  141. #ifndef CONFIG_SERIAL_CONSOLE
  142. static void __init atari_init_mfp_port( int cflag )
  143. #else
  144. void atari_init_mfp_port( int cflag )
  145. #endif
  146. {
  147.     /* timer values for 1200...115200 bps; > 38400 select 110, 134, or 150
  148.      * bps, resp., and work only correct if there's a RSVE or RSSPEED */
  149.     static int baud_table[9] = { 16, 11, 8, 4, 2, 1, 175, 143, 128 };
  150.     int baud = cflag & CBAUD;
  151.     int parity = (cflag & PARENB) ? ((cflag & PARODD) ? 0x04 : 0x06) : 0;
  152.     int csize = ((cflag & CSIZE) == CS7) ? 0x20 : 0x00;
  153.     if (cflag & CBAUDEX)
  154. baud += B38400;
  155.     if (baud < B1200 || baud > B38400+2)
  156. baud = B9600; /* use default 9600bps for non-implemented rates */
  157.     baud -= B1200; /* baud_table[] starts at 1200bps */
  158.     mfp.trn_stat &= ~0x01; /* disable TX */
  159.     mfp.usart_ctr = parity | csize | 0x88; /* 1:16 clk mode, 1 stop bit */
  160.     mfp.tim_ct_cd &= 0x70;  /* stop timer D */
  161.     mfp.tim_dt_d = baud_table[baud];
  162.     mfp.tim_ct_cd |= 0x01;  /* start timer D, 1:4 */
  163.     mfp.trn_stat |= 0x01;  /* enable TX */
  164.     atari_MFP_init_done = 1;
  165. }
  166. #define SCC_WRITE(reg,val)
  167.     do {
  168. scc.cha_b_ctrl = (reg);
  169. MFPDELAY();
  170. scc.cha_b_ctrl = (val);
  171. MFPDELAY();
  172.     } while(0)
  173. /* loops_per_jiffy isn't initialized yet, so we can't use udelay(). This does a
  174.  * delay of ~ 60us. */
  175. #define LONG_DELAY()
  176.     do {
  177. int i;
  178. for( i = 100; i > 0; --i )
  179.     MFPDELAY();
  180.     } while(0)
  181.     
  182. #ifndef CONFIG_SERIAL_CONSOLE
  183. static void __init atari_init_scc_port( int cflag )
  184. #else
  185. void atari_init_scc_port( int cflag )
  186. #endif
  187. {
  188.     extern int atari_SCC_reset_done;
  189.     static int clksrc_table[9] =
  190. /* reg 11: 0x50 = BRG, 0x00 = RTxC, 0x28 = TRxC */
  191.      { 0x50, 0x50, 0x50, 0x50, 0x50, 0x50, 0x50, 0x00, 0x00 };
  192.     static int brgsrc_table[9] =
  193. /* reg 14: 0 = RTxC, 2 = PCLK */
  194.      { 2, 2, 2, 2, 2, 2, 0, 2, 2 };
  195.     static int clkmode_table[9] =
  196. /* reg 4: 0x40 = x16, 0x80 = x32, 0xc0 = x64 */
  197.      { 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0xc0, 0x80 };
  198.     static int div_table[9] =
  199. /* reg12 (BRG low) */
  200.      { 208, 138, 103, 50, 24, 11, 1, 0, 0 };
  201.     int baud = cflag & CBAUD;
  202.     int clksrc, clkmode, div, reg3, reg5;
  203.     
  204.     if (cflag & CBAUDEX)
  205. baud += B38400;
  206.     if (baud < B1200 || baud > B38400+2)
  207. baud = B9600; /* use default 9600bps for non-implemented rates */
  208.     baud -= B1200; /* tables starts at 1200bps */
  209.     clksrc  = clksrc_table[baud];
  210.     clkmode = clkmode_table[baud];
  211.     div     = div_table[baud];
  212.     if (ATARIHW_PRESENT(TT_MFP) && baud >= 6) {
  213. /* special treatment for TT, where rates >= 38400 are done via TRxC */
  214. clksrc = 0x28; /* TRxC */
  215. clkmode = baud == 6 ? 0xc0 :
  216.   baud == 7 ? 0x80 : /* really 76800bps */
  217.       0x40;  /* really 153600bps */
  218. div = 0;
  219.     }
  220.     reg3 = (cflag & CSIZE) == CS8 ? 0xc0 : 0x40;
  221.     reg5 = (cflag & CSIZE) == CS8 ? 0x60 : 0x20 | 0x82 /* assert DTR/RTS */;
  222.     
  223.     (void)scc.cha_b_ctrl; /* reset reg pointer */
  224.     SCC_WRITE( 9, 0xc0 ); /* reset */
  225.     LONG_DELAY(); /* extra delay after WR9 access */
  226.     SCC_WRITE( 4, (cflag & PARENB) ? ((cflag & PARODD) ? 0x01 : 0x03) : 0 |
  227.   0x04 /* 1 stopbit */ |
  228.   clkmode );
  229.     SCC_WRITE( 3, reg3 );
  230.     SCC_WRITE( 5, reg5 );
  231.     SCC_WRITE( 9, 0 ); /* no interrupts */
  232.     LONG_DELAY(); /* extra delay after WR9 access */
  233.     SCC_WRITE( 10, 0 ); /* NRZ mode */
  234.     SCC_WRITE( 11, clksrc ); /* main clock source */
  235.     SCC_WRITE( 12, div ); /* BRG value */
  236.     SCC_WRITE( 13, 0 ); /* BRG high byte */
  237.     SCC_WRITE( 14, brgsrc_table[baud] );
  238.     SCC_WRITE( 14, brgsrc_table[baud] | (div ? 1 : 0) );
  239.     SCC_WRITE( 3, reg3 | 1 );
  240.     SCC_WRITE( 5, reg5 | 8 );
  241.     
  242.     atari_SCC_reset_done = 1;
  243.     atari_SCC_init_done = 1;
  244. }
  245. #ifndef CONFIG_SERIAL_CONSOLE 
  246. static void __init atari_init_midi_port( int cflag )
  247. #else
  248. void atari_init_midi_port( int cflag )
  249. #endif
  250. {
  251.     int baud = cflag & CBAUD;
  252.     int csize = ((cflag & CSIZE) == CS8) ? 0x10 : 0x00;
  253.     /* warning 7N1 isn't possible! (instead 7O2 is used...) */
  254.     int parity = (cflag & PARENB) ? ((cflag & PARODD) ? 0x0c : 0x08) : 0x04;
  255.     int div;
  256.     /* 4800 selects 7812.5, 115200 selects 500000, all other (incl. 9600 as
  257.      * default) the standard MIDI speed 31250. */
  258.     if (cflag & CBAUDEX)
  259. baud += B38400;
  260.     if (baud == B4800)
  261. div = ACIA_DIV64; /* really 7812.5 bps */
  262.     else if (baud == B38400+2 /* 115200 */)
  263. div = ACIA_DIV1; /* really 500 kbps (does that work??) */
  264.     else
  265. div = ACIA_DIV16; /* 31250 bps, standard for MIDI */
  266.     /* RTS low, ints disabled */
  267.     acia.mid_ctrl = div | csize | parity |
  268.     ((atari_switches & ATARI_SWITCH_MIDI) ?
  269.      ACIA_RHTID : ACIA_RLTID);
  270. }
  271. void __init atari_debug_init(void)
  272. {
  273.     if (!strcmp( m68k_debug_device, "ser" )) {
  274. /* defaults to ser2 for a Falcon and ser1 otherwise */
  275. strcpy( m68k_debug_device, MACH_IS_FALCON ? "ser2" : "ser1" );
  276.     }
  277.     if (!strcmp( m68k_debug_device, "ser1" )) {
  278. /* ST-MFP Modem1 serial port */
  279. atari_init_mfp_port( B9600|CS8 );
  280. atari_console_driver.write = atari_mfp_console_write;
  281.     }
  282.     else if (!strcmp( m68k_debug_device, "ser2" )) {
  283. /* SCC Modem2 serial port */
  284. atari_init_scc_port( B9600|CS8 );
  285. atari_console_driver.write = atari_scc_console_write;
  286.     }
  287.     else if (!strcmp( m68k_debug_device, "midi" )) {
  288. /* MIDI port */
  289. atari_init_midi_port( B9600|CS8 );
  290. atari_console_driver.write = atari_midi_console_write;
  291.     }
  292.     else if (!strcmp( m68k_debug_device, "par" )) {
  293. /* parallel printer */
  294. atari_turnoff_irq( IRQ_MFP_BUSY ); /* avoid ints */
  295. sound_ym.rd_data_reg_sel = 7;  /* select mixer control */
  296. sound_ym.wd_data = 0xff;       /* sound off, ports are output */
  297. sound_ym.rd_data_reg_sel = 15; /* select port B */
  298. sound_ym.wd_data = 0;          /* no char */
  299. sound_ym.rd_data_reg_sel = 14; /* select port A */
  300. sound_ym.wd_data = sound_ym.rd_data_reg_sel | 0x20; /* strobe H */
  301. atari_console_driver.write = atari_par_console_write;
  302.     }
  303.     if (atari_console_driver.write)
  304. register_console(&atari_console_driver);
  305. }
  306. /*
  307.  * Local variables:
  308.  *  c-indent-level: 4
  309.  *  tab-width: 8
  310.  * End:
  311.  */