Changeset 89879 in vbox
- Timestamp:
- Jun 24, 2021 10:27:09 AM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 145337
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DevHdaStream.cpp
r89876 r89879 215 215 * @param cbMaxPeriod The max period in guest bytes. 216 216 * @param idxLastBdle The last BDLE in the period. 217 * @param pHostProps The host PCM properties. 218 * @param pGuestProps The guest PCM properties. 217 * @param pProps The PCM properties. 219 218 * @param pcbBorrow Where to account for bytes borrowed across buffers 220 219 * to align scheduling items on frame boundraries. 221 220 */ 222 static int hdaR3StreamAddScheduleItem(PHDASTREAM pStreamShared, uint32_t cbCur, uint32_t cbMaxPeriod, uint32_t idxLastBdle,223 PCPDMAUDIOPCMPROPS pHostProps, PCPDMAUDIOPCMPROPS pGuestProps, uint32_t *pcbBorrow)221 static int hdaR3StreamAddScheduleItem(PHDASTREAM pStreamShared, uint32_t cbCur, uint32_t cbMaxPeriod, 222 uint32_t idxLastBdle, PCPDMAUDIOPCMPROPS pProps, uint32_t *pcbBorrow) 224 223 { 225 224 /* Check that we've got room (shouldn't ever be a problem). */ … … 252 251 } 253 252 254 uint32_t cbCurAligned = PDMAudioPropsRoundUpBytesToFrame(p GuestProps, cbCur);253 uint32_t cbCurAligned = PDMAudioPropsRoundUpBytesToFrame(pProps, cbCur); 255 254 *pcbBorrow = cbCurAligned - cbCur; 256 255 … … 258 257 if (cbCurAligned <= cbMaxPeriod) 259 258 { 260 uint32_t cbHost = PDMAudioPropsFramesToBytes(pHostProps, PDMAudioPropsBytesToFrames(pGuestProps, cbCurAligned)); 261 pStreamShared->State.aSchedule[idx].cbPeriod = cbHost; 259 pStreamShared->State.aSchedule[idx].cbPeriod = cbCurAligned; 262 260 pStreamShared->State.aSchedule[idx].cLoops = 1; 263 261 } … … 269 267 cbLoop = cbCurAligned / 2; 270 268 while (cbLoop > cbMaxPeriod); 271 cbLoop = PDMAudioPropsRoundUpBytesToFrame(p GuestProps, cbLoop);269 cbLoop = PDMAudioPropsRoundUpBytesToFrame(pProps, cbLoop); 272 270 273 271 /* Complete the scheduling item. */ 274 uint32_t cbHost = PDMAudioPropsFramesToBytes(pHostProps, PDMAudioPropsBytesToFrames(pGuestProps, cbLoop)); 275 pStreamShared->State.aSchedule[idx].cbPeriod = cbHost; 272 pStreamShared->State.aSchedule[idx].cbPeriod = cbLoop; 276 273 pStreamShared->State.aSchedule[idx].cLoops = cbCurAligned / cbLoop; 277 274 … … 283 280 pStreamShared->State.aSchedule[idx + 1] = pStreamShared->State.aSchedule[idx]; 284 281 idx++; 285 cbHost = PDMAudioPropsFramesToBytes(pHostProps, PDMAudioPropsBytesToFrames(pGuestProps, cbCurAligned)); 286 pStreamShared->State.aSchedule[idx].cbPeriod = cbHost; 282 pStreamShared->State.aSchedule[idx].cbPeriod = cbCurAligned; 287 283 pStreamShared->State.aSchedule[idx].cLoops = 1; 288 284 } … … 310 306 * Nibelungen" cycle in one go. 311 307 * @param cTimerTicksPerSec The DMA timer frequency. 312 * @param pHostProps The host PCM properties. 313 * @param pGuestProps The guest PCM properties. 308 * @param pProps The PCM properties. 314 309 */ 315 310 static int hdaR3StreamCreateSchedule(PHDASTREAM pStreamShared, uint32_t cSegments, uint32_t cBufferIrqs, uint32_t cbTotal, 316 uint32_t cbMaxPeriod, uint64_t cTimerTicksPerSec, 317 PCPDMAUDIOPCMPROPS pHostProps, PCPDMAUDIOPCMPROPS pGuestProps) 311 uint32_t cbMaxPeriod, uint64_t cTimerTicksPerSec, PCPDMAUDIOPCMPROPS pProps) 318 312 { 319 313 int rc; … … 343 337 if (pStreamShared->State.aBdl[i].fFlags & HDA_BDLE_F_IOC) 344 338 { 345 rc = hdaR3StreamAddScheduleItem(pStreamShared, cbCur, cbMaxPeriod, i, p HostProps, pGuestProps, &cbBorrow);339 rc = hdaR3StreamAddScheduleItem(pStreamShared, cbCur, cbMaxPeriod, i, pProps, &cbBorrow); 346 340 ASSERT_GUEST_RC_RETURN(rc, rc); 347 341 … … 383 377 /* Match the BDLEs 1:1 if there are 3 or more and that the smallest one 384 378 is at least 5ms big. */ 385 if (cSegments >= 3 && PDMAudioPropsBytesToMilli(p GuestProps, cbMin) >= 5 /*ms*/)379 if (cSegments >= 3 && PDMAudioPropsBytesToMilli(pProps, cbMin) >= 5 /*ms*/) 386 380 { 387 381 for (uint32_t i = 0; i < cSegments; i++) 388 382 { 389 rc = hdaR3StreamAddScheduleItem(pStreamShared, pStreamShared->State.aBdl[i].cb, cbMaxPeriod, 390 i, pHostProps, pGuestProps, &cbBorrow); 383 rc = hdaR3StreamAddScheduleItem(pStreamShared, pStreamShared->State.aBdl[i].cb, cbMaxPeriod, i, pProps, &cbBorrow); 391 384 ASSERT_GUEST_RC_RETURN(rc, rc); 392 385 } … … 399 392 else 400 393 { 401 uint32_t const cPeriods = cSegments != 3 && PDMAudioPropsBytesToMilli(p GuestProps, cbCur) >= 4 * 5 /*ms*/394 uint32_t const cPeriods = cSegments != 3 && PDMAudioPropsBytesToMilli(pProps, cbCur) >= 4 * 5 /*ms*/ 402 395 ? 4 : cSegments != 2 ? 3 : 2; 403 uint32_t const cbPeriod = PDMAudioPropsFloorBytesToFrame(p GuestProps, cbCur / cPeriods);396 uint32_t const cbPeriod = PDMAudioPropsFloorBytesToFrame(pProps, cbCur / cPeriods); 404 397 uint32_t iBdle = 0; 405 398 uint32_t offBdle = 0; … … 412 405 offBdle -= pStreamShared->State.aBdl[iBdle++].cb; 413 406 rc = hdaR3StreamAddScheduleItem(pStreamShared, cbPeriod, cbMaxPeriod, offBdle != 0 ? iBdle : iBdle - 1, 414 p HostProps, pGuestProps, &cbBorrow);407 pProps, &cbBorrow); 415 408 } 416 409 else 417 410 rc = hdaR3StreamAddScheduleItem(pStreamShared, cbCur - iPeriod * cbPeriod, cbMaxPeriod, cSegments - 1, 418 p HostProps, pGuestProps, &cbBorrow);411 pProps, &cbBorrow); 419 412 ASSERT_GUEST_RC_RETURN(rc, rc); 420 413 } … … 434 427 break; 435 428 } 436 rc = hdaR3StreamAddScheduleItem(pStreamShared, cbCur, cbMaxPeriod, i, p HostProps, pGuestProps, &cbBorrow);429 rc = hdaR3StreamAddScheduleItem(pStreamShared, cbCur, cbMaxPeriod, i, pProps, &cbBorrow); 437 430 ASSERT_GUEST_RC_RETURN(rc, rc); 438 431 … … 456 449 && pStreamShared->State.aSchedule[i].cLoops == 1) 457 450 { 458 uint32_t const cbFirstHalf = PDMAudioPropsFloorBytesToFrame(p HostProps, pStreamShared->State.aSchedule[i].cbPeriod / 2);451 uint32_t const cbFirstHalf = PDMAudioPropsFloorBytesToFrame(pProps, pStreamShared->State.aSchedule[i].cbPeriod / 2); 459 452 uint32_t const cbOtherHalf = pStreamShared->State.aSchedule[i].cbPeriod - cbFirstHalf; 460 453 pStreamShared->State.aSchedule[i].cbPeriod = cbFirstHalf; … … 475 468 LogRel2(("HDA: Stream #%u schedule: %u items, %u prologue\n", 476 469 pStreamShared->u8SD, pStreamShared->State.cSchedule, pStreamShared->State.cSchedulePrologue)); 477 uint64_t const cb HostPerSec = PDMAudioPropsFramesToBytes(pHostProps, pHostProps->uHz);470 uint64_t const cbPerSec = PDMAudioPropsFramesToBytes(pProps, pProps->uHz); 478 471 for (uint32_t i = 0; i < pStreamShared->State.cSchedule; i++) 479 472 { 480 uint64_t const cTicks = ASMMultU64ByU32DivByU32(cTimerTicksPerSec, pStreamShared->State.aSchedule[i].cbPeriod, 481 cbHostPerSec); 473 uint64_t const cTicks = ASMMultU64ByU32DivByU32(cTimerTicksPerSec, pStreamShared->State.aSchedule[i].cbPeriod, cbPerSec); 482 474 AssertLogRelMsgReturn((uint32_t)cTicks == cTicks, ("cTicks=%RU64 (%#RX64)\n", cTicks, cTicks), VERR_INTERNAL_ERROR_4); 483 475 pStreamShared->State.aSchedule[i].cPeriodTicks = RT_MAX((uint32_t)cTicks, 16); … … 637 629 * Create a DMA timer schedule. 638 630 */ 639 /** @todo clean up this, pGuestProps and pHostProps are the same now. */640 631 rc = hdaR3StreamCreateSchedule(pStreamShared, cTransferFragments, cBufferIrqs, (uint32_t)cbTotal, 641 632 PDMAudioPropsMilliToBytes(&pCfg->Props, 100 /** @todo make configurable */), 642 PDMDevHlpTimerGetFreq(pDevIns, pStreamShared->hTimer), 643 &pCfg->Props, &pCfg->Props); 633 PDMDevHlpTimerGetFreq(pDevIns, pStreamShared->hTimer), &pCfg->Props); 644 634 if (RT_FAILURE(rc)) 645 635 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.