emux_proc.c 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. /*
  2. * Copyright (C) 2000 Takashi Iwai <tiwai@suse.de>
  3. *
  4. * Proc interface for Emu8k/Emu10k1 WaveTable synth
  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 <sound/core.h>
  22. #include <sound/emux_synth.h>
  23. #include <sound/info.h>
  24. #include "emux_voice.h"
  25. #ifdef CONFIG_PROC_FS
  26. static void
  27. snd_emux_proc_info_read(struct snd_info_entry *entry,
  28. struct snd_info_buffer *buf)
  29. {
  30. struct snd_emux *emu;
  31. int i;
  32. emu = entry->private_data;
  33. mutex_lock(&emu->register_mutex);
  34. if (emu->name)
  35. snd_iprintf(buf, "Device: %s\n", emu->name);
  36. snd_iprintf(buf, "Ports: %d\n", emu->num_ports);
  37. snd_iprintf(buf, "Addresses:");
  38. for (i = 0; i < emu->num_ports; i++)
  39. snd_iprintf(buf, " %d:%d", emu->client, emu->ports[i]);
  40. snd_iprintf(buf, "\n");
  41. snd_iprintf(buf, "Use Counter: %d\n", emu->used);
  42. snd_iprintf(buf, "Max Voices: %d\n", emu->max_voices);
  43. snd_iprintf(buf, "Allocated Voices: %d\n", emu->num_voices);
  44. if (emu->memhdr) {
  45. snd_iprintf(buf, "Memory Size: %d\n", emu->memhdr->size);
  46. snd_iprintf(buf, "Memory Available: %d\n", snd_util_mem_avail(emu->memhdr));
  47. snd_iprintf(buf, "Allocated Blocks: %d\n", emu->memhdr->nblocks);
  48. } else {
  49. snd_iprintf(buf, "Memory Size: 0\n");
  50. }
  51. if (emu->sflist) {
  52. mutex_lock(&emu->sflist->presets_mutex);
  53. snd_iprintf(buf, "SoundFonts: %d\n", emu->sflist->fonts_size);
  54. snd_iprintf(buf, "Instruments: %d\n", emu->sflist->zone_counter);
  55. snd_iprintf(buf, "Samples: %d\n", emu->sflist->sample_counter);
  56. snd_iprintf(buf, "Locked Instruments: %d\n", emu->sflist->zone_locked);
  57. snd_iprintf(buf, "Locked Samples: %d\n", emu->sflist->sample_locked);
  58. mutex_unlock(&emu->sflist->presets_mutex);
  59. }
  60. #if 0 /* debug */
  61. if (emu->voices[0].state != SNDRV_EMUX_ST_OFF && emu->voices[0].ch >= 0) {
  62. struct snd_emux_voice *vp = &emu->voices[0];
  63. snd_iprintf(buf, "voice 0: on\n");
  64. snd_iprintf(buf, "mod delay=%x, atkhld=%x, dcysus=%x, rel=%x\n",
  65. vp->reg.parm.moddelay,
  66. vp->reg.parm.modatkhld,
  67. vp->reg.parm.moddcysus,
  68. vp->reg.parm.modrelease);
  69. snd_iprintf(buf, "vol delay=%x, atkhld=%x, dcysus=%x, rel=%x\n",
  70. vp->reg.parm.voldelay,
  71. vp->reg.parm.volatkhld,
  72. vp->reg.parm.voldcysus,
  73. vp->reg.parm.volrelease);
  74. snd_iprintf(buf, "lfo1 delay=%x, lfo2 delay=%x, pefe=%x\n",
  75. vp->reg.parm.lfo1delay,
  76. vp->reg.parm.lfo2delay,
  77. vp->reg.parm.pefe);
  78. snd_iprintf(buf, "fmmod=%x, tremfrq=%x, fm2frq2=%x\n",
  79. vp->reg.parm.fmmod,
  80. vp->reg.parm.tremfrq,
  81. vp->reg.parm.fm2frq2);
  82. snd_iprintf(buf, "cutoff=%x, filterQ=%x, chorus=%x, reverb=%x\n",
  83. vp->reg.parm.cutoff,
  84. vp->reg.parm.filterQ,
  85. vp->reg.parm.chorus,
  86. vp->reg.parm.reverb);
  87. snd_iprintf(buf, "avol=%x, acutoff=%x, apitch=%x\n",
  88. vp->avol, vp->acutoff, vp->apitch);
  89. snd_iprintf(buf, "apan=%x, aaux=%x, ptarget=%x, vtarget=%x, ftarget=%x\n",
  90. vp->apan, vp->aaux,
  91. vp->ptarget,
  92. vp->vtarget,
  93. vp->ftarget);
  94. snd_iprintf(buf, "start=%x, end=%x, loopstart=%x, loopend=%x\n",
  95. vp->reg.start, vp->reg.end, vp->reg.loopstart, vp->reg.loopend);
  96. snd_iprintf(buf, "sample_mode=%x, rate=%x\n", vp->reg.sample_mode, vp->reg.rate_offset);
  97. }
  98. #endif
  99. mutex_unlock(&emu->register_mutex);
  100. }
  101. void snd_emux_proc_init(struct snd_emux *emu, struct snd_card *card, int device)
  102. {
  103. struct snd_info_entry *entry;
  104. char name[64];
  105. sprintf(name, "wavetableD%d", device);
  106. entry = snd_info_create_card_entry(card, name, card->proc_root);
  107. if (entry == NULL)
  108. return;
  109. entry->content = SNDRV_INFO_CONTENT_TEXT;
  110. entry->private_data = emu;
  111. entry->c.text.read = snd_emux_proc_info_read;
  112. if (snd_info_register(entry) < 0)
  113. snd_info_free_entry(entry);
  114. else
  115. emu->proc = entry;
  116. }
  117. void snd_emux_proc_free(struct snd_emux *emu)
  118. {
  119. snd_info_free_entry(emu->proc);
  120. emu->proc = NULL;
  121. }
  122. #endif /* CONFIG_PROC_FS */