Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef __SOUND_INFO_H |
| 2 | #define __SOUND_INFO_H |
| 3 | |
| 4 | /* |
| 5 | * Header file for info interface |
Jaroslav Kysela | c1017a4 | 2007-10-15 09:50:19 +0200 | [diff] [blame] | 6 | * Copyright (c) by Jaroslav Kysela <perex@perex.cz> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * |
| 8 | * |
| 9 | * This program is free software; you can redistribute it and/or modify |
| 10 | * it under the terms of the GNU General Public License as published by |
| 11 | * the Free Software Foundation; either version 2 of the License, or |
| 12 | * (at your option) any later version. |
| 13 | * |
| 14 | * This program is distributed in the hope that it will be useful, |
| 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 17 | * GNU General Public License for more details. |
| 18 | * |
| 19 | * You should have received a copy of the GNU General Public License |
| 20 | * along with this program; if not, write to the Free Software |
| 21 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 22 | * |
| 23 | */ |
| 24 | |
| 25 | #include <linux/poll.h> |
Takashi Iwai | 4adb7bc | 2015-04-22 16:10:22 +0200 | [diff] [blame] | 26 | #include <linux/seq_file.h> |
Takashi Iwai | c560a67 | 2015-04-22 18:26:38 +0200 | [diff] [blame] | 27 | #include <sound/core.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | |
| 29 | /* buffer for information */ |
| 30 | struct snd_info_buffer { |
| 31 | char *buffer; /* pointer to begin of buffer */ |
Takashi Iwai | 7e4eeec | 2006-04-28 15:13:40 +0200 | [diff] [blame] | 32 | unsigned int curr; /* current position in buffer */ |
| 33 | unsigned int size; /* current size */ |
| 34 | unsigned int len; /* total length of buffer */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | int stop; /* stop flag */ |
| 36 | int error; /* error code */ |
| 37 | }; |
| 38 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | #define SNDRV_INFO_CONTENT_TEXT 0 |
| 40 | #define SNDRV_INFO_CONTENT_DATA 1 |
| 41 | |
| 42 | struct snd_info_entry; |
| 43 | |
| 44 | struct snd_info_entry_text { |
Jaroslav Kysela | fd64138 | 2008-11-12 16:53:47 +0100 | [diff] [blame] | 45 | void (*read)(struct snd_info_entry *entry, |
| 46 | struct snd_info_buffer *buffer); |
| 47 | void (*write)(struct snd_info_entry *entry, |
| 48 | struct snd_info_buffer *buffer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | }; |
| 50 | |
| 51 | struct snd_info_entry_ops { |
Jaroslav Kysela | fd64138 | 2008-11-12 16:53:47 +0100 | [diff] [blame] | 52 | int (*open)(struct snd_info_entry *entry, |
| 53 | unsigned short mode, void **file_private_data); |
| 54 | int (*release)(struct snd_info_entry *entry, |
| 55 | unsigned short mode, void *file_private_data); |
Takashi Iwai | 24e4a12 | 2010-04-13 11:22:01 +0200 | [diff] [blame] | 56 | ssize_t (*read)(struct snd_info_entry *entry, void *file_private_data, |
| 57 | struct file *file, char __user *buf, |
| 58 | size_t count, loff_t pos); |
| 59 | ssize_t (*write)(struct snd_info_entry *entry, void *file_private_data, |
| 60 | struct file *file, const char __user *buf, |
| 61 | size_t count, loff_t pos); |
| 62 | loff_t (*llseek)(struct snd_info_entry *entry, |
| 63 | void *file_private_data, struct file *file, |
| 64 | loff_t offset, int orig); |
| 65 | unsigned int (*poll)(struct snd_info_entry *entry, |
| 66 | void *file_private_data, struct file *file, |
| 67 | poll_table *wait); |
Jaroslav Kysela | fd64138 | 2008-11-12 16:53:47 +0100 | [diff] [blame] | 68 | int (*ioctl)(struct snd_info_entry *entry, void *file_private_data, |
| 69 | struct file *file, unsigned int cmd, unsigned long arg); |
| 70 | int (*mmap)(struct snd_info_entry *entry, void *file_private_data, |
| 71 | struct inode *inode, struct file *file, |
| 72 | struct vm_area_struct *vma); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | }; |
| 74 | |
| 75 | struct snd_info_entry { |
| 76 | const char *name; |
Al Viro | d161a13 | 2011-07-24 03:36:29 -0400 | [diff] [blame] | 77 | umode_t mode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | long size; |
| 79 | unsigned short content; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | union { |
| 81 | struct snd_info_entry_text text; |
| 82 | struct snd_info_entry_ops *ops; |
| 83 | } c; |
Takashi Iwai | 24c1f93 | 2005-11-17 13:58:48 +0100 | [diff] [blame] | 84 | struct snd_info_entry *parent; |
| 85 | struct snd_card *card; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | struct module *module; |
| 87 | void *private_data; |
Takashi Iwai | 24c1f93 | 2005-11-17 13:58:48 +0100 | [diff] [blame] | 88 | void (*private_free)(struct snd_info_entry *entry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | struct proc_dir_entry *p; |
Ingo Molnar | 1a60d4c | 2006-01-16 16:29:08 +0100 | [diff] [blame] | 90 | struct mutex access; |
Takashi Iwai | 746d4a0 | 2006-06-23 14:37:59 +0200 | [diff] [blame] | 91 | struct list_head children; |
| 92 | struct list_head list; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | }; |
| 94 | |
Jie Yang | cd6a650 | 2015-05-27 19:45:45 +0800 | [diff] [blame] | 95 | #if defined(CONFIG_SND_OSSEMUL) && defined(CONFIG_SND_PROC_FS) |
Takashi Iwai | 24c1f93 | 2005-11-17 13:58:48 +0100 | [diff] [blame] | 96 | int snd_info_minor_register(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | #else |
Takashi Iwai | a0dca82 | 2015-04-23 10:56:21 +0200 | [diff] [blame] | 98 | #define snd_info_minor_register() 0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | #endif |
| 100 | |
| 101 | |
Jie Yang | cd6a650 | 2015-05-27 19:45:45 +0800 | [diff] [blame] | 102 | #ifdef CONFIG_SND_PROC_FS |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | |
Takashi Iwai | 24c1f93 | 2005-11-17 13:58:48 +0100 | [diff] [blame] | 104 | extern struct snd_info_entry *snd_seq_root; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | #ifdef CONFIG_SND_OSSEMUL |
Takashi Iwai | 24c1f93 | 2005-11-17 13:58:48 +0100 | [diff] [blame] | 106 | extern struct snd_info_entry *snd_oss_root; |
Marcin Ślusarz | 36b9cdf | 2007-12-14 12:58:45 +0100 | [diff] [blame] | 107 | void snd_card_info_read_oss(struct snd_info_buffer *buffer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | #else |
| 109 | #define snd_oss_root NULL |
Marcin Ślusarz | 36b9cdf | 2007-12-14 12:58:45 +0100 | [diff] [blame] | 110 | static inline void snd_card_info_read_oss(struct snd_info_buffer *buffer) {} |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | #endif |
| 112 | |
Takashi Iwai | 4adb7bc | 2015-04-22 16:10:22 +0200 | [diff] [blame] | 113 | /** |
| 114 | * snd_iprintf - printf on the procfs buffer |
| 115 | * @buf: the procfs buffer |
| 116 | * @fmt: the printf format |
| 117 | * |
| 118 | * Outputs the string on the procfs buffer just like printf(). |
| 119 | * |
| 120 | * Return: zero for success, or a negative error code. |
| 121 | */ |
| 122 | #define snd_iprintf(buf, fmt, args...) \ |
| 123 | seq_printf((struct seq_file *)(buf)->buffer, fmt, ##args) |
| 124 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | int snd_info_init(void); |
| 126 | int snd_info_done(void); |
| 127 | |
Jaroslav Kysela | fd64138 | 2008-11-12 16:53:47 +0100 | [diff] [blame] | 128 | int snd_info_get_line(struct snd_info_buffer *buffer, char *line, int len); |
Takashi Iwai | 4f7454a | 2009-09-08 14:29:58 +0200 | [diff] [blame] | 129 | const char *snd_info_get_str(char *dest, const char *src, int len); |
Jaroslav Kysela | fd64138 | 2008-11-12 16:53:47 +0100 | [diff] [blame] | 130 | struct snd_info_entry *snd_info_create_module_entry(struct module *module, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | const char *name, |
Jaroslav Kysela | fd64138 | 2008-11-12 16:53:47 +0100 | [diff] [blame] | 132 | struct snd_info_entry *parent); |
| 133 | struct snd_info_entry *snd_info_create_card_entry(struct snd_card *card, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | const char *name, |
Jaroslav Kysela | fd64138 | 2008-11-12 16:53:47 +0100 | [diff] [blame] | 135 | struct snd_info_entry *parent); |
| 136 | void snd_info_free_entry(struct snd_info_entry *entry); |
| 137 | int snd_info_store_text(struct snd_info_entry *entry); |
| 138 | int snd_info_restore_text(struct snd_info_entry *entry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | |
Jaroslav Kysela | fd64138 | 2008-11-12 16:53:47 +0100 | [diff] [blame] | 140 | int snd_info_card_create(struct snd_card *card); |
| 141 | int snd_info_card_register(struct snd_card *card); |
| 142 | int snd_info_card_free(struct snd_card *card); |
| 143 | void snd_info_card_disconnect(struct snd_card *card); |
| 144 | void snd_info_card_id_change(struct snd_card *card); |
| 145 | int snd_info_register(struct snd_info_entry *entry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | |
| 147 | /* for card drivers */ |
Takashi Iwai | c560a67 | 2015-04-22 18:26:38 +0200 | [diff] [blame] | 148 | static inline int snd_card_proc_new(struct snd_card *card, const char *name, |
| 149 | struct snd_info_entry **entryp) |
| 150 | { |
| 151 | *entryp = snd_info_create_card_entry(card, name, card->proc_root); |
| 152 | return *entryp ? 0 : -ENOMEM; |
| 153 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | |
Takashi Iwai | 24c1f93 | 2005-11-17 13:58:48 +0100 | [diff] [blame] | 155 | static inline void snd_info_set_text_ops(struct snd_info_entry *entry, |
Jaroslav Kysela | fd64138 | 2008-11-12 16:53:47 +0100 | [diff] [blame] | 156 | void *private_data, |
| 157 | void (*read)(struct snd_info_entry *, struct snd_info_buffer *)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | { |
| 159 | entry->private_data = private_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | entry->c.text.read = read; |
| 161 | } |
| 162 | |
Takashi Iwai | e28563c | 2005-12-01 10:42:42 +0100 | [diff] [blame] | 163 | int snd_info_check_reserved_words(const char *str); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | |
| 165 | #else |
| 166 | |
| 167 | #define snd_seq_root NULL |
| 168 | #define snd_oss_root NULL |
| 169 | |
Jaroslav Kysela | fd64138 | 2008-11-12 16:53:47 +0100 | [diff] [blame] | 170 | static inline int snd_iprintf(struct snd_info_buffer *buffer, char *fmt, ...) { return 0; } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | static inline int snd_info_init(void) { return 0; } |
| 172 | static inline int snd_info_done(void) { return 0; } |
| 173 | |
Jaroslav Kysela | fd64138 | 2008-11-12 16:53:47 +0100 | [diff] [blame] | 174 | static inline int snd_info_get_line(struct snd_info_buffer *buffer, char *line, int len) { return 0; } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | static inline char *snd_info_get_str(char *dest, char *src, int len) { return NULL; } |
Jaroslav Kysela | fd64138 | 2008-11-12 16:53:47 +0100 | [diff] [blame] | 176 | static inline struct snd_info_entry *snd_info_create_module_entry(struct module *module, const char *name, struct snd_info_entry *parent) { return NULL; } |
| 177 | static inline struct snd_info_entry *snd_info_create_card_entry(struct snd_card *card, const char *name, struct snd_info_entry *parent) { return NULL; } |
| 178 | static inline void snd_info_free_entry(struct snd_info_entry *entry) { ; } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | |
Jaroslav Kysela | fd64138 | 2008-11-12 16:53:47 +0100 | [diff] [blame] | 180 | static inline int snd_info_card_create(struct snd_card *card) { return 0; } |
| 181 | static inline int snd_info_card_register(struct snd_card *card) { return 0; } |
| 182 | static inline int snd_info_card_free(struct snd_card *card) { return 0; } |
| 183 | static inline void snd_info_card_disconnect(struct snd_card *card) { } |
| 184 | static inline void snd_info_card_id_change(struct snd_card *card) { } |
| 185 | static inline int snd_info_register(struct snd_info_entry *entry) { return 0; } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | |
Takashi Iwai | e28563c | 2005-12-01 10:42:42 +0100 | [diff] [blame] | 187 | static inline int snd_card_proc_new(struct snd_card *card, const char *name, |
| 188 | struct snd_info_entry **entryp) { return -EINVAL; } |
| 189 | static inline void snd_info_set_text_ops(struct snd_info_entry *entry __attribute__((unused)), |
| 190 | void *private_data, |
Takashi Iwai | e28563c | 2005-12-01 10:42:42 +0100 | [diff] [blame] | 191 | void (*read)(struct snd_info_entry *, struct snd_info_buffer *)) {} |
Takashi Iwai | e28563c | 2005-12-01 10:42:42 +0100 | [diff] [blame] | 192 | static inline int snd_info_check_reserved_words(const char *str) { return 1; } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | |
| 194 | #endif |
| 195 | |
| 196 | /* |
| 197 | * OSS info part |
| 198 | */ |
| 199 | |
Jie Yang | cd6a650 | 2015-05-27 19:45:45 +0800 | [diff] [blame] | 200 | #if defined(CONFIG_SND_OSSEMUL) && defined(CONFIG_SND_PROC_FS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | |
| 202 | #define SNDRV_OSS_INFO_DEV_AUDIO 0 |
| 203 | #define SNDRV_OSS_INFO_DEV_SYNTH 1 |
| 204 | #define SNDRV_OSS_INFO_DEV_MIDI 2 |
| 205 | #define SNDRV_OSS_INFO_DEV_TIMERS 4 |
| 206 | #define SNDRV_OSS_INFO_DEV_MIXERS 5 |
| 207 | |
| 208 | #define SNDRV_OSS_INFO_DEV_COUNT 6 |
| 209 | |
Takashi Iwai | 24c1f93 | 2005-11-17 13:58:48 +0100 | [diff] [blame] | 210 | int snd_oss_info_register(int dev, int num, char *string); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | #define snd_oss_info_unregister(dev, num) snd_oss_info_register(dev, num, NULL) |
| 212 | |
Jie Yang | cd6a650 | 2015-05-27 19:45:45 +0800 | [diff] [blame] | 213 | #endif /* CONFIG_SND_OSSEMUL && CONFIG_SND_PROC_FS */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | |
| 215 | #endif /* __SOUND_INFO_H */ |