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

TOMOYO Linux Cross Reference
Linux/sound/usb/midi.h

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ 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.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 /* SPDX-License-Identifier: GPL-2.0 */
  2 #ifndef __USBMIDI_H
  3 #define __USBMIDI_H
  4 
  5 /* maximum number of endpoints per interface */
  6 #define MIDI_MAX_ENDPOINTS 2
  7 
  8 /* data for QUIRK_MIDI_FIXED_ENDPOINT */
  9 struct snd_usb_midi_endpoint_info {
 10         int8_t   out_ep;        /* ep number, 0 autodetect */
 11         uint8_t  out_interval;  /* interval for interrupt endpoints */
 12         int8_t   in_ep;
 13         uint8_t  in_interval;
 14         uint16_t out_cables;    /* bitmask */
 15         uint16_t in_cables;     /* bitmask */
 16         int16_t  assoc_in_jacks[16];
 17         int16_t  assoc_out_jacks[16];
 18 };
 19 
 20 /* for QUIRK_MIDI_YAMAHA, data is NULL */
 21 
 22 /* for QUIRK_MIDI_MIDIMAN, data points to a snd_usb_midi_endpoint_info
 23  * structure (out_cables and in_cables only) */
 24 
 25 /* for QUIRK_COMPOSITE, data points to an array of snd_usb_audio_quirk
 26  * structures, terminated with .ifnum = -1 */
 27 
 28 /* for QUIRK_AUDIO_FIXED_ENDPOINT, data points to an audioformat structure */
 29 
 30 /* for QUIRK_AUDIO/MIDI_STANDARD_INTERFACE, data is NULL */
 31 
 32 /* for QUIRK_AUDIO_EDIROL_UA700_UA25/UA1000, data is NULL */
 33 
 34 /* for QUIRK_IGNORE_INTERFACE, data is NULL */
 35 
 36 /* for QUIRK_MIDI_NOVATION and _RAW, data is NULL */
 37 
 38 /* for QUIRK_MIDI_EMAGIC, data points to a snd_usb_midi_endpoint_info
 39  * structure (out_cables and in_cables only) */
 40 
 41 /* for QUIRK_MIDI_CME, data is NULL */
 42 
 43 /* for QUIRK_MIDI_AKAI, data is NULL */
 44 
 45 int __snd_usbmidi_create(struct snd_card *card,
 46                          struct usb_interface *iface,
 47                          struct list_head *midi_list,
 48                          const struct snd_usb_audio_quirk *quirk,
 49                          unsigned int usb_id,
 50                          unsigned int *num_rawmidis);
 51 
 52 static inline int snd_usbmidi_create(struct snd_card *card,
 53                        struct usb_interface *iface,
 54                        struct list_head *midi_list,
 55                        const struct snd_usb_audio_quirk *quirk)
 56 {
 57         return __snd_usbmidi_create(card, iface, midi_list, quirk, 0, NULL);
 58 }
 59 
 60 void snd_usbmidi_input_stop(struct list_head *p);
 61 void snd_usbmidi_input_start(struct list_head *p);
 62 void snd_usbmidi_disconnect(struct list_head *p);
 63 void snd_usbmidi_suspend(struct list_head *p);
 64 void snd_usbmidi_resume(struct list_head *p);
 65 
 66 #endif /* __USBMIDI_H */
 67 

~ [ 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