Changeset 100717 in vbox
- Timestamp:
- Jul 27, 2023 12:18:19 PM (16 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/ConsoleImplConfigArmV8.cpp
r100716 r100717 863 863 case NetworkAdapterType_Virtio: 864 864 { 865 uint32_t GCPhysMmioBase = 0x0a000000 + uInstance * 512;865 uint32_t GCPhysMmioBase = 0x0a000000 + uInstance * GUEST_PAGE_SIZE; 866 866 uint32_t uIrq = 16 + uInstance; 867 867 … … 869 869 InsertConfigInteger(pCfg, "Irq", uIrq); 870 870 871 vrc = RTFdtNodeAddF(hFdt, "virtio_mmio@%RX32", 0x0a000000); VRC();871 vrc = RTFdtNodeAddF(hFdt, "virtio_mmio@%RX32", GCPhysMmioBase); VRC(); 872 872 vrc = RTFdtNodePropertyAddEmpty( hFdt, "dma-coherent"); VRC(); 873 873 vrc = RTFdtNodePropertyAddCellsU32(hFdt, "interrupts", 3, 0x00, uIrq, 0x04); VRC();
Note:
See TracChangeset
for help on using the changeset viewer.