VirtualBox

Changeset 24822 in vbox for trunk/src/VBox/Devices/EFI


Ignore:
Timestamp:
Nov 20, 2009 1:34:44 PM (15 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
55046
Message:

EFI: correct 64-bit entry points

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/EFI/DevEFI.cpp

    r24790 r24822  
    763763static int efiLoadThunk(PDEVEFI pThis, PCFGMNODE pCfgHandle)
    764764{
     765    uint8_t f64BitEntry = 0;
     766    int rc;
     767
     768    rc = CFGMR3QueryU8Def(pCfgHandle, "64BitEntry", &f64BitEntry, 0);
     769    if (RT_FAILURE (rc))
     770        return PDMDEV_SET_ERROR(pThis->pDevIns, rc,
     771                                N_("Configuration error: Failed to read \"64BitEntry\""));
     772
    765773    /*
    766774     * Make a copy of the page and set the values of the DEVEFIINFO structure
    767775     * found at the beginning of it.
    768776     */
     777   
     778    if (f64BitEntry)
     779        LogRel(("Using 64-bit EFI firmware\n"));
    769780
    770781    /* Duplicate the page so we can change it. */
     
    785796    pEfiInfo->cbBelow4GB    = pThis->cbBelow4GB;
    786797    pEfiInfo->cbAbove4GB    = pThis->cbAbove4GB;
    787     pEfiInfo->fFlags        = 0; /* todo 0 bit makes 64-bit fw to boot need some knitting with GUI */
     798    /* zeroth bit controls use of 64-bit entry point in fw */
     799    pEfiInfo->fFlags        = f64BitEntry ? 1 : 0;
    788800    pEfiInfo->cCpus         = pThis->cCpus;
    789801    pEfiInfo->pfnPeiEP      = (uint32_t)pThis->GCEntryPoint1;
     
    791803
    792804    /* Register the page as a ROM (data will be copied). */
    793     int rc = PDMDevHlpROMRegister(pThis->pDevIns, UINT32_C(0xfffff000), PAGE_SIZE,
    794                                   pThis->pu8EfiThunk,
    795                                   PGMPHYS_ROM_FLAGS_PERMANENT_BINARY, "EFI Thunk");
     805    rc = PDMDevHlpROMRegister(pThis->pDevIns, UINT32_C(0xfffff000), PAGE_SIZE,
     806                              pThis->pu8EfiThunk,
     807                              PGMPHYS_ROM_FLAGS_PERMANENT_BINARY, "EFI Thunk");
    796808    if (RT_FAILURE(rc))
    797809        return rc;
     
    870882                              "DmiOEMVBoxRev\0"
    871883#endif
     884                              "64BitEntry\0"
    872885                              ))
    873886        return PDMDEV_SET_ERROR(pDevIns, VERR_PDM_DEVINS_UNKNOWN_CFG_VALUES,
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