rawmidi.h 5.6 KB
Newer Older
1
/* SPDX-License-Identifier: GPL-2.0-or-later */
L
Linus Torvalds 已提交
2 3 4 5 6
#ifndef __SOUND_RAWMIDI_H
#define __SOUND_RAWMIDI_H

/*
 *  Abstract layer for MIDI v1.0 stream
7
 *  Copyright (c) by Jaroslav Kysela <perex@perex.cz>
L
Linus Torvalds 已提交
8 9 10 11 12 13
 */

#include <sound/asound.h>
#include <linux/interrupt.h>
#include <linux/spinlock.h>
#include <linux/wait.h>
14
#include <linux/mutex.h>
15
#include <linux/workqueue.h>
16
#include <linux/device.h>
L
Linus Torvalds 已提交
17

18
#if IS_ENABLED(CONFIG_SND_SEQUENCER)
19
#include <sound/seq_device.h>
L
Linus Torvalds 已提交
20 21 22 23 24 25 26 27 28 29 30 31 32
#endif

/*
 *  Raw MIDI interface
 */

#define SNDRV_RAWMIDI_DEVICES		8

#define SNDRV_RAWMIDI_LFLG_OUTPUT	(1<<0)
#define SNDRV_RAWMIDI_LFLG_INPUT	(1<<1)
#define SNDRV_RAWMIDI_LFLG_OPEN		(3<<0)
#define SNDRV_RAWMIDI_LFLG_APPEND	(1<<2)

33 34
struct snd_rawmidi;
struct snd_rawmidi_substream;
35
struct snd_seq_port_info;
36
struct pid;
L
Linus Torvalds 已提交
37

38 39 40 41 42 43
struct snd_rawmidi_ops {
	int (*open) (struct snd_rawmidi_substream * substream);
	int (*close) (struct snd_rawmidi_substream * substream);
	void (*trigger) (struct snd_rawmidi_substream * substream, int up);
	void (*drain) (struct snd_rawmidi_substream * substream);
};
L
Linus Torvalds 已提交
44

45 46 47
struct snd_rawmidi_global_ops {
	int (*dev_register) (struct snd_rawmidi * rmidi);
	int (*dev_unregister) (struct snd_rawmidi * rmidi);
48 49
	void (*get_port_info)(struct snd_rawmidi *rmidi, int number,
			      struct snd_seq_port_info *info);
50
};
L
Linus Torvalds 已提交
51

52
struct snd_rawmidi_runtime {
53
	struct snd_rawmidi_substream *substream;
L
Linus Torvalds 已提交
54 55 56 57 58 59 60 61 62 63
	unsigned int drain: 1,	/* drain stage */
		     oss: 1;	/* OSS compatible mode */
	/* midi stream buffer */
	unsigned char *buffer;	/* buffer for MIDI data */
	size_t buffer_size;	/* size of buffer */
	size_t appl_ptr;	/* application pointer */
	size_t hw_ptr;		/* hardware pointer */
	size_t avail_min;	/* min avail for wakeup */
	size_t avail;		/* max used buffer for wakeup */
	size_t xruns;		/* over/underruns counter */
64
	int buffer_ref;		/* buffer reference count */
L
Linus Torvalds 已提交
65 66 67 68
	/* misc */
	spinlock_t lock;
	wait_queue_head_t sleep;
	/* event handler (new bytes, input only) */
69
	void (*event)(struct snd_rawmidi_substream *substream);
L
Linus Torvalds 已提交
70
	/* defers calls to event [input] or ops->trigger [output] */
71
	struct work_struct event_work;
L
Linus Torvalds 已提交
72 73
	/* private data */
	void *private_data;
74
	void (*private_free)(struct snd_rawmidi_substream *substream);
L
Linus Torvalds 已提交
75 76
};

77
struct snd_rawmidi_substream {
L
Linus Torvalds 已提交
78 79 80
	struct list_head list;		/* list of all substream for given stream */
	int stream;			/* direction */
	int number;			/* substream number */
81 82 83
	bool opened;			/* open flag */
	bool append;			/* append flag (merge more streams) */
	bool active_sensing;		/* send active sensing when close */
L
Linus Torvalds 已提交
84 85
	int use_count;			/* use counter (for output) */
	size_t bytes;
86 87
	struct snd_rawmidi *rmidi;
	struct snd_rawmidi_str *pstr;
L
Linus Torvalds 已提交
88
	char name[32];
89
	struct snd_rawmidi_runtime *runtime;
90
	struct pid *pid;
L
Linus Torvalds 已提交
91
	/* hardware layer */
92
	const struct snd_rawmidi_ops *ops;
L
Linus Torvalds 已提交
93 94
};

95 96 97 98 99
struct snd_rawmidi_file {
	struct snd_rawmidi *rmidi;
	struct snd_rawmidi_substream *input;
	struct snd_rawmidi_substream *output;
};
L
Linus Torvalds 已提交
100

101
struct snd_rawmidi_str {
L
Linus Torvalds 已提交
102 103 104 105 106
	unsigned int substream_count;
	unsigned int substream_opened;
	struct list_head substreams;
};

107 108
struct snd_rawmidi {
	struct snd_card *card;
109
	struct list_head list;
L
Linus Torvalds 已提交
110 111 112 113 114 115 116 117 118
	unsigned int device;		/* device number */
	unsigned int info_flags;	/* SNDRV_RAWMIDI_INFO_XXXX */
	char id[64];
	char name[80];

#ifdef CONFIG_SND_OSSEMUL
	int ossreg;
#endif

119
	const struct snd_rawmidi_global_ops *ops;
L
Linus Torvalds 已提交
120

121
	struct snd_rawmidi_str streams[2];
L
Linus Torvalds 已提交
122 123

	void *private_data;
124
	void (*private_free) (struct snd_rawmidi *rmidi);
L
Linus Torvalds 已提交
125

126
	struct mutex open_mutex;
L
Linus Torvalds 已提交
127 128
	wait_queue_head_t open_wait;

129 130
	struct device dev;

131
	struct snd_info_entry *proc_entry;
L
Linus Torvalds 已提交
132

133
#if IS_ENABLED(CONFIG_SND_SEQUENCER)
134
	struct snd_seq_device *seq_dev;
L
Linus Torvalds 已提交
135 136 137 138 139
#endif
};

/* main rawmidi functions */

140
int snd_rawmidi_new(struct snd_card *card, char *id, int device,
L
Linus Torvalds 已提交
141
		    int output_count, int input_count,
142 143
		    struct snd_rawmidi **rmidi);
void snd_rawmidi_set_ops(struct snd_rawmidi *rmidi, int stream,
144
			 const struct snd_rawmidi_ops *ops);
L
Linus Torvalds 已提交
145 146 147

/* callbacks */

148 149 150 151 152 153 154 155
int snd_rawmidi_receive(struct snd_rawmidi_substream *substream,
			const unsigned char *buffer, int count);
int snd_rawmidi_transmit_empty(struct snd_rawmidi_substream *substream);
int snd_rawmidi_transmit_peek(struct snd_rawmidi_substream *substream,
			      unsigned char *buffer, int count);
int snd_rawmidi_transmit_ack(struct snd_rawmidi_substream *substream, int count);
int snd_rawmidi_transmit(struct snd_rawmidi_substream *substream,
			 unsigned char *buffer, int count);
156 157 158 159
int __snd_rawmidi_transmit_peek(struct snd_rawmidi_substream *substream,
			      unsigned char *buffer, int count);
int __snd_rawmidi_transmit_ack(struct snd_rawmidi_substream *substream,
			       int count);
160
int snd_rawmidi_proceed(struct snd_rawmidi_substream *substream);
L
Linus Torvalds 已提交
161 162 163

/* main midi functions */

164
int snd_rawmidi_info_select(struct snd_card *card, struct snd_rawmidi_info *info);
165 166
int snd_rawmidi_kernel_open(struct snd_card *card, int device, int subdevice,
			    int mode, struct snd_rawmidi_file *rfile);
167 168 169 170 171 172 173 174 175 176 177 178
int snd_rawmidi_kernel_release(struct snd_rawmidi_file *rfile);
int snd_rawmidi_output_params(struct snd_rawmidi_substream *substream,
			      struct snd_rawmidi_params *params);
int snd_rawmidi_input_params(struct snd_rawmidi_substream *substream,
			     struct snd_rawmidi_params *params);
int snd_rawmidi_drop_output(struct snd_rawmidi_substream *substream);
int snd_rawmidi_drain_output(struct snd_rawmidi_substream *substream);
int snd_rawmidi_drain_input(struct snd_rawmidi_substream *substream);
long snd_rawmidi_kernel_read(struct snd_rawmidi_substream *substream,
			     unsigned char *buf, long count);
long snd_rawmidi_kernel_write(struct snd_rawmidi_substream *substream,
			      const unsigned char *buf, long count);
L
Linus Torvalds 已提交
179 180

#endif /* __SOUND_RAWMIDI_H */