info_oss.c 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. /*
  2. * Information interface for ALSA driver
  3. * Copyright (c) by Jaroslav Kysela <perex@suse.cz>
  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/slab.h>
  23. #include <linux/time.h>
  24. #include <sound/core.h>
  25. #include <sound/minors.h>
  26. #include <sound/info.h>
  27. #include <sound/version.h>
  28. #include <linux/utsname.h>
  29. #if defined(CONFIG_SND_OSSEMUL) && defined(CONFIG_PROC_FS)
  30. /*
  31. * OSS compatible part
  32. */
  33. static DECLARE_MUTEX(strings);
  34. static char *snd_sndstat_strings[SNDRV_CARDS][SNDRV_OSS_INFO_DEV_COUNT];
  35. static snd_info_entry_t *snd_sndstat_proc_entry;
  36. int snd_oss_info_register(int dev, int num, char *string)
  37. {
  38. char *x;
  39. snd_assert(dev >= 0 && dev < SNDRV_OSS_INFO_DEV_COUNT, return -ENXIO);
  40. snd_assert(num >= 0 && num < SNDRV_CARDS, return -ENXIO);
  41. down(&strings);
  42. if (string == NULL) {
  43. if ((x = snd_sndstat_strings[num][dev]) != NULL) {
  44. kfree(x);
  45. x = NULL;
  46. }
  47. } else {
  48. x = snd_kmalloc_strdup(string, GFP_KERNEL);
  49. if (x == NULL) {
  50. up(&strings);
  51. return -ENOMEM;
  52. }
  53. }
  54. snd_sndstat_strings[num][dev] = x;
  55. up(&strings);
  56. return 0;
  57. }
  58. extern void snd_card_info_read_oss(snd_info_buffer_t * buffer);
  59. static int snd_sndstat_show_strings(snd_info_buffer_t * buf, char *id, int dev)
  60. {
  61. int idx, ok = -1;
  62. char *str;
  63. snd_iprintf(buf, "\n%s:", id);
  64. down(&strings);
  65. for (idx = 0; idx < SNDRV_CARDS; idx++) {
  66. str = snd_sndstat_strings[idx][dev];
  67. if (str) {
  68. if (ok < 0) {
  69. snd_iprintf(buf, "\n");
  70. ok++;
  71. }
  72. snd_iprintf(buf, "%i: %s\n", idx, str);
  73. }
  74. }
  75. up(&strings);
  76. if (ok < 0)
  77. snd_iprintf(buf, " NOT ENABLED IN CONFIG\n");
  78. return ok;
  79. }
  80. static void snd_sndstat_proc_read(snd_info_entry_t *entry, snd_info_buffer_t * buffer)
  81. {
  82. snd_iprintf(buffer, "Sound Driver:3.8.1a-980706 (ALSA v" CONFIG_SND_VERSION " emulation code)\n");
  83. snd_iprintf(buffer, "Kernel: %s %s %s %s %s\n",
  84. system_utsname.sysname,
  85. system_utsname.nodename,
  86. system_utsname.release,
  87. system_utsname.version,
  88. system_utsname.machine);
  89. snd_iprintf(buffer, "Config options: 0\n");
  90. snd_iprintf(buffer, "\nInstalled drivers: \n");
  91. snd_iprintf(buffer, "Type 10: ALSA emulation\n");
  92. snd_iprintf(buffer, "\nCard config: \n");
  93. snd_card_info_read_oss(buffer);
  94. snd_sndstat_show_strings(buffer, "Audio devices", SNDRV_OSS_INFO_DEV_AUDIO);
  95. snd_sndstat_show_strings(buffer, "Synth devices", SNDRV_OSS_INFO_DEV_SYNTH);
  96. snd_sndstat_show_strings(buffer, "Midi devices", SNDRV_OSS_INFO_DEV_MIDI);
  97. snd_sndstat_show_strings(buffer, "Timers", SNDRV_OSS_INFO_DEV_TIMERS);
  98. snd_sndstat_show_strings(buffer, "Mixers", SNDRV_OSS_INFO_DEV_MIXERS);
  99. }
  100. int snd_info_minor_register(void)
  101. {
  102. snd_info_entry_t *entry;
  103. memset(snd_sndstat_strings, 0, sizeof(snd_sndstat_strings));
  104. if ((entry = snd_info_create_module_entry(THIS_MODULE, "sndstat", snd_oss_root)) != NULL) {
  105. entry->c.text.read_size = 2048;
  106. entry->c.text.read = snd_sndstat_proc_read;
  107. if (snd_info_register(entry) < 0) {
  108. snd_info_free_entry(entry);
  109. entry = NULL;
  110. }
  111. }
  112. snd_sndstat_proc_entry = entry;
  113. return 0;
  114. }
  115. int snd_info_minor_unregister(void)
  116. {
  117. if (snd_sndstat_proc_entry) {
  118. snd_info_unregister(snd_sndstat_proc_entry);
  119. snd_sndstat_proc_entry = NULL;
  120. }
  121. return 0;
  122. }
  123. #endif /* CONFIG_SND_OSSEMUL */