VirtualBox

Changeset 82798 in vbox for trunk/src/VBox/Devices/Serial


Ignore:
Timestamp:
Jan 20, 2020 3:35:50 PM (5 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
135759
Message:

Devices/Serial: Some fixes for unconnected mode where the application inside the guest accessing the serial port could hang

Location:
trunk/src/VBox/Devices/Serial
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/Serial/DrvChar.cpp

    r81585 r82798  
    192192static DECLCALLBACK(int) drvCharQueryStsLines(PPDMISERIALCONNECTOR pInterface, uint32_t *pfStsLines)
    193193{
    194     /* Nothing to do here. */
    195     *pfStsLines = 0;
     194    /* Always carrier detect, data set read and clear to send. */
     195    *pfStsLines = PDMISERIALPORT_STS_LINE_DCD | PDMISERIALPORT_STS_LINE_DSR | PDMISERIALPORT_STS_LINE_CTS;
    196196    RT_NOREF(pInterface);
    197197    return VINF_SUCCESS;
  • trunk/src/VBox/Devices/Serial/UartCore.cpp

    r81897 r82798  
    11221122        }
    11231123        else if (pThisCC->pDrvSerial)
     1124        {
    11241125            pThisCC->pDrvSerial->pfnChgModemLines(pThisCC->pDrvSerial,
    11251126                                                  RT_BOOL(uVal & UART_REG_MCR_RTS),
    11261127                                                  RT_BOOL(uVal & UART_REG_MCR_DTR));
     1128
     1129            uint32_t fStsLines = 0;
     1130            int rc = pThisCC->pDrvSerial->pfnQueryStsLines(pThisCC->pDrvSerial, &fStsLines);
     1131            if (RT_SUCCESS(rc))
     1132                uartR3StsLinesUpdate(pDevIns, pThis, pThisCC, fStsLines);
     1133            else
     1134                LogRelMax(10, ("Serial#%d: Failed to query status line status with %Rrc during reset\n",
     1135                               pDevIns->iInstance, rc));
     1136        }
     1137        else /* Loopback mode got disabled and no driver attached, fake presence. */
     1138            uartR3MsrUpdate(pDevIns, pThis, pThisCC, UART_REG_MSR_DCD | UART_REG_MSR_CTS | UART_REG_MSR_DSR);
    11271139#endif
    11281140    }
     
    15491561            ASMAtomicSubU32(&pThis->cbAvailRdr, 1);
    15501562    }
     1563
    15511564    if (cbRead == 1)
    15521565        PDMDevHlpTimerSetRelative(pDevIns, pThis->hTimerTxUnconnected, pThis->cSymbolXferTicks, NULL);
     1566    else
     1567    {
     1568        /* NO data left, set the transmitter holding register as empty. */
     1569        UART_REG_SET(pThis->uRegLsr, UART_REG_LSR_TEMT);
     1570    }
    15531571
    15541572    PDMDevHlpCritSectLeave(pDevIns, &pThis->CritSect);
     
    18841902    pThis->uRegMcr        = 0;
    18851903    pThis->uRegLsr        = UART_REG_LSR_THRE | UART_REG_LSR_TEMT;
    1886     pThis->uRegMsr        = 0; /* Updated below. */
     1904    pThis->uRegMsr        = UART_REG_MSR_DCD | UART_REG_MSR_CTS | UART_REG_MSR_DSR | UART_REG_MSR_DCTS | UART_REG_MSR_DDSR | UART_REG_MSR_DDCD;
    18871905    pThis->uRegScr        = 0;
    18881906    pThis->fIrqCtiPending = false;
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