VirtualBox

source: vbox/trunk/src/VBox/Devices/Builtins.h@ 25414

Last change on this file since 25414 was 22866, checked in by vboxsync, 15 years ago

#3987: Virtio PCI + Net skeleton.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 3.9 KB
Line 
1/* $Id: Builtins.h 22866 2009-09-09 14:39:46Z vboxsync $ */
2/** @file
3 * Built-in drivers & devices (part 1) header.
4 */
5
6/*
7 * Copyright (C) 2006-2007 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#ifndef ___Builtins_h
23#define ___Builtins_h
24
25#include <VBox/pdm.h>
26
27RT_C_DECLS_BEGIN
28
29/** The default BIOS logo data. */
30extern const unsigned char g_abVgaDefBiosLogo[];
31/** The size of the default BIOS logo data. */
32extern const unsigned g_cbVgaDefBiosLogo;
33#ifdef VBOX_WITH_EFI
34/** The EFI thunk binary. */
35extern const unsigned char g_abEfiThunkBinary[];
36/** The size of the EFI thunk binary. */
37extern const unsigned g_cbEfiThunkBinary;
38#endif
39
40
41extern const PDMDEVREG g_DevicePCI;
42extern const PDMDEVREG g_DevicePcArch;
43extern const PDMDEVREG g_DevicePcBios;
44extern const PDMDEVREG g_DevicePS2KeyboardMouse;
45extern const PDMDEVREG g_DeviceI8254;
46extern const PDMDEVREG g_DeviceI8259;
47#ifdef VBOX_WITH_HPET
48extern const PDMDEVREG g_DeviceHPET;
49#endif
50extern const PDMDEVREG g_DeviceMC146818;
51extern const PDMDEVREG g_DevicePIIX3IDE;
52extern const PDMDEVREG g_DeviceFloppyController;
53extern const PDMDEVREG g_DeviceVga;
54extern const PDMDEVREG g_DeviceVMMDev;
55extern const PDMDEVREG g_DevicePCNet;
56#ifdef VBOX_WITH_E1000
57extern const PDMDEVREG g_DeviceE1000;
58#endif
59#ifdef VBOX_WITH_VIRTIO
60extern const PDMDEVREG g_DeviceVirtioNet;
61#endif
62#ifdef VBOX_WITH_INIP
63extern const PDMDEVREG g_DeviceINIP;
64#endif
65extern const PDMDEVREG g_DeviceICHAC97;
66extern const PDMDEVREG g_DeviceSB16;
67extern const PDMDEVREG g_DeviceAudioSniffer;
68extern const PDMDEVREG g_DeviceOHCI;
69extern const PDMDEVREG g_DeviceEHCI;
70extern const PDMDEVREG g_DeviceACPI;
71extern const PDMDEVREG g_DeviceDMA;
72extern const PDMDEVREG g_DeviceFloppyController;
73extern const PDMDEVREG g_DeviceSerialPort;
74extern const PDMDEVREG g_DeviceParallelPort;
75#ifdef VBOX_WITH_AHCI
76extern const PDMDEVREG g_DeviceAHCI;
77#endif
78#ifdef VBOX_WITH_BUSLOGIC
79extern const PDMDEVREG g_DeviceBusLogic;
80#endif
81extern const PDMDEVREG g_DevicePCIBridge;
82#ifdef VBOX_WITH_LSILOGIC
83extern const PDMDEVREG g_DeviceLsiLogicSCSI;
84#endif
85#ifdef VBOX_WITH_SMC
86extern const PDMDEVREG g_DeviceSMC;
87#endif
88#ifdef VBOX_WITH_LPC
89extern const PDMDEVREG g_DeviceLPC;
90#endif
91#ifdef VBOX_WITH_EFI
92extern const PDMDEVREG g_DeviceEFI;
93#endif
94
95extern const PDMDRVREG g_DrvMouseQueue;
96extern const PDMDRVREG g_DrvKeyboardQueue;
97extern const PDMDRVREG g_DrvBlock;
98extern const PDMDRVREG g_DrvVBoxHDD;
99extern const PDMDRVREG g_DrvVD;
100extern const PDMDRVREG g_DrvHostDVD;
101extern const PDMDRVREG g_DrvHostFloppy;
102extern const PDMDRVREG g_DrvMediaISO;
103extern const PDMDRVREG g_DrvRawImage;
104extern const PDMDRVREG g_DrvISCSI;
105extern const PDMDRVREG g_DrvISCSITransportTcp;
106#if defined(RT_OS_LINUX) || defined(RT_OS_FREEBSD)
107extern const PDMDRVREG g_DrvHostInterface;
108#endif
109extern const PDMDRVREG g_DrvIntNet;
110extern const PDMDRVREG g_DrvNAT;
111extern const PDMDRVREG g_DrvNetSniffer;
112extern const PDMDRVREG g_DrvAUDIO;
113extern const PDMDRVREG g_DrvACPI;
114extern const PDMDRVREG g_DrvVUSBRootHub;
115extern const PDMDRVREG g_DrvChar;
116extern const PDMDRVREG g_DrvNamedPipe;
117extern const PDMDRVREG g_DrvRawFile;
118extern const PDMDRVREG g_DrvHostParallel;
119extern const PDMDRVREG g_DrvHostSerial;
120
121#ifdef VBOX_WITH_USB
122extern const PDMUSBREG g_UsbDevProxy;
123#endif
124
125#ifdef VBOX_WITH_SCSI
126extern const PDMDRVREG g_DrvSCSI;
127#if defined(RT_OS_LINUX)
128extern const PDMDRVREG g_DrvSCSIHost;
129#endif
130#endif
131
132RT_C_DECLS_END
133
134#endif
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use