~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/include/sound/seq_virmidi.h

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 /* SPDX-License-Identifier: GPL-2.0-or-later */
  2 #ifndef __SOUND_SEQ_VIRMIDI_H
  3 #define __SOUND_SEQ_VIRMIDI_H
  4 
  5 /*
  6  *  Virtual Raw MIDI client on Sequencer
  7  *  Copyright (c) 2000 by Takashi Iwai <tiwai@suse.de>,
  8  *                        Jaroslav Kysela <perex@perex.cz>
  9  */
 10 
 11 #include <sound/rawmidi.h>
 12 #include <sound/seq_midi_event.h>
 13 
 14 /*
 15  * device file instance:
 16  * This instance is created at each time the midi device file is
 17  * opened.  Each instance has its own input buffer and MIDI parser
 18  * (buffer), and is associated with the device instance.
 19  */
 20 struct snd_virmidi {
 21         struct list_head list;
 22         int seq_mode;
 23         int client;
 24         int port;
 25         bool trigger;
 26         struct snd_midi_event *parser;
 27         struct snd_seq_event event;
 28         struct snd_virmidi_dev *rdev;
 29         struct snd_rawmidi_substream *substream;
 30         struct work_struct output_work;
 31 };
 32 
 33 #define SNDRV_VIRMIDI_SUBSCRIBE         (1<<0)
 34 #define SNDRV_VIRMIDI_USE               (1<<1)
 35 
 36 /*
 37  * device record:
 38  * Each virtual midi device has one device instance.  It contains
 39  * common information and the linked-list of opened files, 
 40  */
 41 struct snd_virmidi_dev {
 42         struct snd_card *card;          /* associated card */
 43         struct snd_rawmidi *rmidi;              /* rawmidi device */
 44         int seq_mode;                   /* SNDRV_VIRMIDI_XXX */
 45         int device;                     /* sequencer device */
 46         int client;                     /* created/attached client */
 47         int port;                       /* created/attached port */
 48         unsigned int flags;             /* SNDRV_VIRMIDI_* */
 49         rwlock_t filelist_lock;
 50         struct rw_semaphore filelist_sem;
 51         struct list_head filelist;
 52 };
 53 
 54 /* sequencer mode:
 55  * ATTACH = input/output events from midi device are routed to the
 56  *          attached sequencer port.  sequencer port is not created
 57  *          by virmidi itself.
 58  *          the input to rawmidi must be processed by passing the
 59  *          incoming events via snd_virmidi_receive()
 60  * DISPATCH = input/output events are routed to subscribers.
 61  *            sequencer port is created in virmidi.
 62  */
 63 #define SNDRV_VIRMIDI_SEQ_NONE          0
 64 #define SNDRV_VIRMIDI_SEQ_ATTACH        1
 65 #define SNDRV_VIRMIDI_SEQ_DISPATCH      2
 66 
 67 int snd_virmidi_new(struct snd_card *card, int device, struct snd_rawmidi **rrmidi);
 68 
 69 #endif /* __SOUND_SEQ_VIRMIDI */
 70 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php