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/slab.h>
24 #include <linux/init.h>
25 #include <linux/module.h>
28 MODULE_AUTHOR("Clemens Ladisch <clemens@ladisch.de>");
29 MODULE_DESCRIPTION("OPL4 driver");
30 MODULE_LICENSE("GPL");
32 static void inline snd_opl4_wait(struct snd_opl4
*opl4
)
35 while ((inb(opl4
->fm_port
) & OPL4_STATUS_BUSY
) && --timeout
> 0)
39 void snd_opl4_write(struct snd_opl4
*opl4
, u8 reg
, u8 value
)
42 outb(reg
, opl4
->pcm_port
);
45 outb(value
, opl4
->pcm_port
+ 1);
48 EXPORT_SYMBOL(snd_opl4_write
);
50 u8
snd_opl4_read(struct snd_opl4
*opl4
, u8 reg
)
53 outb(reg
, opl4
->pcm_port
);
56 return inb(opl4
->pcm_port
+ 1);
59 EXPORT_SYMBOL(snd_opl4_read
);
61 void snd_opl4_read_memory(struct snd_opl4
*opl4
, char *buf
, int offset
, int size
)
66 spin_lock_irqsave(&opl4
->reg_lock
, flags
);
68 memcfg
= snd_opl4_read(opl4
, OPL4_REG_MEMORY_CONFIGURATION
);
69 snd_opl4_write(opl4
, OPL4_REG_MEMORY_CONFIGURATION
, memcfg
| OPL4_MODE_BIT
);
71 snd_opl4_write(opl4
, OPL4_REG_MEMORY_ADDRESS_HIGH
, offset
>> 16);
72 snd_opl4_write(opl4
, OPL4_REG_MEMORY_ADDRESS_MID
, offset
>> 8);
73 snd_opl4_write(opl4
, OPL4_REG_MEMORY_ADDRESS_LOW
, offset
);
76 outb(OPL4_REG_MEMORY_DATA
, opl4
->pcm_port
);
78 insb(opl4
->pcm_port
+ 1, buf
, size
);
80 snd_opl4_write(opl4
, OPL4_REG_MEMORY_CONFIGURATION
, memcfg
);
82 spin_unlock_irqrestore(&opl4
->reg_lock
, flags
);
85 EXPORT_SYMBOL(snd_opl4_read_memory
);
87 void snd_opl4_write_memory(struct snd_opl4
*opl4
, const char *buf
, int offset
, int size
)
92 spin_lock_irqsave(&opl4
->reg_lock
, flags
);
94 memcfg
= snd_opl4_read(opl4
, OPL4_REG_MEMORY_CONFIGURATION
);
95 snd_opl4_write(opl4
, OPL4_REG_MEMORY_CONFIGURATION
, memcfg
| OPL4_MODE_BIT
);
97 snd_opl4_write(opl4
, OPL4_REG_MEMORY_ADDRESS_HIGH
, offset
>> 16);
98 snd_opl4_write(opl4
, OPL4_REG_MEMORY_ADDRESS_MID
, offset
>> 8);
99 snd_opl4_write(opl4
, OPL4_REG_MEMORY_ADDRESS_LOW
, offset
);
102 outb(OPL4_REG_MEMORY_DATA
, opl4
->pcm_port
);
104 outsb(opl4
->pcm_port
+ 1, buf
, size
);
106 snd_opl4_write(opl4
, OPL4_REG_MEMORY_CONFIGURATION
, memcfg
);
108 spin_unlock_irqrestore(&opl4
->reg_lock
, flags
);
111 EXPORT_SYMBOL(snd_opl4_write_memory
);
113 static void snd_opl4_enable_opl4(struct snd_opl4
*opl4
)
115 outb(OPL3_REG_MODE
, opl4
->fm_port
+ 2);
118 outb(OPL3_OPL3_ENABLE
| OPL3_OPL4_ENABLE
, opl4
->fm_port
+ 3);
123 static int snd_opl4_detect(struct snd_opl4
*opl4
)
127 snd_opl4_enable_opl4(opl4
);
129 id1
= snd_opl4_read(opl4
, OPL4_REG_MEMORY_CONFIGURATION
);
130 snd_printdd("OPL4[02]=%02x\n", id1
);
131 switch (id1
& OPL4_DEVICE_ID_MASK
) {
133 opl4
->hardware
= OPL3_HW_OPL4
;
136 opl4
->hardware
= OPL3_HW_OPL4_ML
;
142 snd_opl4_write(opl4
, OPL4_REG_MIX_CONTROL_FM
, 0x00);
143 snd_opl4_write(opl4
, OPL4_REG_MIX_CONTROL_PCM
, 0xff);
144 id1
= snd_opl4_read(opl4
, OPL4_REG_MIX_CONTROL_FM
);
145 id2
= snd_opl4_read(opl4
, OPL4_REG_MIX_CONTROL_PCM
);
146 snd_printdd("OPL4 id1=%02x id2=%02x\n", id1
, id2
);
147 if (id1
!= 0x00 || id2
!= 0xff)
150 snd_opl4_write(opl4
, OPL4_REG_MIX_CONTROL_FM
, 0x3f);
151 snd_opl4_write(opl4
, OPL4_REG_MIX_CONTROL_PCM
, 0x3f);
152 snd_opl4_write(opl4
, OPL4_REG_MEMORY_CONFIGURATION
, 0x00);
156 #if defined(CONFIG_SND_SEQUENCER) || (defined(MODULE) && defined(CONFIG_SND_SEQUENCER_MODULE))
157 static void snd_opl4_seq_dev_free(struct snd_seq_device
*seq_dev
)
159 struct snd_opl4
*opl4
= seq_dev
->private_data
;
160 opl4
->seq_dev
= NULL
;
163 static int snd_opl4_create_seq_dev(struct snd_opl4
*opl4
, int seq_device
)
165 opl4
->seq_dev_num
= seq_device
;
166 if (snd_seq_device_new(opl4
->card
, seq_device
, SNDRV_SEQ_DEV_ID_OPL4
,
167 sizeof(struct snd_opl4
*), &opl4
->seq_dev
) >= 0) {
168 strcpy(opl4
->seq_dev
->name
, "OPL4 Wavetable");
169 *(struct snd_opl4
**)SNDRV_SEQ_DEVICE_ARGPTR(opl4
->seq_dev
) = opl4
;
170 opl4
->seq_dev
->private_data
= opl4
;
171 opl4
->seq_dev
->private_free
= snd_opl4_seq_dev_free
;
177 static void snd_opl4_free(struct snd_opl4
*opl4
)
179 snd_opl4_free_proc(opl4
);
180 release_and_free_resource(opl4
->res_fm_port
);
181 release_and_free_resource(opl4
->res_pcm_port
);
185 static int snd_opl4_dev_free(struct snd_device
*device
)
187 struct snd_opl4
*opl4
= device
->device_data
;
192 int snd_opl4_create(struct snd_card
*card
,
193 unsigned long fm_port
, unsigned long pcm_port
,
195 struct snd_opl3
**ropl3
, struct snd_opl4
**ropl4
)
197 struct snd_opl4
*opl4
;
198 struct snd_opl3
*opl3
;
200 static struct snd_device_ops ops
= {
201 .dev_free
= snd_opl4_dev_free
209 opl4
= kzalloc(sizeof(*opl4
), GFP_KERNEL
);
213 opl4
->res_fm_port
= request_region(fm_port
, 8, "OPL4 FM");
214 opl4
->res_pcm_port
= request_region(pcm_port
, 8, "OPL4 PCM/MIX");
215 if (!opl4
->res_fm_port
|| !opl4
->res_pcm_port
) {
216 snd_printk(KERN_ERR
"opl4: can't grab ports 0x%lx, 0x%lx\n", fm_port
, pcm_port
);
222 opl4
->fm_port
= fm_port
;
223 opl4
->pcm_port
= pcm_port
;
224 spin_lock_init(&opl4
->reg_lock
);
225 mutex_init(&opl4
->access_mutex
);
227 err
= snd_opl4_detect(opl4
);
230 snd_printd("OPL4 chip not detected at %#lx/%#lx\n", fm_port
, pcm_port
);
234 err
= snd_device_new(card
, SNDRV_DEV_CODEC
, opl4
, &ops
);
240 err
= snd_opl3_create(card
, fm_port
, fm_port
+ 2, opl4
->hardware
, 1, &opl3
);
242 snd_device_free(card
, opl4
);
246 /* opl3 initialization disabled opl4, so reenable */
247 snd_opl4_enable_opl4(opl4
);
249 snd_opl4_create_mixer(opl4
);
250 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_create
);
267 static int __init
alsa_opl4_init(void)
272 static void __exit
alsa_opl4_exit(void)
276 module_init(alsa_opl4_init
)
277 module_exit(alsa_opl4_exit
)