blob: 8ae72e74f898714979e6d1f6d79ae32dd683343a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef __SOUND_INFO_H
2#define __SOUND_INFO_H
3
4/*
5 * Header file for info interface
Jaroslav Kyselac1017a42007-10-15 09:50:19 +02006 * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
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>
26
27/* buffer for information */
28struct snd_info_buffer {
29 char *buffer; /* pointer to begin of buffer */
Takashi Iwai7e4eeec2006-04-28 15:13:40 +020030 unsigned int curr; /* current position in buffer */
31 unsigned int size; /* current size */
32 unsigned int len; /* total length of buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 int stop; /* stop flag */
34 int error; /* error code */
35};
36
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#define SNDRV_INFO_CONTENT_TEXT 0
38#define SNDRV_INFO_CONTENT_DATA 1
39
40struct snd_info_entry;
41
42struct snd_info_entry_text {
Takashi Iwai24c1f932005-11-17 13:58:48 +010043 void (*read) (struct snd_info_entry *entry, struct snd_info_buffer *buffer);
44 void (*write) (struct snd_info_entry *entry, struct snd_info_buffer *buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070045};
46
47struct snd_info_entry_ops {
Takashi Iwai24c1f932005-11-17 13:58:48 +010048 int (*open) (struct snd_info_entry *entry,
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 unsigned short mode, void **file_private_data);
Takashi Iwai24c1f932005-11-17 13:58:48 +010050 int (*release) (struct snd_info_entry * entry,
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 unsigned short mode, void *file_private_data);
Takashi Iwai24c1f932005-11-17 13:58:48 +010052 long (*read) (struct snd_info_entry *entry, void *file_private_data,
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 struct file * file, char __user *buf,
54 unsigned long count, unsigned long pos);
Takashi Iwai24c1f932005-11-17 13:58:48 +010055 long (*write) (struct snd_info_entry *entry, void *file_private_data,
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 struct file * file, const char __user *buf,
57 unsigned long count, unsigned long pos);
Takashi Iwai24c1f932005-11-17 13:58:48 +010058 long long (*llseek) (struct snd_info_entry *entry, void *file_private_data,
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 struct file * file, long long offset, int orig);
Takashi Iwai24c1f932005-11-17 13:58:48 +010060 unsigned int (*poll) (struct snd_info_entry *entry, void *file_private_data,
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 struct file * file, poll_table * wait);
Takashi Iwai24c1f932005-11-17 13:58:48 +010062 int (*ioctl) (struct snd_info_entry *entry, void *file_private_data,
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 struct file * file, unsigned int cmd, unsigned long arg);
Takashi Iwai24c1f932005-11-17 13:58:48 +010064 int (*mmap) (struct snd_info_entry *entry, void *file_private_data,
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 struct inode * inode, struct file * file,
66 struct vm_area_struct * vma);
67};
68
69struct snd_info_entry {
70 const char *name;
71 mode_t mode;
72 long size;
73 unsigned short content;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 union {
75 struct snd_info_entry_text text;
76 struct snd_info_entry_ops *ops;
77 } c;
Takashi Iwai24c1f932005-11-17 13:58:48 +010078 struct snd_info_entry *parent;
79 struct snd_card *card;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 struct module *module;
81 void *private_data;
Takashi Iwai24c1f932005-11-17 13:58:48 +010082 void (*private_free)(struct snd_info_entry *entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 struct proc_dir_entry *p;
Ingo Molnar1a60d4c2006-01-16 16:29:08 +010084 struct mutex access;
Takashi Iwai746d4a02006-06-23 14:37:59 +020085 struct list_head children;
86 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087};
88
Linus Torvalds1da177e2005-04-16 15:20:36 -070089#if defined(CONFIG_SND_OSSEMUL) && defined(CONFIG_PROC_FS)
Takashi Iwai24c1f932005-11-17 13:58:48 +010090int snd_info_minor_register(void);
91int snd_info_minor_unregister(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092#else
93#define snd_info_minor_register() /* NOP */
94#define snd_info_minor_unregister() /* NOP */
95#endif
96
97
98#ifdef CONFIG_PROC_FS
99
Takashi Iwai24c1f932005-11-17 13:58:48 +0100100extern struct snd_info_entry *snd_seq_root;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101#ifdef CONFIG_SND_OSSEMUL
Takashi Iwai24c1f932005-11-17 13:58:48 +0100102extern struct snd_info_entry *snd_oss_root;
Marcin Ślusarz36b9cdf2007-12-14 12:58:45 +0100103void snd_card_info_read_oss(struct snd_info_buffer *buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104#else
105#define snd_oss_root NULL
Marcin Ślusarz36b9cdf2007-12-14 12:58:45 +0100106static inline void snd_card_info_read_oss(struct snd_info_buffer *buffer) {}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107#endif
108
Takashi Iwai24c1f932005-11-17 13:58:48 +0100109int snd_iprintf(struct snd_info_buffer * buffer, char *fmt,...) __attribute__ ((format (printf, 2, 3)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110int snd_info_init(void);
111int snd_info_done(void);
112
Takashi Iwai24c1f932005-11-17 13:58:48 +0100113int snd_info_get_line(struct snd_info_buffer * buffer, char *line, int len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114char *snd_info_get_str(char *dest, char *src, int len);
Takashi Iwai24c1f932005-11-17 13:58:48 +0100115struct snd_info_entry *snd_info_create_module_entry(struct module * module,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 const char *name,
Takashi Iwai24c1f932005-11-17 13:58:48 +0100117 struct snd_info_entry * parent);
118struct snd_info_entry *snd_info_create_card_entry(struct snd_card * card,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 const char *name,
Takashi Iwai24c1f932005-11-17 13:58:48 +0100120 struct snd_info_entry * parent);
121void snd_info_free_entry(struct snd_info_entry * entry);
122int snd_info_store_text(struct snd_info_entry * entry);
123int snd_info_restore_text(struct snd_info_entry * entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Takashi Iwai24c1f932005-11-17 13:58:48 +0100125int snd_info_card_create(struct snd_card * card);
126int snd_info_card_register(struct snd_card * card);
127int snd_info_card_free(struct snd_card * card);
Takashi Iwai746d4a02006-06-23 14:37:59 +0200128void snd_info_card_disconnect(struct snd_card * card);
Takashi Iwai24c1f932005-11-17 13:58:48 +0100129int snd_info_register(struct snd_info_entry * entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
131/* for card drivers */
Takashi Iwai24c1f932005-11-17 13:58:48 +0100132int snd_card_proc_new(struct snd_card *card, const char *name, struct snd_info_entry **entryp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Takashi Iwai24c1f932005-11-17 13:58:48 +0100134static inline void snd_info_set_text_ops(struct snd_info_entry *entry,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 void *private_data,
Takashi Iwai24c1f932005-11-17 13:58:48 +0100136 void (*read)(struct snd_info_entry *, struct snd_info_buffer *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137{
138 entry->private_data = private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 entry->c.text.read = read;
140}
141
Takashi Iwaie28563c2005-12-01 10:42:42 +0100142int snd_info_check_reserved_words(const char *str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
144#else
145
146#define snd_seq_root NULL
147#define snd_oss_root NULL
148
Takashi Iwai24c1f932005-11-17 13:58:48 +0100149static inline int snd_iprintf(struct snd_info_buffer * buffer, char *fmt,...) { return 0; }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150static inline int snd_info_init(void) { return 0; }
151static inline int snd_info_done(void) { return 0; }
152
Takashi Iwai24c1f932005-11-17 13:58:48 +0100153static inline int snd_info_get_line(struct snd_info_buffer * buffer, char *line, int len) { return 0; }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154static inline char *snd_info_get_str(char *dest, char *src, int len) { return NULL; }
Takashi Iwai24c1f932005-11-17 13:58:48 +0100155static inline struct snd_info_entry *snd_info_create_module_entry(struct module * module, const char *name, struct snd_info_entry * parent) { return NULL; }
156static inline struct snd_info_entry *snd_info_create_card_entry(struct snd_card * card, const char *name, struct snd_info_entry * parent) { return NULL; }
157static inline void snd_info_free_entry(struct snd_info_entry * entry) { ; }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
Takashi Iwai24c1f932005-11-17 13:58:48 +0100159static inline int snd_info_card_create(struct snd_card * card) { return 0; }
160static inline int snd_info_card_register(struct snd_card * card) { return 0; }
161static inline int snd_info_card_free(struct snd_card * card) { return 0; }
Takashi Iwai746d4a02006-06-23 14:37:59 +0200162static inline void snd_info_card_disconnect(struct snd_card * card) { }
Takashi Iwai24c1f932005-11-17 13:58:48 +0100163static inline int snd_info_register(struct snd_info_entry * entry) { return 0; }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Takashi Iwaie28563c2005-12-01 10:42:42 +0100165static inline int snd_card_proc_new(struct snd_card *card, const char *name,
166 struct snd_info_entry **entryp) { return -EINVAL; }
167static inline void snd_info_set_text_ops(struct snd_info_entry *entry __attribute__((unused)),
168 void *private_data,
Takashi Iwaie28563c2005-12-01 10:42:42 +0100169 void (*read)(struct snd_info_entry *, struct snd_info_buffer *)) {}
170
171static inline int snd_info_check_reserved_words(const char *str) { return 1; }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
173#endif
174
175/*
176 * OSS info part
177 */
178
179#if defined(CONFIG_SND_OSSEMUL) && defined(CONFIG_PROC_FS)
180
181#define SNDRV_OSS_INFO_DEV_AUDIO 0
182#define SNDRV_OSS_INFO_DEV_SYNTH 1
183#define SNDRV_OSS_INFO_DEV_MIDI 2
184#define SNDRV_OSS_INFO_DEV_TIMERS 4
185#define SNDRV_OSS_INFO_DEV_MIXERS 5
186
187#define SNDRV_OSS_INFO_DEV_COUNT 6
188
Takashi Iwai24c1f932005-11-17 13:58:48 +0100189int snd_oss_info_register(int dev, int num, char *string);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190#define snd_oss_info_unregister(dev, num) snd_oss_info_register(dev, num, NULL)
191
192#endif /* CONFIG_SND_OSSEMUL && CONFIG_PROC_FS */
193
194#endif /* __SOUND_INFO_H */