blob: 7c13bf52cc8111ccfb9ed8a3dcd3bb8ea6289ae4 [file] [log] [blame]
Thomas Gleixner1a59d1b82019-05-27 08:55:05 +02001/* SPDX-License-Identifier: GPL-2.0-or-later */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002#ifndef __SOUND_INFO_H
3#define __SOUND_INFO_H
4
5/*
6 * Header file for info interface
Jaroslav Kyselac1017a42007-10-15 09:50:19 +02007 * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 */
9
10#include <linux/poll.h>
Takashi Iwai4adb7bc2015-04-22 16:10:22 +020011#include <linux/seq_file.h>
Takashi Iwaic560a672015-04-22 18:26:38 +020012#include <sound/core.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013
14/* buffer for information */
15struct snd_info_buffer {
16 char *buffer; /* pointer to begin of buffer */
Takashi Iwai7e4eeec2006-04-28 15:13:40 +020017 unsigned int curr; /* current position in buffer */
18 unsigned int size; /* current size */
19 unsigned int len; /* total length of buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 int stop; /* stop flag */
21 int error; /* error code */
22};
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#define SNDRV_INFO_CONTENT_TEXT 0
25#define SNDRV_INFO_CONTENT_DATA 1
26
27struct snd_info_entry;
28
29struct snd_info_entry_text {
Jaroslav Kyselafd641382008-11-12 16:53:47 +010030 void (*read)(struct snd_info_entry *entry,
31 struct snd_info_buffer *buffer);
32 void (*write)(struct snd_info_entry *entry,
33 struct snd_info_buffer *buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070034};
35
36struct snd_info_entry_ops {
Jaroslav Kyselafd641382008-11-12 16:53:47 +010037 int (*open)(struct snd_info_entry *entry,
38 unsigned short mode, void **file_private_data);
39 int (*release)(struct snd_info_entry *entry,
40 unsigned short mode, void *file_private_data);
Takashi Iwai24e4a122010-04-13 11:22:01 +020041 ssize_t (*read)(struct snd_info_entry *entry, void *file_private_data,
42 struct file *file, char __user *buf,
43 size_t count, loff_t pos);
44 ssize_t (*write)(struct snd_info_entry *entry, void *file_private_data,
45 struct file *file, const char __user *buf,
46 size_t count, loff_t pos);
47 loff_t (*llseek)(struct snd_info_entry *entry,
48 void *file_private_data, struct file *file,
49 loff_t offset, int orig);
Al Viroa3f86832017-07-02 22:22:01 -040050 __poll_t (*poll)(struct snd_info_entry *entry,
Takashi Iwai24e4a122010-04-13 11:22:01 +020051 void *file_private_data, struct file *file,
52 poll_table *wait);
Jaroslav Kyselafd641382008-11-12 16:53:47 +010053 int (*ioctl)(struct snd_info_entry *entry, void *file_private_data,
54 struct file *file, unsigned int cmd, unsigned long arg);
55 int (*mmap)(struct snd_info_entry *entry, void *file_private_data,
56 struct inode *inode, struct file *file,
57 struct vm_area_struct *vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058};
59
60struct snd_info_entry {
61 const char *name;
Al Virod161a132011-07-24 03:36:29 -040062 umode_t mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 long size;
64 unsigned short content;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 union {
66 struct snd_info_entry_text text;
Takashi Iwaid25ff262020-01-03 09:16:44 +010067 const struct snd_info_entry_ops *ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 } c;
Takashi Iwai24c1f932005-11-17 13:58:48 +010069 struct snd_info_entry *parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 struct module *module;
71 void *private_data;
Takashi Iwai24c1f932005-11-17 13:58:48 +010072 void (*private_free)(struct snd_info_entry *entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 struct proc_dir_entry *p;
Ingo Molnar1a60d4c2006-01-16 16:29:08 +010074 struct mutex access;
Takashi Iwai746d4a02006-06-23 14:37:59 +020075 struct list_head children;
76 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077};
78
Jie Yangcd6a6502015-05-27 19:45:45 +080079#if defined(CONFIG_SND_OSSEMUL) && defined(CONFIG_SND_PROC_FS)
Takashi Iwai24c1f932005-11-17 13:58:48 +010080int snd_info_minor_register(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081#else
Takashi Iwaia0dca822015-04-23 10:56:21 +020082#define snd_info_minor_register() 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070083#endif
84
85
Jie Yangcd6a6502015-05-27 19:45:45 +080086#ifdef CONFIG_SND_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Takashi Iwai24c1f932005-11-17 13:58:48 +010088extern struct snd_info_entry *snd_seq_root;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089#ifdef CONFIG_SND_OSSEMUL
Takashi Iwai24c1f932005-11-17 13:58:48 +010090extern struct snd_info_entry *snd_oss_root;
Marcin Ślusarz36b9cdf2007-12-14 12:58:45 +010091void snd_card_info_read_oss(struct snd_info_buffer *buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092#else
93#define snd_oss_root NULL
Marcin Ślusarz36b9cdf2007-12-14 12:58:45 +010094static inline void snd_card_info_read_oss(struct snd_info_buffer *buffer) {}
Linus Torvalds1da177e2005-04-16 15:20:36 -070095#endif
96
Takashi Iwai4adb7bc2015-04-22 16:10:22 +020097/**
98 * snd_iprintf - printf on the procfs buffer
99 * @buf: the procfs buffer
100 * @fmt: the printf format
101 *
102 * Outputs the string on the procfs buffer just like printf().
103 *
104 * Return: zero for success, or a negative error code.
105 */
106#define snd_iprintf(buf, fmt, args...) \
107 seq_printf((struct seq_file *)(buf)->buffer, fmt, ##args)
108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109int snd_info_init(void);
110int snd_info_done(void);
111
Jaroslav Kyselafd641382008-11-12 16:53:47 +0100112int snd_info_get_line(struct snd_info_buffer *buffer, char *line, int len);
Takashi Iwai4f7454a2009-09-08 14:29:58 +0200113const char *snd_info_get_str(char *dest, const char *src, int len);
Jaroslav Kyselafd641382008-11-12 16:53:47 +0100114struct snd_info_entry *snd_info_create_module_entry(struct module *module,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 const char *name,
Jaroslav Kyselafd641382008-11-12 16:53:47 +0100116 struct snd_info_entry *parent);
117struct snd_info_entry *snd_info_create_card_entry(struct snd_card *card,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 const char *name,
Jaroslav Kyselafd641382008-11-12 16:53:47 +0100119 struct snd_info_entry *parent);
120void snd_info_free_entry(struct snd_info_entry *entry);
121int snd_info_store_text(struct snd_info_entry *entry);
122int snd_info_restore_text(struct snd_info_entry *entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
Jaroslav Kyselafd641382008-11-12 16:53:47 +0100124int snd_info_card_create(struct snd_card *card);
125int snd_info_card_register(struct snd_card *card);
126int snd_info_card_free(struct snd_card *card);
127void snd_info_card_disconnect(struct snd_card *card);
128void snd_info_card_id_change(struct snd_card *card);
129int snd_info_register(struct snd_info_entry *entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
131/* for card drivers */
Takashi Iwaic560a672015-04-22 18:26:38 +0200132static inline int snd_card_proc_new(struct snd_card *card, const char *name,
133 struct snd_info_entry **entryp)
134{
135 *entryp = snd_info_create_card_entry(card, name, card->proc_root);
136 return *entryp ? 0 : -ENOMEM;
137}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Takashi Iwai24c1f932005-11-17 13:58:48 +0100139static inline void snd_info_set_text_ops(struct snd_info_entry *entry,
Jaroslav Kyselafd641382008-11-12 16:53:47 +0100140 void *private_data,
141 void (*read)(struct snd_info_entry *, struct snd_info_buffer *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142{
143 entry->private_data = private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 entry->c.text.read = read;
145}
146
Takashi Iwai7453e1d2019-02-04 14:53:04 +0100147int snd_card_rw_proc_new(struct snd_card *card, const char *name,
148 void *private_data,
149 void (*read)(struct snd_info_entry *,
150 struct snd_info_buffer *),
151 void (*write)(struct snd_info_entry *entry,
152 struct snd_info_buffer *buffer));
153
Takashi Iwaie28563c2005-12-01 10:42:42 +0100154int snd_info_check_reserved_words(const char *str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
156#else
157
158#define snd_seq_root NULL
159#define snd_oss_root NULL
160
Jaroslav Kyselafd641382008-11-12 16:53:47 +0100161static inline int snd_iprintf(struct snd_info_buffer *buffer, char *fmt, ...) { return 0; }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162static inline int snd_info_init(void) { return 0; }
163static inline int snd_info_done(void) { return 0; }
164
Jaroslav Kyselafd641382008-11-12 16:53:47 +0100165static inline int snd_info_get_line(struct snd_info_buffer *buffer, char *line, int len) { return 0; }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166static inline char *snd_info_get_str(char *dest, char *src, int len) { return NULL; }
Jaroslav Kyselafd641382008-11-12 16:53:47 +0100167static inline struct snd_info_entry *snd_info_create_module_entry(struct module *module, const char *name, struct snd_info_entry *parent) { return NULL; }
168static inline struct snd_info_entry *snd_info_create_card_entry(struct snd_card *card, const char *name, struct snd_info_entry *parent) { return NULL; }
169static inline void snd_info_free_entry(struct snd_info_entry *entry) { ; }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
Jaroslav Kyselafd641382008-11-12 16:53:47 +0100171static inline int snd_info_card_create(struct snd_card *card) { return 0; }
172static inline int snd_info_card_register(struct snd_card *card) { return 0; }
173static inline int snd_info_card_free(struct snd_card *card) { return 0; }
174static inline void snd_info_card_disconnect(struct snd_card *card) { }
175static inline void snd_info_card_id_change(struct snd_card *card) { }
176static inline int snd_info_register(struct snd_info_entry *entry) { return 0; }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
Takashi Iwaie28563c2005-12-01 10:42:42 +0100178static inline int snd_card_proc_new(struct snd_card *card, const char *name,
179 struct snd_info_entry **entryp) { return -EINVAL; }
180static inline void snd_info_set_text_ops(struct snd_info_entry *entry __attribute__((unused)),
181 void *private_data,
Takashi Iwaie28563c2005-12-01 10:42:42 +0100182 void (*read)(struct snd_info_entry *, struct snd_info_buffer *)) {}
Takashi Iwai7453e1d2019-02-04 14:53:04 +0100183static inline int snd_card_rw_proc_new(struct snd_card *card, const char *name,
184 void *private_data,
185 void (*read)(struct snd_info_entry *,
186 struct snd_info_buffer *),
187 void (*write)(struct snd_info_entry *entry,
188 struct snd_info_buffer *buffer))
189{
190 return 0;
191}
Takashi Iwaie28563c2005-12-01 10:42:42 +0100192static inline int snd_info_check_reserved_words(const char *str) { return 1; }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
194#endif
195
Takashi Iwai7453e1d2019-02-04 14:53:04 +0100196/**
197 * snd_card_ro_proc_new - Create a read-only text proc file entry for the card
198 * @card: the card instance
199 * @name: the file name
200 * @private_data: the arbitrary private data
201 * @read: the read callback
202 *
203 * This proc file entry will be registered via snd_card_register() call, and
204 * it will be removed automatically at the card removal, too.
205 */
206static inline int
207snd_card_ro_proc_new(struct snd_card *card, const char *name,
208 void *private_data,
209 void (*read)(struct snd_info_entry *,
210 struct snd_info_buffer *))
211{
212 return snd_card_rw_proc_new(card, name, private_data, read, NULL);
213}
214
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215/*
216 * OSS info part
217 */
218
Jie Yangcd6a6502015-05-27 19:45:45 +0800219#if defined(CONFIG_SND_OSSEMUL) && defined(CONFIG_SND_PROC_FS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
221#define SNDRV_OSS_INFO_DEV_AUDIO 0
222#define SNDRV_OSS_INFO_DEV_SYNTH 1
223#define SNDRV_OSS_INFO_DEV_MIDI 2
224#define SNDRV_OSS_INFO_DEV_TIMERS 4
225#define SNDRV_OSS_INFO_DEV_MIXERS 5
226
227#define SNDRV_OSS_INFO_DEV_COUNT 6
228
Takashi Iwai24c1f932005-11-17 13:58:48 +0100229int snd_oss_info_register(int dev, int num, char *string);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230#define snd_oss_info_unregister(dev, num) snd_oss_info_register(dev, num, NULL)
231
Jie Yangcd6a6502015-05-27 19:45:45 +0800232#endif /* CONFIG_SND_OSSEMUL && CONFIG_SND_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
234#endif /* __SOUND_INFO_H */