emux.c 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  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 <sound/driver.h>
  21. #include <linux/wait.h>
  22. #include <linux/sched.h>
  23. #include <linux/slab.h>
  24. #include <sound/core.h>
  25. #include <sound/emux_synth.h>
  26. #include <linux/init.h>
  27. #include "emux_voice.h"
  28. MODULE_AUTHOR("Takashi Iwai");
  29. MODULE_DESCRIPTION("Routines for control of EMU WaveTable chip");
  30. MODULE_LICENSE("GPL");
  31. /*
  32. * create a new hardware dependent device for Emu8000/Emu10k1
  33. */
  34. int snd_emux_new(snd_emux_t **remu)
  35. {
  36. snd_emux_t *emu;
  37. *remu = NULL;
  38. emu = kcalloc(1, sizeof(*emu), GFP_KERNEL);
  39. if (emu == NULL)
  40. return -ENOMEM;
  41. spin_lock_init(&emu->voice_lock);
  42. init_MUTEX(&emu->register_mutex);
  43. emu->client = -1;
  44. #ifdef CONFIG_SND_SEQUENCER_OSS
  45. emu->oss_synth = NULL;
  46. #endif
  47. emu->max_voices = 0;
  48. emu->use_time = 0;
  49. init_timer(&emu->tlist);
  50. emu->tlist.function = snd_emux_timer_callback;
  51. emu->tlist.data = (unsigned long)emu;
  52. emu->timer_active = 0;
  53. *remu = emu;
  54. return 0;
  55. }
  56. /*
  57. */
  58. int snd_emux_register(snd_emux_t *emu, snd_card_t *card, int index, char *name)
  59. {
  60. int err;
  61. snd_sf_callback_t sf_cb;
  62. snd_assert(emu->hw != NULL, return -EINVAL);
  63. snd_assert(emu->max_voices > 0, return -EINVAL);
  64. snd_assert(card != NULL, return -EINVAL);
  65. snd_assert(name != NULL, return -EINVAL);
  66. emu->card = card;
  67. emu->name = snd_kmalloc_strdup(name, GFP_KERNEL);
  68. emu->voices = kcalloc(emu->max_voices, sizeof(snd_emux_voice_t), GFP_KERNEL);
  69. if (emu->voices == NULL)
  70. return -ENOMEM;
  71. /* create soundfont list */
  72. memset(&sf_cb, 0, sizeof(sf_cb));
  73. sf_cb.private_data = emu;
  74. sf_cb.sample_new = (snd_sf_sample_new_t)emu->ops.sample_new;
  75. sf_cb.sample_free = (snd_sf_sample_free_t)emu->ops.sample_free;
  76. sf_cb.sample_reset = (snd_sf_sample_reset_t)emu->ops.sample_reset;
  77. emu->sflist = snd_sf_new(&sf_cb, emu->memhdr);
  78. if (emu->sflist == NULL)
  79. return -ENOMEM;
  80. if ((err = snd_emux_init_hwdep(emu)) < 0)
  81. return err;
  82. snd_emux_init_voices(emu);
  83. snd_emux_init_seq(emu, card, index);
  84. #ifdef CONFIG_SND_SEQUENCER_OSS
  85. snd_emux_init_seq_oss(emu);
  86. #endif
  87. snd_emux_init_virmidi(emu, card);
  88. #ifdef CONFIG_PROC_FS
  89. snd_emux_proc_init(emu, card, index);
  90. #endif
  91. return 0;
  92. }
  93. /*
  94. */
  95. int snd_emux_free(snd_emux_t *emu)
  96. {
  97. unsigned long flags;
  98. if (! emu)
  99. return -EINVAL;
  100. spin_lock_irqsave(&emu->voice_lock, flags);
  101. if (emu->timer_active)
  102. del_timer(&emu->tlist);
  103. spin_unlock_irqrestore(&emu->voice_lock, flags);
  104. #ifdef CONFIG_PROC_FS
  105. snd_emux_proc_free(emu);
  106. #endif
  107. snd_emux_delete_virmidi(emu);
  108. #ifdef CONFIG_SND_SEQUENCER_OSS
  109. snd_emux_detach_seq_oss(emu);
  110. #endif
  111. snd_emux_detach_seq(emu);
  112. snd_emux_delete_hwdep(emu);
  113. if (emu->sflist)
  114. snd_sf_free(emu->sflist);
  115. kfree(emu->voices);
  116. kfree(emu->name);
  117. kfree(emu);
  118. return 0;
  119. }
  120. EXPORT_SYMBOL(snd_emux_new);
  121. EXPORT_SYMBOL(snd_emux_register);
  122. EXPORT_SYMBOL(snd_emux_free);
  123. EXPORT_SYMBOL(snd_emux_terminate_all);
  124. EXPORT_SYMBOL(snd_emux_lock_voice);
  125. EXPORT_SYMBOL(snd_emux_unlock_voice);
  126. /* soundfont.c */
  127. EXPORT_SYMBOL(snd_sf_linear_to_log);
  128. /*
  129. * INIT part
  130. */
  131. static int __init alsa_emux_init(void)
  132. {
  133. return 0;
  134. }
  135. static void __exit alsa_emux_exit(void)
  136. {
  137. }
  138. module_init(alsa_emux_init)
  139. module_exit(alsa_emux_exit)