2 * QEMU Proxy for Gravis Ultrasound GF1 emulation by Tibor "TS" Schütz
4 * Copyright (c) 2002-2005 Vassili Karpov (malc)
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 #include "hw/audio/audio.h"
26 #include "audio/audio.h"
27 #include "hw/isa/isa.h"
31 #define dolog(...) AUD_log ("audio", __VA_ARGS__)
33 #define ldebug(...) dolog (__VA_ARGS__)
38 #ifdef HOST_WORDS_BIGENDIAN
39 #define GUS_ENDIANNESS 1
41 #define GUS_ENDIANNESS 0
44 #define IO_READ_PROTO(name) \
45 static uint32_t name (void *opaque, uint32_t nport)
46 #define IO_WRITE_PROTO(name) \
47 static void name (void *opaque, uint32_t nport, uint32_t val)
49 #define TYPE_GUS "gus"
50 #define GUS(obj) OBJECT_CHECK (GUSState, (obj), TYPE_GUS)
52 typedef struct GUSState
{
58 int pos
, left
, shift
, irqs
;
60 uint8_t himem
[1024 * 1024 + 32 + 4096];
67 IO_READ_PROTO (gus_readb
)
71 return gus_read (&s
->emu
, nport
, 1);
74 IO_READ_PROTO (gus_readw
)
78 return gus_read (&s
->emu
, nport
, 2);
81 IO_WRITE_PROTO (gus_writeb
)
85 gus_write (&s
->emu
, nport
, 1, val
);
88 IO_WRITE_PROTO (gus_writew
)
92 gus_write (&s
->emu
, nport
, 2, val
);
95 static int write_audio (GUSState
*s
, int samples
)
101 int nbytes
, wbytes
, wsampl
;
103 nbytes
= samples
<< s
->shift
;
106 s
->mixbuf
+ (pos
<< (s
->shift
- 1)),
111 wsampl
= wbytes
>> s
->shift
;
114 pos
= (pos
+ wsampl
) % s
->samples
;
126 static void GUS_callback (void *opaque
, int free
)
128 int samples
, to_play
, net
= 0;
129 GUSState
*s
= opaque
;
131 samples
= free
>> s
->shift
;
132 to_play
= audio_MIN (samples
, s
->left
);
135 int written
= write_audio (s
, to_play
);
147 samples
= audio_MIN (samples
, s
->samples
);
149 gus_mixvoices (&s
->emu
, s
->freq
, samples
, s
->mixbuf
);
152 int written
= write_audio (s
, samples
);
163 gus_irqgen (&s
->emu
, muldiv64 (net
, 1000000, s
->freq
));
166 int GUS_irqrequest (GUSEmuState
*emu
, int hwirq
, int n
)
168 GUSState
*s
= emu
->opaque
;
169 /* qemu_irq_lower (s->pic); */
170 qemu_irq_raise (s
->pic
);
172 ldebug ("irqrequest %d %d %d\n", hwirq
, n
, s
->irqs
);
176 void GUS_irqclear (GUSEmuState
*emu
, int hwirq
)
178 GUSState
*s
= emu
->opaque
;
179 ldebug ("irqclear %d %d\n", hwirq
, s
->irqs
);
180 qemu_irq_lower (s
->pic
);
184 qemu_irq_raise (s
->pic
[hwirq
]);
189 void GUS_dmarequest (GUSEmuState
*der
)
191 /* GUSState *s = (GUSState *) der; */
192 ldebug ("dma request %d\n", der
->gusdma
);
193 DMA_hold_DREQ (der
->gusdma
);
196 static int GUS_read_DMA (void *opaque
, int nchan
, int dma_pos
, int dma_len
)
198 GUSState
*s
= opaque
;
200 int pos
= dma_pos
, mode
, left
= dma_len
- dma_pos
;
202 ldebug ("read DMA %#x %d\n", dma_pos
, dma_len
);
203 mode
= DMA_get_channel_mode (s
->emu
.gusdma
);
205 int to_copy
= audio_MIN ((size_t) left
, sizeof (tmpbuf
));
208 ldebug ("left=%d to_copy=%d pos=%d\n", left
, to_copy
, pos
);
209 copied
= DMA_read_memory (nchan
, tmpbuf
, pos
, to_copy
);
210 gus_dma_transferdata (&s
->emu
, tmpbuf
, copied
, left
== copied
);
215 if (0 == ((mode
>> 4) & 1)) {
216 DMA_release_DREQ (s
->emu
.gusdma
);
221 static const VMStateDescription vmstate_gus
= {
224 .minimum_version_id
= 2,
225 .minimum_version_id_old
= 2,
226 .fields
= (VMStateField
[]) {
227 VMSTATE_INT32 (pos
, GUSState
),
228 VMSTATE_INT32 (left
, GUSState
),
229 VMSTATE_INT32 (shift
, GUSState
),
230 VMSTATE_INT32 (irqs
, GUSState
),
231 VMSTATE_INT32 (samples
, GUSState
),
232 VMSTATE_INT64 (last_ticks
, GUSState
),
233 VMSTATE_BUFFER (himem
, GUSState
),
234 VMSTATE_END_OF_LIST ()
238 static const MemoryRegionPortio gus_portio_list1
[] = {
239 {0x000, 1, 1, .write
= gus_writeb
},
240 {0x000, 1, 2, .write
= gus_writew
},
241 {0x006, 10, 1, .read
= gus_readb
, .write
= gus_writeb
},
242 {0x006, 10, 2, .read
= gus_readw
, .write
= gus_writew
},
243 {0x100, 8, 1, .read
= gus_readb
, .write
= gus_writeb
},
244 {0x100, 8, 2, .read
= gus_readw
, .write
= gus_writew
},
245 PORTIO_END_OF_LIST (),
248 static const MemoryRegionPortio gus_portio_list2
[] = {
249 {0, 1, 1, .read
= gus_readb
},
250 {0, 1, 2, .read
= gus_readw
},
251 PORTIO_END_OF_LIST (),
254 static void gus_realizefn (DeviceState
*dev
, Error
**errp
)
256 ISADevice
*d
= ISA_DEVICE(dev
);
257 GUSState
*s
= GUS (dev
);
258 struct audsettings as
;
260 AUD_register_card ("gus", &s
->card
);
264 as
.fmt
= AUD_FMT_S16
;
265 as
.endianness
= GUS_ENDIANNESS
;
267 s
->voice
= AUD_open_out (
277 AUD_remove_card (&s
->card
);
278 error_setg(errp
, "No voice");
283 s
->samples
= AUD_get_buffer_size_out (s
->voice
) >> s
->shift
;
284 s
->mixbuf
= g_malloc0 (s
->samples
<< s
->shift
);
286 isa_register_portio_list (d
, s
->port
, gus_portio_list1
, s
, "gus");
287 isa_register_portio_list (d
, (s
->port
+ 0x100) & 0xf00,
288 gus_portio_list2
, s
, "gus");
290 DMA_register_channel (s
->emu
.gusdma
, GUS_read_DMA
, s
);
291 s
->emu
.himemaddr
= s
->himem
;
292 s
->emu
.gusdatapos
= s
->emu
.himemaddr
+ 1024 * 1024 + 32;
294 isa_init_irq (d
, &s
->pic
, s
->emu
.gusirq
);
296 AUD_set_active_out (s
->voice
, 1);
299 static int GUS_init (ISABus
*bus
)
301 isa_create_simple (bus
, TYPE_GUS
);
305 static Property gus_properties
[] = {
306 DEFINE_PROP_UINT32 ("freq", GUSState
, freq
, 44100),
307 DEFINE_PROP_UINT32 ("iobase", GUSState
, port
, 0x240),
308 DEFINE_PROP_UINT32 ("irq", GUSState
, emu
.gusirq
, 7),
309 DEFINE_PROP_UINT32 ("dma", GUSState
, emu
.gusdma
, 3),
310 DEFINE_PROP_END_OF_LIST (),
313 static void gus_class_initfn (ObjectClass
*klass
, void *data
)
315 DeviceClass
*dc
= DEVICE_CLASS (klass
);
317 dc
->realize
= gus_realizefn
;
318 set_bit(DEVICE_CATEGORY_SOUND
, dc
->categories
);
319 dc
->desc
= "Gravis Ultrasound GF1";
320 dc
->vmsd
= &vmstate_gus
;
321 dc
->props
= gus_properties
;
324 static const TypeInfo gus_info
= {
326 .parent
= TYPE_ISA_DEVICE
,
327 .instance_size
= sizeof (GUSState
),
328 .class_init
= gus_class_initfn
,
331 static void gus_register_types (void)
333 type_register_static (&gus_info
);
334 isa_register_soundhw("gus", "Gravis Ultrasound GF1", GUS_init
);
337 type_init (gus_register_types
)