Changeset 34163 in vbox for trunk/src/VBox/Devices/EFI
- Timestamp:
- Nov 18, 2010 12:16:43 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 67884
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/EFI/DevEFI.cpp
r33540 r34163 801 801 cbQuart, 802 802 pThis->pu8EfiRom, 803 cbQuart, 803 804 PGMPHYS_ROM_FLAGS_SHADOWED | PGMPHYS_ROM_FLAGS_PERMANENT_BINARY, 804 805 "EFI Firmware Volume"); … … 809 810 cbQuart, 810 811 pThis->pu8EfiRom + cbQuart, 812 cbQuart, 811 813 PGMPHYS_ROM_FLAGS_SHADOWED | PGMPHYS_ROM_FLAGS_PERMANENT_BINARY, 812 814 "EFI Firmware Volume (Part 2)"); … … 817 819 cbQuart, 818 820 pThis->pu8EfiRom + cbQuart * 2, 821 cbQuart, 819 822 PGMPHYS_ROM_FLAGS_SHADOWED | PGMPHYS_ROM_FLAGS_PERMANENT_BINARY, 820 823 "EFI Firmware Volume (Part 3)"); … … 825 828 pThis->cbEfiRom - cbQuart * 3, 826 829 pThis->pu8EfiRom + cbQuart * 3, 830 pThis->cbEfiRom - cbQuart * 3, 827 831 PGMPHYS_ROM_FLAGS_SHADOWED | PGMPHYS_ROM_FLAGS_PERMANENT_BINARY, 828 832 "EFI Firmware Volume (Part 4)"); … … 887 891 /* Register the page as a ROM (data will be copied). */ 888 892 rc = PDMDevHlpROMRegister(pThis->pDevIns, UINT32_C(0xfffff000), PAGE_SIZE, 889 pThis->pu8EfiThunk, 893 pThis->pu8EfiThunk, PAGE_SIZE, 890 894 PGMPHYS_ROM_FLAGS_PERMANENT_BINARY, "EFI Thunk"); 891 895 if (RT_FAILURE(rc)) … … 902 906 */ 903 907 rc = PDMDevHlpROMRegister(pThis->pDevIns, 0xff000, PAGE_SIZE, 904 pThis->pu8EfiThunk, 908 pThis->pu8EfiThunk, PAGE_SIZE, 905 909 PGMPHYS_ROM_FLAGS_PERMANENT_BINARY, "EFI Thunk (2)"); 906 910 if (RT_FAILURE(rc)) … … 1205 1209 _4K - VBOX_DMI_TABLE_SIZE, 1206 1210 pThis->cCpus); 1207 rc = PDMDevHlpROMRegister(pDevIns, VBOX_DMI_TABLE_BASE, _4K, pThis->au8DMIPage, 1211 rc = PDMDevHlpROMRegister(pDevIns, VBOX_DMI_TABLE_BASE, _4K, pThis->au8DMIPage, _4K, 1208 1212 PGMPHYS_ROM_FLAGS_PERMANENT_BINARY, "DMI tables"); 1209 1213
Note:
See TracChangeset
for help on using the changeset viewer.