/linux/sound/drivers/opl3/ |
H A D | opl3_lib.c | 26 static void snd_opl2_command(struct snd_opl3 * opl3, unsigned short cmd, unsigned char val) in snd_opl2_command() argument 36 port = (cmd & OPL3_RIGHT) ? opl3->r_port : opl3->l_port; in snd_opl2_command() 38 spin_lock_irqsave(&opl3->reg_lock, flags); in snd_opl2_command() 46 spin_unlock_irqrestore(&opl3->reg_lock, flags); in snd_opl2_command() 49 static void snd_opl3_command(struct snd_opl3 * opl3, unsigned short cmd, unsigned char val) in snd_opl3_command() argument 59 port = (cmd & OPL3_RIGHT) ? opl3->r_port : opl3->l_port; in snd_opl3_command() 61 spin_lock_irqsave(&opl3->reg_lock, flags); in snd_opl3_command() 64 inb(opl3->l_port); in snd_opl3_command() 65 inb(opl3->l_port); in snd_opl3_command() 68 inb(opl3->l_port); in snd_opl3_command() [all …]
|
H A D | opl3_seq.c | 25 int snd_opl3_synth_use_inc(struct snd_opl3 * opl3) in snd_opl3_synth_use_inc() argument 27 if (!try_module_get(opl3->card->module)) in snd_opl3_synth_use_inc() 33 void snd_opl3_synth_use_dec(struct snd_opl3 * opl3) in snd_opl3_synth_use_dec() argument 35 module_put(opl3->card->module); in snd_opl3_synth_use_dec() 38 int snd_opl3_synth_setup(struct snd_opl3 * opl3) in snd_opl3_synth_setup() argument 41 struct snd_hwdep *hwdep = opl3->hwdep; in snd_opl3_synth_setup() 51 snd_opl3_reset(opl3); in snd_opl3_synth_setup() 54 opl3->voices[idx].state = SNDRV_OPL3_ST_OFF; in snd_opl3_synth_setup() 55 opl3->voices[idx].time = 0; in snd_opl3_synth_setup() 56 opl3->voices[idx].keyon_reg = 0x00; in snd_opl3_synth_setup() [all …]
|
H A D | opl3_midi.c | 15 #define opl3_dbg(opl3, fmt, ...) \ argument 16 dev_dbg(((struct snd_opl3 *)(opl3))->card->dev, fmt, ##__VA_ARGS__) 18 #define opl3_dbg(opl3, fmt, ...) do {} while (0) argument 117 static void debug_alloc(struct snd_opl3 *opl3, char *s, int voice) in debug_alloc() argument 123 for (i = 0; i < opl3->max_voices; i++) in debug_alloc() 124 buf[i] = str[opl3->voices[i].state + 1]; in debug_alloc() 126 dev_dbg(opl3->card->dev, "time %.5i: %s [%.2i]: %s\n", in debug_alloc() 127 opl3->use_time, s, voice, buf); in debug_alloc() 134 static int opl3_get_voice(struct snd_opl3 *opl3, int instr_4op, in opl3_get_voice() argument 165 for (i = 0; i < opl3->max_voices; i++) { in opl3_get_voice() [all …]
|
H A D | opl3_oss.c | 31 struct snd_opl3 *opl3 = private_data; in snd_opl3_oss_event_input() local 34 snd_midi_process_event(&opl3_ops, ev, opl3->oss_chset); in snd_opl3_oss_event_input() 42 struct snd_opl3 *opl3 = private_data; in snd_opl3_oss_free_port() local 44 snd_midi_channel_free_set(opl3->oss_chset); in snd_opl3_oss_free_port() 47 static int snd_opl3_oss_create_port(struct snd_opl3 * opl3) in snd_opl3_oss_create_port() argument 53 voices = (opl3->hardware < OPL3_HW_OPL3) ? in snd_opl3_oss_create_port() 55 opl3->oss_chset = snd_midi_channel_alloc_set(voices); in snd_opl3_oss_create_port() 56 if (opl3->oss_chset == NULL) in snd_opl3_oss_create_port() 58 opl3->oss_chset->private_data = opl3; in snd_opl3_oss_create_port() 64 callbacks.private_data = opl3; in snd_opl3_oss_create_port() [all …]
|
H A D | opl3_synth.c | 60 static int snd_opl3_play_note(struct snd_opl3 * opl3, struct snd_dm_fm_note * note); 61 static int snd_opl3_set_voice(struct snd_opl3 * opl3, struct snd_dm_fm_voice * voice); 62 static int snd_opl3_set_params(struct snd_opl3 * opl3, struct snd_dm_fm_params * params); 63 static int snd_opl3_set_mode(struct snd_opl3 * opl3, int mode); 64 static int snd_opl3_set_connection(struct snd_opl3 * opl3, int connection); 82 struct snd_opl3 *opl3 = hw->private_data; in snd_opl3_ioctl() local 85 if (snd_BUG_ON(!opl3)) in snd_opl3_ioctl() 96 info.fm_mode = opl3->fm_mode; in snd_opl3_ioctl() 97 info.rhythm = opl3->rhythm; in snd_opl3_ioctl() 107 snd_opl3_reset(opl3); in snd_opl3_ioctl() [all …]
|
H A D | opl3_drums.c | 67 static void snd_opl3_drum_voice_set(struct snd_opl3 *opl3, in snd_opl3_drum_voice_set() argument 76 opl3->command(opl3, opl3_reg, data->am_vib); in snd_opl3_drum_voice_set() 80 opl3->command(opl3, opl3_reg, data->ksl_level); in snd_opl3_drum_voice_set() 84 opl3->command(opl3, opl3_reg, data->attack_decay); in snd_opl3_drum_voice_set() 88 opl3->command(opl3, opl3_reg, data->sustain_release); in snd_opl3_drum_voice_set() 92 opl3->command(opl3, opl3_reg, data->feedback_connection); in snd_opl3_drum_voice_set() 96 opl3->command(opl3, opl3_reg, data->wave_select); in snd_opl3_drum_voice_set() 102 static void snd_opl3_drum_note_set(struct snd_opl3 *opl3, in snd_opl3_drum_note_set() argument 110 opl3->command(opl3, opl3_reg, data->fnum); in snd_opl3_drum_note_set() 114 opl3->command(opl3, opl3_reg, data->octave_f); in snd_opl3_drum_note_set() [all …]
|
H A D | opl3_voice.h | 12 int snd_opl3_synth_use_inc(struct snd_opl3 * opl3); 13 void snd_opl3_synth_use_dec(struct snd_opl3 * opl3); 14 int snd_opl3_synth_setup(struct snd_opl3 * opl3); 15 void snd_opl3_synth_cleanup(struct snd_opl3 * opl3); 30 void snd_opl3_load_drums(struct snd_opl3 *opl3); 31 void snd_opl3_drum_switch(struct snd_opl3 *opl3, int note, int vel, int on_off, struct snd_midi_cha… 35 void snd_opl3_init_seq_oss(struct snd_opl3 *opl3, char *name); 36 void snd_opl3_free_seq_oss(struct snd_opl3 *opl3); 38 #define snd_opl3_init_seq_oss(opl3, name) /* NOP */ argument 39 #define snd_opl3_free_seq_oss(opl3) /* NOP */ argument
|
H A D | Makefile | 7 snd-opl3-lib-y := opl3_lib.o opl3_synth.o 8 snd-opl3-synth-y := opl3_seq.o opl3_midi.o opl3_drums.o 10 snd-opl3-synth-y += opl3_oss.o 13 obj-$(CONFIG_SND_OPL3_LIB) += snd-opl3-lib.o 14 obj-$(CONFIG_SND_OPL4_LIB) += snd-opl3-lib.o 15 obj-$(CONFIG_SND_OPL3_LIB_SEQ) += snd-opl3-synth.o
|
/linux/include/sound/ |
H A D | opl3.h | 290 void (*command) (struct snd_opl3 * opl3, unsigned short cmd, unsigned char val); 341 int snd_opl3_init(struct snd_opl3 *opl3); 346 struct snd_opl3 ** opl3); 347 int snd_opl3_timer_new(struct snd_opl3 * opl3, int timer1_dev, int timer2_dev); 348 int snd_opl3_hwdep_new(struct snd_opl3 * opl3, int device, int seq_device, 357 void snd_opl3_reset(struct snd_opl3 * opl3); 362 int snd_opl3_load_patch(struct snd_opl3 *opl3, 367 struct fm_patch *snd_opl3_find_patch(struct snd_opl3 *opl3, int prog, int bank, 369 void snd_opl3_clear_patches(struct snd_opl3 *opl3); 372 static inline void snd_opl3_clear_patches(struct snd_opl3 *opl3) {} in snd_opl3_clear_patches() argument
|
H A D | opl4.h | 17 struct snd_opl3 **opl3, struct snd_opl4 **opl4);
|
/linux/sound/isa/ |
H A D | adlib.c | 49 struct snd_opl3 *opl3; in snd_adlib_probe() local 68 error = snd_opl3_create(card, port[n], port[n] + 2, OPL3_HW_AUTO, 1, &opl3); in snd_adlib_probe() 74 error = snd_opl3_hwdep_new(opl3, 0, 0, NULL); in snd_adlib_probe()
|
H A D | azt2320.c | 168 struct snd_opl3 *opl3; in snd_card_azt2320_probe() local 217 OPL3_HW_AUTO, 0, &opl3) < 0) { in snd_card_azt2320_probe() 221 error = snd_opl3_timer_new(opl3, 1, 2); in snd_card_azt2320_probe() 224 error = snd_opl3_hwdep_new(opl3, 0, 1, NULL); in snd_card_azt2320_probe()
|
H A D | als100.c | 169 struct snd_opl3 *opl3; in snd_card_als100_probe() local 237 OPL3_HW_AUTO, 0, &opl3) < 0) { in snd_card_als100_probe() 241 error = snd_opl3_timer_new(opl3, 0, 1); in snd_card_als100_probe() 244 error = snd_opl3_hwdep_new(opl3, 0, 1, NULL); in snd_card_als100_probe()
|
H A D | cmi8328.c | 221 struct snd_opl3 *opl3; in snd_cmi8328_probe() local 359 if (snd_opl3_create(card, 0x388, 0x38a, OPL3_HW_AUTO, 0, &opl3) < 0) in snd_cmi8328_probe() 362 if (snd_opl3_hwdep_new(opl3, 0, 1, NULL) < 0) in snd_cmi8328_probe()
|
/linux/sound/isa/sb/ |
H A D | sb8.c | 77 struct snd_opl3 *opl3; in snd_sb8_probe() local 144 OPL3_HW_AUTO, 1, &opl3); in snd_sb8_probe() 149 OPL3_HW_AUTO, 1, &opl3); in snd_sb8_probe() 156 err = snd_opl3_hwdep_new(opl3, 0, 1, NULL); in snd_sb8_probe()
|
H A D | jazz16.c | 224 struct snd_opl3 *opl3; in snd_jazz16_probe() local 303 OPL3_HW_AUTO, 1, &opl3); in snd_jazz16_probe() 308 err = snd_opl3_hwdep_new(opl3, 0, 1, NULL); in snd_jazz16_probe()
|
/linux/sound/isa/ad1816a/ |
H A D | ad1816a.c | 123 struct snd_opl3 *opl3; in snd_card_ad1816a_probe() local 174 OPL3_HW_AUTO, 0, &opl3) < 0) { in snd_card_ad1816a_probe() 178 error = snd_opl3_hwdep_new(opl3, 0, 1, NULL); in snd_card_ad1816a_probe()
|
/linux/sound/drivers/opl4/ |
H A D | opl4_lib.c | 185 struct snd_opl3 *opl3; in snd_opl4_create() local 227 err = snd_opl3_create(card, fm_port, fm_port + 2, opl4->hardware, 1, &opl3); in snd_opl4_create() 246 *ropl3 = opl3; in snd_opl4_create()
|
/linux/sound/pci/ymfpci/ |
H A D | ymfpci.c | 163 struct snd_opl3 *opl3; in __snd_card_ymfpci_probe() local 324 OPL3_HW_OPL3, 1, &opl3); in __snd_card_ymfpci_probe() 332 err = snd_opl3_hwdep_new(opl3, 0, 1, NULL); in __snd_card_ymfpci_probe()
|
/linux/sound/isa/gus/ |
H A D | gusextreme.c | 228 struct snd_opl3 *opl3; in snd_gusextreme_probe() local 298 OPL3_HW_OPL3, 0, &opl3) < 0) in snd_gusextreme_probe() 301 error = snd_opl3_hwdep_new(opl3, 0, 2, NULL); in snd_gusextreme_probe()
|
/linux/sound/isa/es1688/ |
H A D | es1688.c | 120 struct snd_opl3 *opl3; in snd_es1688_probe() local 142 OPL3_HW_OPL3, 0, &opl3) < 0) in snd_es1688_probe() 146 error = snd_opl3_hwdep_new(opl3, 0, 1, NULL); in snd_es1688_probe()
|
/linux/sound/isa/galaxy/ |
H A D | galaxy.c | 576 struct snd_opl3 *opl3; in __snd_galaxy_probe() local 579 OPL3_HW_AUTO, 0, &opl3); in __snd_galaxy_probe() 584 err = snd_opl3_timer_new(opl3, 1, 2); in __snd_galaxy_probe() 588 err = snd_opl3_hwdep_new(opl3, 0, 1, NULL); in __snd_galaxy_probe()
|
/linux/sound/isa/opti9xx/ |
H A D | opti92x-ad1848.c | 885 struct snd_opl3 *opl3 = NULL; local 895 2, &opl3, &opl4) < 0) { 902 if (!opl3 && snd_opl3_create(card, fm_port, fm_port + 2, 903 OPL3_HW_AUTO, 0, &opl3) < 0) { 907 if (opl3) { 908 error = snd_opl3_hwdep_new(opl3, 0, 1, &synth);
|
/linux/sound/pci/ |
H A D | cs4281.c | 1804 static void snd_cs4281_opl3_command(struct snd_opl3 *opl3, unsigned short cmd, in snd_cs4281_opl3_command() argument 1808 struct cs4281 *chip = opl3->private_data; in snd_cs4281_opl3_command() 1816 spin_lock_irqsave(&opl3->reg_lock, flags); in snd_cs4281_opl3_command() 1824 spin_unlock_irqrestore(&opl3->reg_lock, flags); in snd_cs4281_opl3_command() 1833 struct snd_opl3 *opl3; in __snd_cs4281_probe() local 1862 err = snd_opl3_new(card, OPL3_HW_OPL3_CS4281, &opl3); in __snd_cs4281_probe() 1865 opl3->private_data = chip; in __snd_cs4281_probe() 1866 opl3->command = snd_cs4281_opl3_command; in __snd_cs4281_probe() 1867 snd_opl3_init(opl3); in __snd_cs4281_probe() 1868 err = snd_opl3_hwdep_new(opl3, 0, 1, NULL); in __snd_cs4281_probe()
|
/linux/sound/drivers/ |
H A D | Makefile | 28 obj-$(CONFIG_SND) += opl3/ opl4/ mpu401/ vx/ pcsp/
|