11da177e4SLinus Torvalds #ifndef __SOUND_CORE_H 21da177e4SLinus Torvalds #define __SOUND_CORE_H 31da177e4SLinus Torvalds 41da177e4SLinus Torvalds /* 51da177e4SLinus Torvalds * Main header file for the ALSA driver 61da177e4SLinus Torvalds * Copyright (c) 1994-2001 by Jaroslav Kysela <perex@suse.cz> 71da177e4SLinus Torvalds * 81da177e4SLinus Torvalds * 91da177e4SLinus Torvalds * This program is free software; you can redistribute it and/or modify 101da177e4SLinus Torvalds * it under the terms of the GNU General Public License as published by 111da177e4SLinus Torvalds * the Free Software Foundation; either version 2 of the License, or 121da177e4SLinus Torvalds * (at your option) any later version. 131da177e4SLinus Torvalds * 141da177e4SLinus Torvalds * This program is distributed in the hope that it will be useful, 151da177e4SLinus Torvalds * but WITHOUT ANY WARRANTY; without even the implied warranty of 161da177e4SLinus Torvalds * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 171da177e4SLinus Torvalds * GNU General Public License for more details. 181da177e4SLinus Torvalds * 191da177e4SLinus Torvalds * You should have received a copy of the GNU General Public License 201da177e4SLinus Torvalds * along with this program; if not, write to the Free Software 211da177e4SLinus Torvalds * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 221da177e4SLinus Torvalds * 231da177e4SLinus Torvalds */ 241da177e4SLinus Torvalds 251da177e4SLinus Torvalds #include <linux/sched.h> /* wake_up() */ 261a60d4c5SIngo Molnar #include <linux/mutex.h> /* struct mutex */ 271da177e4SLinus Torvalds #include <linux/rwsem.h> /* struct rw_semaphore */ 281da177e4SLinus Torvalds #include <linux/pm.h> /* pm_message_t */ 299d19f48cSTakashi Iwai #include <linux/device.h> 301da177e4SLinus Torvalds 311da177e4SLinus Torvalds /* forward declarations */ 321da177e4SLinus Torvalds #ifdef CONFIG_PCI 331da177e4SLinus Torvalds struct pci_dev; 341da177e4SLinus Torvalds #endif 351da177e4SLinus Torvalds #ifdef CONFIG_SBUS 361da177e4SLinus Torvalds struct sbus_dev; 371da177e4SLinus Torvalds #endif 381da177e4SLinus Torvalds 391da177e4SLinus Torvalds /* device allocation stuff */ 401da177e4SLinus Torvalds 411da177e4SLinus Torvalds #define SNDRV_DEV_TYPE_RANGE_SIZE 0x1000 421da177e4SLinus Torvalds 43512bbd6aSTakashi Iwai typedef int __bitwise snd_device_type_t; 44512bbd6aSTakashi Iwai #define SNDRV_DEV_TOPLEVEL ((__force snd_device_type_t) 0) 45512bbd6aSTakashi Iwai #define SNDRV_DEV_CONTROL ((__force snd_device_type_t) 1) 46512bbd6aSTakashi Iwai #define SNDRV_DEV_LOWLEVEL_PRE ((__force snd_device_type_t) 2) 47512bbd6aSTakashi Iwai #define SNDRV_DEV_LOWLEVEL_NORMAL ((__force snd_device_type_t) 0x1000) 48512bbd6aSTakashi Iwai #define SNDRV_DEV_PCM ((__force snd_device_type_t) 0x1001) 49512bbd6aSTakashi Iwai #define SNDRV_DEV_RAWMIDI ((__force snd_device_type_t) 0x1002) 50512bbd6aSTakashi Iwai #define SNDRV_DEV_TIMER ((__force snd_device_type_t) 0x1003) 51512bbd6aSTakashi Iwai #define SNDRV_DEV_SEQUENCER ((__force snd_device_type_t) 0x1004) 52512bbd6aSTakashi Iwai #define SNDRV_DEV_HWDEP ((__force snd_device_type_t) 0x1005) 53512bbd6aSTakashi Iwai #define SNDRV_DEV_INFO ((__force snd_device_type_t) 0x1006) 54512bbd6aSTakashi Iwai #define SNDRV_DEV_BUS ((__force snd_device_type_t) 0x1007) 55512bbd6aSTakashi Iwai #define SNDRV_DEV_CODEC ((__force snd_device_type_t) 0x1008) 56512bbd6aSTakashi Iwai #define SNDRV_DEV_LOWLEVEL ((__force snd_device_type_t) 0x2000) 571da177e4SLinus Torvalds 58512bbd6aSTakashi Iwai typedef int __bitwise snd_device_state_t; 59512bbd6aSTakashi Iwai #define SNDRV_DEV_BUILD ((__force snd_device_state_t) 0) 60512bbd6aSTakashi Iwai #define SNDRV_DEV_REGISTERED ((__force snd_device_state_t) 1) 61512bbd6aSTakashi Iwai #define SNDRV_DEV_DISCONNECTED ((__force snd_device_state_t) 2) 621da177e4SLinus Torvalds 63512bbd6aSTakashi Iwai typedef int __bitwise snd_device_cmd_t; 64512bbd6aSTakashi Iwai #define SNDRV_DEV_CMD_PRE ((__force snd_device_cmd_t) 0) 65512bbd6aSTakashi Iwai #define SNDRV_DEV_CMD_NORMAL ((__force snd_device_cmd_t) 1) 66512bbd6aSTakashi Iwai #define SNDRV_DEV_CMD_POST ((__force snd_device_cmd_t) 2) 671da177e4SLinus Torvalds 68512bbd6aSTakashi Iwai struct snd_device; 691da177e4SLinus Torvalds 70512bbd6aSTakashi Iwai struct snd_device_ops { 71512bbd6aSTakashi Iwai int (*dev_free)(struct snd_device *dev); 72512bbd6aSTakashi Iwai int (*dev_register)(struct snd_device *dev); 73512bbd6aSTakashi Iwai int (*dev_disconnect)(struct snd_device *dev); 74512bbd6aSTakashi Iwai }; 751da177e4SLinus Torvalds 76512bbd6aSTakashi Iwai struct snd_device { 771da177e4SLinus Torvalds struct list_head list; /* list of registered devices */ 78512bbd6aSTakashi Iwai struct snd_card *card; /* card which holds this device */ 791da177e4SLinus Torvalds snd_device_state_t state; /* state of the device */ 801da177e4SLinus Torvalds snd_device_type_t type; /* device type */ 811da177e4SLinus Torvalds void *device_data; /* device structure */ 82512bbd6aSTakashi Iwai struct snd_device_ops *ops; /* operations */ 831da177e4SLinus Torvalds }; 841da177e4SLinus Torvalds 85512bbd6aSTakashi Iwai #define snd_device(n) list_entry(n, struct snd_device, list) 861da177e4SLinus Torvalds 871da177e4SLinus Torvalds /* monitor files for graceful shutdown (hotplug) */ 881da177e4SLinus Torvalds 891da177e4SLinus Torvalds struct snd_monitor_file { 901da177e4SLinus Torvalds struct file *file; 911da177e4SLinus Torvalds struct snd_monitor_file *next; 92a9edfc60SKarsten Wiese const struct file_operations *disconnected_f_op; 93a9edfc60SKarsten Wiese struct list_head shutdown_list; 941da177e4SLinus Torvalds }; 951da177e4SLinus Torvalds 961da177e4SLinus Torvalds /* main structure for soundcard */ 971da177e4SLinus Torvalds 98512bbd6aSTakashi Iwai struct snd_card { 99d5750f67SHenrik Kretzschmar int number; /* number of soundcard (index to 100d5750f67SHenrik Kretzschmar snd_cards) */ 1011da177e4SLinus Torvalds 1021da177e4SLinus Torvalds char id[16]; /* id string of this card */ 1031da177e4SLinus Torvalds char driver[16]; /* driver name */ 1041da177e4SLinus Torvalds char shortname[32]; /* short name of this soundcard */ 1051da177e4SLinus Torvalds char longname[80]; /* name of this soundcard */ 1061da177e4SLinus Torvalds char mixername[80]; /* mixer name */ 107d5750f67SHenrik Kretzschmar char components[80]; /* card components delimited with 108d5750f67SHenrik Kretzschmar space */ 1091da177e4SLinus Torvalds struct module *module; /* top-level module */ 1101da177e4SLinus Torvalds 1111da177e4SLinus Torvalds void *private_data; /* private data for soundcard */ 112512bbd6aSTakashi Iwai void (*private_free) (struct snd_card *card); /* callback for freeing of 113d5750f67SHenrik Kretzschmar private data */ 1141da177e4SLinus Torvalds struct list_head devices; /* devices */ 1151da177e4SLinus Torvalds 1161da177e4SLinus Torvalds unsigned int last_numid; /* last used numeric ID */ 1171da177e4SLinus Torvalds struct rw_semaphore controls_rwsem; /* controls list lock */ 1181da177e4SLinus Torvalds rwlock_t ctl_files_rwlock; /* ctl_files list lock */ 1191da177e4SLinus Torvalds int controls_count; /* count of all controls */ 1201da177e4SLinus Torvalds int user_ctl_count; /* count of all user controls */ 1211da177e4SLinus Torvalds struct list_head controls; /* all controls for this card */ 1221da177e4SLinus Torvalds struct list_head ctl_files; /* active control files */ 1231da177e4SLinus Torvalds 124512bbd6aSTakashi Iwai struct snd_info_entry *proc_root; /* root for soundcard specific files */ 125512bbd6aSTakashi Iwai struct snd_info_entry *proc_id; /* the card id */ 1261da177e4SLinus Torvalds struct proc_dir_entry *proc_root_link; /* number link to real id */ 1271da177e4SLinus Torvalds 1281da177e4SLinus Torvalds struct snd_monitor_file *files; /* all files associated to this card */ 129d5750f67SHenrik Kretzschmar struct snd_shutdown_f_ops *s_f_ops; /* file operations in the shutdown 130d5750f67SHenrik Kretzschmar state */ 1311da177e4SLinus Torvalds spinlock_t files_lock; /* lock the files for this card */ 1321da177e4SLinus Torvalds int shutdown; /* this card is going down */ 133c461482cSTakashi Iwai int free_on_last_close; /* free in context of file_release */ 1341da177e4SLinus Torvalds wait_queue_head_t shutdown_sleep; 1357d2aae1eSTakashi Iwai struct device *dev; /* device assigned to this card */ 1367d2aae1eSTakashi Iwai #ifndef CONFIG_SYSFS_DEPRECATED 1377d2aae1eSTakashi Iwai struct device *card_dev; /* cardX object for sysfs */ 1387d2aae1eSTakashi Iwai #endif 1391da177e4SLinus Torvalds 1401da177e4SLinus Torvalds #ifdef CONFIG_PM 1411da177e4SLinus Torvalds unsigned int power_state; /* power state */ 1421a60d4c5SIngo Molnar struct mutex power_lock; /* power lock */ 1431da177e4SLinus Torvalds wait_queue_head_t power_sleep; 1441da177e4SLinus Torvalds #endif 1451da177e4SLinus Torvalds 1461da177e4SLinus Torvalds #if defined(CONFIG_SND_MIXER_OSS) || defined(CONFIG_SND_MIXER_OSS_MODULE) 147512bbd6aSTakashi Iwai struct snd_mixer_oss *mixer_oss; 1481da177e4SLinus Torvalds int mixer_oss_change_count; 1491da177e4SLinus Torvalds #endif 1501da177e4SLinus Torvalds }; 1511da177e4SLinus Torvalds 1521da177e4SLinus Torvalds #ifdef CONFIG_PM 153512bbd6aSTakashi Iwai static inline void snd_power_lock(struct snd_card *card) 1541da177e4SLinus Torvalds { 1551a60d4c5SIngo Molnar mutex_lock(&card->power_lock); 1561da177e4SLinus Torvalds } 1571da177e4SLinus Torvalds 158512bbd6aSTakashi Iwai static inline void snd_power_unlock(struct snd_card *card) 1591da177e4SLinus Torvalds { 1601a60d4c5SIngo Molnar mutex_unlock(&card->power_lock); 1611da177e4SLinus Torvalds } 1621da177e4SLinus Torvalds 163512bbd6aSTakashi Iwai static inline unsigned int snd_power_get_state(struct snd_card *card) 1641da177e4SLinus Torvalds { 1651da177e4SLinus Torvalds return card->power_state; 1661da177e4SLinus Torvalds } 1671da177e4SLinus Torvalds 168512bbd6aSTakashi Iwai static inline void snd_power_change_state(struct snd_card *card, unsigned int state) 1691da177e4SLinus Torvalds { 1701da177e4SLinus Torvalds card->power_state = state; 1711da177e4SLinus Torvalds wake_up(&card->power_sleep); 1721da177e4SLinus Torvalds } 173d5750f67SHenrik Kretzschmar 174d5750f67SHenrik Kretzschmar /* init.c */ 175cbac4b0cSTakashi Iwai int snd_power_wait(struct snd_card *card, unsigned int power_state); 176d5750f67SHenrik Kretzschmar 1771da177e4SLinus Torvalds #else /* ! CONFIG_PM */ 1781da177e4SLinus Torvalds 1791da177e4SLinus Torvalds #define snd_power_lock(card) do { (void)(card); } while (0) 1801da177e4SLinus Torvalds #define snd_power_unlock(card) do { (void)(card); } while (0) 1816fdb94bdSLinus Torvalds static inline int snd_power_wait(struct snd_card *card, unsigned int state) { return 0; } 1821da177e4SLinus Torvalds #define snd_power_get_state(card) SNDRV_CTL_POWER_D0 1831da177e4SLinus Torvalds #define snd_power_change_state(card, state) do { (void)(card); } while (0) 1841da177e4SLinus Torvalds 1851da177e4SLinus Torvalds #endif /* CONFIG_PM */ 1861da177e4SLinus Torvalds 187512bbd6aSTakashi Iwai struct snd_minor { 1882af677fcSClemens Ladisch int type; /* SNDRV_DEVICE_TYPE_XXX */ 1896983b724SClemens Ladisch int card; /* card number */ 1901da177e4SLinus Torvalds int device; /* device number */ 19199ac48f5SArjan van de Ven const struct file_operations *f_ops; /* file operations */ 192f87135f5SClemens Ladisch void *private_data; /* private data for f_ops->open */ 193d80f19faSGreg Kroah-Hartman struct device *dev; /* device for sysfs */ 1941da177e4SLinus Torvalds }; 1951da177e4SLinus Torvalds 1967d2aae1eSTakashi Iwai /* return a device pointer linked to each sound device as a parent */ 1977d2aae1eSTakashi Iwai static inline struct device *snd_card_get_device_link(struct snd_card *card) 1987d2aae1eSTakashi Iwai { 1997d2aae1eSTakashi Iwai #ifdef CONFIG_SYSFS_DEPRECATED 2007d2aae1eSTakashi Iwai return card ? card->dev : NULL; 2017d2aae1eSTakashi Iwai #else 2027d2aae1eSTakashi Iwai return card ? card->card_dev : NULL; 2037d2aae1eSTakashi Iwai #endif 2047d2aae1eSTakashi Iwai } 2057d2aae1eSTakashi Iwai 2061da177e4SLinus Torvalds /* sound.c */ 2071da177e4SLinus Torvalds 208f1902860SClemens Ladisch extern int snd_major; 2091da177e4SLinus Torvalds extern int snd_ecards_limit; 210d80f19faSGreg Kroah-Hartman extern struct class *sound_class; 2111da177e4SLinus Torvalds 2121da177e4SLinus Torvalds void snd_request_card(int card); 2131da177e4SLinus Torvalds 214*12b131c4SJohannes Berg int snd_register_device_for_dev(int type, struct snd_card *card, 215*12b131c4SJohannes Berg int dev, 216*12b131c4SJohannes Berg const struct file_operations *f_ops, 217*12b131c4SJohannes Berg void *private_data, 218*12b131c4SJohannes Berg const char *name, 219*12b131c4SJohannes Berg struct device *device); 220*12b131c4SJohannes Berg 221*12b131c4SJohannes Berg /** 222*12b131c4SJohannes Berg * snd_register_device - Register the ALSA device file for the card 223*12b131c4SJohannes Berg * @type: the device type, SNDRV_DEVICE_TYPE_XXX 224*12b131c4SJohannes Berg * @card: the card instance 225*12b131c4SJohannes Berg * @dev: the device index 226*12b131c4SJohannes Berg * @f_ops: the file operations 227*12b131c4SJohannes Berg * @private_data: user pointer for f_ops->open() 228*12b131c4SJohannes Berg * @name: the device file name 229*12b131c4SJohannes Berg * 230*12b131c4SJohannes Berg * Registers an ALSA device file for the given card. 231*12b131c4SJohannes Berg * The operators have to be set in reg parameter. 232*12b131c4SJohannes Berg * 233*12b131c4SJohannes Berg * This function uses the card's device pointer to link to the 234*12b131c4SJohannes Berg * correct &struct device. 235*12b131c4SJohannes Berg * 236*12b131c4SJohannes Berg * Returns zero if successful, or a negative error code on failure. 237*12b131c4SJohannes Berg */ 238*12b131c4SJohannes Berg static inline int snd_register_device(int type, struct snd_card *card, int dev, 239*12b131c4SJohannes Berg const struct file_operations *f_ops, 240*12b131c4SJohannes Berg void *private_data, 241*12b131c4SJohannes Berg const char *name) 242*12b131c4SJohannes Berg { 243*12b131c4SJohannes Berg return snd_register_device_for_dev(type, card, dev, f_ops, 244*12b131c4SJohannes Berg private_data, name, 245*12b131c4SJohannes Berg card ? card->dev : NULL); 246*12b131c4SJohannes Berg } 247*12b131c4SJohannes Berg 248512bbd6aSTakashi Iwai int snd_unregister_device(int type, struct snd_card *card, int dev); 249f87135f5SClemens Ladisch void *snd_lookup_minor_data(unsigned int minor, int type); 2509d19f48cSTakashi Iwai int snd_add_device_sysfs_file(int type, struct snd_card *card, int dev, 251d80f19faSGreg Kroah-Hartman struct device_attribute *attr); 2521da177e4SLinus Torvalds 2531da177e4SLinus Torvalds #ifdef CONFIG_SND_OSSEMUL 2542af677fcSClemens Ladisch int snd_register_oss_device(int type, struct snd_card *card, int dev, 25599ac48f5SArjan van de Ven const struct file_operations *f_ops, void *private_data, 256f87135f5SClemens Ladisch const char *name); 257512bbd6aSTakashi Iwai int snd_unregister_oss_device(int type, struct snd_card *card, int dev); 258f87135f5SClemens Ladisch void *snd_lookup_oss_minor_data(unsigned int minor, int type); 2591da177e4SLinus Torvalds #endif 2601da177e4SLinus Torvalds 2611da177e4SLinus Torvalds int snd_minor_info_init(void); 2621da177e4SLinus Torvalds int snd_minor_info_done(void); 2631da177e4SLinus Torvalds 2641da177e4SLinus Torvalds /* sound_oss.c */ 2651da177e4SLinus Torvalds 2661da177e4SLinus Torvalds #ifdef CONFIG_SND_OSSEMUL 2671da177e4SLinus Torvalds int snd_minor_info_oss_init(void); 2681da177e4SLinus Torvalds int snd_minor_info_oss_done(void); 2691da177e4SLinus Torvalds #else 2701da177e4SLinus Torvalds #define snd_minor_info_oss_init() /*NOP*/ 2711da177e4SLinus Torvalds #define snd_minor_info_oss_done() /*NOP*/ 2721da177e4SLinus Torvalds #endif 2731da177e4SLinus Torvalds 2741da177e4SLinus Torvalds /* memory.c */ 2751da177e4SLinus Torvalds 2761da177e4SLinus Torvalds int copy_to_user_fromio(void __user *dst, const volatile void __iomem *src, size_t count); 2771da177e4SLinus Torvalds int copy_from_user_toio(volatile void __iomem *dst, const void __user *src, size_t count); 2781da177e4SLinus Torvalds 2791da177e4SLinus Torvalds /* init.c */ 2801da177e4SLinus Torvalds 281512bbd6aSTakashi Iwai extern struct snd_card *snd_cards[SNDRV_CARDS]; 282746df948STakashi Iwai int snd_card_locked(int card); 2831da177e4SLinus Torvalds #if defined(CONFIG_SND_MIXER_OSS) || defined(CONFIG_SND_MIXER_OSS_MODULE) 2841da177e4SLinus Torvalds #define SND_MIXER_OSS_NOTIFY_REGISTER 0 2851da177e4SLinus Torvalds #define SND_MIXER_OSS_NOTIFY_DISCONNECT 1 2861da177e4SLinus Torvalds #define SND_MIXER_OSS_NOTIFY_FREE 2 287512bbd6aSTakashi Iwai extern int (*snd_mixer_oss_notify_callback)(struct snd_card *card, int cmd); 2881da177e4SLinus Torvalds #endif 2891da177e4SLinus Torvalds 290512bbd6aSTakashi Iwai struct snd_card *snd_card_new(int idx, const char *id, 2911da177e4SLinus Torvalds struct module *module, int extra_size); 292512bbd6aSTakashi Iwai int snd_card_disconnect(struct snd_card *card); 293512bbd6aSTakashi Iwai int snd_card_free(struct snd_card *card); 294c461482cSTakashi Iwai int snd_card_free_when_closed(struct snd_card *card); 295512bbd6aSTakashi Iwai int snd_card_register(struct snd_card *card); 2961da177e4SLinus Torvalds int snd_card_info_init(void); 2971da177e4SLinus Torvalds int snd_card_info_done(void); 298512bbd6aSTakashi Iwai int snd_component_add(struct snd_card *card, const char *component); 299512bbd6aSTakashi Iwai int snd_card_file_add(struct snd_card *card, struct file *file); 300512bbd6aSTakashi Iwai int snd_card_file_remove(struct snd_card *card, struct file *file); 3011da177e4SLinus Torvalds 3021da177e4SLinus Torvalds #ifndef snd_card_set_dev 3037d2aae1eSTakashi Iwai #define snd_card_set_dev(card,devptr) ((card)->dev = (devptr)) 3041da177e4SLinus Torvalds #endif 3051da177e4SLinus Torvalds 3061da177e4SLinus Torvalds /* device.c */ 3071da177e4SLinus Torvalds 308512bbd6aSTakashi Iwai int snd_device_new(struct snd_card *card, snd_device_type_t type, 309512bbd6aSTakashi Iwai void *device_data, struct snd_device_ops *ops); 310512bbd6aSTakashi Iwai int snd_device_register(struct snd_card *card, void *device_data); 311512bbd6aSTakashi Iwai int snd_device_register_all(struct snd_card *card); 312512bbd6aSTakashi Iwai int snd_device_disconnect(struct snd_card *card, void *device_data); 313512bbd6aSTakashi Iwai int snd_device_disconnect_all(struct snd_card *card); 314512bbd6aSTakashi Iwai int snd_device_free(struct snd_card *card, void *device_data); 315512bbd6aSTakashi Iwai int snd_device_free_all(struct snd_card *card, snd_device_cmd_t cmd); 3161da177e4SLinus Torvalds 3171da177e4SLinus Torvalds /* isadma.c */ 3181da177e4SLinus Torvalds 319276bd31cSAl Viro #ifdef CONFIG_ISA_DMA_API 3201da177e4SLinus Torvalds #define DMA_MODE_NO_ENABLE 0x0100 3211da177e4SLinus Torvalds 3221da177e4SLinus Torvalds void snd_dma_program(unsigned long dma, unsigned long addr, unsigned int size, unsigned short mode); 3231da177e4SLinus Torvalds void snd_dma_disable(unsigned long dma); 3241da177e4SLinus Torvalds unsigned int snd_dma_pointer(unsigned long dma, unsigned int size); 325276bd31cSAl Viro #endif 3261da177e4SLinus Torvalds 3271da177e4SLinus Torvalds /* misc.c */ 328b709e574STakashi Iwai struct resource; 329b1d5776dSTakashi Iwai void release_and_free_resource(struct resource *res); 3301da177e4SLinus Torvalds 3311da177e4SLinus Torvalds #ifdef CONFIG_SND_VERBOSE_PRINTK 3321da177e4SLinus Torvalds void snd_verbose_printk(const char *file, int line, const char *format, ...) 3331da177e4SLinus Torvalds __attribute__ ((format (printf, 3, 4))); 3341da177e4SLinus Torvalds #endif 3351da177e4SLinus Torvalds #if defined(CONFIG_SND_DEBUG) && defined(CONFIG_SND_VERBOSE_PRINTK) 3361da177e4SLinus Torvalds void snd_verbose_printd(const char *file, int line, const char *format, ...) 3371da177e4SLinus Torvalds __attribute__ ((format (printf, 3, 4))); 3381da177e4SLinus Torvalds #endif 3391da177e4SLinus Torvalds 3401da177e4SLinus Torvalds /* --- */ 3411da177e4SLinus Torvalds 3421da177e4SLinus Torvalds #ifdef CONFIG_SND_VERBOSE_PRINTK 3431da177e4SLinus Torvalds /** 3441da177e4SLinus Torvalds * snd_printk - printk wrapper 3451da177e4SLinus Torvalds * @fmt: format string 3461da177e4SLinus Torvalds * 3471da177e4SLinus Torvalds * Works like print() but prints the file and the line of the caller 3481da177e4SLinus Torvalds * when configured with CONFIG_SND_VERBOSE_PRINTK. 3491da177e4SLinus Torvalds */ 3501da177e4SLinus Torvalds #define snd_printk(fmt, args...) \ 3511da177e4SLinus Torvalds snd_verbose_printk(__FILE__, __LINE__, fmt ,##args) 3521da177e4SLinus Torvalds #else 3531da177e4SLinus Torvalds #define snd_printk(fmt, args...) \ 3541da177e4SLinus Torvalds printk(fmt ,##args) 3551da177e4SLinus Torvalds #endif 3561da177e4SLinus Torvalds 3571da177e4SLinus Torvalds #ifdef CONFIG_SND_DEBUG 3581da177e4SLinus Torvalds 3591da177e4SLinus Torvalds #define __ASTRING__(x) #x 3601da177e4SLinus Torvalds 3611da177e4SLinus Torvalds #ifdef CONFIG_SND_VERBOSE_PRINTK 3621da177e4SLinus Torvalds /** 3631da177e4SLinus Torvalds * snd_printd - debug printk 3640863afb3SMartin Waitz * @fmt: format string 3651da177e4SLinus Torvalds * 3661da177e4SLinus Torvalds * Compiled only when Works like snd_printk() for debugging purpose. 3671da177e4SLinus Torvalds * Ignored when CONFIG_SND_DEBUG is not set. 3681da177e4SLinus Torvalds */ 3691da177e4SLinus Torvalds #define snd_printd(fmt, args...) \ 3701da177e4SLinus Torvalds snd_verbose_printd(__FILE__, __LINE__, fmt ,##args) 3711da177e4SLinus Torvalds #else 3721da177e4SLinus Torvalds #define snd_printd(fmt, args...) \ 3731da177e4SLinus Torvalds printk(fmt ,##args) 3741da177e4SLinus Torvalds #endif 3751da177e4SLinus Torvalds /** 376d5750f67SHenrik Kretzschmar * snd_assert - run-time assertion macro 3771da177e4SLinus Torvalds * @expr: expression 3781da177e4SLinus Torvalds * 3791da177e4SLinus Torvalds * This macro checks the expression in run-time and invokes the commands 3801da177e4SLinus Torvalds * given in the rest arguments if the assertion is failed. 3811da177e4SLinus Torvalds * When CONFIG_SND_DEBUG is not set, the expression is executed but 3821da177e4SLinus Torvalds * not checked. 3831da177e4SLinus Torvalds */ 3841da177e4SLinus Torvalds #define snd_assert(expr, args...) do { \ 3851da177e4SLinus Torvalds if (unlikely(!(expr))) { \ 3867c22f1aaSTakashi Iwai snd_printk(KERN_ERR "BUG? (%s)\n", __ASTRING__(expr)); \ 3877c22f1aaSTakashi Iwai dump_stack(); \ 3881da177e4SLinus Torvalds args; \ 3891da177e4SLinus Torvalds } \ 3901da177e4SLinus Torvalds } while (0) 3917c22f1aaSTakashi Iwai 3927c22f1aaSTakashi Iwai #define snd_BUG() do { \ 3937c22f1aaSTakashi Iwai snd_printk(KERN_ERR "BUG?\n"); \ 3947c22f1aaSTakashi Iwai dump_stack(); \ 3951da177e4SLinus Torvalds } while (0) 3961da177e4SLinus Torvalds 3971da177e4SLinus Torvalds #else /* !CONFIG_SND_DEBUG */ 3981da177e4SLinus Torvalds 3991da177e4SLinus Torvalds #define snd_printd(fmt, args...) /* nothing */ 4001da177e4SLinus Torvalds #define snd_assert(expr, args...) (void)(expr) 4017c22f1aaSTakashi Iwai #define snd_BUG() /* nothing */ 4021da177e4SLinus Torvalds 4031da177e4SLinus Torvalds #endif /* CONFIG_SND_DEBUG */ 4041da177e4SLinus Torvalds 4051da177e4SLinus Torvalds #ifdef CONFIG_SND_DEBUG_DETECT 4061da177e4SLinus Torvalds /** 4071da177e4SLinus Torvalds * snd_printdd - debug printk 4081da177e4SLinus Torvalds * @format: format string 4091da177e4SLinus Torvalds * 4101da177e4SLinus Torvalds * Compiled only when Works like snd_printk() for debugging purpose. 4111da177e4SLinus Torvalds * Ignored when CONFIG_SND_DEBUG_DETECT is not set. 4121da177e4SLinus Torvalds */ 4131da177e4SLinus Torvalds #define snd_printdd(format, args...) snd_printk(format, ##args) 4141da177e4SLinus Torvalds #else 4151da177e4SLinus Torvalds #define snd_printdd(format, args...) /* nothing */ 4161da177e4SLinus Torvalds #endif 4171da177e4SLinus Torvalds 4181da177e4SLinus Torvalds 4191da177e4SLinus Torvalds #define SNDRV_OSS_VERSION ((3<<16)|(8<<8)|(1<<4)|(0)) /* 3.8.1a */ 4201da177e4SLinus Torvalds 4211da177e4SLinus Torvalds /* for easier backward-porting */ 4221da177e4SLinus Torvalds #if defined(CONFIG_GAMEPORT) || defined(CONFIG_GAMEPORT_MODULE) 4231da177e4SLinus Torvalds #ifndef gameport_set_dev_parent 4241da177e4SLinus Torvalds #define gameport_set_dev_parent(gp,xdev) ((gp)->dev.parent = (xdev)) 4251da177e4SLinus Torvalds #define gameport_set_port_data(gp,r) ((gp)->port_data = (r)) 4261da177e4SLinus Torvalds #define gameport_get_port_data(gp) (gp)->port_data 4271da177e4SLinus Torvalds #endif 4281da177e4SLinus Torvalds #endif 4291da177e4SLinus Torvalds 430512bbd6aSTakashi Iwai #include "typedefs.h" 431512bbd6aSTakashi Iwai 4321da177e4SLinus Torvalds #endif /* __SOUND_CORE_H */ 433