VirtualBox

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

Last change on this file since 16560 was 16559, checked in by vboxsync, 15 years ago

initial EFI code

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 3.8 KB
Line 
1/* $Id: Builtins.h 16559 2009-02-06 17:02:23Z 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
27__BEGIN_DECLS
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
34extern const PDMDEVREG g_DevicePCI;
35extern const PDMDEVREG g_DevicePcArch;
36extern const PDMDEVREG g_DevicePcBios;
37extern const PDMDEVREG g_DevicePS2KeyboardMouse;
38extern const PDMDEVREG g_DeviceI8254;
39extern const PDMDEVREG g_DeviceI8259;
40#ifdef VBOX_WITH_HPET
41extern const PDMDEVREG g_DeviceHPET;
42#endif
43extern const PDMDEVREG g_DeviceMC146818;
44extern const PDMDEVREG g_DevicePIIX3IDE;
45extern const PDMDEVREG g_DeviceFloppyController;
46extern const PDMDEVREG g_DeviceVga;
47extern const PDMDEVREG g_DeviceVMMDev;
48extern const PDMDEVREG g_DevicePCNet;
49#ifdef VBOX_WITH_E1000
50extern const PDMDEVREG g_DeviceE1000;
51#endif
52#ifdef VBOX_WITH_INIP
53extern const PDMDEVREG g_DeviceINIP;
54#endif
55extern const PDMDEVREG g_DeviceICHAC97;
56extern const PDMDEVREG g_DeviceSB16;
57extern const PDMDEVREG g_DeviceAudioSniffer;
58extern const PDMDEVREG g_DeviceOHCI;
59extern const PDMDEVREG g_DeviceEHCI;
60extern const PDMDEVREG g_DeviceACPI;
61extern const PDMDEVREG g_DeviceDMA;
62extern const PDMDEVREG g_DeviceFloppyController;
63extern const PDMDEVREG g_DeviceSerialPort;
64extern const PDMDEVREG g_DeviceParallelPort;
65#ifdef VBOX_WITH_AHCI
66extern const PDMDEVREG g_DeviceAHCI;
67#endif
68#ifdef VBOX_WITH_BUSLOGIC
69extern const PDMDEVREG g_DeviceBusLogic;
70#endif
71extern const PDMDEVREG g_DevicePCIBridge;
72#ifdef VBOX_WITH_LSILOGIC
73extern const PDMDEVREG g_DeviceLsiLogicSCSI;
74#endif
75#ifdef VBOX_WITH_SMC
76extern const PDMDEVREG g_DeviceSMC;
77#endif
78#ifdef VBOX_WITH_LPC
79extern const PDMDEVREG g_DeviceLPC;
80#endif
81#ifdef VBOX_WITH_EFI
82extern const PDMDEVREG g_DeviceEFI;
83#endif
84
85extern const PDMDRVREG g_DrvMouseQueue;
86extern const PDMDRVREG g_DrvKeyboardQueue;
87extern const PDMDRVREG g_DrvBlock;
88extern const PDMDRVREG g_DrvVBoxHDD;
89extern const PDMDRVREG g_DrvVD;
90extern const PDMDRVREG g_DrvHostDVD;
91extern const PDMDRVREG g_DrvHostFloppy;
92extern const PDMDRVREG g_DrvMediaISO;
93extern const PDMDRVREG g_DrvRawImage;
94extern const PDMDRVREG g_DrvISCSI;
95extern const PDMDRVREG g_DrvISCSITransportTcp;
96extern const PDMDRVREG g_DrvHostInterface;
97extern const PDMDRVREG g_DrvIntNet;
98extern const PDMDRVREG g_DrvNAT;
99extern const PDMDRVREG g_DrvNetSniffer;
100extern const PDMDRVREG g_DrvAUDIO;
101extern const PDMDRVREG g_DrvACPI;
102extern const PDMDRVREG g_DrvVUSBRootHub;
103extern const PDMDRVREG g_DrvChar;
104extern const PDMDRVREG g_DrvNamedPipe;
105extern const PDMDRVREG g_DrvHostParallel;
106extern const PDMDRVREG g_DrvHostSerial;
107
108#ifdef VBOX_WITH_USB
109extern const PDMUSBREG g_UsbDevProxy;
110#endif
111
112#ifdef VBOX_WITH_PDM_ASYNC_COMPLETION
113extern const PDMDRVREG g_DrvRawImageAsync;
114extern const PDMDRVREG g_DrvTransportAsync;
115#endif
116
117#ifdef VBOX_WITH_SCSI
118extern const PDMDRVREG g_DrvSCSI;
119#if defined(RT_OS_LINUX)
120extern const PDMDRVREG g_DrvSCSIHost;
121#endif
122#endif
123
124#ifdef VBOX_WITH_FAULT_INJECTION
125extern const PDMDRVREG g_DrvFaultInject;
126#endif
127
128__END_DECLS
129
130#endif
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use