Changeset 63365 in vbox for trunk/src/VBox/Devices/Audio/DevIchHda.cpp
- Timestamp:
- Aug 12, 2016 3:13:42 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 110006
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DevIchHda.cpp
r63362 r63365 2339 2339 static int hdaRegWriteSDCTL(PHDASTATE pThis, uint32_t iReg, uint32_t u32Value) 2340 2340 { 2341 #if defined(IN_RING3) || defined(LOG_ENABLED) || defined(VBOX_STRICT)2341 #ifdef IN_RING3 2342 2342 bool fRun = RT_BOOL(u32Value & HDA_REG_FIELD_FLAG_MASK(SDCTL, RUN)); 2343 2343 bool fInRun = RT_BOOL(HDA_REG_IND(pThis, iReg) & HDA_REG_FIELD_FLAG_MASK(SDCTL, RUN)); 2344 #endif 2344 2345 2345 bool fReset = RT_BOOL(u32Value & HDA_REG_FIELD_FLAG_MASK(SDCTL, SRST)); 2346 2346 bool fInReset = RT_BOOL(HDA_REG_IND(pThis, iReg) & HDA_REG_FIELD_FLAG_MASK(SDCTL, SRST)); 2347 2347 2348 2348 if (HDA_REG_IND(pThis, iReg) == u32Value) /* Value already set? */ 2349 return VINF_SUCCESS; 2349 return VINF_SUCCESS; /* Always return success to the MMIO handler. */ 2350 2350 2351 2351 /* Get the stream descriptor. */ … … 2366 2366 } 2367 2367 2368 2369 2370 /** @todo r=bird: Andy, the spotty IN_RING3 in the rest of this function makes2371 * little sense. If you need to request a lock in ring-3, why don't2372 * you need it in ring-0 / RC? Or, reversely, why can you do the2373 * fInReset handling without locking and resolving pStream in R0+RC2374 * but not in ring-3?2375 *2376 * What makes the least sense, is that you do fInReset +2377 * hdaProcessInterrupt in R0/RC and then unconditionally forces a trip to2378 * ring-3 and does the same again.2379 *2380 * Please, do make up your mind what you want to do here ASAP!2381 */2382 2383 2384 #ifdef IN_RING32385 2368 PHDATAG pTag = &pThis->aTags[uTag]; 2386 2369 AssertPtr(pTag); … … 2398 2381 int rc2 = RTSemMutexRequest(pStream->State.hMtx, RT_INDEFINITE_WAIT); 2399 2382 AssertRC(rc2); 2400 #endif /* IN_RING3 */2401 2383 2402 2384 LogFunc(("[SD%RU8]: fRun=%RTbool, fInRun=%RTbool, fReset=%RTbool, fInReset=%RTbool, %R[sdctl]\n", … … 2415 2397 else if (fReset) 2416 2398 { 2417 #ifdef IN_RING32418 2399 /* ICH6 datasheet 18.2.33 says that RUN bit should be cleared before initiation of reset. */ 2419 2400 Assert(!fInRun && !fRun); … … 2421 2402 LogFunc(("[SD%RU8]: Guest initiated enter to stream reset\n", pStream->u8SD)); 2422 2403 hdaStreamReset(pThis, pStream); 2423 #endif2424 2404 } 2425 2405 else 2426 2406 { 2427 #ifdef IN_RING32428 2407 /* 2429 2408 * We enter here to change DMA states only. … … 2446 2425 if (!fInRun && !fRun) 2447 2426 hdaStreamInit(pThis, pStream, pStream->u8SD); 2448 #endif /* IN_RING3 */2449 2427 } 2450 2428 … … 2452 2430 hdaProcessInterrupt(pThis); 2453 2431 2454 #ifdef IN_RING32455 2432 rc2 = hdaRegWriteU24(pThis, iReg, u32Value); 2456 2433 AssertRC(rc2); … … 2458 2435 hdaRegWriteSDUnlock(pStream); 2459 2436 return VINF_SUCCESS; /* Always return success to the MMIO handler. */ 2460 #else 2437 #else /* !IN_RING3 */ 2461 2438 return VINF_IOM_R3_MMIO_WRITE; 2462 #endif 2439 #endif /* IN_RING3 */ 2463 2440 } 2464 2441
Note:
See TracChangeset
for help on using the changeset viewer.