5 * Header file for info interface
6 * Copyright (c) by Jaroslav Kysela <perex@suse.cz>
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.
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.
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
25 #include <linux/poll.h>
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 */
37 #define SNDRV_INFO_CONTENT_TEXT 0
38 #define SNDRV_INFO_CONTENT_DATA 1
40 struct snd_info_entry
;
42 struct snd_info_entry_text
{
43 unsigned long read_size
;
44 unsigned long write_size
;
45 void (*read
) (struct snd_info_entry
*entry
, struct snd_info_buffer
*buffer
);
46 void (*write
) (struct snd_info_entry
*entry
, struct snd_info_buffer
*buffer
);
49 struct snd_info_entry_ops
{
50 int (*open
) (struct snd_info_entry
*entry
,
51 unsigned short mode
, void **file_private_data
);
52 int (*release
) (struct snd_info_entry
* entry
,
53 unsigned short mode
, void *file_private_data
);
54 long (*read
) (struct snd_info_entry
*entry
, void *file_private_data
,
55 struct file
* file
, char __user
*buf
,
56 unsigned long count
, unsigned long pos
);
57 long (*write
) (struct snd_info_entry
*entry
, void *file_private_data
,
58 struct file
* file
, const char __user
*buf
,
59 unsigned long count
, unsigned long pos
);
60 long long (*llseek
) (struct snd_info_entry
*entry
, void *file_private_data
,
61 struct file
* file
, long long offset
, int orig
);
62 unsigned int (*poll
) (struct snd_info_entry
*entry
, void *file_private_data
,
63 struct file
* file
, poll_table
* wait
);
64 int (*ioctl
) (struct snd_info_entry
*entry
, void *file_private_data
,
65 struct file
* file
, unsigned int cmd
, unsigned long arg
);
66 int (*mmap
) (struct snd_info_entry
*entry
, void *file_private_data
,
67 struct inode
* inode
, struct file
* file
,
68 struct vm_area_struct
* vma
);
71 struct snd_info_entry
{
75 unsigned short content
;
76 unsigned short disconnected
: 1;
78 struct snd_info_entry_text text
;
79 struct snd_info_entry_ops
*ops
;
81 struct snd_info_entry
*parent
;
82 struct snd_card
*card
;
83 struct module
*module
;
85 void (*private_free
)(struct snd_info_entry
*entry
);
86 struct proc_dir_entry
*p
;
90 #if defined(CONFIG_SND_OSSEMUL) && defined(CONFIG_PROC_FS)
91 int snd_info_minor_register(void);
92 int snd_info_minor_unregister(void);
94 #define snd_info_minor_register() /* NOP */
95 #define snd_info_minor_unregister() /* NOP */
101 extern struct snd_info_entry
*snd_seq_root
;
102 #ifdef CONFIG_SND_OSSEMUL
103 extern struct snd_info_entry
*snd_oss_root
;
105 #define snd_oss_root NULL
108 int snd_iprintf(struct snd_info_buffer
* buffer
, char *fmt
,...) __attribute__ ((format (printf
, 2, 3)));
109 int snd_info_init(void);
110 int snd_info_done(void);
112 int snd_info_get_line(struct snd_info_buffer
* buffer
, char *line
, int len
);
113 char *snd_info_get_str(char *dest
, char *src
, int len
);
114 struct snd_info_entry
*snd_info_create_module_entry(struct module
* module
,
116 struct snd_info_entry
* parent
);
117 struct snd_info_entry
*snd_info_create_card_entry(struct snd_card
* card
,
119 struct snd_info_entry
* parent
);
120 void snd_info_free_entry(struct snd_info_entry
* entry
);
121 int snd_info_store_text(struct snd_info_entry
* entry
);
122 int snd_info_restore_text(struct snd_info_entry
* entry
);
124 int snd_info_card_create(struct snd_card
* card
);
125 int snd_info_card_register(struct snd_card
* card
);
126 int snd_info_card_free(struct snd_card
* card
);
127 int snd_info_register(struct snd_info_entry
* entry
);
128 int snd_info_unregister(struct snd_info_entry
* entry
);
130 /* for card drivers */
131 int snd_card_proc_new(struct snd_card
*card
, const char *name
, struct snd_info_entry
**entryp
);
133 static inline void snd_info_set_text_ops(struct snd_info_entry
*entry
,
136 void (*read
)(struct snd_info_entry
*, struct snd_info_buffer
*))
138 entry
->private_data
= private_data
;
139 entry
->c
.text
.read_size
= read_size
;
140 entry
->c
.text
.read
= read
;
143 int snd_info_check_reserved_words(const char *str
);
147 #define snd_seq_root NULL
148 #define snd_oss_root NULL
150 static inline int snd_iprintf(struct snd_info_buffer
* buffer
, char *fmt
,...) { return 0; }
151 static inline int snd_info_init(void) { return 0; }
152 static inline int snd_info_done(void) { return 0; }
154 static inline int snd_info_get_line(struct snd_info_buffer
* buffer
, char *line
, int len
) { return 0; }
155 static inline char *snd_info_get_str(char *dest
, char *src
, int len
) { return NULL
; }
156 static inline struct snd_info_entry
*snd_info_create_module_entry(struct module
* module
, const char *name
, struct snd_info_entry
* parent
) { return NULL
; }
157 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
; }
158 static inline void snd_info_free_entry(struct snd_info_entry
* entry
) { ; }
160 static inline int snd_info_card_create(struct snd_card
* card
) { return 0; }
161 static inline int snd_info_card_register(struct snd_card
* card
) { return 0; }
162 static inline int snd_info_card_free(struct snd_card
* card
) { return 0; }
163 static inline int snd_info_register(struct snd_info_entry
* entry
) { return 0; }
164 static inline int snd_info_unregister(struct snd_info_entry
* entry
) { return 0; }
166 static inline int snd_card_proc_new(struct snd_card
*card
, const char *name
,
167 struct snd_info_entry
**entryp
) { return -EINVAL
; }
168 static inline void snd_info_set_text_ops(struct snd_info_entry
*entry
__attribute__((unused
)),
171 void (*read
)(struct snd_info_entry
*, struct snd_info_buffer
*)) {}
173 static inline int snd_info_check_reserved_words(const char *str
) { return 1; }
181 #if defined(CONFIG_SND_OSSEMUL) && defined(CONFIG_PROC_FS)
183 #define SNDRV_OSS_INFO_DEV_AUDIO 0
184 #define SNDRV_OSS_INFO_DEV_SYNTH 1
185 #define SNDRV_OSS_INFO_DEV_MIDI 2
186 #define SNDRV_OSS_INFO_DEV_TIMERS 4
187 #define SNDRV_OSS_INFO_DEV_MIXERS 5
189 #define SNDRV_OSS_INFO_DEV_COUNT 6
191 int snd_oss_info_register(int dev
, int num
, char *string
);
192 #define snd_oss_info_unregister(dev, num) snd_oss_info_register(dev, num, NULL)
194 #endif /* CONFIG_SND_OSSEMUL && CONFIG_PROC_FS */
196 #endif /* __SOUND_INFO_H */