Changeset 65850 in vbox for trunk/src/VBox/Devices/PC/DevPcBios.cpp
- Timestamp:
- Feb 23, 2017 10:16:04 AM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 113619
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/DevPcBios.cpp
r65711 r65850 155 155 /** Boot devices (ordered). */ 156 156 DEVPCBIOSBOOT aenmBootDevice[4]; 157 /** RAM size (in bytes). */158 uint64_t cbRam;159 /** RAM hole size (in bytes). */160 uint32_t cbRamHole;161 157 /** Bochs shutdown index. */ 162 158 uint32_t iShutdown; … … 621 617 LogFlow(("pcbiosInitComplete:\n")); 622 618 619 PVM pVM = PDMDevHlpGetVM(pDevIns); 620 uint64_t const cbRamSize = MMR3PhysGetRamSize(pVM); 621 uint32_t const cbBelow4GB = MMR3PhysGetRamSizeBelow4GB(pVM); 622 uint64_t const cbAbove4GB = MMR3PhysGetRamSizeAbove4GB(pVM); 623 623 624 /* 624 625 * Memory sizes. 625 626 */ 626 627 /* base memory. */ 627 u32 = pThis->cbRam > 640 ? 640 : (uint32_t)pThis->cbRam/ _1K; /* <-- this test is wrong, but it doesn't matter since we never assign less than 1MB */628 pcbiosCmosWrite(pDevIns, 0x15, u32 & 0xff); 629 pcbiosCmosWrite(pDevIns, 0x16, u32 >> 8); 628 u32 = cbRamSize > 640 ? 640 : (uint32_t)cbRamSize / _1K; /* <-- this test is wrong, but it doesn't matter since we never assign less than 1MB */ 629 pcbiosCmosWrite(pDevIns, 0x15, u32 & 0xff); /* 15h - Base Memory in K, Low Byte */ 630 pcbiosCmosWrite(pDevIns, 0x16, u32 >> 8); /* 16h - Base Memory in K, High Byte */ 630 631 631 632 /* Extended memory, up to 65MB */ 632 u32 = pThis->cbRam >= 65 * _1M ? 0xffff : ((uint32_t)pThis->cbRam- _1M) / _1K;633 pcbiosCmosWrite(pDevIns, 0x17, u32 & 0xff); 634 pcbiosCmosWrite(pDevIns, 0x18, u32 >> 8); 635 pcbiosCmosWrite(pDevIns, 0x30, u32 & 0xff); 636 pcbiosCmosWrite(pDevIns, 0x31, u32 >> 8); 633 u32 = cbRamSize >= 65 * _1M ? 0xffff : ((uint32_t)cbRamSize - _1M) / _1K; 634 pcbiosCmosWrite(pDevIns, 0x17, u32 & 0xff); /* 17h - Extended Memory in K, Low Byte */ 635 pcbiosCmosWrite(pDevIns, 0x18, u32 >> 8); /* 18h - Extended Memory in K, High Byte */ 636 pcbiosCmosWrite(pDevIns, 0x30, u32 & 0xff); /* 30h - Extended Memory in K, Low Byte */ 637 pcbiosCmosWrite(pDevIns, 0x31, u32 >> 8); /* 31h - Extended Memory in K, High Byte */ 637 638 638 639 /* Bochs BIOS specific? Anyway, it's the amount of memory above 16MB … … 641 642 be adjusted, we still have to chop it at 0xfffc0000 or it'll conflict 642 643 with the high BIOS mapping.) */ 643 uint64_t const offRamHole = _4G - pThis->cbRamHole; 644 if (pThis->cbRam > 16 * _1M) 645 u32 = (uint32_t)( (RT_MIN(RT_MIN(pThis->cbRam, offRamHole), UINT32_C(0xffe00000)) - 16U * _1M) / _64K ); 644 if (cbRamSize > 16 * _1M) 645 u32 = (RT_MIN(cbBelow4GB, UINT32_C(0xffe00000)) - 16U * _1M) / _64K; 646 646 else 647 647 u32 = 0; … … 652 652 Bochs got these in a different location which we've already used for SATA, 653 653 it also lacks the last two. */ 654 uint64_t c64KBAbove4GB; 655 if (pThis->cbRam <= offRamHole) 656 c64KBAbove4GB = 0; 657 else 658 { 659 c64KBAbove4GB = (pThis->cbRam - offRamHole) / _64K; 660 /* Make sure it doesn't hit the limits of the current BIOS code. */ 661 AssertLogRelMsgReturn((c64KBAbove4GB >> (3 * 8)) < 255, ("%#RX64\n", c64KBAbove4GB), VERR_OUT_OF_RANGE); 662 } 654 uint64_t c64KBAbove4GB = cbAbove4GB / _64K; 655 /* Make sure it doesn't hit the limits of the current BIOS code (RAM limit of ~255TB). */ 656 AssertLogRelMsgReturn((c64KBAbove4GB >> (3 * 8)) < 255, ("%#RX64\n", c64KBAbove4GB), VERR_OUT_OF_RANGE); 663 657 pcbiosCmosWrite(pDevIns, 0x61, c64KBAbove4GB & 0xff); 664 658 pcbiosCmosWrite(pDevIns, 0x62, (c64KBAbove4GB >> 8) & 0xff); … … 1097 1091 "BootDevice2\0" 1098 1092 "BootDevice3\0" 1099 "RamSize\0"1100 "RamHoleSize\0"1101 1093 "HardDiskDevice\0" 1102 1094 "SataHardDiskDevice\0" … … 1163 1155 * Init the data. 1164 1156 */ 1165 rc = CFGMR3QueryU64(pCfg, "RamSize", &pThis->cbRam);1166 if (RT_FAILURE(rc))1167 return PDMDEV_SET_ERROR(pDevIns, rc,1168 N_("Configuration error: Querying \"RamSize\" as integer failed"));1169 1170 rc = CFGMR3QueryU32Def(pCfg, "RamHoleSize", &pThis->cbRamHole, MM_RAM_HOLE_SIZE_DEFAULT);1171 if (RT_FAILURE(rc))1172 return PDMDEV_SET_ERROR(pDevIns, rc,1173 N_("Configuration error: Querying \"RamHoleSize\" as integer failed"));1174 1175 1157 rc = CFGMR3QueryU16Def(pCfg, "NumCPUs", &pThis->cCpus, 1); 1176 1158 if (RT_FAILURE(rc))
Note:
See TracChangeset
for help on using the changeset viewer.