blob: 334935f8d9e4941a68dbafb575c8434e2ad240b8 [file] [log] [blame]
bellard85571bc2004-11-07 18:04:02 +00001/*
bellard1d14ffa2005-10-30 18:58:22 +00002 * QEMU Proxy for OPL2/3 emulation by MAME team
3 *
4 * Copyright (c) 2004-2005 Vassili Karpov (malc)
5 *
bellard85571bc2004-11-07 18:04:02 +00006 * 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:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
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
22 * THE SOFTWARE.
23 */
ths9f0683d2007-12-02 17:47:33 +000024
Paolo Bonzini83c9f4c2013-02-04 15:40:22 +010025#include "hw/hw.h"
Paolo Bonzini0d09e412013-02-05 17:06:20 +010026#include "hw/audio/audio.h"
thse140e052007-12-02 17:17:45 +000027#include "audio/audio.h"
Paolo Bonzini0d09e412013-02-05 17:06:20 +010028#include "hw/isa/isa.h"
bellard85571bc2004-11-07 18:04:02 +000029
ths9f0683d2007-12-02 17:47:33 +000030//#define DEBUG
31
bellard1d14ffa2005-10-30 18:58:22 +000032#define ADLIB_KILL_TIMERS 1
33
Paolo Bonzini8c444a12013-04-18 18:43:57 +020034#ifdef HAS_YMF262
35#define ADLIB_DESC "Yamaha YMF262 (OPL3)"
36#else
37#define ADLIB_DESC "Yamaha YM3812 (OPL2)"
38#endif
39
ths9f0683d2007-12-02 17:47:33 +000040#ifdef DEBUG
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010041#include "qemu/timer.h"
ths9f0683d2007-12-02 17:47:33 +000042#endif
43
bellardfb065182004-11-09 23:09:44 +000044#define dolog(...) AUD_log ("adlib", __VA_ARGS__)
45#ifdef DEBUG
46#define ldebug(...) dolog (__VA_ARGS__)
47#else
48#define ldebug(...)
49#endif
bellard85571bc2004-11-07 18:04:02 +000050
bellard1d14ffa2005-10-30 18:58:22 +000051#ifdef HAS_YMF262
bellard85571bc2004-11-07 18:04:02 +000052#include "ymf262.h"
bellard1d14ffa2005-10-30 18:58:22 +000053void YMF262UpdateOneQEMU (int which, INT16 *dst, int length);
bellard85571bc2004-11-07 18:04:02 +000054#define SHIFT 2
55#else
Paolo Bonzini47b43a12013-03-18 17:36:02 +010056#include "fmopl.h"
bellard85571bc2004-11-07 18:04:02 +000057#define SHIFT 1
58#endif
59
Paolo Bonzini8c444a12013-04-18 18:43:57 +020060#define TYPE_ADLIB "adlib"
61#define ADLIB(obj) OBJECT_CHECK(AdlibState, (obj), TYPE_ADLIB)
bellard85571bc2004-11-07 18:04:02 +000062
63typedef struct {
Paolo Bonzini8c444a12013-04-18 18:43:57 +020064 ISADevice parent_obj;
65
bellardc0fe3822005-11-05 18:55:28 +000066 QEMUSoundCard card;
Paolo Bonzini8c444a12013-04-18 18:43:57 +020067 uint32_t freq;
68 uint32_t port;
bellard1d14ffa2005-10-30 18:58:22 +000069 int ticking[2];
bellard85571bc2004-11-07 18:04:02 +000070 int enabled;
71 int active;
bellard85571bc2004-11-07 18:04:02 +000072 int bufpos;
bellard1d14ffa2005-10-30 18:58:22 +000073#ifdef DEBUG
74 int64_t exp[2];
75#endif
bellard85571bc2004-11-07 18:04:02 +000076 int16_t *mixbuf;
bellard1d14ffa2005-10-30 18:58:22 +000077 uint64_t dexp[2];
78 SWVoiceOut *voice;
79 int left, pos, samples;
80 QEMUAudioTimeStamp ats;
81#ifndef HAS_YMF262
bellard85571bc2004-11-07 18:04:02 +000082 FM_OPL *opl;
83#endif
Kirill Batuzov848696b2014-04-29 17:38:39 +040084 PortioList port_list;
bellard85571bc2004-11-07 18:04:02 +000085} AdlibState;
86
Paolo Bonzini8c444a12013-04-18 18:43:57 +020087static AdlibState *glob_adlib;
bellard85571bc2004-11-07 18:04:02 +000088
bellard1d14ffa2005-10-30 18:58:22 +000089static void adlib_stop_opl_timer (AdlibState *s, size_t n)
90{
91#ifdef HAS_YMF262
92 YMF262TimerOver (0, n);
93#else
94 OPLTimerOver (s->opl, n);
95#endif
96 s->ticking[n] = 0;
97}
98
99static void adlib_kill_timers (AdlibState *s)
100{
101 size_t i;
102
103 for (i = 0; i < 2; ++i) {
104 if (s->ticking[i]) {
105 uint64_t delta;
106
bellardc0fe3822005-11-05 18:55:28 +0000107 delta = AUD_get_elapsed_usec_out (s->voice, &s->ats);
bellard1d14ffa2005-10-30 18:58:22 +0000108 ldebug (
109 "delta = %f dexp = %f expired => %d\n",
110 delta / 1000000.0,
111 s->dexp[i] / 1000000.0,
112 delta >= s->dexp[i]
113 );
114 if (ADLIB_KILL_TIMERS || delta >= s->dexp[i]) {
115 adlib_stop_opl_timer (s, i);
116 AUD_init_time_stamp_out (s->voice, &s->ats);
117 }
118 }
119 }
120}
121
Nutan Shinde8307c292015-10-07 22:02:54 +0530122static void adlib_write(void *opaque, uint32_t nport, uint32_t val)
bellard85571bc2004-11-07 18:04:02 +0000123{
124 AdlibState *s = opaque;
125 int a = nport & 3;
bellard85571bc2004-11-07 18:04:02 +0000126
bellard85571bc2004-11-07 18:04:02 +0000127 s->active = 1;
bellard1d14ffa2005-10-30 18:58:22 +0000128 AUD_set_active_out (s->voice, 1);
bellard85571bc2004-11-07 18:04:02 +0000129
bellard1d14ffa2005-10-30 18:58:22 +0000130 adlib_kill_timers (s);
131
132#ifdef HAS_YMF262
Hervé Poussineaue8beeae2011-09-18 16:27:23 +0200133 YMF262Write (0, a, val);
bellard85571bc2004-11-07 18:04:02 +0000134#else
Hervé Poussineaue8beeae2011-09-18 16:27:23 +0200135 OPLWrite (s->opl, a, val);
bellard85571bc2004-11-07 18:04:02 +0000136#endif
137}
138
Nutan Shinde8307c292015-10-07 22:02:54 +0530139static uint32_t adlib_read(void *opaque, uint32_t nport)
bellard85571bc2004-11-07 18:04:02 +0000140{
141 AdlibState *s = opaque;
142 uint8_t data;
143 int a = nport & 3;
144
bellard1d14ffa2005-10-30 18:58:22 +0000145 adlib_kill_timers (s);
146
147#ifdef HAS_YMF262
bellard85571bc2004-11-07 18:04:02 +0000148 data = YMF262Read (0, a);
149#else
150 data = OPLRead (s->opl, a);
151#endif
152 return data;
153}
154
bellard1d14ffa2005-10-30 18:58:22 +0000155static void timer_handler (int c, double interval_Sec)
bellard85571bc2004-11-07 18:04:02 +0000156{
Paolo Bonzini8c444a12013-04-18 18:43:57 +0200157 AdlibState *s = glob_adlib;
bellard1d14ffa2005-10-30 18:58:22 +0000158 unsigned n = c & 1;
159#ifdef DEBUG
160 double interval;
bellardc0fe3822005-11-05 18:55:28 +0000161 int64_t exp;
bellard1d14ffa2005-10-30 18:58:22 +0000162#endif
163
bellard85571bc2004-11-07 18:04:02 +0000164 if (interval_Sec == 0.0) {
bellard1d14ffa2005-10-30 18:58:22 +0000165 s->ticking[n] = 0;
bellard85571bc2004-11-07 18:04:02 +0000166 return;
167 }
bellard1d14ffa2005-10-30 18:58:22 +0000168
169 s->ticking[n] = 1;
170#ifdef DEBUG
malccf4dc462012-02-07 22:11:04 +0400171 interval = get_ticks_per_sec () * interval_Sec;
Alex Blighbc72ad62013-08-21 16:03:08 +0100172 exp = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) + interval;
bellard1d14ffa2005-10-30 18:58:22 +0000173 s->exp[n] = exp;
174#endif
175
176 s->dexp[n] = interval_Sec * 1000000.0;
177 AUD_init_time_stamp_out (s->voice, &s->ats);
bellard85571bc2004-11-07 18:04:02 +0000178}
179
180static int write_audio (AdlibState *s, int samples)
181{
182 int net = 0;
bellard1d14ffa2005-10-30 18:58:22 +0000183 int pos = s->pos;
184
bellard85571bc2004-11-07 18:04:02 +0000185 while (samples) {
bellard1d14ffa2005-10-30 18:58:22 +0000186 int nbytes, wbytes, wsampl;
187
188 nbytes = samples << SHIFT;
189 wbytes = AUD_write (
190 s->voice,
191 s->mixbuf + (pos << (SHIFT - 1)),
192 nbytes
193 );
194
195 if (wbytes) {
196 wsampl = wbytes >> SHIFT;
197
198 samples -= wsampl;
199 pos = (pos + wsampl) % s->samples;
200
201 net += wsampl;
202 }
203 else {
bellard85571bc2004-11-07 18:04:02 +0000204 break;
bellard1d14ffa2005-10-30 18:58:22 +0000205 }
bellard85571bc2004-11-07 18:04:02 +0000206 }
bellard1d14ffa2005-10-30 18:58:22 +0000207
bellard85571bc2004-11-07 18:04:02 +0000208 return net;
209}
210
bellard1d14ffa2005-10-30 18:58:22 +0000211static void adlib_callback (void *opaque, int free)
bellard85571bc2004-11-07 18:04:02 +0000212{
213 AdlibState *s = opaque;
bellard1d14ffa2005-10-30 18:58:22 +0000214 int samples, net = 0, to_play, written;
bellard85571bc2004-11-07 18:04:02 +0000215
bellard1d14ffa2005-10-30 18:58:22 +0000216 samples = free >> SHIFT;
217 if (!(s->active && s->enabled) || !samples) {
218 return;
bellard85571bc2004-11-07 18:04:02 +0000219 }
bellard85571bc2004-11-07 18:04:02 +0000220
bellard1d14ffa2005-10-30 18:58:22 +0000221 to_play = audio_MIN (s->left, samples);
222 while (to_play) {
223 written = write_audio (s, to_play);
bellard85571bc2004-11-07 18:04:02 +0000224
bellard1d14ffa2005-10-30 18:58:22 +0000225 if (written) {
226 s->left -= written;
227 samples -= written;
228 to_play -= written;
229 s->pos = (s->pos + written) % s->samples;
230 }
231 else {
232 return;
233 }
234 }
bellard85571bc2004-11-07 18:04:02 +0000235
236 samples = audio_MIN (samples, s->samples - s->pos);
bellard1d14ffa2005-10-30 18:58:22 +0000237 if (!samples) {
238 return;
239 }
bellard85571bc2004-11-07 18:04:02 +0000240
bellard1d14ffa2005-10-30 18:58:22 +0000241#ifdef HAS_YMF262
bellard85571bc2004-11-07 18:04:02 +0000242 YMF262UpdateOneQEMU (0, s->mixbuf + s->pos * 2, samples);
243#else
244 YM3812UpdateOne (s->opl, s->mixbuf + s->pos, samples);
245#endif
246
247 while (samples) {
bellard1d14ffa2005-10-30 18:58:22 +0000248 written = write_audio (s, samples);
bellard85571bc2004-11-07 18:04:02 +0000249
bellard1d14ffa2005-10-30 18:58:22 +0000250 if (written) {
251 net += written;
252 samples -= written;
253 s->pos = (s->pos + written) % s->samples;
254 }
255 else {
256 s->left = samples;
257 return;
258 }
259 }
bellard85571bc2004-11-07 18:04:02 +0000260}
261
262static void Adlib_fini (AdlibState *s)
263{
bellard1d14ffa2005-10-30 18:58:22 +0000264#ifdef HAS_YMF262
bellard85571bc2004-11-07 18:04:02 +0000265 YMF262Shutdown ();
266#else
267 if (s->opl) {
268 OPLDestroy (s->opl);
269 s->opl = NULL;
270 }
271#endif
272
Markus Armbrusterfb7da622014-06-06 18:35:13 +0200273 g_free(s->mixbuf);
bellard85571bc2004-11-07 18:04:02 +0000274
275 s->active = 0;
276 s->enabled = 0;
bellardc0fe3822005-11-05 18:55:28 +0000277 AUD_remove_card (&s->card);
bellard85571bc2004-11-07 18:04:02 +0000278}
279
Jan Kiszkaa8aec292013-06-22 08:06:54 +0200280static MemoryRegionPortio adlib_portio_list[] = {
Jan Kiszkaa8aec292013-06-22 08:06:54 +0200281 { 0, 4, 1, .read = adlib_read, .write = adlib_write, },
282 { 0, 2, 1, .read = adlib_read, .write = adlib_write, },
Hervé Poussineau2b21fb52013-08-14 11:49:04 +0200283 { 0x388, 4, 1, .read = adlib_read, .write = adlib_write, },
Jan Kiszkaa8aec292013-06-22 08:06:54 +0200284 PORTIO_END_OF_LIST(),
285};
286
Andreas Färberdb895a12012-11-25 02:37:14 +0100287static void adlib_realizefn (DeviceState *dev, Error **errp)
bellard85571bc2004-11-07 18:04:02 +0000288{
Paolo Bonzini8c444a12013-04-18 18:43:57 +0200289 AdlibState *s = ADLIB(dev);
malc1ea879e2008-12-03 22:48:44 +0000290 struct audsettings as;
bellardc0fe3822005-11-05 18:55:28 +0000291
Paolo Bonzini8c444a12013-04-18 18:43:57 +0200292 if (glob_adlib) {
Andreas Färberdb895a12012-11-25 02:37:14 +0100293 error_setg (errp, "Cannot create more than 1 adlib device");
294 return;
Paolo Bonzini8c444a12013-04-18 18:43:57 +0200295 }
296 glob_adlib = s;
297
bellard1d14ffa2005-10-30 18:58:22 +0000298#ifdef HAS_YMF262
Paolo Bonzini8c444a12013-04-18 18:43:57 +0200299 if (YMF262Init (1, 14318180, s->freq)) {
Andreas Färberdb895a12012-11-25 02:37:14 +0100300 error_setg (errp, "YMF262Init %d failed", s->freq);
301 return;
bellard85571bc2004-11-07 18:04:02 +0000302 }
303 else {
bellard1d14ffa2005-10-30 18:58:22 +0000304 YMF262SetTimerHandler (0, timer_handler, 0);
bellard85571bc2004-11-07 18:04:02 +0000305 s->enabled = 1;
306 }
307#else
Paolo Bonzini8c444a12013-04-18 18:43:57 +0200308 s->opl = OPLCreate (OPL_TYPE_YM3812, 3579545, s->freq);
bellard85571bc2004-11-07 18:04:02 +0000309 if (!s->opl) {
Andreas Färberdb895a12012-11-25 02:37:14 +0100310 error_setg (errp, "OPLCreate %d failed", s->freq);
311 return;
bellard85571bc2004-11-07 18:04:02 +0000312 }
313 else {
bellard1d14ffa2005-10-30 18:58:22 +0000314 OPLSetTimerHandler (s->opl, timer_handler, 0);
bellard85571bc2004-11-07 18:04:02 +0000315 s->enabled = 1;
316 }
317#endif
318
Paolo Bonzini8c444a12013-04-18 18:43:57 +0200319 as.freq = s->freq;
bellardc0fe3822005-11-05 18:55:28 +0000320 as.nchannels = SHIFT;
321 as.fmt = AUD_FMT_S16;
bellardd929eba2006-07-04 21:47:22 +0000322 as.endianness = AUDIO_HOST_ENDIANNESS;
bellardc0fe3822005-11-05 18:55:28 +0000323
malc1a7dafc2009-05-14 03:11:35 +0400324 AUD_register_card ("adlib", &s->card);
bellardc0fe3822005-11-05 18:55:28 +0000325
bellard1d14ffa2005-10-30 18:58:22 +0000326 s->voice = AUD_open_out (
bellardc0fe3822005-11-05 18:55:28 +0000327 &s->card,
bellard1d14ffa2005-10-30 18:58:22 +0000328 s->voice,
329 "adlib",
330 s,
331 adlib_callback,
bellardd929eba2006-07-04 21:47:22 +0000332 &as
bellard1d14ffa2005-10-30 18:58:22 +0000333 );
bellard85571bc2004-11-07 18:04:02 +0000334 if (!s->voice) {
335 Adlib_fini (s);
Andreas Färberdb895a12012-11-25 02:37:14 +0100336 error_setg (errp, "Initializing audio voice failed");
337 return;
bellard85571bc2004-11-07 18:04:02 +0000338 }
339
bellard1d14ffa2005-10-30 18:58:22 +0000340 s->samples = AUD_get_buffer_size_out (s->voice) >> SHIFT;
Anthony Liguori7267c092011-08-20 22:09:37 -0500341 s->mixbuf = g_malloc0 (s->samples << SHIFT);
bellard85571bc2004-11-07 18:04:02 +0000342
Paolo Bonzini7f0ba7b2013-12-02 10:16:18 +0100343 adlib_portio_list[0].offset = s->port;
344 adlib_portio_list[1].offset = s->port + 8;
Kirill Batuzov848696b2014-04-29 17:38:39 +0400345 portio_list_init (&s->port_list, OBJECT(s), adlib_portio_list, s, "adlib");
346 portio_list_add (&s->port_list, isa_address_space_io(&s->parent_obj), 0);
bellard85571bc2004-11-07 18:04:02 +0000347}
Paolo Bonzini8c444a12013-04-18 18:43:57 +0200348
349static Property adlib_properties[] = {
Paolo Bonzinic7bcc852014-02-08 11:01:53 +0100350 DEFINE_PROP_UINT32 ("iobase", AdlibState, port, 0x220),
Paolo Bonzini8c444a12013-04-18 18:43:57 +0200351 DEFINE_PROP_UINT32 ("freq", AdlibState, freq, 44100),
352 DEFINE_PROP_END_OF_LIST (),
353};
354
355static void adlib_class_initfn (ObjectClass *klass, void *data)
356{
357 DeviceClass *dc = DEVICE_CLASS (klass);
Andreas Färberdb895a12012-11-25 02:37:14 +0100358
359 dc->realize = adlib_realizefn;
Marcel Apfelbaum125ee0e2013-07-29 17:17:45 +0300360 set_bit(DEVICE_CATEGORY_SOUND, dc->categories);
Paolo Bonzini8c444a12013-04-18 18:43:57 +0200361 dc->desc = ADLIB_DESC;
362 dc->props = adlib_properties;
363}
364
365static const TypeInfo adlib_info = {
366 .name = TYPE_ADLIB,
367 .parent = TYPE_ISA_DEVICE,
368 .instance_size = sizeof (AdlibState),
369 .class_init = adlib_class_initfn,
370};
371
Paolo Bonzini36cd6f62013-04-18 18:43:58 +0200372static int Adlib_init (ISABus *bus)
Paolo Bonzini8c444a12013-04-18 18:43:57 +0200373{
374 isa_create_simple (bus, TYPE_ADLIB);
375 return 0;
376}
377
378static void adlib_register_types (void)
379{
380 type_register_static (&adlib_info);
Paolo Bonzini36cd6f62013-04-18 18:43:58 +0200381 isa_register_soundhw("adlib", ADLIB_DESC, Adlib_init);
Paolo Bonzini8c444a12013-04-18 18:43:57 +0200382}
383
384type_init (adlib_register_types)