VirtualBox

source: vbox/trunk/src/VBox/Main/src-client/PCIRawDevImpl.cpp@ 73768

Last change on this file since 73768 was 69500, checked in by vboxsync, 7 years ago

*: scm --update-copyright-year

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.6 KB
Line 
1/* $Id: PCIRawDevImpl.cpp 69500 2017-10-28 15:14:05Z vboxsync $ */
2/** @file
3 * VirtualBox Driver Interface to raw PCI device.
4 */
5
6/*
7 * Copyright (C) 2010-2017 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18#define LOG_GROUP LOG_GROUP_DEV_PCI_RAW
19#include "LoggingNew.h"
20
21#include "PCIRawDevImpl.h"
22#include "PCIDeviceAttachmentImpl.h"
23#include "ConsoleImpl.h"
24
25// generated header for events
26#include "VBoxEvents.h"
27
28/**
29 * PCI raw driver instance data.
30 */
31typedef struct DRVMAINPCIRAWDEV
32{
33 /** Pointer to the real PCI raw object. */
34 PCIRawDev *pPCIRawDev;
35 /** Pointer to the driver instance structure. */
36 PPDMDRVINS pDrvIns;
37 /** Our PCI device connector interface. */
38 PDMIPCIRAWCONNECTOR IConnector;
39
40} DRVMAINPCIRAWDEV, *PDRVMAINPCIRAWDEV;
41
42//
43// constructor / destructor
44//
45PCIRawDev::PCIRawDev(Console *console)
46 : mpDrv(NULL),
47 mParent(console)
48{
49}
50
51PCIRawDev::~PCIRawDev()
52{
53}
54
55/**
56 * @interface_method_impl{PDMIBASE,pfnQueryInterface}
57 */
58DECLCALLBACK(void *) PCIRawDev::drvQueryInterface(PPDMIBASE pInterface, const char *pszIID)
59{
60 PPDMDRVINS pDrvIns = PDMIBASE_2_PDMDRV(pInterface);
61 PDRVMAINPCIRAWDEV pThis = PDMINS_2_DATA(pDrvIns, PDRVMAINPCIRAWDEV);
62
63 PDMIBASE_RETURN_INTERFACE(pszIID, PDMIBASE, &pDrvIns->IBase);
64 PDMIBASE_RETURN_INTERFACE(pszIID, PDMIPCIRAWCONNECTOR, &pThis->IConnector);
65
66 return NULL;
67}
68
69
70/**
71 * @interface_method_impl{PDMIPCIRAWCONNECTOR,pfnDeviceConstructComplete}
72 */
73DECLCALLBACK(int) PCIRawDev::drvDeviceConstructComplete(PPDMIPCIRAWCONNECTOR pInterface, const char *pcszName,
74 uint32_t uHostPCIAddress, uint32_t uGuestPCIAddress,
75 int rc)
76{
77 PDRVMAINPCIRAWDEV pThis = RT_FROM_CPP_MEMBER(pInterface, DRVMAINPCIRAWDEV, IConnector);
78 Console *pConsole = pThis->pPCIRawDev->getParent();
79 const ComPtr<IMachine>& machine = pConsole->i_machine();
80 ComPtr<IVirtualBox> vbox;
81
82 HRESULT hrc = machine->COMGETTER(Parent)(vbox.asOutParam());
83 Assert(SUCCEEDED(hrc)); NOREF(hrc);
84
85 ComPtr<IEventSource> es;
86 hrc = vbox->COMGETTER(EventSource)(es.asOutParam());
87 Assert(SUCCEEDED(hrc));
88
89 Bstr bstrId;
90 hrc = machine->COMGETTER(Id)(bstrId.asOutParam());
91 Assert(SUCCEEDED(hrc));
92
93 ComObjPtr<PCIDeviceAttachment> pda;
94 BstrFmt bstrName(pcszName);
95 pda.createObject();
96 pda->init(machine, bstrName, uHostPCIAddress, uGuestPCIAddress, TRUE);
97
98 Bstr msg("");
99 if (RT_FAILURE(rc))
100 msg = BstrFmt("runtime error %Rrc", rc);
101
102 fireHostPCIDevicePlugEvent(es, bstrId.raw(), true /* plugged */, RT_SUCCESS_NP(rc) /* success */, pda, msg.raw());
103
104 return VINF_SUCCESS;
105}
106
107
108/**
109 * @interface_method_impl{PDMDRVREG,pfnReset}
110 */
111DECLCALLBACK(void) PCIRawDev::drvDestruct(PPDMDRVINS pDrvIns)
112{
113 PDMDRV_CHECK_VERSIONS_RETURN_VOID(pDrvIns);
114 PDRVMAINPCIRAWDEV pThis = PDMINS_2_DATA(pDrvIns, PDRVMAINPCIRAWDEV);
115
116 if (pThis->pPCIRawDev)
117 pThis->pPCIRawDev->mpDrv = NULL;
118}
119
120
121/**
122 * @interface_method_impl{PDMDRVREG,pfnConstruct}
123 */
124DECLCALLBACK(int) PCIRawDev::drvConstruct(PPDMDRVINS pDrvIns, PCFGMNODE pCfgHandle, uint32_t fFlags)
125{
126 RT_NOREF(fFlags);
127 PDMDRV_CHECK_VERSIONS_RETURN(pDrvIns);
128 PDRVMAINPCIRAWDEV pThis = PDMINS_2_DATA(pDrvIns, PDRVMAINPCIRAWDEV);
129
130 /*
131 * Validate configuration.
132 */
133 if (!CFGMR3AreValuesValid(pCfgHandle, "Object\0"))
134 return VERR_PDM_DRVINS_UNKNOWN_CFG_VALUES;
135
136 AssertMsgReturn(PDMDrvHlpNoAttach(pDrvIns) == VERR_PDM_NO_ATTACHED_DRIVER,
137 ("Configuration error: Not possible to attach anything to this driver!\n"),
138 VERR_PDM_DRVINS_NO_ATTACH);
139
140 /*
141 * IBase.
142 */
143 pDrvIns->IBase.pfnQueryInterface = PCIRawDev::drvQueryInterface;
144
145 /*
146 * IConnector.
147 */
148 pThis->IConnector.pfnDeviceConstructComplete = PCIRawDev::drvDeviceConstructComplete;
149
150 /*
151 * Get the object pointer and update the mpDrv member.
152 */
153 void *pv;
154 int rc = CFGMR3QueryPtr(pCfgHandle, "Object", &pv);
155 if (RT_FAILURE(rc))
156 {
157 AssertMsgFailed(("Configuration error: No \"Object\" value! rc=%Rrc\n", rc));
158 return rc;
159 }
160
161 pThis->pPCIRawDev = (PCIRawDev *)pv;
162 pThis->pPCIRawDev->mpDrv = pThis;
163
164 return VINF_SUCCESS;
165}
166
167/**
168 * Main raw PCI driver registration record.
169 */
170const PDMDRVREG PCIRawDev::DrvReg =
171{
172 /* u32Version */
173 PDM_DRVREG_VERSION,
174 /* szName */
175 "MainPciRaw",
176 /* szRCMod */
177 "",
178 /* szR0Mod */
179 "",
180 /* pszDescription */
181 "Main PCI raw driver (Main as in the API).",
182 /* fFlags */
183 PDM_DRVREG_FLAGS_HOST_BITS_DEFAULT,
184 /* fClass. */
185 PDM_DRVREG_CLASS_PCIRAW,
186 /* cMaxInstances */
187 ~0U,
188 /* cbInstance */
189 sizeof(DRVMAINPCIRAWDEV),
190 /* pfnConstruct */
191 PCIRawDev::drvConstruct,
192 /* pfnDestruct */
193 PCIRawDev::drvDestruct,
194 /* pfnRelocate */
195 NULL,
196 /* pfnIOCtl */
197 NULL,
198 /* pfnPowerOn */
199 NULL,
200 /* pfnReset */
201 NULL,
202 /* pfnSuspend */
203 NULL,
204 /* pfnResume */
205 NULL,
206 /* pfnAttach */
207 NULL,
208 /* pfnDetach */
209 NULL,
210 /* pfnPowerOff */
211 NULL,
212 /* pfnSoftReset */
213 NULL,
214 /* u32EndVersion */
215 PDM_DRVREG_VERSION
216};
217
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use