VirtualBox

Ignore:
Timestamp:
Nov 17, 2019 10:03:36 PM (5 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
134717
Message:

DevPcBios: Converted and split up I/O port handlers. bugref:9218

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/PC/DevPcBios.cpp

    r81918 r81920  
    210210    /** Dummy. */
    211211    PCPDMFWHLPR3    pFwHlpR3;
     212    /** Number of soft resets we've logged. */
     213    uint32_t        cLoggedSoftResets;
    212214    /** Whether to consult the shutdown status (CMOS[0xf]) for deciding upon soft
    213215     * or hard reset. */
     
    215217    /** Whether to clear the shutdown status on hard reset. */
    216218    bool            fClearShutdownStatusOnHardReset;
    217     /** Number of soft resets we've logged. */
    218     uint32_t        cLoggedSoftResets;
    219219    /** Current port number for Bochs shutdown (used by APM). */
    220220    RTIOPORT        ShutdownPort;
    221221    /** True=use new port number for Bochs shutdown (used by APM). */
    222222    bool            fNewShutdownPort;
     223    bool            afPadding[3+4];
     224    /** The shudown I/O port, either at 0x040f or 0x8900 (old saved state). */
     225    IOMMMIOHANDLE   hIoPortShutdown;
    223226} DEVPCBIOS;
    224227/** Pointer to the BIOS device state. */
     
    245248
    246249/**
    247  * @callback_method_impl{FNIOMIOPORTIN, Bochs Debug and Shutdown ports.}
    248  */
    249 static DECLCALLBACK(int) pcbiosIOPortRead(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT Port, uint32_t *pu32, unsigned cb)
    250 {
    251     RT_NOREF5(pDevIns, pvUser, Port, pu32, cb);
     250 * @callback_method_impl{FNIOMIOPORTNEWIN, Bochs Debug.}
     251 */
     252static DECLCALLBACK(VBOXSTRICTRC)
     253pcbiosIOPortDebugRead(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT offPort, uint32_t *pu32, unsigned cb)
     254{
     255    RT_NOREF5(pDevIns, pvUser, offPort, pu32, cb);
    252256    return VERR_IOM_IOPORT_UNUSED;
    253257}
     
    255259
    256260/**
    257  * @callback_method_impl{FNIOMIOPORTOUT, Bochs Debug and Shutdown ports.}
    258  */
    259 static DECLCALLBACK(int) pcbiosIOPortWrite(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT Port, uint32_t u32, unsigned cb)
    260 {
    261     RT_NOREF1(pvUser);
     261 * @callback_method_impl{FNIOMIOPORTNEWOUT, Bochs Debug.}
     262 */
     263static DECLCALLBACK(VBOXSTRICTRC)
     264pcbiosIOPortDebugWrite(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT offPort, uint32_t u32, unsigned cb)
     265{
    262266    PDEVPCBIOS pThis = PDMDEVINS_2_DATA(pDevIns, PDEVPCBIOS);
     267    RT_NOREF(pvUser);
     268    Assert(offPort < 4);
    263269
    264270    /*
     
    266272     */
    267273    if (    cb == 1
    268         &&  (   Port == 0x402
    269              || Port == 0x403))
     274        &&  (   offPort == 2
     275             || offPort == 3))
    270276    {
    271277        /* The raw version. */
     
    303309    }
    304310
    305     /*
    306      * Bochs BIOS shutdown request.
    307      */
    308     if (cb == 1 && Port == pThis->ShutdownPort)
     311    /* not in use. */
     312    return VINF_SUCCESS;
     313}
     314
     315
     316/**
     317 * @callback_method_impl{FNIOMIOPORTNEWIN, Bochs Shutdown port.}
     318 */
     319static DECLCALLBACK(VBOXSTRICTRC)
     320pcbiosIOPortShutdownRead(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT offPort, uint32_t *pu32, unsigned cb)
     321{
     322    RT_NOREF5(pDevIns, pvUser, offPort, pu32, cb);
     323    return VERR_IOM_IOPORT_UNUSED;
     324}
     325
     326
     327/**
     328 * @callback_method_impl{FNIOMIOPORTNEWOUT, Bochs Shutdown port.}
     329 */
     330static DECLCALLBACK(VBOXSTRICTRC)
     331pcbiosIOPortShutdownWrite(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT offPort, uint32_t u32, unsigned cb)
     332{
     333    PDEVPCBIOS pThis = PDMDEVINS_2_DATA(pDevIns, PDEVPCBIOS);
     334    RT_NOREF(pvUser, offPort);
     335    Assert(offPort == 0);
     336
     337    if (cb == 1)
    309338    {
    310339        static const unsigned char s_szShutdown[] = "Shutdown";
     
    322351        else
    323352            pThis->iShutdown = 0;
    324         return VINF_SUCCESS;
    325     }
    326 
    327     /* not in use. */
     353    }
     354    /* else: not in use. */
     355
    328356    return VINF_SUCCESS;
    329357}
     
    338366    if (pThis->ShutdownPort != 0)
    339367    {
    340         int rc = PDMDevHlpIOPortDeregister(pDevIns, pThis->ShutdownPort, 1);
     368        int rc = PDMDevHlpIoPortUnmap(pDevIns, pThis->hIoPortShutdown);
    341369        AssertRC(rc);
    342370    }
     371
    343372    pThis->fNewShutdownPort = fNewShutdownPort;
    344373    if (fNewShutdownPort)
     
    346375    else
    347376        pThis->ShutdownPort = VBOX_BIOS_OLD_SHUTDOWN_PORT;
    348     return PDMDevHlpIOPortRegister(pDevIns, pThis->ShutdownPort, 1, NULL,
    349                                    pcbiosIOPortWrite, pcbiosIOPortRead,
    350                                    NULL, NULL, "Bochs PC BIOS - Shutdown");
     377    return PDMDevHlpIoPortMap(pDevIns, pThis->hIoPortShutdown, pThis->ShutdownPort);
    351378}
    352379
     
    13481375
    13491376    /*
    1350      * Register I/O Ports and PC BIOS.
    1351      */
    1352     rc = PDMDevHlpIOPortRegister(pDevIns, 0x400, 4, NULL, pcbiosIOPortWrite, pcbiosIOPortRead,
    1353                                  NULL, NULL, "Bochs PC BIOS - Panic & Debug");
    1354     if (RT_FAILURE(rc))
    1355         return rc;
     1377     * Register the I/O Ports.
     1378     */
     1379    IOMIOPORTHANDLE hIoPorts;
     1380    rc = PDMDevHlpIoPortCreateAndMap(pDevIns, 0x400 /*uPort*/, 4 /*cPorts*/, pcbiosIOPortDebugWrite, pcbiosIOPortDebugRead,
     1381                                     "Bochs PC BIOS - Panic & Debug", NULL, &hIoPorts);
     1382    AssertRCReturn(rc, rc);
     1383
     1384    rc = PDMDevHlpIoPortCreateIsa(pDevIns, 1 /*cPorts*/, pcbiosIOPortShutdownWrite, pcbiosIOPortShutdownRead, NULL /*pvUser*/,
     1385                                  "Bochs PC BIOS - Shutdown", NULL /*paExtDescs*/, &pThis->hIoPortShutdown);
     1386    AssertRCReturn(rc, rc);
    13561387    rc = pcbiosRegisterShutdown(pDevIns, pThis, true /* fNewShutdownPort */);
    1357     if (RT_FAILURE(rc))
    1358         return rc;
     1388    AssertRCReturn(rc, rc);
    13591389
    13601390    /*
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