Changeset 24822 in vbox for trunk/src/VBox/Devices/EFI
- Timestamp:
- Nov 20, 2009 1:34:44 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 55046
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/EFI/DevEFI.cpp
r24790 r24822 763 763 static int efiLoadThunk(PDEVEFI pThis, PCFGMNODE pCfgHandle) 764 764 { 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 765 773 /* 766 774 * Make a copy of the page and set the values of the DEVEFIINFO structure 767 775 * found at the beginning of it. 768 776 */ 777 778 if (f64BitEntry) 779 LogRel(("Using 64-bit EFI firmware\n")); 769 780 770 781 /* Duplicate the page so we can change it. */ … … 785 796 pEfiInfo->cbBelow4GB = pThis->cbBelow4GB; 786 797 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; 788 800 pEfiInfo->cCpus = pThis->cCpus; 789 801 pEfiInfo->pfnPeiEP = (uint32_t)pThis->GCEntryPoint1; … … 791 803 792 804 /* Register the page as a ROM (data will be copied). */ 793 intrc = PDMDevHlpROMRegister(pThis->pDevIns, UINT32_C(0xfffff000), PAGE_SIZE,794 795 805 rc = PDMDevHlpROMRegister(pThis->pDevIns, UINT32_C(0xfffff000), PAGE_SIZE, 806 pThis->pu8EfiThunk, 807 PGMPHYS_ROM_FLAGS_PERMANENT_BINARY, "EFI Thunk"); 796 808 if (RT_FAILURE(rc)) 797 809 return rc; … … 870 882 "DmiOEMVBoxRev\0" 871 883 #endif 884 "64BitEntry\0" 872 885 )) 873 886 return PDMDEV_SET_ERROR(pDevIns, VERR_PDM_DEVINS_UNKNOWN_CFG_VALUES,
Note:
See TracChangeset
for help on using the changeset viewer.