VirtualBox

source: vbox/trunk/src/VBox/Devices/Audio/DevHdaStream.cpp@ 98456

Last change on this file since 98456 was 98456, checked in by vboxsync, 16 months ago

Audio: Backed out r155649 + r155650, as this needs another approach. The three device emulations are too different wrt locking and stream setup / teardown when it comes to if and when they reset their DMA buffers. Needs more testing first. bugref:10354

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 103.6 KB
Line 
1/* $Id: DevHdaStream.cpp 98456 2023-02-02 20:23:19Z vboxsync $ */
2/** @file
3 * Intel HD Audio Controller Emulation - Streams.
4 */
5
6/*
7 * Copyright (C) 2017-2023 Oracle and/or its affiliates.
8 *
9 * This file is part of VirtualBox base platform packages, as
10 * available from https://www.virtualbox.org.
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation, in version 3 of the
15 * License.
16 *
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, see <https://www.gnu.org/licenses>.
24 *
25 * SPDX-License-Identifier: GPL-3.0-only
26 */
27
28
29/*********************************************************************************************************************************
30* Header Files *
31*********************************************************************************************************************************/
32#define LOG_GROUP LOG_GROUP_DEV_HDA
33#include <VBox/log.h>
34
35#include <iprt/mem.h>
36#include <iprt/semaphore.h>
37#include <iprt/zero.h>
38
39#include <VBox/AssertGuest.h>
40#include <VBox/vmm/pdmdev.h>
41#include <VBox/vmm/pdmaudioifs.h>
42#include <VBox/vmm/pdmaudioinline.h>
43
44#include "AudioHlp.h"
45
46#include "DevHda.h"
47
48#ifdef VBOX_WITH_DTRACE
49# include "dtrace/VBoxDD.h"
50#endif
51
52
53/*********************************************************************************************************************************
54* Internal Functions *
55*********************************************************************************************************************************/
56#if defined(IN_RING3) || defined(VBOX_HDA_WITH_ON_REG_ACCESS_DMA)
57static void hdaStreamSetPositionAbs(PHDASTREAM pStreamShared, PPDMDEVINS pDevIns, PHDASTATE pThis, uint32_t uLPIB);
58#endif
59#ifdef IN_RING3
60# ifdef VBOX_HDA_WITH_ON_REG_ACCESS_DMA
61static void hdaR3StreamFlushDmaBounceBufferOutput(PHDASTREAM pStreamShared, PHDASTREAMR3 pStreamR3);
62# endif
63static uint32_t hdaR3StreamHandleDmaBufferOverrun(PHDASTREAM pStreamShared, PHDASTREAMR3 pStreamR3, PAUDMIXSINK pSink,
64 uint32_t cbNeeded, uint64_t nsNow,
65 const char *pszCaller, uint32_t const cbStreamFree);
66static void hdaR3StreamUpdateDma(PPDMDEVINS pDevIns, PHDASTATE pThis, PHDASTATER3 pThisCC,
67 PHDASTREAM pStreamShared, PHDASTREAMR3 pStreamR3);
68#endif
69
70
71#ifdef IN_RING3
72
73/**
74 * Creates an HDA stream.
75 *
76 * @returns VBox status code.
77 * @param pStreamShared The HDA stream to construct - shared bits.
78 * @param pStreamR3 The HDA stream to construct - ring-3 bits.
79 * @param pThis The shared HDA device instance.
80 * @param pThisCC The ring-3 HDA device instance.
81 * @param uSD Stream descriptor number to assign.
82 */
83int hdaR3StreamConstruct(PHDASTREAM pStreamShared, PHDASTREAMR3 pStreamR3, PHDASTATE pThis, PHDASTATER3 pThisCC, uint8_t uSD)
84{
85 pStreamR3->u8SD = uSD;
86 pStreamShared->u8SD = uSD;
87 pStreamR3->pMixSink = NULL;
88 pStreamR3->pHDAStateShared = pThis;
89 pStreamR3->pHDAStateR3 = pThisCC;
90 Assert(pStreamShared->hTimer != NIL_TMTIMERHANDLE); /* hdaR3Construct initalized this one already. */
91
92 pStreamShared->State.fInReset = false;
93 pStreamShared->State.fRunning = false;
94
95 AssertPtr(pStreamR3->pHDAStateR3);
96 AssertPtr(pStreamR3->pHDAStateR3->pDevIns);
97
98 const bool fIsInput = hdaGetDirFromSD(uSD) == PDMAUDIODIR_IN;
99
100 if (fIsInput)
101 {
102 pStreamShared->State.Cfg.enmPath = PDMAUDIOPATH_UNKNOWN;
103 pStreamShared->State.Cfg.enmDir = PDMAUDIODIR_IN;
104 }
105 else
106 {
107 pStreamShared->State.Cfg.enmPath = PDMAUDIOPATH_UNKNOWN;
108 pStreamShared->State.Cfg.enmDir = PDMAUDIODIR_OUT;
109 }
110
111 pStreamR3->Dbg.Runtime.fEnabled = pThisCC->Dbg.fEnabled;
112
113 if (pStreamR3->Dbg.Runtime.fEnabled)
114 {
115 int rc2 = AudioHlpFileCreateF(&pStreamR3->Dbg.Runtime.pFileStream, AUDIOHLPFILE_FLAGS_NONE, AUDIOHLPFILETYPE_WAV,
116 pThisCC->Dbg.pszOutPath, AUDIOHLPFILENAME_FLAGS_NONE, 0 /*uInstance*/,
117 fIsInput ? "hdaStreamWriteSD%RU8" : "hdaStreamReadSD%RU8", uSD);
118 AssertRC(rc2);
119
120 /* pFileDMARaw */
121 rc2 = AudioHlpFileCreateF(&pStreamR3->Dbg.Runtime.pFileDMARaw, AUDIOHLPFILE_FLAGS_NONE, AUDIOHLPFILETYPE_WAV,
122 pThisCC->Dbg.pszOutPath, AUDIOHLPFILENAME_FLAGS_NONE, 0 /*uInstance*/,
123 fIsInput ? "hdaDMARawWriteSD%RU8" : "hdaDMARawReadSD%RU8", uSD);
124 AssertRC(rc2);
125
126 /* pFileDMAMapped */
127 rc2 = AudioHlpFileCreateF(&pStreamR3->Dbg.Runtime.pFileDMAMapped, AUDIOHLPFILE_FLAGS_NONE, AUDIOHLPFILETYPE_WAV,
128 pThisCC->Dbg.pszOutPath, AUDIOHLPFILENAME_FLAGS_NONE, 0 /*uInstance*/,
129 fIsInput ? "hdaDMAWriteMappedSD%RU8" : "hdaDMAReadMappedSD%RU8", uSD);
130 AssertRC(rc2);
131
132 /* Delete stale debugging files from a former run. */
133 AudioHlpFileDelete(pStreamR3->Dbg.Runtime.pFileStream);
134 AudioHlpFileDelete(pStreamR3->Dbg.Runtime.pFileDMARaw);
135 AudioHlpFileDelete(pStreamR3->Dbg.Runtime.pFileDMAMapped);
136 }
137
138 return VINF_SUCCESS;
139}
140
141/**
142 * Destroys an HDA stream.
143 *
144 * @param pStreamR3 The HDA stream to destroy - ring-3 bits.
145 */
146void hdaR3StreamDestroy(PHDASTREAMR3 pStreamR3)
147{
148 LogFlowFunc(("[SD%RU8] Destroying ...\n", pStreamR3->u8SD));
149 int rc2;
150
151 if (pStreamR3->State.pAioRegSink)
152 {
153 rc2 = AudioMixerSinkRemoveUpdateJob(pStreamR3->State.pAioRegSink, hdaR3StreamUpdateAsyncIoJob, pStreamR3);
154 AssertRC(rc2);
155 pStreamR3->State.pAioRegSink = NULL;
156 }
157
158 if (pStreamR3->State.pCircBuf)
159 {
160 RTCircBufDestroy(pStreamR3->State.pCircBuf);
161 pStreamR3->State.pCircBuf = NULL;
162 pStreamR3->State.StatDmaBufSize = 0;
163 pStreamR3->State.StatDmaBufUsed = 0;
164 }
165
166 if (pStreamR3->Dbg.Runtime.fEnabled)
167 {
168 AudioHlpFileDestroy(pStreamR3->Dbg.Runtime.pFileStream);
169 pStreamR3->Dbg.Runtime.pFileStream = NULL;
170
171 AudioHlpFileDestroy(pStreamR3->Dbg.Runtime.pFileDMARaw);
172 pStreamR3->Dbg.Runtime.pFileDMARaw = NULL;
173
174 AudioHlpFileDestroy(pStreamR3->Dbg.Runtime.pFileDMAMapped);
175 pStreamR3->Dbg.Runtime.pFileDMAMapped = NULL;
176 }
177
178 LogFlowFuncLeave();
179}
180
181
182/**
183 * Converts an HDA stream's SDFMT register into a given PCM properties structure.
184 *
185 * @returns VBox status code.
186 * @param u16SDFMT The HDA stream's SDFMT value to convert.
187 * @param pProps PCM properties structure to hold converted result on success.
188 */
189int hdaR3SDFMTToPCMProps(uint16_t u16SDFMT, PPDMAUDIOPCMPROPS pProps)
190{
191 AssertPtrReturn(pProps, VERR_INVALID_POINTER);
192
193# define EXTRACT_VALUE(v, mask, shift) ((v & ((mask) << (shift))) >> (shift))
194
195 int rc = VINF_SUCCESS;
196
197 uint32_t u32Hz = EXTRACT_VALUE(u16SDFMT, HDA_SDFMT_BASE_RATE_MASK, HDA_SDFMT_BASE_RATE_SHIFT)
198 ? 44100 : 48000;
199 uint32_t u32HzMult = 1;
200 uint32_t u32HzDiv = 1;
201
202 switch (EXTRACT_VALUE(u16SDFMT, HDA_SDFMT_MULT_MASK, HDA_SDFMT_MULT_SHIFT))
203 {
204 case 0: u32HzMult = 1; break;
205 case 1: u32HzMult = 2; break;
206 case 2: u32HzMult = 3; break;
207 case 3: u32HzMult = 4; break;
208 default:
209 LogFunc(("Unsupported multiplier %x\n",
210 EXTRACT_VALUE(u16SDFMT, HDA_SDFMT_MULT_MASK, HDA_SDFMT_MULT_SHIFT)));
211 rc = VERR_NOT_SUPPORTED;
212 break;
213 }
214 switch (EXTRACT_VALUE(u16SDFMT, HDA_SDFMT_DIV_MASK, HDA_SDFMT_DIV_SHIFT))
215 {
216 case 0: u32HzDiv = 1; break;
217 case 1: u32HzDiv = 2; break;
218 case 2: u32HzDiv = 3; break;
219 case 3: u32HzDiv = 4; break;
220 case 4: u32HzDiv = 5; break;
221 case 5: u32HzDiv = 6; break;
222 case 6: u32HzDiv = 7; break;
223 case 7: u32HzDiv = 8; break;
224 default:
225 LogFunc(("Unsupported divisor %x\n",
226 EXTRACT_VALUE(u16SDFMT, HDA_SDFMT_DIV_MASK, HDA_SDFMT_DIV_SHIFT)));
227 rc = VERR_NOT_SUPPORTED;
228 break;
229 }
230
231 uint8_t cbSample = 0;
232 switch (EXTRACT_VALUE(u16SDFMT, HDA_SDFMT_BITS_MASK, HDA_SDFMT_BITS_SHIFT))
233 {
234 case 0:
235 cbSample = 1;
236 break;
237 case 1:
238 cbSample = 2;
239 break;
240 case 4:
241 cbSample = 4;
242 break;
243 default:
244 AssertMsgFailed(("Unsupported bits per sample %x\n",
245 EXTRACT_VALUE(u16SDFMT, HDA_SDFMT_BITS_MASK, HDA_SDFMT_BITS_SHIFT)));
246 rc = VERR_NOT_SUPPORTED;
247 break;
248 }
249
250 if (RT_SUCCESS(rc))
251 {
252 PDMAudioPropsInit(pProps, cbSample, true /*fSigned*/, (u16SDFMT & 0xf) + 1 /*cChannels*/, u32Hz * u32HzMult / u32HzDiv);
253 /** @todo is there anything we need to / can do about channel assignments? */
254 }
255
256# undef EXTRACT_VALUE
257 return rc;
258}
259
260# ifdef LOG_ENABLED
261void hdaR3BDLEDumpAll(PPDMDEVINS pDevIns, PHDASTATE pThis, uint64_t u64BDLBase, uint16_t cBDLE)
262{
263 LogFlowFunc(("BDLEs @ 0x%x (%RU16):\n", u64BDLBase, cBDLE));
264 if (!u64BDLBase)
265 return;
266
267 uint32_t cbBDLE = 0;
268 for (uint16_t i = 0; i < cBDLE; i++)
269 {
270 HDABDLEDESC bd;
271 PDMDevHlpPhysRead(pDevIns, u64BDLBase + i * sizeof(HDABDLEDESC), &bd, sizeof(bd));
272
273 LogFunc(("\t#%03d BDLE(adr:0x%llx, size:%RU32, ioc:%RTbool)\n",
274 i, bd.u64BufAddr, bd.u32BufSize, bd.fFlags & HDA_BDLE_F_IOC));
275
276 cbBDLE += bd.u32BufSize;
277 }
278
279 LogFlowFunc(("Total: %RU32 bytes\n", cbBDLE));
280
281 if (!pThis->u64DPBase) /* No DMA base given? Bail out. */
282 return;
283
284 LogFlowFunc(("DMA counters:\n"));
285
286 for (int i = 0; i < cBDLE; i++)
287 {
288 uint32_t uDMACnt;
289 PDMDevHlpPhysRead(pDevIns, (pThis->u64DPBase & DPBASE_ADDR_MASK) + (i * 2 * sizeof(uint32_t)),
290 &uDMACnt, sizeof(uDMACnt));
291
292 LogFlowFunc(("\t#%03d DMA @ 0x%x\n", i , uDMACnt));
293 }
294}
295# endif /* LOG_ENABLED */
296
297
298/**
299 * Appends a item to the scheduler.
300 *
301 * @returns VBox status code.
302 * @param pStreamShared The stream which scheduler should be modified.
303 * @param cbCur The period length in guest bytes.
304 * @param cbMaxPeriod The max period in guest bytes.
305 * @param idxLastBdle The last BDLE in the period.
306 * @param pProps The PCM properties.
307 * @param pcbBorrow Where to account for bytes borrowed across buffers
308 * to align scheduling items on frame boundraries.
309 */
310static int hdaR3StreamAddScheduleItem(PHDASTREAM pStreamShared, uint32_t cbCur, uint32_t cbMaxPeriod,
311 uint32_t idxLastBdle, PCPDMAUDIOPCMPROPS pProps, uint32_t *pcbBorrow)
312{
313 /* Check that we've got room (shouldn't ever be a problem). */
314 size_t idx = pStreamShared->State.cSchedule;
315 AssertLogRelReturn(idx + 1 < RT_ELEMENTS(pStreamShared->State.aSchedule), VERR_INTERNAL_ERROR_5);
316
317 /* Figure out the BDLE range for this period. */
318 uint32_t const idxFirstBdle = idx == 0 ? 0
319 : RT_MIN((uint32_t)( pStreamShared->State.aSchedule[idx - 1].idxFirst
320 + pStreamShared->State.aSchedule[idx - 1].cEntries),
321 idxLastBdle);
322
323 pStreamShared->State.aSchedule[idx].idxFirst = (uint8_t)idxFirstBdle;
324 pStreamShared->State.aSchedule[idx].cEntries = idxLastBdle >= idxFirstBdle
325 ? idxLastBdle - idxFirstBdle + 1
326 : pStreamShared->State.cBdles - idxFirstBdle + idxLastBdle + 1;
327
328 /* Deal with borrowing due to unaligned IOC buffers. */
329 uint32_t const cbBorrowed = *pcbBorrow;
330 if (cbBorrowed < cbCur)
331 cbCur -= cbBorrowed;
332 else
333 {
334 /* Note. We can probably gloss over this, but it's not a situation a sane guest would put us, so don't bother for now. */
335 ASSERT_GUEST_MSG_FAILED(("#%u: cbBorrow=%#x cbCur=%#x BDLE[%u..%u]\n",
336 pStreamShared->u8SD, cbBorrowed, cbCur, idxFirstBdle, idxLastBdle));
337 LogRelMax(32, ("HDA: Stream #%u has a scheduling error: cbBorrow=%#x cbCur=%#x BDLE[%u..%u]\n",
338 pStreamShared->u8SD, cbBorrowed, cbCur, idxFirstBdle, idxLastBdle));
339 return VERR_OUT_OF_RANGE;
340 }
341
342 uint32_t cbCurAligned = PDMAudioPropsRoundUpBytesToFrame(pProps, cbCur);
343 *pcbBorrow = cbCurAligned - cbCur;
344
345 /* Do we need to split up the period? */
346 if (cbCurAligned <= cbMaxPeriod)
347 {
348 pStreamShared->State.aSchedule[idx].cbPeriod = cbCurAligned;
349 pStreamShared->State.aSchedule[idx].cLoops = 1;
350 }
351 else
352 {
353 /* Reduce till we've below the threshold. */
354 uint32_t cbLoop = cbCurAligned;
355 do
356 cbLoop = cbLoop / 2;
357 while (cbLoop > cbMaxPeriod);
358 cbLoop = PDMAudioPropsRoundUpBytesToFrame(pProps, cbLoop);
359
360 /* Complete the scheduling item. */
361 pStreamShared->State.aSchedule[idx].cbPeriod = cbLoop;
362 pStreamShared->State.aSchedule[idx].cLoops = cbCurAligned / cbLoop;
363
364 /* If there is a remainder, add it as a separate entry (this is
365 why the schedule must be more than twice the size of the BDL).*/
366 cbCurAligned %= cbLoop;
367 if (cbCurAligned)
368 {
369 pStreamShared->State.aSchedule[idx + 1] = pStreamShared->State.aSchedule[idx];
370 idx++;
371 pStreamShared->State.aSchedule[idx].cbPeriod = cbCurAligned;
372 pStreamShared->State.aSchedule[idx].cLoops = 1;
373 }
374 }
375
376 /* Done. */
377 pStreamShared->State.cSchedule = (uint16_t)(idx + 1);
378
379 return VINF_SUCCESS;
380}
381
382/**
383 * Creates the DMA timer schedule for the stream
384 *
385 * This is called from the stream setup code.
386 *
387 * @returns VBox status code.
388 * @param pStreamShared The stream to create a schedule for. The BDL
389 * must be loaded.
390 * @param cSegments Number of BDL segments.
391 * @param cBufferIrqs Number of the BDLEs with IOC=1.
392 * @param cbTotal The total BDL length in guest bytes.
393 * @param cbMaxPeriod Max period in guest bytes. This is in case the
394 * guest want to play the whole "Der Ring des
395 * Nibelungen" cycle in one go.
396 * @param cTimerTicksPerSec The DMA timer frequency.
397 * @param pProps The PCM properties.
398 */
399static int hdaR3StreamCreateSchedule(PHDASTREAM pStreamShared, uint32_t cSegments, uint32_t cBufferIrqs, uint32_t cbTotal,
400 uint32_t cbMaxPeriod, uint64_t cTimerTicksPerSec, PCPDMAUDIOPCMPROPS pProps)
401{
402 int rc;
403
404 /*
405 * Reset scheduling state.
406 */
407 RT_ZERO(pStreamShared->State.aSchedule);
408 pStreamShared->State.cSchedule = 0;
409 pStreamShared->State.cSchedulePrologue = 0;
410 pStreamShared->State.idxSchedule = 0;
411 pStreamShared->State.idxScheduleLoop = 0;
412
413 /*
414 * Do the basic schedule compilation.
415 */
416 uint32_t cPotentialPrologue = 0;
417 uint32_t cbBorrow = 0;
418 uint32_t cbCur = 0;
419 uint32_t cbMin = UINT32_MAX;
420 pStreamShared->State.aSchedule[0].idxFirst = 0;
421 for (uint32_t i = 0; i < cSegments; i++)
422 {
423 cbCur += pStreamShared->State.aBdl[i].cb;
424 if (pStreamShared->State.aBdl[i].cb < cbMin)
425 cbMin = pStreamShared->State.aBdl[i].cb;
426 if (pStreamShared->State.aBdl[i].fFlags & HDA_BDLE_F_IOC)
427 {
428 rc = hdaR3StreamAddScheduleItem(pStreamShared, cbCur, cbMaxPeriod, i, pProps, &cbBorrow);
429 ASSERT_GUEST_RC_RETURN(rc, rc);
430
431 if (cPotentialPrologue == 0)
432 cPotentialPrologue = pStreamShared->State.cSchedule;
433 cbCur = 0;
434 }
435 }
436
437 /*
438 * Deal with any loose ends.
439 */
440 if (cbCur && cBufferIrqs == 0)
441 {
442 /*
443 * No IOC. Vista ends up here, typically with three buffers configured.
444 *
445 * The perferred option here is to aim at processing one average BDLE with
446 * each DMA timer period, since that best matches how we update LPIB at
447 * present.
448 *
449 * The second alternative is to divide the whole span up into 3-4 periods
450 * to try increase our chances of keeping ahead of the guest. We may need
451 * to pick this if there are too few buffer descriptor or they are too small.
452 *
453 * However, what we probably should be doing is to do real DMA work whenever
454 * the guest reads a DMA related register (like LPIB) and just do 3-4 DMA
455 * timer periods, however we'll be postponing the DMA timer every time we
456 * return to ring-3 and signal the AIO, so in the end we'd probably not use
457 * the timer callback at all. (This is assuming a small shared per-stream
458 * buffer for keeping the DMA data in and that it's size will force a return
459 * to ring-3 often enough to keep the AIO thread going at a reasonable rate.)
460 */
461 Assert(cbCur == cbTotal);
462
463 /* Match the BDLEs 1:1 if there are 3 or more and that the smallest one
464 is at least 5ms big. */
465 if (cSegments >= 3 && PDMAudioPropsBytesToMilli(pProps, cbMin) >= 5 /*ms*/)
466 {
467 for (uint32_t i = 0; i < cSegments; i++)
468 {
469 rc = hdaR3StreamAddScheduleItem(pStreamShared, pStreamShared->State.aBdl[i].cb, cbMaxPeriod, i, pProps, &cbBorrow);
470 ASSERT_GUEST_RC_RETURN(rc, rc);
471 }
472 }
473 /* Otherwise, just divide the work into 3 or 4 portions and hope for the best.
474 It seems, though, that this only really work for windows vista if we avoid
475 working accross buffer lines. */
476 /** @todo This can be simplified/relaxed/uncluttered if we do DMA work when LPIB
477 * is read, assuming ofc that LPIB is read before each buffer update. */
478 else
479 {
480 uint32_t const cPeriods = cSegments != 3 && PDMAudioPropsBytesToMilli(pProps, cbCur) >= 4 * 5 /*ms*/
481 ? 4 : cSegments != 2 ? 3 : 2;
482 uint32_t const cbPeriod = PDMAudioPropsFloorBytesToFrame(pProps, cbCur / cPeriods);
483 uint32_t iBdle = 0;
484 uint32_t offBdle = 0;
485 for (uint32_t iPeriod = 0; iPeriod < cPeriods; iPeriod++)
486 {
487 if (iPeriod + 1 < cPeriods)
488 {
489 offBdle += cbPeriod;
490 while (iBdle < cSegments && offBdle >= pStreamShared->State.aBdl[iBdle].cb)
491 offBdle -= pStreamShared->State.aBdl[iBdle++].cb;
492 rc = hdaR3StreamAddScheduleItem(pStreamShared, cbPeriod, cbMaxPeriod, offBdle != 0 ? iBdle : iBdle - 1,
493 pProps, &cbBorrow);
494 }
495 else
496 rc = hdaR3StreamAddScheduleItem(pStreamShared, cbCur - iPeriod * cbPeriod, cbMaxPeriod, cSegments - 1,
497 pProps, &cbBorrow);
498 ASSERT_GUEST_RC_RETURN(rc, rc);
499 }
500
501 }
502 }
503 else if (cbCur)
504 {
505 /* The last BDLE didn't have IOC set, so we must continue processing
506 from the start till we hit one that has. */
507 uint32_t i;
508 for (i = 0; i < cSegments; i++)
509 {
510 cbCur += pStreamShared->State.aBdl[i].cb;
511 if (pStreamShared->State.aBdl[i].fFlags & HDA_BDLE_F_IOC)
512 break;
513 }
514 rc = hdaR3StreamAddScheduleItem(pStreamShared, cbCur, cbMaxPeriod, i, pProps, &cbBorrow);
515 ASSERT_GUEST_RC_RETURN(rc, rc);
516
517 /* The initial scheduling items covering the wrap around area are
518 considered a prologue and must not repeated later. */
519 Assert(cPotentialPrologue);
520 pStreamShared->State.cSchedulePrologue = (uint8_t)cPotentialPrologue;
521 }
522
523 AssertLogRelMsgReturn(cbBorrow == 0, ("HDA: Internal scheduling error on stream #%u: cbBorrow=%#x cbTotal=%#x cbCur=%#x\n",
524 pStreamShared->u8SD, cbBorrow, cbTotal, cbCur),
525 VERR_INTERNAL_ERROR_3);
526
527 /*
528 * If there is just one BDLE with IOC set, we have to make sure
529 * we've got at least two periods scheduled, otherwise there is
530 * a very good chance the guest will overwrite the start of the
531 * buffer before we ever get around to reading it.
532 */
533 if (cBufferIrqs == 1)
534 {
535 uint32_t i = pStreamShared->State.cSchedulePrologue;
536 Assert(i < pStreamShared->State.cSchedule);
537 if ( i + 1 == pStreamShared->State.cSchedule
538 && pStreamShared->State.aSchedule[i].cLoops == 1)
539 {
540 uint32_t const cbFirstHalf = PDMAudioPropsFloorBytesToFrame(pProps, pStreamShared->State.aSchedule[i].cbPeriod / 2);
541 uint32_t const cbOtherHalf = pStreamShared->State.aSchedule[i].cbPeriod - cbFirstHalf;
542 pStreamShared->State.aSchedule[i].cbPeriod = cbFirstHalf;
543 if (cbFirstHalf == cbOtherHalf)
544 pStreamShared->State.aSchedule[i].cLoops = 2;
545 else
546 {
547 pStreamShared->State.aSchedule[i + 1] = pStreamShared->State.aSchedule[i];
548 pStreamShared->State.aSchedule[i].cbPeriod = cbOtherHalf;
549 pStreamShared->State.cSchedule++;
550 }
551 }
552 }
553
554 /*
555 * Go over the schduling entries and calculate the timer ticks for each period.
556 */
557 LogRel2(("HDA: Stream #%u schedule: %u items, %u prologue\n",
558 pStreamShared->u8SD, pStreamShared->State.cSchedule, pStreamShared->State.cSchedulePrologue));
559 uint64_t const cbPerSec = PDMAudioPropsFramesToBytes(pProps, pProps->uHz);
560 for (uint32_t i = 0; i < pStreamShared->State.cSchedule; i++)
561 {
562 uint64_t const cTicks = ASMMultU64ByU32DivByU32(cTimerTicksPerSec, pStreamShared->State.aSchedule[i].cbPeriod, cbPerSec);
563 AssertLogRelMsgReturn((uint32_t)cTicks == cTicks, ("cTicks=%RU64 (%#RX64)\n", cTicks, cTicks), VERR_INTERNAL_ERROR_4);
564 pStreamShared->State.aSchedule[i].cPeriodTicks = RT_MAX((uint32_t)cTicks, 16);
565 LogRel2(("HDA: #%u: %u ticks / %u bytes, %u loops, BDLE%u L %u\n", i, pStreamShared->State.aSchedule[i].cPeriodTicks,
566 pStreamShared->State.aSchedule[i].cbPeriod, pStreamShared->State.aSchedule[i].cLoops,
567 pStreamShared->State.aSchedule[i].idxFirst, pStreamShared->State.aSchedule[i].cEntries));
568 }
569
570 return VINF_SUCCESS;
571}
572
573
574/**
575 * Sets up ((re-)iniitalizes) an HDA stream.
576 *
577 * @returns VBox status code. VINF_NO_CHANGE if the stream does not need
578 * be set-up again because the stream's (hardware) parameters did
579 * not change.
580 * @param pDevIns The device instance.
581 * @param pThis The shared HDA device state (for HW register
582 * parameters).
583 * @param pStreamShared HDA stream to set up, shared portion.
584 * @param pStreamR3 HDA stream to set up, ring-3 portion.
585 * @param uSD Stream descriptor number to assign it.
586 */
587int hdaR3StreamSetUp(PPDMDEVINS pDevIns, PHDASTATE pThis, PHDASTREAM pStreamShared, PHDASTREAMR3 pStreamR3, uint8_t uSD)
588{
589 /* This must be valid all times. */
590 AssertReturn(uSD < HDA_MAX_STREAMS, VERR_INVALID_PARAMETER);
591
592 /* These member can only change on data corruption, despite what the code does further down (bird). */
593 AssertReturn(pStreamShared->u8SD == uSD, VERR_WRONG_ORDER);
594 AssertReturn(pStreamR3->u8SD == uSD, VERR_WRONG_ORDER);
595
596 const uint64_t u64BDLBase = RT_MAKE_U64(HDA_STREAM_REG(pThis, BDPL, uSD),
597 HDA_STREAM_REG(pThis, BDPU, uSD));
598 const uint16_t u16LVI = HDA_STREAM_REG(pThis, LVI, uSD);
599 const uint32_t u32CBL = HDA_STREAM_REG(pThis, CBL, uSD);
600 const uint8_t u8FIFOS = HDA_STREAM_REG(pThis, FIFOS, uSD) + 1;
601 uint8_t u8FIFOW = hdaSDFIFOWToBytes(HDA_STREAM_REG(pThis, FIFOW, uSD));
602 const uint16_t u16FMT = HDA_STREAM_REG(pThis, FMT, uSD);
603
604 /* Is the bare minimum set of registers configured for the stream?
605 * If not, bail out early, as there's nothing to do here for us (yet). */
606 if ( !u64BDLBase
607 || !u16LVI
608 || !u32CBL
609 || !u8FIFOS
610 || !u8FIFOW
611 || !u16FMT)
612 {
613 LogFunc(("[SD%RU8] Registers not set up yet, skipping (re-)initialization\n", uSD));
614 return VINF_SUCCESS;
615 }
616
617 /*
618 * Convert the config to PDM PCM properties and configure the stream.
619 */
620 PPDMAUDIOSTREAMCFG pCfg = &pStreamShared->State.Cfg;
621 int rc = hdaR3SDFMTToPCMProps(u16FMT, &pCfg->Props);
622 if (RT_SUCCESS(rc))
623 pCfg->enmDir = hdaGetDirFromSD(uSD);
624 else
625 {
626 LogRelMax(32, ("HDA: Warning: Format 0x%x for stream #%RU8 not supported\n", HDA_STREAM_REG(pThis, FMT, uSD), uSD));
627 return rc;
628 }
629
630 ASSERT_GUEST_LOGREL_MSG_RETURN( PDMAudioPropsFrameSize(&pCfg->Props) > 0
631 && u32CBL % PDMAudioPropsFrameSize(&pCfg->Props) == 0,
632 ("CBL for stream #%RU8 does not align to frame size (u32CBL=%u cbFrameSize=%u)\n",
633 uSD, u32CBL, PDMAudioPropsFrameSize(&pCfg->Props)),
634 VERR_INVALID_PARAMETER);
635
636 /* Make sure the guest behaves regarding the stream's FIFO. */
637 ASSERT_GUEST_LOGREL_MSG_STMT(u8FIFOW <= u8FIFOS,
638 ("Guest tried setting a bigger FIFOW (%RU8) than FIFOS (%RU8), limiting\n", u8FIFOW, u8FIFOS),
639 u8FIFOW = u8FIFOS /* ASSUMES that u8FIFOS has been validated. */);
640
641 pStreamShared->u8SD = uSD;
642
643 /* Update all register copies so that we later know that something has changed. */
644 pStreamShared->u64BDLBase = u64BDLBase;
645 pStreamShared->u16LVI = u16LVI;
646 pStreamShared->u32CBL = u32CBL;
647 pStreamShared->u8FIFOS = u8FIFOS;
648 pStreamShared->u8FIFOW = u8FIFOW;
649 pStreamShared->u16FMT = u16FMT;
650
651 /* The the stream's name, based on the direction. */
652 switch (pCfg->enmDir)
653 {
654 case PDMAUDIODIR_IN:
655# ifdef VBOX_WITH_AUDIO_HDA_MIC_IN
656# error "Implement me!"
657# else
658 pCfg->enmPath = PDMAUDIOPATH_IN_LINE;
659 RTStrCopy(pCfg->szName, sizeof(pCfg->szName), "Line In");
660# endif
661 break;
662
663 case PDMAUDIODIR_OUT:
664 /* Destination(s) will be set in hdaR3AddStreamOut(),
665 * based on the channels / stream layout. */
666 break;
667
668 default:
669 AssertFailedReturn(VERR_NOT_SUPPORTED);
670 break;
671 }
672
673 LogRel2(("HDA: Stream #%RU8 DMA @ 0x%x (%RU32 bytes = %RU64ms total)\n", uSD, pStreamShared->u64BDLBase,
674 pStreamShared->u32CBL, PDMAudioPropsBytesToMilli(&pCfg->Props, pStreamShared->u32CBL)));
675
676 /*
677 * Load the buffer descriptor list.
678 *
679 * Section 3.6.2 states that "the BDL should not be modified unless the RUN
680 * bit is 0", so it should be within the specs to read it once here and not
681 * re-read any BDLEs later.
682 */
683 /* Reset BDL state. */
684 RT_ZERO(pStreamShared->State.aBdl);
685 pStreamShared->State.offCurBdle = 0;
686 pStreamShared->State.idxCurBdle = 0;
687
688 uint32_t /*const*/ cTransferFragments = (pStreamShared->u16LVI & 0xff) + 1;
689 if (cTransferFragments <= 1)
690 LogRel(("HDA: Warning: Stream #%RU8 transfer buffer count invalid: (%RU16)! Buggy guest audio driver!\n", uSD, pStreamShared->u16LVI));
691 AssertLogRelReturn(cTransferFragments <= RT_ELEMENTS(pStreamShared->State.aBdl), VERR_INTERNAL_ERROR_5);
692 pStreamShared->State.cBdles = cTransferFragments;
693
694 /* Load them. */
695 rc = PDMDevHlpPCIPhysRead(pDevIns, u64BDLBase, pStreamShared->State.aBdl,
696 sizeof(pStreamShared->State.aBdl[0]) * cTransferFragments);
697 AssertRC(rc);
698
699 /* Check what we just loaded. Refuse overly large buffer lists. */
700 uint64_t cbTotal = 0;
701 uint32_t cBufferIrqs = 0;
702 for (uint32_t i = 0; i < cTransferFragments; i++)
703 {
704 if (pStreamShared->State.aBdl[i].fFlags & HDA_BDLE_F_IOC)
705 cBufferIrqs++;
706 cbTotal += pStreamShared->State.aBdl[i].cb;
707 }
708 ASSERT_GUEST_STMT_RETURN(cbTotal < _2G,
709 LogRelMax(32, ("HDA: Error: Stream #%u is configured with an insane amount of buffer space - refusing do work with it: %RU64 (%#RX64) bytes.\n",
710 uSD, cbTotal, cbTotal)),
711 VERR_NOT_SUPPORTED);
712 ASSERT_GUEST_STMT_RETURN(cbTotal == u32CBL,
713 LogRelMax(32, ("HDA: Warning: Stream #%u has a mismatch between CBL and configured buffer space: %RU32 (%#RX32) vs %RU64 (%#RX64)\n",
714 uSD, u32CBL, u32CBL, cbTotal, cbTotal)),
715 VERR_NOT_SUPPORTED);
716
717 /*
718 * Create a DMA timer schedule.
719 */
720 rc = hdaR3StreamCreateSchedule(pStreamShared, cTransferFragments, cBufferIrqs, (uint32_t)cbTotal,
721 PDMAudioPropsMilliToBytes(&pCfg->Props, 100 /** @todo make configurable */),
722 PDMDevHlpTimerGetFreq(pDevIns, pStreamShared->hTimer), &pCfg->Props);
723 if (RT_FAILURE(rc))
724 return rc;
725
726 pStreamShared->State.cbCurDmaPeriod = pStreamShared->State.aSchedule[0].cbPeriod;
727
728 /*
729 * Calculate the transfer Hz for use in the circular buffer calculation
730 * and the average period for the scheduling hint.
731 */
732 uint32_t cbMaxPeriod = 0;
733 uint32_t cbMinPeriod = UINT32_MAX;
734 uint64_t cTicks = 0;
735 uint32_t cPeriods = 0;
736 for (uint32_t i = pStreamShared->State.cSchedulePrologue; i < pStreamShared->State.cSchedule; i++)
737 {
738 uint32_t cbPeriod = pStreamShared->State.aSchedule[i].cbPeriod;
739 cbMaxPeriod = RT_MAX(cbMaxPeriod, cbPeriod);
740 cbMinPeriod = RT_MIN(cbMinPeriod, cbPeriod);
741 cPeriods += pStreamShared->State.aSchedule[i].cLoops;
742 cTicks += pStreamShared->State.aSchedule[i].cPeriodTicks * pStreamShared->State.aSchedule[i].cLoops;
743 }
744 /* Only consider the prologue in relation to the max period. */
745 for (uint32_t i = 0; i < pStreamShared->State.cSchedulePrologue; i++)
746 cbMaxPeriod = RT_MAX(cbMaxPeriod, pStreamShared->State.aSchedule[i].cbPeriod);
747
748 AssertLogRelReturn(cPeriods > 0, VERR_INTERNAL_ERROR_3);
749 uint64_t const cbTransferPerSec = RT_MAX(PDMAudioPropsFramesToBytes(&pCfg->Props, pCfg->Props.uHz),
750 4096 /* zero div prevention: min is 6kHz, picked 4k in case I'm mistaken */);
751 unsigned uTransferHz = cbTransferPerSec * 1000 / cbMaxPeriod;
752 LogRel2(("HDA: Stream #%RU8 needs a %u.%03u Hz timer rate (period: %u..%u host bytes)\n",
753 uSD, uTransferHz / 1000, uTransferHz % 1000, cbMinPeriod, cbMaxPeriod));
754 uTransferHz /= 1000;
755
756 if (uTransferHz > 400) /* Anything above 400 Hz looks fishy -- tell the user. */
757 LogRelMax(32, ("HDA: Warning: Calculated transfer Hz rate for stream #%RU8 looks incorrect (%u), please re-run with audio debug mode and report a bug\n",
758 uSD, uTransferHz));
759
760 pStreamShared->State.cbAvgTransfer = (uint32_t)(cbTotal + cPeriods - 1) / cPeriods;
761
762 /* Calculate the average scheduling period length in nanoseconds. */
763 uint64_t const cTimerResolution = PDMDevHlpTimerGetFreq(pDevIns, pStreamShared->hTimer);
764 Assert(cTimerResolution <= UINT32_MAX);
765 uint64_t const cNsPerPeriod = ASMMultU64ByU32DivByU32(cTicks / cPeriods, RT_NS_1SEC, cTimerResolution);
766 AssertLogRelReturn(cNsPerPeriod > 0, VERR_INTERNAL_ERROR_3);
767
768 /* For input streams we must determin a pre-buffering requirement.
769 We use the initial delay as a basis here, though we must have at
770 least two max periods worth of data queued up due to the way we
771 work the AIO thread. */
772 pStreamShared->State.fInputPreBuffered = false;
773 pStreamShared->State.cbInputPreBuffer = cbMaxPeriod * 2;
774
775 /*
776 * Set up data transfer stuff.
777 */
778 /* Set I/O scheduling hint for the backends. */
779 pCfg->Device.cMsSchedulingHint = cNsPerPeriod > RT_NS_1MS ? (cNsPerPeriod + RT_NS_1MS / 2) / RT_NS_1MS : 1;
780 LogRel2(("HDA: Stream #%RU8 set scheduling hint for the backends to %RU32ms\n", uSD, pCfg->Device.cMsSchedulingHint));
781
782 /* Make sure to also update the stream's DMA counter (based on its current LPIB value). */
783 /** @todo r=bird: We use LPIB as-is here, so if it's not zero we have to
784 * locate the right place in the schedule and whatnot...
785 *
786 * This is a similar scenario as when loading state saved, btw.
787 */
788 if (HDA_STREAM_REG(pThis, LPIB, uSD) != 0)
789 LogRel2(("HDA: Warning! Stream #%RU8 is set up with LPIB=%#RX32 instead of zero!\n", uSD, HDA_STREAM_REG(pThis, LPIB, uSD)));
790 hdaStreamSetPositionAbs(pStreamShared, pDevIns, pThis, HDA_STREAM_REG(pThis, LPIB, uSD));
791
792# ifdef LOG_ENABLED
793 hdaR3BDLEDumpAll(pDevIns, pThis, pStreamShared->u64BDLBase, pStreamShared->u16LVI + 1);
794# endif
795
796 /*
797 * Set up internal ring buffer.
798 */
799
800 /* (Re-)Allocate the stream's internal DMA buffer,
801 * based on the timing *and* PCM properties we just got above. */
802 if (pStreamR3->State.pCircBuf)
803 {
804 RTCircBufDestroy(pStreamR3->State.pCircBuf);
805 pStreamR3->State.pCircBuf = NULL;
806 pStreamR3->State.StatDmaBufSize = 0;
807 pStreamR3->State.StatDmaBufUsed = 0;
808 }
809 pStreamShared->State.offWrite = 0;
810 pStreamShared->State.offRead = 0;
811
812 /*
813 * The default internal ring buffer size must be:
814 *
815 * - Large enough for at least three periodic DMA transfers.
816 *
817 * It is critically important that we don't experience underruns
818 * in the DMA OUT code, because it will cause the buffer processing
819 * to get skewed and possibly overlap with what the guest is updating.
820 * At the time of writing (2021-03-05) there is no code for getting
821 * back into sync there.
822 *
823 * - Large enough for at least three I/O scheduling hints.
824 *
825 * We want to lag behind a DMA period or two, but there must be
826 * sufficent space for the AIO thread to get schedule and shuffle
827 * data thru the mixer and onto the host audio hardware.
828 *
829 * - Both above with plenty to spare.
830 *
831 * So, just take the longest of the two periods and multipling it by 6.
832 * We aren't not talking about very large base buffers heres, so size isn't
833 * an issue.
834 *
835 * Note: Use pCfg->Props as PCM properties here, as we only want to store the
836 * samples we actually need, in other words, skipping the interleaved
837 * channels we don't support / need to save space.
838 */
839 uint32_t cbCircBuf = PDMAudioPropsMilliToBytes(&pCfg->Props, RT_MS_1SEC * 6 / uTransferHz);
840 LogRel2(("HDA: Stream #%RU8 default ring buffer size is %RU32 bytes / %RU64 ms\n",
841 uSD, cbCircBuf, PDMAudioPropsBytesToMilli(&pCfg->Props, cbCircBuf)));
842
843 uint32_t msCircBufCfg = hdaGetDirFromSD(uSD) == PDMAUDIODIR_IN ? pThis->cMsCircBufIn : pThis->cMsCircBufOut;
844 if (msCircBufCfg) /* Anything set via CFGM? */
845 {
846 cbCircBuf = PDMAudioPropsMilliToBytes(&pCfg->Props, msCircBufCfg);
847 LogRel2(("HDA: Stream #%RU8 is using a custom ring buffer size of %RU32 bytes / %RU64 ms\n",
848 uSD, cbCircBuf, PDMAudioPropsBytesToMilli(&pCfg->Props, cbCircBuf)));
849 }
850
851 /* Serious paranoia: */
852 ASSERT_GUEST_LOGREL_MSG_STMT(cbCircBuf % PDMAudioPropsFrameSize(&pCfg->Props) == 0,
853 ("Ring buffer size (%RU32) for stream #%RU8 not aligned to the (host) frame size (%RU8)\n",
854 cbCircBuf, uSD, PDMAudioPropsFrameSize(&pCfg->Props)),
855 rc = VERR_INVALID_PARAMETER);
856 ASSERT_GUEST_LOGREL_MSG_STMT(cbCircBuf, ("Ring buffer size for stream #%RU8 is invalid\n", uSD),
857 rc = VERR_INVALID_PARAMETER);
858 if (RT_SUCCESS(rc))
859 {
860 rc = RTCircBufCreate(&pStreamR3->State.pCircBuf, cbCircBuf);
861 if (RT_SUCCESS(rc))
862 {
863 pStreamR3->State.StatDmaBufSize = cbCircBuf;
864
865 /*
866 * Forward the timer frequency hint to TM as well for better accuracy on
867 * systems w/o preemption timers (also good for 'info timers').
868 */
869 PDMDevHlpTimerSetFrequencyHint(pDevIns, pStreamShared->hTimer, uTransferHz);
870 }
871 }
872
873 if (RT_FAILURE(rc))
874 LogRelMax(32, ("HDA: Initializing stream #%RU8 failed with %Rrc\n", uSD, rc));
875
876# ifdef VBOX_WITH_DTRACE
877 VBOXDD_HDA_STREAM_SETUP((uint32_t)uSD, rc, pStreamShared->State.Cfg.Props.uHz,
878 pStreamShared->State.aSchedule[pStreamShared->State.cSchedule - 1].cPeriodTicks,
879 pStreamShared->State.aSchedule[pStreamShared->State.cSchedule - 1].cbPeriod);
880# endif
881 return rc;
882}
883
884
885/**
886 * Worker for hdaR3StreamReset().
887 *
888 * @returns The default mixer sink, NULL if none found.
889 * @param pThisCC The ring-3 HDA device state.
890 * @param uSD SD# to return mixer sink for.
891 * NULL if not found / handled.
892 */
893static PHDAMIXERSINK hdaR3GetDefaultSink(PHDASTATER3 pThisCC, uint8_t uSD)
894{
895 if (hdaGetDirFromSD(uSD) == PDMAUDIODIR_IN)
896 {
897 const uint8_t uFirstSDI = 0;
898
899 if (uSD == uFirstSDI) /* First SDI. */
900 return &pThisCC->SinkLineIn;
901# ifdef VBOX_WITH_AUDIO_HDA_MIC_IN
902 if (uSD == uFirstSDI + 1)
903 return &pThisCC->SinkMicIn;
904# else
905 /* If we don't have a dedicated Mic-In sink, use the always present Line-In sink. */
906 return &pThisCC->SinkLineIn;
907# endif
908 }
909 else
910 {
911 const uint8_t uFirstSDO = HDA_MAX_SDI;
912
913 if (uSD == uFirstSDO)
914 return &pThisCC->SinkFront;
915# ifdef VBOX_WITH_AUDIO_HDA_51_SURROUND
916 if (uSD == uFirstSDO + 1)
917 return &pThisCC->SinkCenterLFE;
918 if (uSD == uFirstSDO + 2)
919 return &pThisCC->SinkRear;
920# endif
921 }
922
923 return NULL;
924}
925
926
927/**
928 * Resets an HDA stream.
929 *
930 * @param pThis The shared HDA device state.
931 * @param pThisCC The ring-3 HDA device state.
932 * @param pStreamShared HDA stream to reset (shared).
933 * @param pStreamR3 HDA stream to reset (ring-3).
934 * @param uSD Stream descriptor (SD) number to use for this stream.
935 */
936void hdaR3StreamReset(PHDASTATE pThis, PHDASTATER3 pThisCC, PHDASTREAM pStreamShared, PHDASTREAMR3 pStreamR3, uint8_t uSD)
937{
938 LogFunc(("[SD%RU8] Reset\n", uSD));
939
940 /*
941 * Assert some sanity.
942 */
943 AssertPtr(pThis);
944 AssertPtr(pStreamShared);
945 AssertPtr(pStreamR3);
946 Assert(uSD < HDA_MAX_STREAMS);
947 Assert(pStreamShared->u8SD == uSD);
948 Assert(pStreamR3->u8SD == uSD);
949 AssertMsg(!pStreamShared->State.fRunning, ("[SD%RU8] Cannot reset stream while in running state\n", uSD));
950
951 /*
952 * Set reset state.
953 */
954 Assert(ASMAtomicReadBool(&pStreamShared->State.fInReset) == false); /* No nested calls. */
955 ASMAtomicXchgBool(&pStreamShared->State.fInReset, true);
956
957 /*
958 * Second, initialize the registers.
959 */
960 /* See 6.2.33: Clear on reset. */
961 HDA_STREAM_REG(pThis, STS, uSD) = 0;
962 /* According to the ICH6 datasheet, 0x40000 is the default value for stream descriptor register 23:20
963 * bits are reserved for stream number 18.2.33, resets SDnCTL except SRST bit. */
964 HDA_STREAM_REG(pThis, CTL, uSD) = HDA_SDCTL_TP | (HDA_STREAM_REG(pThis, CTL, uSD) & HDA_SDCTL_SRST);
965 /* ICH6 defines default values (120 bytes for input and 192 bytes for output descriptors) of FIFO size. 18.2.39. */
966 HDA_STREAM_REG(pThis, FIFOS, uSD) = hdaGetDirFromSD(uSD) == PDMAUDIODIR_IN ? HDA_SDIFIFO_120B : HDA_SDOFIFO_192B;
967 /* See 18.2.38: Always defaults to 0x4 (32 bytes). */
968 HDA_STREAM_REG(pThis, FIFOW, uSD) = HDA_SDFIFOW_32B;
969 HDA_STREAM_REG(pThis, LPIB, uSD) = 0;
970 HDA_STREAM_REG(pThis, CBL, uSD) = 0;
971 HDA_STREAM_REG(pThis, LVI, uSD) = 0;
972 HDA_STREAM_REG(pThis, FMT, uSD) = 0;
973 HDA_STREAM_REG(pThis, BDPU, uSD) = 0;
974 HDA_STREAM_REG(pThis, BDPL, uSD) = 0;
975
976 /* Assign the default mixer sink to the stream. */
977 pStreamR3->pMixSink = hdaR3GetDefaultSink(pThisCC, uSD);
978 if (pStreamR3->State.pAioRegSink)
979 {
980 int rc2 = AudioMixerSinkRemoveUpdateJob(pStreamR3->State.pAioRegSink, hdaR3StreamUpdateAsyncIoJob, pStreamR3);
981 AssertRC(rc2);
982 pStreamR3->State.pAioRegSink = NULL;
983 }
984
985 /* Reset transfer stuff. */
986 pStreamShared->State.cTransferPendingInterrupts = 0;
987 pStreamShared->State.tsTransferLast = 0;
988 pStreamShared->State.tsTransferNext = 0;
989
990 /* Initialize timestamps. */
991 pStreamShared->State.tsLastTransferNs = 0;
992 pStreamShared->State.tsLastReadNs = 0;
993 pStreamShared->State.tsStart = 0;
994
995 RT_ZERO(pStreamShared->State.aBdl);
996 RT_ZERO(pStreamShared->State.aSchedule);
997 pStreamShared->State.offCurBdle = 0;
998 pStreamShared->State.cBdles = 0;
999 pStreamShared->State.idxCurBdle = 0;
1000 pStreamShared->State.cSchedulePrologue = 0;
1001 pStreamShared->State.cSchedule = 0;
1002 pStreamShared->State.idxSchedule = 0;
1003 pStreamShared->State.idxScheduleLoop = 0;
1004 pStreamShared->State.fInputPreBuffered = false;
1005
1006 if (pStreamR3->State.pCircBuf)
1007 RTCircBufReset(pStreamR3->State.pCircBuf);
1008 pStreamShared->State.offWrite = 0;
1009 pStreamShared->State.offRead = 0;
1010
1011 /* Report that we're done resetting this stream. */
1012 HDA_STREAM_REG(pThis, CTL, uSD) = 0;
1013
1014# ifdef VBOX_WITH_DTRACE
1015 VBOXDD_HDA_STREAM_RESET((uint32_t)uSD);
1016# endif
1017 LogFunc(("[SD%RU8] Reset\n", uSD));
1018
1019 /* Exit reset mode. */
1020 ASMAtomicXchgBool(&pStreamShared->State.fInReset, false);
1021}
1022
1023/**
1024 * Enables or disables an HDA audio stream.
1025 *
1026 * @returns VBox status code.
1027 * @param pThis The shared HDA device state.
1028 * @param pStreamShared HDA stream to enable or disable - shared bits.
1029 * @param pStreamR3 HDA stream to enable or disable - ring-3 bits.
1030 * @param fEnable Whether to enable or disble the stream.
1031 */
1032int hdaR3StreamEnable(PHDASTATE pThis, PHDASTREAM pStreamShared, PHDASTREAMR3 pStreamR3, bool fEnable)
1033{
1034 AssertPtr(pStreamR3);
1035 AssertPtr(pStreamShared);
1036
1037 LogFunc(("[SD%RU8] fEnable=%RTbool, pMixSink=%p\n", pStreamShared->u8SD, fEnable, pStreamR3->pMixSink));
1038
1039 /* First, enable or disable the stream and the stream's sink, if any. */
1040 int rc = VINF_SUCCESS;
1041 PAUDMIXSINK const pSink = pStreamR3->pMixSink ? pStreamR3->pMixSink->pMixSink : NULL;
1042 if (pSink)
1043 {
1044 if (fEnable)
1045 {
1046 if (pStreamR3->State.pAioRegSink != pSink)
1047 {
1048 if (pStreamR3->State.pAioRegSink)
1049 {
1050 rc = AudioMixerSinkRemoveUpdateJob(pStreamR3->State.pAioRegSink, hdaR3StreamUpdateAsyncIoJob, pStreamR3);
1051 AssertRC(rc);
1052 }
1053 rc = AudioMixerSinkAddUpdateJob(pSink, hdaR3StreamUpdateAsyncIoJob, pStreamR3,
1054 pStreamShared->State.Cfg.Device.cMsSchedulingHint);
1055 AssertLogRelRC(rc);
1056 pStreamR3->State.pAioRegSink = RT_SUCCESS(rc) ? pSink : NULL;
1057 }
1058 rc = AudioMixerSinkStart(pSink);
1059 }
1060 else
1061 rc = AudioMixerSinkDrainAndStop(pSink,
1062 pStreamR3->State.pCircBuf ? (uint32_t)RTCircBufUsed(pStreamR3->State.pCircBuf) : 0);
1063 }
1064 if ( RT_SUCCESS(rc)
1065 && fEnable
1066 && pStreamR3->Dbg.Runtime.fEnabled)
1067 {
1068 Assert(AudioHlpPcmPropsAreValidAndSupported(&pStreamShared->State.Cfg.Props));
1069
1070 if (fEnable)
1071 {
1072 if (!AudioHlpFileIsOpen(pStreamR3->Dbg.Runtime.pFileStream))
1073 {
1074 int rc2 = AudioHlpFileOpen(pStreamR3->Dbg.Runtime.pFileStream, AUDIOHLPFILE_DEFAULT_OPEN_FLAGS,
1075 &pStreamShared->State.Cfg.Props);
1076 AssertRC(rc2);
1077 }
1078
1079 if (!AudioHlpFileIsOpen(pStreamR3->Dbg.Runtime.pFileDMARaw))
1080 {
1081 int rc2 = AudioHlpFileOpen(pStreamR3->Dbg.Runtime.pFileDMARaw, AUDIOHLPFILE_DEFAULT_OPEN_FLAGS,
1082 &pStreamShared->State.Cfg.Props);
1083 AssertRC(rc2);
1084 }
1085
1086 if (!AudioHlpFileIsOpen(pStreamR3->Dbg.Runtime.pFileDMAMapped))
1087 {
1088 int rc2 = AudioHlpFileOpen(pStreamR3->Dbg.Runtime.pFileDMAMapped, AUDIOHLPFILE_DEFAULT_OPEN_FLAGS,
1089 &pStreamShared->State.Cfg.Props);
1090 AssertRC(rc2);
1091 }
1092 }
1093 }
1094
1095 if (RT_SUCCESS(rc))
1096 {
1097 if (fEnable)
1098 pStreamShared->State.tsTransferLast = 0; /* Make sure it's not stale and messes up WALCLK calculations. */
1099 pStreamShared->State.fRunning = fEnable;
1100
1101 /*
1102 * Set the FIFORDY bit when we start running and clear it when stopping.
1103 *
1104 * This prevents Linux from timing out in snd_hdac_stream_sync when starting
1105 * a stream. Technically, Linux also uses the SSYNC feature there, but we
1106 * can get away with just setting the FIFORDY bit for now.
1107 */
1108 if (fEnable)
1109 HDA_STREAM_REG(pThis, STS, pStreamShared->u8SD) |= HDA_SDSTS_FIFORDY;
1110 else
1111 HDA_STREAM_REG(pThis, STS, pStreamShared->u8SD) &= ~HDA_SDSTS_FIFORDY;
1112 }
1113
1114 LogFunc(("[SD%RU8] rc=%Rrc\n", pStreamShared->u8SD, rc));
1115 return rc;
1116}
1117
1118/**
1119 * Marks the stream as started.
1120 *
1121 * Used after the stream has been enabled and the DMA timer has been armed.
1122 */
1123void hdaR3StreamMarkStarted(PPDMDEVINS pDevIns, PHDASTATE pThis, PHDASTREAM pStreamShared, uint64_t tsNow)
1124{
1125 pStreamShared->State.tsLastReadNs = RTTimeNanoTS();
1126 pStreamShared->State.tsStart = tsNow;
1127 Log3Func(("#%u: tsStart=%RU64 tsLastReadNs=%RU64\n",
1128 pStreamShared->u8SD, pStreamShared->State.tsStart, pStreamShared->State.tsLastReadNs));
1129 RT_NOREF(pDevIns, pThis);
1130}
1131
1132/**
1133 * Marks the stream as stopped.
1134 */
1135void hdaR3StreamMarkStopped(PHDASTREAM pStreamShared)
1136{
1137 Log3Func(("#%u\n", pStreamShared->u8SD));
1138 RT_NOREF(pStreamShared);
1139}
1140
1141#endif /* IN_RING3 */
1142#if defined(IN_RING3) || defined(VBOX_HDA_WITH_ON_REG_ACCESS_DMA)
1143
1144/**
1145 * Updates an HDA stream's current read or write buffer position (depending on the stream type) by
1146 * setting its associated LPIB register and DMA position buffer (if enabled) to an absolute value.
1147 *
1148 * @param pStreamShared HDA stream to update read / write position for (shared).
1149 * @param pDevIns The device instance.
1150 * @param pThis The shared HDA device state.
1151 * @param uLPIB Absolute position (in bytes) to set current read / write position to.
1152 */
1153static void hdaStreamSetPositionAbs(PHDASTREAM pStreamShared, PPDMDEVINS pDevIns, PHDASTATE pThis, uint32_t uLPIB)
1154{
1155 AssertPtrReturnVoid(pStreamShared);
1156 AssertMsgStmt(uLPIB <= pStreamShared->u32CBL, ("%#x\n", uLPIB), uLPIB = pStreamShared->u32CBL);
1157
1158 Log3Func(("[SD%RU8] LPIB=%RU32 (DMA Position Buffer Enabled: %RTbool)\n", pStreamShared->u8SD, uLPIB, pThis->fDMAPosition));
1159
1160 /* Update LPIB in any case. */
1161 HDA_STREAM_REG(pThis, LPIB, pStreamShared->u8SD) = uLPIB;
1162
1163 /* Do we need to tell the current DMA position? */
1164 if (pThis->fDMAPosition)
1165 {
1166 /*
1167 * Linux switched to using the position buffers some time during 2.6.x.
1168 * 2.6.12 used LPIB, 2.6.17 defaulted to DMA position buffers, between
1169 * the two version things were being changing quite a bit.
1170 *
1171 * Since 2.6.17, they will treat a zero DMA position value during the first
1172 * period/IRQ as reason to fall back to LPIB mode (see azx_position_ok in
1173 * 2.6.27+, and azx_pcm_pointer before that). They later also added
1174 * UINT32_MAX to the values causing same.
1175 *
1176 * Since 2.6.35 azx_position_ok will read the wall clock register before
1177 * determining the position.
1178 */
1179 int rc2 = PDMDevHlpPCIPhysWrite(pDevIns,
1180 pThis->u64DPBase + (pStreamShared->u8SD * 2 * sizeof(uint32_t)),
1181 (void *)&uLPIB, sizeof(uint32_t));
1182 AssertRC(rc2);
1183 }
1184}
1185
1186
1187/**
1188 * Updates an HDA stream's current read or write buffer position (depending on the stream type) by
1189 * adding a value to its associated LPIB register and DMA position buffer (if enabled).
1190 *
1191 * @note Handles automatic CBL wrap-around.
1192 *
1193 * @param pStreamShared HDA stream to update read / write position for (shared).
1194 * @param pDevIns The device instance.
1195 * @param pThis The shared HDA device state.
1196 * @param cbToAdd Position (in bytes) to add to the current read / write position.
1197 */
1198static void hdaStreamSetPositionAdd(PHDASTREAM pStreamShared, PPDMDEVINS pDevIns, PHDASTATE pThis, uint32_t cbToAdd)
1199{
1200 if (cbToAdd) /* No need to update anything if 0. */
1201 {
1202 uint32_t const uCBL = pStreamShared->u32CBL;
1203 if (uCBL) /* paranoia */
1204 {
1205 uint32_t uNewLpid = HDA_STREAM_REG(pThis, LPIB, pStreamShared->u8SD) + cbToAdd;
1206# if 1 /** @todo r=bird: this is wrong according to the spec */
1207 uNewLpid %= uCBL;
1208# else
1209 /* The spec says it goes to CBL then wraps arpimd to 1, not back to zero. See 3.3.37. */
1210 if (uNewLpid > uCBL)
1211 uNewLpid %= uCBL;
1212# endif
1213 hdaStreamSetPositionAbs(pStreamShared, pDevIns, pThis, uNewLpid);
1214 }
1215 }
1216}
1217
1218#endif /* IN_RING3 || VBOX_HDA_WITH_ON_REG_ACCESS_DMA */
1219#ifdef IN_RING3
1220
1221/**
1222 * Retrieves the available size of (buffered) audio data (in bytes) of a given HDA stream.
1223 *
1224 * @returns Available data (in bytes).
1225 * @param pStreamR3 HDA stream to retrieve size for (ring-3).
1226 */
1227static uint32_t hdaR3StreamGetUsed(PHDASTREAMR3 pStreamR3)
1228{
1229 AssertPtrReturn(pStreamR3, 0);
1230
1231 if (pStreamR3->State.pCircBuf)
1232 return (uint32_t)RTCircBufUsed(pStreamR3->State.pCircBuf);
1233 return 0;
1234}
1235
1236/**
1237 * Retrieves the free size of audio data (in bytes) of a given HDA stream.
1238 *
1239 * @returns Free data (in bytes).
1240 * @param pStreamR3 HDA stream to retrieve size for (ring-3).
1241 */
1242static uint32_t hdaR3StreamGetFree(PHDASTREAMR3 pStreamR3)
1243{
1244 AssertPtrReturn(pStreamR3, 0);
1245
1246 if (pStreamR3->State.pCircBuf)
1247 return (uint32_t)RTCircBufFree(pStreamR3->State.pCircBuf);
1248 return 0;
1249}
1250
1251#endif /* IN_RING3 */
1252#if defined(IN_RING3) || defined(VBOX_HDA_WITH_ON_REG_ACCESS_DMA)
1253
1254/**
1255 * Get the current address and number of bytes left in the current BDLE.
1256 *
1257 * @returns The current physical address.
1258 * @param pStreamShared The stream to check.
1259 * @param pcbLeft The number of bytes left at the returned address.
1260 */
1261DECLINLINE(RTGCPHYS) hdaStreamDmaBufGet(PHDASTREAM pStreamShared, uint32_t *pcbLeft)
1262{
1263 uint8_t idxBdle = pStreamShared->State.idxCurBdle;
1264 AssertStmt(idxBdle < pStreamShared->State.cBdles, idxBdle = 0);
1265
1266 uint32_t const cbCurBdl = pStreamShared->State.aBdl[idxBdle].cb;
1267 uint32_t offCurBdle = pStreamShared->State.offCurBdle;
1268 AssertStmt(pStreamShared->State.offCurBdle <= cbCurBdl, offCurBdle = cbCurBdl);
1269
1270 *pcbLeft = cbCurBdl - offCurBdle;
1271 return pStreamShared->State.aBdl[idxBdle].GCPhys + offCurBdle;
1272}
1273
1274/**
1275 * Checks if the current BDLE is completed.
1276 *
1277 * @retval true if complete
1278 * @retval false if not.
1279 * @param pStreamShared The stream to check.
1280 */
1281DECLINLINE(bool) hdaStreamDmaBufIsComplete(PHDASTREAM pStreamShared)
1282{
1283 uint8_t const idxBdle = pStreamShared->State.idxCurBdle;
1284 AssertReturn(idxBdle < pStreamShared->State.cBdles, true);
1285
1286 uint32_t const cbCurBdl = pStreamShared->State.aBdl[idxBdle].cb;
1287 uint32_t const offCurBdle = pStreamShared->State.offCurBdle;
1288 Assert(offCurBdle <= cbCurBdl);
1289 return offCurBdle >= cbCurBdl;
1290}
1291
1292/**
1293 * Checks if the current BDLE needs a completion IRQ.
1294 *
1295 * @retval true if IRQ is needed.
1296 * @retval false if not.
1297 * @param pStreamShared The stream to check.
1298 */
1299DECLINLINE(bool) hdaStreamDmaBufNeedsIrq(PHDASTREAM pStreamShared)
1300{
1301 uint8_t const idxBdle = pStreamShared->State.idxCurBdle;
1302 AssertReturn(idxBdle < pStreamShared->State.cBdles, false);
1303 return (pStreamShared->State.aBdl[idxBdle].fFlags & HDA_BDLE_F_IOC) != 0;
1304}
1305
1306/**
1307 * Advances the DMA engine to the next BDLE.
1308 *
1309 * @param pStreamShared The stream which DMA engine is to be updated.
1310 */
1311DECLINLINE(void) hdaStreamDmaBufAdvanceToNext(PHDASTREAM pStreamShared)
1312{
1313 uint8_t idxBdle = pStreamShared->State.idxCurBdle;
1314 Assert(pStreamShared->State.offCurBdle == pStreamShared->State.aBdl[idxBdle].cb);
1315
1316 if (idxBdle < pStreamShared->State.cBdles - 1)
1317 idxBdle++;
1318 else
1319 idxBdle = 0;
1320 pStreamShared->State.idxCurBdle = idxBdle;
1321 pStreamShared->State.offCurBdle = 0;
1322}
1323
1324#endif /* defined(IN_RING3) || defined(VBOX_HDA_WITH_ON_REG_ACCESS_DMA) */
1325#ifdef IN_RING3
1326
1327/**
1328 * Common do-DMA prologue code.
1329 *
1330 * @retval true if DMA processing can take place
1331 * @retval false if caller should return immediately.
1332 * @param pThis The shared HDA device state.
1333 * @param pStreamShared HDA stream to update (shared).
1334 * @param pStreamR3 HDA stream to update (ring-3).
1335 * @param uSD The stream ID (for asserting).
1336 * @param tsNowNs The current RTTimeNano() value.
1337 * @param pszFunction The function name (for logging).
1338 */
1339DECLINLINE(bool) hdaR3StreamDoDmaPrologue(PHDASTATE pThis, PHDASTREAM pStreamShared, PHDASTREAMR3 pStreamR3, uint8_t uSD,
1340 uint64_t tsNowNs, const char *pszFunction)
1341{
1342 RT_NOREF(uSD, pszFunction);
1343
1344 /*
1345 * Check if we should skip town...
1346 */
1347 /* Stream not running (anymore)? */
1348 if (pStreamShared->State.fRunning)
1349 { /* likely */ }
1350 else
1351 {
1352 Log3(("%s: [SD%RU8] Not running, skipping transfer\n", pszFunction, uSD));
1353 return false;
1354 }
1355
1356 if (!(HDA_STREAM_REG(pThis, STS, uSD) & HDA_SDSTS_BCIS))
1357 { /* likely */ }
1358 else
1359 {
1360 /** @todo r=bird: This is a bit fishy. We should make effort the reschedule
1361 * the transfer immediately after the guest clears the interrupt.
1362 * The same fishy code is present in AC'97 with just a little
1363 * explanation as here, see @bugref{9890#c95}.
1364 *
1365 * The reasoning is probably that the developer noticed some windows
1366 * versions don't like having their BCIS interrupts bundled. There were
1367 * comments to that effect elsewhere, probably as a result of a fixed
1368 * uTimerHz approach to DMA scheduling. However, pausing DMA for a
1369 * period isn't going to help us with the host backends, as they don't
1370 * pause and will want samples ASAP. So, we should at least unpause
1371 * DMA as quickly as we possible when BCIS is cleared. We might even
1372 * not skip it iff the DMA work here doesn't involve raising any IOC,
1373 * which is possible although unlikely. */
1374 Log3(("%s: [SD%RU8] BCIS bit set, skipping transfer\n", pszFunction, uSD));
1375 STAM_REL_COUNTER_INC(&pStreamR3->State.StatDmaSkippedPendingBcis);
1376 Log(("%s: [SD%RU8] BCIS bit set, skipping transfer\n", pszFunction, uSD));
1377# ifdef HDA_STRICT
1378 /* Timing emulation bug or guest is misbehaving -- let me know. */
1379 AssertMsgFailed(("%s: BCIS bit for stream #%RU8 still set when it shouldn't\n", pszFunction, uSD));
1380# endif
1381 return false;
1382 }
1383
1384 /*
1385 * Stream sanity checks.
1386 */
1387 /* Register sanity checks. */
1388 Assert(uSD < HDA_MAX_STREAMS);
1389 Assert(pStreamShared->u64BDLBase);
1390 Assert(pStreamShared->u32CBL);
1391 Assert(pStreamShared->u8FIFOS);
1392
1393 /* State sanity checks. */
1394 Assert(ASMAtomicReadBool(&pStreamShared->State.fInReset) == false);
1395 Assert(ASMAtomicReadBool(&pStreamShared->State.fRunning));
1396
1397 /*
1398 * Some timestamp stuff for logging/debugging.
1399 */
1400 /*const uint64_t tsNowNs = RTTimeNanoTS();*/
1401 Log3(("%s: [SD%RU8] tsDeltaNs=%'RU64 ns\n", pszFunction, uSD, tsNowNs - pStreamShared->State.tsLastTransferNs));
1402 pStreamShared->State.tsLastTransferNs = tsNowNs;
1403
1404 return true;
1405}
1406
1407/**
1408 * Common do-DMA epilogue.
1409 *
1410 * @param pDevIns The device instance.
1411 * @param pStreamShared The HDA stream (shared).
1412 * @param pStreamR3 The HDA stream (ring-3).
1413 */
1414DECLINLINE(void) hdaR3StreamDoDmaEpilogue(PPDMDEVINS pDevIns, PHDASTREAM pStreamShared, PHDASTREAMR3 pStreamR3)
1415{
1416 /*
1417 * We must update this in the epilogue rather than in the prologue
1418 * as it is used for WALCLK calculation and we must make sure the
1419 * guest doesn't think we've processed the current period till we
1420 * actually have.
1421 */
1422 pStreamShared->State.tsTransferLast = PDMDevHlpTimerGet(pDevIns, pStreamShared->hTimer);
1423
1424 /*
1425 * Update the buffer statistics.
1426 */
1427 pStreamR3->State.StatDmaBufUsed = (uint32_t)RTCircBufUsed(pStreamR3->State.pCircBuf);
1428}
1429
1430#endif /* IN_RING3 */
1431
1432#if defined(IN_RING3) || defined(VBOX_HDA_WITH_ON_REG_ACCESS_DMA)
1433/**
1434 * Completes a BDLE at the end of a DMA loop iteration, if possible.
1435 *
1436 * @retval true if buffer completed and new loaded.
1437 * @retval false if buffer not completed.
1438 * @param pDevIns The device instance.
1439 * @param pThis The shared HDA device state.
1440 * @param pStreamShared HDA stream to update (shared).
1441 * @param pszFunction The function name (for logging).
1442 */
1443DECLINLINE(bool) hdaStreamDoDmaMaybeCompleteBuffer(PPDMDEVINS pDevIns, PHDASTATE pThis,
1444 PHDASTREAM pStreamShared, const char *pszFunction)
1445{
1446 RT_NOREF(pszFunction);
1447
1448 /*
1449 * Is the buffer descriptor complete.
1450 */
1451 if (hdaStreamDmaBufIsComplete(pStreamShared))
1452 {
1453 Log3(("%s: [SD%RU8] Completed BDLE%u %#RX64 LB %#RX32 fFlags=%#x\n", pszFunction, pStreamShared->u8SD,
1454 pStreamShared->State.idxCurBdle, pStreamShared->State.aBdl[pStreamShared->State.idxCurBdle].GCPhys,
1455 pStreamShared->State.aBdl[pStreamShared->State.idxCurBdle].cb,
1456 pStreamShared->State.aBdl[pStreamShared->State.idxCurBdle].fFlags));
1457
1458 /* Does the current BDLE require an interrupt to be sent? */
1459 if (hdaStreamDmaBufNeedsIrq(pStreamShared))
1460 {
1461 /* If the IOCE ("Interrupt On Completion Enable") bit of the SDCTL
1462 register is set we need to generate an interrupt. */
1463 if (HDA_STREAM_REG(pThis, CTL, pStreamShared->u8SD) & HDA_SDCTL_IOCE)
1464 {
1465 /* Assert the interrupt before actually fetching the next BDLE below. */
1466 pStreamShared->State.cTransferPendingInterrupts = 1;
1467 Log3(("%s: [SD%RU8] Scheduling interrupt\n", pszFunction, pStreamShared->u8SD));
1468
1469 /* Trigger an interrupt first and let hdaRegWriteSDSTS() deal with
1470 * ending / beginning of a period. */
1471 /** @todo r=bird: What does the above comment mean? */
1472 HDA_STREAM_REG(pThis, STS, pStreamShared->u8SD) |= HDA_SDSTS_BCIS;
1473 HDA_PROCESS_INTERRUPT(pDevIns, pThis);
1474 }
1475 }
1476
1477 /*
1478 * Advance to the next BDLE.
1479 */
1480 hdaStreamDmaBufAdvanceToNext(pStreamShared);
1481 return true;
1482 }
1483
1484 Log3(("%s: [SD%RU8] Incomplete BDLE%u %#RX64 LB %#RX32 fFlags=%#x: off=%#RX32\n", pszFunction, pStreamShared->u8SD,
1485 pStreamShared->State.idxCurBdle, pStreamShared->State.aBdl[pStreamShared->State.idxCurBdle].GCPhys,
1486 pStreamShared->State.aBdl[pStreamShared->State.idxCurBdle].cb,
1487 pStreamShared->State.aBdl[pStreamShared->State.idxCurBdle].fFlags, pStreamShared->State.offCurBdle));
1488 return false;
1489}
1490#endif /* IN_RING3 || VBOX_HDA_WITH_ON_REG_ACCESS_DMA */
1491
1492#ifdef IN_RING3
1493
1494/**
1495 * Does DMA transfer for an HDA input stream.
1496 *
1497 * Reads audio data from the HDA stream's internal DMA buffer and writing to
1498 * guest memory.
1499 *
1500 * @param pDevIns The device instance.
1501 * @param pThis The shared HDA device state.
1502 * @param pStreamShared HDA stream to update (shared).
1503 * @param pStreamR3 HDA stream to update (ring-3).
1504 * @param cbToConsume The max amount of data to consume from the
1505 * internal DMA buffer. The caller will make sure
1506 * this is always the transfer size fo the current
1507 * period (unless something is seriously wrong).
1508 * @param fWriteSilence Whether to feed the guest silence rather than
1509 * fetching bytes from the internal DMA buffer.
1510 * This is set initially while we pre-buffer a
1511 * little bit of input, so we can better handle
1512 * time catch-ups and other schduling fun.
1513 * @param tsNowNs The current RTTimeNano() value.
1514 *
1515 * @remarks Caller owns the stream lock.
1516 */
1517static void hdaR3StreamDoDmaInput(PPDMDEVINS pDevIns, PHDASTATE pThis, PHDASTREAM pStreamShared,
1518 PHDASTREAMR3 pStreamR3, uint32_t const cbToConsume, bool fWriteSilence, uint64_t tsNowNs)
1519{
1520 uint8_t const uSD = pStreamShared->u8SD;
1521 LogFlowFunc(("ENTER - #%u cbToConsume=%#x%s\n", uSD, cbToConsume, fWriteSilence ? " silence" : ""));
1522
1523 /*
1524 * Common prologue.
1525 */
1526 if (hdaR3StreamDoDmaPrologue(pThis, pStreamShared, pStreamR3, uSD, tsNowNs, "hdaR3StreamDoDmaInput"))
1527 { /* likely */ }
1528 else
1529 return;
1530
1531 /*
1532 *
1533 * The DMA copy loop.
1534 *
1535 * Note! Unaligned BDLEs shouldn't be a problem since the circular buffer
1536 * doesn't care about alignment. Only, we have to read the rest
1537 * of the incomplete frame from it ASAP.
1538 */
1539 PRTCIRCBUF pCircBuf = pStreamR3->State.pCircBuf;
1540 uint32_t cbLeft = cbToConsume;
1541 Assert(cbLeft == pStreamShared->State.cbCurDmaPeriod);
1542 Assert(PDMAudioPropsIsSizeAligned(&pStreamShared->State.Cfg.Props, cbLeft));
1543
1544 while (cbLeft > 0)
1545 {
1546 STAM_PROFILE_START(&pThis->StatIn, a);
1547
1548 /*
1549 * Figure out how much we can read & write in this iteration.
1550 */
1551 uint32_t cbChunk = 0;
1552 RTGCPHYS GCPhys = hdaStreamDmaBufGet(pStreamShared, &cbChunk);
1553
1554 if (cbChunk <= cbLeft)
1555 { /* very likely */ }
1556 else
1557 cbChunk = cbLeft;
1558
1559 uint32_t cbWritten = 0;
1560 if (!fWriteSilence)
1561 {
1562 /*
1563 * Write the host data directly into the guest buffers.
1564 */
1565 while (cbChunk > 0)
1566 {
1567 /* Grab internal DMA buffer space and read into it. */
1568 void /*const*/ *pvBufSrc;
1569 size_t cbBufSrc;
1570 RTCircBufAcquireReadBlock(pCircBuf, cbChunk, &pvBufSrc, &cbBufSrc);
1571 AssertBreakStmt(cbBufSrc, RTCircBufReleaseReadBlock(pCircBuf, 0));
1572
1573 int rc2 = PDMDevHlpPCIPhysWrite(pDevIns, GCPhys, pvBufSrc, cbBufSrc);
1574 AssertRC(rc2);
1575
1576# ifdef HDA_DEBUG_SILENCE
1577 fix me if relevant;
1578# endif
1579 if (RT_LIKELY(!pStreamR3->Dbg.Runtime.pFileDMARaw))
1580 { /* likely */ }
1581 else
1582 AudioHlpFileWrite(pStreamR3->Dbg.Runtime.pFileDMARaw, pvBufSrc, cbBufSrc);
1583
1584# ifdef VBOX_WITH_DTRACE
1585 VBOXDD_HDA_STREAM_DMA_IN((uint32_t)uSD, (uint32_t)cbBufSrc, pStreamShared->State.offRead);
1586# endif
1587 pStreamShared->State.offRead += cbBufSrc;
1588 RTCircBufReleaseReadBlock(pCircBuf, cbBufSrc);
1589 STAM_COUNTER_ADD(&pThis->StatBytesWritten, cbBufSrc);
1590
1591 /* advance */
1592 cbChunk -= (uint32_t)cbBufSrc;
1593 cbWritten += (uint32_t)cbBufSrc;
1594 GCPhys += cbBufSrc;
1595 pStreamShared->State.offCurBdle += (uint32_t)cbBufSrc;
1596 }
1597 }
1598 /*
1599 * Write silence. Since we only do signed formats, we can use the zero
1600 * buffers from IPRT as source here.
1601 */
1602 else
1603 {
1604 Assert(PDMAudioPropsIsSigned(&pStreamShared->State.Cfg.Props));
1605 while (cbChunk > 0)
1606 {
1607 /* Write it to the guest buffer. */
1608 uint32_t cbToWrite = RT_MIN(sizeof(g_abRTZero64K), cbChunk);
1609 int rc2 = PDMDevHlpPCIPhysWrite(pDevIns, GCPhys, g_abRTZero64K, cbToWrite);
1610 AssertRC(rc2);
1611 STAM_COUNTER_ADD(&pThis->StatBytesWritten, cbToWrite);
1612
1613 /* advance */
1614 cbWritten += cbToWrite;
1615 cbChunk -= cbToWrite;
1616 GCPhys += cbToWrite;
1617 pStreamShared->State.offCurBdle += cbToWrite;
1618 }
1619 }
1620
1621 cbLeft -= cbWritten;
1622 STAM_PROFILE_STOP(&pThis->StatIn, a);
1623
1624 /*
1625 * Complete the buffer if necessary (common with the output DMA code).
1626 *
1627 * Must update the DMA position before we do this as the buffer IRQ may
1628 * fire on another vCPU and run in parallel to us, although it is very
1629 * unlikely it can make much progress as long as we're sitting on the
1630 * lock, it could still read the DMA position (Linux won't, as it reads
1631 * WALCLK and possibly SDnSTS before the DMA position).
1632 */
1633 hdaStreamSetPositionAdd(pStreamShared, pDevIns, pThis, cbWritten);
1634 hdaStreamDoDmaMaybeCompleteBuffer(pDevIns, pThis, pStreamShared, "hdaR3StreamDoDmaInput");
1635 }
1636
1637 Assert(cbLeft == 0); /* There shall be no break statements in the above loop, so cbLeft is always zero here! */
1638
1639 /*
1640 * Common epilogue.
1641 */
1642 hdaR3StreamDoDmaEpilogue(pDevIns, pStreamShared, pStreamR3);
1643
1644 /*
1645 * Log and leave.
1646 */
1647 Log3Func(("LEAVE - [SD%RU8] %#RX32/%#RX32 @ %#RX64 - cTransferPendingInterrupts=%RU8\n",
1648 uSD, cbToConsume, pStreamShared->State.cbCurDmaPeriod, pStreamShared->State.offRead - cbToConsume,
1649 pStreamShared->State.cTransferPendingInterrupts));
1650}
1651
1652
1653/**
1654 * Input streams: Pulls data from the mixer, putting it in the internal DMA
1655 * buffer.
1656 *
1657 * @param pStreamShared HDA stream to update (shared).
1658 * @param pStreamR3 HDA stream to update (ring-3 bits).
1659 * @param pSink The mixer sink to pull from.
1660 */
1661static void hdaR3StreamPullFromMixer(PHDASTREAM pStreamShared, PHDASTREAMR3 pStreamR3, PAUDMIXSINK pSink)
1662{
1663# ifdef LOG_ENABLED
1664 uint64_t const offWriteOld = pStreamShared->State.offWrite;
1665# endif
1666 pStreamShared->State.offWrite = AudioMixerSinkTransferToCircBuf(pSink,
1667 pStreamR3->State.pCircBuf,
1668 pStreamShared->State.offWrite,
1669 pStreamR3->u8SD,
1670 pStreamR3->Dbg.Runtime.fEnabled
1671 ? pStreamR3->Dbg.Runtime.pFileStream : NULL);
1672
1673 Log3Func(("[SD%RU8] transferred=%#RX64 bytes -> @%#RX64\n", pStreamR3->u8SD,
1674 pStreamShared->State.offWrite - offWriteOld, pStreamShared->State.offWrite));
1675
1676 /* Update buffer stats. */
1677 pStreamR3->State.StatDmaBufUsed = (uint32_t)RTCircBufUsed(pStreamR3->State.pCircBuf);
1678}
1679
1680
1681/**
1682 * Does DMA transfer for an HDA output stream.
1683 *
1684 * This transfers one DMA timer period worth of data from the guest and into the
1685 * internal DMA buffer.
1686 *
1687 * @param pDevIns The device instance.
1688 * @param pThis The shared HDA device state.
1689 * @param pStreamShared HDA stream to update (shared).
1690 * @param pStreamR3 HDA stream to update (ring-3).
1691 * @param cbToProduce The max amount of data to produce (i.e. put into
1692 * the circular buffer). Unless something is going
1693 * seriously wrong, this will always be transfer
1694 * size for the current period.
1695 * @param tsNowNs The current RTTimeNano() value.
1696 *
1697 * @remarks Caller owns the stream lock.
1698 */
1699static void hdaR3StreamDoDmaOutput(PPDMDEVINS pDevIns, PHDASTATE pThis, PHDASTREAM pStreamShared,
1700 PHDASTREAMR3 pStreamR3, uint32_t const cbToProduce, uint64_t tsNowNs)
1701{
1702 uint8_t const uSD = pStreamShared->u8SD;
1703 LogFlowFunc(("ENTER - #%u cbToProduce=%#x\n", uSD, cbToProduce));
1704
1705 /*
1706 * Common prologue.
1707 */
1708 if (hdaR3StreamDoDmaPrologue(pThis, pStreamShared, pStreamR3, uSD, tsNowNs, "hdaR3StreamDoDmaOutput"))
1709 { /* likely */ }
1710 else
1711 return;
1712
1713 /*
1714 *
1715 * The DMA copy loop.
1716 *
1717 * Note! Unaligned BDLEs shouldn't be a problem since the circular buffer
1718 * doesn't care about alignment. Only, we have to write the rest
1719 * of the incomplete frame to it ASAP.
1720 */
1721 PRTCIRCBUF pCircBuf = pStreamR3->State.pCircBuf;
1722 uint32_t cbLeft = cbToProduce;
1723# ifdef VBOX_HDA_WITH_ON_REG_ACCESS_DMA
1724 Assert(cbLeft <= pStreamShared->State.cbCurDmaPeriod); /* a little pointless with the DMA'ing on LPIB read. */
1725# else
1726 Assert(cbLeft == pStreamShared->State.cbCurDmaPeriod);
1727# endif
1728 Assert(PDMAudioPropsIsSizeAligned(&pStreamShared->State.Cfg.Props, cbLeft));
1729
1730 while (cbLeft > 0)
1731 {
1732 STAM_PROFILE_START(&pThis->StatOut, a);
1733
1734 /*
1735 * Figure out how much we can read & write in this iteration.
1736 */
1737 uint32_t cbChunk = 0;
1738 RTGCPHYS GCPhys = hdaStreamDmaBufGet(pStreamShared, &cbChunk);
1739
1740 if (cbChunk <= cbLeft)
1741 { /* very likely */ }
1742 else
1743 cbChunk = cbLeft;
1744
1745 /*
1746 * Read the guest data directly into the internal DMA buffer.
1747 */
1748 uint32_t cbRead = 0;
1749 while (cbChunk > 0)
1750 {
1751 /* Grab internal DMA buffer space and read into it. */
1752 void *pvBufDst;
1753 size_t cbBufDst;
1754 RTCircBufAcquireWriteBlock(pCircBuf, cbChunk, &pvBufDst, &cbBufDst);
1755 AssertBreakStmt(cbBufDst, RTCircBufReleaseWriteBlock(pCircBuf, 0));
1756
1757 int rc2 = PDMDevHlpPCIPhysRead(pDevIns, GCPhys, pvBufDst, cbBufDst);
1758 AssertRC(rc2);
1759
1760# ifdef HDA_DEBUG_SILENCE
1761 fix me if relevant;
1762# endif
1763 if (RT_LIKELY(!pStreamR3->Dbg.Runtime.pFileDMARaw))
1764 { /* likely */ }
1765 else
1766 AudioHlpFileWrite(pStreamR3->Dbg.Runtime.pFileDMARaw, pvBufDst, cbBufDst);
1767
1768# ifdef VBOX_WITH_DTRACE
1769 VBOXDD_HDA_STREAM_DMA_OUT((uint32_t)uSD, (uint32_t)cbBufDst, pStreamShared->State.offWrite);
1770# endif
1771 pStreamShared->State.offWrite += cbBufDst;
1772 RTCircBufReleaseWriteBlock(pCircBuf, cbBufDst);
1773 STAM_COUNTER_ADD(&pThis->StatBytesRead, cbBufDst);
1774
1775 /* advance */
1776 cbChunk -= (uint32_t)cbBufDst;
1777 cbRead += (uint32_t)cbBufDst;
1778 GCPhys += cbBufDst;
1779 pStreamShared->State.offCurBdle += (uint32_t)cbBufDst;
1780 }
1781
1782 cbLeft -= cbRead;
1783 STAM_PROFILE_STOP(&pThis->StatOut, a);
1784
1785 /*
1786 * Complete the buffer if necessary (common with the input DMA code).
1787 *
1788 * Must update the DMA position before we do this as the buffer IRQ may
1789 * fire on another vCPU and run in parallel to us, although it is very
1790 * unlikely it can make much progress as long as we're sitting on the
1791 * lock, it could still read the DMA position (Linux won't, as it reads
1792 * WALCLK and possibly SDnSTS before the DMA position).
1793 */
1794 hdaStreamSetPositionAdd(pStreamShared, pDevIns, pThis, cbRead);
1795 hdaStreamDoDmaMaybeCompleteBuffer(pDevIns, pThis, pStreamShared, "hdaR3StreamDoDmaOutput");
1796 }
1797
1798 Assert(cbLeft == 0); /* There shall be no break statements in the above loop, so cbLeft is always zero here! */
1799
1800 /*
1801 * Common epilogue.
1802 */
1803 hdaR3StreamDoDmaEpilogue(pDevIns, pStreamShared, pStreamR3);
1804
1805 /*
1806 * Log and leave.
1807 */
1808 Log3Func(("LEAVE - [SD%RU8] %#RX32/%#RX32 @ %#RX64 - cTransferPendingInterrupts=%RU8\n",
1809 uSD, cbToProduce, pStreamShared->State.cbCurDmaPeriod, pStreamShared->State.offWrite - cbToProduce,
1810 pStreamShared->State.cTransferPendingInterrupts));
1811}
1812
1813#endif /* IN_RING3 */
1814#ifdef VBOX_HDA_WITH_ON_REG_ACCESS_DMA
1815
1816/**
1817 * Do DMA output transfer on LPIB/WALCLK register access.
1818 *
1819 * @returns VINF_SUCCESS or VINF_IOM_R3_MMIO_READ.
1820 * @param pDevIns The device instance.
1821 * @param pThis The shared instance data.
1822 * @param pStreamShared The shared stream data.
1823 * @param tsNow The current time on the timer clock.
1824 * @param cbToTransfer How much to transfer.
1825 */
1826VBOXSTRICTRC hdaStreamDoOnAccessDmaOutput(PPDMDEVINS pDevIns, PHDASTATE pThis, PHDASTREAM pStreamShared,
1827 uint64_t tsNow, uint32_t cbToTransfer)
1828{
1829 AssertReturn(cbToTransfer > 0, VINF_SUCCESS);
1830 int rc = VINF_SUCCESS;
1831
1832 /*
1833 * Check if we're exceeding the available buffer, go to ring-3 to
1834 * handle that (we would perhaps always take this path when in ring-3).
1835 */
1836 uint32_t cbDma = pStreamShared->State.cbDma;
1837 ASMCompilerBarrier();
1838 if ( cbDma >= sizeof(pStreamShared->State.abDma) /* paranoia */
1839 || cbToTransfer >= sizeof(pStreamShared->State.abDma) /* paranoia */
1840 || cbDma + cbToTransfer > sizeof(pStreamShared->State.abDma))
1841 {
1842# ifndef IN_RING3
1843 STAM_REL_COUNTER_INC(&pThis->StatAccessDmaOutputToR3);
1844 LogFlowFunc(("[SD%RU8] out of DMA buffer space (%#x, need %#x) -> VINF_IOM_R3_MMIO_READ\n",
1845 pStreamShared->u8SD, sizeof(pStreamShared->State.abDma) - pStreamShared->State.cbDma, cbToTransfer));
1846 return VINF_IOM_R3_MMIO_READ;
1847# else /* IN_RING3 */
1848 /*
1849 * Flush the bounce buffer, then do direct transfers to the
1850 * internal DMA buffer (updates LPIB).
1851 */
1852 PHDASTATER3 const pThisCC = PDMDEVINS_2_DATA_CC(pDevIns, PHDASTATER3);
1853 uintptr_t const idxStream = pStreamShared->u8SD;
1854 AssertReturn(idxStream < RT_ELEMENTS(pThisCC->aStreams), VERR_INTERNAL_ERROR_4);
1855 PHDASTREAMR3 const pStreamR3 = &pThisCC->aStreams[idxStream];
1856
1857 hdaR3StreamFlushDmaBounceBufferOutput(pStreamShared, pStreamR3);
1858
1859 uint32_t cbStreamFree = hdaR3StreamGetFree(pStreamR3);
1860 if (cbStreamFree >= cbToTransfer)
1861 { /* likely */ }
1862 else
1863 {
1864 PAUDMIXSINK pSink = pStreamR3->pMixSink ? pStreamR3->pMixSink->pMixSink : NULL;
1865 if (pSink)
1866 cbStreamFree = hdaR3StreamHandleDmaBufferOverrun(pStreamShared, pStreamR3, pSink, cbToTransfer, RTTimeNanoTS(),
1867 "hdaStreamDoOnAccessDmaOutput", cbStreamFree);
1868 else
1869 {
1870 LogFunc(("[SD%RU8] No sink and insufficient internal DMA buffer space (%#x) - won't do anything\n",
1871 pStreamShared->u8SD, cbStreamFree));
1872 return VINF_SUCCESS;
1873 }
1874 cbToTransfer = RT_MIN(cbToTransfer, cbStreamFree);
1875 if (cbToTransfer < PDMAudioPropsFrameSize(&pStreamShared->State.Cfg.Props))
1876 {
1877 LogFunc(("[SD%RU8] No internal DMA buffer space (%#x) - won't do anything\n", pStreamShared->u8SD, cbStreamFree));
1878 return VINF_SUCCESS;
1879 }
1880 }
1881 hdaR3StreamDoDmaOutput(pDevIns, pThis, pStreamShared, pStreamR3, cbToTransfer, RTTimeNanoTS());
1882 pStreamShared->State.cbDmaTotal += cbToTransfer;
1883# endif /* IN_RING3 */
1884 }
1885 else
1886 {
1887 /*
1888 * Transfer into the DMA bounce buffer.
1889 */
1890 LogFlowFunc(("[SD%RU8] Transfering %#x bytes to DMA bounce buffer (cbDma=%#x cbDmaTotal=%#x) (%p/%u)\n",
1891 pStreamShared->u8SD, cbToTransfer, cbDma, pStreamShared->State.cbDmaTotal, pStreamShared, pStreamShared->u8SD));
1892 uint32_t cbLeft = cbToTransfer;
1893 do
1894 {
1895 uint32_t cbChunk = 0;
1896 RTGCPHYS GCPhys = hdaStreamDmaBufGet(pStreamShared, &cbChunk);
1897
1898 bool fMustAdvanceBuffer;
1899 if (cbLeft < cbChunk)
1900 {
1901 fMustAdvanceBuffer = false;
1902 cbChunk = cbLeft;
1903 }
1904 else
1905 fMustAdvanceBuffer = true;
1906
1907 /* Read the guest data directly into the DMA bounce buffer. */
1908 int rc2 = PDMDevHlpPCIPhysRead(pDevIns, GCPhys, &pStreamShared->State.abDma[cbDma], cbChunk);
1909 AssertRC(rc2);
1910
1911 /* We update offWrite and StatBytesRead here even if we haven't moved the data
1912 to the internal DMA buffer yet, because we want the dtrace even to fire here. */
1913# ifdef VBOX_WITH_DTRACE
1914 VBOXDD_HDA_STREAM_DMA_OUT((uint32_t)pStreamShared->u8SD, cbChunk, pStreamShared->State.offWrite);
1915# endif
1916 pStreamShared->State.offWrite += cbChunk;
1917 STAM_COUNTER_ADD(&pThis->StatBytesRead, cbChunk);
1918
1919 /* advance */
1920 pStreamShared->State.offCurBdle += cbChunk;
1921 pStreamShared->State.cbDmaTotal += cbChunk;
1922 cbDma += cbChunk;
1923 pStreamShared->State.cbDma = cbDma;
1924 cbLeft -= cbChunk;
1925 Log6Func(("cbLeft=%#x cbDma=%#x cbDmaTotal=%#x offCurBdle=%#x idxCurBdle=%#x (%p/%u)\n",
1926 cbLeft, cbDma, pStreamShared->State.cbDmaTotal, pStreamShared->State.offCurBdle,
1927 pStreamShared->State.idxCurBdle, pStreamShared, pStreamShared->u8SD));
1928
1929 /* Next buffer. */
1930 bool fAdvanced = hdaStreamDoDmaMaybeCompleteBuffer(pDevIns, pThis, pStreamShared, "hdaStreamDoOnAccessDmaOutput");
1931 AssertMsgStmt(fMustAdvanceBuffer == fAdvanced, ("%d %d\n", fMustAdvanceBuffer, fAdvanced), rc = VERR_INTERNAL_ERROR_3);
1932 } while (cbLeft > 0);
1933
1934 /*
1935 * Advance LPIB and update the last transfer time (for WALCLK).
1936 */
1937 pStreamShared->State.tsTransferLast = tsNow;
1938 hdaStreamSetPositionAdd(pStreamShared, pDevIns, pThis, cbToTransfer - cbLeft);
1939 }
1940
1941# ifdef VBOX_STRICT
1942 uint32_t idxSched = pStreamShared->State.idxSchedule;
1943 AssertStmt(idxSched < RT_MIN(RT_ELEMENTS(pStreamShared->State.aSchedule), pStreamShared->State.cSchedule), idxSched = 0);
1944 uint32_t const cbPeriod = pStreamShared->State.aSchedule[idxSched].cbPeriod;
1945 AssertMsg(pStreamShared->State.cbDmaTotal < cbPeriod, ("%#x vs %#x\n", pStreamShared->State.cbDmaTotal, cbPeriod));
1946# endif
1947
1948 STAM_REL_COUNTER_INC(&pThis->StatAccessDmaOutput);
1949 return rc;
1950}
1951
1952
1953/**
1954 * Consider doing DMA output transfer on LPIB/WALCLK register access.
1955 *
1956 * @returns VINF_SUCCESS or VINF_IOM_R3_MMIO_READ.
1957 * @param pDevIns The device instance.
1958 * @param pThis The shared instance data.
1959 * @param pStreamShared The shared stream data.
1960 * @param tsNow The current time on the timer clock. Used to do the
1961 * calculation.
1962 */
1963VBOXSTRICTRC hdaStreamMaybeDoOnAccessDmaOutput(PPDMDEVINS pDevIns, PHDASTATE pThis, PHDASTREAM pStreamShared, uint64_t tsNow)
1964{
1965 Assert(pStreamShared->State.fRunning); /* caller should check this */
1966
1967 /*
1968 * Calculate where the DMA engine should be according to the clock, if we can.
1969 */
1970 uint32_t const cbFrame = PDMAudioPropsFrameSize(&pStreamShared->State.Cfg.Props);
1971 uint32_t const cbPeriod = pStreamShared->State.cbCurDmaPeriod;
1972 if (cbPeriod > cbFrame)
1973 {
1974 AssertMsg(pStreamShared->State.cbDmaTotal < cbPeriod, ("%#x vs %#x\n", pStreamShared->State.cbDmaTotal, cbPeriod));
1975 uint64_t const tsTransferNext = pStreamShared->State.tsTransferNext;
1976 uint32_t cbFuture;
1977 if (tsNow < tsTransferNext)
1978 {
1979 /** @todo ASSUMES nanosecond clock ticks, need to make this
1980 * resolution independent. */
1981 cbFuture = PDMAudioPropsNanoToBytes(&pStreamShared->State.Cfg.Props, tsTransferNext - tsNow);
1982 cbFuture = RT_MIN(cbFuture, cbPeriod - cbFrame);
1983 }
1984 else
1985 {
1986 /* We've hit/overshot the timer deadline. Return to ring-3 if we're
1987 not already there to increase the chance that we'll help expidite
1988 the timer. If we're already in ring-3, do all but the last frame. */
1989# ifndef IN_RING3
1990 LogFunc(("[SD%RU8] DMA period expired: tsNow=%RU64 >= tsTransferNext=%RU64 -> VINF_IOM_R3_MMIO_READ\n",
1991 tsNow, tsTransferNext));
1992 return VINF_IOM_R3_MMIO_READ;
1993# else
1994 cbFuture = cbPeriod - cbFrame;
1995 LogFunc(("[SD%RU8] DMA period expired: tsNow=%RU64 >= tsTransferNext=%RU64 -> cbFuture=%#x (cbPeriod=%#x - cbFrame=%#x)\n",
1996 tsNow, tsTransferNext, cbFuture, cbPeriod, cbFrame));
1997# endif
1998 }
1999 uint32_t const offNow = PDMAudioPropsFloorBytesToFrame(&pStreamShared->State.Cfg.Props, cbPeriod - cbFuture);
2000
2001 /*
2002 * Should we transfer a little? Minimum is 64 bytes (semi-random,
2003 * suspect real hardware might be doing some cache aligned stuff,
2004 * which might soon get complicated if you take unaligned buffers
2005 * into consideration and which cache line size (128 bytes is just
2006 * as likely as 64 or 32 bytes)).
2007 */
2008 uint32_t cbDmaTotal = pStreamShared->State.cbDmaTotal;
2009 if (cbDmaTotal + 64 <= offNow)
2010 {
2011# ifdef LOG_ENABLED
2012 uint32_t const uOldLpib = HDA_STREAM_REG(pThis, CBL, pStreamShared->u8SD);
2013# endif
2014 VBOXSTRICTRC rcStrict = hdaStreamDoOnAccessDmaOutput(pDevIns, pThis, pStreamShared, tsNow, offNow - cbDmaTotal);
2015 LogFlowFunc(("[SD%RU8] LPIB=%#RX32 -> LPIB=%#RX32 offNow=%#x rcStrict=%Rrc\n", pStreamShared->u8SD,
2016 uOldLpib, HDA_STREAM_REG(pThis, LPIB, pStreamShared->u8SD), offNow, VBOXSTRICTRC_VAL(rcStrict) ));
2017 return rcStrict;
2018 }
2019
2020 /*
2021 * Do nothing.
2022 */
2023 LogFlowFunc(("[SD%RU8] Skipping DMA transfer: cbDmaTotal=%#x offNow=%#x\n", pStreamShared->u8SD, cbDmaTotal, offNow));
2024 }
2025 else
2026 LogFunc(("[SD%RU8] cbPeriod=%#x <= cbFrame=%#x\n", pStreamShared->u8SD, cbPeriod, cbFrame));
2027 return VINF_SUCCESS;
2028}
2029
2030#endif /* VBOX_HDA_WITH_ON_REG_ACCESS_DMA */
2031#ifdef IN_RING3
2032
2033/**
2034 * Output streams: Pushes data to the mixer.
2035 *
2036 * @param pStreamShared HDA stream to update (shared bits).
2037 * @param pStreamR3 HDA stream to update (ring-3 bits).
2038 * @param pSink The mixer sink to push to.
2039 * @param nsNow The current RTTimeNanoTS() value.
2040 */
2041static void hdaR3StreamPushToMixer(PHDASTREAM pStreamShared, PHDASTREAMR3 pStreamR3, PAUDMIXSINK pSink, uint64_t nsNow)
2042{
2043# ifdef LOG_ENABLED
2044 uint64_t const offReadOld = pStreamShared->State.offRead;
2045# endif
2046 pStreamShared->State.offRead = AudioMixerSinkTransferFromCircBuf(pSink,
2047 pStreamR3->State.pCircBuf,
2048 pStreamShared->State.offRead,
2049 pStreamR3->u8SD,
2050 pStreamR3->Dbg.Runtime.fEnabled
2051 ? pStreamR3->Dbg.Runtime.pFileStream : NULL);
2052
2053 Assert(nsNow >= pStreamShared->State.tsLastReadNs);
2054 Log3Func(("[SD%RU8] nsDeltaLastRead=%RI64 transferred=%#RX64 bytes -> @%#RX64\n", pStreamR3->u8SD,
2055 nsNow - pStreamShared->State.tsLastReadNs, pStreamShared->State.offRead - offReadOld, pStreamShared->State.offRead));
2056 RT_NOREF(pStreamShared, nsNow);
2057
2058 /* Update buffer stats. */
2059 pStreamR3->State.StatDmaBufUsed = (uint32_t)RTCircBufUsed(pStreamR3->State.pCircBuf);
2060}
2061
2062
2063/**
2064 * Deals with a DMA buffer overrun.
2065 *
2066 * Makes sure we return with @a cbNeeded bytes of free space in pCircBuf.
2067 *
2068 * @returns Number of bytes free in the internal DMA buffer.
2069 * @param pStreamShared The shared data for the HDA stream.
2070 * @param pStreamR3 The ring-3 data for the HDA stream.
2071 * @param pSink The mixer sink (valid).
2072 * @param cbNeeded How much space we need (in bytes).
2073 * @param nsNow Current RTNanoTimeTS() timestamp.
2074 * @param cbStreamFree The current amount of free buffer space.
2075 * @param pszCaller The caller (for logging).
2076 */
2077static uint32_t hdaR3StreamHandleDmaBufferOverrun(PHDASTREAM pStreamShared, PHDASTREAMR3 pStreamR3, PAUDMIXSINK pSink,
2078 uint32_t cbNeeded, uint64_t nsNow,
2079 const char *pszCaller, uint32_t const cbStreamFree)
2080{
2081 STAM_REL_COUNTER_INC(&pStreamR3->State.StatDmaFlowProblems);
2082 Log(("%s: Warning! Stream #%u has insufficient space free: %#x bytes, need %#x. Will try move data out of the buffer...\n",
2083 pszCaller, pStreamShared->u8SD, cbStreamFree, cbNeeded));
2084 RT_NOREF(pszCaller, cbStreamFree);
2085
2086 int rc = AudioMixerSinkTryLock(pSink);
2087 if (RT_SUCCESS(rc))
2088 {
2089 hdaR3StreamPushToMixer(pStreamShared, pStreamR3, pSink, nsNow);
2090 AudioMixerSinkUpdate(pSink, 0, 0);
2091 AudioMixerSinkUnlock(pSink);
2092 }
2093 else
2094 RTThreadYield();
2095
2096 uint32_t const cbRet = hdaR3StreamGetFree(pStreamR3);
2097 Log(("%s: Gained %u bytes.\n", pszCaller, cbRet - cbStreamFree));
2098 if (cbRet >= cbNeeded)
2099 return cbRet;
2100
2101 /*
2102 * Unable to make sufficient space. Drop the whole buffer content.
2103 *
2104 * This is needed in order to keep the device emulation running at a
2105 * constant rate, at the cost of losing valid (but too much) data.
2106 */
2107 STAM_REL_COUNTER_INC(&pStreamR3->State.StatDmaFlowErrors);
2108 LogRel2(("HDA: Warning: Hit stream #%RU8 overflow, dropping %u bytes of audio data (%s)\n",
2109 pStreamShared->u8SD, hdaR3StreamGetUsed(pStreamR3), pszCaller));
2110# ifdef HDA_STRICT
2111 AssertMsgFailed(("Hit stream #%RU8 overflow -- timing bug?\n", pStreamShared->u8SD));
2112# endif
2113/**
2114 *
2115 * @todo r=bird: I don't think RTCircBufReset is entirely safe w/o
2116 * owning the AIO lock. See the note in the documentation about it not being
2117 * multi-threading aware (safe). Wish I'd verified this code much earlier.
2118 * Sigh^3!
2119 *
2120 */
2121 RTCircBufReset(pStreamR3->State.pCircBuf);
2122 pStreamShared->State.offWrite = 0;
2123 pStreamShared->State.offRead = 0;
2124 return hdaR3StreamGetFree(pStreamR3);
2125}
2126
2127
2128# ifdef VBOX_HDA_WITH_ON_REG_ACCESS_DMA
2129/**
2130 * Flushes the DMA bounce buffer content to the internal DMA buffer.
2131 *
2132 * @param pStreamShared The shared data of the stream to have its DMA bounce
2133 * buffer flushed.
2134 * @param pStreamR3 The ring-3 stream data for same.
2135 */
2136static void hdaR3StreamFlushDmaBounceBufferOutput(PHDASTREAM pStreamShared, PHDASTREAMR3 pStreamR3)
2137{
2138 uint32_t cbDma = pStreamShared->State.cbDma;
2139 LogFlowFunc(("cbDma=%#x\n", cbDma));
2140 if (cbDma)
2141 {
2142 AssertReturnVoid(cbDma <= sizeof(pStreamShared->State.abDma));
2143 PRTCIRCBUF const pCircBuf = pStreamR3->State.pCircBuf;
2144 if (pCircBuf)
2145 {
2146 uint32_t offDma = 0;
2147 while (offDma < cbDma)
2148 {
2149 uint32_t const cbSrcLeft = cbDma - offDma;
2150
2151 /*
2152 * Grab a chunk of the internal DMA buffer.
2153 */
2154 void *pvBufDst = NULL;
2155 size_t cbBufDst = 0;
2156 RTCircBufAcquireWriteBlock(pCircBuf, cbSrcLeft, &pvBufDst, &cbBufDst);
2157 if (cbBufDst > 0)
2158 { /* likely */ }
2159 else
2160 {
2161 /* We've got buffering trouble. */
2162 RTCircBufReleaseWriteBlock(pCircBuf, 0);
2163
2164 PAUDMIXSINK pSink = pStreamR3->pMixSink ? pStreamR3->pMixSink->pMixSink : NULL;
2165 if (pSink)
2166 hdaR3StreamHandleDmaBufferOverrun(pStreamShared, pStreamR3, pSink, cbSrcLeft, RTTimeNanoTS(),
2167 "hdaR3StreamFlushDmaBounceBufferOutput", 0 /*cbStreamFree*/);
2168 else
2169 {
2170 LogFunc(("Stream #%u has no sink. Dropping the rest of the data\n", pStreamR3->u8SD));
2171 break;
2172 }
2173
2174 RTCircBufAcquireWriteBlock(pCircBuf, cbSrcLeft, &pvBufDst, &cbBufDst);
2175 AssertBreakStmt(cbBufDst, RTCircBufReleaseWriteBlock(pCircBuf, 0));
2176 }
2177
2178 /*
2179 * Copy the samples into it and write it to the debug file if open.
2180 *
2181 * We do not fire the dtrace probe here nor update offRead as that was
2182 * done already (not sure that was a good idea?).
2183 */
2184 memcpy(pvBufDst, &pStreamShared->State.abDma[offDma], cbBufDst);
2185
2186 if (RT_LIKELY(!pStreamR3->Dbg.Runtime.pFileDMARaw))
2187 { /* likely */ }
2188 else
2189 AudioHlpFileWrite(pStreamR3->Dbg.Runtime.pFileDMARaw, pvBufDst, cbBufDst);
2190
2191 RTCircBufReleaseWriteBlock(pCircBuf, cbBufDst);
2192
2193 offDma += (uint32_t)cbBufDst;
2194 }
2195 }
2196
2197 /*
2198 * Mark the buffer empty.
2199 */
2200 pStreamShared->State.cbDma = 0;
2201 }
2202}
2203# endif /* VBOX_HDA_WITH_ON_REG_ACCESS_DMA */
2204
2205
2206/**
2207 * The stream's main function when called by the timer.
2208 *
2209 * @note This function also will be called without timer invocation when
2210 * starting (enabling) the stream to minimize startup latency.
2211 *
2212 * @returns Current timer time if the timer is enabled, otherwise zero.
2213 * @param pDevIns The device instance.
2214 * @param pThis The shared HDA device state.
2215 * @param pThisCC The ring-3 HDA device state.
2216 * @param pStreamShared HDA stream to update (shared bits).
2217 * @param pStreamR3 HDA stream to update (ring-3 bits).
2218 */
2219uint64_t hdaR3StreamTimerMain(PPDMDEVINS pDevIns, PHDASTATE pThis, PHDASTATER3 pThisCC,
2220 PHDASTREAM pStreamShared, PHDASTREAMR3 pStreamR3)
2221{
2222 Assert(PDMDevHlpCritSectIsOwner(pDevIns, &pThis->CritSect));
2223 Assert(PDMDevHlpTimerIsLockOwner(pDevIns, pStreamShared->hTimer));
2224
2225 /* Do the work: */
2226 hdaR3StreamUpdateDma(pDevIns, pThis, pThisCC, pStreamShared, pStreamR3);
2227
2228 /* Re-arm the timer if the sink is still active: */
2229 if ( pStreamShared->State.fRunning
2230 && pStreamR3->pMixSink
2231 && AudioMixerSinkIsActive(pStreamR3->pMixSink->pMixSink))
2232 {
2233 /* Advance the schduling: */
2234 uint32_t idxSched = pStreamShared->State.idxSchedule;
2235 AssertStmt(idxSched < RT_ELEMENTS(pStreamShared->State.aSchedule), idxSched = 0);
2236 uint32_t idxLoop = pStreamShared->State.idxScheduleLoop + 1;
2237 if (idxLoop >= pStreamShared->State.aSchedule[idxSched].cLoops)
2238 {
2239 idxSched += 1;
2240 if ( idxSched >= pStreamShared->State.cSchedule
2241 || idxSched >= RT_ELEMENTS(pStreamShared->State.aSchedule) /*paranoia^2*/)
2242 {
2243 idxSched = pStreamShared->State.cSchedulePrologue;
2244 AssertStmt(idxSched < RT_ELEMENTS(pStreamShared->State.aSchedule), idxSched = 0);
2245 }
2246 pStreamShared->State.idxSchedule = idxSched;
2247 idxLoop = 0;
2248 }
2249 pStreamShared->State.idxScheduleLoop = (uint16_t)idxLoop;
2250
2251 /* Do the actual timer re-arming. */
2252 uint64_t const tsNow = PDMDevHlpTimerGet(pDevIns, pStreamShared->hTimer); /* (For virtual sync this remains the same for the whole callout IIRC) */
2253 uint64_t const tsTransferNext = tsNow + pStreamShared->State.aSchedule[idxSched].cPeriodTicks;
2254 Log3Func(("[SD%RU8] fSinkActive=true, tsTransferNext=%RU64 (in %RU64)\n",
2255 pStreamShared->u8SD, tsTransferNext, tsTransferNext - tsNow));
2256 int rc = PDMDevHlpTimerSet(pDevIns, pStreamShared->hTimer, tsTransferNext);
2257 AssertRC(rc);
2258
2259 /* Some legacy stuff: */
2260 pStreamShared->State.tsTransferNext = tsTransferNext;
2261 pStreamShared->State.cbCurDmaPeriod = pStreamShared->State.aSchedule[idxSched].cbPeriod;
2262
2263 return tsNow;
2264 }
2265
2266 Log3Func(("[SD%RU8] fSinkActive=false\n", pStreamShared->u8SD));
2267 return 0;
2268}
2269
2270
2271/**
2272 * Updates a HDA stream by doing DMA transfers.
2273 *
2274 * Will do mixer transfers too to try fix an overrun/underrun situation.
2275 *
2276 * The host sink(s) set the overall pace (bird: no it doesn't, the DMA timer
2277 * does - we just hope like heck it matches the speed at which the *backend*
2278 * host audio driver processes samples).
2279 *
2280 * @param pDevIns The device instance.
2281 * @param pThis The shared HDA device state.
2282 * @param pThisCC The ring-3 HDA device state.
2283 * @param pStreamShared HDA stream to update (shared bits).
2284 * @param pStreamR3 HDA stream to update (ring-3 bits).
2285 */
2286static void hdaR3StreamUpdateDma(PPDMDEVINS pDevIns, PHDASTATE pThis, PHDASTATER3 pThisCC,
2287 PHDASTREAM pStreamShared, PHDASTREAMR3 pStreamR3)
2288{
2289 RT_NOREF(pThisCC);
2290 int rc2;
2291
2292 /*
2293 * Make sure we're running and got an active mixer sink.
2294 */
2295 if (RT_LIKELY(pStreamShared->State.fRunning))
2296 { /* likely */ }
2297 else
2298 return;
2299
2300 PAUDMIXSINK pSink = NULL;
2301 if (pStreamR3->pMixSink)
2302 pSink = pStreamR3->pMixSink->pMixSink;
2303 if (RT_LIKELY(AudioMixerSinkIsActive(pSink)))
2304 { /* likely */ }
2305 else
2306 return;
2307
2308 /*
2309 * Get scheduling info common to both input and output streams.
2310 */
2311 const uint64_t tsNowNs = RTTimeNanoTS();
2312 uint32_t idxSched = pStreamShared->State.idxSchedule;
2313 AssertStmt(idxSched < RT_MIN(RT_ELEMENTS(pStreamShared->State.aSchedule), pStreamShared->State.cSchedule), idxSched = 0);
2314 uint32_t cbPeriod = pStreamShared->State.aSchedule[idxSched].cbPeriod;
2315
2316 /*
2317 * Output streams (SDO).
2318 */
2319 if (hdaGetDirFromSD(pStreamShared->u8SD) == PDMAUDIODIR_OUT)
2320 {
2321# ifdef VBOX_HDA_WITH_ON_REG_ACCESS_DMA
2322 /* Subtract already transferred bytes and flush the DMA bounce buffer. */
2323 uint32_t cbDmaTotal = pStreamShared->State.cbDmaTotal;
2324 if (cbDmaTotal > 0)
2325 {
2326 AssertStmt(cbDmaTotal < cbPeriod, cbDmaTotal = cbPeriod);
2327 cbPeriod -= cbDmaTotal;
2328 pStreamShared->State.cbDmaTotal = 0;
2329 hdaR3StreamFlushDmaBounceBufferOutput(pStreamShared, pStreamR3);
2330 }
2331 else
2332 Assert(pStreamShared->State.cbDma == 0);
2333# endif
2334
2335 /*
2336 * Check how much room we have in our DMA buffer. There should be at
2337 * least one period worth of space there or we're in an overflow situation.
2338 */
2339 uint32_t cbStreamFree = hdaR3StreamGetFree(pStreamR3);
2340 if (cbStreamFree >= cbPeriod)
2341 { /* likely */ }
2342 else
2343 cbStreamFree = hdaR3StreamHandleDmaBufferOverrun(pStreamShared, pStreamR3, pSink, cbPeriod, tsNowNs,
2344 "hdaR3StreamUpdateDma", cbStreamFree);
2345
2346 /*
2347 * Do the DMA transfer.
2348 */
2349 uint64_t const offWriteBefore = pStreamShared->State.offWrite;
2350 hdaR3StreamDoDmaOutput(pDevIns, pThis, pStreamShared, pStreamR3, RT_MIN(cbStreamFree, cbPeriod), tsNowNs);
2351
2352 /*
2353 * Should we push data to down thru the mixer to and to the host drivers?
2354 */
2355 bool fKickAioThread = pStreamShared->State.offWrite > offWriteBefore
2356 || hdaR3StreamGetFree(pStreamR3) < pStreamShared->State.cbAvgTransfer * 2;
2357
2358 Log3Func(("msDelta=%RU64 (vs %u) cbStreamFree=%#x (vs %#x) => fKickAioThread=%RTbool\n",
2359 (tsNowNs - pStreamShared->State.tsLastReadNs) / RT_NS_1MS,
2360 pStreamShared->State.Cfg.Device.cMsSchedulingHint, cbStreamFree,
2361 pStreamShared->State.cbAvgTransfer * 2, fKickAioThread));
2362
2363 if (fKickAioThread)
2364 {
2365 /* Notify the async I/O worker thread that there's work to do. */
2366 Log5Func(("Notifying AIO thread\n"));
2367 rc2 = AudioMixerSinkSignalUpdateJob(pSink);
2368 AssertRC(rc2);
2369 /* Update last read timestamp for logging/debugging. */
2370 pStreamShared->State.tsLastReadNs = tsNowNs;
2371 }
2372 }
2373 /*
2374 * Input stream (SDI).
2375 */
2376 else
2377 {
2378 Assert(hdaGetDirFromSD(pStreamShared->u8SD) == PDMAUDIODIR_IN);
2379
2380 /*
2381 * See how much data we've got buffered...
2382 */
2383 bool fWriteSilence = false;
2384 uint32_t cbStreamUsed = hdaR3StreamGetUsed(pStreamR3);
2385 if (pStreamShared->State.fInputPreBuffered && cbStreamUsed >= cbPeriod)
2386 { /*likely*/ }
2387 /*
2388 * Because it may take a while for the input stream to get going (at
2389 * least with pulseaudio), we feed the guest silence till we've
2390 * pre-buffer a reasonable amount of audio.
2391 */
2392 else if (!pStreamShared->State.fInputPreBuffered)
2393 {
2394 if (cbStreamUsed < pStreamShared->State.cbInputPreBuffer)
2395 {
2396 Log3(("hdaR3StreamUpdateDma: Pre-buffering (got %#x out of %#x bytes)...\n",
2397 cbStreamUsed, pStreamShared->State.cbInputPreBuffer));
2398 fWriteSilence = true;
2399 }
2400 else
2401 {
2402 Log3(("hdaR3StreamUpdateDma: Completed pre-buffering (got %#x, needed %#x bytes).\n",
2403 cbStreamUsed, pStreamShared->State.cbInputPreBuffer));
2404 pStreamShared->State.fInputPreBuffered = true;
2405 fWriteSilence = true; /* For now, just do the most conservative thing. */
2406 }
2407 cbStreamUsed = cbPeriod;
2408 }
2409 /*
2410 * When we're low on data, we must really try fetch some ourselves
2411 * as buffer underruns must not happen.
2412 */
2413 else
2414 {
2415 /** @todo We're ending up here to frequently with pulse audio at least (just
2416 * watch the stream stats in the statistcs viewer, and way to often we
2417 * have to inject silence bytes. I suspect part of the problem is
2418 * that the HDA device require a much better latency than what the
2419 * pulse audio is configured for by default (10 ms vs 150ms). */
2420 STAM_REL_COUNTER_INC(&pStreamR3->State.StatDmaFlowProblems);
2421 Log(("hdaR3StreamUpdateDma: Warning! Stream #%u has insufficient data available: %u bytes, need %u. Will try move pull more data into the buffer...\n",
2422 pStreamShared->u8SD, cbStreamUsed, cbPeriod));
2423 int rc = AudioMixerSinkTryLock(pSink);
2424 if (RT_SUCCESS(rc))
2425 {
2426 AudioMixerSinkUpdate(pSink, cbStreamUsed, cbPeriod);
2427 hdaR3StreamPullFromMixer(pStreamShared, pStreamR3, pSink);
2428 AudioMixerSinkUnlock(pSink);
2429 }
2430 else
2431 RTThreadYield();
2432 Log(("hdaR3StreamUpdateDma: Gained %u bytes.\n", hdaR3StreamGetUsed(pStreamR3) - cbStreamUsed));
2433 cbStreamUsed = hdaR3StreamGetUsed(pStreamR3);
2434 if (cbStreamUsed < cbPeriod)
2435 {
2436 /* Unable to find sufficient input data by simple prodding.
2437 In order to keep a constant byte stream following thru the DMA
2438 engine into the guest, we will try again and then fall back on
2439 filling the gap with silence. */
2440 uint32_t cbSilence = 0;
2441 do
2442 {
2443 AudioMixerSinkLock(pSink);
2444
2445 cbStreamUsed = hdaR3StreamGetUsed(pStreamR3);
2446 if (cbStreamUsed < cbPeriod)
2447 {
2448 hdaR3StreamPullFromMixer(pStreamShared, pStreamR3, pSink);
2449 cbStreamUsed = hdaR3StreamGetUsed(pStreamR3);
2450 while (cbStreamUsed < cbPeriod)
2451 {
2452 void *pvDstBuf;
2453 size_t cbDstBuf;
2454 RTCircBufAcquireWriteBlock(pStreamR3->State.pCircBuf, cbPeriod - cbStreamUsed,
2455 &pvDstBuf, &cbDstBuf);
2456 RT_BZERO(pvDstBuf, cbDstBuf);
2457 RTCircBufReleaseWriteBlock(pStreamR3->State.pCircBuf, cbDstBuf);
2458 cbSilence += (uint32_t)cbDstBuf;
2459 cbStreamUsed += (uint32_t)cbDstBuf;
2460 }
2461 }
2462
2463 AudioMixerSinkUnlock(pSink);
2464 } while (cbStreamUsed < cbPeriod);
2465 if (cbSilence > 0)
2466 {
2467 STAM_REL_COUNTER_INC(&pStreamR3->State.StatDmaFlowErrors);
2468 STAM_REL_COUNTER_ADD(&pStreamR3->State.StatDmaFlowErrorBytes, cbSilence);
2469 LogRel2(("HDA: Warning: Stream #%RU8 underrun, added %u bytes of silence (%u us)\n", pStreamShared->u8SD,
2470 cbSilence, PDMAudioPropsBytesToMicro(&pStreamShared->State.Cfg.Props, cbSilence)));
2471 }
2472 }
2473 }
2474
2475 /*
2476 * Do the DMA'ing.
2477 */
2478 if (cbStreamUsed)
2479 hdaR3StreamDoDmaInput(pDevIns, pThis, pStreamShared, pStreamR3,
2480 RT_MIN(cbStreamUsed, cbPeriod), fWriteSilence, tsNowNs);
2481
2482 /*
2483 * We should always kick the AIO thread.
2484 */
2485 /** @todo This isn't entirely ideal. If we get into an underrun situation,
2486 * we ideally want the AIO thread to run right before the DMA timer
2487 * rather than right after it ran. */
2488 Log5Func(("Notifying AIO thread\n"));
2489 rc2 = AudioMixerSinkSignalUpdateJob(pSink);
2490 AssertRC(rc2);
2491 pStreamShared->State.tsLastReadNs = tsNowNs;
2492 }
2493}
2494
2495
2496/**
2497 * @callback_method_impl{FNAUDMIXSINKUPDATE}
2498 *
2499 * For output streams this moves data from the internal DMA buffer (in which
2500 * hdaR3StreamUpdateDma put it), thru the mixer and to the various backend audio
2501 * devices.
2502 *
2503 * For input streams this pulls data from the backend audio device(s), thru the
2504 * mixer and puts it in the internal DMA buffer ready for hdaR3StreamUpdateDma
2505 * to pump into guest memory.
2506 */
2507DECLCALLBACK(void) hdaR3StreamUpdateAsyncIoJob(PPDMDEVINS pDevIns, PAUDMIXSINK pSink, void *pvUser)
2508{
2509 PHDASTATE const pThis = PDMDEVINS_2_DATA(pDevIns, PHDASTATE);
2510 PHDASTATER3 const pThisCC = PDMDEVINS_2_DATA_CC(pDevIns, PHDASTATER3);
2511 PHDASTREAMR3 const pStreamR3 = (PHDASTREAMR3)pvUser;
2512 PHDASTREAM const pStreamShared = &pThis->aStreams[pStreamR3 - &pThisCC->aStreams[0]];
2513 Assert(pStreamR3 - &pThisCC->aStreams[0] == pStreamR3->u8SD);
2514 Assert(pStreamShared->u8SD == pStreamR3->u8SD);
2515 RT_NOREF(pSink);
2516
2517 /*
2518 * Make sure we haven't change sink and that it's still active (it
2519 * should be or we wouldn't have been called).
2520 */
2521 AssertReturnVoid(pStreamR3->pMixSink && pSink == pStreamR3->pMixSink->pMixSink);
2522 AssertReturnVoid(AudioMixerSinkIsActive(pSink));
2523
2524 /*
2525 * Output streams (SDO).
2526 */
2527 if (hdaGetDirFromSD(pStreamShared->u8SD) == PDMAUDIODIR_OUT)
2528 hdaR3StreamPushToMixer(pStreamShared, pStreamR3, pSink, RTTimeNanoTS());
2529 /*
2530 * Input stream (SDI).
2531 */
2532 else
2533 {
2534 Assert(hdaGetDirFromSD(pStreamShared->u8SD) == PDMAUDIODIR_IN);
2535 hdaR3StreamPullFromMixer(pStreamShared, pStreamR3, pSink);
2536 }
2537}
2538
2539#endif /* IN_RING3 */
2540
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use