1 | /* $Id: Builtins.cpp 12646 2008-09-22 13:23:20Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * Built-in drivers & devices (part 1)
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2008 Sun Microsystems, Inc.
|
---|
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 | * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
|
---|
18 | * Clara, CA 95054 USA or visit http://www.sun.com if you need
|
---|
19 | * additional information or have any questions.
|
---|
20 | */
|
---|
21 |
|
---|
22 |
|
---|
23 | /*******************************************************************************
|
---|
24 | * Header Files *
|
---|
25 | *******************************************************************************/
|
---|
26 | #define LOG_GROUP LOG_GROUP_DEV
|
---|
27 | #include <VBox/pdm.h>
|
---|
28 | #include <VBox/version.h>
|
---|
29 | #include <VBox/err.h>
|
---|
30 | #include <VBox/usb.h>
|
---|
31 |
|
---|
32 | #include <VBox/log.h>
|
---|
33 | #include <iprt/assert.h>
|
---|
34 |
|
---|
35 | #include "Builtins.h"
|
---|
36 |
|
---|
37 |
|
---|
38 | /*******************************************************************************
|
---|
39 | * Global Variables *
|
---|
40 | *******************************************************************************/
|
---|
41 | const void *g_apvVBoxDDDependencies[] =
|
---|
42 | {
|
---|
43 | NULL,
|
---|
44 | };
|
---|
45 |
|
---|
46 |
|
---|
47 | /**
|
---|
48 | * Register builtin devices.
|
---|
49 | *
|
---|
50 | * @returns VBox status code.
|
---|
51 | * @param pCallbacks Pointer to the callback table.
|
---|
52 | * @param u32Version VBox version number.
|
---|
53 | */
|
---|
54 | extern "C" DECLEXPORT(int) VBoxDevicesRegister(PPDMDEVREGCB pCallbacks, uint32_t u32Version)
|
---|
55 | {
|
---|
56 | LogFlow(("VBoxDevicesRegister: u32Version=%#x\n", u32Version));
|
---|
57 | AssertReleaseMsg(u32Version == VBOX_VERSION, ("u32Version=%#x VBOX_VERSION=%#x\n", u32Version, VBOX_VERSION));
|
---|
58 | int rc;
|
---|
59 |
|
---|
60 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DevicePCI);
|
---|
61 | if (RT_FAILURE(rc))
|
---|
62 | return rc;
|
---|
63 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DevicePcArch);
|
---|
64 | if (RT_FAILURE(rc))
|
---|
65 | return rc;
|
---|
66 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DevicePcBios);
|
---|
67 | if (RT_FAILURE(rc))
|
---|
68 | return rc;
|
---|
69 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DevicePS2KeyboardMouse);
|
---|
70 | if (RT_FAILURE(rc))
|
---|
71 | return rc;
|
---|
72 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DevicePIIX3IDE);
|
---|
73 | if (RT_FAILURE(rc))
|
---|
74 | return rc;
|
---|
75 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DeviceI8254);
|
---|
76 | if (RT_FAILURE(rc))
|
---|
77 | return rc;
|
---|
78 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DeviceI8259);
|
---|
79 | if (RT_FAILURE(rc))
|
---|
80 | return rc;
|
---|
81 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DeviceMC146818);
|
---|
82 | if (RT_FAILURE(rc))
|
---|
83 | return rc;
|
---|
84 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DeviceVga);
|
---|
85 | if (RT_FAILURE(rc))
|
---|
86 | return rc;
|
---|
87 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DeviceVMMDev);
|
---|
88 | if (RT_FAILURE(rc))
|
---|
89 | return rc;
|
---|
90 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DevicePCNet);
|
---|
91 | if (RT_FAILURE(rc))
|
---|
92 | return rc;
|
---|
93 | #ifdef VBOX_WITH_E1000
|
---|
94 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DeviceE1000);
|
---|
95 | if (RT_FAILURE(rc))
|
---|
96 | return rc;
|
---|
97 | #endif
|
---|
98 | #ifdef VBOX_WITH_INIP
|
---|
99 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DeviceINIP);
|
---|
100 | if (RT_FAILURE(rc))
|
---|
101 | return rc;
|
---|
102 | #endif
|
---|
103 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DeviceICHAC97);
|
---|
104 | if (RT_FAILURE(rc))
|
---|
105 | return rc;
|
---|
106 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DeviceSB16);
|
---|
107 | if (RT_FAILURE(rc))
|
---|
108 | return rc;
|
---|
109 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DeviceAudioSniffer);
|
---|
110 | if (RT_FAILURE(rc))
|
---|
111 | return rc;
|
---|
112 | #ifdef VBOX_WITH_USB
|
---|
113 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DeviceOHCI);
|
---|
114 | if (RT_FAILURE(rc))
|
---|
115 | return rc;
|
---|
116 | #endif
|
---|
117 | #ifdef VBOX_WITH_EHCI
|
---|
118 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DeviceEHCI);
|
---|
119 | if (RT_FAILURE(rc))
|
---|
120 | return rc;
|
---|
121 | #endif
|
---|
122 | #ifdef VBOX_ACPI
|
---|
123 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DeviceACPI);
|
---|
124 | if (RT_FAILURE(rc))
|
---|
125 | return rc;
|
---|
126 | #endif
|
---|
127 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DeviceDMA);
|
---|
128 | if (RT_FAILURE(rc))
|
---|
129 | return rc;
|
---|
130 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DeviceFloppyController);
|
---|
131 | if (RT_FAILURE(rc))
|
---|
132 | return rc;
|
---|
133 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DeviceSerialPort);
|
---|
134 | if (RT_FAILURE(rc))
|
---|
135 | return rc;
|
---|
136 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DeviceParallelPort);
|
---|
137 | if (RT_FAILURE(rc))
|
---|
138 | return rc;
|
---|
139 | #ifdef VBOX_WITH_AHCI
|
---|
140 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DeviceAHCI);
|
---|
141 | if (RT_FAILURE(rc))
|
---|
142 | return rc;
|
---|
143 | #endif
|
---|
144 | #ifdef VBOX_WITH_BUSLOGIC
|
---|
145 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DeviceBusLogic);
|
---|
146 | if (VBOX_FAILURE(rc))
|
---|
147 | return rc;
|
---|
148 | #endif
|
---|
149 |
|
---|
150 | return VINF_SUCCESS;
|
---|
151 | }
|
---|
152 |
|
---|
153 |
|
---|
154 | /**
|
---|
155 | * Register builtin drivers.
|
---|
156 | *
|
---|
157 | * @returns VBox status code.
|
---|
158 | * @param pCallbacks Pointer to the callback table.
|
---|
159 | * @param u32Version VBox version number.
|
---|
160 | */
|
---|
161 | extern "C" DECLEXPORT(int) VBoxDriversRegister(PCPDMDRVREGCB pCallbacks, uint32_t u32Version)
|
---|
162 | {
|
---|
163 | LogFlow(("VBoxDriversRegister: u32Version=%#x\n", u32Version));
|
---|
164 | AssertReleaseMsg(u32Version == VBOX_VERSION, ("u32Version=%#x VBOX_VERSION=%#x\n", u32Version, VBOX_VERSION));
|
---|
165 |
|
---|
166 | int rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvMouseQueue);
|
---|
167 | if (RT_FAILURE(rc))
|
---|
168 | return rc;
|
---|
169 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvKeyboardQueue);
|
---|
170 | if (RT_FAILURE(rc))
|
---|
171 | return rc;
|
---|
172 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvBlock);
|
---|
173 | if (RT_FAILURE(rc))
|
---|
174 | return rc;
|
---|
175 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvVBoxHDD);
|
---|
176 | if (RT_FAILURE(rc))
|
---|
177 | return rc;
|
---|
178 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvVD);
|
---|
179 | if (RT_FAILURE(rc))
|
---|
180 | return rc;
|
---|
181 | #if defined(RT_OS_DARWIN) || defined(RT_OS_LINUX) || defined(RT_OS_SOLARIS) || defined(RT_OS_WINDOWS)
|
---|
182 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvHostDVD);
|
---|
183 | if (RT_FAILURE(rc))
|
---|
184 | return rc;
|
---|
185 | #endif
|
---|
186 | #if defined(RT_OS_LINUX) || defined(RT_OS_WINDOWS)
|
---|
187 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvHostFloppy);
|
---|
188 | if (RT_FAILURE(rc))
|
---|
189 | return rc;
|
---|
190 | #endif
|
---|
191 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvMediaISO);
|
---|
192 | if (RT_FAILURE(rc))
|
---|
193 | return rc;
|
---|
194 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvRawImage);
|
---|
195 | if (RT_FAILURE(rc))
|
---|
196 | return rc;
|
---|
197 | #ifdef VBOX_WITH_ISCSI
|
---|
198 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvISCSI);
|
---|
199 | if (RT_FAILURE(rc))
|
---|
200 | return rc;
|
---|
201 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvISCSITransportTcp);
|
---|
202 | if (RT_FAILURE(rc))
|
---|
203 | return rc;
|
---|
204 | #endif
|
---|
205 | #ifndef RT_OS_L4
|
---|
206 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvNAT);
|
---|
207 | if (RT_FAILURE(rc))
|
---|
208 | return rc;
|
---|
209 | #endif
|
---|
210 | #if defined(RT_OS_L4) || defined(RT_OS_LINUX) || defined(RT_OS_OS2) || (defined(RT_OS_SOLARIS) && !defined(RT_OS_SOLARIS_10)) || defined(RT_OS_WINDOWS)
|
---|
211 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvHostInterface);
|
---|
212 | if (RT_FAILURE(rc))
|
---|
213 | return rc;
|
---|
214 | #endif
|
---|
215 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvIntNet);
|
---|
216 | if (RT_FAILURE(rc))
|
---|
217 | return rc;
|
---|
218 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvNetSniffer);
|
---|
219 | if (RT_FAILURE(rc))
|
---|
220 | return rc;
|
---|
221 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvAUDIO);
|
---|
222 | if (RT_FAILURE(rc))
|
---|
223 | return rc;
|
---|
224 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvACPI);
|
---|
225 | if (RT_FAILURE(rc))
|
---|
226 | return rc;
|
---|
227 |
|
---|
228 | #ifdef VBOX_WITH_USB
|
---|
229 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvVUSBRootHub);
|
---|
230 | if (RT_FAILURE(rc))
|
---|
231 | return rc;
|
---|
232 | #endif
|
---|
233 |
|
---|
234 | #if !defined(RT_OS_L4)
|
---|
235 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvNamedPipe);
|
---|
236 | if (RT_FAILURE(rc))
|
---|
237 | return rc;
|
---|
238 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvChar);
|
---|
239 | if (RT_FAILURE(rc))
|
---|
240 | return rc;
|
---|
241 | #endif
|
---|
242 |
|
---|
243 | #if defined(RT_OS_LINUX)
|
---|
244 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvHostParallel);
|
---|
245 | if (RT_FAILURE(rc))
|
---|
246 | return rc;
|
---|
247 | #endif
|
---|
248 |
|
---|
249 | #if defined(RT_OS_DARWIN) || defined(RT_OS_LINUX) || defined(RT_OS_WINDOWS)
|
---|
250 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvHostSerial);
|
---|
251 | if (RT_FAILURE(rc))
|
---|
252 | return rc;
|
---|
253 | #endif
|
---|
254 |
|
---|
255 | #if defined(VBOX_WITH_PDM_ASYNC_COMPLETION)
|
---|
256 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvRawImageAsync);
|
---|
257 | if (RT_FAILURE(rc))
|
---|
258 | return rc;
|
---|
259 |
|
---|
260 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvTransportAsync);
|
---|
261 | if (RT_FAILURE(rc))
|
---|
262 | return rc;
|
---|
263 | #endif
|
---|
264 | #ifdef VBOX_WITH_SCSI
|
---|
265 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvSCSI);
|
---|
266 | if (VBOX_FAILURE(rc))
|
---|
267 | return rc;
|
---|
268 |
|
---|
269 | #if defined(RT_OS_LINUX)
|
---|
270 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvSCSIHost);
|
---|
271 | if (VBOX_FAILURE(rc))
|
---|
272 | return rc;
|
---|
273 | #endif
|
---|
274 | #endif
|
---|
275 |
|
---|
276 | return VINF_SUCCESS;
|
---|
277 | }
|
---|
278 |
|
---|
279 |
|
---|
280 | #ifdef VBOX_WITH_USB
|
---|
281 | /**
|
---|
282 | * Register builtin USB device.
|
---|
283 | *
|
---|
284 | * @returns VBox status code.
|
---|
285 | * @param pCallbacks Pointer to the callback table.
|
---|
286 | * @param u32Version VBox version number.
|
---|
287 | */
|
---|
288 | extern "C" DECLEXPORT(int) VBoxUsbRegister(PCPDMUSBREGCB pCallbacks, uint32_t u32Version)
|
---|
289 | {
|
---|
290 | int rc = pCallbacks->pfnRegister(pCallbacks, &g_UsbDevProxy);
|
---|
291 | if (RT_FAILURE(rc))
|
---|
292 | return rc;
|
---|
293 |
|
---|
294 | return VINF_SUCCESS;
|
---|
295 | }
|
---|
296 | #endif
|
---|
297 |
|
---|