Linux Audio

Check our new training course

Loading...
v6.2
  1// SPDX-License-Identifier: GPL-2.0-or-later
  2/*
  3 *  Information interface for ALSA driver
  4 *  Copyright (c) by Jaroslav Kysela <perex@perex.cz>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
  5 */
  6
  7#include <linux/slab.h>
  8#include <linux/time.h>
  9#include <linux/string.h>
 10#include <linux/export.h>
 11#include <sound/core.h>
 12#include <sound/minors.h>
 13#include <sound/info.h>
 
 14#include <linux/utsname.h>
 15#include <linux/mutex.h>
 16
 
 
 17/*
 18 *  OSS compatible part
 19 */
 20
 21static DEFINE_MUTEX(strings);
 22static char *snd_sndstat_strings[SNDRV_CARDS][SNDRV_OSS_INFO_DEV_COUNT];
 
 23
 24int snd_oss_info_register(int dev, int num, char *string)
 25{
 26	char *x;
 27
 28	if (snd_BUG_ON(dev < 0 || dev >= SNDRV_OSS_INFO_DEV_COUNT))
 29		return -ENXIO;
 30	if (snd_BUG_ON(num < 0 || num >= SNDRV_CARDS))
 31		return -ENXIO;
 32	mutex_lock(&strings);
 33	if (string == NULL) {
 34		x = snd_sndstat_strings[num][dev];
 35		kfree(x);
 36		x = NULL;
 
 37	} else {
 38		x = kstrdup(string, GFP_KERNEL);
 39		if (x == NULL) {
 40			mutex_unlock(&strings);
 41			return -ENOMEM;
 42		}
 43	}
 44	snd_sndstat_strings[num][dev] = x;
 45	mutex_unlock(&strings);
 46	return 0;
 47}
 
 48EXPORT_SYMBOL(snd_oss_info_register);
 49
 50static int snd_sndstat_show_strings(struct snd_info_buffer *buf, char *id, int dev)
 51{
 52	int idx, ok = -1;
 53	char *str;
 54
 55	snd_iprintf(buf, "\n%s:", id);
 56	mutex_lock(&strings);
 57	for (idx = 0; idx < SNDRV_CARDS; idx++) {
 58		str = snd_sndstat_strings[idx][dev];
 59		if (str) {
 60			if (ok < 0) {
 61				snd_iprintf(buf, "\n");
 62				ok++;
 63			}
 64			snd_iprintf(buf, "%i: %s\n", idx, str);
 65		}
 66	}
 67	mutex_unlock(&strings);
 68	if (ok < 0)
 69		snd_iprintf(buf, " NOT ENABLED IN CONFIG\n");
 70	return ok;
 71}
 72
 73static void snd_sndstat_proc_read(struct snd_info_entry *entry,
 74				  struct snd_info_buffer *buffer)
 75{
 76	snd_iprintf(buffer, "Sound Driver:3.8.1a-980706 (ALSA emulation code)\n");
 77	snd_iprintf(buffer, "Kernel: %s %s %s %s %s\n",
 78		    init_utsname()->sysname,
 79		    init_utsname()->nodename,
 80		    init_utsname()->release,
 81		    init_utsname()->version,
 82		    init_utsname()->machine);
 83	snd_iprintf(buffer, "Config options: 0\n");
 84	snd_iprintf(buffer, "\nInstalled drivers: \n");
 85	snd_iprintf(buffer, "Type 10: ALSA emulation\n");
 86	snd_iprintf(buffer, "\nCard config: \n");
 87	snd_card_info_read_oss(buffer);
 88	snd_sndstat_show_strings(buffer, "Audio devices", SNDRV_OSS_INFO_DEV_AUDIO);
 89	snd_sndstat_show_strings(buffer, "Synth devices", SNDRV_OSS_INFO_DEV_SYNTH);
 90	snd_sndstat_show_strings(buffer, "Midi devices", SNDRV_OSS_INFO_DEV_MIDI);
 91	snd_sndstat_show_strings(buffer, "Timers", SNDRV_OSS_INFO_DEV_TIMERS);
 92	snd_sndstat_show_strings(buffer, "Mixers", SNDRV_OSS_INFO_DEV_MIXERS);
 93}
 94
 95int __init snd_info_minor_register(void)
 96{
 97	struct snd_info_entry *entry;
 98
 99	memset(snd_sndstat_strings, 0, sizeof(snd_sndstat_strings));
100	entry = snd_info_create_module_entry(THIS_MODULE, "sndstat",
101					     snd_oss_root);
102	if (!entry)
103		return -ENOMEM;
104	entry->c.text.read = snd_sndstat_proc_read;
105	return snd_info_register(entry); /* freed in error path */
 
 
 
106}
v3.5.6
 
  1/*
  2 *  Information interface for ALSA driver
  3 *  Copyright (c) by Jaroslav Kysela <perex@perex.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
 22#include <linux/slab.h>
 23#include <linux/time.h>
 24#include <linux/string.h>
 25#include <linux/export.h>
 26#include <sound/core.h>
 27#include <sound/minors.h>
 28#include <sound/info.h>
 29#include <sound/version.h>
 30#include <linux/utsname.h>
 31#include <linux/mutex.h>
 32
 33#if defined(CONFIG_SND_OSSEMUL) && defined(CONFIG_PROC_FS)
 34
 35/*
 36 *  OSS compatible part
 37 */
 38
 39static DEFINE_MUTEX(strings);
 40static char *snd_sndstat_strings[SNDRV_CARDS][SNDRV_OSS_INFO_DEV_COUNT];
 41static struct snd_info_entry *snd_sndstat_proc_entry;
 42
 43int snd_oss_info_register(int dev, int num, char *string)
 44{
 45	char *x;
 46
 47	if (snd_BUG_ON(dev < 0 || dev >= SNDRV_OSS_INFO_DEV_COUNT))
 48		return -ENXIO;
 49	if (snd_BUG_ON(num < 0 || num >= SNDRV_CARDS))
 50		return -ENXIO;
 51	mutex_lock(&strings);
 52	if (string == NULL) {
 53		if ((x = snd_sndstat_strings[num][dev]) != NULL) {
 54			kfree(x);
 55			x = NULL;
 56		}
 57	} else {
 58		x = kstrdup(string, GFP_KERNEL);
 59		if (x == NULL) {
 60			mutex_unlock(&strings);
 61			return -ENOMEM;
 62		}
 63	}
 64	snd_sndstat_strings[num][dev] = x;
 65	mutex_unlock(&strings);
 66	return 0;
 67}
 68
 69EXPORT_SYMBOL(snd_oss_info_register);
 70
 71static int snd_sndstat_show_strings(struct snd_info_buffer *buf, char *id, int dev)
 72{
 73	int idx, ok = -1;
 74	char *str;
 75
 76	snd_iprintf(buf, "\n%s:", id);
 77	mutex_lock(&strings);
 78	for (idx = 0; idx < SNDRV_CARDS; idx++) {
 79		str = snd_sndstat_strings[idx][dev];
 80		if (str) {
 81			if (ok < 0) {
 82				snd_iprintf(buf, "\n");
 83				ok++;
 84			}
 85			snd_iprintf(buf, "%i: %s\n", idx, str);
 86		}
 87	}
 88	mutex_unlock(&strings);
 89	if (ok < 0)
 90		snd_iprintf(buf, " NOT ENABLED IN CONFIG\n");
 91	return ok;
 92}
 93
 94static void snd_sndstat_proc_read(struct snd_info_entry *entry,
 95				  struct snd_info_buffer *buffer)
 96{
 97	snd_iprintf(buffer, "Sound Driver:3.8.1a-980706 (ALSA v" CONFIG_SND_VERSION " emulation code)\n");
 98	snd_iprintf(buffer, "Kernel: %s %s %s %s %s\n",
 99		    init_utsname()->sysname,
100		    init_utsname()->nodename,
101		    init_utsname()->release,
102		    init_utsname()->version,
103		    init_utsname()->machine);
104	snd_iprintf(buffer, "Config options: 0\n");
105	snd_iprintf(buffer, "\nInstalled drivers: \n");
106	snd_iprintf(buffer, "Type 10: ALSA emulation\n");
107	snd_iprintf(buffer, "\nCard config: \n");
108	snd_card_info_read_oss(buffer);
109	snd_sndstat_show_strings(buffer, "Audio devices", SNDRV_OSS_INFO_DEV_AUDIO);
110	snd_sndstat_show_strings(buffer, "Synth devices", SNDRV_OSS_INFO_DEV_SYNTH);
111	snd_sndstat_show_strings(buffer, "Midi devices", SNDRV_OSS_INFO_DEV_MIDI);
112	snd_sndstat_show_strings(buffer, "Timers", SNDRV_OSS_INFO_DEV_TIMERS);
113	snd_sndstat_show_strings(buffer, "Mixers", SNDRV_OSS_INFO_DEV_MIXERS);
114}
115
116int snd_info_minor_register(void)
117{
118	struct snd_info_entry *entry;
119
120	memset(snd_sndstat_strings, 0, sizeof(snd_sndstat_strings));
121	if ((entry = snd_info_create_module_entry(THIS_MODULE, "sndstat", snd_oss_root)) != NULL) {
122		entry->c.text.read = snd_sndstat_proc_read;
123		if (snd_info_register(entry) < 0) {
124			snd_info_free_entry(entry);
125			entry = NULL;
126		}
127	}
128	snd_sndstat_proc_entry = entry;
129	return 0;
130}
131
132int snd_info_minor_unregister(void)
133{
134	snd_info_free_entry(snd_sndstat_proc_entry);
135	snd_sndstat_proc_entry = NULL;
136	return 0;
137}
138
139#endif /* CONFIG_SND_OSSEMUL */