2 * Functions for accessing OPL4 devices
3 * Copyright (c) 2003 by Clemens Ladisch <clemens@ladisch.de>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 #include "opl4_local.h"
21 #include <sound/initval.h>
22 #include <linux/ioport.h>
23 #include <linux/init.h>
26 MODULE_AUTHOR("Clemens Ladisch <clemens@ladisch.de>");
27 MODULE_DESCRIPTION("OPL4 driver");
28 MODULE_LICENSE("GPL");
30 static void inline snd_opl4_wait(opl4_t
*opl4
)
33 while ((inb(opl4
->fm_port
) & OPL4_STATUS_BUSY
) && --timeout
> 0)
37 void snd_opl4_write(opl4_t
*opl4
, u8 reg
, u8 value
)
40 outb(reg
, opl4
->pcm_port
);
43 outb(value
, opl4
->pcm_port
+ 1);
46 u8
snd_opl4_read(opl4_t
*opl4
, u8 reg
)
49 outb(reg
, opl4
->pcm_port
);
52 return inb(opl4
->pcm_port
+ 1);
55 void snd_opl4_read_memory(opl4_t
*opl4
, char *buf
, int offset
, int size
)
60 spin_lock_irqsave(&opl4
->reg_lock
, flags
);
62 memcfg
= snd_opl4_read(opl4
, OPL4_REG_MEMORY_CONFIGURATION
);
63 snd_opl4_write(opl4
, OPL4_REG_MEMORY_CONFIGURATION
, memcfg
| OPL4_MODE_BIT
);
65 snd_opl4_write(opl4
, OPL4_REG_MEMORY_ADDRESS_HIGH
, offset
>> 16);
66 snd_opl4_write(opl4
, OPL4_REG_MEMORY_ADDRESS_MID
, offset
>> 8);
67 snd_opl4_write(opl4
, OPL4_REG_MEMORY_ADDRESS_LOW
, offset
);
70 outb(OPL4_REG_MEMORY_DATA
, opl4
->pcm_port
);
72 insb(opl4
->pcm_port
+ 1, buf
, size
);
74 snd_opl4_write(opl4
, OPL4_REG_MEMORY_CONFIGURATION
, memcfg
);
76 spin_unlock_irqrestore(&opl4
->reg_lock
, flags
);
79 void snd_opl4_write_memory(opl4_t
*opl4
, const char *buf
, int offset
, int size
)
84 spin_lock_irqsave(&opl4
->reg_lock
, flags
);
86 memcfg
= snd_opl4_read(opl4
, OPL4_REG_MEMORY_CONFIGURATION
);
87 snd_opl4_write(opl4
, OPL4_REG_MEMORY_CONFIGURATION
, memcfg
| OPL4_MODE_BIT
);
89 snd_opl4_write(opl4
, OPL4_REG_MEMORY_ADDRESS_HIGH
, offset
>> 16);
90 snd_opl4_write(opl4
, OPL4_REG_MEMORY_ADDRESS_MID
, offset
>> 8);
91 snd_opl4_write(opl4
, OPL4_REG_MEMORY_ADDRESS_LOW
, offset
);
94 outb(OPL4_REG_MEMORY_DATA
, opl4
->pcm_port
);
96 outsb(opl4
->pcm_port
+ 1, buf
, size
);
98 snd_opl4_write(opl4
, OPL4_REG_MEMORY_CONFIGURATION
, memcfg
);
100 spin_unlock_irqrestore(&opl4
->reg_lock
, flags
);
103 static void snd_opl4_enable_opl4(opl4_t
*opl4
)
105 outb(OPL3_REG_MODE
, opl4
->fm_port
+ 2);
108 outb(OPL3_OPL3_ENABLE
| OPL3_OPL4_ENABLE
, opl4
->fm_port
+ 3);
113 static int snd_opl4_detect(opl4_t
*opl4
)
117 snd_opl4_enable_opl4(opl4
);
119 id1
= snd_opl4_read(opl4
, OPL4_REG_MEMORY_CONFIGURATION
);
120 snd_printdd("OPL4[02]=%02x\n", id1
);
121 switch (id1
& OPL4_DEVICE_ID_MASK
) {
123 opl4
->hardware
= OPL3_HW_OPL4
;
126 opl4
->hardware
= OPL3_HW_OPL4_ML
;
132 snd_opl4_write(opl4
, OPL4_REG_MIX_CONTROL_FM
, 0x00);
133 snd_opl4_write(opl4
, OPL4_REG_MIX_CONTROL_PCM
, 0xff);
134 id1
= snd_opl4_read(opl4
, OPL4_REG_MIX_CONTROL_FM
);
135 id2
= snd_opl4_read(opl4
, OPL4_REG_MIX_CONTROL_PCM
);
136 snd_printdd("OPL4 id1=%02x id2=%02x\n", id1
, id2
);
137 if (id1
!= 0x00 || id2
!= 0xff)
140 snd_opl4_write(opl4
, OPL4_REG_MIX_CONTROL_FM
, 0x3f);
141 snd_opl4_write(opl4
, OPL4_REG_MIX_CONTROL_PCM
, 0x3f);
142 snd_opl4_write(opl4
, OPL4_REG_MEMORY_CONFIGURATION
, 0x00);
146 #if defined(CONFIG_SND_SEQUENCER) || (defined(MODULE) && defined(CONFIG_SND_SEQUENCER_MODULE))
147 static void snd_opl4_seq_dev_free(snd_seq_device_t
*seq_dev
)
149 opl4_t
*opl4
= seq_dev
->private_data
;
150 opl4
->seq_dev
= NULL
;
153 static int snd_opl4_create_seq_dev(opl4_t
*opl4
, int seq_device
)
155 opl4
->seq_dev_num
= seq_device
;
156 if (snd_seq_device_new(opl4
->card
, seq_device
, SNDRV_SEQ_DEV_ID_OPL4
,
157 sizeof(opl4_t
*), &opl4
->seq_dev
) >= 0) {
158 strcpy(opl4
->seq_dev
->name
, "OPL4 Wavetable");
159 *(opl4_t
**)SNDRV_SEQ_DEVICE_ARGPTR(opl4
->seq_dev
) = opl4
;
160 opl4
->seq_dev
->private_data
= opl4
;
161 opl4
->seq_dev
->private_free
= snd_opl4_seq_dev_free
;
167 static void snd_opl4_free(opl4_t
*opl4
)
169 #ifdef CONFIG_PROC_FS
170 snd_opl4_free_proc(opl4
);
172 if (opl4
->res_fm_port
) {
173 release_resource(opl4
->res_fm_port
);
174 kfree_nocheck(opl4
->res_fm_port
);
176 if (opl4
->res_pcm_port
) {
177 release_resource(opl4
->res_pcm_port
);
178 kfree_nocheck(opl4
->res_pcm_port
);
183 static int snd_opl4_dev_free(snd_device_t
*device
)
185 opl4_t
*opl4
= device
->device_data
;
190 int snd_opl4_create(snd_card_t
*card
,
191 unsigned long fm_port
, unsigned long pcm_port
,
193 opl3_t
**ropl3
, opl4_t
**ropl4
)
198 static snd_device_ops_t ops
= {
199 .dev_free
= snd_opl4_dev_free
207 opl4
= kcalloc(1, sizeof(*opl4
), GFP_KERNEL
);
211 opl4
->res_fm_port
= request_region(fm_port
, 8, "OPL4 FM");
212 opl4
->res_pcm_port
= request_region(pcm_port
, 8, "OPL4 PCM/MIX");
213 if (!opl4
->res_fm_port
|| !opl4
->res_pcm_port
) {
214 snd_printk(KERN_ERR
"opl4: can't grab ports 0x%lx, 0x%lx\n", fm_port
, pcm_port
);
220 opl4
->fm_port
= fm_port
;
221 opl4
->pcm_port
= pcm_port
;
222 spin_lock_init(&opl4
->reg_lock
);
223 init_MUTEX(&opl4
->access_mutex
);
225 err
= snd_opl4_detect(opl4
);
228 snd_printd("OPL4 chip not detected at %#lx/%#lx\n", fm_port
, pcm_port
);
232 err
= snd_device_new(card
, SNDRV_DEV_CODEC
, opl4
, &ops
);
238 err
= snd_opl3_create(card
, fm_port
, fm_port
+ 2, opl4
->hardware
, 1, &opl3
);
240 snd_device_free(card
, opl4
);
244 /* opl3 initialization disabled opl4, so reenable */
245 snd_opl4_enable_opl4(opl4
);
247 snd_opl4_create_mixer(opl4
);
248 #ifdef CONFIG_PROC_FS
249 snd_opl4_create_proc(opl4
);
252 #if defined(CONFIG_SND_SEQUENCER) || (defined(MODULE) && defined(CONFIG_SND_SEQUENCER_MODULE))
253 opl4
->seq_client
= -1;
254 if (opl4
->hardware
< OPL3_HW_OPL4_ML
)
255 snd_opl4_create_seq_dev(opl4
, seq_device
);
265 EXPORT_SYMBOL(snd_opl4_write
);
266 EXPORT_SYMBOL(snd_opl4_read
);
267 EXPORT_SYMBOL(snd_opl4_write_memory
);
268 EXPORT_SYMBOL(snd_opl4_read_memory
);
269 EXPORT_SYMBOL(snd_opl4_create
);
271 static int __init
alsa_opl4_init(void)
276 static void __exit
alsa_opl4_exit(void)
280 module_init(alsa_opl4_init
)
281 module_exit(alsa_opl4_exit
)