Omap3530Uart.h 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /** @file
  2. Copyright (c) 2008 - 2009, Apple Inc. All rights reserved.<BR>
  3. SPDX-License-Identifier: BSD-2-Clause-Patent
  4. **/
  5. #ifndef __OMAP3530UART_H__
  6. #define __OMAP3530UART_H__
  7. #define UART1_BASE (0x4806A000)
  8. #define UART2_BASE (0x4806C000)
  9. #define UART3_BASE (0x49020000)
  10. #define UART_DLL_REG (0x0000)
  11. #define UART_RBR_REG (0x0000)
  12. #define UART_THR_REG (0x0000)
  13. #define UART_DLH_REG (0x0004)
  14. #define UART_FCR_REG (0x0008)
  15. #define UART_LCR_REG (0x000C)
  16. #define UART_MCR_REG (0x0010)
  17. #define UART_LSR_REG (0x0014)
  18. #define UART_MDR1_REG (0x0020)
  19. #define UART_FCR_TX_FIFO_CLEAR BIT2
  20. #define UART_FCR_RX_FIFO_CLEAR BIT1
  21. #define UART_FCR_FIFO_ENABLE BIT0
  22. #define UART_LCR_DIV_EN_ENABLE BIT7
  23. #define UART_LCR_DIV_EN_DISABLE (0UL << 7)
  24. #define UART_LCR_CHAR_LENGTH_8 (BIT1 | BIT0)
  25. #define UART_MCR_RTS_FORCE_ACTIVE BIT1
  26. #define UART_MCR_DTR_FORCE_ACTIVE BIT0
  27. #define UART_LSR_TX_FIFO_E_MASK BIT5
  28. #define UART_LSR_TX_FIFO_E_NOT_EMPTY (0UL << 5)
  29. #define UART_LSR_TX_FIFO_E_EMPTY BIT5
  30. #define UART_LSR_RX_FIFO_E_MASK BIT0
  31. #define UART_LSR_RX_FIFO_E_NOT_EMPTY BIT0
  32. #define UART_LSR_RX_FIFO_E_EMPTY (0UL << 0)
  33. // BIT2:BIT0
  34. #define UART_MDR1_MODE_SELECT_DISABLE (7UL)
  35. #define UART_MDR1_MODE_SELECT_UART_16X (0UL)
  36. #endif // __OMAP3530UART_H__