VirtualBox

Ignore:
Timestamp:
Feb 23, 2017 10:16:04 AM (8 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
113619
Message:

Devices/Main: don't set RamSize and RamHole explicitly for DevACPI, DevEFI, DevPcBios and VMMDev but use the MMR3Phys* API for that. This simplifies and unifies the calculation of RAM below 4GB and RAM above 4GB. Also renamed PciPref64Limit to PciPref64LimitGB to show that the limit is in GB.

File:
1 edited

Legend:

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

    r65711 r65850  
    155155    /** Boot devices (ordered). */
    156156    DEVPCBIOSBOOT   aenmBootDevice[4];
    157     /** RAM size (in bytes). */
    158     uint64_t        cbRam;
    159     /** RAM hole size (in bytes). */
    160     uint32_t        cbRamHole;
    161157    /** Bochs shutdown index. */
    162158    uint32_t        iShutdown;
     
    621617    LogFlow(("pcbiosInitComplete:\n"));
    622618
     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
    623624    /*
    624625     * Memory sizes.
    625626     */
    626627    /* 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);                                 /* 15h - Base Memory in K, Low Byte */
    629     pcbiosCmosWrite(pDevIns, 0x16, u32 >> 8);                                   /* 16h - Base Memory in K, High Byte */
     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 */
    630631
    631632    /* Extended memory, up to 65MB */
    632     u32 = pThis->cbRam >= 65 * _1M ? 0xffff : ((uint32_t)pThis->cbRam - _1M) / _1K;
    633     pcbiosCmosWrite(pDevIns, 0x17, u32 & 0xff);                                 /* 17h - Extended Memory in K, Low Byte */
    634     pcbiosCmosWrite(pDevIns, 0x18, u32 >> 8);                                   /* 18h - Extended Memory in K, High Byte */
    635     pcbiosCmosWrite(pDevIns, 0x30, u32 & 0xff);                                 /* 30h - Extended Memory in K, Low Byte */
    636     pcbiosCmosWrite(pDevIns, 0x31, u32 >> 8);                                   /* 31h - Extended Memory in K, High Byte */
     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 */
    637638
    638639    /* Bochs BIOS specific? Anyway, it's the amount of memory above 16MB
     
    641642       be adjusted, we still have to chop it at 0xfffc0000 or it'll conflict
    642643       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;
    646646    else
    647647        u32 = 0;
     
    652652       Bochs got these in a different location which we've already used for SATA,
    653653       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);
    663657    pcbiosCmosWrite(pDevIns, 0x61,  c64KBAbove4GB        & 0xff);
    664658    pcbiosCmosWrite(pDevIns, 0x62, (c64KBAbove4GB >>  8) & 0xff);
     
    10971091                              "BootDevice2\0"
    10981092                              "BootDevice3\0"
    1099                               "RamSize\0"
    1100                               "RamHoleSize\0"
    11011093                              "HardDiskDevice\0"
    11021094                              "SataHardDiskDevice\0"
     
    11631155     * Init the data.
    11641156     */
    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 
    11751157    rc = CFGMR3QueryU16Def(pCfg, "NumCPUs", &pThis->cCpus, 1);
    11761158    if (RT_FAILURE(rc))
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