1 | /* $Id: Builtins.cpp 13835 2008-11-05 02:34:43Z 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 (RT_FAILURE(rc))
|
---|
147 | return rc;
|
---|
148 | #endif
|
---|
149 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DevicePCIBridge);
|
---|
150 | if (RT_FAILURE(rc))
|
---|
151 | return rc;
|
---|
152 |
|
---|
153 |
|
---|
154 | return VINF_SUCCESS;
|
---|
155 | }
|
---|
156 |
|
---|
157 |
|
---|
158 | /**
|
---|
159 | * Register builtin drivers.
|
---|
160 | *
|
---|
161 | * @returns VBox status code.
|
---|
162 | * @param pCallbacks Pointer to the callback table.
|
---|
163 | * @param u32Version VBox version number.
|
---|
164 | */
|
---|
165 | extern "C" DECLEXPORT(int) VBoxDriversRegister(PCPDMDRVREGCB pCallbacks, uint32_t u32Version)
|
---|
166 | {
|
---|
167 | LogFlow(("VBoxDriversRegister: u32Version=%#x\n", u32Version));
|
---|
168 | AssertReleaseMsg(u32Version == VBOX_VERSION, ("u32Version=%#x VBOX_VERSION=%#x\n", u32Version, VBOX_VERSION));
|
---|
169 |
|
---|
170 | int rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvMouseQueue);
|
---|
171 | if (RT_FAILURE(rc))
|
---|
172 | return rc;
|
---|
173 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvKeyboardQueue);
|
---|
174 | if (RT_FAILURE(rc))
|
---|
175 | return rc;
|
---|
176 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvBlock);
|
---|
177 | if (RT_FAILURE(rc))
|
---|
178 | return rc;
|
---|
179 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvVBoxHDD);
|
---|
180 | if (RT_FAILURE(rc))
|
---|
181 | return rc;
|
---|
182 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvVD);
|
---|
183 | if (RT_FAILURE(rc))
|
---|
184 | return rc;
|
---|
185 | #if defined(RT_OS_DARWIN) || defined(RT_OS_LINUX) || defined(RT_OS_SOLARIS) || defined(RT_OS_WINDOWS)
|
---|
186 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvHostDVD);
|
---|
187 | if (RT_FAILURE(rc))
|
---|
188 | return rc;
|
---|
189 | #endif
|
---|
190 | #if defined(RT_OS_LINUX) || defined(RT_OS_WINDOWS)
|
---|
191 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvHostFloppy);
|
---|
192 | if (RT_FAILURE(rc))
|
---|
193 | return rc;
|
---|
194 | #endif
|
---|
195 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvMediaISO);
|
---|
196 | if (RT_FAILURE(rc))
|
---|
197 | return rc;
|
---|
198 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvRawImage);
|
---|
199 | if (RT_FAILURE(rc))
|
---|
200 | return rc;
|
---|
201 | #ifdef VBOX_WITH_ISCSI
|
---|
202 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvISCSI);
|
---|
203 | if (RT_FAILURE(rc))
|
---|
204 | return rc;
|
---|
205 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvISCSITransportTcp);
|
---|
206 | if (RT_FAILURE(rc))
|
---|
207 | return rc;
|
---|
208 | #endif
|
---|
209 | #ifndef RT_OS_L4
|
---|
210 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvNAT);
|
---|
211 | if (RT_FAILURE(rc))
|
---|
212 | return rc;
|
---|
213 | #endif
|
---|
214 | #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)
|
---|
215 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvHostInterface);
|
---|
216 | if (RT_FAILURE(rc))
|
---|
217 | return rc;
|
---|
218 | #endif
|
---|
219 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvIntNet);
|
---|
220 | if (RT_FAILURE(rc))
|
---|
221 | return rc;
|
---|
222 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvNetSniffer);
|
---|
223 | if (RT_FAILURE(rc))
|
---|
224 | return rc;
|
---|
225 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvAUDIO);
|
---|
226 | if (RT_FAILURE(rc))
|
---|
227 | return rc;
|
---|
228 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvACPI);
|
---|
229 | if (RT_FAILURE(rc))
|
---|
230 | return rc;
|
---|
231 |
|
---|
232 | #ifdef VBOX_WITH_USB
|
---|
233 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvVUSBRootHub);
|
---|
234 | if (RT_FAILURE(rc))
|
---|
235 | return rc;
|
---|
236 | #endif
|
---|
237 |
|
---|
238 | #if !defined(RT_OS_L4)
|
---|
239 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvNamedPipe);
|
---|
240 | if (RT_FAILURE(rc))
|
---|
241 | return rc;
|
---|
242 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvChar);
|
---|
243 | if (RT_FAILURE(rc))
|
---|
244 | return rc;
|
---|
245 | #endif
|
---|
246 |
|
---|
247 | #if defined(RT_OS_LINUX)
|
---|
248 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvHostParallel);
|
---|
249 | if (RT_FAILURE(rc))
|
---|
250 | return rc;
|
---|
251 | #endif
|
---|
252 |
|
---|
253 | #if defined(RT_OS_DARWIN) || defined(RT_OS_LINUX) || defined(RT_OS_WINDOWS)
|
---|
254 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvHostSerial);
|
---|
255 | if (RT_FAILURE(rc))
|
---|
256 | return rc;
|
---|
257 | #endif
|
---|
258 |
|
---|
259 | #if defined(VBOX_WITH_PDM_ASYNC_COMPLETION)
|
---|
260 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvRawImageAsync);
|
---|
261 | if (RT_FAILURE(rc))
|
---|
262 | return rc;
|
---|
263 |
|
---|
264 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvTransportAsync);
|
---|
265 | if (RT_FAILURE(rc))
|
---|
266 | return rc;
|
---|
267 | #endif
|
---|
268 | #ifdef VBOX_WITH_SCSI
|
---|
269 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvSCSI);
|
---|
270 | if (RT_FAILURE(rc))
|
---|
271 | return rc;
|
---|
272 |
|
---|
273 | #if defined(RT_OS_LINUX)
|
---|
274 | rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvSCSIHost);
|
---|
275 | if (RT_FAILURE(rc))
|
---|
276 | return rc;
|
---|
277 | #endif
|
---|
278 | #endif
|
---|
279 |
|
---|
280 | return VINF_SUCCESS;
|
---|
281 | }
|
---|
282 |
|
---|
283 |
|
---|
284 | #ifdef VBOX_WITH_USB
|
---|
285 | /**
|
---|
286 | * Register builtin USB device.
|
---|
287 | *
|
---|
288 | * @returns VBox status code.
|
---|
289 | * @param pCallbacks Pointer to the callback table.
|
---|
290 | * @param u32Version VBox version number.
|
---|
291 | */
|
---|
292 | extern "C" DECLEXPORT(int) VBoxUsbRegister(PCPDMUSBREGCB pCallbacks, uint32_t u32Version)
|
---|
293 | {
|
---|
294 | int rc = pCallbacks->pfnRegister(pCallbacks, &g_UsbDevProxy);
|
---|
295 | if (RT_FAILURE(rc))
|
---|
296 | return rc;
|
---|
297 |
|
---|
298 | return VINF_SUCCESS;
|
---|
299 | }
|
---|
300 | #endif
|
---|
301 |
|
---|