| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |  * QEMU Proxy for OPL2/3 emulation by MAME team | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright (c) 2004-2005 Vassili Karpov (malc) | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  |  * Permission is hereby granted, free of charge, to any person obtaining a copy | 
					
						
							|  |  |  |  * of this software and associated documentation files (the "Software"), to deal | 
					
						
							|  |  |  |  * in the Software without restriction, including without limitation the rights | 
					
						
							|  |  |  |  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | 
					
						
							|  |  |  |  * copies of the Software, and to permit persons to whom the Software is | 
					
						
							|  |  |  |  * furnished to do so, subject to the following conditions: | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * The above copyright notice and this permission notice shall be included in | 
					
						
							|  |  |  |  * all copies or substantial portions of the Software. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | 
					
						
							|  |  |  |  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | 
					
						
							|  |  |  |  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | 
					
						
							|  |  |  |  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | 
					
						
							|  |  |  |  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | 
					
						
							|  |  |  |  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | 
					
						
							|  |  |  |  * THE SOFTWARE. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2007-12-02 17:47:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-17 17:14:51 +00:00
										 |  |  | #include "hw.h"
 | 
					
						
							|  |  |  | #include "audiodev.h"
 | 
					
						
							| 
									
										
										
										
											2007-12-02 17:17:45 +00:00
										 |  |  | #include "audio/audio.h"
 | 
					
						
							| 
									
										
										
										
											2007-12-17 03:15:52 +00:00
										 |  |  | #include "isa.h"
 | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-12-02 17:47:33 +00:00
										 |  |  | //#define DEBUG
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  | #define ADLIB_KILL_TIMERS 1
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-12-02 17:47:33 +00:00
										 |  |  | #ifdef DEBUG
 | 
					
						
							|  |  |  | #include "qemu-timer.h"
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-11-09 23:09:44 +00:00
										 |  |  | #define dolog(...) AUD_log ("adlib", __VA_ARGS__)
 | 
					
						
							|  |  |  | #ifdef DEBUG
 | 
					
						
							|  |  |  | #define ldebug(...) dolog (__VA_ARGS__)
 | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | #define ldebug(...)
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  | #ifdef HAS_YMF262
 | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  | #include "ymf262.h"
 | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  | void YMF262UpdateOneQEMU (int which, INT16 *dst, int length); | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  | #define SHIFT 2
 | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | #include "fmopl.h"
 | 
					
						
							|  |  |  | #define SHIFT 1
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define IO_READ_PROTO(name) \
 | 
					
						
							|  |  |  |     uint32_t name (void *opaque, uint32_t nport) | 
					
						
							|  |  |  | #define IO_WRITE_PROTO(name) \
 | 
					
						
							|  |  |  |     void name (void *opaque, uint32_t nport, uint32_t val) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct { | 
					
						
							|  |  |  |     int port; | 
					
						
							|  |  |  |     int freq; | 
					
						
							|  |  |  | } conf = {0x220, 44100}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef struct { | 
					
						
							| 
									
										
										
										
											2005-11-05 18:55:28 +00:00
										 |  |  |     QEMUSoundCard card; | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |     int ticking[2]; | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  |     int enabled; | 
					
						
							|  |  |  |     int active; | 
					
						
							|  |  |  |     int bufpos; | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  | #ifdef DEBUG
 | 
					
						
							|  |  |  |     int64_t exp[2]; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  |     int16_t *mixbuf; | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |     uint64_t dexp[2]; | 
					
						
							|  |  |  |     SWVoiceOut *voice; | 
					
						
							|  |  |  |     int left, pos, samples; | 
					
						
							|  |  |  |     QEMUAudioTimeStamp ats; | 
					
						
							|  |  |  | #ifndef HAS_YMF262
 | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  |     FM_OPL *opl; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | } AdlibState; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-05 18:55:28 +00:00
										 |  |  | static AdlibState glob_adlib; | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  | static void adlib_stop_opl_timer (AdlibState *s, size_t n) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | #ifdef HAS_YMF262
 | 
					
						
							|  |  |  |     YMF262TimerOver (0, n); | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  |     OPLTimerOver (s->opl, n); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |     s->ticking[n] = 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void adlib_kill_timers (AdlibState *s) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     size_t i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (i = 0; i < 2; ++i) { | 
					
						
							|  |  |  |         if (s->ticking[i]) { | 
					
						
							|  |  |  |             uint64_t delta; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-05 18:55:28 +00:00
										 |  |  |             delta = AUD_get_elapsed_usec_out (s->voice, &s->ats); | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |             ldebug ( | 
					
						
							|  |  |  |                 "delta = %f dexp = %f expired => %d\n", | 
					
						
							|  |  |  |                 delta / 1000000.0, | 
					
						
							|  |  |  |                 s->dexp[i] / 1000000.0, | 
					
						
							|  |  |  |                 delta >= s->dexp[i] | 
					
						
							|  |  |  |                 ); | 
					
						
							|  |  |  |             if (ADLIB_KILL_TIMERS || delta >= s->dexp[i]) { | 
					
						
							|  |  |  |                 adlib_stop_opl_timer (s, i); | 
					
						
							|  |  |  |                 AUD_init_time_stamp_out (s->voice, &s->ats); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-20 05:13:29 +04:00
										 |  |  | static IO_WRITE_PROTO (adlib_write) | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     AdlibState *s = opaque; | 
					
						
							|  |  |  |     int a = nport & 3; | 
					
						
							|  |  |  |     int status; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     s->active = 1; | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |     AUD_set_active_out (s->voice, 1); | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |     adlib_kill_timers (s); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef HAS_YMF262
 | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  |     status = YMF262Write (0, a, val); | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  |     status = OPLWrite (s->opl, a, val); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-20 05:13:29 +04:00
										 |  |  | static IO_READ_PROTO (adlib_read) | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     AdlibState *s = opaque; | 
					
						
							|  |  |  |     uint8_t data; | 
					
						
							|  |  |  |     int a = nport & 3; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |     adlib_kill_timers (s); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef HAS_YMF262
 | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  |     data = YMF262Read (0, a); | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  |     data = OPLRead (s->opl, a); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |     return data; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  | static void timer_handler (int c, double interval_Sec) | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-11-05 18:55:28 +00:00
										 |  |  |     AdlibState *s = &glob_adlib; | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |     unsigned n = c & 1; | 
					
						
							|  |  |  | #ifdef DEBUG
 | 
					
						
							|  |  |  |     double interval; | 
					
						
							| 
									
										
										
										
											2005-11-05 18:55:28 +00:00
										 |  |  |     int64_t exp; | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (interval_Sec == 0.0) { | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |         s->ticking[n] = 0; | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     s->ticking[n] = 1; | 
					
						
							|  |  |  | #ifdef DEBUG
 | 
					
						
							| 
									
										
										
										
											2009-09-10 03:04:26 +02:00
										 |  |  |     interval = get_ticks_per_sec() * interval_Sec; | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |     exp = qemu_get_clock (vm_clock) + interval; | 
					
						
							|  |  |  |     s->exp[n] = exp; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     s->dexp[n] = interval_Sec * 1000000.0; | 
					
						
							|  |  |  |     AUD_init_time_stamp_out (s->voice, &s->ats); | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int write_audio (AdlibState *s, int samples) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int net = 0; | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |     int pos = s->pos; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  |     while (samples) { | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |         int nbytes, wbytes, wsampl; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         nbytes = samples << SHIFT; | 
					
						
							|  |  |  |         wbytes = AUD_write ( | 
					
						
							|  |  |  |             s->voice, | 
					
						
							|  |  |  |             s->mixbuf + (pos << (SHIFT - 1)), | 
					
						
							|  |  |  |             nbytes | 
					
						
							|  |  |  |             ); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (wbytes) { | 
					
						
							|  |  |  |             wsampl = wbytes >> SHIFT; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             samples -= wsampl; | 
					
						
							|  |  |  |             pos = (pos + wsampl) % s->samples; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             net += wsampl; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         else { | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  |     return net; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  | static void adlib_callback (void *opaque, int free) | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     AdlibState *s = opaque; | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |     int samples, net = 0, to_play, written; | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |     samples = free >> SHIFT; | 
					
						
							|  |  |  |     if (!(s->active && s->enabled) || !samples) { | 
					
						
							|  |  |  |         return; | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |     to_play = audio_MIN (s->left, samples); | 
					
						
							|  |  |  |     while (to_play) { | 
					
						
							|  |  |  |         written = write_audio (s, to_play); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (written) { | 
					
						
							|  |  |  |             s->left -= written; | 
					
						
							|  |  |  |             samples -= written; | 
					
						
							|  |  |  |             to_play -= written; | 
					
						
							|  |  |  |             s->pos = (s->pos + written) % s->samples; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         else { | 
					
						
							|  |  |  |             return; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     samples = audio_MIN (samples, s->samples - s->pos); | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |     if (!samples) { | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  | #ifdef HAS_YMF262
 | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  |     YMF262UpdateOneQEMU (0, s->mixbuf + s->pos * 2, samples); | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  |     YM3812UpdateOne (s->opl, s->mixbuf + s->pos, samples); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     while (samples) { | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |         written = write_audio (s, samples); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (written) { | 
					
						
							|  |  |  |             net += written; | 
					
						
							|  |  |  |             samples -= written; | 
					
						
							|  |  |  |             s->pos = (s->pos + written) % s->samples; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         else { | 
					
						
							|  |  |  |             s->left = samples; | 
					
						
							|  |  |  |             return; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void Adlib_fini (AdlibState *s) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  | #ifdef HAS_YMF262
 | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  |     YMF262Shutdown (); | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  |     if (s->opl) { | 
					
						
							|  |  |  |         OPLDestroy (s->opl); | 
					
						
							|  |  |  |         s->opl = NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |     if (s->mixbuf) { | 
					
						
							|  |  |  |         qemu_free (s->mixbuf); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     s->active = 0; | 
					
						
							|  |  |  |     s->enabled = 0; | 
					
						
							| 
									
										
										
										
											2005-11-05 18:55:28 +00:00
										 |  |  |     AUD_remove_card (&s->card); | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-12 12:33:04 +01:00
										 |  |  | int Adlib_init (qemu_irq *pic) | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-11-05 18:55:28 +00:00
										 |  |  |     AdlibState *s = &glob_adlib; | 
					
						
							| 
									
										
										
										
											2008-12-03 22:48:44 +00:00
										 |  |  |     struct audsettings as; | 
					
						
							| 
									
										
										
										
											2005-11-05 18:55:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  | #ifdef HAS_YMF262
 | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  |     if (YMF262Init (1, 14318180, conf.freq)) { | 
					
						
							|  |  |  |         dolog ("YMF262Init %d failed\n", conf.freq); | 
					
						
							| 
									
										
										
										
											2005-11-05 18:55:28 +00:00
										 |  |  |         return -1; | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     else { | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |         YMF262SetTimerHandler (0, timer_handler, 0); | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  |         s->enabled = 1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  |     s->opl = OPLCreate (OPL_TYPE_YM3812, 3579545, conf.freq); | 
					
						
							|  |  |  |     if (!s->opl) { | 
					
						
							|  |  |  |         dolog ("OPLCreate %d failed\n", conf.freq); | 
					
						
							| 
									
										
										
										
											2005-11-05 18:55:28 +00:00
										 |  |  |         return -1; | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     else { | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |         OPLSetTimerHandler (s->opl, timer_handler, 0); | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  |         s->enabled = 1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-05 18:55:28 +00:00
										 |  |  |     as.freq = conf.freq; | 
					
						
							|  |  |  |     as.nchannels = SHIFT; | 
					
						
							|  |  |  |     as.fmt = AUD_FMT_S16; | 
					
						
							| 
									
										
										
										
											2006-07-04 21:47:22 +00:00
										 |  |  |     as.endianness = AUDIO_HOST_ENDIANNESS; | 
					
						
							| 
									
										
										
										
											2005-11-05 18:55:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-14 03:11:35 +04:00
										 |  |  |     AUD_register_card ("adlib", &s->card); | 
					
						
							| 
									
										
										
										
											2005-11-05 18:55:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |     s->voice = AUD_open_out ( | 
					
						
							| 
									
										
										
										
											2005-11-05 18:55:28 +00:00
										 |  |  |         &s->card, | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |         s->voice, | 
					
						
							|  |  |  |         "adlib", | 
					
						
							|  |  |  |         s, | 
					
						
							|  |  |  |         adlib_callback, | 
					
						
							| 
									
										
										
										
											2006-07-04 21:47:22 +00:00
										 |  |  |         &as | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |         ); | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  |     if (!s->voice) { | 
					
						
							|  |  |  |         Adlib_fini (s); | 
					
						
							| 
									
										
										
										
											2005-11-05 18:55:28 +00:00
										 |  |  |         return -1; | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-30 18:58:22 +00:00
										 |  |  |     s->samples = AUD_get_buffer_size_out (s->voice) >> SHIFT; | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  |     s->mixbuf = qemu_mallocz (s->samples << SHIFT); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     register_ioport_read (0x388, 4, 1, adlib_read, s); | 
					
						
							|  |  |  |     register_ioport_write (0x388, 4, 1, adlib_write, s); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     register_ioport_read (conf.port, 4, 1, adlib_read, s); | 
					
						
							|  |  |  |     register_ioport_write (conf.port, 4, 1, adlib_write, s); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     register_ioport_read (conf.port + 8, 2, 1, adlib_read, s); | 
					
						
							|  |  |  |     register_ioport_write (conf.port + 8, 2, 1, adlib_write, s); | 
					
						
							| 
									
										
										
										
											2005-11-05 18:55:28 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2004-11-07 18:04:02 +00:00
										 |  |  | } |