gpulib: don't set_mode for 0
[pcsx_rearmed.git] / plugins / dfsound / spu.c
CommitLineData
ef79bbde
P
1/***************************************************************************
2 spu.c - description
3 -------------------
4 begin : Wed May 15 2002
5 copyright : (C) 2002 by Pete Bernert
6 email : BlackDove@addcom.de
07a6dd2c 7
63a4f6b6 8 Portions (C) GraÅžvydas "notaz" Ignotas, 2010-2012,2014,2015
07a6dd2c 9
ef79bbde
P
10 ***************************************************************************/
11/***************************************************************************
12 * *
13 * This program is free software; you can redistribute it and/or modify *
14 * it under the terms of the GNU General Public License as published by *
15 * the Free Software Foundation; either version 2 of the License, or *
16 * (at your option) any later version. See also the license.txt file for *
17 * additional informations. *
18 * *
19 ***************************************************************************/
20
0de2ae23 21#include <assert.h>
ef79bbde
P
22#include "stdafx.h"
23
24#define _IN_SPU
25
26#include "externals.h"
3fc2a4c2 27#include "registers.h"
07c13dfd 28#include "out.h"
3154bfab 29#include "spu_config.h"
ef79bbde 30
de4a0279 31#ifdef __arm__
32#include "arm_features.h"
33#endif
34
8f2bb0cb 35#ifdef HAVE_ARMV7
1775933a 36 #define ssat32_to_16(v) \
37 asm("ssat %0,#16,%1" : "=r" (v) : "r" (v))
38#else
39 #define ssat32_to_16(v) do { \
40 if (v < -32768) v = -32768; \
41 else if (v > 32767) v = 32767; \
42 } while (0)
43#endif
44
fb552464 45#define PSXCLK 33868800 /* 33.8688 MHz */
46
650adfd2 47// intended to be ~1 frame
48#define IRQ_NEAR_BLOCKS 32
49
6d866bb7 50/*
ef79bbde
P
51#if defined (USEMACOSX)
52static char * libraryName = N_("Mac OS X Sound");
53#elif defined (USEALSA)
54static char * libraryName = N_("ALSA Sound");
55#elif defined (USEOSS)
56static char * libraryName = N_("OSS Sound");
57#elif defined (USESDL)
58static char * libraryName = N_("SDL Sound");
59#elif defined (USEPULSEAUDIO)
60static char * libraryName = N_("PulseAudio Sound");
61#else
62static char * libraryName = N_("NULL Sound");
63#endif
64
65static char * libraryInfo = N_("P.E.Op.S. Sound Driver V1.7\nCoded by Pete Bernert and the P.E.Op.S. team\n");
6d866bb7 66*/
ef79bbde
P
67
68// globals
69
3154bfab 70SPUInfo spu;
71SPUConfig spu_config;
ef79bbde 72
5514a050 73static int iFMod[NSSIZE];
05c7cec7 74static int RVB[NSSIZE * 2];
3154bfab 75int ChanBuf[NSSIZE];
ef79bbde 76
983a7cfd 77#define CDDA_BUFFER_SIZE (16384 * sizeof(uint32_t)) // must be power of 2
78
ef79bbde
P
79////////////////////////////////////////////////////////////////////////
80// CODE AREA
81////////////////////////////////////////////////////////////////////////
82
83// dirty inline func includes
84
85#include "reverb.c"
86#include "adsr.c"
87
88////////////////////////////////////////////////////////////////////////
89// helpers for simple interpolation
90
91//
92// easy interpolation on upsampling, no special filter, just "Pete's common sense" tm
93//
94// instead of having n equal sample values in a row like:
95// ____
96// |____
97//
98// we compare the current delta change with the next delta change.
99//
100// if curr_delta is positive,
101//
102// - and next delta is smaller (or changing direction):
103// \.
104// -__
105//
106// - and next delta significant (at least twice) bigger:
107// --_
108// \.
109//
110// - and next delta is nearly same:
111// \.
112// \.
113//
114//
115// if curr_delta is negative,
116//
117// - and next delta is smaller (or changing direction):
118// _--
119// /
120//
121// - and next delta significant (at least twice) bigger:
122// /
123// __-
124//
125// - and next delta is nearly same:
126// /
127// /
128//
129
38e4048f 130static void InterpolateUp(sample_buf *sb, int sinc)
ef79bbde 131{
38e4048f 132 int *SB = sb->SB;
133 if (sb->sinc_old != sinc)
134 {
135 sb->sinc_old = sinc;
136 SB[32] = 1;
137 }
011755d7 138 if(SB[32]==1) // flag == 1? calc step and set flag... and don't change the value in this pass
ef79bbde 139 {
011755d7 140 const int id1=SB[30]-SB[29]; // curr delta to next val
141 const int id2=SB[31]-SB[30]; // and next delta to next-next val :)
ef79bbde 142
011755d7 143 SB[32]=0;
ef79bbde
P
144
145 if(id1>0) // curr delta positive
146 {
147 if(id2<id1)
011755d7 148 {SB[28]=id1;SB[32]=2;}
ef79bbde
P
149 else
150 if(id2<(id1<<1))
011755d7 151 SB[28]=(id1*sinc)>>16;
ef79bbde 152 else
011755d7 153 SB[28]=(id1*sinc)>>17;
ef79bbde
P
154 }
155 else // curr delta negative
156 {
157 if(id2>id1)
011755d7 158 {SB[28]=id1;SB[32]=2;}
ef79bbde
P
159 else
160 if(id2>(id1<<1))
011755d7 161 SB[28]=(id1*sinc)>>16;
ef79bbde 162 else
011755d7 163 SB[28]=(id1*sinc)>>17;
ef79bbde
P
164 }
165 }
166 else
011755d7 167 if(SB[32]==2) // flag 1: calc step and set flag... and don't change the value in this pass
ef79bbde 168 {
011755d7 169 SB[32]=0;
ef79bbde 170
011755d7 171 SB[28]=(SB[28]*sinc)>>17;
172 //if(sinc<=0x8000)
173 // SB[29]=SB[30]-(SB[28]*((0x10000/sinc)-1));
76d1d09c 174 //else
011755d7 175 SB[29]+=SB[28];
ef79bbde
P
176 }
177 else // no flags? add bigger val (if possible), calc smaller step, set flag1
011755d7 178 SB[29]+=SB[28];
ef79bbde
P
179}
180
181//
182// even easier interpolation on downsampling, also no special filter, again just "Pete's common sense" tm
183//
184
38e4048f 185static void InterpolateDown(sample_buf *sb, int sinc)
ef79bbde 186{
38e4048f 187 int *SB = sb->SB;
011755d7 188 if(sinc>=0x20000L) // we would skip at least one val?
ef79bbde 189 {
011755d7 190 SB[29]+=(SB[30]-SB[29])/2; // add easy weight
191 if(sinc>=0x30000L) // we would skip even more vals?
192 SB[29]+=(SB[31]-SB[30])/2; // add additional next weight
ef79bbde
P
193 }
194}
195
196////////////////////////////////////////////////////////////////////////
ef79bbde
P
197
198#include "gauss_i.h"
ef79bbde
P
199#include "xa.c"
200
e4f075af 201static void do_irq(void)
202{
3154bfab 203 //if(!(spu.spuStat & STAT_IRQ))
e4f075af 204 {
3154bfab 205 spu.spuStat |= STAT_IRQ; // asserted status?
c2eee46b 206 if(spu.irqCallback) spu.irqCallback(0);
e4f075af 207 }
208}
209
210static int check_irq(int ch, unsigned char *pos)
211{
a5ff8be2 212 if((spu.spuCtrl & (CTRL_ON|CTRL_IRQ)) == (CTRL_ON|CTRL_IRQ) && pos == spu.pSpuIrq)
e4f075af 213 {
3154bfab 214 //printf("ch%d irq %04x\n", ch, pos - spu.spuMemC);
e4f075af 215 do_irq();
216 return 1;
217 }
218 return 0;
219}
220
a5ff8be2 221void check_irq_io(unsigned int addr)
222{
223 unsigned int irq_addr = regAreaGet(H_SPUirqAddr) << 3;
224 //addr &= ~7; // ?
225 if((spu.spuCtrl & (CTRL_ON|CTRL_IRQ)) == (CTRL_ON|CTRL_IRQ) && addr == irq_addr)
226 {
227 //printf("io irq %04x\n", irq_addr);
228 do_irq();
229 }
230}
231
ef79bbde
P
232////////////////////////////////////////////////////////////////////////
233// START SOUND... called by main thread to setup a new sound on a channel
234////////////////////////////////////////////////////////////////////////
235
38e4048f 236static void ResetInterpolation(sample_buf *sb)
ef79bbde 237{
38e4048f 238 memset(&sb->interp, 0, sizeof(sb->interp));
239 sb->sinc_old = -1;
240}
ef79bbde 241
38e4048f 242static void StartSoundSB(sample_buf *sb)
243{
244 sb->SB[26] = 0; // init mixing vars
245 sb->SB[27] = 0;
246 ResetInterpolation(sb);
3bd31caf 247}
248
249static void StartSoundMain(int ch)
250{
251 SPUCHAN *s_chan = &spu.s_chan[ch];
252
253 StartADSR(ch);
254 StartREVERB(ch);
255
d358733b 256 s_chan->prevflags = 2;
257 s_chan->iSBPos = 27;
258 s_chan->spos = 0;
259 s_chan->bStarting = 1;
ef79bbde 260
5fdcf5cd 261 s_chan->pCurr = spu.spuMemC + ((regAreaGetCh(ch, 6) & ~1) << 3);
16f3ca66 262
3154bfab 263 spu.dwNewChannel&=~(1<<ch); // clear new channel bit
4ccd0fb2 264 spu.dwChannelDead&=~(1<<ch);
1d5d35bc 265 spu.dwChannelsAudible|=1<<ch;
ef79bbde
P
266}
267
3bd31caf 268static void StartSound(int ch)
269{
270 StartSoundMain(ch);
38e4048f 271 StartSoundSB(&spu.sb[ch]);
3bd31caf 272}
273
ef79bbde
P
274////////////////////////////////////////////////////////////////////////
275// ALL KIND OF HELPERS
276////////////////////////////////////////////////////////////////////////
277
0de2ae23 278INLINE int FModChangeFrequency(int pitch, int ns, int *fmod_buf)
ef79bbde 279{
5aa9f158 280 pitch = (signed short)pitch;
0de2ae23 281 pitch = ((32768 + fmod_buf[ns]) * pitch) >> 15;
5aa9f158 282 pitch &= 0xffff;
283 if (pitch > 0x3fff)
284 pitch = 0x3fff;
ef79bbde 285
0de2ae23 286 fmod_buf[ns] = 0;
ef79bbde 287
5aa9f158 288 return pitch << 4;
ef79bbde
P
289}
290
38e4048f 291INLINE void StoreInterpolationGaussCubic(sample_buf *sb, int fa)
ef79bbde 292{
38e4048f 293 int gpos = sb->interp.gauss.pos & 3;
294 sb->interp.gauss.val[gpos++] = fa;
295 sb->interp.gauss.pos = gpos & 3;
ef79bbde
P
296}
297
38e4048f 298#define gval(x) (int)sb->interp.gauss.val[(gpos + x) & 3]
ef79bbde 299
38e4048f 300INLINE int GetInterpolationCubic(const sample_buf *sb, int spos)
ef79bbde 301{
38e4048f 302 int gpos = sb->interp.gauss.pos;
303 int xd = (spos >> 1) + 1;
ef79bbde
P
304 int fa;
305
38e4048f 306 fa = gval(3) - 3*gval(2) + 3*gval(1) - gval(0);
307 fa *= (xd - (2<<15)) / 6;
308 fa >>= 15;
309 fa += gval(2) - gval(1) - gval(1) + gval(0);
310 fa *= (xd - (1<<15)) >> 1;
311 fa >>= 15;
312 fa += gval(1) - gval(0);
313 fa *= xd;
314 fa >>= 15;
315 fa = fa + gval(0);
ef79bbde
P
316 return fa;
317}
318
38e4048f 319INLINE int GetInterpolationGauss(const sample_buf *sb, int spos)
320{
321 int gpos = sb->interp.gauss.pos;
322 int vl = (spos >> 6) & ~3;
323 int vr;
324 vr = (gauss[vl+0] * gval(0)) >> 15;
325 vr += (gauss[vl+1] * gval(1)) >> 15;
326 vr += (gauss[vl+2] * gval(2)) >> 15;
327 vr += (gauss[vl+3] * gval(3)) >> 15;
328 return vr;
329}
330
381ea103 331static void decode_block_data(int *dest, const unsigned char *src, int predict_nr, int shift_factor)
332{
5514a050 333 static const int f[16][2] = {
334 { 0, 0 },
335 { 60, 0 },
336 { 115, -52 },
337 { 98, -55 },
338 { 122, -60 }
339 };
381ea103 340 int nSample;
341 int fa, s_1, s_2, d, s;
342
343 s_1 = dest[27];
344 s_2 = dest[26];
345
346 for (nSample = 0; nSample < 28; src++)
347 {
348 d = (int)*src;
349 s = (int)(signed short)((d & 0x0f) << 12);
350
5aa9f158 351 fa = s >> shift_factor;
381ea103 352 fa += ((s_1 * f[predict_nr][0])>>6) + ((s_2 * f[predict_nr][1])>>6);
5aa9f158 353 ssat32_to_16(fa);
354 s_2 = s_1; s_1 = fa;
381ea103 355
356 dest[nSample++] = fa;
357
358 s = (int)(signed short)((d & 0xf0) << 8);
5aa9f158 359 fa = s >> shift_factor;
381ea103 360 fa += ((s_1 * f[predict_nr][0])>>6) + ((s_2 * f[predict_nr][1])>>6);
5aa9f158 361 ssat32_to_16(fa);
362 s_2 = s_1; s_1 = fa;
381ea103 363
364 dest[nSample++] = fa;
365 }
366}
367
3bd31caf 368static int decode_block(void *unused, int ch, int *SB)
e11ae5c5 369{
5514a050 370 SPUCHAN *s_chan = &spu.s_chan[ch];
e11ae5c5 371 unsigned char *start;
215ff9e6 372 int predict_nr, shift_factor, flags;
e11ae5c5 373 int ret = 0;
374
5514a050 375 start = s_chan->pCurr; // set up the current pos
d358733b 376 if (start - spu.spuMemC < 0x1000) { // ?
377 //log_unhandled("ch%02d plays decode bufs @%05lx\n",
378 // ch, (long)(start - spu.spuMemC));
215ff9e6 379 ret = 1;
d358733b 380 }
e11ae5c5 381
5514a050 382 if (s_chan->prevflags & 1) // 1: stop/loop
3fc2a4c2 383 {
5514a050 384 if (!(s_chan->prevflags & 2))
215ff9e6 385 ret = 1;
e4f075af 386
5514a050 387 start = s_chan->pLoop;
3fc2a4c2 388 }
3113a160 389
390 check_irq(ch, start);
e11ae5c5 391
5514a050 392 predict_nr = start[0];
215ff9e6 393 shift_factor = predict_nr & 0xf;
e11ae5c5 394 predict_nr >>= 4;
e11ae5c5 395
011755d7 396 decode_block_data(SB, start + 2, predict_nr, shift_factor);
e11ae5c5 397
215ff9e6 398 flags = start[1];
3113a160 399 if (flags & 4 && !s_chan->bIgnoreLoop)
5514a050 400 s_chan->pLoop = start; // loop adress
e11ae5c5 401
215ff9e6 402 start += 16;
3fc2a4c2 403
5514a050 404 s_chan->pCurr = start; // store values for next cycle
405 s_chan->prevflags = flags;
d358733b 406 s_chan->bStarting = 0;
e11ae5c5 407
408 return ret;
409}
410
07a6dd2c 411// do block, but ignore sample data
412static int skip_block(int ch)
413{
5514a050 414 SPUCHAN *s_chan = &spu.s_chan[ch];
415 unsigned char *start = s_chan->pCurr;
215ff9e6 416 int flags;
417 int ret = 0;
418
5514a050 419 if (s_chan->prevflags & 1) {
420 if (!(s_chan->prevflags & 2))
215ff9e6 421 ret = 1;
07a6dd2c 422
5514a050 423 start = s_chan->pLoop;
215ff9e6 424 }
3113a160 425
426 check_irq(ch, start);
07a6dd2c 427
215ff9e6 428 flags = start[1];
3113a160 429 if (flags & 4 && !s_chan->bIgnoreLoop)
5514a050 430 s_chan->pLoop = start;
07a6dd2c 431
e4f075af 432 start += 16;
07a6dd2c 433
5514a050 434 s_chan->pCurr = start;
435 s_chan->prevflags = flags;
d358733b 436 s_chan->bStarting = 0;
e4f075af 437
89cb2058 438 return ret;
07a6dd2c 439}
440
650adfd2 441// if irq is going to trigger sooner than in upd_samples, set upd_samples
442static void scan_for_irq(int ch, unsigned int *upd_samples)
443{
5514a050 444 SPUCHAN *s_chan = &spu.s_chan[ch];
650adfd2 445 int pos, sinc, sinc_inv, end;
446 unsigned char *block;
447 int flags;
448
5514a050 449 block = s_chan->pCurr;
450 pos = s_chan->spos;
451 sinc = s_chan->sinc;
650adfd2 452 end = pos + *upd_samples * sinc;
e099a4a8 453 if (s_chan->prevflags & 1) // 1: stop/loop
454 block = s_chan->pLoop;
650adfd2 455
5514a050 456 pos += (28 - s_chan->iSBPos) << 16;
650adfd2 457 while (pos < end)
458 {
3154bfab 459 if (block == spu.pSpuIrq)
650adfd2 460 break;
461 flags = block[1];
462 block += 16;
463 if (flags & 1) { // 1: stop/loop
5514a050 464 block = s_chan->pLoop;
650adfd2 465 }
466 pos += 28 << 16;
467 }
468
469 if (pos < end)
470 {
5514a050 471 sinc_inv = s_chan->sinc_inv;
650adfd2 472 if (sinc_inv == 0)
5514a050 473 sinc_inv = s_chan->sinc_inv = (0x80000000u / (uint32_t)sinc) << 1;
650adfd2 474
5514a050 475 pos -= s_chan->spos;
650adfd2 476 *upd_samples = (((uint64_t)pos * sinc_inv) >> 32) + 1;
477 //xprintf("ch%02d: irq sched: %3d %03d\n",
478 // ch, *upd_samples, *upd_samples * 60 * 263 / 44100);
479 }
480}
481
38e4048f 482#define make_do_samples(name, fmod_code, interp_start, interp_store, interp_get, interp_end) \
0de2ae23 483static noinline int name(int *dst, \
3bd31caf 484 int (*decode_f)(void *context, int ch, int *SB), void *ctx, \
38e4048f 485 int ch, int ns_to, sample_buf *sb, int sinc, int *spos, int *sbpos) \
07a6dd2c 486{ \
215ff9e6 487 int ns, d, fa; \
488 int ret = ns_to; \
07a6dd2c 489 interp_start; \
490 \
215ff9e6 491 for (ns = 0; ns < ns_to; ns++) \
07a6dd2c 492 { \
493 fmod_code; \
494 \
63a4f6b6 495 *spos += sinc; \
496 while (*spos >= 0x10000) \
07a6dd2c 497 { \
38e4048f 498 fa = sb->SB[(*sbpos)++]; \
63a4f6b6 499 if (*sbpos >= 28) \
07a6dd2c 500 { \
63a4f6b6 501 *sbpos = 0; \
38e4048f 502 d = decode_f(ctx, ch, sb->SB); \
215ff9e6 503 if (d && ns < ret) \
504 ret = ns; \
07a6dd2c 505 } \
506 \
38e4048f 507 interp_store; \
63a4f6b6 508 *spos -= 0x10000; \
07a6dd2c 509 } \
510 \
38e4048f 511 interp_get; \
07a6dd2c 512 } \
513 \
07a6dd2c 514 interp_end; \
515 \
516 return ret; \
517}
518
38e4048f 519// helpers for simple linear interpolation: delay real val for two slots,
520// and calc the two deltas, for a 'look at the future behaviour'
07a6dd2c 521#define simple_interp_store \
38e4048f 522 sb->SB[28] = 0; \
523 sb->SB[29] = sb->SB[30]; \
524 sb->SB[30] = sb->SB[31]; \
525 sb->SB[31] = fa; \
526 sb->SB[32] = 1
07a6dd2c 527
528#define simple_interp_get \
011755d7 529 if(sinc<0x10000) /* -> upsampling? */ \
38e4048f 530 InterpolateUp(sb, sinc); /* --> interpolate up */ \
531 else InterpolateDown(sb, sinc); /* --> else down */ \
0de2ae23 532 dst[ns] = sb->SB[29]
07a6dd2c 533
38e4048f 534make_do_samples(do_samples_nointerp, , fa = sb->SB[29],
0de2ae23 535 , dst[ns] = fa, sb->SB[29] = fa)
38e4048f 536make_do_samples(do_samples_simple, , ,
07a6dd2c 537 simple_interp_store, simple_interp_get, )
38e4048f 538make_do_samples(do_samples_gauss, , ,
539 StoreInterpolationGaussCubic(sb, fa),
0de2ae23 540 dst[ns] = GetInterpolationGauss(sb, *spos), )
38e4048f 541make_do_samples(do_samples_cubic, , ,
542 StoreInterpolationGaussCubic(sb, fa),
0de2ae23 543 dst[ns] = GetInterpolationCubic(sb, *spos), )
38e4048f 544make_do_samples(do_samples_fmod,
0de2ae23 545 sinc = FModChangeFrequency(spu.s_chan[ch].iRawPitch, ns, iFMod), ,
38e4048f 546 StoreInterpolationGaussCubic(sb, fa),
0de2ae23 547 dst[ns] = GetInterpolationGauss(sb, *spos), )
38e4048f 548
0de2ae23 549INLINE int do_samples_adpcm(int *dst,
38e4048f 550 int (*decode_f)(void *context, int ch, int *SB), void *ctx,
551 int ch, int ns_to, int fmod, sample_buf *sb, int sinc, int *spos, int *sbpos)
552{
553 int interp = spu.interpolation;
554 if (fmod == 1)
0de2ae23 555 return do_samples_fmod(dst, decode_f, ctx, ch, ns_to, sb, sinc, spos, sbpos);
38e4048f 556 if (fmod)
557 interp = 2;
558 switch (interp) {
559 case 0:
0de2ae23 560 return do_samples_nointerp(dst, decode_f, ctx, ch, ns_to, sb, sinc, spos, sbpos);
38e4048f 561 case 1:
0de2ae23 562 return do_samples_simple (dst, decode_f, ctx, ch, ns_to, sb, sinc, spos, sbpos);
38e4048f 563 default:
0de2ae23 564 return do_samples_gauss (dst, decode_f, ctx, ch, ns_to, sb, sinc, spos, sbpos);
38e4048f 565 case 3:
0de2ae23 566 return do_samples_cubic (dst, decode_f, ctx, ch, ns_to, sb, sinc, spos, sbpos);
38e4048f 567 }
568}
07a6dd2c 569
215ff9e6 570static int do_samples_skip(int ch, int ns_to)
07a6dd2c 571{
5514a050 572 SPUCHAN *s_chan = &spu.s_chan[ch];
8f5f2dd5 573 int spos = s_chan->spos;
574 int sinc = s_chan->sinc;
215ff9e6 575 int ret = ns_to, ns, d;
b1094d0e 576
8f5f2dd5 577 spos += s_chan->iSBPos << 16;
215ff9e6 578
579 for (ns = 0; ns < ns_to; ns++)
07a6dd2c 580 {
8f5f2dd5 581 spos += sinc;
582 while (spos >= 28*0x10000)
215ff9e6 583 {
584 d = skip_block(ch);
585 if (d && ns < ret)
586 ret = ns;
8f5f2dd5 587 spos -= 28*0x10000;
215ff9e6 588 }
07a6dd2c 589 }
590
8f5f2dd5 591 s_chan->iSBPos = spos >> 16;
592 s_chan->spos = spos & 0xffff;
215ff9e6 593
594 return ret;
595}
596
0de2ae23 597static int do_samples_skip_fmod(int ch, int ns_to, int *fmod_buf)
598{
599 SPUCHAN *s_chan = &spu.s_chan[ch];
600 int spos = s_chan->spos;
601 int ret = ns_to, ns, d;
602
603 spos += s_chan->iSBPos << 16;
604
605 for (ns = 0; ns < ns_to; ns++)
606 {
607 spos += FModChangeFrequency(s_chan->iRawPitch, ns, fmod_buf);
608 while (spos >= 28*0x10000)
609 {
610 d = skip_block(ch);
611 if (d && ns < ret)
612 ret = ns;
613 spos -= 28*0x10000;
614 }
615 }
616
617 s_chan->iSBPos = spos >> 16;
618 s_chan->spos = spos & 0xffff;
619
620 return ret;
621}
622
623static void do_lsfr_samples(int *dst, int ns_to, int ctrl,
215ff9e6 624 unsigned int *dwNoiseCount, unsigned int *dwNoiseVal)
625{
626 unsigned int counter = *dwNoiseCount;
627 unsigned int val = *dwNoiseVal;
628 unsigned int level, shift, bit;
629 int ns;
630
b1094d0e 631 // modified from DrHell/shalma, no fraction
215ff9e6 632 level = (ctrl >> 10) & 0x0f;
b1094d0e 633 level = 0x8000 >> level;
634
215ff9e6 635 for (ns = 0; ns < ns_to; ns++)
b1094d0e 636 {
215ff9e6 637 counter += 2;
638 if (counter >= level)
b1094d0e 639 {
215ff9e6 640 counter -= level;
641 shift = (val >> 10) & 0x1f;
b1094d0e 642 bit = (0x69696969 >> shift) & 1;
215ff9e6 643 bit ^= (val >> 15) & 1;
644 val = (val << 1) | bit;
b1094d0e 645 }
646
0de2ae23 647 dst[ns] = (signed short)val;
b1094d0e 648 }
07a6dd2c 649
215ff9e6 650 *dwNoiseCount = counter;
651 *dwNoiseVal = val;
652}
653
0de2ae23 654static int do_samples_noise(int *dst, int ch, int ns_to)
215ff9e6 655{
656 int ret;
657
658 ret = do_samples_skip(ch, ns_to);
659
0de2ae23 660 do_lsfr_samples(dst, ns_to, spu.spuCtrl, &spu.dwNoiseCount, &spu.dwNoiseVal);
215ff9e6 661
89cb2058 662 return ret;
07a6dd2c 663}
664
665f33e1 665#ifdef HAVE_ARMV5
3a721c1f 666// asm code; lv and rv must be 0-3fff
3bd31caf 667extern void mix_chan(int *SSumLR, int count, int lv, int rv);
668extern void mix_chan_rvb(int *SSumLR, int count, int lv, int rv, int *rvb);
b17618c0 669#else
3bd31caf 670static void mix_chan(int *SSumLR, int count, int lv, int rv)
b17618c0 671{
3bd31caf 672 const int *src = ChanBuf;
b17618c0 673 int l, r;
674
675 while (count--)
676 {
677 int sval = *src++;
678
679 l = (sval * lv) >> 14;
680 r = (sval * rv) >> 14;
3bd31caf 681 *SSumLR++ += l;
682 *SSumLR++ += r;
b17618c0 683 }
684}
685
3bd31caf 686static void mix_chan_rvb(int *SSumLR, int count, int lv, int rv, int *rvb)
b17618c0 687{
3bd31caf 688 const int *src = ChanBuf;
689 int *dst = SSumLR;
690 int *drvb = rvb;
b17618c0 691 int l, r;
692
693 while (count--)
694 {
695 int sval = *src++;
696
697 l = (sval * lv) >> 14;
698 r = (sval * rv) >> 14;
699 *dst++ += l;
700 *dst++ += r;
701 *drvb++ += l;
702 *drvb++ += r;
703 }
704}
705#endif
706
b72f17a1 707// 0x0800-0x0bff Voice 1
708// 0x0c00-0x0fff Voice 3
215ff9e6 709static noinline void do_decode_bufs(unsigned short *mem, int which,
710 int count, int decode_pos)
b72f17a1 711{
215ff9e6 712 unsigned short *dst = &mem[0x800/2 + which*0x400/2];
713 const int *src = ChanBuf;
714 int cursor = decode_pos;
b72f17a1 715
716 while (count-- > 0)
717 {
ee9afdbd 718 cursor &= 0x1ff;
b72f17a1 719 dst[cursor] = *src++;
ee9afdbd 720 cursor++;
b72f17a1 721 }
722
723 // decode_pos is updated and irqs are checked later, after voice loop
724}
725
215ff9e6 726static void do_silent_chans(int ns_to, int silentch)
727{
5514a050 728 unsigned int mask;
729 SPUCHAN *s_chan;
215ff9e6 730 int ch;
731
5514a050 732 mask = silentch & 0xffffff;
733 for (ch = 0; mask != 0; ch++, mask >>= 1)
215ff9e6 734 {
5514a050 735 if (!(mask & 1)) continue;
215ff9e6 736 if (spu.dwChannelDead & (1<<ch)) continue;
5514a050 737
738 s_chan = &spu.s_chan[ch];
739 if (s_chan->pCurr > spu.pSpuIrq && s_chan->pLoop > spu.pSpuIrq)
215ff9e6 740 continue;
741
5514a050 742 s_chan->spos += s_chan->iSBPos << 16;
743 s_chan->iSBPos = 0;
215ff9e6 744
5514a050 745 s_chan->spos += s_chan->sinc * ns_to;
746 while (s_chan->spos >= 28 * 0x10000)
215ff9e6 747 {
5514a050 748 unsigned char *start = s_chan->pCurr;
215ff9e6 749
750 skip_block(ch);
5514a050 751 if (start == s_chan->pCurr || start - spu.spuMemC < 0x1000)
215ff9e6 752 {
753 // looping on self or stopped(?)
754 spu.dwChannelDead |= 1<<ch;
5514a050 755 s_chan->spos = 0;
215ff9e6 756 break;
757 }
758
5514a050 759 s_chan->spos -= 28 * 0x10000;
215ff9e6 760 }
761 }
762}
763
764static void do_channels(int ns_to)
765{
766 unsigned int mask;
05c7cec7 767 int do_rvb, ch, d;
5514a050 768 SPUCHAN *s_chan;
38e4048f 769
770 if (unlikely(spu.interpolation != spu_config.iUseInterpolation))
771 {
772 spu.interpolation = spu_config.iUseInterpolation;
773 mask = spu.dwChannelsAudible & 0xffffff;
774 for (ch = 0; mask != 0; ch++, mask >>= 1)
775 if (mask & 1)
776 ResetInterpolation(&spu.sb[ch]);
777 }
215ff9e6 778
05c7cec7 779 do_rvb = spu.rvb->StartAddr && spu_config.iUseReverb;
780 if (do_rvb)
781 memset(RVB, 0, ns_to * sizeof(RVB[0]) * 2);
3bd31caf 782
783 mask = spu.dwNewChannel & 0xffffff;
784 for (ch = 0; mask != 0; ch++, mask >>= 1) {
785 if (mask & 1)
786 StartSound(ch);
787 }
215ff9e6 788
5aa94fa0 789 mask = spu.dwChannelsAudible & 0xffffff;
215ff9e6 790 for (ch = 0; mask != 0; ch++, mask >>= 1) // loop em all...
791 {
792 if (!(mask & 1)) continue; // channel not playing? next
793
5514a050 794 s_chan = &spu.s_chan[ch];
5514a050 795 if (s_chan->bNoise)
0de2ae23 796 d = do_samples_noise(ChanBuf, ch, ns_to);
215ff9e6 797 else
0de2ae23 798 d = do_samples_adpcm(ChanBuf, decode_block, NULL, ch, ns_to, s_chan->bFMod,
38e4048f 799 &spu.sb[ch], s_chan->sinc, &s_chan->spos, &s_chan->iSBPos);
215ff9e6 800
d358733b 801 if (!s_chan->bStarting) {
0de2ae23 802 d = MixADSR(ChanBuf, &s_chan->ADSRX, d);
d358733b 803 if (d < ns_to) {
804 spu.dwChannelsAudible &= ~(1 << ch);
805 s_chan->ADSRX.State = ADSR_RELEASE;
806 s_chan->ADSRX.EnvelopeVol = 0;
807 memset(&ChanBuf[d], 0, (ns_to - d) * sizeof(ChanBuf[0]));
808 }
215ff9e6 809 }
810
811 if (ch == 1 || ch == 3)
812 {
813 do_decode_bufs(spu.spuMem, ch/2, ns_to, spu.decode_pos);
814 spu.decode_dirty_ch |= 1 << ch;
815 }
816
5514a050 817 if (s_chan->bFMod == 2) // fmod freq channel
215ff9e6 818 memcpy(iFMod, &ChanBuf, ns_to * sizeof(iFMod[0]));
05c7cec7 819 if (s_chan->bRVBActive && do_rvb)
820 mix_chan_rvb(spu.SSumLR, ns_to, s_chan->iLeftVolume, s_chan->iRightVolume, RVB);
215ff9e6 821 else
3bd31caf 822 mix_chan(spu.SSumLR, ns_to, s_chan->iLeftVolume, s_chan->iRightVolume);
215ff9e6 823 }
05c7cec7 824
73d2a903 825 MixXA(spu.SSumLR, RVB, ns_to, spu.decode_pos);
826
05c7cec7 827 if (spu.rvb->StartAddr) {
7b2c4897 828 if (do_rvb)
05c7cec7 829 REVERBDo(spu.SSumLR, RVB, ns_to, spu.rvb->CurrAddr);
05c7cec7 830
831 spu.rvb->CurrAddr += ns_to / 2;
832 while (spu.rvb->CurrAddr >= 0x40000)
833 spu.rvb->CurrAddr -= 0x40000 - spu.rvb->StartAddr;
834 }
215ff9e6 835}
836
05c7cec7 837static void do_samples_finish(int *SSumLR, int ns_to,
3bd31caf 838 int silentch, int decode_pos);
63a4f6b6 839
840// optional worker thread handling
841
9165d434 842#if P_HAVE_PTHREAD || defined(WANT_THREAD_CODE)
63a4f6b6 843
3bd31caf 844// worker thread state
845static struct spu_worker {
846 union {
847 struct {
848 unsigned int exit_thread;
849 unsigned int i_ready;
850 unsigned int i_reaped;
05c7cec7 851 unsigned int last_boot_cnt; // dsp
0c1151fe 852 unsigned int ram_dirty;
3bd31caf 853 };
854 // aligning for C64X_DSP
855 unsigned int _pad0[128/4];
856 };
857 union {
858 struct {
859 unsigned int i_done;
860 unsigned int active; // dsp
861 unsigned int boot_cnt;
862 };
863 unsigned int _pad1[128/4];
864 };
865 struct work_item {
866 int ns_to;
867 int ctrl;
868 int decode_pos;
05c7cec7 869 int rvb_addr;
3bd31caf 870 unsigned int channels_new;
871 unsigned int channels_on;
872 unsigned int channels_silent;
873 struct {
874 int spos;
875 int sbpos;
876 int sinc;
877 int start;
878 int loop;
05c7cec7 879 short vol_l;
880 short vol_r;
53d4b74d 881 unsigned short ns_to;
882 unsigned short bNoise:1;
883 unsigned short bFMod:2;
884 unsigned short bRVBActive:1;
0de2ae23 885 unsigned short bStarting:1;
3bd31caf 886 ADSRInfoEx adsr;
3bd31caf 887 } ch[24];
3bd31caf 888 int SSumLR[NSSIZE * 2];
889 } i[4];
890} *worker;
891
892#define WORK_MAXCNT (sizeof(worker->i) / sizeof(worker->i[0]))
893#define WORK_I_MASK (WORK_MAXCNT - 1)
894
5514a050 895static void thread_work_start(void);
3bd31caf 896static void thread_work_wait_sync(struct work_item *work, int force);
05c7cec7 897static void thread_sync_caches(void);
3bd31caf 898static int thread_get_i_done(void);
899
900static int decode_block_work(void *context, int ch, int *SB)
901{
902 const unsigned char *ram = spu.spuMemC;
903 int predict_nr, shift_factor, flags;
904 struct work_item *work = context;
905 int start = work->ch[ch].start;
906 int loop = work->ch[ch].loop;
907
908 predict_nr = ram[start];
909 shift_factor = predict_nr & 0xf;
910 predict_nr >>= 4;
911
912 decode_block_data(SB, ram + start + 2, predict_nr, shift_factor);
913
914 flags = ram[start + 1];
915 if (flags & 4)
916 loop = start; // loop adress
917
918 start += 16;
919
920 if (flags & 1) // 1: stop/loop
921 start = loop;
922
923 work->ch[ch].start = start & 0x7ffff;
924 work->ch[ch].loop = loop;
925
926 return 0;
927}
5514a050 928
3bd31caf 929static void queue_channel_work(int ns_to, unsigned int silentch)
63a4f6b6 930{
0de2ae23 931 int tmpFMod[NSSIZE];
3bd31caf 932 struct work_item *work;
933 SPUCHAN *s_chan;
63a4f6b6 934 unsigned int mask;
3bd31caf 935 int ch, d;
63a4f6b6 936
3bd31caf 937 work = &worker->i[worker->i_ready & WORK_I_MASK];
938 work->ns_to = ns_to;
939 work->ctrl = spu.spuCtrl;
940 work->decode_pos = spu.decode_pos;
941 work->channels_silent = silentch;
942
943 mask = work->channels_new = spu.dwNewChannel & 0xffffff;
944 for (ch = 0; mask != 0; ch++, mask >>= 1) {
945 if (mask & 1)
0de2ae23 946 StartSound(ch);
3bd31caf 947 }
948
5aa94fa0 949 mask = work->channels_on = spu.dwChannelsAudible & 0xffffff;
3bd31caf 950 spu.decode_dirty_ch |= mask & 0x0a;
63a4f6b6 951
63a4f6b6 952 for (ch = 0; mask != 0; ch++, mask >>= 1)
953 {
954 if (!(mask & 1)) continue;
955
5514a050 956 s_chan = &spu.s_chan[ch];
3bd31caf 957 work->ch[ch].spos = s_chan->spos;
958 work->ch[ch].sbpos = s_chan->iSBPos;
959 work->ch[ch].sinc = s_chan->sinc;
960 work->ch[ch].adsr = s_chan->ADSRX;
05c7cec7 961 work->ch[ch].vol_l = s_chan->iLeftVolume;
962 work->ch[ch].vol_r = s_chan->iRightVolume;
3bd31caf 963 work->ch[ch].start = s_chan->pCurr - spu.spuMemC;
964 work->ch[ch].loop = s_chan->pLoop - spu.spuMemC;
53d4b74d 965 work->ch[ch].bNoise = s_chan->bNoise;
966 work->ch[ch].bFMod = s_chan->bFMod;
967 work->ch[ch].bRVBActive = s_chan->bRVBActive;
0de2ae23 968 work->ch[ch].bStarting = s_chan->bStarting;
5514a050 969 if (s_chan->prevflags & 1)
3bd31caf 970 work->ch[ch].start = work->ch[ch].loop;
63a4f6b6 971
0de2ae23 972 if (unlikely(s_chan->bFMod == 2))
973 {
974 // sucks, have to do double work
975 assert(!s_chan->bNoise);
976 d = do_samples_gauss(tmpFMod, decode_block, NULL, ch, ns_to,
977 &spu.sb[ch], s_chan->sinc, &s_chan->spos, &s_chan->iSBPos);
978 if (!s_chan->bStarting) {
979 d = MixADSR(tmpFMod, &s_chan->ADSRX, d);
980 if (d < ns_to) {
981 spu.dwChannelsAudible &= ~(1 << ch);
982 s_chan->ADSRX.State = ADSR_RELEASE;
983 s_chan->ADSRX.EnvelopeVol = 0;
984 }
985 }
986 memset(&tmpFMod[d], 0, (ns_to - d) * sizeof(tmpFMod[d]));
987 work->ch[ch].ns_to = d;
988 continue;
989 }
990 if (unlikely(s_chan->bFMod))
991 d = do_samples_skip_fmod(ch, ns_to, tmpFMod);
992 else
993 d = do_samples_skip(ch, ns_to);
3bd31caf 994 work->ch[ch].ns_to = d;
995
d358733b 996 if (!s_chan->bStarting) {
997 // note: d is not accurate on skip
998 d = SkipADSR(&s_chan->ADSRX, d);
999 if (d < ns_to) {
1000 spu.dwChannelsAudible &= ~(1 << ch);
1001 s_chan->ADSRX.State = ADSR_RELEASE;
1002 s_chan->ADSRX.EnvelopeVol = 0;
1003 }
3bd31caf 1004 }
0de2ae23 1005 } // for (ch;;)
63a4f6b6 1006
05c7cec7 1007 work->rvb_addr = 0;
1008 if (spu.rvb->StartAddr) {
7b2c4897 1009 if (spu_config.iUseReverb)
05c7cec7 1010 work->rvb_addr = spu.rvb->CurrAddr;
05c7cec7 1011
1012 spu.rvb->CurrAddr += ns_to / 2;
1013 while (spu.rvb->CurrAddr >= 0x40000)
1014 spu.rvb->CurrAddr -= 0x40000 - spu.rvb->StartAddr;
1015 }
1016
3bd31caf 1017 worker->i_ready++;
5514a050 1018 thread_work_start();
63a4f6b6 1019}
1020
3bd31caf 1021static void do_channel_work(struct work_item *work)
63a4f6b6 1022{
3bd31caf 1023 unsigned int mask;
38e4048f 1024 int spos, sbpos;
63a4f6b6 1025 int d, ch, ns_to;
1026
3bd31caf 1027 ns_to = work->ns_to;
05c7cec7 1028
38e4048f 1029 if (unlikely(spu.interpolation != spu_config.iUseInterpolation))
1030 {
1031 spu.interpolation = spu_config.iUseInterpolation;
0de2ae23 1032 mask = work->channels_on;
38e4048f 1033 for (ch = 0; mask != 0; ch++, mask >>= 1)
1034 if (mask & 1)
0de2ae23 1035 ResetInterpolation(&spu.sb_thread[ch]);
38e4048f 1036 }
1037
05c7cec7 1038 if (work->rvb_addr)
1039 memset(RVB, 0, ns_to * sizeof(RVB[0]) * 2);
63a4f6b6 1040
3bd31caf 1041 mask = work->channels_new;
1042 for (ch = 0; mask != 0; ch++, mask >>= 1) {
1043 if (mask & 1)
0de2ae23 1044 StartSoundSB(&spu.sb_thread[ch]);
3bd31caf 1045 }
1046
1047 mask = work->channels_on;
63a4f6b6 1048 for (ch = 0; mask != 0; ch++, mask >>= 1)
1049 {
1050 if (!(mask & 1)) continue;
1051
3bd31caf 1052 d = work->ch[ch].ns_to;
1053 spos = work->ch[ch].spos;
1054 sbpos = work->ch[ch].sbpos;
5514a050 1055
53d4b74d 1056 if (work->ch[ch].bNoise)
0de2ae23 1057 do_lsfr_samples(ChanBuf, d, work->ctrl, &spu.dwNoiseCount, &spu.dwNoiseVal);
63a4f6b6 1058 else
0de2ae23 1059 do_samples_adpcm(ChanBuf, decode_block_work, work, ch, d, work->ch[ch].bFMod,
1060 &spu.sb_thread[ch], work->ch[ch].sinc, &spos, &sbpos);
63a4f6b6 1061
0de2ae23 1062 d = MixADSR(ChanBuf, &work->ch[ch].adsr, d);
63a4f6b6 1063 if (d < ns_to) {
3bd31caf 1064 work->ch[ch].adsr.EnvelopeVol = 0;
63a4f6b6 1065 memset(&ChanBuf[d], 0, (ns_to - d) * sizeof(ChanBuf[0]));
1066 }
1067
1068 if (ch == 1 || ch == 3)
53d4b74d 1069 do_decode_bufs(spu.spuMem, ch/2, ns_to, work->decode_pos);
63a4f6b6 1070
53d4b74d 1071 if (work->ch[ch].bFMod == 2) // fmod freq channel
63a4f6b6 1072 memcpy(iFMod, &ChanBuf, ns_to * sizeof(iFMod[0]));
53d4b74d 1073 if (work->ch[ch].bRVBActive && work->rvb_addr)
3bd31caf 1074 mix_chan_rvb(work->SSumLR, ns_to,
05c7cec7 1075 work->ch[ch].vol_l, work->ch[ch].vol_r, RVB);
63a4f6b6 1076 else
05c7cec7 1077 mix_chan(work->SSumLR, ns_to, work->ch[ch].vol_l, work->ch[ch].vol_r);
63a4f6b6 1078 }
05c7cec7 1079
1080 if (work->rvb_addr)
1081 REVERBDo(work->SSumLR, RVB, ns_to, work->rvb_addr);
63a4f6b6 1082}
1083
3bd31caf 1084static void sync_worker_thread(int force)
63a4f6b6 1085{
3bd31caf 1086 struct work_item *work;
1087 int done, used_space;
63a4f6b6 1088
7b2c4897 1089 // rvb offsets will change, thread may be using them
1090 force |= spu.rvb->dirty && spu.rvb->StartAddr;
1091
3bd31caf 1092 done = thread_get_i_done() - worker->i_reaped;
1093 used_space = worker->i_ready - worker->i_reaped;
0c1151fe 1094
3bd31caf 1095 //printf("done: %d use: %d dsp: %u/%u\n", done, used_space,
1096 // worker->boot_cnt, worker->i_done);
63a4f6b6 1097
3bd31caf 1098 while ((force && used_space > 0) || used_space >= WORK_MAXCNT || done > 0) {
1099 work = &worker->i[worker->i_reaped & WORK_I_MASK];
1100 thread_work_wait_sync(work, force);
63a4f6b6 1101
73d2a903 1102 MixXA(work->SSumLR, RVB, work->ns_to, work->decode_pos);
05c7cec7 1103 do_samples_finish(work->SSumLR, work->ns_to,
3bd31caf 1104 work->channels_silent, work->decode_pos);
63a4f6b6 1105
3bd31caf 1106 worker->i_reaped++;
1107 done = thread_get_i_done() - worker->i_reaped;
1108 used_space = worker->i_ready - worker->i_reaped;
63a4f6b6 1109 }
05c7cec7 1110 if (force)
1111 thread_sync_caches();
63a4f6b6 1112}
1113
1114#else
1115
1116static void queue_channel_work(int ns_to, int silentch) {}
3bd31caf 1117static void sync_worker_thread(int force) {}
1118
1119static const void * const worker = NULL;
63a4f6b6 1120
9165d434 1121#endif // P_HAVE_PTHREAD || defined(WANT_THREAD_CODE)
63a4f6b6 1122
ef79bbde
P
1123////////////////////////////////////////////////////////////////////////
1124// MAIN SPU FUNCTION
6d75977b 1125// here is the main job handler...
ef79bbde
P
1126////////////////////////////////////////////////////////////////////////
1127
de4a0279 1128void do_samples(unsigned int cycles_to, int do_direct)
ef79bbde 1129{
3bd31caf 1130 unsigned int silentch;
650adfd2 1131 int cycle_diff;
3bd31caf 1132 int ns_to;
ef79bbde 1133
3154bfab 1134 cycle_diff = cycles_to - spu.cycles_played;
650adfd2 1135 if (cycle_diff < -2*1048576 || cycle_diff > 2*1048576)
1136 {
1137 //xprintf("desync %u %d\n", cycles_to, cycle_diff);
3154bfab 1138 spu.cycles_played = cycles_to;
650adfd2 1139 return;
1140 }
e34a4bd3 1141
5aa94fa0 1142 silentch = ~(spu.dwChannelsAudible | spu.dwNewChannel) & 0xffffff;
3bd31caf 1143
1144 do_direct |= (silentch == 0xffffff);
de4a0279 1145 if (worker != NULL)
1146 sync_worker_thread(do_direct);
1147
650adfd2 1148 if (cycle_diff < 2 * 768)
1149 return;
e34a4bd3 1150
650adfd2 1151 ns_to = (cycle_diff / 768 + 1) & ~1;
1152 if (ns_to > NSSIZE) {
1153 // should never happen
1154 //xprintf("ns_to oflow %d %d\n", ns_to, NSSIZE);
1155 ns_to = NSSIZE;
1156 }
1157
1158 //////////////////////////////////////////////////////
1159 // special irq handling in the decode buffers (0x0000-0x1000)
1160 // we know:
1161 // the decode buffers are located in spu memory in the following way:
1162 // 0x0000-0x03ff CD audio left
1163 // 0x0400-0x07ff CD audio right
1164 // 0x0800-0x0bff Voice 1
1165 // 0x0c00-0x0fff Voice 3
1166 // and decoded data is 16 bit for one sample
1167 // we assume:
1168 // even if voices 1/3 are off or no cd audio is playing, the internal
1169 // play positions will move on and wrap after 0x400 bytes.
1170 // Therefore: we just need a pointer from spumem+0 to spumem+3ff, and
1171 // increase this pointer on each sample by 2 bytes. If this pointer
1172 // (or 0x400 offsets of this pointer) hits the spuirq address, we generate
1173 // an IRQ.
1174
3154bfab 1175 if (unlikely((spu.spuCtrl & CTRL_IRQ)
c4c66b22 1176 && spu.pSpuIrq < spu.spuMemC+0x1000))
650adfd2 1177 {
3154bfab 1178 int irq_pos = (spu.pSpuIrq - spu.spuMemC) / 2 & 0x1ff;
1179 int left = (irq_pos - spu.decode_pos) & 0x1ff;
650adfd2 1180 if (0 < left && left <= ns_to)
1181 {
3154bfab 1182 //xprintf("decoder irq %x\n", spu.decode_pos);
650adfd2 1183 do_irq();
650adfd2 1184 }
1185 }
3c7a8977 1186 if (!spu.cycles_dma_end || (int)(spu.cycles_dma_end - cycles_to) < 0) {
1187 spu.cycles_dma_end = 0;
1188 check_irq_io(spu.spuAddr);
1189 }
650adfd2 1190
7b2c4897 1191 if (unlikely(spu.rvb->dirty))
1192 REVERBPrep();
1193
3bd31caf 1194 if (do_direct || worker == NULL || !spu_config.iUseThread) {
1195 do_channels(ns_to);
05c7cec7 1196 do_samples_finish(spu.SSumLR, ns_to, silentch, spu.decode_pos);
63a4f6b6 1197 }
215ff9e6 1198 else {
3bd31caf 1199 queue_channel_work(ns_to, silentch);
53d4b74d 1200 //sync_worker_thread(1); // uncomment for debug
215ff9e6 1201 }
ef79bbde 1202
215ff9e6 1203 // advance "stopped" channels that can cause irqs
1204 // (all chans are always playing on the real thing..)
1205 if (spu.spuCtrl & CTRL_IRQ)
1206 do_silent_chans(ns_to, silentch);
1207
1208 spu.cycles_played += ns_to * 768;
1209 spu.decode_pos = (spu.decode_pos + ns_to) & 0x1ff;
d358733b 1210#if 0
1211 static int ccount; static time_t ctime; ccount++;
1212 if (time(NULL) != ctime)
1213 { printf("%d\n", ccount); ccount = 0; ctime = time(NULL); }
1214#endif
215ff9e6 1215}
1216
05c7cec7 1217static void do_samples_finish(int *SSumLR, int ns_to,
3bd31caf 1218 int silentch, int decode_pos)
215ff9e6 1219{
5fdcf5cd 1220 int vol_l = ((int)regAreaGet(H_SPUmvolL) << 17) >> 17;
1221 int vol_r = ((int)regAreaGet(H_SPUmvolR) << 17) >> 17;
215ff9e6 1222 int ns;
1223 int d;
78c60846 1224
3bd31caf 1225 // must clear silent channel decode buffers
1226 if(unlikely(silentch & spu.decode_dirty_ch & (1<<1)))
b72f17a1 1227 {
3154bfab 1228 memset(&spu.spuMem[0x800/2], 0, 0x400);
1229 spu.decode_dirty_ch &= ~(1<<1);
b72f17a1 1230 }
3154bfab 1231 if(unlikely(silentch & spu.decode_dirty_ch & (1<<3)))
b72f17a1 1232 {
3154bfab 1233 memset(&spu.spuMem[0xc00/2], 0, 0x400);
1234 spu.decode_dirty_ch &= ~(1<<3);
b72f17a1 1235 }
8680e822 1236
5fdcf5cd 1237 vol_l = vol_l * spu_config.iVolume >> 10;
1238 vol_r = vol_r * spu_config.iVolume >> 10;
1239
73d2a903 1240 if (!(spu.spuCtrl & CTRL_MUTE) || !(vol_l | vol_r))
1775933a 1241 {
5fdcf5cd 1242 // muted? (rare)
3154bfab 1243 memset(spu.pS, 0, ns_to * 2 * sizeof(spu.pS[0]));
5fdcf5cd 1244 memset(SSumLR, 0, ns_to * 2 * sizeof(SSumLR[0]));
3154bfab 1245 spu.pS += ns_to * 2;
1775933a 1246 }
1247 else
650adfd2 1248 for (ns = 0; ns < ns_to * 2; )
ef79bbde 1249 {
9e7a7352 1250 d = SSumLR[ns]; SSumLR[ns] = 0;
eaa5336d 1251 d = d * vol_l >> 14;
1775933a 1252 ssat32_to_16(d);
3154bfab 1253 *spu.pS++ = d;
97ea4077 1254 ns++;
ef79bbde 1255
9e7a7352 1256 d = SSumLR[ns]; SSumLR[ns] = 0;
eaa5336d 1257 d = d * vol_r >> 14;
1775933a 1258 ssat32_to_16(d);
3154bfab 1259 *spu.pS++ = d;
97ea4077 1260 ns++;
ef79bbde 1261 }
650adfd2 1262}
ef79bbde 1263
650adfd2 1264void schedule_next_irq(void)
1265{
1266 unsigned int upd_samples;
1267 int ch;
ef79bbde 1268
3154bfab 1269 if (spu.scheduleCallback == NULL)
650adfd2 1270 return;
e34a4bd3 1271
650adfd2 1272 upd_samples = 44100 / 50;
e34a4bd3 1273
650adfd2 1274 for (ch = 0; ch < MAXCHAN; ch++)
1275 {
3154bfab 1276 if (spu.dwChannelDead & (1 << ch))
650adfd2 1277 continue;
5514a050 1278 if ((unsigned long)(spu.pSpuIrq - spu.s_chan[ch].pCurr) > IRQ_NEAR_BLOCKS * 16
1279 && (unsigned long)(spu.pSpuIrq - spu.s_chan[ch].pLoop) > IRQ_NEAR_BLOCKS * 16)
650adfd2 1280 continue;
f3fa20c2 1281 if (spu.s_chan[ch].sinc == 0)
1282 continue;
16187bfb 1283
650adfd2 1284 scan_for_irq(ch, &upd_samples);
ef79bbde
P
1285 }
1286
3154bfab 1287 if (unlikely(spu.pSpuIrq < spu.spuMemC + 0x1000))
650adfd2 1288 {
3154bfab 1289 int irq_pos = (spu.pSpuIrq - spu.spuMemC) / 2 & 0x1ff;
1290 int left = (irq_pos - spu.decode_pos) & 0x1ff;
650adfd2 1291 if (0 < left && left < upd_samples) {
3154bfab 1292 //xprintf("decode: %3d (%3d/%3d)\n", left, spu.decode_pos, irq_pos);
650adfd2 1293 upd_samples = left;
1294 }
1295 }
16187bfb 1296
650adfd2 1297 if (upd_samples < 44100 / 50)
3154bfab 1298 spu.scheduleCallback(upd_samples * 768);
ef79bbde
P
1299}
1300
1301// SPU ASYNC... even newer epsxe func
1302// 1 time every 'cycle' cycles... harhar
1303
650adfd2 1304// rearmed: called dynamically now
554a2220 1305
650adfd2 1306void CALLBACK SPUasync(unsigned int cycle, unsigned int flags)
ef79bbde 1307{
b34d6a80 1308 do_samples(cycle, 0);
fb552464 1309
3154bfab 1310 if (spu.spuCtrl & CTRL_IRQ)
650adfd2 1311 schedule_next_irq();
f8edb5bc 1312
650adfd2 1313 if (flags & 1) {
3154bfab 1314 out_current->feed(spu.pSpuBuffer, (unsigned char *)spu.pS - spu.pSpuBuffer);
1315 spu.pS = (short *)spu.pSpuBuffer;
fb552464 1316
3154bfab 1317 if (spu_config.iTempo) {
650adfd2 1318 if (!out_current->busy())
1319 // cause more samples to be generated
1320 // (and break some games because of bad sync)
3154bfab 1321 spu.cycles_played -= 44100 / 60 / 2 * 768;
ef79bbde 1322 }
650adfd2 1323 }
ef79bbde
P
1324}
1325
1326// SPU UPDATE... new epsxe func
1327// 1 time every 32 hsync lines
1328// (312/32)x50 in pal
1329// (262/32)x60 in ntsc
1330
1331// since epsxe 1.5.2 (linux) uses SPUupdate, not SPUasync, I will
1332// leave that func in the linux port, until epsxe linux is using
1333// the async function as well
1334
1335void CALLBACK SPUupdate(void)
1336{
ef79bbde
P
1337}
1338
1339// XA AUDIO
1340
9cf79034 1341void CALLBACK SPUplayADPCMchannel(xa_decode_t *xap, unsigned int cycle, int is_start)
ef79bbde
P
1342{
1343 if(!xap) return;
9cf79034 1344 if(!xap->freq) return; // no xa freq ? bye
ef79bbde 1345
9cf79034 1346 if (is_start)
1347 do_samples(cycle, 1); // catch up to prevent source underflows later
1348
1349 FeedXA(xap); // call main XA feeder
b34d6a80 1350 spu.xapGlobal = xap; // store info for save states
ef79bbde
P
1351}
1352
1353// CDDA AUDIO
9cf79034 1354int CALLBACK SPUplayCDDAchannel(short *pcm, int nbytes, unsigned int cycle, int is_start)
ef79bbde 1355{
983a7cfd 1356 if (!pcm) return -1;
1357 if (nbytes<=0) return -1;
ef79bbde 1358
9cf79034 1359 if (is_start)
1360 do_samples(cycle, 1); // catch up to prevent source underflows later
1361
b34d6a80 1362 FeedCDDA((unsigned char *)pcm, nbytes);
1363 return 0;
ef79bbde
P
1364}
1365
6d75977b 1366// to be called after state load
1367void ClearWorkingState(void)
ef79bbde 1368{
5514a050 1369 memset(iFMod, 0, sizeof(iFMod));
3154bfab 1370 spu.pS=(short *)spu.pSpuBuffer; // setup soundbuffer pointer
ef79bbde
P
1371}
1372
1373// SETUPSTREAMS: init most of the spu buffers
05c7cec7 1374static void SetupStreams(void)
ef79bbde 1375{
3154bfab 1376 spu.pSpuBuffer = (unsigned char *)malloc(32768); // alloc mixing buffer
3bd31caf 1377 spu.SSumLR = calloc(NSSIZE * 2, sizeof(spu.SSumLR[0]));
ef79bbde 1378
33788798 1379 spu.XAStart = malloc(44100 * sizeof(uint32_t)); // alloc xa buffer
3154bfab 1380 spu.XAEnd = spu.XAStart + 44100;
1381 spu.XAPlay = spu.XAStart;
1382 spu.XAFeed = spu.XAStart;
ef79bbde 1383
33788798 1384 spu.CDDAStart = malloc(CDDA_BUFFER_SIZE); // alloc cdda buffer
b34d6a80 1385 spu.CDDAEnd = spu.CDDAStart + CDDA_BUFFER_SIZE / sizeof(uint32_t);
3154bfab 1386 spu.CDDAPlay = spu.CDDAStart;
1387 spu.CDDAFeed = spu.CDDAStart;
ef79bbde 1388
6d75977b 1389 ClearWorkingState();
ef79bbde
P
1390}
1391
1392// REMOVESTREAMS: free most buffer
05c7cec7 1393static void RemoveStreams(void)
ef79bbde 1394{
3154bfab 1395 free(spu.pSpuBuffer); // free mixing buffer
1396 spu.pSpuBuffer = NULL;
3bd31caf 1397 free(spu.SSumLR);
1398 spu.SSumLR = NULL;
3154bfab 1399 free(spu.XAStart); // free XA buffer
1400 spu.XAStart = NULL;
1401 free(spu.CDDAStart); // free CDDA buffer
1402 spu.CDDAStart = NULL;
ef79bbde
P
1403}
1404
5514a050 1405#if defined(C64X_DSP)
1406
1407/* special code for TI C64x DSP */
1408#include "spu_c64x.c"
1409
9165d434 1410#elif P_HAVE_PTHREAD
5514a050 1411
1412#include <pthread.h>
1413#include <semaphore.h>
1414#include <unistd.h>
1415
1416static struct {
1417 pthread_t thread;
1418 sem_t sem_avail;
1419 sem_t sem_done;
1420} t;
1421
1422/* generic pthread implementation */
1423
1424static void thread_work_start(void)
1425{
1426 sem_post(&t.sem_avail);
1427}
1428
3bd31caf 1429static void thread_work_wait_sync(struct work_item *work, int force)
5514a050 1430{
1431 sem_wait(&t.sem_done);
1432}
63a4f6b6 1433
3bd31caf 1434static int thread_get_i_done(void)
de4a0279 1435{
3bd31caf 1436 return worker->i_done;
de4a0279 1437}
1438
05c7cec7 1439static void thread_sync_caches(void)
1440{
1441}
1442
63a4f6b6 1443static void *spu_worker_thread(void *unused)
1444{
3bd31caf 1445 struct work_item *work;
1446
63a4f6b6 1447 while (1) {
5514a050 1448 sem_wait(&t.sem_avail);
63a4f6b6 1449 if (worker->exit_thread)
1450 break;
1451
3bd31caf 1452 work = &worker->i[worker->i_done & WORK_I_MASK];
1453 do_channel_work(work);
1454 worker->i_done++;
63a4f6b6 1455
5514a050 1456 sem_post(&t.sem_done);
63a4f6b6 1457 }
1458
1459 return NULL;
1460}
1461
1462static void init_spu_thread(void)
1463{
1464 int ret;
1465
1466 if (sysconf(_SC_NPROCESSORS_ONLN) <= 1)
1467 return;
1468
1469 worker = calloc(1, sizeof(*worker));
1470 if (worker == NULL)
1471 return;
5514a050 1472 ret = sem_init(&t.sem_avail, 0, 0);
63a4f6b6 1473 if (ret != 0)
1474 goto fail_sem_avail;
5514a050 1475 ret = sem_init(&t.sem_done, 0, 0);
63a4f6b6 1476 if (ret != 0)
1477 goto fail_sem_done;
1478
5514a050 1479 ret = pthread_create(&t.thread, NULL, spu_worker_thread, NULL);
63a4f6b6 1480 if (ret != 0)
1481 goto fail_thread;
1482
3bd31caf 1483 spu_config.iThreadAvail = 1;
63a4f6b6 1484 return;
1485
1486fail_thread:
5514a050 1487 sem_destroy(&t.sem_done);
63a4f6b6 1488fail_sem_done:
5514a050 1489 sem_destroy(&t.sem_avail);
63a4f6b6 1490fail_sem_avail:
1491 free(worker);
1492 worker = NULL;
3bd31caf 1493 spu_config.iThreadAvail = 0;
63a4f6b6 1494}
1495
1496static void exit_spu_thread(void)
1497{
1498 if (worker == NULL)
1499 return;
1500 worker->exit_thread = 1;
5514a050 1501 sem_post(&t.sem_avail);
1502 pthread_join(t.thread, NULL);
1503 sem_destroy(&t.sem_done);
1504 sem_destroy(&t.sem_avail);
63a4f6b6 1505 free(worker);
1506 worker = NULL;
1507}
1508
9165d434 1509#else // if !P_HAVE_PTHREAD
63a4f6b6 1510
1511static void init_spu_thread(void)
1512{
1513}
1514
1515static void exit_spu_thread(void)
1516{
1517}
1518
1519#endif
ef79bbde
P
1520
1521// SPUINIT: this func will be called first by the main emu
1522long CALLBACK SPUinit(void)
1523{
05c7cec7 1524 int i;
1525
66cc6abb 1526 memset(&spu, 0, sizeof(spu));
5514a050 1527 spu.spuMemC = calloc(1, 512 * 1024);
ef79bbde
P
1528 InitADSR();
1529
5514a050 1530 spu.s_chan = calloc(MAXCHAN+1, sizeof(spu.s_chan[0])); // channel + 1 infos (1 is security for fmod handling)
05c7cec7 1531 spu.rvb = calloc(1, sizeof(REVERBInfo));
5514a050 1532
1533 spu.spuAddr = 0;
3154bfab 1534 spu.decode_pos = 0;
c4c66b22 1535 spu.pSpuIrq = spu.spuMemC;
ef79bbde 1536
ef79bbde
P
1537 SetupStreams(); // prepare streaming
1538
3154bfab 1539 if (spu_config.iVolume == 0)
1540 spu_config.iVolume = 768; // 1024 is 1.0
1541
63a4f6b6 1542 init_spu_thread();
1543
05c7cec7 1544 for (i = 0; i < MAXCHAN; i++) // loop sound channels
1545 {
1546 spu.s_chan[i].ADSRX.SustainLevel = 0xf; // -> init sustain
1547 spu.s_chan[i].ADSRX.SustainIncrease = 1;
1548 spu.s_chan[i].pLoop = spu.spuMemC;
1549 spu.s_chan[i].pCurr = spu.spuMemC;
16f3ca66 1550 spu.s_chan[i].bIgnoreLoop = 0;
05c7cec7 1551 }
1552
1553 spu.bSpuInit=1; // flag: we are inited
1554
ef79bbde
P
1555 return 0;
1556}
1557
1558// SPUOPEN: called by main emu after init
1559long CALLBACK SPUopen(void)
1560{
3154bfab 1561 if (spu.bSPUIsOpen) return 0; // security for some stupid main emus
ef79bbde
P
1562
1563 SetupSound(); // setup sound (before init!)
ef79bbde 1564
3154bfab 1565 spu.bSPUIsOpen = 1;
ef79bbde
P
1566
1567 return PSE_SPU_ERR_SUCCESS;
1568}
1569
1570// SPUCLOSE: called before shutdown
1571long CALLBACK SPUclose(void)
1572{
3154bfab 1573 if (!spu.bSPUIsOpen) return 0; // some security
ef79bbde 1574
3154bfab 1575 spu.bSPUIsOpen = 0; // no more open
ef79bbde 1576
07c13dfd 1577 out_current->finish(); // no more sound handling
ef79bbde
P
1578
1579 return 0;
1580}
1581
1582// SPUSHUTDOWN: called by main emu on final exit
1583long CALLBACK SPUshutdown(void)
1584{
1585 SPUclose();
ef79bbde 1586
63a4f6b6 1587 exit_spu_thread();
1588
5514a050 1589 free(spu.spuMemC);
1590 spu.spuMemC = NULL;
1591 free(spu.s_chan);
1592 spu.s_chan = NULL;
05c7cec7 1593 free(spu.rvb);
1594 spu.rvb = NULL;
5514a050 1595
1596 RemoveStreams(); // no more streaming
1597 spu.bSpuInit=0;
1598
ef79bbde
P
1599 return 0;
1600}
1601
ef79bbde
P
1602// SETUP CALLBACKS
1603// this functions will be called once,
1604// passes a callback that should be called on SPU-IRQ/cdda volume change
c2eee46b 1605void CALLBACK SPUregisterCallback(void (CALLBACK *callback)(int))
ef79bbde 1606{
3154bfab 1607 spu.irqCallback = callback;
ef79bbde
P
1608}
1609
b64fb891 1610void CALLBACK SPUregisterCDDAVolume(void (CALLBACK *CDDAVcallback)(short, short))
ef79bbde 1611{
7285d7ad 1612 //spu.cddavCallback = CDDAVcallback;
ef79bbde
P
1613}
1614
2b30c129 1615void CALLBACK SPUregisterScheduleCb(void (CALLBACK *callback)(unsigned int))
1616{
3154bfab 1617 spu.scheduleCallback = callback;
2b30c129 1618}
1619
ef79bbde 1620// COMMON PLUGIN INFO FUNCS
e906c010 1621/*
ef79bbde
P
1622char * CALLBACK PSEgetLibName(void)
1623{
1624 return _(libraryName);
1625}
1626
1627unsigned long CALLBACK PSEgetLibType(void)
1628{
1629 return PSE_LT_SPU;
1630}
1631
1632unsigned long CALLBACK PSEgetLibVersion(void)
1633{
1634 return (1 << 16) | (6 << 8);
1635}
1636
1637char * SPUgetLibInfos(void)
1638{
1639 return _(libraryInfo);
1640}
e906c010 1641*/
6d866bb7 1642
90f1d26c 1643// debug
174c454a 1644void spu_get_debug_info(int *chans_out, int *run_chans, int *fmod_chans_out, int *noise_chans_out)
90f1d26c 1645{
174c454a 1646 int ch = 0, fmod_chans = 0, noise_chans = 0, irq_chans = 0;
90f1d26c 1647
5514a050 1648 if (spu.s_chan == NULL)
1649 return;
1650
90f1d26c 1651 for(;ch<MAXCHAN;ch++)
1652 {
5aa94fa0 1653 if (!(spu.dwChannelsAudible & (1<<ch)))
90f1d26c 1654 continue;
5514a050 1655 if (spu.s_chan[ch].bFMod == 2)
90f1d26c 1656 fmod_chans |= 1 << ch;
5514a050 1657 if (spu.s_chan[ch].bNoise)
90f1d26c 1658 noise_chans |= 1 << ch;
5514a050 1659 if((spu.spuCtrl&CTRL_IRQ) && spu.s_chan[ch].pCurr <= spu.pSpuIrq && spu.s_chan[ch].pLoop <= spu.pSpuIrq)
174c454a 1660 irq_chans |= 1 << ch;
90f1d26c 1661 }
1662
5aa94fa0 1663 *chans_out = spu.dwChannelsAudible;
1664 *run_chans = ~spu.dwChannelsAudible & ~spu.dwChannelDead & irq_chans;
90f1d26c 1665 *fmod_chans_out = fmod_chans;
1666 *noise_chans_out = noise_chans;
1667}
1668
6d866bb7 1669// vim:shiftwidth=1:expandtab