Home
last modified time | relevance | path

Searched refs:opl3 (Results 1 – 25 of 55) sorted by relevance

123

/linux-3.4.99/sound/drivers/opl3/
Dopl3_lib.c41 static void snd_opl2_command(struct snd_opl3 * opl3, unsigned short cmd, unsigned char val) in snd_opl2_command() argument
51 port = (cmd & OPL3_RIGHT) ? opl3->r_port : opl3->l_port; in snd_opl2_command()
53 spin_lock_irqsave(&opl3->reg_lock, flags); in snd_opl2_command()
61 spin_unlock_irqrestore(&opl3->reg_lock, flags); in snd_opl2_command()
64 static void snd_opl3_command(struct snd_opl3 * opl3, unsigned short cmd, unsigned char val) in snd_opl3_command() argument
74 port = (cmd & OPL3_RIGHT) ? opl3->r_port : opl3->l_port; in snd_opl3_command()
76 spin_lock_irqsave(&opl3->reg_lock, flags); in snd_opl3_command()
79 inb(opl3->l_port); in snd_opl3_command()
80 inb(opl3->l_port); in snd_opl3_command()
83 inb(opl3->l_port); in snd_opl3_command()
[all …]
Dopl3_seq.c39 int snd_opl3_synth_use_inc(struct snd_opl3 * opl3) in snd_opl3_synth_use_inc() argument
41 if (!try_module_get(opl3->card->module)) in snd_opl3_synth_use_inc()
47 void snd_opl3_synth_use_dec(struct snd_opl3 * opl3) in snd_opl3_synth_use_dec() argument
49 module_put(opl3->card->module); in snd_opl3_synth_use_dec()
52 int snd_opl3_synth_setup(struct snd_opl3 * opl3) in snd_opl3_synth_setup() argument
55 struct snd_hwdep *hwdep = opl3->hwdep; in snd_opl3_synth_setup()
65 snd_opl3_reset(opl3); in snd_opl3_synth_setup()
68 opl3->voices[idx].state = SNDRV_OPL3_ST_OFF; in snd_opl3_synth_setup()
69 opl3->voices[idx].time = 0; in snd_opl3_synth_setup()
70 opl3->voices[idx].keyon_reg = 0x00; in snd_opl3_synth_setup()
[all …]
Dopl3_midi.c126 static void debug_alloc(struct snd_opl3 *opl3, char *s, int voice) { in debug_alloc() argument
130 printk(KERN_DEBUG "time %.5i: %s [%.2i]: ", opl3->use_time, s, voice); in debug_alloc()
131 for (i = 0; i < opl3->max_voices; i++) in debug_alloc()
132 printk("%c", *(str + opl3->voices[i].state + 1)); in debug_alloc()
140 static int opl3_get_voice(struct snd_opl3 *opl3, int instr_4op, in opl3_get_voice() argument
171 for (i = 0; i < opl3->max_voices; i++) { in opl3_get_voice()
172 vp = &opl3->voices[i]; in opl3_get_voice()
195 vp2 = &opl3->voices[i + 3]; in opl3_get_voice()
242 struct snd_opl3 *opl3 = (struct snd_opl3 *)data; in snd_opl3_timer_func() local
247 spin_lock_irqsave(&opl3->voice_lock, flags); in snd_opl3_timer_func()
[all …]
Dopl3_oss.c60 struct snd_opl3 *opl3 = private_data; in snd_opl3_oss_event_input() local
63 snd_midi_process_event(&opl3_ops, ev, opl3->oss_chset); in snd_opl3_oss_event_input()
71 struct snd_opl3 *opl3 = private_data; in snd_opl3_oss_free_port() local
73 snd_midi_channel_free_set(opl3->oss_chset); in snd_opl3_oss_free_port()
76 static int snd_opl3_oss_create_port(struct snd_opl3 * opl3) in snd_opl3_oss_create_port() argument
82 voices = (opl3->hardware < OPL3_HW_OPL3) ? in snd_opl3_oss_create_port()
84 opl3->oss_chset = snd_midi_channel_alloc_set(voices); in snd_opl3_oss_create_port()
85 if (opl3->oss_chset == NULL) in snd_opl3_oss_create_port()
87 opl3->oss_chset->private_data = opl3; in snd_opl3_oss_create_port()
93 callbacks.private_data = opl3; in snd_opl3_oss_create_port()
[all …]
Dopl3_drums.c83 static void snd_opl3_drum_voice_set(struct snd_opl3 *opl3, in snd_opl3_drum_voice_set() argument
92 opl3->command(opl3, opl3_reg, data->am_vib); in snd_opl3_drum_voice_set()
96 opl3->command(opl3, opl3_reg, data->ksl_level); in snd_opl3_drum_voice_set()
100 opl3->command(opl3, opl3_reg, data->attack_decay); in snd_opl3_drum_voice_set()
104 opl3->command(opl3, opl3_reg, data->sustain_release); in snd_opl3_drum_voice_set()
108 opl3->command(opl3, opl3_reg, data->feedback_connection); in snd_opl3_drum_voice_set()
112 opl3->command(opl3, opl3_reg, data->wave_select); in snd_opl3_drum_voice_set()
118 static void snd_opl3_drum_note_set(struct snd_opl3 *opl3, in snd_opl3_drum_note_set() argument
126 opl3->command(opl3, opl3_reg, data->fnum); in snd_opl3_drum_note_set()
130 opl3->command(opl3, opl3_reg, data->octave_f); in snd_opl3_drum_note_set()
[all …]
Dopl3_synth.c72 static int snd_opl3_play_note(struct snd_opl3 * opl3, struct snd_dm_fm_note * note);
73 static int snd_opl3_set_voice(struct snd_opl3 * opl3, struct snd_dm_fm_voice * voice);
74 static int snd_opl3_set_params(struct snd_opl3 * opl3, struct snd_dm_fm_params * params);
75 static int snd_opl3_set_mode(struct snd_opl3 * opl3, int mode);
76 static int snd_opl3_set_connection(struct snd_opl3 * opl3, int connection);
94 struct snd_opl3 *opl3 = hw->private_data; in snd_opl3_ioctl() local
97 if (snd_BUG_ON(!opl3)) in snd_opl3_ioctl()
106 info.fm_mode = opl3->fm_mode; in snd_opl3_ioctl()
107 info.rhythm = opl3->rhythm; in snd_opl3_ioctl()
117 snd_opl3_reset(opl3); in snd_opl3_ioctl()
[all …]
Dopl3_voice.h25 int snd_opl3_synth_use_inc(struct snd_opl3 * opl3);
26 void snd_opl3_synth_use_dec(struct snd_opl3 * opl3);
27 int snd_opl3_synth_setup(struct snd_opl3 * opl3);
28 void snd_opl3_synth_cleanup(struct snd_opl3 * opl3);
43 void snd_opl3_load_drums(struct snd_opl3 *opl3);
44 void snd_opl3_drum_switch(struct snd_opl3 *opl3, int note, int on_off, int vel, struct snd_midi_cha…
48 void snd_opl3_init_seq_oss(struct snd_opl3 *opl3, char *name);
49 void snd_opl3_free_seq_oss(struct snd_opl3 *opl3);
DMakefile6 snd-opl3-lib-objs := opl3_lib.o opl3_synth.o
7 snd-opl3-synth-y := opl3_seq.o opl3_midi.o opl3_drums.o
8 snd-opl3-synth-$(CONFIG_SND_SEQUENCER_OSS) += opl3_oss.o
10 obj-$(CONFIG_SND_OPL3_LIB) += snd-opl3-lib.o
11 obj-$(CONFIG_SND_OPL4_LIB) += snd-opl3-lib.o
12 obj-$(CONFIG_SND_OPL3_LIB_SEQ) += snd-opl3-synth.o
/linux-3.4.99/include/sound/
Dopl3.h308 void (*command) (struct snd_opl3 * opl3, unsigned short cmd, unsigned char val);
359 int snd_opl3_init(struct snd_opl3 *opl3);
364 struct snd_opl3 ** opl3);
365 int snd_opl3_timer_new(struct snd_opl3 * opl3, int timer1_dev, int timer2_dev);
366 int snd_opl3_hwdep_new(struct snd_opl3 * opl3, int device, int seq_device,
375 void snd_opl3_reset(struct snd_opl3 * opl3);
380 int snd_opl3_load_patch(struct snd_opl3 *opl3,
385 struct fm_patch *snd_opl3_find_patch(struct snd_opl3 *opl3, int prog, int bank,
387 void snd_opl3_clear_patches(struct snd_opl3 *opl3);
390 static inline void snd_opl3_clear_patches(struct snd_opl3 *opl3) {} in snd_opl3_clear_patches() argument
Dopl4.h30 struct snd_opl3 **opl3, struct snd_opl4 **opl4);
/linux-3.4.99/Documentation/sound/oss/
DTropez+11 post-install wavefront modprobe "-k" "opl3"
14 options opl3 io=0x388
21 you can do without the opl3 module if you don't
24 the opl3 io parameter is conventionally not adjustable.
DESS186851 /sbin/insmod opl3 io=0x388
54 opl3 is the FM synthesizer
55 /sbin/insmod opl3 io=0x388
DAudioExcelDSP1646 options opl3 io=0x388
50 Where the aedsp16 options are the options for this driver while opl3 and
58 softdep opl3 pre: aedsp16
61 sound -> aedsp16 -> [ ad1848, opl3 ]
63 With the above configuration, loading ad1848 or opl3 modules, will
DPAS16124 "opl3=<io>" to the kernel command line.
129 insmod opl3
132 options opl3 io=0x388
134 opl3=0x388
151 append="pas2=0x388,10,3,-1,0x220,5,1,-1 sb=0x220,5,1,-1 opl3=0x388"
158 append="pas2=0x388,10,3,-1,0,-1,-1,-1 opl3=0x388"
161 specified in /etc/modprobe.d/*.conf for pas2, sb and opl3
DOpti75 alias synth0 opl3
78 options opl3 io=0x388
94 alias synth0 opl3
103 by the opl3 driver.
117 options opl3 io=0x388
121 This sets resources and options for the mad16 and opl3 drivers.
DOPL33 insmod opl3 io=0x388
/linux-3.4.99/sound/isa/
Dadlib.c53 struct snd_opl3 *opl3; in snd_adlib_probe() local
74 error = snd_opl3_create(card, port[n], port[n] + 2, OPL3_HW_AUTO, 1, &opl3); in snd_adlib_probe()
80 error = snd_opl3_hwdep_new(opl3, 0, 0, NULL); in snd_adlib_probe()
Dazt2320.c185 struct snd_opl3 *opl3; in snd_card_azt2320_probe() local
244 OPL3_HW_AUTO, 0, &opl3) < 0) { in snd_card_azt2320_probe()
248 if ((error = snd_opl3_timer_new(opl3, 1, 2)) < 0) { in snd_card_azt2320_probe()
252 if ((error = snd_opl3_hwdep_new(opl3, 0, 1, NULL)) < 0) { in snd_card_azt2320_probe()
Dals100.c194 struct snd_opl3 *opl3; in snd_card_als100_probe() local
266 OPL3_HW_AUTO, 0, &opl3) < 0) { in snd_card_als100_probe()
270 if ((error = snd_opl3_timer_new(opl3, 0, 1)) < 0) { in snd_card_als100_probe()
274 if ((error = snd_opl3_hwdep_new(opl3, 0, 1, NULL)) < 0) { in snd_card_als100_probe()
/linux-3.4.99/sound/isa/sb/
Dsb8.c102 struct snd_opl3 *opl3; in snd_sb8_probe() local
169 &opl3)) < 0) { in snd_sb8_probe()
175 &opl3)) < 0) { in snd_sb8_probe()
181 if ((err = snd_opl3_hwdep_new(opl3, 0, 1, NULL)) < 0) in snd_sb8_probe()
Djazz16.c226 struct snd_opl3 *opl3; in snd_jazz16_probe() local
308 OPL3_HW_AUTO, 1, &opl3); in snd_jazz16_probe()
313 err = snd_opl3_hwdep_new(opl3, 0, 1, NULL); in snd_jazz16_probe()
/linux-3.4.99/sound/isa/ad1816a/
Dad1816a.c158 struct snd_opl3 *opl3; in snd_card_ad1816a_probe() local
215 OPL3_HW_AUTO, 0, &opl3) < 0) { in snd_card_ad1816a_probe()
218 error = snd_opl3_hwdep_new(opl3, 0, 1, NULL); in snd_card_ad1816a_probe()
/linux-3.4.99/sound/drivers/opl4/
Dopl4_lib.c200 struct snd_opl3 *opl3; in snd_opl4_create() local
242 err = snd_opl3_create(card, fm_port, fm_port + 2, opl4->hardware, 1, &opl3); in snd_opl4_create()
263 *ropl3 = opl3; in snd_opl4_create()
/linux-3.4.99/sound/pci/ymfpci/
Dymfpci.c178 struct snd_opl3 *opl3; in snd_card_ymfpci_probe() local
325 OPL3_HW_OPL3, 1, &opl3)) < 0) { in snd_card_ymfpci_probe()
329 } else if ((err = snd_opl3_hwdep_new(opl3, 0, 1, NULL)) < 0) { in snd_card_ymfpci_probe()
/linux-3.4.99/sound/isa/es1688/
Des1688.c140 struct snd_opl3 *opl3; in snd_es1688_probe() local
163 OPL3_HW_OPL3, 0, &opl3) < 0) in snd_es1688_probe()
167 error = snd_opl3_hwdep_new(opl3, 0, 1, NULL); in snd_es1688_probe()

123