clps7111.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:5k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/include/asm-arm/hardware/clps7111.h
  3.  *
  4.  *  This file contains the hardware definitions of the CLPS7111 internal
  5.  *  registers.
  6.  *
  7.  *  Copyright (C) 2000 Deep Blue Solutions Ltd.
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  22.  */
  23. #ifndef __ASM_HARDWARE_CLPS7111_H
  24. #define __ASM_HARDWARE_CLPS7111_H
  25. #define CLPS7111_PHYS_BASE (0x80000000)
  26. #ifndef __ASSEMBLY__
  27. #define clps_readb(off) __raw_readb(CLPS7111_BASE + (off))
  28. #define clps_readw(off) __raw_readw(CLPS7111_BASE + (off))
  29. #define clps_readl(off) __raw_readl(CLPS7111_BASE + (off))
  30. #define clps_writeb(val,off) __raw_writeb(val, CLPS7111_BASE + (off))
  31. #define clps_writew(val,off) __raw_writew(val, CLPS7111_BASE + (off))
  32. #define clps_writel(val,off) __raw_writel(val, CLPS7111_BASE + (off))
  33. #endif
  34. #define PADR (0x0000)
  35. #define PBDR (0x0001)
  36. #define PDDR (0x0003)
  37. #define PADDR (0x0040)
  38. #define PBDDR (0x0041)
  39. #define PDDDR (0x0043)
  40. #define PEDR (0x0080)
  41. #define PEDDR (0x00c0)
  42. #define SYSCON1 (0x0100)
  43. #define SYSFLG1 (0x0140)
  44. #define MEMCFG1 (0x0180)
  45. #define MEMCFG2 (0x01c0)
  46. #define DRFPR (0x0200)
  47. #define INTSR1 (0x0240)
  48. #define INTMR1 (0x0280)
  49. #define LCDCON (0x02c0)
  50. #define TC1D            (0x0300)
  51. #define TC2D (0x0340)
  52. #define RTCDR (0x0380)
  53. #define RTCMR (0x03c0)
  54. #define PMPCON (0x0400)
  55. #define CODR (0x0440)
  56. #define UARTDR1 (0x0480)
  57. #define UBRLCR1 (0x04c0)
  58. #define SYNCIO (0x0500)
  59. #define PALLSW (0x0540)
  60. #define PALMSW (0x0580)
  61. #define STFCLR (0x05c0)
  62. #define BLEOI (0x0600)
  63. #define MCEOI (0x0640)
  64. #define TEOI (0x0680)
  65. #define TC1EOI (0x06c0)
  66. #define TC2EOI (0x0700)
  67. #define RTCEOI (0x0740)
  68. #define UMSEOI (0x0780)
  69. #define COEOI (0x07c0)
  70. #define HALT (0x0800)
  71. #define STDBY (0x0840)
  72. #define FBADDR (0x1000)
  73. #define SYSCON2 (0x1100)
  74. #define SYSFLG2 (0x1140)
  75. #define INTSR2 (0x1240)
  76. #define INTMR2 (0x1280)
  77. #define UARTDR2 (0x1480)
  78. #define UBRLCR2 (0x14c0)
  79. #define SS2DR (0x1500)
  80. #define SRXEOF (0x1600)
  81. #define SS2POP (0x16c0)
  82. #define KBDEOI (0x1700)
  83. /* common bits: SYSCON1 / SYSCON2 */
  84. #define SYSCON_UARTEN (1 << 8)
  85. #define SYSCON1_KBDSCAN(x) ((x) & 15)
  86. #define SYSCON1_KBDSCANMASK (15)
  87. #define SYSCON1_TC1M (1 << 4)
  88. #define SYSCON1_TC1S (1 << 5)
  89. #define SYSCON1_TC2M (1 << 6)
  90. #define SYSCON1_TC2S (1 << 7)
  91. #define SYSCON1_UART1EN SYSCON_UARTEN
  92. #define SYSCON1_BZTOG (1 << 9)
  93. #define SYSCON1_BZMOD (1 << 10)
  94. #define SYSCON1_DBGEN (1 << 11)
  95. #define SYSCON1_LCDEN (1 << 12)
  96. #define SYSCON1_CDENTX (1 << 13)
  97. #define SYSCON1_CDENRX (1 << 14)
  98. #define SYSCON1_SIREN (1 << 15)
  99. #define SYSCON1_ADCKSEL(x) (((x) & 3) << 16)
  100. #define SYSCON1_ADCKSEL_MASK (3 << 16)
  101. #define SYSCON1_EXCKEN (1 << 18)
  102. #define SYSCON1_WAKEDIS (1 << 19)
  103. #define SYSCON1_IRTXM (1 << 20)
  104. /* common bits: SYSFLG1 / SYSFLG2 */
  105. #define SYSFLG_UBUSY (1 << 11)
  106. #define SYSFLG_URXFE (1 << 22)
  107. #define SYSFLG_UTXFF (1 << 23)
  108. #define SYSFLG1_MCDR (1 << 0)
  109. #define SYSFLG1_DCDET (1 << 1)
  110. #define SYSFLG1_WUDR (1 << 2)
  111. #define SYSFLG1_WUON (1 << 3)
  112. #define SYSFLG1_CTS (1 << 8)
  113. #define SYSFLG1_DSR (1 << 9)
  114. #define SYSFLG1_DCD (1 << 10)
  115. #define SYSFLG1_UBUSY SYSFLG_UBUSY
  116. #define SYSFLG1_NBFLG (1 << 12)
  117. #define SYSFLG1_RSTFLG (1 << 13)
  118. #define SYSFLG1_PFFLG (1 << 14)
  119. #define SYSFLG1_CLDFLG (1 << 15)
  120. #define SYSFLG1_URXFE SYSFLG_URXFE
  121. #define SYSFLG1_UTXFF SYSFLG_UTXFF
  122. #define SYSFLG1_CRXFE (1 << 24)
  123. #define SYSFLG1_CTXFF (1 << 25)
  124. #define SYSFLG1_SSIBUSY (1 << 26)
  125. #define SYSFLG1_ID (1 << 29)
  126. #define SYSFLG2_SSRXOF (1 << 0)
  127. #define SYSFLG2_RESVAL (1 << 1)
  128. #define SYSFLG2_RESFRM (1 << 2)
  129. #define SYSFLG2_SS2RXFE (1 << 3)
  130. #define SYSFLG2_SS2TXFF (1 << 4)
  131. #define SYSFLG2_SS2TXUF (1 << 5)
  132. #define SYSFLG2_CKMODE (1 << 6)
  133. #define SYSFLG2_UBUSY SYSFLG_UBUSY
  134. #define SYSFLG2_URXFE SYSFLG_URXFE
  135. #define SYSFLG2_UTXFF SYSFLG_UTXFF
  136. #define LCDCON_GSEN (1 << 30)
  137. #define LCDCON_GSMD (1 << 31)
  138. #define SYSCON2_SERSEL (1 << 0)
  139. #define SYSCON2_KBD6 (1 << 1)
  140. #define SYSCON2_DRAMZ (1 << 2)
  141. #define SYSCON2_KBWEN (1 << 3)
  142. #define SYSCON2_SS2TXEN (1 << 4)
  143. #define SYSCON2_PCCARD1 (1 << 5)
  144. #define SYSCON2_PCCARD2 (1 << 6)
  145. #define SYSCON2_SS2RXEN (1 << 7)
  146. #define SYSCON2_UART2EN SYSCON_UARTEN
  147. #define SYSCON2_SS2MAEN (1 << 9)
  148. #define SYSCON2_OSTB (1 << 12)
  149. #define SYSCON2_CLKENSL (1 << 13)
  150. #define SYSCON2_BUZFREQ (1 << 14)
  151. /* common bits: UARTDR1 / UARTDR2 */
  152. #define UARTDR_FRMERR (1 << 8)
  153. #define UARTDR_PARERR (1 << 9)
  154. #define UARTDR_OVERR (1 << 10)
  155. /* common bits: UBRLCR1 / UBRLCR2 */
  156. #define UBRLCR_BAUD_MASK ((1 << 12) - 1)
  157. #define UBRLCR_BREAK (1 << 12)
  158. #define UBRLCR_PRTEN (1 << 13)
  159. #define UBRLCR_EVENPRT (1 << 14)
  160. #define UBRLCR_XSTOP (1 << 15)
  161. #define UBRLCR_FIFOEN (1 << 16)
  162. #define UBRLCR_WRDLEN5 (0 << 17)
  163. #define UBRLCR_WRDLEN6 (1 << 17)
  164. #define UBRLCR_WRDLEN7 (2 << 17)
  165. #define UBRLCR_WRDLEN8 (3 << 17)
  166. #define UBRLCR_WRDLEN_MASK (3 << 17)
  167. #define SYNCIO_SMCKEN (1 << 13)
  168. #define SYNCIO_TXFRMEN (1 << 14)
  169. #endif /* __ASM_HARDWARE_CLPS7111_H */