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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  **********************************************************************
  3.  *     voicemgr.c - Voice manager for emu10k1 driver
  4.  *     Copyright 1999, 2000 Creative Labs, Inc.
  5.  *
  6.  **********************************************************************
  7.  *
  8.  *     Date                 Author          Summary of changes
  9.  *     ----                 ------          ------------------
  10.  *     October 20, 1999     Bertrand Lee    base code release
  11.  *
  12.  **********************************************************************
  13.  *
  14.  *     This program is free software; you can redistribute it and/or
  15.  *     modify it under the terms of the GNU General Public License as
  16.  *     published by the Free Software Foundation; either version 2 of
  17.  *     the License, or (at your option) any later version.
  18.  *
  19.  *     This program is distributed in the hope that it will be useful,
  20.  *     but WITHOUT ANY WARRANTY; without even the implied warranty of
  21.  *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  22.  *     GNU General Public License for more details.
  23.  *
  24.  *     You should have received a copy of the GNU General Public
  25.  *     License along with this program; if not, write to the Free
  26.  *     Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139,
  27.  *     USA.
  28.  *
  29.  **********************************************************************
  30.  */
  31. #include "voicemgr.h"
  32. #include "8010.h"
  33. /**
  34.  * emu10k1_voice_alloc_buffer -
  35.  *
  36.  * allocates the memory buffer for a voice. Two page tables are kept for each buffer.
  37.  * One (dma_handle) keeps track of the host memory pages used and the other (virtualpagetable)
  38.  * is passed to the device so that it can do DMA to host memory.
  39.  *
  40.  */
  41. int emu10k1_voice_alloc_buffer(struct emu10k1_card *card, struct voice_mem *mem, u32 pages)
  42. {
  43. u32 pageindex, pagecount;
  44. u32 busaddx;
  45. int i;
  46. DPD(2, "requested pages is: %dn", pages);
  47. if ((mem->emupageindex = emu10k1_addxmgr_alloc(pages * PAGE_SIZE, card)) < 0)
  48. {
  49. DPF(1, "couldn't allocate emu10k1 address spacen");
  50. return -1;
  51. }
  52. /* Fill in virtual memory table */
  53. for (pagecount = 0; pagecount < pages; pagecount++) {
  54. if ((mem->addr[pagecount] = pci_alloc_consistent(card->pci_dev, PAGE_SIZE, &mem->dma_handle[pagecount]))
  55. == NULL) {
  56. mem->pages = pagecount;
  57. DPF(1, "couldn't allocate dma memoryn");
  58. return -1;
  59. }
  60. DPD(2, "Virtual Addx: %pn", mem->addr[pagecount]);
  61. for (i = 0; i < PAGE_SIZE / EMUPAGESIZE; i++) {
  62. busaddx = (u32) mem->dma_handle[pagecount] + i * EMUPAGESIZE;
  63. DPD(3, "Bus Addx: %#xn", busaddx);
  64. pageindex = mem->emupageindex + pagecount * PAGE_SIZE / EMUPAGESIZE + i;
  65. ((u32 *) card->virtualpagetable.addr)[pageindex] = cpu_to_le32((busaddx * 2) | pageindex);
  66. }
  67. }
  68. mem->pages = pagecount;
  69. return 0;
  70. }
  71. /**
  72.  * emu10k1_voice_free_buffer -
  73.  *
  74.  * frees the memory buffer for a voice.
  75.  */
  76. void emu10k1_voice_free_buffer(struct emu10k1_card *card, struct voice_mem *mem)
  77. {
  78. u32 pagecount, pageindex;
  79. int i;
  80. if (mem->emupageindex < 0)
  81. return;
  82. for (pagecount = 0; pagecount < mem->pages; pagecount++) {
  83. pci_free_consistent(card->pci_dev, PAGE_SIZE,
  84. mem->addr[pagecount],
  85. mem->dma_handle[pagecount]);
  86. for (i = 0; i < PAGE_SIZE / EMUPAGESIZE; i++) {
  87. pageindex = mem->emupageindex + pagecount * PAGE_SIZE / EMUPAGESIZE + i;
  88. ((u32 *) card->virtualpagetable.addr)[pageindex] =
  89. cpu_to_le32(((u32) card->silentpage.dma_handle * 2) | pageindex);
  90. }
  91. }
  92. emu10k1_addxmgr_free(card, mem->emupageindex);
  93. mem->emupageindex = -1;
  94. }
  95. int emu10k1_voice_alloc(struct emu10k1_card *card, struct emu_voice *voice)
  96. {
  97. u8 *voicetable = card->voicetable;
  98. int i;
  99. unsigned long flags;
  100. DPF(2, "emu10k1_voice_alloc()n");
  101. spin_lock_irqsave(&card->lock, flags);
  102. if (voice->flags & VOICE_FLAGS_STEREO) {
  103. for (i = 0; i < NUM_G; i += 2)
  104. if ((voicetable[i] == VOICE_USAGE_FREE) && (voicetable[i + 1] == VOICE_USAGE_FREE)) {
  105. voicetable[i] = voice->usage;
  106. voicetable[i + 1] = voice->usage;
  107. break;
  108. }
  109. } else {
  110. for (i = 0; i < NUM_G; i++)
  111. if (voicetable[i] == VOICE_USAGE_FREE) {
  112. voicetable[i] = voice->usage;
  113. break;
  114. }
  115. }
  116. spin_unlock_irqrestore(&card->lock, flags);
  117. if (i >= NUM_G)
  118. return -1;
  119. voice->card = card;
  120. voice->num = i;
  121. for (i = 0; i < (voice->flags & VOICE_FLAGS_STEREO ? 2 : 1); i++) {
  122. DPD(2, " voice allocated -> %dn", voice->num + i);
  123. sblive_writeptr_tag(card, voice->num + i, IFATN, 0xffff,
  124. DCYSUSV, 0,
  125. VTFT, 0x0000ffff,
  126. PTRX, 0,
  127. TAGLIST_END);
  128. }
  129. return 0;
  130. }
  131. void emu10k1_voice_free(struct emu_voice *voice)
  132. {
  133. struct emu10k1_card *card = voice->card;
  134. int i;
  135. unsigned long flags;
  136. DPF(2, "emu10k1_voice_free()n");
  137. if (voice->usage == VOICE_USAGE_FREE)
  138. return;
  139. for (i = 0; i < (voice->flags & VOICE_FLAGS_STEREO ? 2 : 1); i++) {
  140. DPD(2, " voice released -> %dn", voice->num + i);
  141. sblive_writeptr_tag(card, voice->num + i, DCYSUSV, 0, 
  142. VTFT, 0x0000ffff,
  143. PTRX_PITCHTARGET, 0,
  144. CVCF, 0x0000ffff,
  145. //CPF, 0,
  146. TAGLIST_END);
  147. sblive_writeptr(card, CPF, voice->num + i, 0);
  148. }
  149. voice->usage = VOICE_USAGE_FREE;
  150. spin_lock_irqsave(&card->lock, flags);
  151. card->voicetable[voice->num] = VOICE_USAGE_FREE;
  152. if (voice->flags & VOICE_FLAGS_STEREO)
  153. card->voicetable[voice->num + 1] = VOICE_USAGE_FREE;
  154. spin_unlock_irqrestore(&card->lock, flags);
  155. }
  156. void emu10k1_voice_playback_setup(struct emu_voice *voice)
  157. {
  158. struct emu10k1_card *card = voice->card;
  159. u32 start;
  160. int i;
  161. DPF(2, "emu10k1_voice_playback_setup()n");
  162. if (voice->flags & VOICE_FLAGS_STEREO) {
  163. /* Set stereo bit */
  164. start = 28;
  165. sblive_writeptr(card, CPF, voice->num, CPF_STEREO_MASK);
  166. sblive_writeptr(card, CPF, voice->num + 1, CPF_STEREO_MASK);
  167. } else {
  168. start = 30;
  169. sblive_writeptr(card, CPF, voice->num, 0);
  170. }
  171. if(!(voice->flags & VOICE_FLAGS_16BIT))
  172. start *= 2;
  173. voice->start += start;
  174. for (i = 0; i < (voice->flags & VOICE_FLAGS_STEREO ? 2 : 1); i++) {
  175. sblive_writeptr(card, FXRT, voice->num + i, voice->params[i].send_routing << 16);
  176. /* Stop CA */
  177. /* Assumption that PT is already 0 so no harm overwriting */
  178. sblive_writeptr(card, PTRX, voice->num + i, (voice->params[i].send_a << 8) | voice->params[i].send_b);
  179. sblive_writeptr_tag(card, voice->num + i,
  180. /* CSL, ST, CA */
  181.     DSL, voice->endloop | (voice->params[i].send_d << 24),
  182.     PSST, voice->startloop | (voice->params[i].send_c << 24),
  183.     CCCA, (voice->start) | CCCA_INTERPROM_0 | ((voice->flags & VOICE_FLAGS_16BIT) ? 0 : CCCA_8BITSELECT),
  184.     /* Clear filter delay memory */
  185.     Z1, 0,
  186.     Z2, 0,
  187.     /* Invalidate maps */
  188.     MAPA, MAP_PTI_MASK | ((u32) card->silentpage.dma_handle * 2),
  189.     MAPB, MAP_PTI_MASK | ((u32) card->silentpage.dma_handle * 2),
  190. /* modulation envelope */
  191.     CVCF, 0x0000ffff,
  192.     VTFT, 0x0000ffff,
  193.     ATKHLDM, 0,
  194.     DCYSUSM, 0x007f,
  195.     LFOVAL1, 0x8000,
  196.     LFOVAL2, 0x8000,
  197.     FMMOD, 0,
  198.     TREMFRQ, 0,
  199.     FM2FRQ2, 0,
  200.     ENVVAL, 0x8000,
  201. /* volume envelope */
  202.     ATKHLDV, 0x7f7f,
  203.     ENVVOL, 0x8000,
  204. /* filter envelope */
  205.     PEFE_FILTERAMOUNT, 0x7f,
  206. /* pitch envelope */
  207.     PEFE_PITCHAMOUNT, 0, TAGLIST_END);
  208. voice->params[i].fc_target = 0xffff;
  209. }
  210. }
  211. void emu10k1_voices_start(struct emu_voice *first_voice, unsigned int num_voices, int set)
  212. {
  213. struct emu10k1_card *card = first_voice->card;
  214. struct emu_voice *voice;
  215. unsigned int voicenum;
  216. int j;
  217. DPF(2, "emu10k1_voices_start()n");
  218. for (voicenum = 0; voicenum < num_voices; voicenum++)
  219. {
  220. voice = first_voice + voicenum;
  221. if (!set) {
  222. u32 cra, ccis, cs, sample;
  223. if (voice->flags & VOICE_FLAGS_STEREO) {
  224. cra = 64;
  225. ccis = 28;
  226. cs = 4;
  227. } else {
  228. cra = 64;
  229. ccis = 30;
  230. cs = 2;
  231. }
  232. if(voice->flags & VOICE_FLAGS_16BIT) {
  233. sample = 0x00000000;
  234. } else {
  235. sample = 0x80808080;
  236. ccis *= 2;
  237. }
  238. for(j = 0; j < cs; j++)
  239.                  sblive_writeptr(card, CD0 + j, voice->num, sample);
  240. /* Reset cache */
  241. sblive_writeptr(card, CCR_CACHEINVALIDSIZE, voice->num, 0);
  242. if (voice->flags & VOICE_FLAGS_STEREO)
  243. sblive_writeptr(card, CCR_CACHEINVALIDSIZE, voice->num + 1, 0);
  244. sblive_writeptr(card, CCR_READADDRESS, voice->num, cra);
  245. if (voice->flags & VOICE_FLAGS_STEREO)
  246. sblive_writeptr(card, CCR_READADDRESS, voice->num + 1, cra);
  247. /* Fill cache */
  248. sblive_writeptr(card, CCR_CACHEINVALIDSIZE, voice->num, ccis);
  249. }
  250. for (j = 0; j < (voice->flags & VOICE_FLAGS_STEREO ? 2 : 1); j++) {
  251. sblive_writeptr_tag(card, voice->num + j,
  252.     IFATN, (voice->params[j].initial_fc << 8) | voice->params[j].initial_attn,
  253.     VTFT, (voice->params[j].volume_target << 16) | voice->params[j].fc_target,
  254.     CVCF, (voice->params[j].volume_target << 16) | voice->params[j].fc_target,
  255.     DCYSUSV, (voice->params[j].byampl_env_sustain << 8) | voice->params[j].byampl_env_decay,
  256.     TAGLIST_END);
  257. emu10k1_clear_stop_on_loop(card, voice->num + j);
  258. }
  259. }
  260.         for (voicenum = 0; voicenum < num_voices; voicenum++)
  261. {
  262. voice = first_voice + voicenum;
  263. for (j = 0; j < (voice->flags & VOICE_FLAGS_STEREO ? 2 : 1); j++) {
  264. sblive_writeptr(card, PTRX_PITCHTARGET, voice->num + j, voice->pitch_target);
  265. if (j == 0)
  266. sblive_writeptr(card, CPF_CURRENTPITCH, voice->num, voice->pitch_target);
  267. sblive_writeptr(card, IP, voice->num + j, voice->initial_pitch);
  268. }
  269. }
  270. }
  271. void emu10k1_voices_stop(struct emu_voice *first_voice, int num_voices)
  272. {
  273. struct emu10k1_card *card = first_voice->card;
  274. struct emu_voice *voice;
  275. unsigned int voice_num;
  276. int j;
  277. DPF(2, "emu10k1_voice_stop()n");
  278.         for (voice_num = 0; voice_num < num_voices; voice_num++)
  279. {
  280. voice = first_voice + voice_num;
  281. for (j = 0; j < (voice->flags & VOICE_FLAGS_STEREO ? 2 : 1); j++) {
  282. sblive_writeptr_tag(card, voice->num + j,
  283. PTRX_PITCHTARGET, 0,
  284. CPF_CURRENTPITCH, 0,
  285. IFATN, 0xffff,
  286. VTFT, 0x0000ffff,
  287. CVCF, 0x0000ffff,
  288. IP, 0,
  289. TAGLIST_END);
  290. }
  291. }
  292. }