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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * include/asm-sh/serial.h
  3.  *
  4.  * Configuration details for 8250, 16450, 16550, etc. serial ports
  5.  */
  6. #ifndef _ASM_SERIAL_H
  7. #define _ASM_SERIAL_H
  8. #include <linux/config.h>
  9. #include <linux/kernel.h>
  10. #ifdef CONFIG_SH_EC3104
  11. #include <asm/serial-ec3104.h>
  12. #elif defined (CONFIG_SH_BIGSUR)
  13. #include <asm/serial-bigsur.h>
  14. #else
  15. /*
  16.  * This assumes you have a 1.8432 MHz clock for your UART.
  17.  *
  18.  * It'd be nice if someone built a serial card with a 24.576 MHz
  19.  * clock, since the 16550A is capable of handling a top speed of 1.5
  20.  * megabits/second; but this requires the faster clock.
  21.  */
  22. #define BASE_BAUD ( 1843200 / 16 )
  23. #define STD_COM_FLAGS (ASYNC_BOOT_AUTOCONF | ASYNC_SKIP_TEST)
  24. #ifdef CONFIG_HD64465
  25. #include <asm/hd64465.h>
  26. #define RS_TABLE_SIZE  1
  27. #define STD_SERIAL_PORT_DEFNS                   
  28.         /* UART CLK   PORT IRQ     FLAGS        */                      
  29.         { 0, BASE_BAUD, 0x3F8, HD64465_IRQ_UART, STD_COM_FLAGS }  /* ttyS0 */
  30. #else
  31. #define RS_TABLE_SIZE  2
  32. #define STD_SERIAL_PORT_DEFNS
  33. /* UART CLK   PORT IRQ     FLAGS        */
  34. { 0, BASE_BAUD, 0x3F8, 4, STD_COM_FLAGS }, /* ttyS0 */
  35. { 0, BASE_BAUD, 0x2F8, 3, STD_COM_FLAGS } /* ttyS1 */
  36. #endif
  37. #define SERIAL_PORT_DFNS STD_SERIAL_PORT_DEFNS
  38. /* XXX: This should be moved ino irq.h */
  39. #define irq_cannonicalize(x) (x)
  40. #endif
  41. #endif /* _ASM_SERIAL_H */