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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* $Id: cs4231.h,v 1.13 1999/09/21 14:37:27 davem Exp $
  2.  * drivers/sbus/audio/cs4231.h
  3.  *
  4.  * Copyright (C) 1996 Thomas K. Dyas (tdyas@noc.rutgers.edu)
  5.  * Copyright (C) 1997 Derrick J. Brashear (shadow@dementia.org)
  6.  * Copyright (C) 1999 David S. Miller (davem@redhat.com)
  7.  */
  8. #ifndef _CS4231_H_
  9. #define _CS4231_H_
  10. #include <linux/types.h>
  11. /* According to the CS4231A data provided on CS web site and sun's includes */
  12. #define IAR 0x00UL /* Index Address Register */
  13. #define IDR 0x04UL /* Index Data Register */
  14. #define STAT 0x08UL /* Status Register */
  15. #define PIOD 0x0cUL /* PIO Data Register */
  16. #define APCCSR 0x10UL /* APC DMA CSR */
  17. #define APCCVA 0x20UL /* APC Capture DMA Address */
  18. #define APCCC 0x24UL /* APC Capture Count */
  19. #define APCCNVA 0x28UL /* APC Capture DMA Next Address */
  20. #define APCCNC 0x2cUL /* APC Capture Next Count */
  21. #define APCPVA 0x30UL /* APC Play DMA Address */
  22. #define APCPC 0x34UL /* APC Play Count */
  23. #define APCPNVA 0x38UL /* APC Play DMA Next Address */
  24. #define APCPNC 0x3cUL /* APC Play Next Count */
  25. /* EBUS DMA Registers */
  26. #define EBDMA_CSR 0x00UL /* Control/Status */
  27. #define EBDMA_ADDR 0x04UL /* DMA Address */
  28. #define EBDMA_COUNT 0x08UL /* DMA Count */
  29. /* Our structure for each chip */
  30. struct cs4231_chip {
  31. unsigned long regs;
  32. unsigned long eb2c;
  33. unsigned long eb2p;
  34. struct audio_info perchip_info;
  35. unsigned int playlen, reclen;
  36. int irq, irq2, nirqs;
  37. unsigned long regs_size;
  38.   
  39. /* Keep track of various info */
  40. volatile unsigned int status;
  41.   
  42. /* Current buffer that the driver is playing. */
  43. volatile __u8 * output_ptr;
  44. volatile __u32 output_size;
  45. volatile __u32 output_dma_handle, output_next_dma_handle;
  46. volatile __u32 output_dma_size, output_next_dma_size;
  47. /* Current record buffer. */
  48. volatile __u8 * input_ptr;
  49. volatile __u32 input_size;
  50. volatile __u32 input_dma_handle, input_next_dma_handle;
  51. volatile __u32 input_dma_size, input_next_dma_size;
  52. /* Number of buffers in the pipe. */
  53. volatile __u32 playing_count;
  54. volatile __u32 recording_count;
  55. };
  56. #ifdef EB4231_SUPPORT
  57. #define CS4231_READ32(__C, __REG)
  58. (((__C)->status & CS_STATUS_IS_EBUS) ?
  59. readl((__REG)) :
  60. sbus_readl((__REG)))
  61. #define CS4231_READ8(__C, __REG) 
  62. (((__C)->status & CS_STATUS_IS_EBUS) ?
  63. readb((__REG)) :
  64. sbus_readb((__REG)))
  65. #define CS4231_WRITE32(__C, __REG, __VAL)
  66. (((__C)->status & CS_STATUS_IS_EBUS) ?
  67.          writel((__VAL), (__REG)) :
  68.          sbus_writel((__VAL), (__REG)))
  69. #define CS4231_WRITE8(__C, __REG, __VAL)
  70. (((__C)->status & CS_STATUS_IS_EBUS) ?
  71.          writeb((__VAL), (__REG)) :
  72.          sbus_writeb((__VAL), (__REG)))
  73. #else
  74. /* We can assume all is SBUS in this case. */
  75. #define CS4231_READ32(__C, __REG) sbus_readl((__REG))
  76. #define CS4231_READ8(__C, __REG) sbus_readb((__REG))
  77. #define CS4231_WRITE32(__C, __REG, __VAL) sbus_writel((__VAL), (__REG))
  78. #define CS4231_WRITE8(__C, __REG, __VAL) sbus_writeb((__VAL), (__REG))
  79. #endif
  80. /* Local status bits */
  81. #define CS_STATUS_NEED_INIT 0x01
  82. #define CS_STATUS_INIT_ON_CLOSE 0x02
  83. #define CS_STATUS_REV_A 0x04
  84. #define CS_STATUS_INTS_ON 0x08
  85. #define CS_STATUS_IS_ULTRA 0x10
  86. #define CS_STATUS_IS_EBUS 0x20
  87. #define CS_TIMEOUT      9000000
  88. #define GAIN_SET(var, gain)     ((var & ~(0x3f)) | gain)
  89. #define RECGAIN_SET(var, gain)  ((var & ~(0x1f)) | gain)
  90. /* bits 0-3 set address of register accessed by idr register */
  91. /* bit 4 allows access to idr registers 16-31 in mode 2 only */
  92. /* bit 5 if set causes dma transfers to cease if the int bit of status set */
  93. #define IAR_AUTOCAL_BEGIN       0x40    /* MCE */
  94. #define IAR_NOT_READY           0x80    /* INIT */
  95. #define IAR_AUTOCAL_END         ~(IAR_AUTOCAL_BEGIN) /* MCD */
  96. /* Registers 1-15 modes 1 and 2. Registers 16-31 mode 2 only */
  97. /* Registers assumed to be same in both modes unless noted */
  98. /* 0 - Left Input Control */
  99. /* 1 - Right Input Control */
  100. #define MIC_ENABLE(var)         ((var & 0x2f) | 0x80)
  101. #define LINE_ENABLE(var)        (var & 0x2f)
  102. #define CDROM_ENABLE(var)       ((var & 0x2f) | 0x40)
  103. #define OUTPUTLOOP_ENABLE(var)  ((var & 0x2f) | 0xC0)
  104. #define INPUTCR_AUX1            0x40
  105. /* 2 - Left Aux 1 Input Control */
  106. /* 3 - Right Aux 1 Input Control */
  107. /* 4 - Left Aux 2 Input Control */
  108. /* 5 - Right Aux 2 Input Control */
  109. /* 6 - Left Output Control */
  110. /* 7 - Right Output Control */
  111. #define OUTCR_MUTE              0x80
  112. #define OUTCR_UNMUTE            ~0x80
  113. /* 8 - Playback Data Format (Mode 2) */
  114. #define CHANGE_DFR(var, val)            ((var & ~(0xF)) | val)
  115. #define CHANGE_ENCODING(var, val)       ((var & ~(0xe0)) | val)
  116. #define DEFAULT_DATA_FMAT               CS4231_DFR_ULAW
  117. #define CS4231_DFR_5512                 0x01
  118. #define CS4231_DFR_6615                 0x0f
  119. #define CS4231_DFR_8000                 0x00
  120. #define CS4231_DFR_9600                 0x0e
  121. #define CS4231_DFR_11025                0x03
  122. #define CS4231_DFR_16000                0x02
  123. #define CS4231_DFR_18900                0x05
  124. #define CS4231_DFR_22050                0x07
  125. #define CS4231_DFR_27429                0x04
  126. #define CS4231_DFR_32000                0x06
  127. #define CS4231_DFR_33075                0x0d
  128. #define CS4231_DFR_37800                0x09
  129. #define CS4231_DFR_44100                0x0b
  130. #define CS4231_DFR_48000                0x0c
  131. #define CS4231_DFR_LINEAR8              0x00
  132. #define CS4231_DFR_ULAW                 0x20
  133. #define CS4231_DFR_LINEARLE             0x40
  134. #define CS4231_DFR_ALAW                 0x60
  135. #define CS4231_DFR_ADPCM                0xa0 /* N/A in mode 1 */
  136. #define CS4231_DFR_LINEARBE             0xc0 /* N/A in mode 1 */
  137. #define CS4231_STEREO_ON(val)           (val | 0x10)
  138. #define CS4231_MONO_ON(val)             (val & ~0x10)
  139. /* 9 - Interface Config. Register */
  140. #define PEN_ENABLE              (0x01) /* Playback Enable */
  141. #define PEN_DISABLE             (~0x01)
  142. #define CEN_ENABLE              (0x02) /* Capture Enable */
  143. #define CEN_DISABLE             (~0x02)
  144. #define SDC_ENABLE              (0x04) /* Turn on single DMA Channel mode */
  145. #define ACAL_CONV               0x08   /* Turn on converter autocal */
  146. #define ACAL_DISABLE            (~0x08) 
  147. #define ACAL_DAC                0x10  /* Turn on DAC autocal */
  148. #define ACAL_FULL               (ACAL_DAC|ACAL_CONV) /* Turn on full autocal */
  149. #define PPIO                    0x20 /* do playback via PIO rather than DMA */
  150. #define CPIO                    0x40 /* do capture via PIO rather than DMA */
  151. #define ICR_AUTOCAL_INIT        0x01
  152. /* 10 - Pin Control Register */
  153. #define INTR_ON                 0x82
  154. #define INTR_OFF                0x80
  155. #define PINCR_LINE_MUTE         0x40
  156. #define PINCR_HDPH_MUTE         0x80
  157. /* 11 - Test/Initialization */
  158. #define DRQ_STAT                0x10
  159. #define AUTOCAL_IN_PROGRESS      0x20
  160. /* 12 - Misc Information */
  161. #define MISC_IR_MODE2           0x40
  162. /* 13 - Loopback Control */
  163. #define LOOPB_ON                0x01
  164. #define LOOPB_OFF               0x00
  165. /* 14 - shared play/capture upper (mode 1) */
  166. /* 15 - shared play/capture lower (mode 1) */
  167. /* 14 - Playback Upper (mode 2) */
  168. /* 15 - Playback Lower (mode 2) */
  169. /* The rest are mode 2 only */
  170. /* 16 - Alternate Feature 1 Enable */
  171. #define DAC_ZERO                0x01
  172. #define PLAY_MCE                0x10
  173. #define CAPTURE_MCE             0x20
  174. #define TIMER_ENABLE            0x40
  175. #define OLB_ENABLE              0x80 /* go to 2.88 vpp analog output */
  176. /* 17 - Alternate Feature 2 Enable */
  177. #define HPF_ON                  0x01 /* High Pass Filter */
  178. #define XTALE_ON                0x02 /* Enable both crystals */
  179. #define APAR_OFF                0x04 /* ADPCM playback accum reset */
  180. /* 18 - Left Line Input Gain */
  181. /* 19 - Right Line Input Gain */
  182. /* 20 - Timer High */
  183. /* 21 - Timer Low */
  184. /* 22 - unused */
  185. /* 23 - Alt. Fea. Ena 3 */
  186. #define ACF 0x01
  187. /* 24 - Alternate Feature Status */
  188. #define CS_PU                   0x01 /* Underrun */
  189. #define CS_PO                   0x02 /* Overrun */
  190. #define CS_CU                   0x04 /* Underrun */
  191. #define CS_CO                   0x08 /* Overrun */
  192. #define CS_PI                   0x10 
  193. #define CS_CI                   0x20 
  194. #define CS_TI                   0x40 
  195. /* 25 - Version */
  196. #define CS4231A         0x20
  197. #define CS4231CDE       0x80
  198. /* 26 - Mono I/O Control */
  199. #define CHANGE_MONO_GAIN(val)   ((val & ~(0xFF)) | val)
  200. #define MONO_IOCR_BYPASS     0x20 
  201. #define MONO_IOCR_MUTE       0x40
  202. #define MONO_IOCR_INMUTE     0x80
  203. /* 27 - Unused */
  204. /* 28 - Capture Data Format */
  205. /* see register 8 */
  206. /* 29 - Unused */
  207. /* 30 - Capture Upper */
  208. /* 31 - Capture Lower */
  209. /* Following are APC CSR register definitions for the Sparc */
  210. #define APC_INT_PENDING 0x800000 /* Interrupt Pending */
  211. #define APC_PLAY_INT    0x400000 /* Playback interrupt */
  212. #define APC_CAPT_INT    0x200000 /* Capture interrupt */
  213. #define APC_GENL_INT    0x100000 /* General interrupt */
  214. #define APC_XINT_ENA    0x80000  /* General ext int. enable */
  215. #define APC_XINT_PLAY   0x40000  /* Playback ext intr */
  216. #define APC_XINT_CAPT   0x20000  /* Capture ext intr */
  217. #define APC_XINT_GENL   0x10000  /* Error ext intr */
  218. #define APC_XINT_EMPT   0x8000   /* Pipe empty interrupt (0 write to pva) */
  219. #define APC_XINT_PEMP   0x4000   /* Play pipe empty (pva and pnva not set) */
  220. #define APC_XINT_PNVA   0x2000   /* Playback NVA dirty */
  221. #define APC_XINT_PENA   0x1000   /* play pipe empty Int enable */
  222. #define APC_XINT_COVF   0x800    /* Cap data dropped on floor */
  223. #define APC_XINT_CNVA   0x400    /* Capture NVA dirty */
  224. #define APC_XINT_CEMP   0x200    /* Capture pipe empty (cva and cnva not set) */
  225. #define APC_XINT_CENA   0x100    /* Cap. pipe empty int enable */
  226. #define APC_PPAUSE      0x80     /* Pause the play DMA */
  227. #define APC_CPAUSE      0x40     /* Pause the capture DMA */
  228. #define APC_CDC_RESET   0x20     /* CODEC RESET */
  229. #define APC_PDMA_READY  0x08     /* Play DMA Go */
  230. #define APC_CDMA_READY  0x04     /* Capture DMA Go */
  231. #define APC_CHIP_RESET  0x01     /* Reset the chip */
  232. #define APC_INIT_SETUP  (APC_CDMA_READY | APC_PDMA_READY | APC_XINT_ENA | 
  233.  APC_XINT_PLAY | APC_XINT_GENL | APC_INT_PENDING | 
  234.  APC_PLAY_INT | APC_CAPT_INT | APC_GENL_INT) 
  235. #define APC_PLAY_SETUP  (APC_GENL_INT | APC_PLAY_INT | APC_XINT_ENA | 
  236.  APC_XINT_PLAY | APC_XINT_EMPT | APC_XINT_GENL | 
  237.  APC_XINT_PENA | APC_PDMA_READY)
  238. #define APC_CAPT_SETUP  (APC_GENL_INT | APC_CAPT_INT | APC_XINT_ENA | 
  239.  APC_XINT_CAPT | APC_XINT_CEMP | APC_XINT_GENL | 
  240.  APC_CDMA_READY)
  241. /* Following are EB2 CSR register definitions for the Sparc */
  242. /* asm/ebus.h has the base settings */
  243. #define EB2_PLAY_SETUP (EBUS_DCSR_BURST_SZ_8 | EBUS_DCSR_INT_EN | EBUS_DCSR_EN_DMA | 
  244. EBUS_DCSR_EN_CNT | EBUS_DCSR_TC)
  245. #define EB2_CAPT_SETUP (EBUS_DCSR_BURST_SZ_8 | EBUS_DCSR_INT_EN | EBUS_DCSR_EN_DMA| 
  246. EBUS_DCSR_EN_CNT | EBUS_DCSR_TC | EBUS_DCSR_WRITE)
  247. #define CS4231_MIN_ATEN     (0)
  248. #define CS4231_MAX_ATEN     (31)
  249. #define CS4231_MAX_DEV_ATEN (63)
  250. #define CS4231_MON_MIN_ATEN         (0)
  251. #define CS4231_MON_MAX_ATEN         (63)
  252. #define CS4231_DEFAULT_PLAYGAIN     (132)
  253. #define CS4231_DEFAULT_RECGAIN      (126)
  254. #define CS4231_MIN_GAIN     (0)
  255. #define CS4231_MAX_GAIN     (15)
  256. #define CS4231_PRECISION    (8)             /* # of bits/sample */
  257. #define CS4231_CHANNELS     (1)             /* channels/sample */
  258. #define CS4231_RATE   (8000)                /* default sample rate */
  259. #endif /* _CS4231_H_ */