seq_midi_emul.h 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. /* SPDX-License-Identifier: GPL-2.0-or-later */
  2. #ifndef __SOUND_SEQ_MIDI_EMUL_H
  3. #define __SOUND_SEQ_MIDI_EMUL_H
  4. /*
  5. * Midi channel definition for optional channel management.
  6. *
  7. * Copyright (C) 1999 Steve Ratcliffe
  8. */
  9. #include <sound/seq_kernel.h>
  10. /*
  11. * This structure is used to keep track of the current state on each
  12. * channel. All drivers for hardware that does not understand midi
  13. * directly will probably need to use this structure.
  14. */
  15. struct snd_midi_channel {
  16. void *private; /* A back pointer to driver data */
  17. int number; /* The channel number */
  18. int client; /* The client associated with this channel */
  19. int port; /* The port associated with this channel */
  20. unsigned char midi_mode; /* GM, GS, XG etc */
  21. unsigned int
  22. drum_channel:1, /* Drum channel */
  23. param_type:1 /* RPN/NRPN */
  24. ;
  25. unsigned char midi_aftertouch; /* Aftertouch (key pressure) */
  26. unsigned char midi_pressure; /* Channel pressure */
  27. unsigned char midi_program; /* Instrument number */
  28. short midi_pitchbend; /* Pitch bend amount */
  29. unsigned char control[128]; /* Current value of all controls */
  30. unsigned char note[128]; /* Current status for all notes */
  31. short gm_rpn_pitch_bend_range; /* Pitch bend range */
  32. short gm_rpn_fine_tuning; /* Master fine tuning */
  33. short gm_rpn_coarse_tuning; /* Master coarse tuning */
  34. };
  35. /*
  36. * A structure that represets a set of channels bound to a port. There
  37. * would usually be 16 channels per port. But fewer could be used for
  38. * particular cases.
  39. * The channel set consists of information describing the client and
  40. * port for this midi synth and an array of snd_midi_channel structures.
  41. * A driver that had no need for snd_midi_channel could still use the
  42. * channel set type if it wished with the channel array null.
  43. */
  44. struct snd_midi_channel_set {
  45. void *private_data; /* Driver data */
  46. int client; /* Client for this port */
  47. int port; /* The port number */
  48. int max_channels; /* Size of the channels array */
  49. struct snd_midi_channel *channels;
  50. unsigned char midi_mode; /* MIDI operating mode */
  51. unsigned char gs_master_volume; /* SYSEX master volume: 0-127 */
  52. unsigned char gs_chorus_mode;
  53. unsigned char gs_reverb_mode;
  54. };
  55. struct snd_midi_op {
  56. void (*note_on)(void *private_data, int note, int vel, struct snd_midi_channel *chan);
  57. void (*note_off)(void *private_data,int note, int vel, struct snd_midi_channel *chan); /* release note */
  58. void (*key_press)(void *private_data, int note, int vel, struct snd_midi_channel *chan);
  59. void (*note_terminate)(void *private_data, int note, struct snd_midi_channel *chan); /* terminate note immediately */
  60. void (*control)(void *private_data, int type, struct snd_midi_channel *chan);
  61. void (*nrpn)(void *private_data, struct snd_midi_channel *chan,
  62. struct snd_midi_channel_set *chset);
  63. void (*sysex)(void *private_data, unsigned char *buf, int len, int parsed,
  64. struct snd_midi_channel_set *chset);
  65. };
  66. /*
  67. * These defines are used so that pitchbend, aftertouch etc, can be
  68. * distinguished from controller values.
  69. */
  70. /* 0-127 controller values */
  71. #define MIDI_CTL_PITCHBEND 0x80
  72. #define MIDI_CTL_AFTERTOUCH 0x81
  73. #define MIDI_CTL_CHAN_PRESSURE 0x82
  74. /*
  75. * These names exist to allow symbolic access to the controls array.
  76. * The usage is eg: chan->gm_bank_select. Another implementation would
  77. * be really have these members in the struct, and not the array.
  78. */
  79. #define gm_bank_select control[0]
  80. #define gm_modulation control[1]
  81. #define gm_breath control[2]
  82. #define gm_foot_pedal control[4]
  83. #define gm_portamento_time control[5]
  84. #define gm_data_entry control[6]
  85. #define gm_volume control[7]
  86. #define gm_balance control[8]
  87. #define gm_pan control[10]
  88. #define gm_expression control[11]
  89. #define gm_effect_control1 control[12]
  90. #define gm_effect_control2 control[13]
  91. #define gm_slider1 control[16]
  92. #define gm_slider2 control[17]
  93. #define gm_slider3 control[18]
  94. #define gm_slider4 control[19]
  95. #define gm_bank_select_lsb control[32]
  96. #define gm_modulation_wheel_lsb control[33]
  97. #define gm_breath_lsb control[34]
  98. #define gm_foot_pedal_lsb control[36]
  99. #define gm_portamento_time_lsb control[37]
  100. #define gm_data_entry_lsb control[38]
  101. #define gm_volume_lsb control[39]
  102. #define gm_balance_lsb control[40]
  103. #define gm_pan_lsb control[42]
  104. #define gm_expression_lsb control[43]
  105. #define gm_effect_control1_lsb control[44]
  106. #define gm_effect_control2_lsb control[45]
  107. #define gm_sustain control[MIDI_CTL_SUSTAIN]
  108. #define gm_hold gm_sustain
  109. #define gm_portamento control[MIDI_CTL_PORTAMENTO]
  110. #define gm_sostenuto control[MIDI_CTL_SOSTENUTO]
  111. /*
  112. * These macros give the complete value of the controls that consist
  113. * of coarse and fine pairs. Of course the fine controls are seldom used
  114. * but there is no harm in being complete.
  115. */
  116. #define SNDRV_GM_BANK_SELECT(cp) (((cp)->control[0]<<7)|((cp)->control[32]))
  117. #define SNDRV_GM_MODULATION_WHEEL(cp) (((cp)->control[1]<<7)|((cp)->control[33]))
  118. #define SNDRV_GM_BREATH(cp) (((cp)->control[2]<<7)|((cp)->control[34]))
  119. #define SNDRV_GM_FOOT_PEDAL(cp) (((cp)->control[4]<<7)|((cp)->control[36]))
  120. #define SNDRV_GM_PORTAMENTO_TIME(cp) (((cp)->control[5]<<7)|((cp)->control[37]))
  121. #define SNDRV_GM_DATA_ENTRY(cp) (((cp)->control[6]<<7)|((cp)->control[38]))
  122. #define SNDRV_GM_VOLUME(cp) (((cp)->control[7]<<7)|((cp)->control[39]))
  123. #define SNDRV_GM_BALANCE(cp) (((cp)->control[8]<<7)|((cp)->control[40]))
  124. #define SNDRV_GM_PAN(cp) (((cp)->control[10]<<7)|((cp)->control[42]))
  125. #define SNDRV_GM_EXPRESSION(cp) (((cp)->control[11]<<7)|((cp)->control[43]))
  126. /* MIDI mode */
  127. #define SNDRV_MIDI_MODE_NONE 0 /* Generic midi */
  128. #define SNDRV_MIDI_MODE_GM 1
  129. #define SNDRV_MIDI_MODE_GS 2
  130. #define SNDRV_MIDI_MODE_XG 3
  131. #define SNDRV_MIDI_MODE_MT32 4
  132. /* MIDI note state */
  133. #define SNDRV_MIDI_NOTE_OFF 0x00
  134. #define SNDRV_MIDI_NOTE_ON 0x01
  135. #define SNDRV_MIDI_NOTE_RELEASED 0x02
  136. #define SNDRV_MIDI_NOTE_SOSTENUTO 0x04
  137. #define SNDRV_MIDI_PARAM_TYPE_REGISTERED 0
  138. #define SNDRV_MIDI_PARAM_TYPE_NONREGISTERED 1
  139. /* SYSEX parse flag */
  140. enum {
  141. SNDRV_MIDI_SYSEX_NOT_PARSED = 0,
  142. SNDRV_MIDI_SYSEX_GM_ON,
  143. SNDRV_MIDI_SYSEX_GS_ON,
  144. SNDRV_MIDI_SYSEX_GS_RESET,
  145. SNDRV_MIDI_SYSEX_GS_CHORUS_MODE,
  146. SNDRV_MIDI_SYSEX_GS_REVERB_MODE,
  147. SNDRV_MIDI_SYSEX_GS_MASTER_VOLUME,
  148. SNDRV_MIDI_SYSEX_GS_PROGRAM,
  149. SNDRV_MIDI_SYSEX_GS_DRUM_CHANNEL,
  150. SNDRV_MIDI_SYSEX_XG_ON,
  151. };
  152. /* Prototypes for midi_process.c */
  153. void snd_midi_process_event(const struct snd_midi_op *ops,
  154. struct snd_seq_event *ev,
  155. struct snd_midi_channel_set *chanset);
  156. void snd_midi_channel_set_clear(struct snd_midi_channel_set *chset);
  157. struct snd_midi_channel_set *snd_midi_channel_alloc_set(int n);
  158. void snd_midi_channel_free_set(struct snd_midi_channel_set *chset);
  159. #endif /* __SOUND_SEQ_MIDI_EMUL_H */