Lines Matching defs:channel
229 channel reaches ESO.
253 channel reaches ESO.
276 Description: Start a voice, any channel 0 thru 63.
300 Description: Stop a voice, any channel 0 thru 63.
324 Description: Allocate hardware channel in Bank B (32-63).
328 Return Value: hardware channel - 32-63 or -1 when no channel is available
349 void snd_trident_free_pcm_channel(int channel)
351 Description: Free hardware channel in Bank B (32-63)
354 channel - hardware channel number 0-63
360 static void snd_trident_free_pcm_channel(struct snd_trident *trident, int channel)
362 if (channel < 32 || channel > 63)
364 channel &= 0x1f;
365 if (trident->ChanMap[T4D_BANK_B] & (1 << channel)) {
366 trident->ChanMap[T4D_BANK_B] &= ~(1 << channel);
374 Description: Allocate hardware channel in Bank A (0-31).
378 Return Value: hardware channel - 0-31 or -1 when no channel is available
397 void snd_trident_free_synth_channel( int channel )
399 Description: Free hardware channel in Bank B (0-31).
402 channel - hardware channel number 0-63
408 static void snd_trident_free_synth_channel(struct snd_trident *trident, int channel)
410 if (channel < 0 || channel > 31)
412 channel &= 0x1f;
413 if (trident->ChanMap[T4D_BANK_A] & (1 << channel)) {
414 trident->ChanMap[T4D_BANK_A] &= ~(1 << channel);
422 Description: This routine will complete and write the 5 hardware channel
486 dev_dbg(trident->card->dev, "written %i channel:\n", voice->number);
661 rate - Real or Virtual channel number.
691 rate - Real or Virtual channel number.
721 rate - Real or Virtual channel number.
740 Description: This routine returns a control mode for a PCM channel.
1018 // Initialize the channel and set channel Mode
1021 // Set DMA channel operation mode register
1024 // Set channel buffer Address, DMAR0 expects contiguous PCI memory area
1036 // Set channel sample rate, 4.12 format
1040 // Set channel interrupt blk length
1060 // Prepare capture intr channel
1223 /* Set channel buffer Address */
1229 /* set target ESO for channel */
1249 /* set up capture channel */
1309 /* prepare SPDIF channel */
1387 /* set target ESO for channel */
1406 /* prepare surrogate IRQ channel */
2015 /* stop capture channel */
3225 /* enable 64 channel mode */
3669 unsigned int audio_int, chn_int, stimer, channel, mask, tmp;
3688 for (channel = 63; channel >= 32; channel--) {
3689 mask = 1 << (channel&0x1f);
3692 voice = &trident->synth.voices[channel];