hal2.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:11k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef __HAL2_H
  2. #define __HAL2_H
  3. /*
  4.  *  Driver for HAL2 sound processors
  5.  *  Copyright (c) 1999 Ulf Carlsson <ulfc@bun.falkenberg.se>
  6.  *  Copyright (c) 2001 Ladislav Michl <ladis@psi.cz>
  7.  *
  8.  *  This program is free software; you can redistribute it and/or modify
  9.  *  it under the terms of the GNU General Public License version 2 as 
  10.  *  published by the Free Software Foundation.
  11.  *
  12.  *  This program is distributed in the hope that it will be useful,
  13.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15.  *  GNU General Public License for more details.
  16.  *
  17.  *  You should have received a copy of the GNU General Public License
  18.  *  along with this program; if not, write to the Free Software
  19.  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  20.  *
  21.  */
  22. #include <asm/addrspace.h>
  23. #include <asm/sgi/sgihpc.h>
  24. #include <linux/spinlock.h>
  25. #include <linux/types.h>
  26. #define H2_HAL2_BASE 0x58000
  27. #define H2_CTL_PIO (H2_HAL2_BASE + 0 * 0x400)
  28. #define H2_AES_PIO (H2_HAL2_BASE + 1 * 0x400)
  29. #define H2_VOL_PIO (H2_HAL2_BASE + 2 * 0x400)
  30. #define H2_SYN_PIO (H2_HAL2_BASE + 3 * 0x400)
  31. /* Indirect status register */
  32. #define H2_ISR_TSTATUS 0x01 /* RO: transaction status 1=busy */
  33. #define H2_ISR_USTATUS 0x02 /* RO: utime status bit 1=armed */
  34. #define H2_ISR_QUAD_MODE 0x04 /* codec mode 0=indigo 1=quad */
  35. #define H2_ISR_GLOBAL_RESET_N 0x08 /* chip global reset 0=reset */
  36. #define H2_ISR_CODEC_RESET_N 0x10 /* codec/synth reset 0=reset  */
  37. /* Revision register */
  38. #define H2_REV_AUDIO_PRESENT 0x8000 /* RO: audio present 0=present */
  39. #define H2_REV_BOARD_M 0x7000 /* RO: bits 14:12, board revision */
  40. #define H2_REV_MAJOR_CHIP_M 0x00F0 /* RO: bits 7:4, major chip revision */
  41. #define H2_REV_MINOR_CHIP_M 0x000F /* RO: bits 3:0, minor chip revision */
  42. /* Indirect address register */
  43. /*
  44.  * Address of indirect internal register to be accessed. A write to this
  45.  * register initiates read or write access to the indirect registers in the
  46.  * HAL2. Note that there af four indirect data registers for write access to
  47.  * registers larger than 16 byte.
  48.  */
  49. #define H2_IAR_TYPE_M 0xF000 /* bits 15:12, type of functional */
  50. /* block the register resides in */
  51. /* 1=DMA Port */
  52. /* 9=Global DMA Control */
  53. /* 2=Bresenham */
  54. /* 3=Unix Timer */
  55. #define H2_IAR_NUM_M 0x0F00 /* bits 11:8 instance of the */
  56. /* blockin which the indirect */
  57. /* register resides */
  58. /* If IAR_TYPE_M=DMA Port: */
  59. /* 1=Synth In */
  60. /* 2=AES In */
  61. /* 3=AES Out */
  62. /* 4=DAC Out */
  63. /* 5=ADC Out */
  64. /* 6=Synth Control */
  65. /* If IAR_TYPE_M=Global DMA Control: */
  66. /* 1=Control */
  67. /* If IAR_TYPE_M=Bresenham: */
  68. /* 1=Bresenham Clock Gen 1 */
  69. /* 2=Bresenham Clock Gen 2 */
  70. /* 3=Bresenham Clock Gen 3 */
  71. /* If IAR_TYPE_M=Unix Timer: */
  72. /* 1=Unix Timer */
  73. #define H2_IAR_ACCESS_SELECT 0x0080 /* 1=read 0=write */
  74. #define H2_IAR_PARAM 0x000C /* Parameter Select */
  75. #define H2_IAR_RB_INDEX_M 0x0003 /* Read Back Index */
  76. /* 00:word0 */
  77. /* 01:word1 */
  78. /* 10:word2 */
  79. /* 11:word3 */
  80. /*
  81.  * HAL2 internal addressing
  82.  *
  83.  * The HAL2 has "indirect registers" (idr) which are accessed by writing to the
  84.  * Indirect Data registers. Write the address to the Indirect Address register
  85.  * to transfer the data.
  86.  *
  87.  * We define the H2IR_* to the read address and H2IW_* to the write address and
  88.  * H2I_* to be fields in whatever register is referred to.
  89.  *
  90.  * When we write to indirect registers which are larger than one word (16 bit)
  91.  * we have to fill more than one indirect register before writing. When we read
  92.  * back however we have to read several times, each time with different Read
  93.  * Back Indexes (there are defs for doing this easily).
  94.  */
  95. /*
  96.  * Relay Control
  97.  */
  98. #define H2I_RELAY_C 0x9100
  99. #define H2I_RELAY_C_STATE 0x01 /* state of RELAY pin signal */
  100. /* DMA port enable */
  101. #define H2I_DMA_PORT_EN 0x9104
  102. #define H2I_DMA_PORT_EN_SY_IN 0x01 /* Synth_in DMA port */
  103. #define H2I_DMA_PORT_EN_AESRX 0x02 /* AES receiver DMA port */
  104. #define H2I_DMA_PORT_EN_AESTX 0x04 /* AES transmitter DMA port */
  105. #define H2I_DMA_PORT_EN_CODECTX 0x08 /* CODEC transmit DMA port */
  106. #define H2I_DMA_PORT_EN_CODECR 0x10 /* CODEC receive DMA port */
  107. #define H2I_DMA_END 0x9108  /* global dma endian select */
  108. #define H2I_DMA_END_SY_IN 0x01 /* Synth_in DMA port */
  109. #define H2I_DMA_END_AESRX 0x02 /* AES receiver DMA port */
  110. #define H2I_DMA_END_AESTX 0x04 /* AES transmitter DMA port */
  111. #define H2I_DMA_END_CODECTX 0x08 /* CODEC transmit DMA port */
  112. #define H2I_DMA_END_CODECR 0x10 /* CODEC receive DMA port */
  113. /* 0=b_end 1=l_end */
  114. #define H2I_DMA_DRV 0x910C   /* global PBUS DMA enable */
  115. #define H2I_SYNTH_C 0x1104 /* Synth DMA control */
  116. #define H2I_AESRX_C 0x1204   /* AES RX dma control */
  117. #define H2I_C_TS_EN 0x20 /* Timestamp enable */
  118. #define H2I_C_TS_FRMT 0x40 /* Timestamp format */
  119. #define H2I_C_NAUDIO 0x80 /* Sign extend */
  120. /* AESRX CTL, 16 bit */
  121. #define H2I_AESTX_C 0x1304 /* AES TX DMA control */
  122. #define H2I_AESTX_C_CLKID_SHIFT 3 /* Bresenham Clock Gen 1-3 */
  123. #define H2I_AESTX_C_CLKID_M 0x18
  124. #define H2I_AESTX_C_DATAT_SHIFT 8 /* 1=mono 2=stereo (3=quad) */
  125. #define H2I_AESTX_C_DATAT_M 0x300
  126. /* CODEC registers */
  127. #define H2I_DAC_C1 0x1404  /* DAC DMA control, 16 bit */
  128. #define H2I_DAC_C2 0x1408 /* DAC DMA control, 32 bit */
  129. #define H2I_ADC_C1 0x1504  /* ADC DMA control, 16 bit */
  130. #define H2I_ADC_C2 0x1508 /* ADC DMA control, 32 bit */
  131. /* Bits in CTL1 register */
  132. #define H2I_C1_DMA_SHIFT 0 /* DMA channel */
  133. #define H2I_C1_DMA_M 0x7
  134. #define H2I_C1_CLKID_SHIFT 3 /* Bresenham Clock Gen 1-3 */
  135. #define H2I_C1_CLKID_M 0x18
  136. #define H2I_C1_DATAT_SHIFT 8 /* 1=mono 2=stereo (3=quad) */
  137. #define H2I_C1_DATAT_M 0x300
  138. /* Bits in CTL2 register */
  139. #define H2I_C2_R_GAIN_SHIFT 0 /* right a/d input gain */
  140. #define H2I_C2_R_GAIN_M 0xf
  141. #define H2I_C2_L_GAIN_SHIFT 4 /* left a/d input gain */
  142. #define H2I_C2_L_GAIN_M 0xf0
  143. #define H2I_C2_R_SEL 0x100 /* right input select */
  144. #define H2I_C2_L_SEL 0x200 /* left input select */
  145. #define H2I_C2_MUTE 0x400 /* mute */
  146. #define H2I_C2_DO1 0x00010000 /* digital output port bit 0 */
  147. #define H2I_C2_DO2 0x00020000 /* digital output port bit 1 */
  148. #define H2I_C2_R_ATT_SHIFT 18 /* right d/a output - */
  149. #define H2I_C2_R_ATT_M 0x007c0000 /* attenuation */
  150. #define H2I_C2_L_ATT_SHIFT 23 /* left d/a output - */
  151. #define H2I_C2_L_ATT_M 0x0f800000 /* attenuation */
  152. #define H2I_SYNTH_MAP_C 0x1104 /* synth dma handshake ctrl */
  153. /* Clock generator CTL 1, 16 bit */
  154. #define H2I_BRES1_C1 0x2104
  155. #define H2I_BRES2_C1 0x2204
  156. #define H2I_BRES3_C1 0x2304
  157. #define H2I_BRES_C1_SHIFT 0 /* 0=48.0 1=44.1 2=aes_rx */
  158. #define H2I_BRES_C1_M 0x03
  159. /* Clock generator CTL 2, 32 bit */
  160. #define H2I_BRES1_C2 0x2108
  161. #define H2I_BRES2_C2 0x2208
  162. #define H2I_BRES3_C2 0x2308
  163. #define H2I_BRES_C2_INC_SHIFT 0 /* increment value */
  164. #define H2I_BRES_C2_INC_M 0xffff
  165. #define H2I_BRES_C2_MOD_SHIFT 16 /* modcontrol value */
  166. #define H2I_BRES_C2_MOD_M 0xffff0000 /* modctrl=0xffff&(modinc-1) */
  167. /* Unix timer, 64 bit */
  168. #define H2I_UTIME 0x3104
  169. #define H2I_UTIME_0_LD 0xffff /* microseconds, LSB's */
  170. #define H2I_UTIME_1_LD0 0x0f /* microseconds, MSB's */
  171. #define H2I_UTIME_1_LD1 0xf0 /* tenths of microseconds */
  172. #define H2I_UTIME_2_LD 0xffff /* seconds, LSB's */
  173. #define H2I_UTIME_3_LD 0xffff /* seconds, MSB's */
  174. typedef volatile u32 hal2_reg_t;
  175. typedef struct stru_hal2_ctl_regs hal2_ctl_regs_t;
  176. struct stru_hal2_ctl_regs {
  177. hal2_reg_t _unused0[4];
  178. hal2_reg_t isr; /* 0x10 Status Register */
  179. hal2_reg_t _unused1[3];
  180. hal2_reg_t rev; /* 0x20 Revision Register */
  181. hal2_reg_t _unused2[3];
  182. hal2_reg_t iar; /* 0x30 Indirect Address Register */
  183. hal2_reg_t _unused3[3];
  184. hal2_reg_t idr0; /* 0x40 Indirect Data Register 0 */
  185. hal2_reg_t _unused4[3];
  186. hal2_reg_t idr1; /* 0x50 Indirect Data Register 1 */
  187. hal2_reg_t _unused5[3];
  188. hal2_reg_t idr2; /* 0x60 Indirect Data Register 2 */
  189. hal2_reg_t _unused6[3];
  190. hal2_reg_t idr3; /* 0x70 Indirect Data Register 3 */
  191. };
  192. typedef struct stru_hal2_aes_regs hal2_aes_regs_t;
  193. struct stru_hal2_aes_regs {
  194. hal2_reg_t rx_stat[2]; /* Status registers */
  195. hal2_reg_t rx_cr[2]; /* Control registers */
  196. hal2_reg_t rx_ud[4]; /* User data window */
  197. hal2_reg_t rx_st[24]; /* Channel status data */
  198. hal2_reg_t tx_stat[1]; /* Status register */
  199. hal2_reg_t tx_cr[3]; /* Control registers */
  200. hal2_reg_t tx_ud[4]; /* User data window */
  201. hal2_reg_t tx_st[24]; /* Channel status data */
  202. };
  203. typedef struct stru_hal2_vol_regs hal2_vol_regs_t;
  204. struct stru_hal2_vol_regs {
  205. hal2_reg_t right; /* 0x00 Right volume */
  206. hal2_reg_t left; /* 0x04 Left volume */
  207. };
  208. typedef struct stru_hal2_syn_regs hal2_syn_regs_t;
  209. struct stru_hal2_syn_regs {
  210. hal2_reg_t _unused0[2];
  211. hal2_reg_t page; /* DOC Page register */
  212. hal2_reg_t regsel; /* DOC Register selection */
  213. hal2_reg_t dlow; /* DOC Data low */
  214. hal2_reg_t dhigh; /* DOC Data high */
  215. hal2_reg_t irq; /* IRQ Status */
  216. hal2_reg_t dram; /* DRAM Access */
  217. };
  218. /* HAL2 specific structures */
  219. typedef struct stru_hal2_pbus hal2_pbus_t;
  220. struct stru_hal2_pbus {
  221. struct hpc3_pbus_dmacregs *pbus;
  222. int pbusnr;
  223. unsigned int ctrl; /* Current state of pbus->pbdma_ctrl */
  224. };
  225. typedef struct stru_hal2_binfo hal2_binfo_t;
  226. typedef struct stru_hal2_buffer hal2_buf_t;
  227. struct stru_hal2_binfo {
  228. volatile struct hpc_dma_desc desc;
  229. hal2_buf_t *next; /* pointer to next buffer */
  230. int cnt; /* bytes in buffer */
  231. };
  232. #define H2_BUFFER_SIZE (PAGE_SIZE - 
  233. ((sizeof(hal2_binfo_t) - 1) / 8 + 1) * 8)
  234. struct stru_hal2_buffer {
  235. hal2_binfo_t info;
  236. char data[H2_BUFFER_SIZE] __attribute__((aligned(8)));
  237. };
  238. typedef struct stru_hal2_codec hal2_codec_t;
  239. struct stru_hal2_codec {
  240. hal2_buf_t *head;
  241. hal2_buf_t *tail; 
  242. hal2_pbus_t pbus;
  243. unsigned int format; /* Audio data format */
  244. int voices; /* mono/stereo */
  245. unsigned int sample_rate;
  246. unsigned int master; /* Master frequency */
  247. unsigned short mod; /* MOD value */
  248. unsigned short inc; /* INC value */
  249. wait_queue_head_t dma_wait;
  250. spinlock_t lock;
  251. struct semaphore sem;
  252. int usecount; /* recording and playback are 
  253.  * independent */
  254. };
  255. #define H2_MIX_OUTPUT_ATT 0
  256. #define H2_MIX_INPUT_GAIN 1
  257. #define H2_MIXERS 2
  258. typedef struct stru_hal2_mixer hal2_mixer_t;
  259. struct stru_hal2_mixer {
  260. int modcnt;
  261. unsigned int volume[H2_MIXERS];
  262. };
  263. typedef struct stru_hal2_card hal2_card_t;
  264. struct stru_hal2_card {
  265. int dev_dsp; /* audio device */
  266. int dev_mixer; /* mixer device */
  267. int dev_midi; /* midi device */
  268. hal2_ctl_regs_t *ctl_regs; /* HAL2 ctl registers */
  269. hal2_aes_regs_t *aes_regs; /* HAL2 vol registers */
  270. hal2_vol_regs_t *vol_regs; /* HAL2 aes registers */
  271. hal2_syn_regs_t *syn_regs; /* HAL2 syn registers */
  272. hal2_codec_t dac;
  273. hal2_codec_t adc;
  274. hal2_mixer_t mixer;
  275. };
  276. #endif /* __HAL2_H */