patch-2_6_7-vs1_9_1_12
[linux-2.6.git] / include / sound / info.h
1 #ifndef __SOUND_INFO_H
2 #define __SOUND_INFO_H
3
4 /*
5  *  Header file for info interface
6  *  Copyright (c) by Jaroslav Kysela <perex@suse.cz>
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>
26
27 /* buffer for information */
28 struct snd_info_buffer {
29         char *buffer;           /* pointer to begin of buffer */
30         char *curr;             /* current position in buffer */
31         unsigned long size;     /* current size */
32         unsigned long len;      /* total length of buffer */
33         int stop;               /* stop flag */
34         int error;              /* error code */
35 };
36
37 typedef struct snd_info_buffer snd_info_buffer_t;
38
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 {
45         unsigned long read_size;
46         unsigned long write_size;
47         void (*read) (snd_info_entry_t *entry, snd_info_buffer_t * buffer);
48         void (*write) (snd_info_entry_t *entry, snd_info_buffer_t * buffer);
49 };
50
51 struct snd_info_entry_ops {
52         int (*open) (snd_info_entry_t *entry,
53                      unsigned short mode, void **file_private_data);
54         int (*release) (snd_info_entry_t * entry,
55                         unsigned short mode, void *file_private_data);
56         long (*read) (snd_info_entry_t *entry, void *file_private_data,
57                       struct file * file, char __user *buf, long count);
58         long (*write) (snd_info_entry_t *entry, void *file_private_data,
59                        struct file * file, const char __user *buf, long count);
60         long long (*llseek) (snd_info_entry_t *entry, void *file_private_data,
61                             struct file * file, long long offset, int orig);
62         unsigned int (*poll) (snd_info_entry_t *entry, void *file_private_data,
63                               struct file * file, poll_table * wait);
64         int (*ioctl) (snd_info_entry_t *entry, void *file_private_data,
65                       struct file * file, unsigned int cmd, unsigned long arg);
66         int (*mmap) (snd_info_entry_t *entry, void *file_private_data,
67                      struct inode * inode, struct file * file,
68                      struct vm_area_struct * vma);
69 };
70
71 struct snd_info_entry {
72         const char *name;
73         mode_t mode;
74         long size;
75         unsigned short content;
76         unsigned short disconnected: 1;
77         union {
78                 struct snd_info_entry_text text;
79                 struct snd_info_entry_ops *ops;
80         } c;
81         snd_info_entry_t *parent;
82         snd_card_t *card;
83         struct module *module;
84         void *private_data;
85         void (*private_free)(snd_info_entry_t *entry);
86         struct proc_dir_entry *p;
87         struct semaphore access;
88 };
89
90 extern int snd_info_check_reserved_words(const char *str);
91
92 #ifdef CONFIG_SND_OSSEMUL
93 extern int snd_info_minor_register(void);
94 extern int snd_info_minor_unregister(void);
95 #endif
96
97
98 #ifdef CONFIG_PROC_FS
99
100 extern snd_info_entry_t *snd_seq_root;
101 #ifdef CONFIG_SND_OSSEMUL
102 extern snd_info_entry_t *snd_oss_root;
103 #else
104 #define snd_oss_root NULL
105 #endif
106
107 int snd_iprintf(snd_info_buffer_t * buffer, char *fmt,...) __attribute__ ((format (printf, 2, 3)));
108 int snd_info_init(void);
109 int snd_info_done(void);
110
111 int snd_info_get_line(snd_info_buffer_t * buffer, char *line, int len);
112 char *snd_info_get_str(char *dest, char *src, int len);
113 snd_info_entry_t *snd_info_create_module_entry(struct module * module,
114                                                const char *name,
115                                                snd_info_entry_t * parent);
116 snd_info_entry_t *snd_info_create_card_entry(snd_card_t * card,
117                                              const char *name,
118                                              snd_info_entry_t * parent);
119 void snd_info_free_entry(snd_info_entry_t * entry);
120 int snd_info_store_text(snd_info_entry_t * entry);
121 int snd_info_restore_text(snd_info_entry_t * entry);
122
123 int snd_info_card_create(snd_card_t * card);
124 int snd_info_card_register(snd_card_t * card);
125 int snd_info_card_free(snd_card_t * card);
126 int snd_info_register(snd_info_entry_t * entry);
127 int snd_info_unregister(snd_info_entry_t * entry);
128
129 struct proc_dir_entry *snd_create_proc_entry(const char *name, mode_t mode,
130                                              struct proc_dir_entry *parent);
131 void snd_remove_proc_entry(struct proc_dir_entry *parent,
132                            struct proc_dir_entry *de);
133
134 /* for card drivers */
135 int snd_card_proc_new(snd_card_t *card, const char *name, snd_info_entry_t **entryp);
136
137 static inline void snd_info_set_text_ops(snd_info_entry_t *entry, 
138                                          void *private_data,
139                                          long read_size,
140                                          void (*read)(snd_info_entry_t *, snd_info_buffer_t *))
141 {
142         entry->private_data = private_data;
143         entry->c.text.read_size = read_size;
144         entry->c.text.read = read;
145 }
146
147
148 #else
149
150 #define snd_seq_root NULL
151 #define snd_oss_root NULL
152
153 static inline int snd_iprintf(snd_info_buffer_t * buffer, char *fmt,...) { return 0; }
154 static inline int snd_info_init(void) { return 0; }
155 static inline int snd_info_done(void) { return 0; }
156
157 static inline int snd_info_get_line(snd_info_buffer_t * buffer, char *line, int len) { return 0; }
158 static inline char *snd_info_get_str(char *dest, char *src, int len) { return NULL; }
159 static inline snd_info_entry_t *snd_info_create_module_entry(struct module * module, const char *name, snd_info_entry_t * parent) { return NULL; }
160 static inline snd_info_entry_t *snd_info_create_card_entry(snd_card_t * card, const char *name, snd_info_entry_t * parent) { return NULL; }
161 static inline void snd_info_free_entry(snd_info_entry_t * entry) { ; }
162
163 static inline int snd_info_card_create(snd_card_t * card) { return 0; }
164 static inline int snd_info_card_register(snd_card_t * card) { return 0; }
165 static inline int snd_info_card_free(snd_card_t * card) { return 0; }
166 static inline int snd_info_register(snd_info_entry_t * entry) { return 0; }
167 static inline int snd_info_unregister(snd_info_entry_t * entry) { return 0; }
168
169 static inline struct proc_dir_entry *snd_create_proc_entry(const char *name, mode_t mode, struct proc_dir_entry *parent) { return NULL; }
170 static inline void snd_remove_proc_entry(struct proc_dir_entry *parent,
171                                          struct proc_dir_entry *de) { ; }
172
173 #define snd_card_proc_new(card,name,entryp)  0 /* always success */
174 #define snd_info_set_text_ops(entry,private_data,read_size,read) /*NOP*/
175
176 #endif
177
178 /*
179  * OSS info part
180  */
181
182 #if defined(CONFIG_SND_OSSEMUL) && defined(CONFIG_PROC_FS)
183
184 #define SNDRV_OSS_INFO_DEV_AUDIO        0
185 #define SNDRV_OSS_INFO_DEV_SYNTH        1
186 #define SNDRV_OSS_INFO_DEV_MIDI         2
187 #define SNDRV_OSS_INFO_DEV_TIMERS       4
188 #define SNDRV_OSS_INFO_DEV_MIXERS       5
189
190 #define SNDRV_OSS_INFO_DEV_COUNT        6
191
192 extern int snd_oss_info_register(int dev, int num, char *string);
193 #define snd_oss_info_unregister(dev, num) snd_oss_info_register(dev, num, NULL)
194
195 #endif /* CONFIG_SND_OSSEMUL && CONFIG_PROC_FS */
196
197 #endif /* __SOUND_INFO_H */