nxt6000_priv.h 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286
  1. /*
  2. * Public Include File for DRV6000 users
  3. * (ie. NxtWave Communications - NXT6000 demodulator driver)
  4. *
  5. * Copyright (C) 2001 NxtWave Communications, Inc.
  6. *
  7. */
  8. /* Nxt6000 Register Addresses and Bit Masks */
  9. /* Maximum Register Number */
  10. #define MAXNXT6000REG (0x9A)
  11. /* 0x1B A_VIT_BER_0 aka 0x3A */
  12. #define A_VIT_BER_0 (0x1B)
  13. /* 0x1D A_VIT_BER_TIMER_0 aka 0x38 */
  14. #define A_VIT_BER_TIMER_0 (0x1D)
  15. /* 0x21 RS_COR_STAT */
  16. #define RS_COR_STAT (0x21)
  17. #define RSCORESTATUS (0x03)
  18. /* 0x22 RS_COR_INTEN */
  19. #define RS_COR_INTEN (0x22)
  20. /* 0x23 RS_COR_INSTAT */
  21. #define RS_COR_INSTAT (0x23)
  22. #define INSTAT_ERROR (0x04)
  23. #define LOCK_LOSS_BITS (0x03)
  24. /* 0x24 RS_COR_SYNC_PARAM */
  25. #define RS_COR_SYNC_PARAM (0x24)
  26. #define SYNC_PARAM (0x03)
  27. /* 0x25 BER_CTRL */
  28. #define BER_CTRL (0x25)
  29. #define BER_ENABLE (0x02)
  30. #define BER_RESET (0x01)
  31. /* 0x26 BER_PAY */
  32. #define BER_PAY (0x26)
  33. /* 0x27 BER_PKT_L */
  34. #define BER_PKT_L (0x27)
  35. #define BER_PKTOVERFLOW (0x80)
  36. /* 0x30 VIT_COR_CTL */
  37. #define VIT_COR_CTL (0x30)
  38. #define BER_CONTROL (0x02)
  39. #define VIT_COR_MASK (0x82)
  40. #define VIT_COR_RESYNC (0x80)
  41. /* 0x32 VIT_SYNC_STATUS */
  42. #define VIT_SYNC_STATUS (0x32)
  43. #define VITINSYNC (0x80)
  44. /* 0x33 VIT_COR_INTEN */
  45. #define VIT_COR_INTEN (0x33)
  46. #define GLOBAL_ENABLE (0x80)
  47. /* 0x34 VIT_COR_INTSTAT */
  48. #define VIT_COR_INTSTAT (0x34)
  49. #define BER_DONE (0x08)
  50. #define BER_OVERFLOW (0x10)
  51. /* 0x38 VIT_BERTIME_2 */
  52. #define VIT_BERTIME_2 (0x38)
  53. /* 0x39 VIT_BERTIME_1 */
  54. #define VIT_BERTIME_1 (0x39)
  55. /* 0x3A VIT_BERTIME_0 */
  56. #define VIT_BERTIME_0 (0x3a)
  57. /* 0x38 OFDM_BERTimer *//* Use the alias registers */
  58. #define A_VIT_BER_TIMER_0 (0x1D)
  59. /* 0x3A VIT_BER_TIMER_0 *//* Use the alias registers */
  60. #define A_VIT_BER_0 (0x1B)
  61. /* 0x3B VIT_BER_1 */
  62. #define VIT_BER_1 (0x3b)
  63. /* 0x3C VIT_BER_0 */
  64. #define VIT_BER_0 (0x3c)
  65. /* 0x40 OFDM_COR_CTL */
  66. #define OFDM_COR_CTL (0x40)
  67. #define COREACT (0x20)
  68. #define HOLDSM (0x10)
  69. #define WAIT_AGC (0x02)
  70. #define WAIT_SYR (0x03)
  71. /* 0x41 OFDM_COR_STAT */
  72. #define OFDM_COR_STAT (0x41)
  73. #define COR_STATUS (0x0F)
  74. #define MONITOR_TPS (0x06)
  75. #define TPSLOCKED (0x40)
  76. #define AGCLOCKED (0x10)
  77. /* 0x42 OFDM_COR_INTEN */
  78. #define OFDM_COR_INTEN (0x42)
  79. #define TPSRCVBAD (0x04)
  80. #define TPSRCVCHANGED (0x02)
  81. #define TPSRCVUPDATE (0x01)
  82. /* 0x43 OFDM_COR_INSTAT */
  83. #define OFDM_COR_INSTAT (0x43)
  84. /* 0x44 OFDM_COR_MODEGUARD */
  85. #define OFDM_COR_MODEGUARD (0x44)
  86. #define FORCEMODE (0x08)
  87. #define FORCEMODE8K (0x04)
  88. /* 0x45 OFDM_AGC_CTL */
  89. #define OFDM_AGC_CTL (0x45)
  90. #define INITIAL_AGC_BW (0x08)
  91. #define AGCNEG (0x02)
  92. #define AGCLAST (0x10)
  93. /* 0x48 OFDM_AGC_TARGET */
  94. #define OFDM_AGC_TARGET (0x48)
  95. #define OFDM_AGC_TARGET_DEFAULT (0x28)
  96. #define OFDM_AGC_TARGET_IMPULSE (0x38)
  97. /* 0x49 OFDM_AGC_GAIN_1 */
  98. #define OFDM_AGC_GAIN_1 (0x49)
  99. /* 0x4B OFDM_ITB_CTL */
  100. #define OFDM_ITB_CTL (0x4B)
  101. #define ITBINV (0x01)
  102. /* 0x49 AGC_GAIN_1 */
  103. #define AGC_GAIN_1 (0x49)
  104. /* 0x4A AGC_GAIN_2 */
  105. #define AGC_GAIN_2 (0x4A)
  106. /* 0x4C OFDM_ITB_FREQ_1 */
  107. #define OFDM_ITB_FREQ_1 (0x4C)
  108. /* 0x4D OFDM_ITB_FREQ_2 */
  109. #define OFDM_ITB_FREQ_2 (0x4D)
  110. /* 0x4E OFDM_CAS_CTL */
  111. #define OFDM_CAS_CTL (0x4E)
  112. #define ACSDIS (0x40)
  113. #define CCSEN (0x80)
  114. /* 0x4F CAS_FREQ */
  115. #define CAS_FREQ (0x4F)
  116. /* 0x51 OFDM_SYR_CTL */
  117. #define OFDM_SYR_CTL (0x51)
  118. #define SIXTH_ENABLE (0x80)
  119. #define SYR_TRACKING_DISABLE (0x01)
  120. /* 0x52 OFDM_SYR_STAT */
  121. #define OFDM_SYR_STAT (0x52)
  122. #define GI14_2K_SYR_LOCK (0x13)
  123. #define GI14_8K_SYR_LOCK (0x17)
  124. #define GI14_SYR_LOCK (0x10)
  125. /* 0x55 OFDM_SYR_OFFSET_1 */
  126. #define OFDM_SYR_OFFSET_1 (0x55)
  127. /* 0x56 OFDM_SYR_OFFSET_2 */
  128. #define OFDM_SYR_OFFSET_2 (0x56)
  129. /* 0x58 OFDM_SCR_CTL */
  130. #define OFDM_SCR_CTL (0x58)
  131. #define SYR_ADJ_DECAY_MASK (0x70)
  132. #define SYR_ADJ_DECAY (0x30)
  133. /* 0x59 OFDM_PPM_CTL_1 */
  134. #define OFDM_PPM_CTL_1 (0x59)
  135. #define PPMMAX_MASK (0x30)
  136. #define PPM256 (0x30)
  137. /* 0x5B OFDM_TRL_NOMINALRATE_1 */
  138. #define OFDM_TRL_NOMINALRATE_1 (0x5B)
  139. /* 0x5C OFDM_TRL_NOMINALRATE_2 */
  140. #define OFDM_TRL_NOMINALRATE_2 (0x5C)
  141. /* 0x5D OFDM_TRL_TIME_1 */
  142. #define OFDM_TRL_TIME_1 (0x5D)
  143. /* 0x60 OFDM_CRL_FREQ_1 */
  144. #define OFDM_CRL_FREQ_1 (0x60)
  145. /* 0x63 OFDM_CHC_CTL_1 */
  146. #define OFDM_CHC_CTL_1 (0x63)
  147. #define MANMEAN1 (0xF0);
  148. #define CHCFIR (0x01)
  149. /* 0x64 OFDM_CHC_SNR */
  150. #define OFDM_CHC_SNR (0x64)
  151. /* 0x65 OFDM_BDI_CTL */
  152. #define OFDM_BDI_CTL (0x65)
  153. #define LP_SELECT (0x02)
  154. /* 0x67 OFDM_TPS_RCVD_1 */
  155. #define OFDM_TPS_RCVD_1 (0x67)
  156. #define TPSFRAME (0x03)
  157. /* 0x68 OFDM_TPS_RCVD_2 */
  158. #define OFDM_TPS_RCVD_2 (0x68)
  159. /* 0x69 OFDM_TPS_RCVD_3 */
  160. #define OFDM_TPS_RCVD_3 (0x69)
  161. /* 0x6A OFDM_TPS_RCVD_4 */
  162. #define OFDM_TPS_RCVD_4 (0x6A)
  163. /* 0x6B OFDM_TPS_RESERVED_1 */
  164. #define OFDM_TPS_RESERVED_1 (0x6B)
  165. /* 0x6C OFDM_TPS_RESERVED_2 */
  166. #define OFDM_TPS_RESERVED_2 (0x6C)
  167. /* 0x73 OFDM_MSC_REV */
  168. #define OFDM_MSC_REV (0x73)
  169. /* 0x76 OFDM_SNR_CARRIER_2 */
  170. #define OFDM_SNR_CARRIER_2 (0x76)
  171. #define MEAN_MASK (0x80)
  172. #define MEANBIT (0x80)
  173. /* 0x80 ANALOG_CONTROL_0 */
  174. #define ANALOG_CONTROL_0 (0x80)
  175. #define POWER_DOWN_ADC (0x40)
  176. /* 0x81 ENABLE_TUNER_IIC */
  177. #define ENABLE_TUNER_IIC (0x81)
  178. #define ENABLE_TUNER_BIT (0x01)
  179. /* 0x82 EN_DMD_RACQ */
  180. #define EN_DMD_RACQ (0x82)
  181. #define EN_DMD_RACQ_REG_VAL (0x81)
  182. #define EN_DMD_RACQ_REG_VAL_14 (0x01)
  183. /* 0x84 SNR_COMMAND */
  184. #define SNR_COMMAND (0x84)
  185. #define SNRStat (0x80)
  186. /* 0x85 SNRCARRIERNUMBER_LSB */
  187. #define SNRCARRIERNUMBER_LSB (0x85)
  188. /* 0x87 SNRMINTHRESHOLD_LSB */
  189. #define SNRMINTHRESHOLD_LSB (0x87)
  190. /* 0x89 SNR_PER_CARRIER_LSB */
  191. #define SNR_PER_CARRIER_LSB (0x89)
  192. /* 0x8B SNRBELOWTHRESHOLD_LSB */
  193. #define SNRBELOWTHRESHOLD_LSB (0x8B)
  194. /* 0x91 RF_AGC_VAL_1 */
  195. #define RF_AGC_VAL_1 (0x91)
  196. /* 0x92 RF_AGC_STATUS */
  197. #define RF_AGC_STATUS (0x92)
  198. /* 0x98 DIAG_CONFIG */
  199. #define DIAG_CONFIG (0x98)
  200. #define DIAG_MASK (0x70)
  201. #define TB_SET (0x10)
  202. #define TRAN_SELECT (0x07)
  203. #define SERIAL_SELECT (0x01)
  204. /* 0x99 SUB_DIAG_MODE_SEL */
  205. #define SUB_DIAG_MODE_SEL (0x99)
  206. #define CLKINVERSION (0x01)
  207. /* 0x9A TS_FORMAT */
  208. #define TS_FORMAT (0x9A)
  209. #define ERROR_SENSE (0x08)
  210. #define VALID_SENSE (0x04)
  211. #define SYNC_SENSE (0x02)
  212. #define GATED_CLOCK (0x01)
  213. #define NXT6000ASICDEVICE (0x0b)