emux.c 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. /*
  2. * Copyright (C) 2000 Takashi Iwai <tiwai@suse.de>
  3. *
  4. * Routines for control of EMU WaveTable chip
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  19. */
  20. #include <linux/wait.h>
  21. #include <linux/slab.h>
  22. #include <linux/string.h>
  23. #include <sound/core.h>
  24. #include <sound/emux_synth.h>
  25. #include <linux/init.h>
  26. #include "emux_voice.h"
  27. MODULE_AUTHOR("Takashi Iwai");
  28. MODULE_DESCRIPTION("Routines for control of EMU WaveTable chip");
  29. MODULE_LICENSE("GPL");
  30. /*
  31. * create a new hardware dependent device for Emu8000/Emu10k1
  32. */
  33. int snd_emux_new(struct snd_emux **remu)
  34. {
  35. struct snd_emux *emu;
  36. *remu = NULL;
  37. emu = kzalloc(sizeof(*emu), GFP_KERNEL);
  38. if (emu == NULL)
  39. return -ENOMEM;
  40. spin_lock_init(&emu->voice_lock);
  41. mutex_init(&emu->register_mutex);
  42. emu->client = -1;
  43. #ifdef CONFIG_SND_SEQUENCER_OSS
  44. emu->oss_synth = NULL;
  45. #endif
  46. emu->max_voices = 0;
  47. emu->use_time = 0;
  48. init_timer(&emu->tlist);
  49. emu->tlist.function = snd_emux_timer_callback;
  50. emu->tlist.data = (unsigned long)emu;
  51. emu->timer_active = 0;
  52. *remu = emu;
  53. return 0;
  54. }
  55. EXPORT_SYMBOL(snd_emux_new);
  56. /*
  57. */
  58. static int sf_sample_new(void *private_data, struct snd_sf_sample *sp,
  59. struct snd_util_memhdr *hdr,
  60. const void __user *buf, long count)
  61. {
  62. struct snd_emux *emu = private_data;
  63. return emu->ops.sample_new(emu, sp, hdr, buf, count);
  64. }
  65. static int sf_sample_free(void *private_data, struct snd_sf_sample *sp,
  66. struct snd_util_memhdr *hdr)
  67. {
  68. struct snd_emux *emu = private_data;
  69. return emu->ops.sample_free(emu, sp, hdr);
  70. }
  71. static void sf_sample_reset(void *private_data)
  72. {
  73. struct snd_emux *emu = private_data;
  74. emu->ops.sample_reset(emu);
  75. }
  76. int snd_emux_register(struct snd_emux *emu, struct snd_card *card, int index, char *name)
  77. {
  78. int err;
  79. struct snd_sf_callback sf_cb;
  80. if (snd_BUG_ON(!emu->hw || emu->max_voices <= 0))
  81. return -EINVAL;
  82. if (snd_BUG_ON(!card || !name))
  83. return -EINVAL;
  84. emu->card = card;
  85. emu->name = kstrdup(name, GFP_KERNEL);
  86. emu->voices = kcalloc(emu->max_voices, sizeof(struct snd_emux_voice),
  87. GFP_KERNEL);
  88. if (emu->voices == NULL)
  89. return -ENOMEM;
  90. /* create soundfont list */
  91. memset(&sf_cb, 0, sizeof(sf_cb));
  92. sf_cb.private_data = emu;
  93. if (emu->ops.sample_new)
  94. sf_cb.sample_new = sf_sample_new;
  95. if (emu->ops.sample_free)
  96. sf_cb.sample_free = sf_sample_free;
  97. if (emu->ops.sample_reset)
  98. sf_cb.sample_reset = sf_sample_reset;
  99. emu->sflist = snd_sf_new(&sf_cb, emu->memhdr);
  100. if (emu->sflist == NULL)
  101. return -ENOMEM;
  102. if ((err = snd_emux_init_hwdep(emu)) < 0)
  103. return err;
  104. snd_emux_init_voices(emu);
  105. snd_emux_init_seq(emu, card, index);
  106. #ifdef CONFIG_SND_SEQUENCER_OSS
  107. snd_emux_init_seq_oss(emu);
  108. #endif
  109. snd_emux_init_virmidi(emu, card);
  110. #ifdef CONFIG_PROC_FS
  111. snd_emux_proc_init(emu, card, index);
  112. #endif
  113. return 0;
  114. }
  115. EXPORT_SYMBOL(snd_emux_register);
  116. /*
  117. */
  118. int snd_emux_free(struct snd_emux *emu)
  119. {
  120. unsigned long flags;
  121. if (! emu)
  122. return -EINVAL;
  123. spin_lock_irqsave(&emu->voice_lock, flags);
  124. if (emu->timer_active)
  125. del_timer(&emu->tlist);
  126. spin_unlock_irqrestore(&emu->voice_lock, flags);
  127. #ifdef CONFIG_PROC_FS
  128. snd_emux_proc_free(emu);
  129. #endif
  130. snd_emux_delete_virmidi(emu);
  131. #ifdef CONFIG_SND_SEQUENCER_OSS
  132. snd_emux_detach_seq_oss(emu);
  133. #endif
  134. snd_emux_detach_seq(emu);
  135. snd_emux_delete_hwdep(emu);
  136. if (emu->sflist)
  137. snd_sf_free(emu->sflist);
  138. kfree(emu->voices);
  139. kfree(emu->name);
  140. kfree(emu);
  141. return 0;
  142. }
  143. EXPORT_SYMBOL(snd_emux_free);
  144. /*
  145. * INIT part
  146. */
  147. static int __init alsa_emux_init(void)
  148. {
  149. return 0;
  150. }
  151. static void __exit alsa_emux_exit(void)
  152. {
  153. }
  154. module_init(alsa_emux_init)
  155. module_exit(alsa_emux_exit)