2019-05-27 09:55:05 +03:00
// SPDX-License-Identifier: GPL-2.0-or-later
2005-04-17 02:20:36 +04:00
/*
* Information interface for ALSA driver
2007-10-15 11:50:19 +04:00
* Copyright ( c ) by Jaroslav Kysela < perex @ perex . cz >
2005-04-17 02:20:36 +04:00
*/
# include <linux/slab.h>
# include <linux/time.h>
2005-06-23 11:09:02 +04:00
# include <linux/string.h>
2011-09-22 17:34:58 +04:00
# include <linux/export.h>
2005-04-17 02:20:36 +04:00
# include <sound/core.h>
# include <sound/minors.h>
# include <sound/info.h>
# include <linux/utsname.h>
2006-01-16 18:29:08 +03:00
# include <linux/mutex.h>
2005-04-17 02:20:36 +04:00
/*
* OSS compatible part
*/
2006-01-16 18:29:08 +03:00
static DEFINE_MUTEX ( strings ) ;
2005-04-17 02:20:36 +04:00
static char * snd_sndstat_strings [ SNDRV_CARDS ] [ SNDRV_OSS_INFO_DEV_COUNT ] ;
int snd_oss_info_register ( int dev , int num , char * string )
{
char * x ;
2008-08-08 19:09:09 +04:00
if ( snd_BUG_ON ( dev < 0 | | dev > = SNDRV_OSS_INFO_DEV_COUNT ) )
return - ENXIO ;
if ( snd_BUG_ON ( num < 0 | | num > = SNDRV_CARDS ) )
return - ENXIO ;
2006-01-16 18:29:08 +03:00
mutex_lock ( & strings ) ;
2005-04-17 02:20:36 +04:00
if ( string = = NULL ) {
2021-06-08 17:05:27 +03:00
x = snd_sndstat_strings [ num ] [ dev ] ;
2021-12-06 04:40:46 +03:00
kfree ( x ) ;
x = NULL ;
2005-04-17 02:20:36 +04:00
} else {
2005-06-23 11:09:02 +04:00
x = kstrdup ( string , GFP_KERNEL ) ;
2005-04-17 02:20:36 +04:00
if ( x = = NULL ) {
2006-01-16 18:29:08 +03:00
mutex_unlock ( & strings ) ;
2005-04-17 02:20:36 +04:00
return - ENOMEM ;
}
}
snd_sndstat_strings [ num ] [ dev ] = x ;
2006-01-16 18:29:08 +03:00
mutex_unlock ( & strings ) ;
2005-04-17 02:20:36 +04:00
return 0 ;
}
2006-04-28 17:13:39 +04:00
EXPORT_SYMBOL ( snd_oss_info_register ) ;
2005-11-17 16:00:19 +03:00
static int snd_sndstat_show_strings ( struct snd_info_buffer * buf , char * id , int dev )
2005-04-17 02:20:36 +04:00
{
int idx , ok = - 1 ;
char * str ;
snd_iprintf ( buf , " \n %s: " , id ) ;
2006-01-16 18:29:08 +03:00
mutex_lock ( & strings ) ;
2005-04-17 02:20:36 +04:00
for ( idx = 0 ; idx < SNDRV_CARDS ; idx + + ) {
str = snd_sndstat_strings [ idx ] [ dev ] ;
if ( str ) {
if ( ok < 0 ) {
snd_iprintf ( buf , " \n " ) ;
ok + + ;
}
snd_iprintf ( buf , " %i: %s \n " , idx , str ) ;
}
}
2006-01-16 18:29:08 +03:00
mutex_unlock ( & strings ) ;
2005-04-17 02:20:36 +04:00
if ( ok < 0 )
snd_iprintf ( buf , " NOT ENABLED IN CONFIG \n " ) ;
return ok ;
}
2005-11-17 16:00:19 +03:00
static void snd_sndstat_proc_read ( struct snd_info_entry * entry ,
struct snd_info_buffer * buffer )
2005-04-17 02:20:36 +04:00
{
2012-09-04 13:21:45 +04:00
snd_iprintf ( buffer , " Sound Driver:3.8.1a-980706 (ALSA emulation code) \n " ) ;
2005-04-17 02:20:36 +04:00
snd_iprintf ( buffer , " Kernel: %s %s %s %s %s \n " ,
2006-10-02 13:18:13 +04:00
init_utsname ( ) - > sysname ,
init_utsname ( ) - > nodename ,
init_utsname ( ) - > release ,
init_utsname ( ) - > version ,
init_utsname ( ) - > machine ) ;
2005-04-17 02:20:36 +04:00
snd_iprintf ( buffer , " Config options: 0 \n " ) ;
snd_iprintf ( buffer , " \n Installed drivers: \n " ) ;
snd_iprintf ( buffer , " Type 10: ALSA emulation \n " ) ;
snd_iprintf ( buffer , " \n Card config: \n " ) ;
snd_card_info_read_oss ( buffer ) ;
snd_sndstat_show_strings ( buffer , " Audio devices " , SNDRV_OSS_INFO_DEV_AUDIO ) ;
snd_sndstat_show_strings ( buffer , " Synth devices " , SNDRV_OSS_INFO_DEV_SYNTH ) ;
snd_sndstat_show_strings ( buffer , " Midi devices " , SNDRV_OSS_INFO_DEV_MIDI ) ;
snd_sndstat_show_strings ( buffer , " Timers " , SNDRV_OSS_INFO_DEV_TIMERS ) ;
snd_sndstat_show_strings ( buffer , " Mixers " , SNDRV_OSS_INFO_DEV_MIXERS ) ;
}
2015-04-23 11:56:21 +03:00
int __init snd_info_minor_register ( void )
2005-04-17 02:20:36 +04:00
{
2005-11-17 16:00:19 +03:00
struct snd_info_entry * entry ;
2005-04-17 02:20:36 +04:00
memset ( snd_sndstat_strings , 0 , sizeof ( snd_sndstat_strings ) ) ;
2015-04-23 11:56:21 +03:00
entry = snd_info_create_module_entry ( THIS_MODULE , " sndstat " ,
snd_oss_root ) ;
if ( ! entry )
return - ENOMEM ;
entry - > c . text . read = snd_sndstat_proc_read ;
return snd_info_register ( entry ) ; /* freed in error path */
2005-04-17 02:20:36 +04:00
}