preliminaryDataProcessing.h 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. /*
  2. * arch/arm/include/asm/hardware/sa1111.h
  3. *
  4. * Copyright (C) 2000 John G Dorsey <john+@cs.cmu.edu>
  5. *
  6. * This file contains definitions for the SA-1111 Companion Chip.
  7. * (Structure and naming borrowed from SA-1101.h, by Peter Danielsson.)
  8. *
  9. * Macro that calculates real address for registers in the SA-1111
  10. */
  11. #ifndef _ASM_ARCH_SA1111
  12. #define _ASM_ARCH_SA1111
  13. #include <mach/bitfield.h>
  14. /*
  15. * The SA1111 is always located at virtual 0xf4000000, and is always
  16. * "native" endian.
  17. */
  18. #define SA1111_VBASE 0xf4000000
  19. /* Don't use these! */
  20. #define SA1111_p2v( x ) ((x) - SA1111_BASE + SA1111_VBASE)
  21. #define SA1111_v2p( x ) ((x) - SA1111_VBASE + SA1111_BASE)
  22. #ifndef __ASSEMBLY__
  23. #define _SA1111(x) ((x) + sa1111->resource.start)
  24. #endif
  25. #define sa1111_writel(val,addr) __raw_writel(val, addr)
  26. #define sa1111_readl(addr) __raw_readl(addr)
  27. /*
  28. * 26 bits of the SA-1110 address bus are available to the SA-1111.
  29. * Use these when feeding target addresses to the DMA engines.
  30. */
  31. #define SA1111_ADDR_WIDTH (26)
  32. #define SA1111_ADDR_MASK ((1<<SA1111_ADDR_WIDTH)-1)
  33. #define SA1111_DMA_ADDR(x) ((x)&SA1111_ADDR_MASK)
  34. /*
  35. * Don't ask the (SAC) DMA engines to move less than this amount.
  36. */
  37. #define SA1111_SAC_DMA_MIN_XFER (0x800)
  38. /*
  39. * System Bus Interface (SBI)
  40. *
  41. * Registers
  42. * SKCR Control Register
  43. * SMCR Shared Memory Controller Register
  44. * SKID ID Register
  45. */
  46. #define SA1111_SKCR 0x0000
  47. #define SA1111_SMCR 0x0004
  48. #define SA1111_SKID 0x0008
  49. #define SKCR_PLL_BYPASS (1<<0)
  50. #define SKCR_RCLKEN (1<<1)
  51. #define SKCR_SLEEP (1<<2)
  52. #define SKCR_DOZE (1<<3)
  53. #define SKCR_VCO_OFF (1<<4)
  54. #define SKCR_SCANTSTEN (1<<5)
  55. #define SKCR_CLKTSTEN (1<<6)
  56. #define SKCR_RDYEN (1<<7)
  57. #define SKCR_SELAC (1<<8)
  58. #define SKCR_OPPC (1<<9)
  59. #define SKCR_PLLTSTEN (1<<10)
  60. #define SKCR_USBIOTSTEN (1<<11)
  61. /*
  62. * Don't believe the specs! Take them, throw them outside. Leave them
  63. * there for a week. Spit on them. Walk on them. Stamp on them.
  64. * Pour gasoline over them and finally burn them. Now think about coding.
  65. * - The October 1999 errata (278260-007) says its bit 13, 1 to enable.
  66. * - The Feb 2001 errata (278260-010) says that the previous errata
  67. * (278260-009) is wrong, and its bit actually 12, fixed in spec
  68. * 278242-003.
  69. * - The SA1111 manual (278242) says bit 12, but 0 to enable.
  70. * - Reality is bit 13, 1 to enable.
  71. * -- rmk
  72. */
  73. #define SKCR_OE_EN (1<<13)
  74. #define SMCR_DTIM (1<<0)
  75. #define SMCR_MBGE (1<<1)
  76. #define SMCR_DRAC_0 (1<<2)
  77. #define SMCR_DRAC_1 (1<<3)
  78. #define SMCR_DRAC_2 (1<<4)
  79. #define SMCR_DRAC Fld(3, 2)
  80. #define SMCR_CLAT (1<<5)
  81. #define SKID_SIREV_MASK (0x000000f0)
  82. #define SKID_MTREV_MASK (0x0000000f)
  83. #define SKID_ID_MASK (0xffffff00)
  84. #define SKID_SA1111_ID (0x690cc200)
  85. /*
  86. * System Controller
  87. *
  88. * Registers
  89. * SKPCR Power Control Register
  90. * SKCDR Clock Divider Register
  91. * SKAUD Audio Clock Divider Register
  92. * SKPMC PS/2 Mouse Clock Divider Register
  93. * SKPTC PS/2 Track Pad Clock Divider Register
  94. * SKPEN0 PWM0 Enable Register
  95. * SKPWM0 PWM0 Clock Register
  96. * SKPEN1 PWM1 Enable Register
  97. * SKPWM1 PWM1 Clock Register
  98. */
  99. #define SA1111_SKPCR 0x0200
  100. #define SA1111_SKCDR 0x0204
  101. #define SA1111_SKAUD 0x0208
  102. #define SA1111_SKPMC 0x020c
  103. #define SA1111_SKPTC 0x0210
  104. #define SA1111_SKPEN0 0x0214
  105. #define SA1111_SKPWM0 0x0218
  106. #define SA1111_SKPEN1 0x021c
  107. #define SA1111_SKPWM1 0x0220
  108. #define SKPCR_UCLKEN (1<<0)
  109. #define SKPCR_ACCLKEN (1<<1)
  110. #define SKPCR_I2SCLKEN (1<<2)
  111. #define SKPCR_L3CLKEN (1<<3)
  112. #define SKPCR_SCLKEN (1<<4)
  113. #define SKPCR_PMCLKEN (1<<5)
  114. #define SKPCR_PTCLKEN (1<<6)
  115. #define SKPCR_DCLKEN (1<<7)
  116. #define SKPCR_PWMCLKEN (1<<8)
  117. /* USB Host controller */
  118. #define SA1111_USB 0x0400
  119. /*
  120. * Serial Audio Controller
  121. *
  122. * Registers
  123. * SACR0 Serial Audio Common Control Register
  124. * SACR1 Serial Audio Alternate Mode (I2C/MSB) Control Register
  125. * SACR2 Serial Audio AC-link Control Register
  126. * SASR0 Serial Audio I2S/MSB Interface & FIFO Status Register
  127. * SASR1 Serial Audio AC-link Interface & FIFO Status Register
  128. * SASCR Serial Audio Status Clear Register
  129. * L3_CAR L3 Control Bus Address Register
  130. * L3_CDR L3 Control Bus Data Register
  131. * ACCAR AC-link Command Address Register
  132. * ACCDR AC-link Command Data Register
  133. * ACSAR AC-link Status Address Register
  134. * ACSDR AC-link Status Data Register
  135. * SADTCS Serial Audio DMA Transmit Control/Status Register
  136. * SADTSA Serial Audio DMA Transmit Buffer Start Address A
  137. * SADTCA Serial Audio DMA Transmit Buffer Count Register A
  138. * SADTSB Serial Audio DMA Transmit Buffer Start Address B
  139. * SADTCB Serial Audio DMA Transmit Buffer Count Register B
  140. * SADRCS Serial Audio DMA Receive Control/Status Register
  141. * SADRSA Serial Audio DMA Receive Buffer Start Address A
  142. * SADRCA Serial Audio DMA Receive Buffer Count Register A
  143. * SADRSB Serial Audio DMA Receive Buffer Start Address B
  144. * SADRCB Serial Audio DMA Receive Buffer Count Register B
  145. * SAITR Serial Audio Interrupt Test Register
  146. * SADR Serial Audio Data Register (16 x 32-bit)
  147. */
  148. #define SA1111_SERAUDIO 0x0600
  149. /*
  150. * These are offsets from the above base.
  151. */
  152. #define SA1111_SACR0 0x00
  153. #define SA1111_SACR1 0x04
  154. #define SA1111_SACR2 0x08
  155. #define SA1111_SASR0 0x0c
  156. #define SA1111_SASR1 0x10
  157. #define SA1111_SASCR 0x18
  158. #define SA1111_L3_CAR 0x1c
  159. #define SA1111_L3_CDR 0x20
  160. #define SA1111_ACCAR 0x24
  161. #define SA1111_ACCDR 0x28
  162. #define SA1111_ACSAR 0x2c
  163. #define SA1111_ACSDR 0x30
  164. #define SA1111_SADTCS 0x34
  165. #define SA1111_SADTSA 0x38
  166. #define SA1111_SADTCA 0x3c
  167. #define SA1111_SADTSB 0x40
  168. #define SA1111_SADTCB 0x44
  169. #define SA1111_SADRCS 0x48
  170. #define SA1111_SADRSA 0x4c
  171. #define SA1111_SADRCA 0x50
  172. #define SA1111_SADRSB 0x54