Changeset 57901 in vbox for trunk/src/VBox/Devices/VirtIO
- Timestamp:
- Sep 25, 2015 3:29:51 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 102873
- Location:
- trunk/src/VBox/Devices/VirtIO
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/VirtIO/Virtio.cpp
r57809 r57901 769 769 * 770 770 * @param pci Reference to PCI device structure. 771 * @param u SubsystemId PCI SubsystemId771 * @param uDeviceId VirtiO Device Id 772 772 * @param uClass Class of PCI device (network, etc) 773 773 * @thread EMT 774 774 */ 775 775 static DECLCALLBACK(void) vpciConfigure(PCIDEVICE& pci, 776 uint16_t u SubsystemId,776 uint16_t uDeviceId, 777 777 uint16_t uClass) 778 778 { 779 779 /* Configure PCI Device, assume 32-bit mode ******************************/ 780 780 PCIDevSetVendorId(&pci, DEVICE_PCI_VENDOR_ID); 781 PCIDevSetDeviceId(&pci, DEVICE_PCI_ DEVICE_ID);781 PCIDevSetDeviceId(&pci, DEVICE_PCI_BASE_ID + uDeviceId); 782 782 vpciCfgSetU16(pci, VBOX_PCI_SUBSYSTEM_VENDOR_ID, DEVICE_PCI_SUBSYSTEM_VENDOR_ID); 783 vpciCfgSetU16(pci, VBOX_PCI_SUBSYSTEM_ID, uSubsystemId);783 vpciCfgSetU16(pci, VBOX_PCI_SUBSYSTEM_ID, DEVICE_PCI_SUBSYSTEM_BASE_ID + uDeviceId); 784 784 785 785 /* ABI version, must be equal 0 as of 2.6.30 kernel. */ … … 812 812 int vpciConstruct(PPDMDEVINS pDevIns, VPCISTATE *pState, 813 813 int iInstance, const char *pcszNameFmt, 814 uint16_t u SubsystemId, uint16_t uClass,814 uint16_t uDeviceId, uint16_t uClass, 815 815 uint32_t nQueues) 816 816 { … … 832 832 833 833 /* Set PCI config registers */ 834 vpciConfigure(pState->pciDevice, u SubsystemId, uClass);834 vpciConfigure(pState->pciDevice, uDeviceId, uClass); 835 835 /* Register PCI device */ 836 836 rc = PDMDevHlpPCIRegister(pDevIns, &pState->pciDevice); -
trunk/src/VBox/Devices/VirtIO/Virtio.h
r57809 r57901 33 33 34 34 #define DEVICE_PCI_VENDOR_ID 0x1AF4 35 #define DEVICE_PCI_ DEVICE_ID0x100035 #define DEVICE_PCI_BASE_ID 0x1000 36 36 #define DEVICE_PCI_SUBSYSTEM_VENDOR_ID 0x1AF4 37 #define DEVICE_PCI_SUBSYSTEM_BASE_ID 1 37 38 38 39 #define VIRTIO_MAX_NQUEUES 3 … … 260 261 int vpciLoadExec(PVPCISTATE pState, PSSMHANDLE pSSM, uint32_t uVersion, uint32_t uPass, uint32_t nQueues); 261 262 int vpciConstruct(PPDMDEVINS pDevIns, VPCISTATE *pState, int iInstance, const char *pcszNameFmt, 262 uint16_t u SubsystemId, uint16_t uClass, uint32_t nQueues);263 uint16_t uDeviceId, uint16_t uClass, uint32_t nQueues); 263 264 int vpciDestruct(VPCISTATE* pState); 264 265 void vpciRelocate(PPDMDEVINS pDevIns, RTGCINTPTR offDelta);
Note:
See TracChangeset
for help on using the changeset viewer.