Changeset 81920 in vbox for trunk/src/VBox/Devices/PC/DevPcBios.cpp
- Timestamp:
- Nov 17, 2019 10:03:36 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 134717
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/DevPcBios.cpp
r81918 r81920 210 210 /** Dummy. */ 211 211 PCPDMFWHLPR3 pFwHlpR3; 212 /** Number of soft resets we've logged. */ 213 uint32_t cLoggedSoftResets; 212 214 /** Whether to consult the shutdown status (CMOS[0xf]) for deciding upon soft 213 215 * or hard reset. */ … … 215 217 /** Whether to clear the shutdown status on hard reset. */ 216 218 bool fClearShutdownStatusOnHardReset; 217 /** Number of soft resets we've logged. */218 uint32_t cLoggedSoftResets;219 219 /** Current port number for Bochs shutdown (used by APM). */ 220 220 RTIOPORT ShutdownPort; 221 221 /** True=use new port number for Bochs shutdown (used by APM). */ 222 222 bool fNewShutdownPort; 223 bool afPadding[3+4]; 224 /** The shudown I/O port, either at 0x040f or 0x8900 (old saved state). */ 225 IOMMMIOHANDLE hIoPortShutdown; 223 226 } DEVPCBIOS; 224 227 /** Pointer to the BIOS device state. */ … … 245 248 246 249 /** 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 */ 252 static DECLCALLBACK(VBOXSTRICTRC) 253 pcbiosIOPortDebugRead(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT offPort, uint32_t *pu32, unsigned cb) 254 { 255 RT_NOREF5(pDevIns, pvUser, offPort, pu32, cb); 252 256 return VERR_IOM_IOPORT_UNUSED; 253 257 } … … 255 259 256 260 /** 257 * @callback_method_impl{FNIOMIOPORT OUT, 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 */ 263 static DECLCALLBACK(VBOXSTRICTRC) 264 pcbiosIOPortDebugWrite(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT offPort, uint32_t u32, unsigned cb) 265 { 262 266 PDEVPCBIOS pThis = PDMDEVINS_2_DATA(pDevIns, PDEVPCBIOS); 267 RT_NOREF(pvUser); 268 Assert(offPort < 4); 263 269 264 270 /* … … 266 272 */ 267 273 if ( cb == 1 268 && ( Port == 0x402269 || Port == 0x403))274 && ( offPort == 2 275 || offPort == 3)) 270 276 { 271 277 /* The raw version. */ … … 303 309 } 304 310 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 */ 319 static DECLCALLBACK(VBOXSTRICTRC) 320 pcbiosIOPortShutdownRead(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 */ 330 static DECLCALLBACK(VBOXSTRICTRC) 331 pcbiosIOPortShutdownWrite(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) 309 338 { 310 339 static const unsigned char s_szShutdown[] = "Shutdown"; … … 322 351 else 323 352 pThis->iShutdown = 0; 324 return VINF_SUCCESS; 325 } 326 327 /* not in use. */ 353 } 354 /* else: not in use. */ 355 328 356 return VINF_SUCCESS; 329 357 } … … 338 366 if (pThis->ShutdownPort != 0) 339 367 { 340 int rc = PDMDevHlpI OPortDeregister(pDevIns, pThis->ShutdownPort, 1);368 int rc = PDMDevHlpIoPortUnmap(pDevIns, pThis->hIoPortShutdown); 341 369 AssertRC(rc); 342 370 } 371 343 372 pThis->fNewShutdownPort = fNewShutdownPort; 344 373 if (fNewShutdownPort) … … 346 375 else 347 376 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); 351 378 } 352 379 … … 1348 1375 1349 1376 /* 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); 1356 1387 rc = pcbiosRegisterShutdown(pDevIns, pThis, true /* fNewShutdownPort */); 1357 if (RT_FAILURE(rc)) 1358 return rc; 1388 AssertRCReturn(rc, rc); 1359 1389 1360 1390 /*
Note:
See TracChangeset
for help on using the changeset viewer.