1 | /* $Id: Builtins.cpp 32471 2010-09-14 10:26:07Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * Built-in drivers & devices (part 1)
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2010 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 |
|
---|
19 | /*******************************************************************************
|
---|
20 | * Header Files *
|
---|
21 | *******************************************************************************/
|
---|
22 | #define LOG_GROUP LOG_GROUP_DEV
|
---|
23 | #include <VBox/pdm.h>
|
---|
24 | #include <VBox/version.h>
|
---|
25 | #include <VBox/err.h>
|
---|
26 | #include <VBox/usb.h>
|
---|
27 |
|
---|
28 | #include <VBox/log.h>
|
---|
29 | #include <iprt/assert.h>
|
---|
30 |
|
---|
31 | #include "Builtins.h"
|
---|
32 |
|
---|
33 |
|
---|
34 | /*******************************************************************************
|
---|
35 | * Global Variables *
|
---|
36 | *******************************************************************************/
|
---|
37 | const void *g_apvVBoxDDDependencies[] =
|
---|
38 | {
|
---|
39 | #ifdef VBOX_WITH_EFI
|
---|
40 | &g_abEfiThunkBinary[0],
|
---|
41 | #endif
|
---|
42 | NULL,
|
---|
43 | };
|
---|
44 |
|
---|
45 |
|
---|
46 | /**
|
---|
47 | * Register builtin devices.
|
---|
48 | *
|
---|
49 | * @returns VBox status code.
|
---|
50 | * @param pCallbacks Pointer to the callback table.
|
---|
51 | * @param u32Version VBox version number.
|
---|
52 | */
|
---|
53 | extern "C" DECLEXPORT(int) VBoxDevicesRegister(PPDMDEVREGCB pCallbacks, uint32_t u32Version)
|
---|
54 | {
|
---|
55 | LogFlow(("VBoxDevicesRegister: u32Version=%#x\n", u32Version));
|
---|
56 | AssertReleaseMsg(u32Version == VBOX_VERSION, ("u32Version=%#x VBOX_VERSION=%#x\n", u32Version, VBOX_VERSION));
|
---|
57 | int rc;
|
---|
58 |
|
---|
59 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DevicePCI);
|
---|
60 | if (RT_FAILURE(rc))
|
---|
61 | return rc;
|
---|
62 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DevicePciIch9);
|
---|
63 | if (RT_FAILURE(rc))
|
---|
64 | return rc;
|
---|
65 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DevicePcArch);
|
---|
66 | if (RT_FAILURE(rc))
|
---|
67 | return rc;
|
---|
68 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DevicePcBios);
|
---|
69 | if (RT_FAILURE(rc))
|
---|
70 | return rc;
|
---|
71 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DevicePS2KeyboardMouse);
|
---|
72 | if (RT_FAILURE(rc))
|
---|
73 | return rc;
|
---|
74 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DevicePIIX3IDE);
|
---|
75 | if (RT_FAILURE(rc))
|
---|
76 | return rc;
|
---|
77 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DeviceI8254);
|
---|
78 | if (RT_FAILURE(rc))
|
---|
79 | return rc;
|
---|
80 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DeviceI8259);
|
---|
81 | if (RT_FAILURE(rc))
|
---|
82 | return rc;
|
---|
83 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DeviceHPET);
|
---|
84 | if (RT_FAILURE(rc))
|
---|
85 | return rc;
|
---|
86 | #ifdef VBOX_WITH_EFI
|
---|
87 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DeviceEFI);
|
---|
88 | if (RT_FAILURE(rc))
|
---|
89 | return rc;
|
---|
90 | #endif
|
---|
91 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DeviceMC146818);
|
---|
92 | if (RT_FAILURE(rc))
|
---|
93 | return rc;
|
---|
94 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DeviceVga);
|
---|
95 | if (RT_FAILURE(rc))
|
---|
96 | return rc;
|
---|
97 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DeviceVMMDev);
|
---|
98 | if (RT_FAILURE(rc))
|
---|
99 | return rc;
|
---|
100 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DevicePCNet);
|
---|
101 | if (RT_FAILURE(rc))
|
---|
102 | return rc;
|
---|
103 | #ifdef VBOX_WITH_E1000
|
---|
104 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DeviceE1000);
|
---|
105 | if (RT_FAILURE(rc))
|
---|
106 | return rc;
|
---|
107 | #endif
|
---|
108 | #ifdef VBOX_WITH_VIRTIO
|
---|
109 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DeviceVirtioNet);
|
---|
110 | if (RT_FAILURE(rc))
|
---|
111 | return rc;
|
---|
112 | #endif
|
---|
113 | #ifdef VBOX_WITH_INIP
|
---|
114 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DeviceINIP);
|
---|
115 | if (RT_FAILURE(rc))
|
---|
116 | return rc;
|
---|
117 | #endif
|
---|
118 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DeviceICHAC97);
|
---|
119 | if (RT_FAILURE(rc))
|
---|
120 | return rc;
|
---|
121 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DeviceSB16);
|
---|
122 | if (RT_FAILURE(rc))
|
---|
123 | return rc;
|
---|
124 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DeviceICH6_HDA);
|
---|
125 | if (RT_FAILURE(rc))
|
---|
126 | return rc;
|
---|
127 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DeviceAudioSniffer);
|
---|
128 | if (RT_FAILURE(rc))
|
---|
129 | return rc;
|
---|
130 | #ifdef VBOX_WITH_VUSB
|
---|
131 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DeviceOHCI);
|
---|
132 | if (RT_FAILURE(rc))
|
---|
133 | return rc;
|
---|
134 | #endif
|
---|
135 | #ifdef VBOX_WITH_EHCI
|
---|
136 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DeviceEHCI);
|
---|
137 | if (RT_FAILURE(rc))
|
---|
138 | return rc;
|
---|
139 | #endif
|
---|
140 | #ifdef VBOX_ACPI
|
---|
141 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DeviceACPI);
|
---|
142 | if (RT_FAILURE(rc))
|
---|
143 | return rc;
|
---|
144 | #endif
|
---|
145 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DeviceDMA);
|
---|
146 | if (RT_FAILURE(rc))
|
---|
147 | return rc;
|
---|
148 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DeviceFloppyController);
|
---|
149 | if (RT_FAILURE(rc))
|
---|
150 | return rc;
|
---|
151 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DeviceSerialPort);
|
---|
152 | if (RT_FAILURE(rc))
|
---|
153 | return rc;
|
---|
154 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DeviceParallelPort);
|
---|
155 | if (RT_FAILURE(rc))
|
---|
156 | return rc;
|
---|
157 | #ifdef VBOX_WITH_AHCI
|
---|
158 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DeviceAHCI);
|
---|
159 | if (RT_FAILURE(rc))
|
---|
160 | return rc;
|
---|
161 | #endif
|
---|
162 | #ifdef VBOX_WITH_BUSLOGIC
|
---|
163 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DeviceBusLogic);
|
---|
164 | if (RT_FAILURE(rc))
|
---|
165 | return rc;
|
---|
166 | #endif
|
---|
167 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DevicePCIBridge);
|
---|
168 | if (RT_FAILURE(rc))
|
---|
169 | return rc;
|
---|
170 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DevicePciIch9Bridge);
|
---|
171 | if (RT_FAILURE(rc))
|
---|
172 | return rc;
|
---|
173 | #ifdef VBOX_WITH_LSILOGIC
|
---|
174 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DeviceLsiLogicSCSI);
|
---|
175 | if (RT_FAILURE(rc))
|
---|
176 | return rc;
|
---|
177 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DeviceLsiLogicSAS);
|
---|
178 | if (RT_FAILURE(rc))
|
---|
179 | return rc;
|
---|
180 | #endif
|
---|
181 |
|
---|
182 | return VINF_SUCCESS;
|
---|
183 | }
|
---|
184 |
|
---|
185 |
|
---|
186 | /**
|
---|
187 | * Register builtin drivers.
|
---|
188 | *
|
---|
189 | * @returns VBox status code.
|
---|
190 | * @param pCallbacks Pointer to the callback table.
|
---|
191 | * @param u32Version VBox version number.
|
---|
192 | */
|
---|
193 | extern "C" DECLEXPORT(int) VBoxDriversRegister(PCPDMDRVREGCB pCallbacks, uint32_t u32Version)
|
---|
194 | {
|
---|
195 | LogFlow(("VBoxDriversRegister: u32Version=%#x\n", u32Version));
|
---|
196 | AssertReleaseMsg(u32Version == VBOX_VERSION, ("u32Version=%#x VBOX_VERSION=%#x\n", u32Version, VBOX_VERSION));
|
---|
197 |
|
---|
198 | int rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvMouseQueue);
|
---|
199 | if (RT_FAILURE(rc))
|
---|
200 | return rc;
|
---|
201 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvKeyboardQueue);
|
---|
202 | if (RT_FAILURE(rc))
|
---|
203 | return rc;
|
---|
204 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvBlock);
|
---|
205 | if (RT_FAILURE(rc))
|
---|
206 | return rc;
|
---|
207 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvVD);
|
---|
208 | if (RT_FAILURE(rc))
|
---|
209 | return rc;
|
---|
210 | #if defined(RT_OS_DARWIN) || defined(RT_OS_LINUX) || defined(RT_OS_SOLARIS) || defined(RT_OS_WINDOWS) || defined(RT_OS_FREEBSD)
|
---|
211 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvHostDVD);
|
---|
212 | if (RT_FAILURE(rc))
|
---|
213 | return rc;
|
---|
214 | #endif
|
---|
215 | #if defined(RT_OS_LINUX) || defined(RT_OS_WINDOWS)
|
---|
216 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvHostFloppy);
|
---|
217 | if (RT_FAILURE(rc))
|
---|
218 | return rc;
|
---|
219 | #endif
|
---|
220 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvMediaISO);
|
---|
221 | if (RT_FAILURE(rc))
|
---|
222 | return rc;
|
---|
223 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvRawImage);
|
---|
224 | if (RT_FAILURE(rc))
|
---|
225 | return rc;
|
---|
226 | #ifndef RT_OS_L4
|
---|
227 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvNAT);
|
---|
228 | if (RT_FAILURE(rc))
|
---|
229 | return rc;
|
---|
230 | #endif
|
---|
231 | #if defined(RT_OS_LINUX) || defined(RT_OS_FREEBSD)
|
---|
232 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvHostInterface);
|
---|
233 | if (RT_FAILURE(rc))
|
---|
234 | return rc;
|
---|
235 | #endif
|
---|
236 | #ifdef VBOX_WITH_VDE
|
---|
237 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvVDE);
|
---|
238 | if (RT_FAILURE(rc))
|
---|
239 | return rc;
|
---|
240 | #endif
|
---|
241 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvIntNet);
|
---|
242 | if (RT_FAILURE(rc))
|
---|
243 | return rc;
|
---|
244 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvDedicatedNic);
|
---|
245 | if (RT_FAILURE(rc))
|
---|
246 | return rc;
|
---|
247 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvNetSniffer);
|
---|
248 | if (RT_FAILURE(rc))
|
---|
249 | return rc;
|
---|
250 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvAUDIO);
|
---|
251 | if (RT_FAILURE(rc))
|
---|
252 | return rc;
|
---|
253 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvACPI);
|
---|
254 | if (RT_FAILURE(rc))
|
---|
255 | return rc;
|
---|
256 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvAcpiCpu);
|
---|
257 | if (RT_FAILURE(rc))
|
---|
258 | return rc;
|
---|
259 |
|
---|
260 | #ifdef VBOX_WITH_VUSB
|
---|
261 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvVUSBRootHub);
|
---|
262 | if (RT_FAILURE(rc))
|
---|
263 | return rc;
|
---|
264 | #endif
|
---|
265 |
|
---|
266 | #if !defined(RT_OS_L4)
|
---|
267 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvNamedPipe);
|
---|
268 | if (RT_FAILURE(rc))
|
---|
269 | return rc;
|
---|
270 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvRawFile);
|
---|
271 | if (RT_FAILURE(rc))
|
---|
272 | return rc;
|
---|
273 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvChar);
|
---|
274 | if (RT_FAILURE(rc))
|
---|
275 | return rc;
|
---|
276 | #endif
|
---|
277 |
|
---|
278 | #if defined(RT_OS_LINUX)
|
---|
279 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvHostParallel);
|
---|
280 | if (RT_FAILURE(rc))
|
---|
281 | return rc;
|
---|
282 | #endif
|
---|
283 |
|
---|
284 | #if defined(RT_OS_DARWIN) || defined(RT_OS_LINUX) || defined(RT_OS_SOLARIS) || defined(RT_OS_WINDOWS) || defined(RT_OS_FREEBSD)
|
---|
285 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvHostSerial);
|
---|
286 | if (RT_FAILURE(rc))
|
---|
287 | return rc;
|
---|
288 | #endif
|
---|
289 |
|
---|
290 | #ifdef VBOX_WITH_SCSI
|
---|
291 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvSCSI);
|
---|
292 | if (RT_FAILURE(rc))
|
---|
293 | return rc;
|
---|
294 |
|
---|
295 | # if defined(RT_OS_LINUX)
|
---|
296 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvSCSIHost);
|
---|
297 | if (RT_FAILURE(rc))
|
---|
298 | return rc;
|
---|
299 | # endif
|
---|
300 |
|
---|
301 | #endif
|
---|
302 |
|
---|
303 | #ifdef VBOX_WITH_DRV_DISK_INTEGRITY
|
---|
304 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvDiskIntegrity);
|
---|
305 | if (RT_FAILURE(rc))
|
---|
306 | return rc;
|
---|
307 | #endif
|
---|
308 |
|
---|
309 | return VINF_SUCCESS;
|
---|
310 | }
|
---|
311 |
|
---|
312 |
|
---|
313 | /**
|
---|
314 | * Register builtin USB device.
|
---|
315 | *
|
---|
316 | * @returns VBox status code.
|
---|
317 | * @param pCallbacks Pointer to the callback table.
|
---|
318 | * @param u32Version VBox version number.
|
---|
319 | */
|
---|
320 | extern "C" DECLEXPORT(int) VBoxUsbRegister(PCPDMUSBREGCB pCallbacks, uint32_t u32Version)
|
---|
321 | {
|
---|
322 | int rc = VINF_SUCCESS;
|
---|
323 |
|
---|
324 | #ifdef VBOX_WITH_USB
|
---|
325 | rc = pCallbacks->pfnRegister(pCallbacks, &g_UsbDevProxy);
|
---|
326 | if (RT_FAILURE(rc))
|
---|
327 | return rc;
|
---|
328 |
|
---|
329 | # ifdef VBOX_WITH_SCSI
|
---|
330 | rc = pCallbacks->pfnRegister(pCallbacks, &g_UsbMsd);
|
---|
331 | if (RT_FAILURE(rc))
|
---|
332 | return rc;
|
---|
333 | # endif
|
---|
334 | #endif
|
---|
335 |
|
---|
336 | #ifdef VBOX_WITH_VUSB
|
---|
337 | rc = pCallbacks->pfnRegister(pCallbacks, &g_UsbHidKbd);
|
---|
338 | if (RT_FAILURE(rc))
|
---|
339 | return rc;
|
---|
340 |
|
---|
341 | rc = pCallbacks->pfnRegister(pCallbacks, &g_UsbHidMou);
|
---|
342 | if (RT_FAILURE(rc))
|
---|
343 | return rc;
|
---|
344 | #endif
|
---|
345 |
|
---|
346 | return rc;
|
---|
347 | }
|
---|
348 |
|
---|