serial.h 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. /*
  2. * arch/arm/plat-omap/include/mach/serial.h
  3. *
  4. * Copyright (C) 2009 Texas Instruments
  5. * Added OMAP4 support- Santosh Shilimkar <santosh.shilimkar@ti.com>
  6. *
  7. * This program is distributed in the hope that it will be useful,
  8. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. * GNU General Public License for more details.
  11. */
  12. #ifndef __ASM_ARCH_SERIAL_H
  13. #define __ASM_ARCH_SERIAL_H
  14. #include <linux/init.h>
  15. /*
  16. * Memory entry used for the DEBUG_LL UART configuration, relative to
  17. * start of RAM. See also uncompress.h and debug-macro.S.
  18. *
  19. * Note that using a memory location for storing the UART configuration
  20. * has at least two limitations:
  21. *
  22. * 1. Kernel uncompress code cannot overlap OMAP_UART_INFO as the
  23. * uncompress code could then partially overwrite itself
  24. * 2. We assume printascii is called at least once before paging_init,
  25. * and addruart has a chance to read OMAP_UART_INFO
  26. */
  27. #define OMAP_UART_INFO_OFS 0x3ffc
  28. /* OMAP1 serial ports */
  29. #define OMAP1_UART1_BASE 0xfffb0000
  30. #define OMAP1_UART2_BASE 0xfffb0800
  31. #define OMAP1_UART3_BASE 0xfffb9800
  32. /* OMAP2 serial ports */
  33. #define OMAP2_UART1_BASE 0x4806a000
  34. #define OMAP2_UART2_BASE 0x4806c000
  35. #define OMAP2_UART3_BASE 0x4806e000
  36. /* OMAP3 serial ports */
  37. #define OMAP3_UART1_BASE OMAP2_UART1_BASE
  38. #define OMAP3_UART2_BASE OMAP2_UART2_BASE
  39. #define OMAP3_UART3_BASE 0x49020000
  40. #define OMAP3_UART4_BASE 0x49042000 /* Only on 36xx */
  41. #define OMAP3_UART4_AM35XX_BASE 0x4809E000 /* Only on AM35xx */
  42. /* OMAP4 serial ports */
  43. #define OMAP4_UART1_BASE OMAP2_UART1_BASE
  44. #define OMAP4_UART2_BASE OMAP2_UART2_BASE
  45. #define OMAP4_UART3_BASE 0x48020000
  46. #define OMAP4_UART4_BASE 0x4806e000
  47. /* TI81XX serial ports */
  48. #define TI81XX_UART1_BASE 0x48020000
  49. #define TI81XX_UART2_BASE 0x48022000
  50. #define TI81XX_UART3_BASE 0x48024000
  51. /* AM3505/3517 UART4 */
  52. #define AM35XX_UART4_BASE 0x4809E000 /* Only on AM3505/3517 */
  53. /* AM33XX serial port */
  54. #define AM33XX_UART1_BASE 0x44E09000
  55. /* OMAP5 serial ports */
  56. #define OMAP5_UART1_BASE OMAP2_UART1_BASE
  57. #define OMAP5_UART2_BASE OMAP2_UART2_BASE
  58. #define OMAP5_UART3_BASE OMAP4_UART3_BASE
  59. #define OMAP5_UART4_BASE OMAP4_UART4_BASE
  60. #define OMAP5_UART5_BASE 0x48066000
  61. #define OMAP5_UART6_BASE 0x48068000
  62. /* External port on Zoom2/3 */
  63. #define ZOOM_UART_BASE 0x10000000
  64. #define ZOOM_UART_VIRT 0xfa400000
  65. #define OMAP_PORT_SHIFT 2
  66. #define OMAP7XX_PORT_SHIFT 0
  67. #define ZOOM_PORT_SHIFT 1
  68. #define OMAP1510_BASE_BAUD (12000000/16)
  69. #define OMAP16XX_BASE_BAUD (48000000/16)
  70. #define OMAP24XX_BASE_BAUD (48000000/16)
  71. /*
  72. * DEBUG_LL port encoding stored into the UART1 scratchpad register by
  73. * decomp_setup in uncompress.h
  74. */
  75. #define OMAP1UART1 11
  76. #define OMAP1UART2 12
  77. #define OMAP1UART3 13
  78. #define OMAP2UART1 21
  79. #define OMAP2UART2 22
  80. #define OMAP2UART3 23
  81. #define OMAP3UART1 OMAP2UART1
  82. #define OMAP3UART2 OMAP2UART2
  83. #define OMAP3UART3 33
  84. #define OMAP3UART4 34 /* Only on 36xx */
  85. #define OMAP4UART1 OMAP2UART1
  86. #define OMAP4UART2 OMAP2UART2
  87. #define OMAP4UART3 43
  88. #define OMAP4UART4 44
  89. #define TI81XXUART1 81
  90. #define TI81XXUART2 82
  91. #define TI81XXUART3 83
  92. #define AM33XXUART1 84
  93. #define OMAP5UART3 OMAP4UART3
  94. #define OMAP5UART4 OMAP4UART4
  95. #define ZOOM_UART 95 /* Only on zoom2/3 */
  96. /* This is only used by 8250.c for omap1510 */
  97. #define is_omap_port(pt) ({int __ret = 0; \
  98. if ((pt)->port.mapbase == OMAP1_UART1_BASE || \
  99. (pt)->port.mapbase == OMAP1_UART2_BASE || \
  100. (pt)->port.mapbase == OMAP1_UART3_BASE) \
  101. __ret = 1; \
  102. __ret; \
  103. })
  104. #ifndef __ASSEMBLER__
  105. struct omap_board_data;
  106. struct omap_uart_port_info;
  107. extern void omap_serial_init(void);
  108. extern void omap_serial_board_init(struct omap_uart_port_info *platform_data);
  109. extern void omap_serial_init_port(struct omap_board_data *bdata,
  110. struct omap_uart_port_info *platform_data);
  111. #endif
  112. #endif