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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/include/asm-arm/arch-cl7500/serial.h
  3.  *
  4.  * Copyright (c) 1996 Russell King.
  5.  * Copyright (C) 1999 Nexus Electronics Ltd.
  6.  *
  7.  * Changelog:
  8.  *  15-10-1996 RMK Created
  9.  *  10-08-1999 PJB Added COM3/COM4 for CL7500
  10.  */
  11. #ifndef __ASM_ARCH_SERIAL_H
  12. #define __ASM_ARCH_SERIAL_H
  13. #include <asm/arch/hardware.h>
  14. /*
  15.  * This assumes you have a 1.8432 MHz clock for your UART.
  16.  *
  17.  * It'd be nice if someone built a serial card with a 24.576 MHz
  18.  * clock, since the 16550A is capable of handling a top speed of 1.5
  19.  * megabits/second; but this requires the faster clock.
  20.  */
  21. #define BASE_BAUD (1843200 / 16)
  22. #define RS_TABLE_SIZE 16
  23. #define STD_COM_FLAGS (ASYNC_BOOT_AUTOCONF | ASYNC_SKIP_TEST)
  24.      /* UART CLK        PORT  IRQ     FLAGS        */
  25. #define STD_SERIAL_PORT_DEFNS 
  26. { 0, BASE_BAUD, 0x3F8, 10, STD_COM_FLAGS }, /* ttyS0 */
  27. { 0, BASE_BAUD, 0x2F8,  0, STD_COM_FLAGS }, /* ttyS1 */     
  28.         /* ISA Slot Serial ports */ 
  29. { 0, BASE_BAUD, ISASLOT_IO + 0x2e8,  41, STD_COM_FLAGS }, /* ttyS2 */
  30. { 0, BASE_BAUD, ISASLOT_IO + 0x3e8,  40, STD_COM_FLAGS }, /* ttyS3 */
  31. { 0, BASE_BAUD, 0    ,  0, STD_COM_FLAGS },  /* ttyS4 */
  32. { 0, BASE_BAUD, 0    ,  0, STD_COM_FLAGS }, /* ttyS5 */
  33. { 0, BASE_BAUD, 0    ,  0, STD_COM_FLAGS }, /* ttyS6 */
  34. { 0, BASE_BAUD, 0    ,  0, STD_COM_FLAGS }, /* ttyS7 */
  35. { 0, BASE_BAUD, 0    ,  0, STD_COM_FLAGS }, /* ttyS8 */
  36. { 0, BASE_BAUD, 0    ,  0, STD_COM_FLAGS }, /* ttyS9 */
  37. { 0, BASE_BAUD, 0    ,  0, STD_COM_FLAGS }, /* ttyS10 */
  38. { 0, BASE_BAUD, 0    ,  0, STD_COM_FLAGS }, /* ttyS11 */
  39. { 0, BASE_BAUD, 0    ,  0, STD_COM_FLAGS }, /* ttyS12 */
  40. { 0, BASE_BAUD, 0    ,  0, STD_COM_FLAGS }, /* ttyS13 */
  41. #define EXTRA_SERIAL_PORT_DEFNS
  42. #endif