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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* *
  2.  *  Copyright (C) 2001 Altera Corporation
  3.  *
  4.  * This program is free software; you can redistribute it and/or modify
  5.  * it under the terms of the GNU General Public License as published by
  6.  * the Free Software Foundation; either version 2 of the License, or
  7.  * (at your option) any later version.
  8.  *
  9.  * This program is distributed in the hope that it will be useful,
  10.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  * GNU General Public License for more details.
  13.  *
  14.  * You should have received a copy of the GNU General Public License
  15.  * along with this program; if not, write to the Free Software
  16.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  17.  */
  18. #ifndef __UART00_H
  19. #define __UART00_H
  20. /*
  21.  * Register definitions for the UART
  22.  */
  23. #define UART_TX_FIFO_SIZE      (15)
  24. #define UART_RSR(BASE_ADDR) (UART00_TYPE (BASE_ADDR  + 0x00 ))
  25. #define UART_RSR_RX_LEVEL_MSK (0x1f)
  26. #define UART_RSR_RX_LEVEL_OFST (0)
  27. #define UART_RSR_RE_MSK (0x80)
  28. #define UART_RSR_RE_OFST (7)
  29. #define UART_RDS(BASE_ADDR) (UART00_TYPE (BASE_ADDR  + 0x04 ))
  30. #define UART_RDS_BI_MSK (0x8)
  31. #define UART_RDS_BI_OFST (4)
  32. #define UART_RDS_FE_MSK (0x4)
  33. #define UART_RDS_FE_OFST (2)
  34. #define UART_RDS_PE_MSK (0x2)
  35. #define UART_RDS_PE_OFST (1)
  36. #define UART_RDS_OE_MSK (0x1)
  37. #define UART_RDS_OE_OFST (0)
  38. #define UART_RD(BASE_ADDR) (UART00_TYPE (BASE_ADDR  + 0x08 ))
  39. #define UART_RD_RX_DATA_MSK (0xff)
  40. #define UART_RD_RX_DATA_OFST (0)
  41. #define UART_TSR(BASE_ADDR) (UART00_TYPE (BASE_ADDR  + 0x0c ))
  42. #define UART_TSR_TX_LEVEL_MSK (0x1f)
  43. #define UART_TSR_TX_LEVEL_OFST (0)
  44. #define UART_TSR_TXI_MSK (0x80)
  45. #define UART_TSR_TXI_OFST (7)
  46. #define UART_TD(BASE_ADDR) (UART00_TYPE (BASE_ADDR  + 0x10 ))
  47. #define UART_TD_TX_DATA_MSK (0xff)
  48. #define UART_TD_TX_DATA_OFST (0)
  49. #define UART_FCR(BASE_ADDR) (UART00_TYPE (BASE_ADDR  + 0x14 ))
  50. #define UART_FCR_RX_THR_MSK (0xd0)
  51. #define UART_FCR_RX_THR_OFST (5)
  52. #define UART_FCR_RX_THR_1 (0x00)
  53. #define UART_FCR_RX_THR_2 (0x20)
  54. #define UART_FCR_RX_THR_4 (0x40)
  55. #define UART_FCR_RX_THR_6 (0x60)
  56. #define UART_FCR_RX_THR_8 (0x80)
  57. #define UART_FCR_RX_THR_10 (0xa0)
  58. #define UART_FCR_RX_THR_12 (0xc0)
  59. #define UART_FCR_RX_THR_14 (0xd0)
  60. #define UART_FCR_TX_THR_MSK (0x1c)
  61. #define UART_FCR_TX_THR_OFST (2)
  62. #define UART_FCR_TX_THR_0 (0x00)
  63. #define UART_FCR_TX_THR_2 (0x04)
  64. #define UART_FCR_TX_THR_4 (0x08)
  65. #define UART_FCR_TX_THR_8 (0x0c)
  66. #define UART_FCR_TX_THR_10 (0x10)
  67. #define UART_FCR_TX_THR_12 (0x14)
  68. #define UART_FCR_TX_THR_14 (0x18)
  69. #define UART_FCR_TX_THR_15 (0x1c)
  70. #define UART_FCR_RC_MSK (0x02)
  71. #define UART_FCR_RC_OFST (1)
  72. #define UART_FCR_TC_MSK (0x01)
  73. #define UART_FCR_TC_OFST (0)
  74. #define UART_IES(BASE_ADDR) (UART00_TYPE (BASE_ADDR  + 0x18 ))
  75. #define UART_IES_ME_MSK (0x8)
  76. #define UART_IES_ME_OFST (3)
  77. #define UART_IES_TIE_MSK (0x4)
  78. #define UART_IES_TIE_OFST (2)
  79. #define UART_IES_TE_MSK (0x2)
  80. #define UART_IES_TE_OFST (1)
  81. #define UART_IES_RE_MSK (0x1)
  82. #define UART_IES_RE_OFST (0)
  83. #define UART_IEC(BASE_ADDR) (UART00_TYPE (BASE_ADDR  + 0x1c ))
  84. #define UART_IEC_ME_MSK (0x8)
  85. #define UART_IEC_ME_OFST (3)
  86. #define UART_IEC_TIE_MSK (0x4)
  87. #define UART_IEC_TIE_OFST (2)
  88. #define UART_IEC_TE_MSK (0x2)
  89. #define UART_IEC_TE_OFST (1)
  90. #define UART_IEC_RE_MSK (0x1)
  91. #define UART_IEC_RE_OFST (0)
  92. #define UART_ISR(BASE_ADDR) (UART00_TYPE (BASE_ADDR  + 0x20 ))
  93. #define UART_ISR_MI_MSK (0x8)
  94. #define UART_ISR_MI_OFST (3)
  95. #define UART_ISR_TII_MSK (0x4)
  96. #define UART_ISR_TII_OFST (2)
  97. #define UART_ISR_TI_MSK (0x2)
  98. #define UART_ISR_TI_OFST (1)
  99. #define UART_ISR_RI_MSK (0x1)
  100. #define UART_ISR_RI_OFST (0)
  101. #define UART_IID(BASE_ADDR) (UART00_TYPE (BASE_ADDR  + 0x24 ))
  102. #define UART_IID_IID_MSK (0x7)
  103. #define UART_IID_IID_OFST (0)
  104. #define UART_MC(BASE_ADDR) (UART00_TYPE (BASE_ADDR  + 0x28 ))
  105. #define UART_MC_OE_MSK (0x40)
  106. #define UART_MC_OE_OFST (6)
  107. #define UART_MC_SP_MSK (0x20)
  108. #define UART_MC_SP_OFST (5)
  109. #define UART_MC_EP_MSK (0x10)
  110. #define UART_MC_EP_OFST (4)
  111. #define UART_MC_PE_MSK (0x08)
  112. #define UART_MC_PE_OFST (3)
  113. #define UART_MC_ST_MSK (0x04)
  114. #define UART_MC_ST_ONE (0x0)
  115. #define UART_MC_ST_TWO (0x04)
  116. #define UART_MC_ST_OFST (2)
  117. #define UART_MC_CLS_MSK (0x03)
  118. #define UART_MC_CLS_OFST (0)
  119. #define UART_MC_CLS_CHARLEN_5 (0)
  120. #define UART_MC_CLS_CHARLEN_6 (1)
  121. #define UART_MC_CLS_CHARLEN_7 (2)
  122. #define UART_MC_CLS_CHARLEN_8 (3)
  123. #define UART_MCR(BASE_ADDR) (UART00_TYPE (BASE_ADDR  + 0x2c ))
  124. #define UART_MCR_AC_MSK (0x80)
  125. #define UART_MCR_AC_OFST (7)
  126. #define UART_MCR_AR_MSK (0x40)
  127. #define UART_MCR_AR_OFST (6)
  128. #define UART_MCR_BR_MSK (0x20)
  129. #define UART_MCR_BR_OFST (5)
  130. #define UART_MCR_LB_MSK (0x10)
  131. #define UART_MCR_LB_OFST (4)
  132. #define UART_MCR_DCD_MSK (0x08)
  133. #define UART_MCR_DCD_OFST (3)
  134. #define UART_MCR_RI_MSK (0x04)
  135. #define UART_MCR_RI_OFST (2)
  136. #define UART_MCR_DTR_MSK (0x02)
  137. #define UART_MCR_DTR_OFST (1)
  138. #define UART_MCR_RTS_MSK (0x01)
  139. #define UART_MCR_RTS_OFST (0)
  140. #define UART_MSR(BASE_ADDR) (UART00_TYPE (BASE_ADDR  + 0x30 ))
  141. #define UART_MSR_DCD_MSK (0x80)
  142. #define UART_MSR_DCD_OFST (7)
  143. #define UART_MSR_RI_MSK (0x40)
  144. #define UART_MSR_RI_OFST (6)
  145. #define UART_MSR_DSR_MSK (0x20)
  146. #define UART_MSR_DSR_OFST (5)
  147. #define UART_MSR_CTS_MSK (0x10)
  148. #define UART_MSR_CTS_OFST (4)
  149. #define UART_MSR_DDCD_MSK (0x08)
  150. #define UART_MSR_DDCD_OFST (3)
  151. #define UART_MSR_TERI_MSK (0x04)
  152. #define UART_MSR_TERI_OFST (2)
  153. #define UART_MSR_DDSR_MSK (0x02)
  154. #define UART_MSR_DDSR_OFST (1)
  155. #define UART_MSR_DCTS_MSK (0x01)
  156. #define UART_MSR_DCTS_OFST (0)
  157. #define UART_DIV_LO(BASE_ADDR) (UART00_TYPE (BASE_ADDR  + 0x34 ))
  158. #define UART_DIV_LO_DIV_MSK (0xff)
  159. #define UART_DIV_LO_DIV_OFST (0)
  160. #define UART_DIV_HI(BASE_ADDR) (UART00_TYPE (BASE_ADDR  + 0x38 ))
  161. #define UART_DIV_HI_DIV_MSK (0xff)
  162. #define UART_DIV_HI_DIV_OFST (0)
  163. #endif /* __UART00_H */