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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/include/asm-arm/arch-pxa/serial.h
  3.  * 
  4.  * Author: Nicolas Pitre
  5.  * Copyright: (C) 2001 MontaVista Software Inc.
  6.  * 
  7.  * This program is free software; you can redistribute it and/or modify
  8.  * it under the terms of the GNU General Public License version 2 as
  9.  * published by the Free Software Foundation.
  10.  */
  11. #define BAUD_BASE 921600
  12. /* Standard COM flags */
  13. #define STD_COM_FLAGS (ASYNC_SKIP_TEST)
  14. #define STD_SERIAL_PORT_DEFNS
  15. {
  16. type: PORT_PXA,
  17. xmit_fifo_size: 32,
  18. baud_base: BAUD_BASE,
  19. iomem_base: (void *)&FFUART,
  20. iomem_reg_shift: 2,
  21. io_type: SERIAL_IO_MEM32,
  22. irq: IRQ_FFUART,
  23. flags: STD_COM_FLAGS,
  24. }, {
  25. type: PORT_PXA,
  26. xmit_fifo_size: 32,
  27. baud_base: BAUD_BASE,
  28. iomem_base: (void *)&BTUART,
  29. iomem_reg_shift: 2,
  30. io_type: SERIAL_IO_MEM32,
  31. irq: IRQ_BTUART,
  32. flags: STD_COM_FLAGS,
  33. }, {
  34. type: PORT_PXA,
  35. xmit_fifo_size: 32,
  36. baud_base: BAUD_BASE,
  37. iomem_base: (void *)&STUART,
  38. iomem_reg_shift: 2,
  39. io_type: SERIAL_IO_MEM32,
  40. irq: IRQ_STUART,
  41. flags: STD_COM_FLAGS,
  42. }
  43. #define RS_TABLE_SIZE 8
  44. #define EXTRA_SERIAL_PORT_DEFNS