serial.h 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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. /* OMAP2 serial ports */
  29. #define OMAP2_UART1_BASE 0x4806a000
  30. #define OMAP2_UART2_BASE 0x4806c000
  31. #define OMAP2_UART3_BASE 0x4806e000
  32. /* OMAP3 serial ports */
  33. #define OMAP3_UART1_BASE OMAP2_UART1_BASE
  34. #define OMAP3_UART2_BASE OMAP2_UART2_BASE
  35. #define OMAP3_UART3_BASE 0x49020000
  36. #define OMAP3_UART4_BASE 0x49042000 /* Only on 36xx */
  37. #define OMAP3_UART4_AM35XX_BASE 0x4809E000 /* Only on AM35xx */
  38. /* OMAP4 serial ports */
  39. #define OMAP4_UART1_BASE OMAP2_UART1_BASE
  40. #define OMAP4_UART2_BASE OMAP2_UART2_BASE
  41. #define OMAP4_UART3_BASE 0x48020000
  42. #define OMAP4_UART4_BASE 0x4806e000
  43. /* TI81XX serial ports */
  44. #define TI81XX_UART1_BASE 0x48020000
  45. #define TI81XX_UART2_BASE 0x48022000
  46. #define TI81XX_UART3_BASE 0x48024000
  47. /* AM3505/3517 UART4 */
  48. #define AM35XX_UART4_BASE 0x4809E000 /* Only on AM3505/3517 */
  49. /* AM33XX serial port */
  50. #define AM33XX_UART1_BASE 0x44E09000
  51. /* OMAP5 serial ports */
  52. #define OMAP5_UART1_BASE OMAP2_UART1_BASE
  53. #define OMAP5_UART2_BASE OMAP2_UART2_BASE
  54. #define OMAP5_UART3_BASE OMAP4_UART3_BASE
  55. #define OMAP5_UART4_BASE OMAP4_UART4_BASE
  56. #define OMAP5_UART5_BASE 0x48066000
  57. #define OMAP5_UART6_BASE 0x48068000
  58. /* External port on Zoom2/3 */
  59. #define ZOOM_UART_BASE 0x10000000
  60. #define ZOOM_UART_VIRT 0xfa400000
  61. #define OMAP_PORT_SHIFT 2
  62. #define ZOOM_PORT_SHIFT 1
  63. #define OMAP24XX_BASE_BAUD (48000000/16)
  64. /*
  65. * DEBUG_LL port encoding stored into the UART1 scratchpad register by
  66. * decomp_setup in uncompress.h
  67. */
  68. #define OMAP2UART1 21
  69. #define OMAP2UART2 22
  70. #define OMAP2UART3 23
  71. #define OMAP3UART1 OMAP2UART1
  72. #define OMAP3UART2 OMAP2UART2
  73. #define OMAP3UART3 33
  74. #define OMAP3UART4 34 /* Only on 36xx */
  75. #define OMAP4UART1 OMAP2UART1
  76. #define OMAP4UART2 OMAP2UART2
  77. #define OMAP4UART3 43
  78. #define OMAP4UART4 44
  79. #define TI81XXUART1 81
  80. #define TI81XXUART2 82
  81. #define TI81XXUART3 83
  82. #define AM33XXUART1 84
  83. #define OMAP5UART3 OMAP4UART3
  84. #define OMAP5UART4 OMAP4UART4
  85. #define ZOOM_UART 95 /* Only on zoom2/3 */
  86. #ifndef __ASSEMBLER__
  87. struct omap_board_data;
  88. struct omap_uart_port_info;
  89. extern void omap_serial_init(void);
  90. extern void omap_serial_board_init(struct omap_uart_port_info *platform_data);
  91. extern void omap_serial_init_port(struct omap_board_data *bdata,
  92. struct omap_uart_port_info *platform_data);
  93. #endif
  94. #endif