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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/include/asm-arm/arch-ebsa110/serial.h
  3.  *
  4.  * Copyright (c) 1996,1997,1998 Russell King.
  5.  *
  6.  * Changelog:
  7.  *  15-10-1996 RMK Created
  8.  */
  9. #ifndef __ASM_ARCH_SERIAL_H
  10. #define __ASM_ARCH_SERIAL_H
  11. /*
  12.  * This assumes you have a 1.8432 MHz clock for your UART.
  13.  *
  14.  * It'd be nice if someone built a serial card with a 24.576 MHz
  15.  * clock, since the 16550A is capable of handling a top speed of 1.5
  16.  * megabits/second; but this requires the faster clock.
  17.  */
  18. #define BASE_BAUD (1843200 / 16)
  19. #define STD_COM_FLAGS (ASYNC_BOOT_AUTOCONF | ASYNC_SKIP_TEST)
  20. #define RS_TABLE_SIZE 2
  21.      /* UART CLK        PORT  IRQ     FLAGS        */
  22. #define STD_SERIAL_PORT_DEFNS 
  23. { 0, BASE_BAUD, 0x3F8,  4, STD_COM_FLAGS }, /* ttyS0 */
  24. { 0, BASE_BAUD, 0x2F8,  3, STD_COM_FLAGS }, /* ttyS1 */
  25. #define EXTRA_SERIAL_PORT_DEFNS
  26. #endif