seq.c 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. /*
  2. * ALSA sequencer main module
  3. * Copyright (c) 1998-1999 by Frank van de Pol <fvdpol@coil.demon.nl>
  4. *
  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. */
  21. #include <sound/driver.h>
  22. #include <linux/init.h>
  23. #include <linux/moduleparam.h>
  24. #include <sound/core.h>
  25. #include <sound/initval.h>
  26. #include <sound/seq_kernel.h>
  27. #include "seq_clientmgr.h"
  28. #include "seq_memory.h"
  29. #include "seq_queue.h"
  30. #include "seq_lock.h"
  31. #include "seq_timer.h"
  32. #include "seq_system.h"
  33. #include "seq_info.h"
  34. #include <sound/seq_device.h>
  35. #if defined(CONFIG_SND_SEQ_DUMMY_MODULE)
  36. int seq_client_load[15] = {[0] = SNDRV_SEQ_CLIENT_DUMMY, [1 ... 14] = -1};
  37. #else
  38. int seq_client_load[15] = {[0 ... 14] = -1};
  39. #endif
  40. int seq_default_timer_class = SNDRV_TIMER_CLASS_GLOBAL;
  41. int seq_default_timer_sclass = SNDRV_TIMER_SCLASS_NONE;
  42. int seq_default_timer_card = -1;
  43. int seq_default_timer_device =
  44. #ifdef CONFIG_SND_SEQ_RTCTIMER_DEFAULT
  45. SNDRV_TIMER_GLOBAL_RTC
  46. #else
  47. SNDRV_TIMER_GLOBAL_SYSTEM
  48. #endif
  49. ;
  50. int seq_default_timer_subdevice = 0;
  51. int seq_default_timer_resolution = 0; /* Hz */
  52. MODULE_AUTHOR("Frank van de Pol <fvdpol@coil.demon.nl>, Jaroslav Kysela <perex@suse.cz>");
  53. MODULE_DESCRIPTION("Advanced Linux Sound Architecture sequencer.");
  54. MODULE_LICENSE("GPL");
  55. module_param_array(seq_client_load, int, NULL, 0444);
  56. MODULE_PARM_DESC(seq_client_load, "The numbers of global (system) clients to load through kmod.");
  57. module_param(seq_default_timer_class, int, 0644);
  58. MODULE_PARM_DESC(seq_default_timer_class, "The default timer class.");
  59. module_param(seq_default_timer_sclass, int, 0644);
  60. MODULE_PARM_DESC(seq_default_timer_sclass, "The default timer slave class.");
  61. module_param(seq_default_timer_card, int, 0644);
  62. MODULE_PARM_DESC(seq_default_timer_card, "The default timer card number.");
  63. module_param(seq_default_timer_device, int, 0644);
  64. MODULE_PARM_DESC(seq_default_timer_device, "The default timer device number.");
  65. module_param(seq_default_timer_subdevice, int, 0644);
  66. MODULE_PARM_DESC(seq_default_timer_subdevice, "The default timer subdevice number.");
  67. module_param(seq_default_timer_resolution, int, 0644);
  68. MODULE_PARM_DESC(seq_default_timer_resolution, "The default timer resolution in Hz.");
  69. /*
  70. * INIT PART
  71. */
  72. static int __init alsa_seq_init(void)
  73. {
  74. int err;
  75. snd_seq_autoload_lock();
  76. if ((err = client_init_data()) < 0)
  77. goto error;
  78. /* init memory, room for selected events */
  79. if ((err = snd_sequencer_memory_init()) < 0)
  80. goto error;
  81. /* init event queues */
  82. if ((err = snd_seq_queues_init()) < 0)
  83. goto error;
  84. /* register sequencer device */
  85. if ((err = snd_sequencer_device_init()) < 0)
  86. goto error;
  87. /* register proc interface */
  88. if ((err = snd_seq_info_init()) < 0)
  89. goto error;
  90. /* register our internal client */
  91. if ((err = snd_seq_system_client_init()) < 0)
  92. goto error;
  93. error:
  94. snd_seq_autoload_unlock();
  95. return err;
  96. }
  97. static void __exit alsa_seq_exit(void)
  98. {
  99. /* unregister our internal client */
  100. snd_seq_system_client_done();
  101. /* unregister proc interface */
  102. snd_seq_info_done();
  103. /* delete timing queues */
  104. snd_seq_queues_delete();
  105. /* unregister sequencer device */
  106. snd_sequencer_device_done();
  107. /* release event memory */
  108. snd_sequencer_memory_done();
  109. }
  110. module_init(alsa_seq_init)
  111. module_exit(alsa_seq_exit)
  112. /* seq_clientmgr.c */
  113. EXPORT_SYMBOL(snd_seq_create_kernel_client);
  114. EXPORT_SYMBOL(snd_seq_delete_kernel_client);
  115. EXPORT_SYMBOL(snd_seq_kernel_client_enqueue);
  116. EXPORT_SYMBOL(snd_seq_kernel_client_enqueue_blocking);
  117. EXPORT_SYMBOL(snd_seq_kernel_client_dispatch);
  118. EXPORT_SYMBOL(snd_seq_kernel_client_ctl);
  119. EXPORT_SYMBOL(snd_seq_kernel_client_write_poll);
  120. EXPORT_SYMBOL(snd_seq_set_queue_tempo);
  121. /* seq_memory.c */
  122. EXPORT_SYMBOL(snd_seq_expand_var_event);
  123. EXPORT_SYMBOL(snd_seq_dump_var_event);
  124. /* seq_ports.c */
  125. EXPORT_SYMBOL(snd_seq_event_port_attach);
  126. EXPORT_SYMBOL(snd_seq_event_port_detach);
  127. /* seq_lock.c */
  128. #if defined(CONFIG_SMP) || defined(CONFIG_SND_DEBUG)
  129. /*EXPORT_SYMBOL(snd_seq_sleep_in_lock);*/
  130. /*EXPORT_SYMBOL(snd_seq_sleep_timeout_in_lock);*/
  131. EXPORT_SYMBOL(snd_use_lock_sync_helper);
  132. #endif