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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * arch/ppc/platforms/pal4_serial.h
  3.  * 
  4.  * Definitions for SBS PalomarIV serial support 
  5.  *
  6.  * Author: Dan Cox
  7.  *
  8.  * Copyright 2002 MontaVista Software Inc.
  9.  *
  10.  * This program is free software; you can redistribute  it and/or modify it
  11.  * under  the terms of  the GNU General Public License as published by the
  12.  * Free Software Foundation;  either version 2 of the  License, or (at your
  13.  * option) any later version.
  14.  */
  15. #ifndef __PPC_PAL4_SERIAL_H
  16. #define __PPC_PAL4_SERIAL_H
  17. #define CPC700_SERIAL_1       0xff600300
  18. #define CPC700_SERIAL_2       0xff600400
  19. #define RS_TABLE_SIZE     2
  20. #define BASE_BAUD         (33333333 / 4 / 16)
  21. #ifdef CONFIG_SERIAL_DETECT_IRQ
  22. #define STD_COM_FLAGS (ASYNC_BOOT_AUTOCONF|ASYNC_SKIP_TEST|ASYNC_AUTO_IRQ)
  23. #define STD_COM4_FLAGS (ASYNC_BOOT_AUTOCONF|ASYNC_AUTO_IRQ)
  24. #else
  25. #define STD_COM_FLAGS (ASYNC_BOOT_AUTOCONF|ASYNC_SKIP_TEST)
  26. #define STD_COM4_FLAGS (ASYNC_BOOT_AUTOCONF)
  27. #endif
  28. #define SERIAL_PORT_DFNS 
  29.       {0, BASE_BAUD, CPC700_SERIAL_1, 3, STD_COM_FLAGS, 
  30.        iomem_base: (unsigned char *) CPC700_SERIAL_1, 
  31.        io_type: SERIAL_IO_MEM},   /* ttyS0 */ 
  32.       {0, BASE_BAUD, CPC700_SERIAL_2, 4, STD_COM_FLAGS, 
  33.        iomem_base: (unsigned char *) CPC700_SERIAL_2, 
  34.        io_type: SERIAL_IO_MEM}
  35. #endif