Blame view

include/sound/rawmidi.h 6.11 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
  #ifndef __SOUND_RAWMIDI_H
  #define __SOUND_RAWMIDI_H
  
  /*
   *  Abstract layer for MIDI v1.0 stream
c1017a4cd   Jaroslav Kysela   [ALSA] Changed Ja...
6
   *  Copyright (c) by Jaroslav Kysela <perex@perex.cz>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
   *
   *
   *   This program is free software; you can redistribute it and/or modify
   *   it under the terms of the GNU General Public License as published by
   *   the Free Software Foundation; either version 2 of the License, or
   *   (at your option) any later version.
   *
   *   This program is distributed in the hope that it will be useful,
   *   but WITHOUT ANY WARRANTY; without even the implied warranty of
   *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   *   GNU General Public License for more details.
   *
   *   You should have received a copy of the GNU General Public License
   *   along with this program; if not, write to the Free Software
   *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
   *
   */
  
  #include <sound/asound.h>
  #include <linux/interrupt.h>
  #include <linux/spinlock.h>
  #include <linux/wait.h>
1a60d4c5a   Ingo Molnar   [ALSA] semaphore ...
29
  #include <linux/mutex.h>
b3c705aa9   Takashi Iwai   ALSA: rawmidi - U...
30
  #include <linux/workqueue.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
31
32
33
34
35
36
37
38
  
  #if defined(CONFIG_SND_SEQUENCER) || defined(CONFIG_SND_SEQUENCER_MODULE)
  #include "seq_device.h"
  #endif
  
  /*
   *  Raw MIDI interface
   */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
39
40
41
42
43
44
  #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)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
45

48c9d417d   Takashi Iwai   [ALSA] Remove xxx...
46
47
  struct snd_rawmidi;
  struct snd_rawmidi_substream;
a7b928ac5   Clemens Ladisch   [ALSA] rawmidi: a...
48
  struct snd_seq_port_info;
7584af10c   Clemens Ladisch   sound: rawmidi: r...
49
  struct pid;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
50

48c9d417d   Takashi Iwai   [ALSA] Remove xxx...
51
52
53
54
55
56
  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);
  };
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
57

48c9d417d   Takashi Iwai   [ALSA] Remove xxx...
58
59
60
  struct snd_rawmidi_global_ops {
  	int (*dev_register) (struct snd_rawmidi * rmidi);
  	int (*dev_unregister) (struct snd_rawmidi * rmidi);
a7b928ac5   Clemens Ladisch   [ALSA] rawmidi: a...
61
62
  	void (*get_port_info)(struct snd_rawmidi *rmidi, int number,
  			      struct snd_seq_port_info *info);
48c9d417d   Takashi Iwai   [ALSA] Remove xxx...
63
  };
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
64

48c9d417d   Takashi Iwai   [ALSA] Remove xxx...
65
  struct snd_rawmidi_runtime {
b3c705aa9   Takashi Iwai   ALSA: rawmidi - U...
66
  	struct snd_rawmidi_substream *substream;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
67
68
69
70
71
72
73
74
75
76
77
78
79
80
  	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 */
  	/* misc */
  	spinlock_t lock;
  	wait_queue_head_t sleep;
  	/* event handler (new bytes, input only) */
48c9d417d   Takashi Iwai   [ALSA] Remove xxx...
81
  	void (*event)(struct snd_rawmidi_substream *substream);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
82
  	/* defers calls to event [input] or ops->trigger [output] */
b3c705aa9   Takashi Iwai   ALSA: rawmidi - U...
83
  	struct work_struct event_work;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
84
85
  	/* private data */
  	void *private_data;
48c9d417d   Takashi Iwai   [ALSA] Remove xxx...
86
  	void (*private_free)(struct snd_rawmidi_substream *substream);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
87
  };
48c9d417d   Takashi Iwai   [ALSA] Remove xxx...
88
  struct snd_rawmidi_substream {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
89
90
91
92
93
94
95
96
  	struct list_head list;		/* list of all substream for given stream */
  	int stream;			/* direction */
  	int number;			/* substream number */
  	unsigned int opened: 1,		/* open flag */
  		     append: 1,		/* append flag (merge more streams) */
  		     active_sensing: 1; /* send active sensing when close */
  	int use_count;			/* use counter (for output) */
  	size_t bytes;
48c9d417d   Takashi Iwai   [ALSA] Remove xxx...
97
98
  	struct snd_rawmidi *rmidi;
  	struct snd_rawmidi_str *pstr;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
99
  	char name[32];
48c9d417d   Takashi Iwai   [ALSA] Remove xxx...
100
  	struct snd_rawmidi_runtime *runtime;
7584af10c   Clemens Ladisch   sound: rawmidi: r...
101
  	struct pid *pid;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
102
  	/* hardware layer */
48c9d417d   Takashi Iwai   [ALSA] Remove xxx...
103
  	struct snd_rawmidi_ops *ops;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
104
  };
48c9d417d   Takashi Iwai   [ALSA] Remove xxx...
105
106
107
108
109
  struct snd_rawmidi_file {
  	struct snd_rawmidi *rmidi;
  	struct snd_rawmidi_substream *input;
  	struct snd_rawmidi_substream *output;
  };
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
110

48c9d417d   Takashi Iwai   [ALSA] Remove xxx...
111
  struct snd_rawmidi_str {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
112
113
114
115
  	unsigned int substream_count;
  	unsigned int substream_opened;
  	struct list_head substreams;
  };
48c9d417d   Takashi Iwai   [ALSA] Remove xxx...
116
117
  struct snd_rawmidi {
  	struct snd_card *card;
f87135f56   Clemens Ladisch   [ALSA] dynamic mi...
118
  	struct list_head list;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
119
120
121
122
123
124
125
126
  	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
48c9d417d   Takashi Iwai   [ALSA] Remove xxx...
127
  	struct snd_rawmidi_global_ops *ops;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
128

48c9d417d   Takashi Iwai   [ALSA] Remove xxx...
129
  	struct snd_rawmidi_str streams[2];
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
130
131
  
  	void *private_data;
48c9d417d   Takashi Iwai   [ALSA] Remove xxx...
132
  	void (*private_free) (struct snd_rawmidi *rmidi);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
133

1a60d4c5a   Ingo Molnar   [ALSA] semaphore ...
134
  	struct mutex open_mutex;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
135
  	wait_queue_head_t open_wait;
48c9d417d   Takashi Iwai   [ALSA] Remove xxx...
136
137
  	struct snd_info_entry *dev;
  	struct snd_info_entry *proc_entry;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
138
139
  
  #if defined(CONFIG_SND_SEQUENCER) || defined(CONFIG_SND_SEQUENCER_MODULE)
48c9d417d   Takashi Iwai   [ALSA] Remove xxx...
140
  	struct snd_seq_device *seq_dev;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
141
142
143
144
  #endif
  };
  
  /* main rawmidi functions */
48c9d417d   Takashi Iwai   [ALSA] Remove xxx...
145
  int snd_rawmidi_new(struct snd_card *card, char *id, int device,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
146
  		    int output_count, int input_count,
48c9d417d   Takashi Iwai   [ALSA] Remove xxx...
147
148
149
  		    struct snd_rawmidi **rmidi);
  void snd_rawmidi_set_ops(struct snd_rawmidi *rmidi, int stream,
  			 struct snd_rawmidi_ops *ops);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
150
151
  
  /* callbacks */
48c9d417d   Takashi Iwai   [ALSA] Remove xxx...
152
153
154
155
156
157
158
159
160
161
  void snd_rawmidi_receive_reset(struct snd_rawmidi_substream *substream);
  int snd_rawmidi_receive(struct snd_rawmidi_substream *substream,
  			const unsigned char *buffer, int count);
  void snd_rawmidi_transmit_reset(struct snd_rawmidi_substream *substream);
  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);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
162
163
  
  /* main midi functions */
48c9d417d   Takashi Iwai   [ALSA] Remove xxx...
164
  int snd_rawmidi_info_select(struct snd_card *card, struct snd_rawmidi_info *info);
f87135f56   Clemens Ladisch   [ALSA] dynamic mi...
165
166
  int snd_rawmidi_kernel_open(struct snd_card *card, int device, int subdevice,
  			    int mode, struct snd_rawmidi_file *rfile);
48c9d417d   Takashi Iwai   [ALSA] Remove xxx...
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);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
179
180
  
  #endif /* __SOUND_RAWMIDI_H */