VirtualBox

Ignore:
Timestamp:
Aug 12, 2016 3:13:42 PM (9 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
110006
Message:

Audio/DevIchHda.cpp: Resolved a @todo.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/Audio/DevIchHda.cpp

    r63362 r63365  
    23392339static int hdaRegWriteSDCTL(PHDASTATE pThis, uint32_t iReg, uint32_t u32Value)
    23402340{
    2341 #if defined(IN_RING3) || defined(LOG_ENABLED) || defined(VBOX_STRICT)
     2341#ifdef IN_RING3
    23422342    bool fRun      = RT_BOOL(u32Value & HDA_REG_FIELD_FLAG_MASK(SDCTL, RUN));
    23432343    bool fInRun    = RT_BOOL(HDA_REG_IND(pThis, iReg) & HDA_REG_FIELD_FLAG_MASK(SDCTL, RUN));
    2344 #endif
     2344
    23452345    bool fReset    = RT_BOOL(u32Value & HDA_REG_FIELD_FLAG_MASK(SDCTL, SRST));
    23462346    bool fInReset  = RT_BOOL(HDA_REG_IND(pThis, iReg) & HDA_REG_FIELD_FLAG_MASK(SDCTL, SRST));
    23472347
    23482348    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. */
    23502350
    23512351    /* Get the stream descriptor. */
     
    23662366    }
    23672367
    2368 
    2369 
    2370 /** @todo r=bird: Andy, the spotty IN_RING3 in the rest of this function makes
    2371  *        little sense.  If you need to request a lock in ring-3, why don't
    2372  *        you need it in ring-0 / RC?  Or, reversely, why can you do the
    2373  *        fInReset handling without locking and resolving pStream in R0+RC
    2374  *        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 to
    2378  *        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_RING3
    23852368    PHDATAG pTag = &pThis->aTags[uTag];
    23862369    AssertPtr(pTag);
     
    23982381    int rc2 = RTSemMutexRequest(pStream->State.hMtx, RT_INDEFINITE_WAIT);
    23992382    AssertRC(rc2);
    2400 #endif /* IN_RING3 */
    24012383
    24022384    LogFunc(("[SD%RU8]: fRun=%RTbool, fInRun=%RTbool, fReset=%RTbool, fInReset=%RTbool, %R[sdctl]\n",
     
    24152397    else if (fReset)
    24162398    {
    2417 #ifdef IN_RING3
    24182399        /* ICH6 datasheet 18.2.33 says that RUN bit should be cleared before initiation of reset. */
    24192400        Assert(!fInRun && !fRun);
     
    24212402        LogFunc(("[SD%RU8]: Guest initiated enter to stream reset\n", pStream->u8SD));
    24222403        hdaStreamReset(pThis, pStream);
    2423 #endif
    24242404    }
    24252405    else
    24262406    {
    2427 #ifdef IN_RING3
    24282407        /*
    24292408         * We enter here to change DMA states only.
     
    24462425        if (!fInRun && !fRun)
    24472426            hdaStreamInit(pThis, pStream, pStream->u8SD);
    2448 #endif /* IN_RING3 */
    24492427    }
    24502428
     
    24522430    hdaProcessInterrupt(pThis);
    24532431
    2454 #ifdef IN_RING3
    24552432    rc2 = hdaRegWriteU24(pThis, iReg, u32Value);
    24562433    AssertRC(rc2);
     
    24582435    hdaRegWriteSDUnlock(pStream);
    24592436    return VINF_SUCCESS; /* Always return success to the MMIO handler. */
    2460 #else
     2437#else  /* !IN_RING3 */
    24612438    return VINF_IOM_R3_MMIO_WRITE;
    2462 #endif
     2439#endif /* IN_RING3 */
    24632440}
    24642441
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette