VirtualBox

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

Last change on this file since 56290 was 53873, checked in by vboxsync, 10 years ago

Main/include: remove some unneeded includes, they created an unnecessary dependency

  • 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 53873 2015-01-20 17:41:23Z vboxsync $ */
2/** @file
3 * VirtualBox Driver Interface to raw PCI device.
4 */
5
6/*
7 * Copyright (C) 2010-2014 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#include "Logging.h"
19#include "PCIRawDevImpl.h"
20#include "PCIDeviceAttachmentImpl.h"
21#include "ConsoleImpl.h"
22
23// generated header for events
24#include "VBoxEvents.h"
25
26/**
27 * PCI raw driver instance data.
28 */
29typedef struct DRVMAINPCIRAWDEV
30{
31 /** Pointer to the real PCI raw object. */
32 PCIRawDev *pPCIRawDev;
33 /** Pointer to the driver instance structure. */
34 PPDMDRVINS pDrvIns;
35 /** Our PCI device connector interface. */
36 PDMIPCIRAWCONNECTOR IConnector;
37
38} DRVMAINPCIRAWDEV, *PDRVMAINPCIRAWDEV;
39
40//
41// constructor / destructor
42//
43PCIRawDev::PCIRawDev(Console *console)
44 : mpDrv(NULL),
45 mParent(console)
46{
47}
48
49PCIRawDev::~PCIRawDev()
50{
51}
52
53/**
54 * @interface_method_impl{PDMIBASE,pfnQueryInterface}
55 */
56DECLCALLBACK(void *) PCIRawDev::drvQueryInterface(PPDMIBASE pInterface, const char *pszIID)
57{
58 PPDMDRVINS pDrvIns = PDMIBASE_2_PDMDRV(pInterface);
59 PDRVMAINPCIRAWDEV pThis = PDMINS_2_DATA(pDrvIns, PDRVMAINPCIRAWDEV);
60
61 PDMIBASE_RETURN_INTERFACE(pszIID, PDMIBASE, &pDrvIns->IBase);
62 PDMIBASE_RETURN_INTERFACE(pszIID, PDMIPCIRAWCONNECTOR, &pThis->IConnector);
63
64 return NULL;
65}
66
67
68/**
69 * @interface_method_impl{PDMIPCIRAWUP,pfnPciDeviceConstructComplete}
70 */
71DECLCALLBACK(int) PCIRawDev::drvDeviceConstructComplete(PPDMIPCIRAWCONNECTOR pInterface, const char *pcszName,
72 uint32_t uHostPCIAddress, uint32_t uGuestPCIAddress,
73 int rc)
74{
75 PDRVMAINPCIRAWDEV pThis = RT_FROM_CPP_MEMBER(pInterface, DRVMAINPCIRAWDEV, IConnector);
76 Console *pConsole = pThis->pPCIRawDev->getParent();
77 const ComPtr<IMachine>& machine = pConsole->i_machine();
78 ComPtr<IVirtualBox> vbox;
79
80 HRESULT hrc = machine->COMGETTER(Parent)(vbox.asOutParam());
81 Assert(SUCCEEDED(hrc));
82
83 ComPtr<IEventSource> es;
84 hrc = vbox->COMGETTER(EventSource)(es.asOutParam());
85 Assert(SUCCEEDED(hrc));
86
87 Bstr bstrId;
88 hrc = machine->COMGETTER(Id)(bstrId.asOutParam());
89 Assert(SUCCEEDED(hrc));
90
91 ComObjPtr<PCIDeviceAttachment> pda;
92 BstrFmt bstrName(pcszName);
93 pda.createObject();
94 pda->init(machine, bstrName, uHostPCIAddress, uGuestPCIAddress, TRUE);
95
96 Bstr msg("");
97 if (RT_FAILURE(rc))
98 msg = BstrFmt("runtime error %Rrc", rc);
99
100 fireHostPCIDevicePlugEvent(es, bstrId.raw(), true /* plugged */, RT_SUCCESS(rc) /* success */, pda, msg.raw());
101
102 return VINF_SUCCESS;
103}
104
105
106/**
107 * @interface_method_impl{PDMDRVREG,pfnReset}
108 */
109DECLCALLBACK(void) PCIRawDev::drvReset(PPDMDRVINS pDrvIns)
110{
111}
112
113
114/**
115 * @interface_method_impl{PDMDRVREG,pfnReset}
116 */
117DECLCALLBACK(void) PCIRawDev::drvDestruct(PPDMDRVINS pDrvIns)
118{
119 PDMDRV_CHECK_VERSIONS_RETURN_VOID(pDrvIns);
120 PDRVMAINPCIRAWDEV pThis = PDMINS_2_DATA(pDrvIns, PDRVMAINPCIRAWDEV);
121
122 if (pThis->pPCIRawDev)
123 pThis->pPCIRawDev->mpDrv = NULL;
124}
125
126
127/**
128 * @interface_method_impl{PDMDRVREG,pfnConstruct}
129 */
130DECLCALLBACK(int) PCIRawDev::drvConstruct(PPDMDRVINS pDrvIns, PCFGMNODE pCfgHandle, uint32_t fFlags)
131{
132 PDMDRV_CHECK_VERSIONS_RETURN(pDrvIns);
133 PDRVMAINPCIRAWDEV pThis = PDMINS_2_DATA(pDrvIns, PDRVMAINPCIRAWDEV);
134
135 /*
136 * Validate configuration.
137 */
138 if (!CFGMR3AreValuesValid(pCfgHandle, "Object\0"))
139 return VERR_PDM_DRVINS_UNKNOWN_CFG_VALUES;
140
141 AssertMsgReturn(PDMDrvHlpNoAttach(pDrvIns) == VERR_PDM_NO_ATTACHED_DRIVER,
142 ("Configuration error: Not possible to attach anything to this driver!\n"),
143 VERR_PDM_DRVINS_NO_ATTACH);
144
145 /*
146 * IBase.
147 */
148 pDrvIns->IBase.pfnQueryInterface = PCIRawDev::drvQueryInterface;
149
150 /*
151 * IConnector.
152 */
153 pThis->IConnector.pfnDeviceConstructComplete = PCIRawDev::drvDeviceConstructComplete;
154
155 /*
156 * Get the object pointer and update the mpDrv member.
157 */
158 void *pv;
159 int rc = CFGMR3QueryPtr(pCfgHandle, "Object", &pv);
160 if (RT_FAILURE(rc))
161 {
162 AssertMsgFailed(("Configuration error: No \"Object\" value! rc=%Rrc\n", rc));
163 return rc;
164 }
165
166 pThis->pPCIRawDev = (PCIRawDev *)pv;
167 pThis->pPCIRawDev->mpDrv = pThis;
168
169 return VINF_SUCCESS;
170}
171
172/**
173 * Main raw PCI driver registration record.
174 */
175const PDMDRVREG PCIRawDev::DrvReg =
176{
177 /* u32Version */
178 PDM_DRVREG_VERSION,
179 /* szName */
180 "MainPciRaw",
181 /* szRCMod */
182 "",
183 /* szR0Mod */
184 "",
185 /* pszDescription */
186 "Main PCI raw driver (Main as in the API).",
187 /* fFlags */
188 PDM_DRVREG_FLAGS_HOST_BITS_DEFAULT,
189 /* fClass. */
190 PDM_DRVREG_CLASS_PCIRAW,
191 /* cMaxInstances */
192 ~0U,
193 /* cbInstance */
194 sizeof(DRVMAINPCIRAWDEV),
195 /* pfnConstruct */
196 PCIRawDev::drvConstruct,
197 /* pfnDestruct */
198 PCIRawDev::drvDestruct,
199 /* pfnRelocate */
200 NULL,
201 /* pfnIOCtl */
202 NULL,
203 /* pfnPowerOn */
204 NULL,
205 /* pfnReset */
206 PCIRawDev::drvReset,
207 /* pfnSuspend */
208 NULL,
209 /* pfnResume */
210 NULL,
211 /* pfnAttach */
212 NULL,
213 /* pfnDetach */
214 NULL,
215 /* pfnPowerOff */
216 NULL,
217 /* pfnSoftReset */
218 NULL,
219 /* u32EndVersion */
220 PDM_DRVREG_VERSION
221};
222
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette