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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * BK Id: SCCS/s.ns16550.c 1.16 03/13/02 09:17:06 trini
  3.  */
  4. /*
  5.  * COM1 NS16550 support
  6.  */
  7. #include <linux/config.h>
  8. #include <linux/serialP.h>
  9. #include <linux/serial_reg.h>
  10. #include <asm/serial.h>
  11. #define SERIAL_BAUD 9600
  12. extern void outb(int port, unsigned char val);
  13. extern unsigned char inb(int port);
  14. extern unsigned long ISA_io;
  15. static struct serial_state rs_table[RS_TABLE_SIZE] = {
  16. SERIAL_PORT_DFNS /* Defined in <asm/serial.h> */
  17. };
  18. static int shift;
  19. unsigned long serial_init(int chan, void *ignored)
  20. {
  21. unsigned long com_port;
  22. unsigned char lcr, dlm;
  23. /* We need to find out which type io we're expecting.  If it's
  24.  * 'SERIAL_IO_PORT', we get an offset from the isa_io_base.
  25.  * If it's 'SERIAL_IO_MEM', we can the exact location.  -- Tom */
  26. switch (rs_table[chan].io_type) {
  27. case SERIAL_IO_PORT:
  28. com_port = rs_table[chan].port;
  29. break;
  30. case SERIAL_IO_MEM:
  31. com_port = (unsigned long)rs_table[chan].iomem_base;
  32. break;
  33. default:
  34. /* We can't deal with it. */
  35. return -1;
  36. }
  37. /* How far apart the registers are. */
  38. shift = rs_table[chan].iomem_reg_shift;
  39. /* save the LCR */
  40. lcr = inb(com_port + (UART_LCR << shift));
  41. /* Access baud rate */
  42. outb(com_port + (UART_LCR << shift), 0x80);
  43. dlm = inb(com_port + (UART_DLM << shift));
  44. /*
  45.  * Test if serial port is unconfigured.
  46.  * We assume that no-one uses less than 110 baud or
  47.  * less than 7 bits per character these days.
  48.  *  -- paulus.
  49.  */
  50. if ((dlm <= 4) && (lcr & 2))
  51. /* port is configured, put the old LCR back */
  52. outb(com_port + (UART_LCR << shift), lcr);
  53. else {
  54. /* Input clock. */
  55. outb(com_port + (UART_DLL << shift),
  56.      (BASE_BAUD / SERIAL_BAUD) & 0xFF);
  57. outb(com_port + (UART_DLM << shift),
  58.      (BASE_BAUD / SERIAL_BAUD) >> 8);
  59. /* 8 data, 1 stop, no parity */
  60. outb(com_port + (UART_LCR << shift), 0x03);
  61. /* RTS/DTR */
  62. outb(com_port + (UART_MCR << shift), 0x03);
  63. }
  64. /* Clear & enable FIFOs */
  65. outb(com_port + (UART_FCR << shift), 0x07);
  66. return (com_port);
  67. }
  68. void
  69. serial_putc(unsigned long com_port, unsigned char c)
  70. {
  71. while ((inb(com_port + (UART_LSR << shift)) & UART_LSR_THRE) == 0)
  72. ;
  73. outb(com_port, c);
  74. }
  75. unsigned char
  76. serial_getc(unsigned long com_port)
  77. {
  78. while ((inb(com_port + (UART_LSR << shift)) & UART_LSR_DR) == 0)
  79. ;
  80. return inb(com_port);
  81. }
  82. int
  83. serial_tstc(unsigned long com_port)
  84. {
  85. return ((inb(com_port + (UART_LSR << shift)) & UART_LSR_DR) != 0);
  86. }
  87. void
  88. serial_close(unsigned long com_port)
  89. {
  90. }