seq.c 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  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 <linux/init.h>
  22. #include <linux/module.h>
  23. #include <linux/device.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/minors.h>
  35. #include <sound/seq_device.h>
  36. #if defined(CONFIG_SND_SEQ_DUMMY_MODULE)
  37. int seq_client_load[15] = {[0] = SNDRV_SEQ_CLIENT_DUMMY, [1 ... 14] = -1};
  38. #else
  39. int seq_client_load[15] = {[0 ... 14] = -1};
  40. #endif
  41. int seq_default_timer_class = SNDRV_TIMER_CLASS_GLOBAL;
  42. int seq_default_timer_sclass = SNDRV_TIMER_SCLASS_NONE;
  43. int seq_default_timer_card = -1;
  44. int seq_default_timer_device =
  45. #ifdef CONFIG_SND_SEQ_HRTIMER_DEFAULT
  46. SNDRV_TIMER_GLOBAL_HRTIMER
  47. #elif defined(CONFIG_SND_SEQ_RTCTIMER_DEFAULT)
  48. SNDRV_TIMER_GLOBAL_RTC
  49. #else
  50. SNDRV_TIMER_GLOBAL_SYSTEM
  51. #endif
  52. ;
  53. int seq_default_timer_subdevice = 0;
  54. int seq_default_timer_resolution = 0; /* Hz */
  55. MODULE_AUTHOR("Frank van de Pol <fvdpol@coil.demon.nl>, Jaroslav Kysela <perex@perex.cz>");
  56. MODULE_DESCRIPTION("Advanced Linux Sound Architecture sequencer.");
  57. MODULE_LICENSE("GPL");
  58. module_param_array(seq_client_load, int, NULL, 0444);
  59. MODULE_PARM_DESC(seq_client_load, "The numbers of global (system) clients to load through kmod.");
  60. module_param(seq_default_timer_class, int, 0644);
  61. MODULE_PARM_DESC(seq_default_timer_class, "The default timer class.");
  62. module_param(seq_default_timer_sclass, int, 0644);
  63. MODULE_PARM_DESC(seq_default_timer_sclass, "The default timer slave class.");
  64. module_param(seq_default_timer_card, int, 0644);
  65. MODULE_PARM_DESC(seq_default_timer_card, "The default timer card number.");
  66. module_param(seq_default_timer_device, int, 0644);
  67. MODULE_PARM_DESC(seq_default_timer_device, "The default timer device number.");
  68. module_param(seq_default_timer_subdevice, int, 0644);
  69. MODULE_PARM_DESC(seq_default_timer_subdevice, "The default timer subdevice number.");
  70. module_param(seq_default_timer_resolution, int, 0644);
  71. MODULE_PARM_DESC(seq_default_timer_resolution, "The default timer resolution in Hz.");
  72. MODULE_ALIAS_CHARDEV(CONFIG_SND_MAJOR, SNDRV_MINOR_SEQUENCER);
  73. MODULE_ALIAS("devname:snd/seq");
  74. /*
  75. * INIT PART
  76. */
  77. static int __init alsa_seq_init(void)
  78. {
  79. int err;
  80. if ((err = client_init_data()) < 0)
  81. goto error;
  82. /* init memory, room for selected events */
  83. if ((err = snd_sequencer_memory_init()) < 0)
  84. goto error;
  85. /* init event queues */
  86. if ((err = snd_seq_queues_init()) < 0)
  87. goto error;
  88. /* register sequencer device */
  89. if ((err = snd_sequencer_device_init()) < 0)
  90. goto error;
  91. /* register proc interface */
  92. if ((err = snd_seq_info_init()) < 0)
  93. goto error;
  94. /* register our internal client */
  95. if ((err = snd_seq_system_client_init()) < 0)
  96. goto error;
  97. snd_seq_autoload_init();
  98. error:
  99. return err;
  100. }
  101. static void __exit alsa_seq_exit(void)
  102. {
  103. /* unregister our internal client */
  104. snd_seq_system_client_done();
  105. /* unregister proc interface */
  106. snd_seq_info_done();
  107. /* delete timing queues */
  108. snd_seq_queues_delete();
  109. /* unregister sequencer device */
  110. snd_sequencer_device_done();
  111. /* release event memory */
  112. snd_sequencer_memory_done();
  113. snd_seq_autoload_exit();
  114. }
  115. module_init(alsa_seq_init)
  116. module_exit(alsa_seq_exit)