1 | /** @file
|
---|
2 | * PDM - Pluggable Device Manager, Devices.
|
---|
3 | */
|
---|
4 |
|
---|
5 | /*
|
---|
6 | * Copyright (C) 2006-2016 Oracle Corporation
|
---|
7 | *
|
---|
8 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
9 | * available from http://www.virtualbox.org. This file is free software;
|
---|
10 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
11 | * General Public License (GPL) as published by the Free Software
|
---|
12 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
13 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
14 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
15 | *
|
---|
16 | * The contents of this file may alternatively be used under the terms
|
---|
17 | * of the Common Development and Distribution License Version 1.0
|
---|
18 | * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
19 | * VirtualBox OSE distribution, in which case the provisions of the
|
---|
20 | * CDDL are applicable instead of those of the GPL.
|
---|
21 | *
|
---|
22 | * You may elect to license modified versions of this file under the
|
---|
23 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
24 | */
|
---|
25 |
|
---|
26 | #ifndef ___VBox_vmm_pdmdev_h
|
---|
27 | #define ___VBox_vmm_pdmdev_h
|
---|
28 |
|
---|
29 | #include <VBox/vmm/pdmqueue.h>
|
---|
30 | #include <VBox/vmm/pdmcritsect.h>
|
---|
31 | #include <VBox/vmm/pdmthread.h>
|
---|
32 | #include <VBox/vmm/pdmifs.h>
|
---|
33 | #include <VBox/vmm/pdmins.h>
|
---|
34 | #include <VBox/vmm/pdmcommon.h>
|
---|
35 | #include <VBox/vmm/iom.h>
|
---|
36 | #include <VBox/vmm/tm.h>
|
---|
37 | #include <VBox/vmm/ssm.h>
|
---|
38 | #include <VBox/vmm/cfgm.h>
|
---|
39 | #include <VBox/vmm/dbgf.h>
|
---|
40 | #include <VBox/err.h>
|
---|
41 | #include <VBox/pci.h>
|
---|
42 | #include <VBox/sup.h>
|
---|
43 | #include <iprt/stdarg.h>
|
---|
44 |
|
---|
45 |
|
---|
46 | RT_C_DECLS_BEGIN
|
---|
47 |
|
---|
48 | /** @defgroup grp_pdm_device The PDM Devices API
|
---|
49 | * @ingroup grp_pdm
|
---|
50 | * @{
|
---|
51 | */
|
---|
52 |
|
---|
53 | /**
|
---|
54 | * Construct a device instance for a VM.
|
---|
55 | *
|
---|
56 | * @returns VBox status.
|
---|
57 | * @param pDevIns The device instance data. If the registration structure
|
---|
58 | * is needed, it can be accessed thru pDevIns->pReg.
|
---|
59 | * @param iInstance Instance number. Use this to figure out which registers
|
---|
60 | * and such to use. The instance number is also found in
|
---|
61 | * pDevIns->iInstance, but since it's likely to be
|
---|
62 | * frequently used PDM passes it as parameter.
|
---|
63 | * @param pCfg Configuration node handle for the driver. This is
|
---|
64 | * expected to be in high demand in the constructor and is
|
---|
65 | * therefore passed as an argument. When using it at other
|
---|
66 | * times, it can be found in pDevIns->pCfg.
|
---|
67 | */
|
---|
68 | typedef DECLCALLBACK(int) FNPDMDEVCONSTRUCT(PPDMDEVINS pDevIns, int iInstance, PCFGMNODE pCfg);
|
---|
69 | /** Pointer to a FNPDMDEVCONSTRUCT() function. */
|
---|
70 | typedef FNPDMDEVCONSTRUCT *PFNPDMDEVCONSTRUCT;
|
---|
71 |
|
---|
72 | /**
|
---|
73 | * Destruct a device instance.
|
---|
74 | *
|
---|
75 | * Most VM resources are freed by the VM. This callback is provided so that any non-VM
|
---|
76 | * resources can be freed correctly.
|
---|
77 | *
|
---|
78 | * @returns VBox status.
|
---|
79 | * @param pDevIns The device instance data.
|
---|
80 | *
|
---|
81 | * @remarks The device critical section is not entered. The routine may delete
|
---|
82 | * the critical section, so the caller cannot exit it.
|
---|
83 | */
|
---|
84 | typedef DECLCALLBACK(int) FNPDMDEVDESTRUCT(PPDMDEVINS pDevIns);
|
---|
85 | /** Pointer to a FNPDMDEVDESTRUCT() function. */
|
---|
86 | typedef FNPDMDEVDESTRUCT *PFNPDMDEVDESTRUCT;
|
---|
87 |
|
---|
88 | /**
|
---|
89 | * Device relocation callback.
|
---|
90 | *
|
---|
91 | * This is called when the instance data has been relocated in raw-mode context
|
---|
92 | * (RC). It is also called when the RC hypervisor selects changes. The device
|
---|
93 | * must fixup all necessary pointers and re-query all interfaces to other RC
|
---|
94 | * devices and drivers.
|
---|
95 | *
|
---|
96 | * Before the RC code is executed the first time, this function will be called
|
---|
97 | * with a 0 delta so RC pointer calculations can be one in one place.
|
---|
98 | *
|
---|
99 | * @param pDevIns Pointer to the device instance.
|
---|
100 | * @param offDelta The relocation delta relative to the old location.
|
---|
101 | *
|
---|
102 | * @remarks A relocation CANNOT fail.
|
---|
103 | *
|
---|
104 | * @remarks The device critical section is not entered. The relocations should
|
---|
105 | * not normally require any locking.
|
---|
106 | */
|
---|
107 | typedef DECLCALLBACK(void) FNPDMDEVRELOCATE(PPDMDEVINS pDevIns, RTGCINTPTR offDelta);
|
---|
108 | /** Pointer to a FNPDMDEVRELOCATE() function. */
|
---|
109 | typedef FNPDMDEVRELOCATE *PFNPDMDEVRELOCATE;
|
---|
110 |
|
---|
111 | /**
|
---|
112 | * Power On notification.
|
---|
113 | *
|
---|
114 | * @returns VBox status.
|
---|
115 | * @param pDevIns The device instance data.
|
---|
116 | *
|
---|
117 | * @remarks Caller enters the device critical section.
|
---|
118 | */
|
---|
119 | typedef DECLCALLBACK(void) FNPDMDEVPOWERON(PPDMDEVINS pDevIns);
|
---|
120 | /** Pointer to a FNPDMDEVPOWERON() function. */
|
---|
121 | typedef FNPDMDEVPOWERON *PFNPDMDEVPOWERON;
|
---|
122 |
|
---|
123 | /**
|
---|
124 | * Reset notification.
|
---|
125 | *
|
---|
126 | * @returns VBox status.
|
---|
127 | * @param pDevIns The device instance data.
|
---|
128 | *
|
---|
129 | * @remarks Caller enters the device critical section.
|
---|
130 | */
|
---|
131 | typedef DECLCALLBACK(void) FNPDMDEVRESET(PPDMDEVINS pDevIns);
|
---|
132 | /** Pointer to a FNPDMDEVRESET() function. */
|
---|
133 | typedef FNPDMDEVRESET *PFNPDMDEVRESET;
|
---|
134 |
|
---|
135 | /**
|
---|
136 | * Soft reset notification.
|
---|
137 | *
|
---|
138 | * This is mainly for emulating the 286 style protected mode exits, in which
|
---|
139 | * most devices should remain in their current state.
|
---|
140 | *
|
---|
141 | * @returns VBox status.
|
---|
142 | * @param pDevIns The device instance data.
|
---|
143 | * @param fFlags PDMVMRESET_F_XXX (only bits relevant to soft resets).
|
---|
144 | *
|
---|
145 | * @remarks Caller enters the device critical section.
|
---|
146 | */
|
---|
147 | typedef DECLCALLBACK(void) FNPDMDEVSOFTRESET(PPDMDEVINS pDevIns, uint32_t fFlags);
|
---|
148 | /** Pointer to a FNPDMDEVSOFTRESET() function. */
|
---|
149 | typedef FNPDMDEVSOFTRESET *PFNPDMDEVSOFTRESET;
|
---|
150 |
|
---|
151 | /** @name PDMVMRESET_F_XXX - VM reset flags.
|
---|
152 | * These flags are used both for FNPDMDEVSOFTRESET and for hardware signalling
|
---|
153 | * reset via PDMDevHlpVMReset.
|
---|
154 | * @{ */
|
---|
155 | /** Unknown reason. */
|
---|
156 | #define PDMVMRESET_F_UNKNOWN UINT32_C(0x00000000)
|
---|
157 | /** GIM triggered reset. */
|
---|
158 | #define PDMVMRESET_F_GIM UINT32_C(0x00000001)
|
---|
159 | /** The last source always causing hard resets. */
|
---|
160 | #define PDMVMRESET_F_LAST_ALWAYS_HARD PDMVMRESET_F_GIM
|
---|
161 | /** ACPI triggered reset. */
|
---|
162 | #define PDMVMRESET_F_ACPI UINT32_C(0x0000000c)
|
---|
163 | /** PS/2 system port A (92h) reset. */
|
---|
164 | #define PDMVMRESET_F_PORT_A UINT32_C(0x0000000d)
|
---|
165 | /** Keyboard reset. */
|
---|
166 | #define PDMVMRESET_F_KBD UINT32_C(0x0000000e)
|
---|
167 | /** Tripple fault. */
|
---|
168 | #define PDMVMRESET_F_TRIPLE_FAULT UINT32_C(0x0000000f)
|
---|
169 | /** Reset source mask. */
|
---|
170 | #define PDMVMRESET_F_SRC_MASK UINT32_C(0x0000000f)
|
---|
171 | /** @} */
|
---|
172 |
|
---|
173 | /**
|
---|
174 | * Suspend notification.
|
---|
175 | *
|
---|
176 | * @returns VBox status.
|
---|
177 | * @param pDevIns The device instance data.
|
---|
178 | * @thread EMT(0)
|
---|
179 | *
|
---|
180 | * @remarks Caller enters the device critical section.
|
---|
181 | */
|
---|
182 | typedef DECLCALLBACK(void) FNPDMDEVSUSPEND(PPDMDEVINS pDevIns);
|
---|
183 | /** Pointer to a FNPDMDEVSUSPEND() function. */
|
---|
184 | typedef FNPDMDEVSUSPEND *PFNPDMDEVSUSPEND;
|
---|
185 |
|
---|
186 | /**
|
---|
187 | * Resume notification.
|
---|
188 | *
|
---|
189 | * @returns VBox status.
|
---|
190 | * @param pDevIns The device instance data.
|
---|
191 | *
|
---|
192 | * @remarks Caller enters the device critical section.
|
---|
193 | */
|
---|
194 | typedef DECLCALLBACK(void) FNPDMDEVRESUME(PPDMDEVINS pDevIns);
|
---|
195 | /** Pointer to a FNPDMDEVRESUME() function. */
|
---|
196 | typedef FNPDMDEVRESUME *PFNPDMDEVRESUME;
|
---|
197 |
|
---|
198 | /**
|
---|
199 | * Power Off notification.
|
---|
200 | *
|
---|
201 | * This is always called when VMR3PowerOff is called.
|
---|
202 | * There will be no callback when hot plugging devices.
|
---|
203 | *
|
---|
204 | * @param pDevIns The device instance data.
|
---|
205 | * @thread EMT(0)
|
---|
206 | *
|
---|
207 | * @remarks Caller enters the device critical section.
|
---|
208 | */
|
---|
209 | typedef DECLCALLBACK(void) FNPDMDEVPOWEROFF(PPDMDEVINS pDevIns);
|
---|
210 | /** Pointer to a FNPDMDEVPOWEROFF() function. */
|
---|
211 | typedef FNPDMDEVPOWEROFF *PFNPDMDEVPOWEROFF;
|
---|
212 |
|
---|
213 | /**
|
---|
214 | * Attach command.
|
---|
215 | *
|
---|
216 | * This is called to let the device attach to a driver for a specified LUN
|
---|
217 | * at runtime. This is not called during VM construction, the device
|
---|
218 | * constructor has to attach to all the available drivers.
|
---|
219 | *
|
---|
220 | * This is like plugging in the keyboard or mouse after turning on the PC.
|
---|
221 | *
|
---|
222 | * @returns VBox status code.
|
---|
223 | * @param pDevIns The device instance.
|
---|
224 | * @param iLUN The logical unit which is being attached.
|
---|
225 | * @param fFlags Flags, combination of the PDM_TACH_FLAGS_* \#defines.
|
---|
226 | *
|
---|
227 | * @remarks Caller enters the device critical section.
|
---|
228 | */
|
---|
229 | typedef DECLCALLBACK(int) FNPDMDEVATTACH(PPDMDEVINS pDevIns, unsigned iLUN, uint32_t fFlags);
|
---|
230 | /** Pointer to a FNPDMDEVATTACH() function. */
|
---|
231 | typedef FNPDMDEVATTACH *PFNPDMDEVATTACH;
|
---|
232 |
|
---|
233 | /**
|
---|
234 | * Detach notification.
|
---|
235 | *
|
---|
236 | * This is called when a driver is detaching itself from a LUN of the device.
|
---|
237 | * The device should adjust its state to reflect this.
|
---|
238 | *
|
---|
239 | * This is like unplugging the network cable to use it for the laptop or
|
---|
240 | * something while the PC is still running.
|
---|
241 | *
|
---|
242 | * @param pDevIns The device instance.
|
---|
243 | * @param iLUN The logical unit which is being detached.
|
---|
244 | * @param fFlags Flags, combination of the PDMDEVATT_FLAGS_* \#defines.
|
---|
245 | *
|
---|
246 | * @remarks Caller enters the device critical section.
|
---|
247 | */
|
---|
248 | typedef DECLCALLBACK(void) FNPDMDEVDETACH(PPDMDEVINS pDevIns, unsigned iLUN, uint32_t fFlags);
|
---|
249 | /** Pointer to a FNPDMDEVDETACH() function. */
|
---|
250 | typedef FNPDMDEVDETACH *PFNPDMDEVDETACH;
|
---|
251 |
|
---|
252 | /**
|
---|
253 | * Query the base interface of a logical unit.
|
---|
254 | *
|
---|
255 | * @returns VBOX status code.
|
---|
256 | * @param pDevIns The device instance.
|
---|
257 | * @param iLUN The logicial unit to query.
|
---|
258 | * @param ppBase Where to store the pointer to the base interface of the LUN.
|
---|
259 | *
|
---|
260 | * @remarks The device critical section is not entered.
|
---|
261 | */
|
---|
262 | typedef DECLCALLBACK(int) FNPDMDEVQUERYINTERFACE(PPDMDEVINS pDevIns, unsigned iLUN, PPDMIBASE *ppBase);
|
---|
263 | /** Pointer to a FNPDMDEVQUERYINTERFACE() function. */
|
---|
264 | typedef FNPDMDEVQUERYINTERFACE *PFNPDMDEVQUERYINTERFACE;
|
---|
265 |
|
---|
266 | /**
|
---|
267 | * Init complete notification (after ring-0 & RC init since 5.1).
|
---|
268 | *
|
---|
269 | * This can be done to do communication with other devices and other
|
---|
270 | * initialization which requires everything to be in place.
|
---|
271 | *
|
---|
272 | * @returns VBOX status code.
|
---|
273 | * @param pDevIns The device instance.
|
---|
274 | *
|
---|
275 | * @remarks Caller enters the device critical section.
|
---|
276 | */
|
---|
277 | typedef DECLCALLBACK(int) FNPDMDEVINITCOMPLETE(PPDMDEVINS pDevIns);
|
---|
278 | /** Pointer to a FNPDMDEVINITCOMPLETE() function. */
|
---|
279 | typedef FNPDMDEVINITCOMPLETE *PFNPDMDEVINITCOMPLETE;
|
---|
280 |
|
---|
281 |
|
---|
282 | /**
|
---|
283 | * The context of a pfnMemSetup call.
|
---|
284 | */
|
---|
285 | typedef enum PDMDEVMEMSETUPCTX
|
---|
286 | {
|
---|
287 | /** Invalid zero value. */
|
---|
288 | PDMDEVMEMSETUPCTX_INVALID = 0,
|
---|
289 | /** After construction. */
|
---|
290 | PDMDEVMEMSETUPCTX_AFTER_CONSTRUCTION,
|
---|
291 | /** After reset. */
|
---|
292 | PDMDEVMEMSETUPCTX_AFTER_RESET,
|
---|
293 | /** Type size hack. */
|
---|
294 | PDMDEVMEMSETUPCTX_32BIT_HACK = 0x7fffffff
|
---|
295 | } PDMDEVMEMSETUPCTX;
|
---|
296 |
|
---|
297 |
|
---|
298 | /**
|
---|
299 | * PDM Device Registration Structure.
|
---|
300 | *
|
---|
301 | * This structure is used when registering a device from VBoxInitDevices() in HC
|
---|
302 | * Ring-3. PDM will continue use till the VM is terminated.
|
---|
303 | */
|
---|
304 | typedef struct PDMDEVREG
|
---|
305 | {
|
---|
306 | /** Structure version. PDM_DEVREG_VERSION defines the current version. */
|
---|
307 | uint32_t u32Version;
|
---|
308 | /** Device name. */
|
---|
309 | char szName[32];
|
---|
310 | /** Name of the raw-mode context module (no path).
|
---|
311 | * Only evalutated if PDM_DEVREG_FLAGS_RC is set. */
|
---|
312 | char szRCMod[32];
|
---|
313 | /** Name of the ring-0 module (no path).
|
---|
314 | * Only evalutated if PDM_DEVREG_FLAGS_R0 is set. */
|
---|
315 | char szR0Mod[32];
|
---|
316 | /** The description of the device. The UTF-8 string pointed to shall, like this structure,
|
---|
317 | * remain unchanged from registration till VM destruction. */
|
---|
318 | const char *pszDescription;
|
---|
319 |
|
---|
320 | /** Flags, combination of the PDM_DEVREG_FLAGS_* \#defines. */
|
---|
321 | uint32_t fFlags;
|
---|
322 | /** Device class(es), combination of the PDM_DEVREG_CLASS_* \#defines. */
|
---|
323 | uint32_t fClass;
|
---|
324 | /** Maximum number of instances (per VM). */
|
---|
325 | uint32_t cMaxInstances;
|
---|
326 | /** Size of the instance data. */
|
---|
327 | uint32_t cbInstance;
|
---|
328 |
|
---|
329 | /** Construct instance - required. */
|
---|
330 | PFNPDMDEVCONSTRUCT pfnConstruct;
|
---|
331 | /** Destruct instance - optional.
|
---|
332 | * Critical section NOT entered (will be destroyed). */
|
---|
333 | PFNPDMDEVDESTRUCT pfnDestruct;
|
---|
334 | /** Relocation command - optional.
|
---|
335 | * Critical section NOT entered. */
|
---|
336 | PFNPDMDEVRELOCATE pfnRelocate;
|
---|
337 |
|
---|
338 | /**
|
---|
339 | * Memory setup callback.
|
---|
340 | *
|
---|
341 | * @param pDevIns The device instance data.
|
---|
342 | * @param enmCtx Indicates the context of the call.
|
---|
343 | * @remarks The critical section is entered prior to calling this method.
|
---|
344 | */
|
---|
345 | DECLR3CALLBACKMEMBER(void, pfnMemSetup, (PPDMDEVINS pDevIns, PDMDEVMEMSETUPCTX enmCtx));
|
---|
346 |
|
---|
347 | /** Power on notification - optional.
|
---|
348 | * Critical section is entered. */
|
---|
349 | PFNPDMDEVPOWERON pfnPowerOn;
|
---|
350 | /** Reset notification - optional.
|
---|
351 | * Critical section is entered. */
|
---|
352 | PFNPDMDEVRESET pfnReset;
|
---|
353 | /** Suspend notification - optional.
|
---|
354 | * Critical section is entered. */
|
---|
355 | PFNPDMDEVSUSPEND pfnSuspend;
|
---|
356 | /** Resume notification - optional.
|
---|
357 | * Critical section is entered. */
|
---|
358 | PFNPDMDEVRESUME pfnResume;
|
---|
359 | /** Attach command - optional.
|
---|
360 | * Critical section is entered. */
|
---|
361 | PFNPDMDEVATTACH pfnAttach;
|
---|
362 | /** Detach notification - optional.
|
---|
363 | * Critical section is entered. */
|
---|
364 | PFNPDMDEVDETACH pfnDetach;
|
---|
365 | /** Query a LUN base interface - optional.
|
---|
366 | * Critical section is NOT entered. */
|
---|
367 | PFNPDMDEVQUERYINTERFACE pfnQueryInterface;
|
---|
368 | /** Init complete notification - optional.
|
---|
369 | * Critical section is entered. */
|
---|
370 | PFNPDMDEVINITCOMPLETE pfnInitComplete;
|
---|
371 | /** Power off notification - optional.
|
---|
372 | * Critical section is entered. */
|
---|
373 | PFNPDMDEVPOWEROFF pfnPowerOff;
|
---|
374 | /** Software system reset notification - optional.
|
---|
375 | * Critical section is entered. */
|
---|
376 | PFNPDMDEVSOFTRESET pfnSoftReset;
|
---|
377 | /** Initialization safty marker. */
|
---|
378 | uint32_t u32VersionEnd;
|
---|
379 | } PDMDEVREG;
|
---|
380 | /** Pointer to a PDM Device Structure. */
|
---|
381 | typedef PDMDEVREG *PPDMDEVREG;
|
---|
382 | /** Const pointer to a PDM Device Structure. */
|
---|
383 | typedef PDMDEVREG const *PCPDMDEVREG;
|
---|
384 |
|
---|
385 | /** Current DEVREG version number. */
|
---|
386 | #define PDM_DEVREG_VERSION PDM_VERSION_MAKE(0xffff, 2, 1)
|
---|
387 |
|
---|
388 | /** PDM Device Flags.
|
---|
389 | * @{ */
|
---|
390 | /** This flag is used to indicate that the device has a RC component. */
|
---|
391 | #define PDM_DEVREG_FLAGS_RC 0x00000001
|
---|
392 | /** This flag is used to indicate that the device has a R0 component. */
|
---|
393 | #define PDM_DEVREG_FLAGS_R0 0x00000002
|
---|
394 |
|
---|
395 | /** @def PDM_DEVREG_FLAGS_HOST_BITS_DEFAULT
|
---|
396 | * The bit count for the current host. */
|
---|
397 | #if HC_ARCH_BITS == 32
|
---|
398 | # define PDM_DEVREG_FLAGS_HOST_BITS_DEFAULT 0x00000010
|
---|
399 | #elif HC_ARCH_BITS == 64
|
---|
400 | # define PDM_DEVREG_FLAGS_HOST_BITS_DEFAULT 0x00000020
|
---|
401 | #else
|
---|
402 | # error Unsupported HC_ARCH_BITS value.
|
---|
403 | #endif
|
---|
404 | /** The host bit count mask. */
|
---|
405 | #define PDM_DEVREG_FLAGS_HOST_BITS_MASK 0x00000030
|
---|
406 |
|
---|
407 | /** The device support only 32-bit guests. */
|
---|
408 | #define PDM_DEVREG_FLAGS_GUEST_BITS_32 0x00000100
|
---|
409 | /** The device support only 64-bit guests. */
|
---|
410 | #define PDM_DEVREG_FLAGS_GUEST_BITS_64 0x00000200
|
---|
411 | /** The device support both 32-bit & 64-bit guests. */
|
---|
412 | #define PDM_DEVREG_FLAGS_GUEST_BITS_32_64 0x00000300
|
---|
413 | /** @def PDM_DEVREG_FLAGS_GUEST_BITS_DEFAULT
|
---|
414 | * The guest bit count for the current compilation. */
|
---|
415 | #if GC_ARCH_BITS == 32
|
---|
416 | # define PDM_DEVREG_FLAGS_GUEST_BITS_DEFAULT PDM_DEVREG_FLAGS_GUEST_BITS_32
|
---|
417 | #elif GC_ARCH_BITS == 64
|
---|
418 | # define PDM_DEVREG_FLAGS_GUEST_BITS_DEFAULT PDM_DEVREG_FLAGS_GUEST_BITS_32_64
|
---|
419 | #else
|
---|
420 | # error Unsupported GC_ARCH_BITS value.
|
---|
421 | #endif
|
---|
422 | /** The guest bit count mask. */
|
---|
423 | #define PDM_DEVREG_FLAGS_GUEST_BITS_MASK 0x00000300
|
---|
424 |
|
---|
425 | /** A convenience. */
|
---|
426 | #define PDM_DEVREG_FLAGS_DEFAULT_BITS (PDM_DEVREG_FLAGS_GUEST_BITS_DEFAULT | PDM_DEVREG_FLAGS_HOST_BITS_DEFAULT)
|
---|
427 |
|
---|
428 | /** Indicates that the devices support PAE36 on a 32-bit guest. */
|
---|
429 | #define PDM_DEVREG_FLAGS_PAE36 0x00001000
|
---|
430 |
|
---|
431 | /** Indicates that the device needs to be notified before the drivers when suspending. */
|
---|
432 | #define PDM_DEVREG_FLAGS_FIRST_SUSPEND_NOTIFICATION 0x00002000
|
---|
433 |
|
---|
434 | /** Indicates that the device needs to be notified before the drivers when powering off. */
|
---|
435 | #define PDM_DEVREG_FLAGS_FIRST_POWEROFF_NOTIFICATION 0x00004000
|
---|
436 |
|
---|
437 | /** Indicates that the device needs to be notified before the drivers when resetting. */
|
---|
438 | #define PDM_DEVREG_FLAGS_FIRST_RESET_NOTIFICATION 0x00008000
|
---|
439 | /** @} */
|
---|
440 |
|
---|
441 |
|
---|
442 | /** PDM Device Classes.
|
---|
443 | * The order is important, lower bit earlier instantiation.
|
---|
444 | * @{ */
|
---|
445 | /** Architecture device. */
|
---|
446 | #define PDM_DEVREG_CLASS_ARCH RT_BIT(0)
|
---|
447 | /** Architecture BIOS device. */
|
---|
448 | #define PDM_DEVREG_CLASS_ARCH_BIOS RT_BIT(1)
|
---|
449 | /** PCI bus brigde. */
|
---|
450 | #define PDM_DEVREG_CLASS_BUS_PCI RT_BIT(2)
|
---|
451 | /** ISA bus brigde. */
|
---|
452 | #define PDM_DEVREG_CLASS_BUS_ISA RT_BIT(3)
|
---|
453 | /** Input device (mouse, keyboard, joystick, HID, ...). */
|
---|
454 | #define PDM_DEVREG_CLASS_INPUT RT_BIT(4)
|
---|
455 | /** Interrupt controller (PIC). */
|
---|
456 | #define PDM_DEVREG_CLASS_PIC RT_BIT(5)
|
---|
457 | /** Interval controoler (PIT). */
|
---|
458 | #define PDM_DEVREG_CLASS_PIT RT_BIT(6)
|
---|
459 | /** RTC/CMOS. */
|
---|
460 | #define PDM_DEVREG_CLASS_RTC RT_BIT(7)
|
---|
461 | /** DMA controller. */
|
---|
462 | #define PDM_DEVREG_CLASS_DMA RT_BIT(8)
|
---|
463 | /** VMM Device. */
|
---|
464 | #define PDM_DEVREG_CLASS_VMM_DEV RT_BIT(9)
|
---|
465 | /** Graphics device, like VGA. */
|
---|
466 | #define PDM_DEVREG_CLASS_GRAPHICS RT_BIT(10)
|
---|
467 | /** Storage controller device. */
|
---|
468 | #define PDM_DEVREG_CLASS_STORAGE RT_BIT(11)
|
---|
469 | /** Network interface controller. */
|
---|
470 | #define PDM_DEVREG_CLASS_NETWORK RT_BIT(12)
|
---|
471 | /** Audio. */
|
---|
472 | #define PDM_DEVREG_CLASS_AUDIO RT_BIT(13)
|
---|
473 | /** USB HIC. */
|
---|
474 | #define PDM_DEVREG_CLASS_BUS_USB RT_BIT(14)
|
---|
475 | /** ACPI. */
|
---|
476 | #define PDM_DEVREG_CLASS_ACPI RT_BIT(15)
|
---|
477 | /** Serial controller device. */
|
---|
478 | #define PDM_DEVREG_CLASS_SERIAL RT_BIT(16)
|
---|
479 | /** Parallel controller device */
|
---|
480 | #define PDM_DEVREG_CLASS_PARALLEL RT_BIT(17)
|
---|
481 | /** Host PCI pass-through device */
|
---|
482 | #define PDM_DEVREG_CLASS_HOST_DEV RT_BIT(18)
|
---|
483 | /** Misc devices (always last). */
|
---|
484 | #define PDM_DEVREG_CLASS_MISC RT_BIT(31)
|
---|
485 | /** @} */
|
---|
486 |
|
---|
487 |
|
---|
488 | /** @name IRQ Level for use with the *SetIrq APIs.
|
---|
489 | * @{
|
---|
490 | */
|
---|
491 | /** Assert the IRQ (can assume value 1). */
|
---|
492 | #define PDM_IRQ_LEVEL_HIGH RT_BIT(0)
|
---|
493 | /** Deassert the IRQ (can assume value 0). */
|
---|
494 | #define PDM_IRQ_LEVEL_LOW 0
|
---|
495 | /** flip-flop - deassert and then assert the IRQ again immediately. */
|
---|
496 | #define PDM_IRQ_LEVEL_FLIP_FLOP (RT_BIT(1) | PDM_IRQ_LEVEL_HIGH)
|
---|
497 | /** @} */
|
---|
498 |
|
---|
499 | /**
|
---|
500 | * Registration record for MSI.
|
---|
501 | */
|
---|
502 | typedef struct PDMMSIREG
|
---|
503 | {
|
---|
504 | /** Number of MSI interrupt vectors, 0 if MSI not supported */
|
---|
505 | uint16_t cMsiVectors;
|
---|
506 | /** Offset of MSI capability */
|
---|
507 | uint8_t iMsiCapOffset;
|
---|
508 | /** Offset of next capability to MSI */
|
---|
509 | uint8_t iMsiNextOffset;
|
---|
510 | /** If we support 64-bit MSI addressing */
|
---|
511 | bool fMsi64bit;
|
---|
512 |
|
---|
513 | /** Number of MSI-X interrupt vectors, 0 if MSI-X not supported */
|
---|
514 | uint16_t cMsixVectors;
|
---|
515 | /** Offset of MSI-X capability */
|
---|
516 | uint8_t iMsixCapOffset;
|
---|
517 | /** Offset of next capability to MSI-X */
|
---|
518 | uint8_t iMsixNextOffset;
|
---|
519 | /** Value of PCI BAR (base addresss register) assigned by device for MSI-X page access */
|
---|
520 | uint8_t iMsixBar;
|
---|
521 | } PDMMSIREG;
|
---|
522 | typedef PDMMSIREG *PPDMMSIREG;
|
---|
523 |
|
---|
524 | /**
|
---|
525 | * PCI Bus registration structure.
|
---|
526 | * All the callbacks, except the PCIBIOS hack, are working on PCI devices.
|
---|
527 | */
|
---|
528 | typedef struct PDMPCIBUSREG
|
---|
529 | {
|
---|
530 | /** Structure version number. PDM_PCIBUSREG_VERSION defines the current version. */
|
---|
531 | uint32_t u32Version;
|
---|
532 |
|
---|
533 | /**
|
---|
534 | * Registers the device with the default PCI bus.
|
---|
535 | *
|
---|
536 | * @returns VBox status code.
|
---|
537 | * @param pDevIns Device instance of the PCI Bus.
|
---|
538 | * @param pPciDev The PCI device structure.
|
---|
539 | * Any PCI enabled device must keep this in it's instance data!
|
---|
540 | * Fill in the PCI data config before registration, please.
|
---|
541 | * @param pszName Pointer to device name (permanent, readonly). For debugging, not unique.
|
---|
542 | * @param iDev The device number ((dev << 3) | function) the device should have on the bus.
|
---|
543 | * If negative, the pci bus device will assign one.
|
---|
544 | * @remarks Caller enters the PDM critical section.
|
---|
545 | */
|
---|
546 | DECLR3CALLBACKMEMBER(int, pfnRegisterR3,(PPDMDEVINS pDevIns, PPCIDEVICE pPciDev, const char *pszName, int iDev));
|
---|
547 |
|
---|
548 | /**
|
---|
549 | * Initialize MSI support in a PCI device.
|
---|
550 | *
|
---|
551 | * @returns VBox status code.
|
---|
552 | * @param pDevIns Device instance of the PCI Bus.
|
---|
553 | * @param pPciDev The PCI device structure.
|
---|
554 | * @param pMsiReg MSI registration structure
|
---|
555 | * @remarks Caller enters the PDM critical section.
|
---|
556 | */
|
---|
557 | DECLR3CALLBACKMEMBER(int, pfnRegisterMsiR3,(PPDMDEVINS pDevIns, PPCIDEVICE pPciDev, PPDMMSIREG pMsiReg));
|
---|
558 |
|
---|
559 | /**
|
---|
560 | * Registers a I/O region (memory mapped or I/O ports) for a PCI device.
|
---|
561 | *
|
---|
562 | * @returns VBox status code.
|
---|
563 | * @param pDevIns Device instance of the PCI Bus.
|
---|
564 | * @param pPciDev The PCI device structure.
|
---|
565 | * @param iRegion The region number.
|
---|
566 | * @param cbRegion Size of the region.
|
---|
567 | * @param iType PCI_ADDRESS_SPACE_MEM, PCI_ADDRESS_SPACE_IO or PCI_ADDRESS_SPACE_MEM_PREFETCH.
|
---|
568 | * @param pfnCallback Callback for doing the mapping.
|
---|
569 | * @remarks Caller enters the PDM critical section.
|
---|
570 | */
|
---|
571 | DECLR3CALLBACKMEMBER(int, pfnIORegionRegisterR3,(PPDMDEVINS pDevIns, PPCIDEVICE pPciDev, int iRegion, uint32_t cbRegion, PCIADDRESSSPACE enmType, PFNPCIIOREGIONMAP pfnCallback));
|
---|
572 |
|
---|
573 | /**
|
---|
574 | * Register PCI configuration space read/write callbacks.
|
---|
575 | *
|
---|
576 | * @param pDevIns Device instance of the PCI Bus.
|
---|
577 | * @param pPciDev The PCI device structure.
|
---|
578 | * @param pfnRead Pointer to the user defined PCI config read function.
|
---|
579 | * @param ppfnReadOld Pointer to function pointer which will receive the old (default)
|
---|
580 | * PCI config read function. This way, user can decide when (and if)
|
---|
581 | * to call default PCI config read function. Can be NULL.
|
---|
582 | * @param pfnWrite Pointer to the user defined PCI config write function.
|
---|
583 | * @param pfnWriteOld Pointer to function pointer which will receive the old (default)
|
---|
584 | * PCI config write function. This way, user can decide when (and if)
|
---|
585 | * to call default PCI config write function. Can be NULL.
|
---|
586 | * @remarks Caller enters the PDM critical section.
|
---|
587 | * @thread EMT
|
---|
588 | */
|
---|
589 | DECLR3CALLBACKMEMBER(void, pfnSetConfigCallbacksR3,(PPDMDEVINS pDevIns, PPCIDEVICE pPciDev, PFNPCICONFIGREAD pfnRead, PPFNPCICONFIGREAD ppfnReadOld,
|
---|
590 | PFNPCICONFIGWRITE pfnWrite, PPFNPCICONFIGWRITE ppfnWriteOld));
|
---|
591 |
|
---|
592 | /**
|
---|
593 | * Set the IRQ for a PCI device.
|
---|
594 | *
|
---|
595 | * @param pDevIns Device instance of the PCI Bus.
|
---|
596 | * @param pPciDev The PCI device structure.
|
---|
597 | * @param iIrq IRQ number to set.
|
---|
598 | * @param iLevel IRQ level. See the PDM_IRQ_LEVEL_* \#defines.
|
---|
599 | * @param uTagSrc The IRQ tag and source (for tracing).
|
---|
600 | * @remarks Caller enters the PDM critical section.
|
---|
601 | */
|
---|
602 | DECLR3CALLBACKMEMBER(void, pfnSetIrqR3,(PPDMDEVINS pDevIns, PPCIDEVICE pPciDev, int iIrq, int iLevel, uint32_t uTagSrc));
|
---|
603 |
|
---|
604 | /**
|
---|
605 | * Called to perform the job of the bios.
|
---|
606 | * This is only called for the first PCI Bus - it is expected to
|
---|
607 | * service all the PCI buses.
|
---|
608 | *
|
---|
609 | * @returns VBox status.
|
---|
610 | * @param pDevIns Device instance of the first bus.
|
---|
611 | * @remarks Caller enters the PDM critical section.
|
---|
612 | */
|
---|
613 | DECLR3CALLBACKMEMBER(int, pfnFakePCIBIOSR3,(PPDMDEVINS pDevIns));
|
---|
614 |
|
---|
615 | /** The name of the SetIrq RC entry point. */
|
---|
616 | const char *pszSetIrqRC;
|
---|
617 |
|
---|
618 | /** The name of the SetIrq R0 entry point. */
|
---|
619 | const char *pszSetIrqR0;
|
---|
620 |
|
---|
621 | } PDMPCIBUSREG;
|
---|
622 | /** Pointer to a PCI bus registration structure. */
|
---|
623 | typedef PDMPCIBUSREG *PPDMPCIBUSREG;
|
---|
624 |
|
---|
625 | /** Current PDMPCIBUSREG version number. */
|
---|
626 | #define PDM_PCIBUSREG_VERSION PDM_VERSION_MAKE(0xfffe, 4, 0)
|
---|
627 |
|
---|
628 | /**
|
---|
629 | * PCI Bus RC helpers.
|
---|
630 | */
|
---|
631 | typedef struct PDMPCIHLPRC
|
---|
632 | {
|
---|
633 | /** Structure version. PDM_PCIHLPRC_VERSION defines the current version. */
|
---|
634 | uint32_t u32Version;
|
---|
635 |
|
---|
636 | /**
|
---|
637 | * Set an ISA IRQ.
|
---|
638 | *
|
---|
639 | * @param pDevIns PCI device instance.
|
---|
640 | * @param iIrq IRQ number to set.
|
---|
641 | * @param iLevel IRQ level. See the PDM_IRQ_LEVEL_* \#defines.
|
---|
642 | * @param uTagSrc The IRQ tag and source (for tracing).
|
---|
643 | * @thread EMT only.
|
---|
644 | */
|
---|
645 | DECLRCCALLBACKMEMBER(void, pfnIsaSetIrq,(PPDMDEVINS pDevIns, int iIrq, int iLevel, uint32_t uTagSrc));
|
---|
646 |
|
---|
647 | /**
|
---|
648 | * Set an I/O-APIC IRQ.
|
---|
649 | *
|
---|
650 | * @param pDevIns PCI device instance.
|
---|
651 | * @param iIrq IRQ number to set.
|
---|
652 | * @param iLevel IRQ level. See the PDM_IRQ_LEVEL_* \#defines.
|
---|
653 | * @param uTagSrc The IRQ tag and source (for tracing).
|
---|
654 | * @thread EMT only.
|
---|
655 | */
|
---|
656 | DECLRCCALLBACKMEMBER(void, pfnIoApicSetIrq,(PPDMDEVINS pDevIns, int iIrq, int iLevel, uint32_t uTagSrc));
|
---|
657 |
|
---|
658 | /**
|
---|
659 | * Send an MSI.
|
---|
660 | *
|
---|
661 | * @param pDevIns PCI device instance.
|
---|
662 | * @param GCPhys Physical address MSI request was written.
|
---|
663 | * @param uValue Value written.
|
---|
664 | * @param uTagSrc The IRQ tag and source (for tracing).
|
---|
665 | * @thread EMT only.
|
---|
666 | */
|
---|
667 | DECLRCCALLBACKMEMBER(void, pfnIoApicSendMsi,(PPDMDEVINS pDevIns, RTGCPHYS GCPhys, uint32_t uValue, uint32_t uTagSrc));
|
---|
668 |
|
---|
669 |
|
---|
670 | /**
|
---|
671 | * Acquires the PDM lock.
|
---|
672 | *
|
---|
673 | * @returns VINF_SUCCESS on success.
|
---|
674 | * @returns rc if we failed to acquire the lock.
|
---|
675 | * @param pDevIns The PCI device instance.
|
---|
676 | * @param rc What to return if we fail to acquire the lock.
|
---|
677 | */
|
---|
678 | DECLRCCALLBACKMEMBER(int, pfnLock,(PPDMDEVINS pDevIns, int rc));
|
---|
679 |
|
---|
680 | /**
|
---|
681 | * Releases the PDM lock.
|
---|
682 | *
|
---|
683 | * @param pDevIns The PCI device instance.
|
---|
684 | */
|
---|
685 | DECLRCCALLBACKMEMBER(void, pfnUnlock,(PPDMDEVINS pDevIns));
|
---|
686 |
|
---|
687 | /** Just a safety precaution. */
|
---|
688 | uint32_t u32TheEnd;
|
---|
689 | } PDMPCIHLPRC;
|
---|
690 | /** Pointer to PCI helpers. */
|
---|
691 | typedef RCPTRTYPE(PDMPCIHLPRC *) PPDMPCIHLPRC;
|
---|
692 | /** Pointer to const PCI helpers. */
|
---|
693 | typedef RCPTRTYPE(const PDMPCIHLPRC *) PCPDMPCIHLPRC;
|
---|
694 |
|
---|
695 | /** Current PDMPCIHLPRC version number. */
|
---|
696 | #define PDM_PCIHLPRC_VERSION PDM_VERSION_MAKE(0xfffd, 3, 0)
|
---|
697 |
|
---|
698 |
|
---|
699 | /**
|
---|
700 | * PCI Bus R0 helpers.
|
---|
701 | */
|
---|
702 | typedef struct PDMPCIHLPR0
|
---|
703 | {
|
---|
704 | /** Structure version. PDM_PCIHLPR0_VERSION defines the current version. */
|
---|
705 | uint32_t u32Version;
|
---|
706 |
|
---|
707 | /**
|
---|
708 | * Set an ISA IRQ.
|
---|
709 | *
|
---|
710 | * @param pDevIns PCI device instance.
|
---|
711 | * @param iIrq IRQ number to set.
|
---|
712 | * @param iLevel IRQ level. See the PDM_IRQ_LEVEL_* \#defines.
|
---|
713 | * @param uTagSrc The IRQ tag and source (for tracing).
|
---|
714 | * @thread EMT only.
|
---|
715 | */
|
---|
716 | DECLR0CALLBACKMEMBER(void, pfnIsaSetIrq,(PPDMDEVINS pDevIns, int iIrq, int iLevel, uint32_t uTagSrc));
|
---|
717 |
|
---|
718 | /**
|
---|
719 | * Set an I/O-APIC IRQ.
|
---|
720 | *
|
---|
721 | * @param pDevIns PCI device instance.
|
---|
722 | * @param iIrq IRQ number to set.
|
---|
723 | * @param iLevel IRQ level. See the PDM_IRQ_LEVEL_* \#defines.
|
---|
724 | * @param uTagSrc The IRQ tag and source (for tracing).
|
---|
725 | * @thread EMT only.
|
---|
726 | */
|
---|
727 | DECLR0CALLBACKMEMBER(void, pfnIoApicSetIrq,(PPDMDEVINS pDevIns, int iIrq, int iLevel, uint32_t uTagSrc));
|
---|
728 |
|
---|
729 | /**
|
---|
730 | * Send an MSI.
|
---|
731 | *
|
---|
732 | * @param pDevIns PCI device instance.
|
---|
733 | * @param GCPhys Physical address MSI request was written.
|
---|
734 | * @param uValue Value written.
|
---|
735 | * @param uTagSrc The IRQ tag and source (for tracing).
|
---|
736 | * @thread EMT only.
|
---|
737 | */
|
---|
738 | DECLR0CALLBACKMEMBER(void, pfnIoApicSendMsi,(PPDMDEVINS pDevIns, RTGCPHYS GCPhys, uint32_t uValue, uint32_t uTagSrc));
|
---|
739 |
|
---|
740 |
|
---|
741 | /**
|
---|
742 | * Acquires the PDM lock.
|
---|
743 | *
|
---|
744 | * @returns VINF_SUCCESS on success.
|
---|
745 | * @returns rc if we failed to acquire the lock.
|
---|
746 | * @param pDevIns The PCI device instance.
|
---|
747 | * @param rc What to return if we fail to acquire the lock.
|
---|
748 | */
|
---|
749 | DECLR0CALLBACKMEMBER(int, pfnLock,(PPDMDEVINS pDevIns, int rc));
|
---|
750 |
|
---|
751 | /**
|
---|
752 | * Releases the PDM lock.
|
---|
753 | *
|
---|
754 | * @param pDevIns The PCI device instance.
|
---|
755 | */
|
---|
756 | DECLR0CALLBACKMEMBER(void, pfnUnlock,(PPDMDEVINS pDevIns));
|
---|
757 |
|
---|
758 | /** Just a safety precaution. */
|
---|
759 | uint32_t u32TheEnd;
|
---|
760 | } PDMPCIHLPR0;
|
---|
761 | /** Pointer to PCI helpers. */
|
---|
762 | typedef R0PTRTYPE(PDMPCIHLPR0 *) PPDMPCIHLPR0;
|
---|
763 | /** Pointer to const PCI helpers. */
|
---|
764 | typedef R0PTRTYPE(const PDMPCIHLPR0 *) PCPDMPCIHLPR0;
|
---|
765 |
|
---|
766 | /** Current PDMPCIHLPR0 version number. */
|
---|
767 | #define PDM_PCIHLPR0_VERSION PDM_VERSION_MAKE(0xfffc, 3, 0)
|
---|
768 |
|
---|
769 | /**
|
---|
770 | * PCI device helpers.
|
---|
771 | */
|
---|
772 | typedef struct PDMPCIHLPR3
|
---|
773 | {
|
---|
774 | /** Structure version. PDM_PCIHLPR3_VERSION defines the current version. */
|
---|
775 | uint32_t u32Version;
|
---|
776 |
|
---|
777 | /**
|
---|
778 | * Set an ISA IRQ.
|
---|
779 | *
|
---|
780 | * @param pDevIns The PCI device instance.
|
---|
781 | * @param iIrq IRQ number to set.
|
---|
782 | * @param iLevel IRQ level. See the PDM_IRQ_LEVEL_* \#defines.
|
---|
783 | * @param uTagSrc The IRQ tag and source (for tracing).
|
---|
784 | */
|
---|
785 | DECLR3CALLBACKMEMBER(void, pfnIsaSetIrq,(PPDMDEVINS pDevIns, int iIrq, int iLevel, uint32_t uTagSrc));
|
---|
786 |
|
---|
787 | /**
|
---|
788 | * Set an I/O-APIC IRQ.
|
---|
789 | *
|
---|
790 | * @param pDevIns The PCI device instance.
|
---|
791 | * @param iIrq IRQ number to set.
|
---|
792 | * @param iLevel IRQ level. See the PDM_IRQ_LEVEL_* \#defines.
|
---|
793 | * @param uTagSrc The IRQ tag and source (for tracing).
|
---|
794 | */
|
---|
795 | DECLR3CALLBACKMEMBER(void, pfnIoApicSetIrq,(PPDMDEVINS pDevIns, int iIrq, int iLevel, uint32_t uTagSrc));
|
---|
796 |
|
---|
797 | /**
|
---|
798 | * Send an MSI.
|
---|
799 | *
|
---|
800 | * @param pDevIns PCI device instance.
|
---|
801 | * @param GCPhys Physical address MSI request was written.
|
---|
802 | * @param uValue Value written.
|
---|
803 | * @param uTagSrc The IRQ tag and source (for tracing).
|
---|
804 | */
|
---|
805 | DECLR3CALLBACKMEMBER(void, pfnIoApicSendMsi,(PPDMDEVINS pDevIns, RTGCPHYS GCPhys, uint32_t uValue, uint32_t uTagSrc));
|
---|
806 |
|
---|
807 | /**
|
---|
808 | * Checks if the given address is an MMIO2 base address or not.
|
---|
809 | *
|
---|
810 | * @returns true/false accordingly.
|
---|
811 | * @param pDevIns The PCI device instance.
|
---|
812 | * @param pOwner The owner of the memory, optional.
|
---|
813 | * @param GCPhys The address to check.
|
---|
814 | */
|
---|
815 | DECLR3CALLBACKMEMBER(bool, pfnIsMMIO2Base,(PPDMDEVINS pDevIns, PPDMDEVINS pOwner, RTGCPHYS GCPhys));
|
---|
816 |
|
---|
817 | /**
|
---|
818 | * Gets the address of the RC PCI Bus helpers.
|
---|
819 | *
|
---|
820 | * This should be called at both construction and relocation time
|
---|
821 | * to obtain the correct address of the RC helpers.
|
---|
822 | *
|
---|
823 | * @returns RC pointer to the PCI Bus helpers.
|
---|
824 | * @param pDevIns Device instance of the PCI Bus.
|
---|
825 | * @thread EMT only.
|
---|
826 | */
|
---|
827 | DECLR3CALLBACKMEMBER(PCPDMPCIHLPRC, pfnGetRCHelpers,(PPDMDEVINS pDevIns));
|
---|
828 |
|
---|
829 | /**
|
---|
830 | * Gets the address of the R0 PCI Bus helpers.
|
---|
831 | *
|
---|
832 | * This should be called at both construction and relocation time
|
---|
833 | * to obtain the correct address of the R0 helpers.
|
---|
834 | *
|
---|
835 | * @returns R0 pointer to the PCI Bus helpers.
|
---|
836 | * @param pDevIns Device instance of the PCI Bus.
|
---|
837 | * @thread EMT only.
|
---|
838 | */
|
---|
839 | DECLR3CALLBACKMEMBER(PCPDMPCIHLPR0, pfnGetR0Helpers,(PPDMDEVINS pDevIns));
|
---|
840 |
|
---|
841 | /**
|
---|
842 | * Acquires the PDM lock.
|
---|
843 | *
|
---|
844 | * @returns VINF_SUCCESS on success.
|
---|
845 | * @returns Fatal error on failure.
|
---|
846 | * @param pDevIns The PCI device instance.
|
---|
847 | * @param rc Dummy for making the interface identical to the RC and R0 versions.
|
---|
848 | */
|
---|
849 | DECLR3CALLBACKMEMBER(int, pfnLock,(PPDMDEVINS pDevIns, int rc));
|
---|
850 |
|
---|
851 | /**
|
---|
852 | * Releases the PDM lock.
|
---|
853 | *
|
---|
854 | * @param pDevIns The PCI device instance.
|
---|
855 | */
|
---|
856 | DECLR3CALLBACKMEMBER(void, pfnUnlock,(PPDMDEVINS pDevIns));
|
---|
857 |
|
---|
858 | /** Just a safety precaution. */
|
---|
859 | uint32_t u32TheEnd;
|
---|
860 | } PDMPCIHLPR3;
|
---|
861 | /** Pointer to PCI helpers. */
|
---|
862 | typedef R3PTRTYPE(PDMPCIHLPR3 *) PPDMPCIHLPR3;
|
---|
863 | /** Pointer to const PCI helpers. */
|
---|
864 | typedef R3PTRTYPE(const PDMPCIHLPR3 *) PCPDMPCIHLPR3;
|
---|
865 |
|
---|
866 | /** Current PDMPCIHLPR3 version number. */
|
---|
867 | #define PDM_PCIHLPR3_VERSION PDM_VERSION_MAKE(0xfffb, 3, 0)
|
---|
868 |
|
---|
869 |
|
---|
870 | /**
|
---|
871 | * Programmable Interrupt Controller registration structure.
|
---|
872 | */
|
---|
873 | typedef struct PDMPICREG
|
---|
874 | {
|
---|
875 | /** Structure version number. PDM_PICREG_VERSION defines the current version. */
|
---|
876 | uint32_t u32Version;
|
---|
877 |
|
---|
878 | /**
|
---|
879 | * Set the an IRQ.
|
---|
880 | *
|
---|
881 | * @param pDevIns Device instance of the PIC.
|
---|
882 | * @param iIrq IRQ number to set.
|
---|
883 | * @param iLevel IRQ level. See the PDM_IRQ_LEVEL_* \#defines.
|
---|
884 | * @param uTagSrc The IRQ tag and source (for tracing).
|
---|
885 | * @remarks Caller enters the PDM critical section.
|
---|
886 | */
|
---|
887 | DECLR3CALLBACKMEMBER(void, pfnSetIrqR3,(PPDMDEVINS pDevIns, int iIrq, int iLevel, uint32_t uTagSrc));
|
---|
888 |
|
---|
889 | /**
|
---|
890 | * Get a pending interrupt.
|
---|
891 | *
|
---|
892 | * @returns Pending interrupt number.
|
---|
893 | * @param pDevIns Device instance of the PIC.
|
---|
894 | * @param puTagSrc Where to return the IRQ tag and source.
|
---|
895 | * @remarks Caller enters the PDM critical section.
|
---|
896 | */
|
---|
897 | DECLR3CALLBACKMEMBER(int, pfnGetInterruptR3,(PPDMDEVINS pDevIns, uint32_t *puTagSrc));
|
---|
898 |
|
---|
899 | /** The name of the RC SetIrq entry point. */
|
---|
900 | const char *pszSetIrqRC;
|
---|
901 | /** The name of the RC GetInterrupt entry point. */
|
---|
902 | const char *pszGetInterruptRC;
|
---|
903 |
|
---|
904 | /** The name of the R0 SetIrq entry point. */
|
---|
905 | const char *pszSetIrqR0;
|
---|
906 | /** The name of the R0 GetInterrupt entry point. */
|
---|
907 | const char *pszGetInterruptR0;
|
---|
908 | } PDMPICREG;
|
---|
909 | /** Pointer to a PIC registration structure. */
|
---|
910 | typedef PDMPICREG *PPDMPICREG;
|
---|
911 |
|
---|
912 | /** Current PDMPICREG version number. */
|
---|
913 | #define PDM_PICREG_VERSION PDM_VERSION_MAKE(0xfffa, 2, 0)
|
---|
914 |
|
---|
915 | /**
|
---|
916 | * PIC RC helpers.
|
---|
917 | */
|
---|
918 | typedef struct PDMPICHLPRC
|
---|
919 | {
|
---|
920 | /** Structure version. PDM_PICHLPRC_VERSION defines the current version. */
|
---|
921 | uint32_t u32Version;
|
---|
922 |
|
---|
923 | /**
|
---|
924 | * Set the interrupt force action flag.
|
---|
925 | *
|
---|
926 | * @param pDevIns Device instance of the PIC.
|
---|
927 | */
|
---|
928 | DECLRCCALLBACKMEMBER(void, pfnSetInterruptFF,(PPDMDEVINS pDevIns));
|
---|
929 |
|
---|
930 | /**
|
---|
931 | * Clear the interrupt force action flag.
|
---|
932 | *
|
---|
933 | * @param pDevIns Device instance of the PIC.
|
---|
934 | */
|
---|
935 | DECLRCCALLBACKMEMBER(void, pfnClearInterruptFF,(PPDMDEVINS pDevIns));
|
---|
936 |
|
---|
937 | /**
|
---|
938 | * Acquires the PDM lock.
|
---|
939 | *
|
---|
940 | * @returns VINF_SUCCESS on success.
|
---|
941 | * @returns rc if we failed to acquire the lock.
|
---|
942 | * @param pDevIns The PIC device instance.
|
---|
943 | * @param rc What to return if we fail to acquire the lock.
|
---|
944 | */
|
---|
945 | DECLRCCALLBACKMEMBER(int, pfnLock,(PPDMDEVINS pDevIns, int rc));
|
---|
946 |
|
---|
947 | /**
|
---|
948 | * Releases the PDM lock.
|
---|
949 | *
|
---|
950 | * @param pDevIns The PIC device instance.
|
---|
951 | */
|
---|
952 | DECLRCCALLBACKMEMBER(void, pfnUnlock,(PPDMDEVINS pDevIns));
|
---|
953 |
|
---|
954 | /** Just a safety precaution. */
|
---|
955 | uint32_t u32TheEnd;
|
---|
956 | } PDMPICHLPRC;
|
---|
957 |
|
---|
958 | /** Pointer to PIC RC helpers. */
|
---|
959 | typedef RCPTRTYPE(PDMPICHLPRC *) PPDMPICHLPRC;
|
---|
960 | /** Pointer to const PIC RC helpers. */
|
---|
961 | typedef RCPTRTYPE(const PDMPICHLPRC *) PCPDMPICHLPRC;
|
---|
962 |
|
---|
963 | /** Current PDMPICHLPRC version number. */
|
---|
964 | #define PDM_PICHLPRC_VERSION PDM_VERSION_MAKE(0xfff9, 2, 0)
|
---|
965 |
|
---|
966 |
|
---|
967 | /**
|
---|
968 | * PIC R0 helpers.
|
---|
969 | */
|
---|
970 | typedef struct PDMPICHLPR0
|
---|
971 | {
|
---|
972 | /** Structure version. PDM_PICHLPR0_VERSION defines the current version. */
|
---|
973 | uint32_t u32Version;
|
---|
974 |
|
---|
975 | /**
|
---|
976 | * Set the interrupt force action flag.
|
---|
977 | *
|
---|
978 | * @param pDevIns Device instance of the PIC.
|
---|
979 | */
|
---|
980 | DECLR0CALLBACKMEMBER(void, pfnSetInterruptFF,(PPDMDEVINS pDevIns));
|
---|
981 |
|
---|
982 | /**
|
---|
983 | * Clear the interrupt force action flag.
|
---|
984 | *
|
---|
985 | * @param pDevIns Device instance of the PIC.
|
---|
986 | */
|
---|
987 | DECLR0CALLBACKMEMBER(void, pfnClearInterruptFF,(PPDMDEVINS pDevIns));
|
---|
988 |
|
---|
989 | /**
|
---|
990 | * Acquires the PDM lock.
|
---|
991 | *
|
---|
992 | * @returns VINF_SUCCESS on success.
|
---|
993 | * @returns rc if we failed to acquire the lock.
|
---|
994 | * @param pDevIns The PIC device instance.
|
---|
995 | * @param rc What to return if we fail to acquire the lock.
|
---|
996 | */
|
---|
997 | DECLR0CALLBACKMEMBER(int, pfnLock,(PPDMDEVINS pDevIns, int rc));
|
---|
998 |
|
---|
999 | /**
|
---|
1000 | * Releases the PDM lock.
|
---|
1001 | *
|
---|
1002 | * @param pDevIns The PCI device instance.
|
---|
1003 | */
|
---|
1004 | DECLR0CALLBACKMEMBER(void, pfnUnlock,(PPDMDEVINS pDevIns));
|
---|
1005 |
|
---|
1006 | /** Just a safety precaution. */
|
---|
1007 | uint32_t u32TheEnd;
|
---|
1008 | } PDMPICHLPR0;
|
---|
1009 |
|
---|
1010 | /** Pointer to PIC R0 helpers. */
|
---|
1011 | typedef R0PTRTYPE(PDMPICHLPR0 *) PPDMPICHLPR0;
|
---|
1012 | /** Pointer to const PIC R0 helpers. */
|
---|
1013 | typedef R0PTRTYPE(const PDMPICHLPR0 *) PCPDMPICHLPR0;
|
---|
1014 |
|
---|
1015 | /** Current PDMPICHLPR0 version number. */
|
---|
1016 | #define PDM_PICHLPR0_VERSION PDM_VERSION_MAKE(0xfff8, 1, 0)
|
---|
1017 |
|
---|
1018 | /**
|
---|
1019 | * PIC R3 helpers.
|
---|
1020 | */
|
---|
1021 | typedef struct PDMPICHLPR3
|
---|
1022 | {
|
---|
1023 | /** Structure version. PDM_PICHLP_VERSION defines the current version. */
|
---|
1024 | uint32_t u32Version;
|
---|
1025 |
|
---|
1026 | /**
|
---|
1027 | * Set the interrupt force action flag.
|
---|
1028 | *
|
---|
1029 | * @param pDevIns Device instance of the PIC.
|
---|
1030 | */
|
---|
1031 | DECLR3CALLBACKMEMBER(void, pfnSetInterruptFF,(PPDMDEVINS pDevIns));
|
---|
1032 |
|
---|
1033 | /**
|
---|
1034 | * Clear the interrupt force action flag.
|
---|
1035 | *
|
---|
1036 | * @param pDevIns Device instance of the PIC.
|
---|
1037 | */
|
---|
1038 | DECLR3CALLBACKMEMBER(void, pfnClearInterruptFF,(PPDMDEVINS pDevIns));
|
---|
1039 |
|
---|
1040 | /**
|
---|
1041 | * Acquires the PDM lock.
|
---|
1042 | *
|
---|
1043 | * @returns VINF_SUCCESS on success.
|
---|
1044 | * @returns Fatal error on failure.
|
---|
1045 | * @param pDevIns The PIC device instance.
|
---|
1046 | * @param rc Dummy for making the interface identical to the RC and R0 versions.
|
---|
1047 | */
|
---|
1048 | DECLR3CALLBACKMEMBER(int, pfnLock,(PPDMDEVINS pDevIns, int rc));
|
---|
1049 |
|
---|
1050 | /**
|
---|
1051 | * Releases the PDM lock.
|
---|
1052 | *
|
---|
1053 | * @param pDevIns The PIC device instance.
|
---|
1054 | */
|
---|
1055 | DECLR3CALLBACKMEMBER(void, pfnUnlock,(PPDMDEVINS pDevIns));
|
---|
1056 |
|
---|
1057 | /**
|
---|
1058 | * Gets the address of the RC PIC helpers.
|
---|
1059 | *
|
---|
1060 | * This should be called at both construction and relocation time
|
---|
1061 | * to obtain the correct address of the RC helpers.
|
---|
1062 | *
|
---|
1063 | * @returns RC pointer to the PIC helpers.
|
---|
1064 | * @param pDevIns Device instance of the PIC.
|
---|
1065 | */
|
---|
1066 | DECLR3CALLBACKMEMBER(PCPDMPICHLPRC, pfnGetRCHelpers,(PPDMDEVINS pDevIns));
|
---|
1067 |
|
---|
1068 | /**
|
---|
1069 | * Gets the address of the R0 PIC helpers.
|
---|
1070 | *
|
---|
1071 | * This should be called at both construction and relocation time
|
---|
1072 | * to obtain the correct address of the R0 helpers.
|
---|
1073 | *
|
---|
1074 | * @returns R0 pointer to the PIC helpers.
|
---|
1075 | * @param pDevIns Device instance of the PIC.
|
---|
1076 | */
|
---|
1077 | DECLR3CALLBACKMEMBER(PCPDMPICHLPR0, pfnGetR0Helpers,(PPDMDEVINS pDevIns));
|
---|
1078 |
|
---|
1079 | /** Just a safety precaution. */
|
---|
1080 | uint32_t u32TheEnd;
|
---|
1081 | } PDMPICHLPR3;
|
---|
1082 |
|
---|
1083 | /** Pointer to PIC R3 helpers. */
|
---|
1084 | typedef R3PTRTYPE(PDMPICHLPR3 *) PPDMPICHLPR3;
|
---|
1085 | /** Pointer to const PIC R3 helpers. */
|
---|
1086 | typedef R3PTRTYPE(const PDMPICHLPR3 *) PCPDMPICHLPR3;
|
---|
1087 |
|
---|
1088 | /** Current PDMPICHLPR3 version number. */
|
---|
1089 | #define PDM_PICHLPR3_VERSION PDM_VERSION_MAKE(0xfff7, 1, 0)
|
---|
1090 |
|
---|
1091 |
|
---|
1092 |
|
---|
1093 | /**
|
---|
1094 | * Firmware registration structure.
|
---|
1095 | */
|
---|
1096 | typedef struct PDMFWREG
|
---|
1097 | {
|
---|
1098 | /** Struct version+magic number (PDM_FWREG_VERSION). */
|
---|
1099 | uint32_t u32Version;
|
---|
1100 |
|
---|
1101 | /**
|
---|
1102 | * Checks whether this is a hard or soft reset.
|
---|
1103 | *
|
---|
1104 | * The current definition of soft reset is what the PC BIOS does when CMOS[0xF]
|
---|
1105 | * is 5, 9 or 0xA.
|
---|
1106 | *
|
---|
1107 | * @returns true if hard reset, false if soft.
|
---|
1108 | * @param pDevIns Device instance of the firmware.
|
---|
1109 | * @param fFlags PDMRESET_F_XXX passed to the PDMDevHlpVMReset API.
|
---|
1110 | */
|
---|
1111 | DECLR3CALLBACKMEMBER(bool, pfnIsHardReset,(PPDMDEVINS pDevIns, uint32_t fFlags));
|
---|
1112 |
|
---|
1113 | /** Just a safety precaution. */
|
---|
1114 | uint32_t u32TheEnd;
|
---|
1115 | } PDMFWREG;
|
---|
1116 | /** Pointer to a FW registration structure. */
|
---|
1117 | typedef PDMFWREG *PPDMFWREG;
|
---|
1118 | /** Pointer to a const FW registration structure. */
|
---|
1119 | typedef PDMFWREG const *PCPDMFWREG;
|
---|
1120 |
|
---|
1121 | /** Current PDMFWREG version number. */
|
---|
1122 | #define PDM_FWREG_VERSION PDM_VERSION_MAKE(0xffdd, 1, 0)
|
---|
1123 |
|
---|
1124 | /**
|
---|
1125 | * Firmware R3 helpers.
|
---|
1126 | */
|
---|
1127 | typedef struct PDMFWHLPR3
|
---|
1128 | {
|
---|
1129 | /** Structure version. PDM_FWHLP_VERSION defines the current version. */
|
---|
1130 | uint32_t u32Version;
|
---|
1131 |
|
---|
1132 | /** Just a safety precaution. */
|
---|
1133 | uint32_t u32TheEnd;
|
---|
1134 | } PDMFWHLPR3;
|
---|
1135 |
|
---|
1136 | /** Pointer to FW R3 helpers. */
|
---|
1137 | typedef R3PTRTYPE(PDMFWHLPR3 *) PPDMFWHLPR3;
|
---|
1138 | /** Pointer to const FW R3 helpers. */
|
---|
1139 | typedef R3PTRTYPE(const PDMFWHLPR3 *) PCPDMFWHLPR3;
|
---|
1140 |
|
---|
1141 | /** Current PDMFWHLPR3 version number. */
|
---|
1142 | #define PDM_FWHLPR3_VERSION PDM_VERSION_MAKE(0xffdb, 1, 0)
|
---|
1143 |
|
---|
1144 |
|
---|
1145 | /**
|
---|
1146 | * Advanced Programmable Interrupt Controller registration structure.
|
---|
1147 | */
|
---|
1148 | typedef struct PDMAPICREG
|
---|
1149 | {
|
---|
1150 | /** Structure version number. PDM_APICREG_VERSION defines the current version. */
|
---|
1151 | uint32_t u32Version;
|
---|
1152 |
|
---|
1153 | /**
|
---|
1154 | * Get a pending interrupt.
|
---|
1155 | *
|
---|
1156 | * @returns VBox status code.
|
---|
1157 | * @param pDevIns Device instance of the APIC.
|
---|
1158 | * @param pVCpu The cross context virtual CPU structure.
|
---|
1159 | * @param pu8Vector Where to store the vector.
|
---|
1160 | * @param pu32TagSrc Where to return the tag source (tracing
|
---|
1161 | * purposes).
|
---|
1162 | * @remarks Caller enters the PDM critical section.
|
---|
1163 | */
|
---|
1164 | DECLR3CALLBACKMEMBER(int, pfnGetInterruptR3,(PPDMDEVINS pDevIns, PVMCPU pVCpu, uint8_t *pu8Vector, uint32_t *pu32TagSrc));
|
---|
1165 |
|
---|
1166 | /**
|
---|
1167 | * Set the APIC base.
|
---|
1168 | *
|
---|
1169 | * @param pDevIns Device instance of the APIC.
|
---|
1170 | * @param pVCpu The cross context virtual CPU structure.
|
---|
1171 | * @param u64BaseMsr The base MSR value.
|
---|
1172 | * @remarks Caller enters the PDM critical section (might not be the case with
|
---|
1173 | * the new APIC code)
|
---|
1174 | */
|
---|
1175 | DECLR3CALLBACKMEMBER(VBOXSTRICTRC, pfnSetBaseMsrR3,(PPDMDEVINS pDevIns, PVMCPU pVCpu, uint64_t u64BaseMsr));
|
---|
1176 |
|
---|
1177 | /**
|
---|
1178 | * Get the APIC base.
|
---|
1179 | *
|
---|
1180 | * @returns Current base.
|
---|
1181 | * @param pDevIns Device instance of the APIC.
|
---|
1182 | * @param pVCpu The cross context virtual CPU structure.
|
---|
1183 | * @remarks Caller enters the PDM critical section.
|
---|
1184 | */
|
---|
1185 | DECLR3CALLBACKMEMBER(uint64_t, pfnGetBaseMsrR3,(PPDMDEVINS pDevIns, PVMCPU pVCpu));
|
---|
1186 |
|
---|
1187 | /**
|
---|
1188 | * Set the TPR (task priority register).
|
---|
1189 | *
|
---|
1190 | * @param pDevIns Device instance of the APIC.
|
---|
1191 | * @param pVCpu The cross context virtual CPU structure.
|
---|
1192 | * @param u8Tpr The new TPR.
|
---|
1193 | * @remarks Caller enters the PDM critical section.
|
---|
1194 | */
|
---|
1195 | DECLR3CALLBACKMEMBER(void, pfnSetTprR3,(PPDMDEVINS pDevIns, PVMCPU pVCpu, uint8_t u8Tpr));
|
---|
1196 |
|
---|
1197 | /**
|
---|
1198 | * Get the TPR (task priority register).
|
---|
1199 | *
|
---|
1200 | * @returns The current TPR.
|
---|
1201 | * @param pDevIns Device instance of the APIC.
|
---|
1202 | * @param pVCpu The cross context virtual CPU structure.
|
---|
1203 | * @param pfPending Where to store if there is an interrupt pending
|
---|
1204 | * (optional, can be NULL).
|
---|
1205 | * @param pu8PendingIntr Where to store the pending interrupt vector
|
---|
1206 | * (optional, can be NULL).
|
---|
1207 | * @remarks Caller enters the PDM critical section.
|
---|
1208 | */
|
---|
1209 | DECLR3CALLBACKMEMBER(uint8_t, pfnGetTprR3,(PPDMDEVINS pDevIns, PVMCPU pVCpu, bool *pfPending, uint8_t *pu8PendingIntr));
|
---|
1210 |
|
---|
1211 | /**
|
---|
1212 | * Write to a MSR in APIC range.
|
---|
1213 | *
|
---|
1214 | * @returns Strict VBox status code.
|
---|
1215 | * @param pDevIns Device instance of the APIC.
|
---|
1216 | * @param pVCpu The cross context virtual CPU structure.
|
---|
1217 | * @param u32Reg The MSR begin written to.
|
---|
1218 | * @param u64Value The value to write.
|
---|
1219 | *
|
---|
1220 | * @remarks Unlike the other callbacks, the PDM lock is not taken before
|
---|
1221 | * calling this method.
|
---|
1222 | */
|
---|
1223 | DECLR3CALLBACKMEMBER(VBOXSTRICTRC, pfnWriteMsrR3,(PPDMDEVINS pDevIns, PVMCPU pVCpu, uint32_t u32Reg, uint64_t u64Value));
|
---|
1224 |
|
---|
1225 | /**
|
---|
1226 | * Read from a MSR in APIC range.
|
---|
1227 | *
|
---|
1228 | * @returns Strict VBox status code.
|
---|
1229 | * @param pDevIns Device instance of the APIC.
|
---|
1230 | * @param pVCpu The cross context virtual CPU structure.
|
---|
1231 | * @param u32Reg MSR to read.
|
---|
1232 | * @param pu64Value Where to return the read value.
|
---|
1233 | *
|
---|
1234 | * @remarks Unlike the other callbacks, the PDM lock is not taken before
|
---|
1235 | * calling this method.
|
---|
1236 | */
|
---|
1237 | DECLR3CALLBACKMEMBER(VBOXSTRICTRC, pfnReadMsrR3,(PPDMDEVINS pDevIns, PVMCPU pVCpu, uint32_t u32Reg, uint64_t *pu64Value));
|
---|
1238 |
|
---|
1239 | /**
|
---|
1240 | * Private interface between the IOAPIC and APIC.
|
---|
1241 | *
|
---|
1242 | * This is a low-level, APIC/IOAPIC implementation specific interface which
|
---|
1243 | * is registered with PDM only because it makes life so much simpler right
|
---|
1244 | * now (GC bits). This is a bad bad hack! The correct way of doing this
|
---|
1245 | * would involve some way of querying GC interfaces and relocating them.
|
---|
1246 | * Perhaps doing some kind of device init in GC...
|
---|
1247 | *
|
---|
1248 | * @returns VBox status code.
|
---|
1249 | * @param pDevIns Device instance of the APIC.
|
---|
1250 | * @param uDest The destination mask.
|
---|
1251 | * @param uDestMode The destination mode, see XAPICDESTMODE.
|
---|
1252 | * @param uDeliveryMode The delivery mode, see XAPICDELIVERYMODE.
|
---|
1253 | * @param uVector The interrupt vector.
|
---|
1254 | * @param uPolarity The input pin polarity.
|
---|
1255 | * @param uTriggerMode The trigger mode, see XAPICTRIGGERMODE.
|
---|
1256 | * @param uTagSrc The IRQ tag and source (for tracing).
|
---|
1257 | * @remarks Caller enters the PDM critical section.
|
---|
1258 | */
|
---|
1259 | DECLR3CALLBACKMEMBER(int, pfnBusDeliverR3,(PPDMDEVINS pDevIns, uint8_t uDest, uint8_t uDestMode, uint8_t uDeliveryMode,
|
---|
1260 | uint8_t uVector, uint8_t uPolarity, uint8_t uTriggerMode, uint32_t uTagSrc));
|
---|
1261 |
|
---|
1262 | /**
|
---|
1263 | * Deliver a signal to CPU's local interrupt pins (LINT0/LINT1).
|
---|
1264 | *
|
---|
1265 | * Used for virtual wire mode when interrupts from the PIC are passed through
|
---|
1266 | * LAPIC.
|
---|
1267 | *
|
---|
1268 | * @returns Strict VBox status code.
|
---|
1269 | * @param pDevIns Device instance of the APIC.
|
---|
1270 | * @param pVCpu The cross context virtual CPU structure.
|
---|
1271 | * @param u8Pin Local pin number (0 or 1 for current CPUs).
|
---|
1272 | * @param u8Level The level.
|
---|
1273 | * @param rcRZ The return code if the operation cannot be
|
---|
1274 | * performed in the current context.
|
---|
1275 | * @remarks Caller enters the PDM critical section
|
---|
1276 | */
|
---|
1277 | DECLR3CALLBACKMEMBER(VBOXSTRICTRC, pfnLocalInterruptR3,(PPDMDEVINS pDevIns, PVMCPU pVCpu, uint8_t u8Pin, uint8_t u8Level,
|
---|
1278 | int rcRZ));
|
---|
1279 |
|
---|
1280 | /**
|
---|
1281 | * Get the APIC timer frequency (in Hz).
|
---|
1282 | *
|
---|
1283 | * @returns The frequency of the APIC timer.
|
---|
1284 | * @param pDevIns Device instance of the APIC.
|
---|
1285 | */
|
---|
1286 | DECLR3CALLBACKMEMBER(uint64_t, pfnGetTimerFreqR3,(PPDMDEVINS pDevIns));
|
---|
1287 |
|
---|
1288 | /** The name of the RC GetInterrupt entry point. */
|
---|
1289 | const char *pszGetInterruptRC;
|
---|
1290 | /** The name of the RC SetBaseMsr entry point. */
|
---|
1291 | const char *pszSetBaseMsrRC;
|
---|
1292 | /** The name of the RC GetBaseMsr entry point. */
|
---|
1293 | const char *pszGetBaseMsrRC;
|
---|
1294 | /** The name of the RC SetTpr entry point. */
|
---|
1295 | const char *pszSetTprRC;
|
---|
1296 | /** The name of the RC GetTpr entry point. */
|
---|
1297 | const char *pszGetTprRC;
|
---|
1298 | /** The name of the RC WriteMsr entry point. */
|
---|
1299 | const char *pszWriteMsrRC;
|
---|
1300 | /** The name of the RC ReadMsr entry point. */
|
---|
1301 | const char *pszReadMsrRC;
|
---|
1302 | /** The name of the RC BusDeliver entry point. */
|
---|
1303 | const char *pszBusDeliverRC;
|
---|
1304 | /** The name of the RC LocalInterrupt entry point. */
|
---|
1305 | const char *pszLocalInterruptRC;
|
---|
1306 | /** The name of the RC GetTimerFreq entry point. */
|
---|
1307 | const char *pszGetTimerFreqRC;
|
---|
1308 |
|
---|
1309 | /** The name of the R0 GetInterrupt entry point. */
|
---|
1310 | const char *pszGetInterruptR0;
|
---|
1311 | /** The name of the R0 SetBaseMsr entry point. */
|
---|
1312 | const char *pszSetBaseMsrR0;
|
---|
1313 | /** The name of the R0 GetBaseMsr entry point. */
|
---|
1314 | const char *pszGetBaseMsrR0;
|
---|
1315 | /** The name of the R0 SetTpr entry point. */
|
---|
1316 | const char *pszSetTprR0;
|
---|
1317 | /** The name of the R0 GetTpr entry point. */
|
---|
1318 | const char *pszGetTprR0;
|
---|
1319 | /** The name of the R0 WriteMsr entry point. */
|
---|
1320 | const char *pszWriteMsrR0;
|
---|
1321 | /** The name of the R0 ReadMsr entry point. */
|
---|
1322 | const char *pszReadMsrR0;
|
---|
1323 | /** The name of the R0 BusDeliver entry point. */
|
---|
1324 | const char *pszBusDeliverR0;
|
---|
1325 | /** The name of the R0 LocalInterrupt entry point. */
|
---|
1326 | const char *pszLocalInterruptR0;
|
---|
1327 | /** The name of the R0 GetTimerFreq entry point. */
|
---|
1328 | const char *pszGetTimerFreqR0;
|
---|
1329 | } PDMAPICREG;
|
---|
1330 | /** Pointer to an APIC registration structure. */
|
---|
1331 | typedef PDMAPICREG *PPDMAPICREG;
|
---|
1332 |
|
---|
1333 | /** Current PDMAPICREG version number. */
|
---|
1334 | #define PDM_APICREG_VERSION PDM_VERSION_MAKE(0xfff6, 4, 0)
|
---|
1335 |
|
---|
1336 |
|
---|
1337 | /**
|
---|
1338 | * APIC mode argument for pfnChangeFeature.
|
---|
1339 | *
|
---|
1340 | * Also used in saved-states, don't change existing values.
|
---|
1341 | */
|
---|
1342 | typedef enum PDMAPICMODE
|
---|
1343 | {
|
---|
1344 | /** Invalid 0 entry. */
|
---|
1345 | PDMAPICMODE_INVALID = 0,
|
---|
1346 | /** No APIC. */
|
---|
1347 | PDMAPICMODE_NONE,
|
---|
1348 | /** Standard APIC (X86_CPUID_FEATURE_EDX_APIC). */
|
---|
1349 | PDMAPICMODE_APIC,
|
---|
1350 | /** Intel X2APIC (X86_CPUID_FEATURE_ECX_X2APIC). */
|
---|
1351 | PDMAPICMODE_X2APIC,
|
---|
1352 | /** The usual 32-bit paranoia. */
|
---|
1353 | PDMAPICMODE_32BIT_HACK = 0x7fffffff
|
---|
1354 | } PDMAPICMODE;
|
---|
1355 |
|
---|
1356 | /**
|
---|
1357 | * APIC irq argument for pfnSetInterruptFF and pfnClearInterruptFF.
|
---|
1358 | */
|
---|
1359 | typedef enum PDMAPICIRQ
|
---|
1360 | {
|
---|
1361 | /** Invalid 0 entry. */
|
---|
1362 | PDMAPICIRQ_INVALID = 0,
|
---|
1363 | /** Normal hardware interrupt. */
|
---|
1364 | PDMAPICIRQ_HARDWARE,
|
---|
1365 | /** NMI. */
|
---|
1366 | PDMAPICIRQ_NMI,
|
---|
1367 | /** SMI. */
|
---|
1368 | PDMAPICIRQ_SMI,
|
---|
1369 | /** ExtINT (HW interrupt via PIC). */
|
---|
1370 | PDMAPICIRQ_EXTINT,
|
---|
1371 | /** Interrupt arrived, needs to be updated to the IRR. */
|
---|
1372 | PDMAPICIRQ_UPDATE_PENDING,
|
---|
1373 | /** The usual 32-bit paranoia. */
|
---|
1374 | PDMAPICIRQ_32BIT_HACK = 0x7fffffff
|
---|
1375 | } PDMAPICIRQ;
|
---|
1376 |
|
---|
1377 |
|
---|
1378 | /**
|
---|
1379 | * APIC RC helpers.
|
---|
1380 | */
|
---|
1381 | typedef struct PDMAPICHLPRC
|
---|
1382 | {
|
---|
1383 | /** Structure version. PDM_APICHLPRC_VERSION defines the current version. */
|
---|
1384 | uint32_t u32Version;
|
---|
1385 |
|
---|
1386 | /**
|
---|
1387 | * Set the interrupt force action flag.
|
---|
1388 | *
|
---|
1389 | * @param pDevIns Device instance of the APIC.
|
---|
1390 | * @param enmType IRQ type.
|
---|
1391 | * @param idCpu Virtual CPU to set flag upon.
|
---|
1392 | */
|
---|
1393 | DECLRCCALLBACKMEMBER(void, pfnSetInterruptFF,(PPDMDEVINS pDevIns, PDMAPICIRQ enmType, VMCPUID idCpu));
|
---|
1394 |
|
---|
1395 | /**
|
---|
1396 | * Clear the interrupt force action flag.
|
---|
1397 | *
|
---|
1398 | * @param pDevIns Device instance of the APIC.
|
---|
1399 | * @param enmType IRQ type.
|
---|
1400 | * @param idCpu Virtual CPU to clear flag upon.
|
---|
1401 | */
|
---|
1402 | DECLRCCALLBACKMEMBER(void, pfnClearInterruptFF,(PPDMDEVINS pDevIns, PDMAPICIRQ enmType, VMCPUID idCpu));
|
---|
1403 |
|
---|
1404 | /**
|
---|
1405 | * Calculates an IRQ tag for a timer, IPI or similar event.
|
---|
1406 | *
|
---|
1407 | * @returns The IRQ tag.
|
---|
1408 | * @param pDevIns Device instance of the APIC.
|
---|
1409 | * @param u8Level PDM_IRQ_LEVEL_HIGH or PDM_IRQ_LEVEL_FLIP_FLOP.
|
---|
1410 | */
|
---|
1411 | DECLRCCALLBACKMEMBER(uint32_t, pfnCalcIrqTag,(PPDMDEVINS pDevIns, uint8_t u8Level));
|
---|
1412 |
|
---|
1413 | /**
|
---|
1414 | * Modifies APIC-related bits in the CPUID feature mask.
|
---|
1415 | *
|
---|
1416 | * @param pDevIns Device instance of the APIC.
|
---|
1417 | * @param enmMode Supported APIC mode.
|
---|
1418 | */
|
---|
1419 | DECLRCCALLBACKMEMBER(void, pfnChangeFeature,(PPDMDEVINS pDevIns, PDMAPICMODE enmMode));
|
---|
1420 |
|
---|
1421 | /**
|
---|
1422 | * Acquires the PDM lock.
|
---|
1423 | *
|
---|
1424 | * @returns VINF_SUCCESS on success.
|
---|
1425 | * @returns rc if we failed to acquire the lock.
|
---|
1426 | * @param pDevIns The APIC device instance.
|
---|
1427 | * @param rc What to return if we fail to acquire the lock.
|
---|
1428 | */
|
---|
1429 | DECLRCCALLBACKMEMBER(int, pfnLock,(PPDMDEVINS pDevIns, int rc));
|
---|
1430 |
|
---|
1431 | /**
|
---|
1432 | * Releases the PDM lock.
|
---|
1433 | *
|
---|
1434 | * @param pDevIns The APIC device instance.
|
---|
1435 | */
|
---|
1436 | DECLRCCALLBACKMEMBER(void, pfnUnlock,(PPDMDEVINS pDevIns));
|
---|
1437 |
|
---|
1438 | /**
|
---|
1439 | * Get the virtual CPU id corresponding to the current EMT.
|
---|
1440 | *
|
---|
1441 | * @param pDevIns The APIC device instance.
|
---|
1442 | */
|
---|
1443 | DECLRCCALLBACKMEMBER(VMCPUID, pfnGetCpuId,(PPDMDEVINS pDevIns));
|
---|
1444 |
|
---|
1445 | /** Just a safety precaution. */
|
---|
1446 | uint32_t u32TheEnd;
|
---|
1447 | } PDMAPICHLPRC;
|
---|
1448 | /** Pointer to APIC GC helpers. */
|
---|
1449 | typedef RCPTRTYPE(PDMAPICHLPRC *) PPDMAPICHLPRC;
|
---|
1450 | /** Pointer to const APIC helpers. */
|
---|
1451 | typedef RCPTRTYPE(const PDMAPICHLPRC *) PCPDMAPICHLPRC;
|
---|
1452 |
|
---|
1453 | /** Current PDMAPICHLPRC version number. */
|
---|
1454 | #define PDM_APICHLPRC_VERSION PDM_VERSION_MAKE(0xfff5, 2, 0)
|
---|
1455 |
|
---|
1456 |
|
---|
1457 | /**
|
---|
1458 | * APIC R0 helpers.
|
---|
1459 | */
|
---|
1460 | typedef struct PDMAPICHLPR0
|
---|
1461 | {
|
---|
1462 | /** Structure version. PDM_APICHLPR0_VERSION defines the current version. */
|
---|
1463 | uint32_t u32Version;
|
---|
1464 |
|
---|
1465 | /**
|
---|
1466 | * Set the interrupt force action flag.
|
---|
1467 | *
|
---|
1468 | * @param pDevIns Device instance of the APIC.
|
---|
1469 | * @param enmType IRQ type.
|
---|
1470 | * @param idCpu Virtual CPU to set flag upon.
|
---|
1471 | */
|
---|
1472 | DECLR0CALLBACKMEMBER(void, pfnSetInterruptFF,(PPDMDEVINS pDevIns, PDMAPICIRQ enmType, VMCPUID idCpu));
|
---|
1473 |
|
---|
1474 | /**
|
---|
1475 | * Clear the interrupt force action flag.
|
---|
1476 | *
|
---|
1477 | * @param pDevIns Device instance of the APIC.
|
---|
1478 | * @param enmType IRQ type.
|
---|
1479 | * @param idCpu Virtual CPU to clear flag upon.
|
---|
1480 | */
|
---|
1481 | DECLR0CALLBACKMEMBER(void, pfnClearInterruptFF,(PPDMDEVINS pDevIns, PDMAPICIRQ enmType, VMCPUID idCpu));
|
---|
1482 |
|
---|
1483 | /**
|
---|
1484 | * Calculates an IRQ tag for a timer, IPI or similar event.
|
---|
1485 | *
|
---|
1486 | * @returns The IRQ tag.
|
---|
1487 | * @param pDevIns Device instance of the APIC.
|
---|
1488 | * @param u8Level PDM_IRQ_LEVEL_HIGH or PDM_IRQ_LEVEL_FLIP_FLOP.
|
---|
1489 | */
|
---|
1490 | DECLR0CALLBACKMEMBER(uint32_t, pfnCalcIrqTag,(PPDMDEVINS pDevIns, uint8_t u8Level));
|
---|
1491 |
|
---|
1492 | /**
|
---|
1493 | * Modifies APIC-related bits in the CPUID feature mask.
|
---|
1494 | *
|
---|
1495 | * @param pDevIns Device instance of the APIC.
|
---|
1496 | * @param enmMode Supported APIC mode.
|
---|
1497 | */
|
---|
1498 | DECLR0CALLBACKMEMBER(void, pfnChangeFeature,(PPDMDEVINS pDevIns, PDMAPICMODE enmMode));
|
---|
1499 |
|
---|
1500 | /**
|
---|
1501 | * Acquires the PDM lock.
|
---|
1502 | *
|
---|
1503 | * @returns VINF_SUCCESS on success.
|
---|
1504 | * @returns rc if we failed to acquire the lock.
|
---|
1505 | * @param pDevIns The APIC device instance.
|
---|
1506 | * @param rc What to return if we fail to acquire the lock.
|
---|
1507 | */
|
---|
1508 | DECLR0CALLBACKMEMBER(int, pfnLock,(PPDMDEVINS pDevIns, int rc));
|
---|
1509 |
|
---|
1510 | /**
|
---|
1511 | * Releases the PDM lock.
|
---|
1512 | *
|
---|
1513 | * @param pDevIns The APIC device instance.
|
---|
1514 | */
|
---|
1515 | DECLR0CALLBACKMEMBER(void, pfnUnlock,(PPDMDEVINS pDevIns));
|
---|
1516 |
|
---|
1517 | /**
|
---|
1518 | * Get the virtual CPU id corresponding to the current EMT.
|
---|
1519 | *
|
---|
1520 | * @param pDevIns The APIC device instance.
|
---|
1521 | */
|
---|
1522 | DECLR0CALLBACKMEMBER(VMCPUID, pfnGetCpuId,(PPDMDEVINS pDevIns));
|
---|
1523 |
|
---|
1524 | /** Just a safety precaution. */
|
---|
1525 | uint32_t u32TheEnd;
|
---|
1526 | } PDMAPICHLPR0;
|
---|
1527 | /** Pointer to APIC GC helpers. */
|
---|
1528 | typedef RCPTRTYPE(PDMAPICHLPR0 *) PPDMAPICHLPR0;
|
---|
1529 | /** Pointer to const APIC helpers. */
|
---|
1530 | typedef R0PTRTYPE(const PDMAPICHLPR0 *) PCPDMAPICHLPR0;
|
---|
1531 |
|
---|
1532 | /** Current PDMAPICHLPR0 version number. */
|
---|
1533 | #define PDM_APICHLPR0_VERSION PDM_VERSION_MAKE(0xfff4, 2, 0)
|
---|
1534 |
|
---|
1535 | /**
|
---|
1536 | * APIC R3 helpers.
|
---|
1537 | */
|
---|
1538 | typedef struct PDMAPICHLPR3
|
---|
1539 | {
|
---|
1540 | /** Structure version. PDM_APICHLPR3_VERSION defines the current version. */
|
---|
1541 | uint32_t u32Version;
|
---|
1542 |
|
---|
1543 | /**
|
---|
1544 | * Set the interrupt force action flag.
|
---|
1545 | *
|
---|
1546 | * @param pDevIns Device instance of the APIC.
|
---|
1547 | * @param enmType IRQ type.
|
---|
1548 | * @param idCpu Virtual CPU to set flag upon.
|
---|
1549 | */
|
---|
1550 | DECLR3CALLBACKMEMBER(void, pfnSetInterruptFF,(PPDMDEVINS pDevIns, PDMAPICIRQ enmType, VMCPUID idCpu));
|
---|
1551 |
|
---|
1552 | /**
|
---|
1553 | * Clear the interrupt force action flag.
|
---|
1554 | *
|
---|
1555 | * @param pDevIns Device instance of the APIC.
|
---|
1556 | * @param enmType IRQ type.
|
---|
1557 | * @param idCpu Virtual CPU to clear flag upon.
|
---|
1558 | */
|
---|
1559 | DECLR3CALLBACKMEMBER(void, pfnClearInterruptFF,(PPDMDEVINS pDevIns, PDMAPICIRQ enmType, VMCPUID idCpu));
|
---|
1560 |
|
---|
1561 | /**
|
---|
1562 | * Calculates an IRQ tag for a timer, IPI or similar event.
|
---|
1563 | *
|
---|
1564 | * @returns The IRQ tag.
|
---|
1565 | * @param pDevIns Device instance of the APIC.
|
---|
1566 | * @param u8Level PDM_IRQ_LEVEL_HIGH or PDM_IRQ_LEVEL_FLIP_FLOP.
|
---|
1567 | */
|
---|
1568 | DECLR3CALLBACKMEMBER(uint32_t, pfnCalcIrqTag,(PPDMDEVINS pDevIns, uint8_t u8Level));
|
---|
1569 |
|
---|
1570 | /**
|
---|
1571 | * Modifies APIC-related bits in the CPUID feature mask.
|
---|
1572 | *
|
---|
1573 | * @param pDevIns Device instance of the APIC.
|
---|
1574 | * @param enmMode Supported APIC mode.
|
---|
1575 | */
|
---|
1576 | DECLR3CALLBACKMEMBER(void, pfnChangeFeature,(PPDMDEVINS pDevIns, PDMAPICMODE enmMode));
|
---|
1577 |
|
---|
1578 | /**
|
---|
1579 | * Get the virtual CPU id corresponding to the current EMT.
|
---|
1580 | *
|
---|
1581 | * @param pDevIns The APIC device instance.
|
---|
1582 | */
|
---|
1583 | DECLR3CALLBACKMEMBER(VMCPUID, pfnGetCpuId,(PPDMDEVINS pDevIns));
|
---|
1584 |
|
---|
1585 | /**
|
---|
1586 | * Sends Startup IPI to given virtual CPU.
|
---|
1587 | *
|
---|
1588 | * @param pDevIns The APIC device instance.
|
---|
1589 | * @param idCpu Virtual CPU to perform Startup IPI on.
|
---|
1590 | * @param uVector Startup IPI vector.
|
---|
1591 | */
|
---|
1592 | DECLR3CALLBACKMEMBER(void, pfnSendStartupIpi,(PPDMDEVINS pDevIns, VMCPUID idCpu, uint32_t uVector));
|
---|
1593 |
|
---|
1594 | /**
|
---|
1595 | * Sends INIT IPI to given virtual CPU, should result in reset and
|
---|
1596 | * halting till Startup IPI.
|
---|
1597 | *
|
---|
1598 | * @param pDevIns The APIC device instance.
|
---|
1599 | * @param idCpu Virtual CPU to perform INIT IPI on.
|
---|
1600 | */
|
---|
1601 | DECLR3CALLBACKMEMBER(void, pfnSendInitIpi,(PPDMDEVINS pDevIns, VMCPUID idCpu));
|
---|
1602 |
|
---|
1603 | /**
|
---|
1604 | * Gets the address of the RC APIC helpers.
|
---|
1605 | *
|
---|
1606 | * This should be called at both construction and relocation time
|
---|
1607 | * to obtain the correct address of the RC helpers.
|
---|
1608 | *
|
---|
1609 | * @returns GC pointer to the APIC helpers.
|
---|
1610 | * @param pDevIns Device instance of the APIC.
|
---|
1611 | */
|
---|
1612 | DECLR3CALLBACKMEMBER(PCPDMAPICHLPRC, pfnGetRCHelpers,(PPDMDEVINS pDevIns));
|
---|
1613 |
|
---|
1614 | /**
|
---|
1615 | * Gets the address of the R0 APIC helpers.
|
---|
1616 | *
|
---|
1617 | * This should be called at both construction and relocation time
|
---|
1618 | * to obtain the correct address of the R0 helpers.
|
---|
1619 | *
|
---|
1620 | * @returns R0 pointer to the APIC helpers.
|
---|
1621 | * @param pDevIns Device instance of the APIC.
|
---|
1622 | */
|
---|
1623 | DECLR3CALLBACKMEMBER(PCPDMAPICHLPR0, pfnGetR0Helpers,(PPDMDEVINS pDevIns));
|
---|
1624 |
|
---|
1625 | /**
|
---|
1626 | * Get the critical section used to synchronize the PICs, PCI and stuff.
|
---|
1627 | *
|
---|
1628 | * @returns Ring-3 pointer to the critical section.
|
---|
1629 | * @param pDevIns The APIC device instance.
|
---|
1630 | */
|
---|
1631 | DECLR3CALLBACKMEMBER(R3PTRTYPE(PPDMCRITSECT), pfnGetR3CritSect,(PPDMDEVINS pDevIns));
|
---|
1632 |
|
---|
1633 | /**
|
---|
1634 | * Get the critical section used to synchronize the PICs, PCI and stuff.
|
---|
1635 | *
|
---|
1636 | * @returns Raw-mode context pointer to the critical section.
|
---|
1637 | * @param pDevIns The APIC device instance.
|
---|
1638 | */
|
---|
1639 | DECLR3CALLBACKMEMBER(RCPTRTYPE(PPDMCRITSECT), pfnGetRCCritSect,(PPDMDEVINS pDevIns));
|
---|
1640 |
|
---|
1641 | /**
|
---|
1642 | * Get the critical section used to synchronize the PICs, PCI and stuff.
|
---|
1643 | *
|
---|
1644 | * @returns Ring-0 pointer to the critical section.
|
---|
1645 | * @param pDevIns The APIC device instance.
|
---|
1646 | */
|
---|
1647 | DECLR3CALLBACKMEMBER(R0PTRTYPE(PPDMCRITSECT), pfnGetR0CritSect,(PPDMDEVINS pDevIns));
|
---|
1648 |
|
---|
1649 | /** Just a safety precaution. */
|
---|
1650 | uint32_t u32TheEnd;
|
---|
1651 | } PDMAPICHLPR3;
|
---|
1652 | /** Pointer to APIC helpers. */
|
---|
1653 | typedef R3PTRTYPE(PDMAPICHLPR3 *) PPDMAPICHLPR3;
|
---|
1654 | /** Pointer to const APIC helpers. */
|
---|
1655 | typedef R3PTRTYPE(const PDMAPICHLPR3 *) PCPDMAPICHLPR3;
|
---|
1656 |
|
---|
1657 | /** Current PDMAPICHLP version number. */
|
---|
1658 | #define PDM_APICHLPR3_VERSION PDM_VERSION_MAKE(0xfff3, 2, 0)
|
---|
1659 |
|
---|
1660 |
|
---|
1661 | /**
|
---|
1662 | * I/O APIC registration structure.
|
---|
1663 | */
|
---|
1664 | typedef struct PDMIOAPICREG
|
---|
1665 | {
|
---|
1666 | /** Struct version+magic number (PDM_IOAPICREG_VERSION). */
|
---|
1667 | uint32_t u32Version;
|
---|
1668 |
|
---|
1669 | /**
|
---|
1670 | * Set the an IRQ.
|
---|
1671 | *
|
---|
1672 | * @param pDevIns Device instance of the I/O APIC.
|
---|
1673 | * @param iIrq IRQ number to set.
|
---|
1674 | * @param iLevel IRQ level. See the PDM_IRQ_LEVEL_* \#defines.
|
---|
1675 | * @param uTagSrc The IRQ tag and source (for tracing).
|
---|
1676 | * @remarks Caller enters the PDM critical section
|
---|
1677 | */
|
---|
1678 | DECLR3CALLBACKMEMBER(void, pfnSetIrqR3,(PPDMDEVINS pDevIns, int iIrq, int iLevel, uint32_t uTagSrc));
|
---|
1679 |
|
---|
1680 | /** The name of the RC SetIrq entry point. */
|
---|
1681 | const char *pszSetIrqRC;
|
---|
1682 |
|
---|
1683 | /** The name of the R0 SetIrq entry point. */
|
---|
1684 | const char *pszSetIrqR0;
|
---|
1685 |
|
---|
1686 | /**
|
---|
1687 | * Send a MSI.
|
---|
1688 | *
|
---|
1689 | * @param pDevIns Device instance of the I/O APIC.
|
---|
1690 | * @param GCPhys Request address.
|
---|
1691 | * @param uValue Request value.
|
---|
1692 | * @param uTagSrc The IRQ tag and source (for tracing).
|
---|
1693 | * @remarks Caller enters the PDM critical section
|
---|
1694 | */
|
---|
1695 | DECLR3CALLBACKMEMBER(void, pfnSendMsiR3,(PPDMDEVINS pDevIns, RTGCPHYS GCPhys, uint32_t uValue, uint32_t uTagSrc));
|
---|
1696 |
|
---|
1697 | /** The name of the RC SendMsi entry point. */
|
---|
1698 | const char *pszSendMsiRC;
|
---|
1699 |
|
---|
1700 | /** The name of the R0 SendMsi entry point. */
|
---|
1701 | const char *pszSendMsiR0;
|
---|
1702 | } PDMIOAPICREG;
|
---|
1703 | /** Pointer to an APIC registration structure. */
|
---|
1704 | typedef PDMIOAPICREG *PPDMIOAPICREG;
|
---|
1705 |
|
---|
1706 | /** Current PDMAPICREG version number. */
|
---|
1707 | #define PDM_IOAPICREG_VERSION PDM_VERSION_MAKE(0xfff2, 3, 0)
|
---|
1708 |
|
---|
1709 |
|
---|
1710 | /**
|
---|
1711 | * IOAPIC RC helpers.
|
---|
1712 | */
|
---|
1713 | typedef struct PDMIOAPICHLPRC
|
---|
1714 | {
|
---|
1715 | /** Structure version. PDM_IOAPICHLPRC_VERSION defines the current version. */
|
---|
1716 | uint32_t u32Version;
|
---|
1717 |
|
---|
1718 | /**
|
---|
1719 | * Private interface between the IOAPIC and APIC.
|
---|
1720 | *
|
---|
1721 | * See comments about this hack on PDMAPICREG::pfnBusDeliverR3.
|
---|
1722 | *
|
---|
1723 | * @returns status code.
|
---|
1724 | * @param pDevIns Device instance of the IOAPIC.
|
---|
1725 | * @param u8Dest See APIC implementation.
|
---|
1726 | * @param u8DestMode See APIC implementation.
|
---|
1727 | * @param u8DeliveryMode See APIC implementation.
|
---|
1728 | * @param iVector See APIC implementation.
|
---|
1729 | * @param u8Polarity See APIC implementation.
|
---|
1730 | * @param u8TriggerMode See APIC implementation.
|
---|
1731 | * @param uTagSrc The IRQ tag and source (for tracing).
|
---|
1732 | */
|
---|
1733 | DECLRCCALLBACKMEMBER(int, pfnApicBusDeliver,(PPDMDEVINS pDevIns, uint8_t u8Dest, uint8_t u8DestMode, uint8_t u8DeliveryMode,
|
---|
1734 | uint8_t iVector, uint8_t u8Polarity, uint8_t u8TriggerMode, uint32_t uTagSrc));
|
---|
1735 |
|
---|
1736 | /**
|
---|
1737 | * Acquires the PDM lock.
|
---|
1738 | *
|
---|
1739 | * @returns VINF_SUCCESS on success.
|
---|
1740 | * @returns rc if we failed to acquire the lock.
|
---|
1741 | * @param pDevIns The IOAPIC device instance.
|
---|
1742 | * @param rc What to return if we fail to acquire the lock.
|
---|
1743 | */
|
---|
1744 | DECLRCCALLBACKMEMBER(int, pfnLock,(PPDMDEVINS pDevIns, int rc));
|
---|
1745 |
|
---|
1746 | /**
|
---|
1747 | * Releases the PDM lock.
|
---|
1748 | *
|
---|
1749 | * @param pDevIns The IOAPIC device instance.
|
---|
1750 | */
|
---|
1751 | DECLRCCALLBACKMEMBER(void, pfnUnlock,(PPDMDEVINS pDevIns));
|
---|
1752 |
|
---|
1753 | /** Just a safety precaution. */
|
---|
1754 | uint32_t u32TheEnd;
|
---|
1755 | } PDMIOAPICHLPRC;
|
---|
1756 | /** Pointer to IOAPIC RC helpers. */
|
---|
1757 | typedef RCPTRTYPE(PDMIOAPICHLPRC *) PPDMIOAPICHLPRC;
|
---|
1758 | /** Pointer to const IOAPIC helpers. */
|
---|
1759 | typedef RCPTRTYPE(const PDMIOAPICHLPRC *) PCPDMIOAPICHLPRC;
|
---|
1760 |
|
---|
1761 | /** Current PDMIOAPICHLPRC version number. */
|
---|
1762 | #define PDM_IOAPICHLPRC_VERSION PDM_VERSION_MAKE(0xfff1, 2, 0)
|
---|
1763 |
|
---|
1764 |
|
---|
1765 | /**
|
---|
1766 | * IOAPIC R0 helpers.
|
---|
1767 | */
|
---|
1768 | typedef struct PDMIOAPICHLPR0
|
---|
1769 | {
|
---|
1770 | /** Structure version. PDM_IOAPICHLPR0_VERSION defines the current version. */
|
---|
1771 | uint32_t u32Version;
|
---|
1772 |
|
---|
1773 | /**
|
---|
1774 | * Private interface between the IOAPIC and APIC.
|
---|
1775 | *
|
---|
1776 | * See comments about this hack on PDMAPICREG::pfnBusDeliverR3.
|
---|
1777 | *
|
---|
1778 | * @returns status code.
|
---|
1779 | * @param pDevIns Device instance of the IOAPIC.
|
---|
1780 | * @param u8Dest See APIC implementation.
|
---|
1781 | * @param u8DestMode See APIC implementation.
|
---|
1782 | * @param u8DeliveryMode See APIC implementation.
|
---|
1783 | * @param iVector See APIC implementation.
|
---|
1784 | * @param u8Polarity See APIC implementation.
|
---|
1785 | * @param u8TriggerMode See APIC implementation.
|
---|
1786 | * @param uTagSrc The IRQ tag and source (for tracing).
|
---|
1787 | */
|
---|
1788 | DECLR0CALLBACKMEMBER(int, pfnApicBusDeliver,(PPDMDEVINS pDevIns, uint8_t u8Dest, uint8_t u8DestMode, uint8_t u8DeliveryMode,
|
---|
1789 | uint8_t iVector, uint8_t u8Polarity, uint8_t u8TriggerMode, uint32_t uTagSrc));
|
---|
1790 |
|
---|
1791 | /**
|
---|
1792 | * Acquires the PDM lock.
|
---|
1793 | *
|
---|
1794 | * @returns VINF_SUCCESS on success.
|
---|
1795 | * @returns rc if we failed to acquire the lock.
|
---|
1796 | * @param pDevIns The IOAPIC device instance.
|
---|
1797 | * @param rc What to return if we fail to acquire the lock.
|
---|
1798 | */
|
---|
1799 | DECLR0CALLBACKMEMBER(int, pfnLock,(PPDMDEVINS pDevIns, int rc));
|
---|
1800 |
|
---|
1801 | /**
|
---|
1802 | * Releases the PDM lock.
|
---|
1803 | *
|
---|
1804 | * @param pDevIns The IOAPIC device instance.
|
---|
1805 | */
|
---|
1806 | DECLR0CALLBACKMEMBER(void, pfnUnlock,(PPDMDEVINS pDevIns));
|
---|
1807 |
|
---|
1808 | /** Just a safety precaution. */
|
---|
1809 | uint32_t u32TheEnd;
|
---|
1810 | } PDMIOAPICHLPR0;
|
---|
1811 | /** Pointer to IOAPIC R0 helpers. */
|
---|
1812 | typedef R0PTRTYPE(PDMIOAPICHLPR0 *) PPDMIOAPICHLPR0;
|
---|
1813 | /** Pointer to const IOAPIC helpers. */
|
---|
1814 | typedef R0PTRTYPE(const PDMIOAPICHLPR0 *) PCPDMIOAPICHLPR0;
|
---|
1815 |
|
---|
1816 | /** Current PDMIOAPICHLPR0 version number. */
|
---|
1817 | #define PDM_IOAPICHLPR0_VERSION PDM_VERSION_MAKE(0xfff0, 2, 0)
|
---|
1818 |
|
---|
1819 | /**
|
---|
1820 | * IOAPIC R3 helpers.
|
---|
1821 | */
|
---|
1822 | typedef struct PDMIOAPICHLPR3
|
---|
1823 | {
|
---|
1824 | /** Structure version. PDM_IOAPICHLPR3_VERSION defines the current version. */
|
---|
1825 | uint32_t u32Version;
|
---|
1826 |
|
---|
1827 | /**
|
---|
1828 | * Private interface between the IOAPIC and APIC.
|
---|
1829 | *
|
---|
1830 | * See comments about this hack on PDMAPICREG::pfnBusDeliverR3.
|
---|
1831 | *
|
---|
1832 | * @returns status code
|
---|
1833 | * @param pDevIns Device instance of the IOAPIC.
|
---|
1834 | * @param u8Dest See APIC implementation.
|
---|
1835 | * @param u8DestMode See APIC implementation.
|
---|
1836 | * @param u8DeliveryMode See APIC implementation.
|
---|
1837 | * @param iVector See APIC implementation.
|
---|
1838 | * @param u8Polarity See APIC implementation.
|
---|
1839 | * @param u8TriggerMode See APIC implementation.
|
---|
1840 | * @param uTagSrc The IRQ tag and source (for tracing).
|
---|
1841 | */
|
---|
1842 | DECLR3CALLBACKMEMBER(int, pfnApicBusDeliver,(PPDMDEVINS pDevIns, uint8_t u8Dest, uint8_t u8DestMode, uint8_t u8DeliveryMode,
|
---|
1843 | uint8_t iVector, uint8_t u8Polarity, uint8_t u8TriggerMode, uint32_t uTagSrc));
|
---|
1844 |
|
---|
1845 | /**
|
---|
1846 | * Acquires the PDM lock.
|
---|
1847 | *
|
---|
1848 | * @returns VINF_SUCCESS on success.
|
---|
1849 | * @returns Fatal error on failure.
|
---|
1850 | * @param pDevIns The IOAPIC device instance.
|
---|
1851 | * @param rc Dummy for making the interface identical to the GC and R0 versions.
|
---|
1852 | */
|
---|
1853 | DECLR3CALLBACKMEMBER(int, pfnLock,(PPDMDEVINS pDevIns, int rc));
|
---|
1854 |
|
---|
1855 | /**
|
---|
1856 | * Releases the PDM lock.
|
---|
1857 | *
|
---|
1858 | * @param pDevIns The IOAPIC device instance.
|
---|
1859 | */
|
---|
1860 | DECLR3CALLBACKMEMBER(void, pfnUnlock,(PPDMDEVINS pDevIns));
|
---|
1861 |
|
---|
1862 | /**
|
---|
1863 | * Gets the address of the RC IOAPIC helpers.
|
---|
1864 | *
|
---|
1865 | * This should be called at both construction and relocation time
|
---|
1866 | * to obtain the correct address of the RC helpers.
|
---|
1867 | *
|
---|
1868 | * @returns RC pointer to the IOAPIC helpers.
|
---|
1869 | * @param pDevIns Device instance of the IOAPIC.
|
---|
1870 | */
|
---|
1871 | DECLR3CALLBACKMEMBER(PCPDMIOAPICHLPRC, pfnGetRCHelpers,(PPDMDEVINS pDevIns));
|
---|
1872 |
|
---|
1873 | /**
|
---|
1874 | * Gets the address of the R0 IOAPIC helpers.
|
---|
1875 | *
|
---|
1876 | * This should be called at both construction and relocation time
|
---|
1877 | * to obtain the correct address of the R0 helpers.
|
---|
1878 | *
|
---|
1879 | * @returns R0 pointer to the IOAPIC helpers.
|
---|
1880 | * @param pDevIns Device instance of the IOAPIC.
|
---|
1881 | */
|
---|
1882 | DECLR3CALLBACKMEMBER(PCPDMIOAPICHLPR0, pfnGetR0Helpers,(PPDMDEVINS pDevIns));
|
---|
1883 |
|
---|
1884 | /** Just a safety precaution. */
|
---|
1885 | uint32_t u32TheEnd;
|
---|
1886 | } PDMIOAPICHLPR3;
|
---|
1887 | /** Pointer to IOAPIC R3 helpers. */
|
---|
1888 | typedef R3PTRTYPE(PDMIOAPICHLPR3 *) PPDMIOAPICHLPR3;
|
---|
1889 | /** Pointer to const IOAPIC helpers. */
|
---|
1890 | typedef R3PTRTYPE(const PDMIOAPICHLPR3 *) PCPDMIOAPICHLPR3;
|
---|
1891 |
|
---|
1892 | /** Current PDMIOAPICHLPR3 version number. */
|
---|
1893 | #define PDM_IOAPICHLPR3_VERSION PDM_VERSION_MAKE(0xffef, 2, 0)
|
---|
1894 |
|
---|
1895 |
|
---|
1896 | /**
|
---|
1897 | * HPET registration structure.
|
---|
1898 | */
|
---|
1899 | typedef struct PDMHPETREG
|
---|
1900 | {
|
---|
1901 | /** Struct version+magic number (PDM_HPETREG_VERSION). */
|
---|
1902 | uint32_t u32Version;
|
---|
1903 |
|
---|
1904 | } PDMHPETREG;
|
---|
1905 | /** Pointer to an HPET registration structure. */
|
---|
1906 | typedef PDMHPETREG *PPDMHPETREG;
|
---|
1907 |
|
---|
1908 | /** Current PDMHPETREG version number. */
|
---|
1909 | #define PDM_HPETREG_VERSION PDM_VERSION_MAKE(0xffe2, 1, 0)
|
---|
1910 |
|
---|
1911 | /**
|
---|
1912 | * HPET RC helpers.
|
---|
1913 | *
|
---|
1914 | * @remarks Keep this around in case HPET will need PDM interaction in again RC
|
---|
1915 | * at some later point.
|
---|
1916 | */
|
---|
1917 | typedef struct PDMHPETHLPRC
|
---|
1918 | {
|
---|
1919 | /** Structure version. PDM_HPETHLPRC_VERSION defines the current version. */
|
---|
1920 | uint32_t u32Version;
|
---|
1921 |
|
---|
1922 | /** Just a safety precaution. */
|
---|
1923 | uint32_t u32TheEnd;
|
---|
1924 | } PDMHPETHLPRC;
|
---|
1925 |
|
---|
1926 | /** Pointer to HPET RC helpers. */
|
---|
1927 | typedef RCPTRTYPE(PDMHPETHLPRC *) PPDMHPETHLPRC;
|
---|
1928 | /** Pointer to const HPET RC helpers. */
|
---|
1929 | typedef RCPTRTYPE(const PDMHPETHLPRC *) PCPDMHPETHLPRC;
|
---|
1930 |
|
---|
1931 | /** Current PDMHPETHLPRC version number. */
|
---|
1932 | #define PDM_HPETHLPRC_VERSION PDM_VERSION_MAKE(0xffee, 2, 0)
|
---|
1933 |
|
---|
1934 |
|
---|
1935 | /**
|
---|
1936 | * HPET R0 helpers.
|
---|
1937 | *
|
---|
1938 | * @remarks Keep this around in case HPET will need PDM interaction in again R0
|
---|
1939 | * at some later point.
|
---|
1940 | */
|
---|
1941 | typedef struct PDMHPETHLPR0
|
---|
1942 | {
|
---|
1943 | /** Structure version. PDM_HPETHLPR0_VERSION defines the current version. */
|
---|
1944 | uint32_t u32Version;
|
---|
1945 |
|
---|
1946 | /** Just a safety precaution. */
|
---|
1947 | uint32_t u32TheEnd;
|
---|
1948 | } PDMHPETHLPR0;
|
---|
1949 |
|
---|
1950 | /** Pointer to HPET R0 helpers. */
|
---|
1951 | typedef R0PTRTYPE(PDMHPETHLPR0 *) PPDMHPETHLPR0;
|
---|
1952 | /** Pointer to const HPET R0 helpers. */
|
---|
1953 | typedef R0PTRTYPE(const PDMHPETHLPR0 *) PCPDMHPETHLPR0;
|
---|
1954 |
|
---|
1955 | /** Current PDMHPETHLPR0 version number. */
|
---|
1956 | #define PDM_HPETHLPR0_VERSION PDM_VERSION_MAKE(0xffed, 2, 0)
|
---|
1957 |
|
---|
1958 | /**
|
---|
1959 | * HPET R3 helpers.
|
---|
1960 | */
|
---|
1961 | typedef struct PDMHPETHLPR3
|
---|
1962 | {
|
---|
1963 | /** Structure version. PDM_HPETHLP_VERSION defines the current version. */
|
---|
1964 | uint32_t u32Version;
|
---|
1965 |
|
---|
1966 | /**
|
---|
1967 | * Gets the address of the RC HPET helpers.
|
---|
1968 | *
|
---|
1969 | * This should be called at both construction and relocation time
|
---|
1970 | * to obtain the correct address of the RC helpers.
|
---|
1971 | *
|
---|
1972 | * @returns RC pointer to the HPET helpers.
|
---|
1973 | * @param pDevIns Device instance of the HPET.
|
---|
1974 | */
|
---|
1975 | DECLR3CALLBACKMEMBER(PCPDMHPETHLPRC, pfnGetRCHelpers,(PPDMDEVINS pDevIns));
|
---|
1976 |
|
---|
1977 | /**
|
---|
1978 | * Gets the address of the R0 HPET helpers.
|
---|
1979 | *
|
---|
1980 | * This should be called at both construction and relocation time
|
---|
1981 | * to obtain the correct address of the R0 helpers.
|
---|
1982 | *
|
---|
1983 | * @returns R0 pointer to the HPET helpers.
|
---|
1984 | * @param pDevIns Device instance of the HPET.
|
---|
1985 | */
|
---|
1986 | DECLR3CALLBACKMEMBER(PCPDMHPETHLPR0, pfnGetR0Helpers,(PPDMDEVINS pDevIns));
|
---|
1987 |
|
---|
1988 | /**
|
---|
1989 | * Set legacy mode on PIT and RTC.
|
---|
1990 | *
|
---|
1991 | * @returns VINF_SUCCESS on success.
|
---|
1992 | * @returns rc if we failed to set legacy mode.
|
---|
1993 | * @param pDevIns Device instance of the HPET.
|
---|
1994 | * @param fActivated Whether legacy mode is activated or deactivated.
|
---|
1995 | */
|
---|
1996 | DECLR3CALLBACKMEMBER(int, pfnSetLegacyMode,(PPDMDEVINS pDevIns, bool fActivated));
|
---|
1997 |
|
---|
1998 |
|
---|
1999 | /**
|
---|
2000 | * Set IRQ, bypassing ISA bus override rules.
|
---|
2001 | *
|
---|
2002 | * @returns VINF_SUCCESS on success.
|
---|
2003 | * @returns rc if we failed to set legacy mode.
|
---|
2004 | * @param pDevIns Device instance of the HPET.
|
---|
2005 | * @param iIrq IRQ number to set.
|
---|
2006 | * @param iLevel IRQ level. See the PDM_IRQ_LEVEL_* \#defines.
|
---|
2007 | */
|
---|
2008 | DECLR3CALLBACKMEMBER(int, pfnSetIrq,(PPDMDEVINS pDevIns, int iIrq, int iLevel));
|
---|
2009 |
|
---|
2010 | /** Just a safety precaution. */
|
---|
2011 | uint32_t u32TheEnd;
|
---|
2012 | } PDMHPETHLPR3;
|
---|
2013 |
|
---|
2014 | /** Pointer to HPET R3 helpers. */
|
---|
2015 | typedef R3PTRTYPE(PDMHPETHLPR3 *) PPDMHPETHLPR3;
|
---|
2016 | /** Pointer to const HPET R3 helpers. */
|
---|
2017 | typedef R3PTRTYPE(const PDMHPETHLPR3 *) PCPDMHPETHLPR3;
|
---|
2018 |
|
---|
2019 | /** Current PDMHPETHLPR3 version number. */
|
---|
2020 | #define PDM_HPETHLPR3_VERSION PDM_VERSION_MAKE(0xffec, 2, 0)
|
---|
2021 |
|
---|
2022 |
|
---|
2023 | /**
|
---|
2024 | * Raw PCI device registration structure.
|
---|
2025 | */
|
---|
2026 | typedef struct PDMPCIRAWREG
|
---|
2027 | {
|
---|
2028 | /** Struct version+magic number (PDM_PCIRAWREG_VERSION). */
|
---|
2029 | uint32_t u32Version;
|
---|
2030 | /** Just a safety precaution. */
|
---|
2031 | uint32_t u32TheEnd;
|
---|
2032 | } PDMPCIRAWREG;
|
---|
2033 | /** Pointer to a raw PCI registration structure. */
|
---|
2034 | typedef PDMPCIRAWREG *PPDMPCIRAWREG;
|
---|
2035 |
|
---|
2036 | /** Current PDMPCIRAWREG version number. */
|
---|
2037 | #define PDM_PCIRAWREG_VERSION PDM_VERSION_MAKE(0xffe1, 1, 0)
|
---|
2038 |
|
---|
2039 | /**
|
---|
2040 | * Raw PCI device raw-mode context helpers.
|
---|
2041 | */
|
---|
2042 | typedef struct PDMPCIRAWHLPRC
|
---|
2043 | {
|
---|
2044 | /** Structure version and magic number (PDM_PCIRAWHLPRC_VERSION). */
|
---|
2045 | uint32_t u32Version;
|
---|
2046 | /** Just a safety precaution. */
|
---|
2047 | uint32_t u32TheEnd;
|
---|
2048 | } PDMPCIRAWHLPRC;
|
---|
2049 | /** Pointer to a raw PCI deviec raw-mode context helper structure. */
|
---|
2050 | typedef RCPTRTYPE(PDMPCIRAWHLPRC *) PPDMPCIRAWHLPRC;
|
---|
2051 | /** Pointer to a const raw PCI deviec raw-mode context helper structure. */
|
---|
2052 | typedef RCPTRTYPE(const PDMPCIRAWHLPRC *) PCPDMPCIRAWHLPRC;
|
---|
2053 |
|
---|
2054 | /** Current PDMPCIRAWHLPRC version number. */
|
---|
2055 | #define PDM_PCIRAWHLPRC_VERSION PDM_VERSION_MAKE(0xffe0, 1, 0)
|
---|
2056 |
|
---|
2057 | /**
|
---|
2058 | * Raw PCI device ring-0 context helpers.
|
---|
2059 | */
|
---|
2060 | typedef struct PDMPCIRAWHLPR0
|
---|
2061 | {
|
---|
2062 | /** Structure version and magic number (PDM_PCIRAWHLPR0_VERSION). */
|
---|
2063 | uint32_t u32Version;
|
---|
2064 | /** Just a safety precaution. */
|
---|
2065 | uint32_t u32TheEnd;
|
---|
2066 | } PDMPCIRAWHLPR0;
|
---|
2067 | /** Pointer to a raw PCI deviec ring-0 context helper structure. */
|
---|
2068 | typedef R0PTRTYPE(PDMPCIRAWHLPR0 *) PPDMPCIRAWHLPR0;
|
---|
2069 | /** Pointer to a const raw PCI deviec ring-0 context helper structure. */
|
---|
2070 | typedef R0PTRTYPE(const PDMPCIRAWHLPR0 *) PCPDMPCIRAWHLPR0;
|
---|
2071 |
|
---|
2072 | /** Current PDMPCIRAWHLPR0 version number. */
|
---|
2073 | #define PDM_PCIRAWHLPR0_VERSION PDM_VERSION_MAKE(0xffdf, 1, 0)
|
---|
2074 |
|
---|
2075 |
|
---|
2076 | /**
|
---|
2077 | * Raw PCI device ring-3 context helpers.
|
---|
2078 | */
|
---|
2079 | typedef struct PDMPCIRAWHLPR3
|
---|
2080 | {
|
---|
2081 | /** Undefined structure version and magic number. */
|
---|
2082 | uint32_t u32Version;
|
---|
2083 |
|
---|
2084 | /**
|
---|
2085 | * Gets the address of the RC raw PCI device helpers.
|
---|
2086 | *
|
---|
2087 | * This should be called at both construction and relocation time to obtain
|
---|
2088 | * the correct address of the RC helpers.
|
---|
2089 | *
|
---|
2090 | * @returns RC pointer to the raw PCI device helpers.
|
---|
2091 | * @param pDevIns Device instance of the raw PCI device.
|
---|
2092 | */
|
---|
2093 | DECLR3CALLBACKMEMBER(PCPDMPCIRAWHLPRC, pfnGetRCHelpers,(PPDMDEVINS pDevIns));
|
---|
2094 |
|
---|
2095 | /**
|
---|
2096 | * Gets the address of the R0 raw PCI device helpers.
|
---|
2097 | *
|
---|
2098 | * This should be called at both construction and relocation time to obtain
|
---|
2099 | * the correct address of the R0 helpers.
|
---|
2100 | *
|
---|
2101 | * @returns R0 pointer to the raw PCI device helpers.
|
---|
2102 | * @param pDevIns Device instance of the raw PCI device.
|
---|
2103 | */
|
---|
2104 | DECLR3CALLBACKMEMBER(PCPDMPCIRAWHLPR0, pfnGetR0Helpers,(PPDMDEVINS pDevIns));
|
---|
2105 |
|
---|
2106 | /** Just a safety precaution. */
|
---|
2107 | uint32_t u32TheEnd;
|
---|
2108 | } PDMPCIRAWHLPR3;
|
---|
2109 | /** Pointer to raw PCI R3 helpers. */
|
---|
2110 | typedef R3PTRTYPE(PDMPCIRAWHLPR3 *) PPDMPCIRAWHLPR3;
|
---|
2111 | /** Pointer to const raw PCI R3 helpers. */
|
---|
2112 | typedef R3PTRTYPE(const PDMPCIRAWHLPR3 *) PCPDMPCIRAWHLPR3;
|
---|
2113 |
|
---|
2114 | /** Current PDMPCIRAWHLPR3 version number. */
|
---|
2115 | #define PDM_PCIRAWHLPR3_VERSION PDM_VERSION_MAKE(0xffde, 1, 0)
|
---|
2116 |
|
---|
2117 |
|
---|
2118 | #ifdef IN_RING3
|
---|
2119 |
|
---|
2120 | /**
|
---|
2121 | * DMA Transfer Handler.
|
---|
2122 | *
|
---|
2123 | * @returns Number of bytes transferred.
|
---|
2124 | * @param pDevIns Device instance of the DMA.
|
---|
2125 | * @param pvUser User pointer.
|
---|
2126 | * @param uChannel Channel number.
|
---|
2127 | * @param off DMA position.
|
---|
2128 | * @param cb Block size.
|
---|
2129 | * @remarks The device lock is not taken, however, the DMA device lock is held.
|
---|
2130 | */
|
---|
2131 | typedef DECLCALLBACK(uint32_t) FNDMATRANSFERHANDLER(PPDMDEVINS pDevIns, void *pvUser, unsigned uChannel, uint32_t off, uint32_t cb);
|
---|
2132 | /** Pointer to a FNDMATRANSFERHANDLER(). */
|
---|
2133 | typedef FNDMATRANSFERHANDLER *PFNDMATRANSFERHANDLER;
|
---|
2134 |
|
---|
2135 | /**
|
---|
2136 | * DMA Controller registration structure.
|
---|
2137 | */
|
---|
2138 | typedef struct PDMDMAREG
|
---|
2139 | {
|
---|
2140 | /** Structure version number. PDM_DMACREG_VERSION defines the current version. */
|
---|
2141 | uint32_t u32Version;
|
---|
2142 |
|
---|
2143 | /**
|
---|
2144 | * Execute pending transfers.
|
---|
2145 | *
|
---|
2146 | * @returns A more work indiciator. I.e. 'true' if there is more to be done, and 'false' if all is done.
|
---|
2147 | * @param pDevIns Device instance of the DMAC.
|
---|
2148 | * @remarks No locks held, called on EMT(0) as a form of serialization.
|
---|
2149 | */
|
---|
2150 | DECLR3CALLBACKMEMBER(bool, pfnRun,(PPDMDEVINS pDevIns));
|
---|
2151 |
|
---|
2152 | /**
|
---|
2153 | * Register transfer function for DMA channel.
|
---|
2154 | *
|
---|
2155 | * @param pDevIns Device instance of the DMAC.
|
---|
2156 | * @param uChannel Channel number.
|
---|
2157 | * @param pfnTransferHandler Device specific transfer function.
|
---|
2158 | * @param pvUSer User pointer to be passed to the callback.
|
---|
2159 | * @remarks No locks held, called on an EMT.
|
---|
2160 | */
|
---|
2161 | DECLR3CALLBACKMEMBER(void, pfnRegister,(PPDMDEVINS pDevIns, unsigned uChannel, PFNDMATRANSFERHANDLER pfnTransferHandler, void *pvUser));
|
---|
2162 |
|
---|
2163 | /**
|
---|
2164 | * Read memory
|
---|
2165 | *
|
---|
2166 | * @returns Number of bytes read.
|
---|
2167 | * @param pDevIns Device instance of the DMAC.
|
---|
2168 | * @param pvBuffer Pointer to target buffer.
|
---|
2169 | * @param off DMA position.
|
---|
2170 | * @param cbBlock Block size.
|
---|
2171 | * @remarks No locks held, called on an EMT.
|
---|
2172 | */
|
---|
2173 | DECLR3CALLBACKMEMBER(uint32_t, pfnReadMemory,(PPDMDEVINS pDevIns, unsigned uChannel, void *pvBuffer, uint32_t off, uint32_t cbBlock));
|
---|
2174 |
|
---|
2175 | /**
|
---|
2176 | * Write memory
|
---|
2177 | *
|
---|
2178 | * @returns Number of bytes written.
|
---|
2179 | * @param pDevIns Device instance of the DMAC.
|
---|
2180 | * @param pvBuffer Memory to write.
|
---|
2181 | * @param off DMA position.
|
---|
2182 | * @param cbBlock Block size.
|
---|
2183 | * @remarks No locks held, called on an EMT.
|
---|
2184 | */
|
---|
2185 | DECLR3CALLBACKMEMBER(uint32_t, pfnWriteMemory,(PPDMDEVINS pDevIns, unsigned uChannel, const void *pvBuffer, uint32_t off, uint32_t cbBlock));
|
---|
2186 |
|
---|
2187 | /**
|
---|
2188 | * Set the DREQ line.
|
---|
2189 | *
|
---|
2190 | * @param pDevIns Device instance of the DMAC.
|
---|
2191 | * @param uChannel Channel number.
|
---|
2192 | * @param uLevel Level of the line.
|
---|
2193 | * @remarks No locks held, called on an EMT.
|
---|
2194 | */
|
---|
2195 | DECLR3CALLBACKMEMBER(void, pfnSetDREQ,(PPDMDEVINS pDevIns, unsigned uChannel, unsigned uLevel));
|
---|
2196 |
|
---|
2197 | /**
|
---|
2198 | * Get channel mode
|
---|
2199 | *
|
---|
2200 | * @returns Channel mode.
|
---|
2201 | * @param pDevIns Device instance of the DMAC.
|
---|
2202 | * @param uChannel Channel number.
|
---|
2203 | * @remarks No locks held, called on an EMT.
|
---|
2204 | */
|
---|
2205 | DECLR3CALLBACKMEMBER(uint8_t, pfnGetChannelMode,(PPDMDEVINS pDevIns, unsigned uChannel));
|
---|
2206 |
|
---|
2207 | } PDMDMACREG;
|
---|
2208 | /** Pointer to a DMAC registration structure. */
|
---|
2209 | typedef PDMDMACREG *PPDMDMACREG;
|
---|
2210 |
|
---|
2211 | /** Current PDMDMACREG version number. */
|
---|
2212 | #define PDM_DMACREG_VERSION PDM_VERSION_MAKE(0xffeb, 1, 0)
|
---|
2213 |
|
---|
2214 |
|
---|
2215 | /**
|
---|
2216 | * DMA Controller device helpers.
|
---|
2217 | */
|
---|
2218 | typedef struct PDMDMACHLP
|
---|
2219 | {
|
---|
2220 | /** Structure version. PDM_DMACHLP_VERSION defines the current version. */
|
---|
2221 | uint32_t u32Version;
|
---|
2222 |
|
---|
2223 | /* to-be-defined */
|
---|
2224 |
|
---|
2225 | } PDMDMACHLP;
|
---|
2226 | /** Pointer to DMAC helpers. */
|
---|
2227 | typedef PDMDMACHLP *PPDMDMACHLP;
|
---|
2228 | /** Pointer to const DMAC helpers. */
|
---|
2229 | typedef const PDMDMACHLP *PCPDMDMACHLP;
|
---|
2230 |
|
---|
2231 | /** Current PDMDMACHLP version number. */
|
---|
2232 | #define PDM_DMACHLP_VERSION PDM_VERSION_MAKE(0xffea, 1, 0)
|
---|
2233 |
|
---|
2234 | #endif /* IN_RING3 */
|
---|
2235 |
|
---|
2236 |
|
---|
2237 |
|
---|
2238 | /**
|
---|
2239 | * RTC registration structure.
|
---|
2240 | */
|
---|
2241 | typedef struct PDMRTCREG
|
---|
2242 | {
|
---|
2243 | /** Structure version number. PDM_RTCREG_VERSION defines the current version. */
|
---|
2244 | uint32_t u32Version;
|
---|
2245 | uint32_t u32Alignment; /**< structure size alignment. */
|
---|
2246 |
|
---|
2247 | /**
|
---|
2248 | * Write to a CMOS register and update the checksum if necessary.
|
---|
2249 | *
|
---|
2250 | * @returns VBox status code.
|
---|
2251 | * @param pDevIns Device instance of the RTC.
|
---|
2252 | * @param iReg The CMOS register index.
|
---|
2253 | * @param u8Value The CMOS register value.
|
---|
2254 | * @remarks Caller enters the device critical section.
|
---|
2255 | */
|
---|
2256 | DECLR3CALLBACKMEMBER(int, pfnWrite,(PPDMDEVINS pDevIns, unsigned iReg, uint8_t u8Value));
|
---|
2257 |
|
---|
2258 | /**
|
---|
2259 | * Read a CMOS register.
|
---|
2260 | *
|
---|
2261 | * @returns VBox status code.
|
---|
2262 | * @param pDevIns Device instance of the RTC.
|
---|
2263 | * @param iReg The CMOS register index.
|
---|
2264 | * @param pu8Value Where to store the CMOS register value.
|
---|
2265 | * @remarks Caller enters the device critical section.
|
---|
2266 | */
|
---|
2267 | DECLR3CALLBACKMEMBER(int, pfnRead,(PPDMDEVINS pDevIns, unsigned iReg, uint8_t *pu8Value));
|
---|
2268 |
|
---|
2269 | } PDMRTCREG;
|
---|
2270 | /** Pointer to a RTC registration structure. */
|
---|
2271 | typedef PDMRTCREG *PPDMRTCREG;
|
---|
2272 | /** Pointer to a const RTC registration structure. */
|
---|
2273 | typedef const PDMRTCREG *PCPDMRTCREG;
|
---|
2274 |
|
---|
2275 | /** Current PDMRTCREG version number. */
|
---|
2276 | #define PDM_RTCREG_VERSION PDM_VERSION_MAKE(0xffe9, 2, 0)
|
---|
2277 |
|
---|
2278 |
|
---|
2279 | /**
|
---|
2280 | * RTC device helpers.
|
---|
2281 | */
|
---|
2282 | typedef struct PDMRTCHLP
|
---|
2283 | {
|
---|
2284 | /** Structure version. PDM_RTCHLP_VERSION defines the current version. */
|
---|
2285 | uint32_t u32Version;
|
---|
2286 |
|
---|
2287 | /* to-be-defined */
|
---|
2288 |
|
---|
2289 | } PDMRTCHLP;
|
---|
2290 | /** Pointer to RTC helpers. */
|
---|
2291 | typedef PDMRTCHLP *PPDMRTCHLP;
|
---|
2292 | /** Pointer to const RTC helpers. */
|
---|
2293 | typedef const PDMRTCHLP *PCPDMRTCHLP;
|
---|
2294 |
|
---|
2295 | /** Current PDMRTCHLP version number. */
|
---|
2296 | #define PDM_RTCHLP_VERSION PDM_VERSION_MAKE(0xffe8, 1, 0)
|
---|
2297 |
|
---|
2298 |
|
---|
2299 |
|
---|
2300 | #ifdef IN_RING3
|
---|
2301 |
|
---|
2302 | /**
|
---|
2303 | * PDM Device API.
|
---|
2304 | */
|
---|
2305 | typedef struct PDMDEVHLPR3
|
---|
2306 | {
|
---|
2307 | /** Structure version. PDM_DEVHLPR3_VERSION defines the current version. */
|
---|
2308 | uint32_t u32Version;
|
---|
2309 |
|
---|
2310 | /**
|
---|
2311 | * Register a number of I/O ports with a device.
|
---|
2312 | *
|
---|
2313 | * These callbacks are of course for the host context (HC).
|
---|
2314 | * Register HC handlers before guest context (GC) handlers! There must be a
|
---|
2315 | * HC handler for every GC handler!
|
---|
2316 | *
|
---|
2317 | * @returns VBox status.
|
---|
2318 | * @param pDevIns The device instance to register the ports with.
|
---|
2319 | * @param Port First port number in the range.
|
---|
2320 | * @param cPorts Number of ports to register.
|
---|
2321 | * @param pvUser User argument.
|
---|
2322 | * @param pfnOut Pointer to function which is gonna handle OUT operations.
|
---|
2323 | * @param pfnIn Pointer to function which is gonna handle IN operations.
|
---|
2324 | * @param pfnOutStr Pointer to function which is gonna handle string OUT operations.
|
---|
2325 | * @param pfnInStr Pointer to function which is gonna handle string IN operations.
|
---|
2326 | * @param pszDesc Pointer to description string. This must not be freed.
|
---|
2327 | * @remarks Caller enters the device critical section prior to invoking the
|
---|
2328 | * registered callback methods.
|
---|
2329 | */
|
---|
2330 | DECLR3CALLBACKMEMBER(int, pfnIOPortRegister,(PPDMDEVINS pDevIns, RTIOPORT Port, RTIOPORT cPorts, RTHCPTR pvUser,
|
---|
2331 | PFNIOMIOPORTOUT pfnOut, PFNIOMIOPORTIN pfnIn,
|
---|
2332 | PFNIOMIOPORTOUTSTRING pfnOutStr, PFNIOMIOPORTINSTRING pfnInStr, const char *pszDesc));
|
---|
2333 |
|
---|
2334 | /**
|
---|
2335 | * Register a number of I/O ports with a device for RC.
|
---|
2336 | *
|
---|
2337 | * These callbacks are for the raw-mode context (RC). Register ring-3 context
|
---|
2338 | * (R3) handlers before raw-mode context handlers! There must be a R3 handler
|
---|
2339 | * for every RC handler!
|
---|
2340 | *
|
---|
2341 | * @returns VBox status.
|
---|
2342 | * @param pDevIns The device instance to register the ports with
|
---|
2343 | * and which RC module to resolve the names
|
---|
2344 | * against.
|
---|
2345 | * @param Port First port number in the range.
|
---|
2346 | * @param cPorts Number of ports to register.
|
---|
2347 | * @param pvUser User argument.
|
---|
2348 | * @param pszOut Name of the RC function which is gonna handle OUT operations.
|
---|
2349 | * @param pszIn Name of the RC function which is gonna handle IN operations.
|
---|
2350 | * @param pszOutStr Name of the RC function which is gonna handle string OUT operations.
|
---|
2351 | * @param pszInStr Name of the RC function which is gonna handle string IN operations.
|
---|
2352 | * @param pszDesc Pointer to description string. This must not be freed.
|
---|
2353 | * @remarks Caller enters the device critical section prior to invoking the
|
---|
2354 | * registered callback methods.
|
---|
2355 | */
|
---|
2356 | DECLR3CALLBACKMEMBER(int, pfnIOPortRegisterRC,(PPDMDEVINS pDevIns, RTIOPORT Port, RTIOPORT cPorts, RTRCPTR pvUser,
|
---|
2357 | const char *pszOut, const char *pszIn,
|
---|
2358 | const char *pszOutStr, const char *pszInStr, const char *pszDesc));
|
---|
2359 |
|
---|
2360 | /**
|
---|
2361 | * Register a number of I/O ports with a device.
|
---|
2362 | *
|
---|
2363 | * These callbacks are of course for the ring-0 host context (R0).
|
---|
2364 | * Register R3 (HC) handlers before R0 (R0) handlers! There must be a R3 (HC) handler for every R0 handler!
|
---|
2365 | *
|
---|
2366 | * @returns VBox status.
|
---|
2367 | * @param pDevIns The device instance to register the ports with.
|
---|
2368 | * @param Port First port number in the range.
|
---|
2369 | * @param cPorts Number of ports to register.
|
---|
2370 | * @param pvUser User argument. (if pointer, then it must be in locked memory!)
|
---|
2371 | * @param pszOut Name of the R0 function which is gonna handle OUT operations.
|
---|
2372 | * @param pszIn Name of the R0 function which is gonna handle IN operations.
|
---|
2373 | * @param pszOutStr Name of the R0 function which is gonna handle string OUT operations.
|
---|
2374 | * @param pszInStr Name of the R0 function which is gonna handle string IN operations.
|
---|
2375 | * @param pszDesc Pointer to description string. This must not be freed.
|
---|
2376 | * @remarks Caller enters the device critical section prior to invoking the
|
---|
2377 | * registered callback methods.
|
---|
2378 | */
|
---|
2379 | DECLR3CALLBACKMEMBER(int, pfnIOPortRegisterR0,(PPDMDEVINS pDevIns, RTIOPORT Port, RTIOPORT cPorts, RTR0PTR pvUser,
|
---|
2380 | const char *pszOut, const char *pszIn,
|
---|
2381 | const char *pszOutStr, const char *pszInStr, const char *pszDesc));
|
---|
2382 |
|
---|
2383 | /**
|
---|
2384 | * Deregister I/O ports.
|
---|
2385 | *
|
---|
2386 | * This naturally affects both guest context (GC), ring-0 (R0) and ring-3 (R3/HC) handlers.
|
---|
2387 | *
|
---|
2388 | * @returns VBox status.
|
---|
2389 | * @param pDevIns The device instance owning the ports.
|
---|
2390 | * @param Port First port number in the range.
|
---|
2391 | * @param cPorts Number of ports to deregister.
|
---|
2392 | */
|
---|
2393 | DECLR3CALLBACKMEMBER(int, pfnIOPortDeregister,(PPDMDEVINS pDevIns, RTIOPORT Port, RTIOPORT cPorts));
|
---|
2394 |
|
---|
2395 | /**
|
---|
2396 | * Register a Memory Mapped I/O (MMIO) region.
|
---|
2397 | *
|
---|
2398 | * These callbacks are of course for the ring-3 context (R3). Register HC
|
---|
2399 | * handlers before raw-mode context (RC) and ring-0 context (R0) handlers! There
|
---|
2400 | * must be a R3 handler for every RC and R0 handler!
|
---|
2401 | *
|
---|
2402 | * @returns VBox status.
|
---|
2403 | * @param pDevIns The device instance to register the MMIO with.
|
---|
2404 | * @param GCPhysStart First physical address in the range.
|
---|
2405 | * @param cbRange The size of the range (in bytes).
|
---|
2406 | * @param pvUser User argument.
|
---|
2407 | * @param pfnWrite Pointer to function which is gonna handle Write operations.
|
---|
2408 | * @param pfnRead Pointer to function which is gonna handle Read operations.
|
---|
2409 | * @param pfnFill Pointer to function which is gonna handle Fill/memset operations. (optional)
|
---|
2410 | * @param fFlags Flags, IOMMMIO_FLAGS_XXX.
|
---|
2411 | * @param pszDesc Pointer to description string. This must not be freed.
|
---|
2412 | * @remarks Caller enters the device critical section prior to invoking the
|
---|
2413 | * registered callback methods.
|
---|
2414 | */
|
---|
2415 | DECLR3CALLBACKMEMBER(int, pfnMMIORegister,(PPDMDEVINS pDevIns, RTGCPHYS GCPhysStart, uint32_t cbRange, RTHCPTR pvUser,
|
---|
2416 | PFNIOMMMIOWRITE pfnWrite, PFNIOMMMIOREAD pfnRead, PFNIOMMMIOFILL pfnFill,
|
---|
2417 | uint32_t fFlags, const char *pszDesc));
|
---|
2418 |
|
---|
2419 | /**
|
---|
2420 | * Register a Memory Mapped I/O (MMIO) region for RC.
|
---|
2421 | *
|
---|
2422 | * These callbacks are for the raw-mode context (RC). Register ring-3 context
|
---|
2423 | * (R3) handlers before guest context handlers! There must be a R3 handler for
|
---|
2424 | * every RC handler!
|
---|
2425 | *
|
---|
2426 | * @returns VBox status.
|
---|
2427 | * @param pDevIns The device instance to register the MMIO with.
|
---|
2428 | * @param GCPhysStart First physical address in the range.
|
---|
2429 | * @param cbRange The size of the range (in bytes).
|
---|
2430 | * @param pvUser User argument.
|
---|
2431 | * @param pszWrite Name of the RC function which is gonna handle Write operations.
|
---|
2432 | * @param pszRead Name of the RC function which is gonna handle Read operations.
|
---|
2433 | * @param pszFill Name of the RC function which is gonna handle Fill/memset operations. (optional)
|
---|
2434 | * @remarks Caller enters the device critical section prior to invoking the
|
---|
2435 | * registered callback methods.
|
---|
2436 | */
|
---|
2437 | DECLR3CALLBACKMEMBER(int, pfnMMIORegisterRC,(PPDMDEVINS pDevIns, RTGCPHYS GCPhysStart, uint32_t cbRange, RTRCPTR pvUser,
|
---|
2438 | const char *pszWrite, const char *pszRead, const char *pszFill));
|
---|
2439 |
|
---|
2440 | /**
|
---|
2441 | * Register a Memory Mapped I/O (MMIO) region for R0.
|
---|
2442 | *
|
---|
2443 | * These callbacks are for the ring-0 host context (R0). Register ring-3
|
---|
2444 | * constext (R3) handlers before R0 handlers! There must be a R3 handler for
|
---|
2445 | * every R0 handler!
|
---|
2446 | *
|
---|
2447 | * @returns VBox status.
|
---|
2448 | * @param pDevIns The device instance to register the MMIO with.
|
---|
2449 | * @param GCPhysStart First physical address in the range.
|
---|
2450 | * @param cbRange The size of the range (in bytes).
|
---|
2451 | * @param pvUser User argument. (if pointer, then it must be in locked memory!)
|
---|
2452 | * @param pszWrite Name of the RC function which is gonna handle Write operations.
|
---|
2453 | * @param pszRead Name of the RC function which is gonna handle Read operations.
|
---|
2454 | * @param pszFill Name of the RC function which is gonna handle Fill/memset operations. (optional)
|
---|
2455 | * @remarks Caller enters the device critical section prior to invoking the
|
---|
2456 | * registered callback methods.
|
---|
2457 | */
|
---|
2458 | DECLR3CALLBACKMEMBER(int, pfnMMIORegisterR0,(PPDMDEVINS pDevIns, RTGCPHYS GCPhysStart, uint32_t cbRange, RTR0PTR pvUser,
|
---|
2459 | const char *pszWrite, const char *pszRead, const char *pszFill));
|
---|
2460 |
|
---|
2461 | /**
|
---|
2462 | * Deregister a Memory Mapped I/O (MMIO) region.
|
---|
2463 | *
|
---|
2464 | * This naturally affects both guest context (GC), ring-0 (R0) and ring-3 (R3/HC) handlers.
|
---|
2465 | *
|
---|
2466 | * @returns VBox status.
|
---|
2467 | * @param pDevIns The device instance owning the MMIO region(s).
|
---|
2468 | * @param GCPhysStart First physical address in the range.
|
---|
2469 | * @param cbRange The size of the range (in bytes).
|
---|
2470 | */
|
---|
2471 | DECLR3CALLBACKMEMBER(int, pfnMMIODeregister,(PPDMDEVINS pDevIns, RTGCPHYS GCPhysStart, uint32_t cbRange));
|
---|
2472 |
|
---|
2473 | /**
|
---|
2474 | * Allocate and register a MMIO2 region.
|
---|
2475 | *
|
---|
2476 | * As mentioned elsewhere, MMIO2 is just RAM spelled differently. It's
|
---|
2477 | * RAM associated with a device. It is also non-shared memory with a
|
---|
2478 | * permanent ring-3 mapping and page backing (presently).
|
---|
2479 | *
|
---|
2480 | * @returns VBox status.
|
---|
2481 | * @param pDevIns The device instance.
|
---|
2482 | * @param iRegion The region number. Use the PCI region number as
|
---|
2483 | * this must be known to the PCI bus device too. If
|
---|
2484 | * it's not associated with the PCI device, then
|
---|
2485 | * any number up to UINT8_MAX is fine.
|
---|
2486 | * @param cb The size (in bytes) of the region.
|
---|
2487 | * @param fFlags Reserved for future use, must be zero.
|
---|
2488 | * @param ppv Where to store the address of the ring-3 mapping
|
---|
2489 | * of the memory.
|
---|
2490 | * @param pszDesc Pointer to description string. This must not be
|
---|
2491 | * freed.
|
---|
2492 | * @thread EMT.
|
---|
2493 | */
|
---|
2494 | DECLR3CALLBACKMEMBER(int, pfnMMIO2Register,(PPDMDEVINS pDevIns, uint32_t iRegion, RTGCPHYS cb, uint32_t fFlags, void **ppv, const char *pszDesc));
|
---|
2495 |
|
---|
2496 | /**
|
---|
2497 | * Deregisters and frees a MMIO2 region.
|
---|
2498 | *
|
---|
2499 | * Any physical (and virtual) access handlers registered for the region must
|
---|
2500 | * be deregistered before calling this function.
|
---|
2501 | *
|
---|
2502 | * @returns VBox status code.
|
---|
2503 | * @param pDevIns The device instance.
|
---|
2504 | * @param iRegion The region number used during registration.
|
---|
2505 | * @thread EMT.
|
---|
2506 | */
|
---|
2507 | DECLR3CALLBACKMEMBER(int, pfnMMIO2Deregister,(PPDMDEVINS pDevIns, uint32_t iRegion));
|
---|
2508 |
|
---|
2509 | /**
|
---|
2510 | * Maps a MMIO2 region into the physical memory space.
|
---|
2511 | *
|
---|
2512 | * A MMIO2 range may overlap with base memory if a lot of RAM
|
---|
2513 | * is configured for the VM, in which case we'll drop the base
|
---|
2514 | * memory pages. Presently we will make no attempt to preserve
|
---|
2515 | * anything that happens to be present in the base memory that
|
---|
2516 | * is replaced, this is of course incorrect but it's too much
|
---|
2517 | * effort.
|
---|
2518 | *
|
---|
2519 | * @returns VBox status code.
|
---|
2520 | * @param pDevIns The device instance.
|
---|
2521 | * @param iRegion The region number used during registration.
|
---|
2522 | * @param GCPhys The physical address to map it at.
|
---|
2523 | * @thread EMT.
|
---|
2524 | */
|
---|
2525 | DECLR3CALLBACKMEMBER(int, pfnMMIO2Map,(PPDMDEVINS pDevIns, uint32_t iRegion, RTGCPHYS GCPhys));
|
---|
2526 |
|
---|
2527 | /**
|
---|
2528 | * Unmaps a MMIO2 region previously mapped using pfnMMIO2Map.
|
---|
2529 | *
|
---|
2530 | * @returns VBox status code.
|
---|
2531 | * @param pDevIns The device instance.
|
---|
2532 | * @param iRegion The region number used during registration.
|
---|
2533 | * @param GCPhys The physical address it's currently mapped at.
|
---|
2534 | * @thread EMT.
|
---|
2535 | */
|
---|
2536 | DECLR3CALLBACKMEMBER(int, pfnMMIO2Unmap,(PPDMDEVINS pDevIns, uint32_t iRegion, RTGCPHYS GCPhys));
|
---|
2537 |
|
---|
2538 | /**
|
---|
2539 | * Maps a portion of an MMIO2 region into the hypervisor region.
|
---|
2540 | *
|
---|
2541 | * Callers of this API must never deregister the MMIO2 region before the
|
---|
2542 | * VM is powered off.
|
---|
2543 | *
|
---|
2544 | * @return VBox status code.
|
---|
2545 | * @param pDevIns The device owning the MMIO2 memory.
|
---|
2546 | * @param iRegion The region.
|
---|
2547 | * @param off The offset into the region. Will be rounded down
|
---|
2548 | * to closest page boundary.
|
---|
2549 | * @param cb The number of bytes to map. Will be rounded up
|
---|
2550 | * to the closest page boundary.
|
---|
2551 | * @param pszDesc Mapping description.
|
---|
2552 | * @param pRCPtr Where to store the RC address.
|
---|
2553 | */
|
---|
2554 | DECLR3CALLBACKMEMBER(int, pfnMMHyperMapMMIO2,(PPDMDEVINS pDevIns, uint32_t iRegion, RTGCPHYS off, RTGCPHYS cb,
|
---|
2555 | const char *pszDesc, PRTRCPTR pRCPtr));
|
---|
2556 |
|
---|
2557 | /**
|
---|
2558 | * Maps a portion of an MMIO2 region into kernel space (host).
|
---|
2559 | *
|
---|
2560 | * The kernel mapping will become invalid when the MMIO2 memory is deregistered
|
---|
2561 | * or the VM is terminated.
|
---|
2562 | *
|
---|
2563 | * @return VBox status code.
|
---|
2564 | * @param pDevIns The device owning the MMIO2 memory.
|
---|
2565 | * @param iRegion The region.
|
---|
2566 | * @param off The offset into the region. Must be page
|
---|
2567 | * aligned.
|
---|
2568 | * @param cb The number of bytes to map. Must be page
|
---|
2569 | * aligned.
|
---|
2570 | * @param pszDesc Mapping description.
|
---|
2571 | * @param pR0Ptr Where to store the R0 address.
|
---|
2572 | */
|
---|
2573 | DECLR3CALLBACKMEMBER(int, pfnMMIO2MapKernel,(PPDMDEVINS pDevIns, uint32_t iRegion, RTGCPHYS off, RTGCPHYS cb,
|
---|
2574 | const char *pszDesc, PRTR0PTR pR0Ptr));
|
---|
2575 |
|
---|
2576 | /**
|
---|
2577 | * Register a ROM (BIOS) region.
|
---|
2578 | *
|
---|
2579 | * It goes without saying that this is read-only memory. The memory region must be
|
---|
2580 | * in unassigned memory. I.e. from the top of the address space or on the PC in
|
---|
2581 | * the 0xa0000-0xfffff range.
|
---|
2582 | *
|
---|
2583 | * @returns VBox status.
|
---|
2584 | * @param pDevIns The device instance owning the ROM region.
|
---|
2585 | * @param GCPhysStart First physical address in the range.
|
---|
2586 | * Must be page aligned!
|
---|
2587 | * @param cbRange The size of the range (in bytes).
|
---|
2588 | * Must be page aligned!
|
---|
2589 | * @param pvBinary Pointer to the binary data backing the ROM image.
|
---|
2590 | * @param cbBinary The size of the binary pointer. This must
|
---|
2591 | * be equal or smaller than @a cbRange.
|
---|
2592 | * @param fFlags Shadow ROM flags, PGMPHYS_ROM_FLAGS_* in pgm.h.
|
---|
2593 | * @param pszDesc Pointer to description string. This must not be freed.
|
---|
2594 | *
|
---|
2595 | * @remark There is no way to remove the rom, automatically on device cleanup or
|
---|
2596 | * manually from the device yet. At present I doubt we need such features...
|
---|
2597 | */
|
---|
2598 | DECLR3CALLBACKMEMBER(int, pfnROMRegister,(PPDMDEVINS pDevIns, RTGCPHYS GCPhysStart, uint32_t cbRange,
|
---|
2599 | const void *pvBinary, uint32_t cbBinary, uint32_t fFlags, const char *pszDesc));
|
---|
2600 |
|
---|
2601 | /**
|
---|
2602 | * Changes the protection of shadowed ROM mapping.
|
---|
2603 | *
|
---|
2604 | * This is intented for use by the system BIOS, chipset or device in question to
|
---|
2605 | * change the protection of shadowed ROM code after init and on reset.
|
---|
2606 | *
|
---|
2607 | * @param pDevIns The device instance.
|
---|
2608 | * @param GCPhysStart Where the mapping starts.
|
---|
2609 | * @param cbRange The size of the mapping.
|
---|
2610 | * @param enmProt The new protection type.
|
---|
2611 | */
|
---|
2612 | DECLR3CALLBACKMEMBER(int, pfnROMProtectShadow,(PPDMDEVINS pDevIns, RTGCPHYS GCPhysStart, uint32_t cbRange, PGMROMPROT enmProt));
|
---|
2613 |
|
---|
2614 | /**
|
---|
2615 | * Register a save state data unit.
|
---|
2616 | *
|
---|
2617 | * @returns VBox status.
|
---|
2618 | * @param pDevIns The device instance.
|
---|
2619 | * @param uVersion Data layout version number.
|
---|
2620 | * @param cbGuess The approximate amount of data in the unit.
|
---|
2621 | * Only for progress indicators.
|
---|
2622 | * @param pszBefore Name of data unit which we should be put in
|
---|
2623 | * front of. Optional (NULL).
|
---|
2624 | *
|
---|
2625 | * @param pfnLivePrep Prepare live save callback, optional.
|
---|
2626 | * @param pfnLiveExec Execute live save callback, optional.
|
---|
2627 | * @param pfnLiveVote Vote live save callback, optional.
|
---|
2628 | *
|
---|
2629 | * @param pfnSavePrep Prepare save callback, optional.
|
---|
2630 | * @param pfnSaveExec Execute save callback, optional.
|
---|
2631 | * @param pfnSaveDone Done save callback, optional.
|
---|
2632 | *
|
---|
2633 | * @param pfnLoadPrep Prepare load callback, optional.
|
---|
2634 | * @param pfnLoadExec Execute load callback, optional.
|
---|
2635 | * @param pfnLoadDone Done load callback, optional.
|
---|
2636 | * @remarks Caller enters the device critical section prior to invoking the
|
---|
2637 | * registered callback methods.
|
---|
2638 | */
|
---|
2639 | DECLR3CALLBACKMEMBER(int, pfnSSMRegister,(PPDMDEVINS pDevIns, uint32_t uVersion, size_t cbGuess, const char *pszBefore,
|
---|
2640 | PFNSSMDEVLIVEPREP pfnLivePrep, PFNSSMDEVLIVEEXEC pfnLiveExec, PFNSSMDEVLIVEVOTE pfnLiveVote,
|
---|
2641 | PFNSSMDEVSAVEPREP pfnSavePrep, PFNSSMDEVSAVEEXEC pfnSaveExec, PFNSSMDEVSAVEDONE pfnSaveDone,
|
---|
2642 | PFNSSMDEVLOADPREP pfnLoadPrep, PFNSSMDEVLOADEXEC pfnLoadExec, PFNSSMDEVLOADDONE pfnLoadDone));
|
---|
2643 |
|
---|
2644 | /**
|
---|
2645 | * Creates a timer.
|
---|
2646 | *
|
---|
2647 | * @returns VBox status.
|
---|
2648 | * @param pDevIns The device instance.
|
---|
2649 | * @param enmClock The clock to use on this timer.
|
---|
2650 | * @param pfnCallback Callback function.
|
---|
2651 | * @param pvUser User argument for the callback.
|
---|
2652 | * @param fFlags Flags, see TMTIMER_FLAGS_*.
|
---|
2653 | * @param pszDesc Pointer to description string which must stay around
|
---|
2654 | * until the timer is fully destroyed (i.e. a bit after TMTimerDestroy()).
|
---|
2655 | * @param ppTimer Where to store the timer on success.
|
---|
2656 | * @remarks Caller enters the device critical section prior to invoking the
|
---|
2657 | * callback.
|
---|
2658 | */
|
---|
2659 | DECLR3CALLBACKMEMBER(int, pfnTMTimerCreate,(PPDMDEVINS pDevIns, TMCLOCK enmClock, PFNTMTIMERDEV pfnCallback,
|
---|
2660 | void *pvUser, uint32_t fFlags, const char *pszDesc, PPTMTIMERR3 ppTimer));
|
---|
2661 |
|
---|
2662 | /**
|
---|
2663 | * Get the real world UTC time adjusted for VM lag, user offset and warpdrive.
|
---|
2664 | *
|
---|
2665 | * @returns pTime.
|
---|
2666 | * @param pDevIns The device instance.
|
---|
2667 | * @param pTime Where to store the time.
|
---|
2668 | */
|
---|
2669 | DECLR3CALLBACKMEMBER(PRTTIMESPEC, pfnTMUtcNow,(PPDMDEVINS pDevIns, PRTTIMESPEC pTime));
|
---|
2670 |
|
---|
2671 | /**
|
---|
2672 | * Read physical memory.
|
---|
2673 | *
|
---|
2674 | * @returns VINF_SUCCESS (for now).
|
---|
2675 | * @param pDevIns The device instance.
|
---|
2676 | * @param GCPhys Physical address start reading from.
|
---|
2677 | * @param pvBuf Where to put the read bits.
|
---|
2678 | * @param cbRead How many bytes to read.
|
---|
2679 | * @thread Any thread, but the call may involve the emulation thread.
|
---|
2680 | */
|
---|
2681 | DECLR3CALLBACKMEMBER(int, pfnPhysRead,(PPDMDEVINS pDevIns, RTGCPHYS GCPhys, void *pvBuf, size_t cbRead));
|
---|
2682 |
|
---|
2683 | /**
|
---|
2684 | * Write to physical memory.
|
---|
2685 | *
|
---|
2686 | * @returns VINF_SUCCESS for now, and later maybe VERR_EM_MEMORY.
|
---|
2687 | * @param pDevIns The device instance.
|
---|
2688 | * @param GCPhys Physical address to write to.
|
---|
2689 | * @param pvBuf What to write.
|
---|
2690 | * @param cbWrite How many bytes to write.
|
---|
2691 | * @thread Any thread, but the call may involve the emulation thread.
|
---|
2692 | */
|
---|
2693 | DECLR3CALLBACKMEMBER(int, pfnPhysWrite,(PPDMDEVINS pDevIns, RTGCPHYS GCPhys, const void *pvBuf, size_t cbWrite));
|
---|
2694 |
|
---|
2695 | /**
|
---|
2696 | * Requests the mapping of a guest page into ring-3.
|
---|
2697 | *
|
---|
2698 | * When you're done with the page, call pfnPhysReleasePageMappingLock() ASAP to
|
---|
2699 | * release it.
|
---|
2700 | *
|
---|
2701 | * This API will assume your intention is to write to the page, and will
|
---|
2702 | * therefore replace shared and zero pages. If you do not intend to modify the
|
---|
2703 | * page, use the pfnPhysGCPhys2CCPtrReadOnly() API.
|
---|
2704 | *
|
---|
2705 | * @returns VBox status code.
|
---|
2706 | * @retval VINF_SUCCESS on success.
|
---|
2707 | * @retval VERR_PGM_PHYS_PAGE_RESERVED it it's a valid page but has no physical
|
---|
2708 | * backing or if the page has any active access handlers. The caller
|
---|
2709 | * must fall back on using PGMR3PhysWriteExternal.
|
---|
2710 | * @retval VERR_PGM_INVALID_GC_PHYSICAL_ADDRESS if it's not a valid physical address.
|
---|
2711 | *
|
---|
2712 | * @param pDevIns The device instance.
|
---|
2713 | * @param GCPhys The guest physical address of the page that
|
---|
2714 | * should be mapped.
|
---|
2715 | * @param fFlags Flags reserved for future use, MBZ.
|
---|
2716 | * @param ppv Where to store the address corresponding to
|
---|
2717 | * GCPhys.
|
---|
2718 | * @param pLock Where to store the lock information that
|
---|
2719 | * pfnPhysReleasePageMappingLock needs.
|
---|
2720 | *
|
---|
2721 | * @remark Avoid calling this API from within critical sections (other than the
|
---|
2722 | * PGM one) because of the deadlock risk when we have to delegating the
|
---|
2723 | * task to an EMT.
|
---|
2724 | * @thread Any.
|
---|
2725 | */
|
---|
2726 | DECLR3CALLBACKMEMBER(int, pfnPhysGCPhys2CCPtr,(PPDMDEVINS pDevIns, RTGCPHYS GCPhys, uint32_t fFlags, void **ppv,
|
---|
2727 | PPGMPAGEMAPLOCK pLock));
|
---|
2728 |
|
---|
2729 | /**
|
---|
2730 | * Requests the mapping of a guest page into ring-3, external threads.
|
---|
2731 | *
|
---|
2732 | * When you're done with the page, call pfnPhysReleasePageMappingLock() ASAP to
|
---|
2733 | * release it.
|
---|
2734 | *
|
---|
2735 | * @returns VBox status code.
|
---|
2736 | * @retval VINF_SUCCESS on success.
|
---|
2737 | * @retval VERR_PGM_PHYS_PAGE_RESERVED it it's a valid page but has no physical
|
---|
2738 | * backing or if the page as an active ALL access handler. The caller
|
---|
2739 | * must fall back on using PGMPhysRead.
|
---|
2740 | * @retval VERR_PGM_INVALID_GC_PHYSICAL_ADDRESS if it's not a valid physical address.
|
---|
2741 | *
|
---|
2742 | * @param pDevIns The device instance.
|
---|
2743 | * @param GCPhys The guest physical address of the page that
|
---|
2744 | * should be mapped.
|
---|
2745 | * @param fFlags Flags reserved for future use, MBZ.
|
---|
2746 | * @param ppv Where to store the address corresponding to
|
---|
2747 | * GCPhys.
|
---|
2748 | * @param pLock Where to store the lock information that
|
---|
2749 | * pfnPhysReleasePageMappingLock needs.
|
---|
2750 | *
|
---|
2751 | * @remark Avoid calling this API from within critical sections.
|
---|
2752 | * @thread Any.
|
---|
2753 | */
|
---|
2754 | DECLR3CALLBACKMEMBER(int, pfnPhysGCPhys2CCPtrReadOnly,(PPDMDEVINS pDevIns, RTGCPHYS GCPhys, uint32_t fFlags,
|
---|
2755 | void const **ppv, PPGMPAGEMAPLOCK pLock));
|
---|
2756 |
|
---|
2757 | /**
|
---|
2758 | * Release the mapping of a guest page.
|
---|
2759 | *
|
---|
2760 | * This is the counter part of pfnPhysGCPhys2CCPtr and
|
---|
2761 | * pfnPhysGCPhys2CCPtrReadOnly.
|
---|
2762 | *
|
---|
2763 | * @param pDevIns The device instance.
|
---|
2764 | * @param pLock The lock structure initialized by the mapping
|
---|
2765 | * function.
|
---|
2766 | */
|
---|
2767 | DECLR3CALLBACKMEMBER(void, pfnPhysReleasePageMappingLock,(PPDMDEVINS pDevIns, PPGMPAGEMAPLOCK pLock));
|
---|
2768 |
|
---|
2769 | /**
|
---|
2770 | * Read guest physical memory by virtual address.
|
---|
2771 | *
|
---|
2772 | * @param pDevIns The device instance.
|
---|
2773 | * @param pvDst Where to put the read bits.
|
---|
2774 | * @param GCVirtSrc Guest virtual address to start reading from.
|
---|
2775 | * @param cb How many bytes to read.
|
---|
2776 | * @thread The emulation thread.
|
---|
2777 | */
|
---|
2778 | DECLR3CALLBACKMEMBER(int, pfnPhysReadGCVirt,(PPDMDEVINS pDevIns, void *pvDst, RTGCPTR GCVirtSrc, size_t cb));
|
---|
2779 |
|
---|
2780 | /**
|
---|
2781 | * Write to guest physical memory by virtual address.
|
---|
2782 | *
|
---|
2783 | * @param pDevIns The device instance.
|
---|
2784 | * @param GCVirtDst Guest virtual address to write to.
|
---|
2785 | * @param pvSrc What to write.
|
---|
2786 | * @param cb How many bytes to write.
|
---|
2787 | * @thread The emulation thread.
|
---|
2788 | */
|
---|
2789 | DECLR3CALLBACKMEMBER(int, pfnPhysWriteGCVirt,(PPDMDEVINS pDevIns, RTGCPTR GCVirtDst, const void *pvSrc, size_t cb));
|
---|
2790 |
|
---|
2791 | /**
|
---|
2792 | * Convert a guest virtual address to a guest physical address.
|
---|
2793 | *
|
---|
2794 | * @returns VBox status code.
|
---|
2795 | * @param pDevIns The device instance.
|
---|
2796 | * @param GCPtr Guest virtual address.
|
---|
2797 | * @param pGCPhys Where to store the GC physical address
|
---|
2798 | * corresponding to GCPtr.
|
---|
2799 | * @thread The emulation thread.
|
---|
2800 | * @remark Careful with page boundaries.
|
---|
2801 | */
|
---|
2802 | DECLR3CALLBACKMEMBER(int, pfnPhysGCPtr2GCPhys, (PPDMDEVINS pDevIns, RTGCPTR GCPtr, PRTGCPHYS pGCPhys));
|
---|
2803 |
|
---|
2804 | /**
|
---|
2805 | * Allocate memory which is associated with current VM instance
|
---|
2806 | * and automatically freed on it's destruction.
|
---|
2807 | *
|
---|
2808 | * @returns Pointer to allocated memory. The memory is *NOT* zero-ed.
|
---|
2809 | * @param pDevIns The device instance.
|
---|
2810 | * @param cb Number of bytes to allocate.
|
---|
2811 | */
|
---|
2812 | DECLR3CALLBACKMEMBER(void *, pfnMMHeapAlloc,(PPDMDEVINS pDevIns, size_t cb));
|
---|
2813 |
|
---|
2814 | /**
|
---|
2815 | * Allocate memory which is associated with current VM instance
|
---|
2816 | * and automatically freed on it's destruction. The memory is ZEROed.
|
---|
2817 | *
|
---|
2818 | * @returns Pointer to allocated memory. The memory is *NOT* zero-ed.
|
---|
2819 | * @param pDevIns The device instance.
|
---|
2820 | * @param cb Number of bytes to allocate.
|
---|
2821 | */
|
---|
2822 | DECLR3CALLBACKMEMBER(void *, pfnMMHeapAllocZ,(PPDMDEVINS pDevIns, size_t cb));
|
---|
2823 |
|
---|
2824 | /**
|
---|
2825 | * Free memory allocated with pfnMMHeapAlloc() and pfnMMHeapAllocZ().
|
---|
2826 | *
|
---|
2827 | * @param pDevIns The device instance.
|
---|
2828 | * @param pv Pointer to the memory to free.
|
---|
2829 | */
|
---|
2830 | DECLR3CALLBACKMEMBER(void, pfnMMHeapFree,(PPDMDEVINS pDevIns, void *pv));
|
---|
2831 |
|
---|
2832 | /**
|
---|
2833 | * Gets the VM state.
|
---|
2834 | *
|
---|
2835 | * @returns VM state.
|
---|
2836 | * @param pDevIns The device instance.
|
---|
2837 | * @thread Any thread (just keep in mind that it's volatile info).
|
---|
2838 | */
|
---|
2839 | DECLR3CALLBACKMEMBER(VMSTATE, pfnVMState, (PPDMDEVINS pDevIns));
|
---|
2840 |
|
---|
2841 | /**
|
---|
2842 | * Checks if the VM was teleported and hasn't been fully resumed yet.
|
---|
2843 | *
|
---|
2844 | * @returns true / false.
|
---|
2845 | * @param pDevIns The device instance.
|
---|
2846 | * @thread Any thread.
|
---|
2847 | */
|
---|
2848 | DECLR3CALLBACKMEMBER(bool, pfnVMTeleportedAndNotFullyResumedYet,(PPDMDEVINS pDevIns));
|
---|
2849 |
|
---|
2850 | /**
|
---|
2851 | * Set the VM error message
|
---|
2852 | *
|
---|
2853 | * @returns rc.
|
---|
2854 | * @param pDevIns The device instance.
|
---|
2855 | * @param rc VBox status code.
|
---|
2856 | * @param SRC_POS Use RT_SRC_POS.
|
---|
2857 | * @param pszFormat Error message format string.
|
---|
2858 | * @param ... Error message arguments.
|
---|
2859 | */
|
---|
2860 | DECLR3CALLBACKMEMBER(int, pfnVMSetError,(PPDMDEVINS pDevIns, int rc, RT_SRC_POS_DECL,
|
---|
2861 | const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(6, 7));
|
---|
2862 |
|
---|
2863 | /**
|
---|
2864 | * Set the VM error message
|
---|
2865 | *
|
---|
2866 | * @returns rc.
|
---|
2867 | * @param pDevIns The device instance.
|
---|
2868 | * @param rc VBox status code.
|
---|
2869 | * @param SRC_POS Use RT_SRC_POS.
|
---|
2870 | * @param pszFormat Error message format string.
|
---|
2871 | * @param va Error message arguments.
|
---|
2872 | */
|
---|
2873 | DECLR3CALLBACKMEMBER(int, pfnVMSetErrorV,(PPDMDEVINS pDevIns, int rc, RT_SRC_POS_DECL,
|
---|
2874 | const char *pszFormat, va_list va) RT_IPRT_FORMAT_ATTR(6, 0));
|
---|
2875 |
|
---|
2876 | /**
|
---|
2877 | * Set the VM runtime error message
|
---|
2878 | *
|
---|
2879 | * @returns VBox status code.
|
---|
2880 | * @param pDevIns The device instance.
|
---|
2881 | * @param fFlags The action flags. See VMSETRTERR_FLAGS_*.
|
---|
2882 | * @param pszErrorId Error ID string.
|
---|
2883 | * @param pszFormat Error message format string.
|
---|
2884 | * @param ... Error message arguments.
|
---|
2885 | */
|
---|
2886 | DECLR3CALLBACKMEMBER(int, pfnVMSetRuntimeError,(PPDMDEVINS pDevIns, uint32_t fFlags, const char *pszErrorId,
|
---|
2887 | const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(4, 5));
|
---|
2888 |
|
---|
2889 | /**
|
---|
2890 | * Set the VM runtime error message
|
---|
2891 | *
|
---|
2892 | * @returns VBox status code.
|
---|
2893 | * @param pDevIns The device instance.
|
---|
2894 | * @param fFlags The action flags. See VMSETRTERR_FLAGS_*.
|
---|
2895 | * @param pszErrorId Error ID string.
|
---|
2896 | * @param pszFormat Error message format string.
|
---|
2897 | * @param va Error message arguments.
|
---|
2898 | */
|
---|
2899 | DECLR3CALLBACKMEMBER(int, pfnVMSetRuntimeErrorV,(PPDMDEVINS pDevIns, uint32_t fFlags, const char *pszErrorId,
|
---|
2900 | const char *pszFormat, va_list va) RT_IPRT_FORMAT_ATTR(4, 0));
|
---|
2901 |
|
---|
2902 | /**
|
---|
2903 | * Stops the VM and enters the debugger to look at the guest state.
|
---|
2904 | *
|
---|
2905 | * Use the PDMDeviceDBGFStop() inline function with the RT_SRC_POS macro instead of
|
---|
2906 | * invoking this function directly.
|
---|
2907 | *
|
---|
2908 | * @returns VBox status code which must be passed up to the VMM.
|
---|
2909 | * @param pDevIns The device instance.
|
---|
2910 | * @param pszFile Filename of the assertion location.
|
---|
2911 | * @param iLine The linenumber of the assertion location.
|
---|
2912 | * @param pszFunction Function of the assertion location.
|
---|
2913 | * @param pszFormat Message. (optional)
|
---|
2914 | * @param args Message parameters.
|
---|
2915 | */
|
---|
2916 | DECLR3CALLBACKMEMBER(int, pfnDBGFStopV,(PPDMDEVINS pDevIns, const char *pszFile, unsigned iLine, const char *pszFunction,
|
---|
2917 | const char *pszFormat, va_list args) RT_IPRT_FORMAT_ATTR(5, 0));
|
---|
2918 |
|
---|
2919 | /**
|
---|
2920 | * Register a info handler with DBGF,
|
---|
2921 | *
|
---|
2922 | * @returns VBox status code.
|
---|
2923 | * @param pDevIns The device instance.
|
---|
2924 | * @param pszName The identifier of the info.
|
---|
2925 | * @param pszDesc The description of the info and any arguments
|
---|
2926 | * the handler may take.
|
---|
2927 | * @param pfnHandler The handler function to be called to display the
|
---|
2928 | * info.
|
---|
2929 | */
|
---|
2930 | DECLR3CALLBACKMEMBER(int, pfnDBGFInfoRegister,(PPDMDEVINS pDevIns, const char *pszName, const char *pszDesc, PFNDBGFHANDLERDEV pfnHandler));
|
---|
2931 |
|
---|
2932 | /**
|
---|
2933 | * Registers a set of registers for a device.
|
---|
2934 | *
|
---|
2935 | * The @a pvUser argument of the getter and setter callbacks will be
|
---|
2936 | * @a pDevIns. The register names will be prefixed by the device name followed
|
---|
2937 | * immediately by the instance number.
|
---|
2938 | *
|
---|
2939 | * @returns VBox status code.
|
---|
2940 | * @param pDevIns The device instance.
|
---|
2941 | * @param paRegisters The register descriptors.
|
---|
2942 | *
|
---|
2943 | * @remarks The device critical section is NOT entered prior to working the
|
---|
2944 | * callbacks registered via this helper!
|
---|
2945 | */
|
---|
2946 | DECLR3CALLBACKMEMBER(int, pfnDBGFRegRegister,(PPDMDEVINS pDevIns, PCDBGFREGDESC paRegisters));
|
---|
2947 |
|
---|
2948 | /**
|
---|
2949 | * Gets the trace buffer handle.
|
---|
2950 | *
|
---|
2951 | * This is used by the macros found in VBox/vmm/dbgftrace.h and is not
|
---|
2952 | * really inteded for direct usage, thus no inline wrapper function.
|
---|
2953 | *
|
---|
2954 | * @returns Trace buffer handle or NIL_RTTRACEBUF.
|
---|
2955 | * @param pDevIns The device instance.
|
---|
2956 | */
|
---|
2957 | DECLR3CALLBACKMEMBER(RTTRACEBUF, pfnDBGFTraceBuf,(PPDMDEVINS pDevIns));
|
---|
2958 |
|
---|
2959 | /**
|
---|
2960 | * Registers a statistics sample if statistics are enabled.
|
---|
2961 | *
|
---|
2962 | * @param pDevIns Device instance of the DMA.
|
---|
2963 | * @param pvSample Pointer to the sample.
|
---|
2964 | * @param enmType Sample type. This indicates what pvSample is
|
---|
2965 | * pointing at.
|
---|
2966 | * @param pszName Sample name. The name is on this form
|
---|
2967 | * "/<component>/<sample>". Further nesting is
|
---|
2968 | * possible.
|
---|
2969 | * @param enmUnit Sample unit.
|
---|
2970 | * @param pszDesc Sample description.
|
---|
2971 | */
|
---|
2972 | DECLR3CALLBACKMEMBER(void, pfnSTAMRegister,(PPDMDEVINS pDevIns, void *pvSample, STAMTYPE enmType, const char *pszName, STAMUNIT enmUnit, const char *pszDesc));
|
---|
2973 |
|
---|
2974 | /**
|
---|
2975 | * Same as pfnSTAMRegister except that the name is specified in a
|
---|
2976 | * RTStrPrintf like fashion.
|
---|
2977 | *
|
---|
2978 | * @returns VBox status.
|
---|
2979 | * @param pDevIns Device instance of the DMA.
|
---|
2980 | * @param pvSample Pointer to the sample.
|
---|
2981 | * @param enmType Sample type. This indicates what pvSample is
|
---|
2982 | * pointing at.
|
---|
2983 | * @param enmVisibility Visibility type specifying whether unused
|
---|
2984 | * statistics should be visible or not.
|
---|
2985 | * @param enmUnit Sample unit.
|
---|
2986 | * @param pszDesc Sample description.
|
---|
2987 | * @param pszName The sample name format string.
|
---|
2988 | * @param ... Arguments to the format string.
|
---|
2989 | */
|
---|
2990 | DECLR3CALLBACKMEMBER(void, pfnSTAMRegisterF,(PPDMDEVINS pDevIns, void *pvSample, STAMTYPE enmType,
|
---|
2991 | STAMVISIBILITY enmVisibility, STAMUNIT enmUnit, const char *pszDesc,
|
---|
2992 | const char *pszName, ...) RT_IPRT_FORMAT_ATTR(7, 8));
|
---|
2993 |
|
---|
2994 | /**
|
---|
2995 | * Same as pfnSTAMRegister except that the name is specified in a
|
---|
2996 | * RTStrPrintfV like fashion.
|
---|
2997 | *
|
---|
2998 | * @returns VBox status.
|
---|
2999 | * @param pDevIns Device instance of the DMA.
|
---|
3000 | * @param pvSample Pointer to the sample.
|
---|
3001 | * @param enmType Sample type. This indicates what pvSample is
|
---|
3002 | * pointing at.
|
---|
3003 | * @param enmVisibility Visibility type specifying whether unused
|
---|
3004 | * statistics should be visible or not.
|
---|
3005 | * @param enmUnit Sample unit.
|
---|
3006 | * @param pszDesc Sample description.
|
---|
3007 | * @param pszName The sample name format string.
|
---|
3008 | * @param args Arguments to the format string.
|
---|
3009 | */
|
---|
3010 | DECLR3CALLBACKMEMBER(void, pfnSTAMRegisterV,(PPDMDEVINS pDevIns, void *pvSample, STAMTYPE enmType,
|
---|
3011 | STAMVISIBILITY enmVisibility, STAMUNIT enmUnit, const char *pszDesc,
|
---|
3012 | const char *pszName, va_list args) RT_IPRT_FORMAT_ATTR(7, 0));
|
---|
3013 |
|
---|
3014 | /**
|
---|
3015 | * Registers the device with the default PCI bus.
|
---|
3016 | *
|
---|
3017 | * @returns VBox status code.
|
---|
3018 | * @param pDevIns The device instance.
|
---|
3019 | * @param pPciDev The PCI device structure.
|
---|
3020 | * Any PCI enabled device must keep this in it's instance data!
|
---|
3021 | * Fill in the PCI data config before registration, please.
|
---|
3022 | * @remark This is the simple interface, a Ex interface will be created if
|
---|
3023 | * more features are needed later.
|
---|
3024 | */
|
---|
3025 | DECLR3CALLBACKMEMBER(int, pfnPCIRegister,(PPDMDEVINS pDevIns, PPCIDEVICE pPciDev));
|
---|
3026 |
|
---|
3027 | /**
|
---|
3028 | * Initialize MSI support in a PCI device.
|
---|
3029 | *
|
---|
3030 | * @returns VBox status code.
|
---|
3031 | * @param pDevIns The device instance.
|
---|
3032 | * @param pMsiReg MSI registartion structure.
|
---|
3033 | */
|
---|
3034 | DECLR3CALLBACKMEMBER(int, pfnPCIRegisterMsi,(PPDMDEVINS pDevIns, PPDMMSIREG pMsiReg));
|
---|
3035 |
|
---|
3036 | /**
|
---|
3037 | * Registers a I/O region (memory mapped or I/O ports) for a PCI device.
|
---|
3038 | *
|
---|
3039 | * @returns VBox status code.
|
---|
3040 | * @param pDevIns The device instance.
|
---|
3041 | * @param iRegion The region number.
|
---|
3042 | * @param cbRegion Size of the region.
|
---|
3043 | * @param enmType PCI_ADDRESS_SPACE_MEM, PCI_ADDRESS_SPACE_IO or PCI_ADDRESS_SPACE_MEM_PREFETCH.
|
---|
3044 | * @param pfnCallback Callback for doing the mapping.
|
---|
3045 | * @remarks The callback will be invoked holding the PDM lock. The device lock
|
---|
3046 | * is NOT take because that is very likely be a lock order violation.
|
---|
3047 | */
|
---|
3048 | DECLR3CALLBACKMEMBER(int, pfnPCIIORegionRegister,(PPDMDEVINS pDevIns, int iRegion, uint32_t cbRegion,
|
---|
3049 | PCIADDRESSSPACE enmType, PFNPCIIOREGIONMAP pfnCallback));
|
---|
3050 |
|
---|
3051 | /**
|
---|
3052 | * Register PCI configuration space read/write callbacks.
|
---|
3053 | *
|
---|
3054 | * @param pDevIns The device instance.
|
---|
3055 | * @param pPciDev The PCI device structure.
|
---|
3056 | * If NULL the default PCI device for this device instance is used.
|
---|
3057 | * @param pfnRead Pointer to the user defined PCI config read function.
|
---|
3058 | * @param ppfnReadOld Pointer to function pointer which will receive the old (default)
|
---|
3059 | * PCI config read function. This way, user can decide when (and if)
|
---|
3060 | * to call default PCI config read function. Can be NULL.
|
---|
3061 | * @param pfnWrite Pointer to the user defined PCI config write function.
|
---|
3062 | * @param ppfnWriteOld Pointer to function pointer which will receive
|
---|
3063 | * the old (default) PCI config write function.
|
---|
3064 | * This way, user can decide when (and if) to call
|
---|
3065 | * default PCI config write function. Can be NULL.
|
---|
3066 | * @remarks The callbacks will be invoked holding the PDM lock. The device lock
|
---|
3067 | * is NOT take because that is very likely be a lock order violation.
|
---|
3068 | * @thread EMT
|
---|
3069 | */
|
---|
3070 | DECLR3CALLBACKMEMBER(void, pfnPCISetConfigCallbacks,(PPDMDEVINS pDevIns, PPCIDEVICE pPciDev, PFNPCICONFIGREAD pfnRead, PPFNPCICONFIGREAD ppfnReadOld,
|
---|
3071 | PFNPCICONFIGWRITE pfnWrite, PPFNPCICONFIGWRITE ppfnWriteOld));
|
---|
3072 |
|
---|
3073 | /**
|
---|
3074 | * Bus master physical memory read.
|
---|
3075 | *
|
---|
3076 | * @returns VINF_SUCCESS or VERR_PGM_PCI_PHYS_READ_BM_DISABLED, later maybe
|
---|
3077 | * VERR_EM_MEMORY. The informational status shall NOT be propagated!
|
---|
3078 | * @param pDevIns The device instance.
|
---|
3079 | * @param GCPhys Physical address start reading from.
|
---|
3080 | * @param pvBuf Where to put the read bits.
|
---|
3081 | * @param cbRead How many bytes to read.
|
---|
3082 | * @thread Any thread, but the call may involve the emulation thread.
|
---|
3083 | */
|
---|
3084 | DECLR3CALLBACKMEMBER(int, pfnPCIPhysRead,(PPDMDEVINS pDevIns, RTGCPHYS GCPhys, void *pvBuf, size_t cbRead));
|
---|
3085 |
|
---|
3086 | /**
|
---|
3087 | * Bus master physical memory write.
|
---|
3088 | *
|
---|
3089 | * @returns VINF_SUCCESS or VERR_PGM_PCI_PHYS_WRITE_BM_DISABLED, later maybe
|
---|
3090 | * VERR_EM_MEMORY. The informational status shall NOT be propagated!
|
---|
3091 | * @param pDevIns The device instance.
|
---|
3092 | * @param GCPhys Physical address to write to.
|
---|
3093 | * @param pvBuf What to write.
|
---|
3094 | * @param cbWrite How many bytes to write.
|
---|
3095 | * @thread Any thread, but the call may involve the emulation thread.
|
---|
3096 | */
|
---|
3097 | DECLR3CALLBACKMEMBER(int, pfnPCIPhysWrite,(PPDMDEVINS pDevIns, RTGCPHYS GCPhys, const void *pvBuf, size_t cbWrite));
|
---|
3098 |
|
---|
3099 | /**
|
---|
3100 | * Set the IRQ for a PCI device.
|
---|
3101 | *
|
---|
3102 | * @param pDevIns The device instance.
|
---|
3103 | * @param iIrq IRQ number to set.
|
---|
3104 | * @param iLevel IRQ level. See the PDM_IRQ_LEVEL_* \#defines.
|
---|
3105 | * @thread Any thread, but will involve the emulation thread.
|
---|
3106 | */
|
---|
3107 | DECLR3CALLBACKMEMBER(void, pfnPCISetIrq,(PPDMDEVINS pDevIns, int iIrq, int iLevel));
|
---|
3108 |
|
---|
3109 | /**
|
---|
3110 | * Set the IRQ for a PCI device, but don't wait for EMT to process
|
---|
3111 | * the request when not called from EMT.
|
---|
3112 | *
|
---|
3113 | * @param pDevIns The device instance.
|
---|
3114 | * @param iIrq IRQ number to set.
|
---|
3115 | * @param iLevel IRQ level.
|
---|
3116 | * @thread Any thread, but will involve the emulation thread.
|
---|
3117 | */
|
---|
3118 | DECLR3CALLBACKMEMBER(void, pfnPCISetIrqNoWait,(PPDMDEVINS pDevIns, int iIrq, int iLevel));
|
---|
3119 |
|
---|
3120 | /**
|
---|
3121 | * Set ISA IRQ for a device.
|
---|
3122 | *
|
---|
3123 | * @param pDevIns The device instance.
|
---|
3124 | * @param iIrq IRQ number to set.
|
---|
3125 | * @param iLevel IRQ level. See the PDM_IRQ_LEVEL_* \#defines.
|
---|
3126 | * @thread Any thread, but will involve the emulation thread.
|
---|
3127 | */
|
---|
3128 | DECLR3CALLBACKMEMBER(void, pfnISASetIrq,(PPDMDEVINS pDevIns, int iIrq, int iLevel));
|
---|
3129 |
|
---|
3130 | /**
|
---|
3131 | * Set the ISA IRQ for a device, but don't wait for EMT to process
|
---|
3132 | * the request when not called from EMT.
|
---|
3133 | *
|
---|
3134 | * @param pDevIns The device instance.
|
---|
3135 | * @param iIrq IRQ number to set.
|
---|
3136 | * @param iLevel IRQ level. See the PDM_IRQ_LEVEL_* \#defines.
|
---|
3137 | * @thread Any thread, but will involve the emulation thread.
|
---|
3138 | */
|
---|
3139 | DECLR3CALLBACKMEMBER(void, pfnISASetIrqNoWait,(PPDMDEVINS pDevIns, int iIrq, int iLevel));
|
---|
3140 |
|
---|
3141 | /**
|
---|
3142 | * Attaches a driver (chain) to the device.
|
---|
3143 | *
|
---|
3144 | * The first call for a LUN this will serve as a registartion of the LUN. The pBaseInterface and
|
---|
3145 | * the pszDesc string will be registered with that LUN and kept around for PDMR3QueryDeviceLun().
|
---|
3146 | *
|
---|
3147 | * @returns VBox status code.
|
---|
3148 | * @param pDevIns The device instance.
|
---|
3149 | * @param iLun The logical unit to attach.
|
---|
3150 | * @param pBaseInterface Pointer to the base interface for that LUN. (device side / down)
|
---|
3151 | * @param ppBaseInterface Where to store the pointer to the base interface. (driver side / up)
|
---|
3152 | * @param pszDesc Pointer to a string describing the LUN. This string must remain valid
|
---|
3153 | * for the live of the device instance.
|
---|
3154 | */
|
---|
3155 | DECLR3CALLBACKMEMBER(int, pfnDriverAttach,(PPDMDEVINS pDevIns, uint32_t iLun, PPDMIBASE pBaseInterface,
|
---|
3156 | PPDMIBASE *ppBaseInterface, const char *pszDesc));
|
---|
3157 |
|
---|
3158 | /**
|
---|
3159 | * Detaches an attached driver (chain) from the device again.
|
---|
3160 | *
|
---|
3161 | * @returns VBox status code.
|
---|
3162 | * @param pDevIns The device instance.
|
---|
3163 | * @param pDrvIns The driver instance to detach.
|
---|
3164 | * @param fFlags Flags, combination of the PDMDEVATT_FLAGS_* \#defines.
|
---|
3165 | */
|
---|
3166 | DECLR3CALLBACKMEMBER(int, pfnDriverDetach,(PPDMDEVINS pDevIns, PPDMDRVINS pDrvIns, uint32_t fFlags));
|
---|
3167 |
|
---|
3168 | /**
|
---|
3169 | * Create a queue.
|
---|
3170 | *
|
---|
3171 | * @returns VBox status code.
|
---|
3172 | * @param pDevIns The device instance.
|
---|
3173 | * @param cbItem The size of a queue item.
|
---|
3174 | * @param cItems The number of items in the queue.
|
---|
3175 | * @param cMilliesInterval The number of milliseconds between polling the queue.
|
---|
3176 | * If 0 then the emulation thread will be notified whenever an item arrives.
|
---|
3177 | * @param pfnCallback The consumer function.
|
---|
3178 | * @param fRZEnabled Set if the queue should work in RC and R0.
|
---|
3179 | * @param pszName The queue base name. The instance number will be
|
---|
3180 | * appended automatically.
|
---|
3181 | * @param ppQueue Where to store the queue handle on success.
|
---|
3182 | * @thread The emulation thread.
|
---|
3183 | * @remarks The device critical section will NOT be entered before calling the
|
---|
3184 | * callback. No locks will be held, but for now it's safe to assume
|
---|
3185 | * that only one EMT will do queue callbacks at any one time.
|
---|
3186 | */
|
---|
3187 | DECLR3CALLBACKMEMBER(int, pfnQueueCreate,(PPDMDEVINS pDevIns, size_t cbItem, uint32_t cItems, uint32_t cMilliesInterval,
|
---|
3188 | PFNPDMQUEUEDEV pfnCallback, bool fRZEnabled, const char *pszName, PPDMQUEUE *ppQueue));
|
---|
3189 |
|
---|
3190 | /**
|
---|
3191 | * Initializes a PDM critical section.
|
---|
3192 | *
|
---|
3193 | * The PDM critical sections are derived from the IPRT critical sections, but
|
---|
3194 | * works in RC and R0 as well.
|
---|
3195 | *
|
---|
3196 | * @returns VBox status code.
|
---|
3197 | * @param pDevIns The device instance.
|
---|
3198 | * @param pCritSect Pointer to the critical section.
|
---|
3199 | * @param SRC_POS Use RT_SRC_POS.
|
---|
3200 | * @param pszNameFmt Format string for naming the critical section.
|
---|
3201 | * For statistics and lock validation.
|
---|
3202 | * @param va Arguments for the format string.
|
---|
3203 | */
|
---|
3204 | DECLR3CALLBACKMEMBER(int, pfnCritSectInit,(PPDMDEVINS pDevIns, PPDMCRITSECT pCritSect, RT_SRC_POS_DECL,
|
---|
3205 | const char *pszNameFmt, va_list va) RT_IPRT_FORMAT_ATTR(6, 0));
|
---|
3206 |
|
---|
3207 | /**
|
---|
3208 | * Gets the NOP critical section.
|
---|
3209 | *
|
---|
3210 | * @returns The ring-3 address of the NOP critical section.
|
---|
3211 | * @param pDevIns The device instance.
|
---|
3212 | */
|
---|
3213 | DECLR3CALLBACKMEMBER(PPDMCRITSECT, pfnCritSectGetNop,(PPDMDEVINS pDevIns));
|
---|
3214 |
|
---|
3215 | /**
|
---|
3216 | * Gets the NOP critical section.
|
---|
3217 | *
|
---|
3218 | * @returns The ring-0 address of the NOP critical section.
|
---|
3219 | * @param pDevIns The device instance.
|
---|
3220 | */
|
---|
3221 | DECLR3CALLBACKMEMBER(R0PTRTYPE(PPDMCRITSECT), pfnCritSectGetNopR0,(PPDMDEVINS pDevIns));
|
---|
3222 |
|
---|
3223 | /**
|
---|
3224 | * Gets the NOP critical section.
|
---|
3225 | *
|
---|
3226 | * @returns The raw-mode context address of the NOP critical section.
|
---|
3227 | * @param pDevIns The device instance.
|
---|
3228 | */
|
---|
3229 | DECLR3CALLBACKMEMBER(RCPTRTYPE(PPDMCRITSECT), pfnCritSectGetNopRC,(PPDMDEVINS pDevIns));
|
---|
3230 |
|
---|
3231 | /**
|
---|
3232 | * Changes the device level critical section from the automatically created
|
---|
3233 | * default to one desired by the device constructor.
|
---|
3234 | *
|
---|
3235 | * @returns VBox status code.
|
---|
3236 | * @param pDevIns The device instance.
|
---|
3237 | * @param pCritSect The critical section to use. NULL is not
|
---|
3238 | * valid, instead use the NOP critical
|
---|
3239 | * section.
|
---|
3240 | */
|
---|
3241 | DECLR3CALLBACKMEMBER(int, pfnSetDeviceCritSect,(PPDMDEVINS pDevIns, PPDMCRITSECT pCritSect));
|
---|
3242 |
|
---|
3243 | /**
|
---|
3244 | * Creates a PDM thread.
|
---|
3245 | *
|
---|
3246 | * This differs from the RTThreadCreate() API in that PDM takes care of suspending,
|
---|
3247 | * resuming, and destroying the thread as the VM state changes.
|
---|
3248 | *
|
---|
3249 | * @returns VBox status code.
|
---|
3250 | * @param pDevIns The device instance.
|
---|
3251 | * @param ppThread Where to store the thread 'handle'.
|
---|
3252 | * @param pvUser The user argument to the thread function.
|
---|
3253 | * @param pfnThread The thread function.
|
---|
3254 | * @param pfnWakeup The wakup callback. This is called on the EMT
|
---|
3255 | * thread when a state change is pending.
|
---|
3256 | * @param cbStack See RTThreadCreate.
|
---|
3257 | * @param enmType See RTThreadCreate.
|
---|
3258 | * @param pszName See RTThreadCreate.
|
---|
3259 | * @remarks The device critical section will NOT be entered prior to invoking
|
---|
3260 | * the function pointers.
|
---|
3261 | */
|
---|
3262 | DECLR3CALLBACKMEMBER(int, pfnThreadCreate,(PPDMDEVINS pDevIns, PPPDMTHREAD ppThread, void *pvUser, PFNPDMTHREADDEV pfnThread,
|
---|
3263 | PFNPDMTHREADWAKEUPDEV pfnWakeup, size_t cbStack, RTTHREADTYPE enmType, const char *pszName));
|
---|
3264 |
|
---|
3265 | /**
|
---|
3266 | * Set up asynchronous handling of a suspend, reset or power off notification.
|
---|
3267 | *
|
---|
3268 | * This shall only be called when getting the notification. It must be called
|
---|
3269 | * for each one.
|
---|
3270 | *
|
---|
3271 | * @returns VBox status code.
|
---|
3272 | * @param pDevIns The device instance.
|
---|
3273 | * @param pfnAsyncNotify The callback.
|
---|
3274 | * @thread EMT(0)
|
---|
3275 | * @remarks The caller will enter the device critical section prior to invoking
|
---|
3276 | * the callback.
|
---|
3277 | */
|
---|
3278 | DECLR3CALLBACKMEMBER(int, pfnSetAsyncNotification, (PPDMDEVINS pDevIns, PFNPDMDEVASYNCNOTIFY pfnAsyncNotify));
|
---|
3279 |
|
---|
3280 | /**
|
---|
3281 | * Notify EMT(0) that the device has completed the asynchronous notification
|
---|
3282 | * handling.
|
---|
3283 | *
|
---|
3284 | * This can be called at any time, spurious calls will simply be ignored.
|
---|
3285 | *
|
---|
3286 | * @param pDevIns The device instance.
|
---|
3287 | * @thread Any
|
---|
3288 | */
|
---|
3289 | DECLR3CALLBACKMEMBER(void, pfnAsyncNotificationCompleted, (PPDMDEVINS pDevIns));
|
---|
3290 |
|
---|
3291 | /**
|
---|
3292 | * Register the RTC device.
|
---|
3293 | *
|
---|
3294 | * @returns VBox status code.
|
---|
3295 | * @param pDevIns The device instance.
|
---|
3296 | * @param pRtcReg Pointer to a RTC registration structure.
|
---|
3297 | * @param ppRtcHlp Where to store the pointer to the helper
|
---|
3298 | * functions.
|
---|
3299 | */
|
---|
3300 | DECLR3CALLBACKMEMBER(int, pfnRTCRegister,(PPDMDEVINS pDevIns, PCPDMRTCREG pRtcReg, PCPDMRTCHLP *ppRtcHlp));
|
---|
3301 |
|
---|
3302 | /**
|
---|
3303 | * Register the PCI Bus.
|
---|
3304 | *
|
---|
3305 | * @returns VBox status code.
|
---|
3306 | * @param pDevIns The device instance.
|
---|
3307 | * @param pPciBusReg Pointer to PCI bus registration structure.
|
---|
3308 | * @param ppPciHlpR3 Where to store the pointer to the PCI Bus
|
---|
3309 | * helpers.
|
---|
3310 | */
|
---|
3311 | DECLR3CALLBACKMEMBER(int, pfnPCIBusRegister,(PPDMDEVINS pDevIns, PPDMPCIBUSREG pPciBusReg, PCPDMPCIHLPR3 *ppPciHlpR3));
|
---|
3312 |
|
---|
3313 | /**
|
---|
3314 | * Register the PIC device.
|
---|
3315 | *
|
---|
3316 | * @returns VBox status code.
|
---|
3317 | * @param pDevIns The device instance.
|
---|
3318 | * @param pPicReg Pointer to a PIC registration structure.
|
---|
3319 | * @param ppPicHlpR3 Where to store the pointer to the PIC HC
|
---|
3320 | * helpers.
|
---|
3321 | */
|
---|
3322 | DECLR3CALLBACKMEMBER(int, pfnPICRegister,(PPDMDEVINS pDevIns, PPDMPICREG pPicReg, PCPDMPICHLPR3 *ppPicHlpR3));
|
---|
3323 |
|
---|
3324 | /**
|
---|
3325 | * Register the APIC device.
|
---|
3326 | *
|
---|
3327 | * @returns VBox status code.
|
---|
3328 | * @param pDevIns The device instance.
|
---|
3329 | * @param pApicReg Pointer to a APIC registration structure.
|
---|
3330 | * @param ppApicHlpR3 Where to store the pointer to the APIC helpers.
|
---|
3331 | */
|
---|
3332 | DECLR3CALLBACKMEMBER(int, pfnAPICRegister,(PPDMDEVINS pDevIns, PPDMAPICREG pApicReg, PCPDMAPICHLPR3 *ppApicHlpR3));
|
---|
3333 |
|
---|
3334 | /**
|
---|
3335 | * Register the I/O APIC device.
|
---|
3336 | *
|
---|
3337 | * @returns VBox status code.
|
---|
3338 | * @param pDevIns The device instance.
|
---|
3339 | * @param pIoApicReg Pointer to a I/O APIC registration structure.
|
---|
3340 | * @param ppIoApicHlpR3 Where to store the pointer to the IOAPIC
|
---|
3341 | * helpers.
|
---|
3342 | */
|
---|
3343 | DECLR3CALLBACKMEMBER(int, pfnIOAPICRegister,(PPDMDEVINS pDevIns, PPDMIOAPICREG pIoApicReg, PCPDMIOAPICHLPR3 *ppIoApicHlpR3));
|
---|
3344 |
|
---|
3345 | /**
|
---|
3346 | * Register the HPET device.
|
---|
3347 | *
|
---|
3348 | * @returns VBox status code.
|
---|
3349 | * @param pDevIns The device instance.
|
---|
3350 | * @param pHpetReg Pointer to a HPET registration structure.
|
---|
3351 | * @param ppHpetHlpR3 Where to store the pointer to the HPET
|
---|
3352 | * helpers.
|
---|
3353 | */
|
---|
3354 | DECLR3CALLBACKMEMBER(int, pfnHPETRegister,(PPDMDEVINS pDevIns, PPDMHPETREG pHpetReg, PCPDMHPETHLPR3 *ppHpetHlpR3));
|
---|
3355 |
|
---|
3356 | /**
|
---|
3357 | * Register a raw PCI device.
|
---|
3358 | *
|
---|
3359 | * @returns VBox status code.
|
---|
3360 | * @param pDevIns The device instance.
|
---|
3361 | * @param pPciRawReg Pointer to a raw PCI registration structure.
|
---|
3362 | * @param ppPciRawHlpR3 Where to store the pointer to the raw PCI
|
---|
3363 | * device helpers.
|
---|
3364 | */
|
---|
3365 | DECLR3CALLBACKMEMBER(int, pfnPciRawRegister,(PPDMDEVINS pDevIns, PPDMPCIRAWREG pPciRawReg, PCPDMPCIRAWHLPR3 *ppPciRawHlpR3));
|
---|
3366 |
|
---|
3367 | /**
|
---|
3368 | * Register the DMA device.
|
---|
3369 | *
|
---|
3370 | * @returns VBox status code.
|
---|
3371 | * @param pDevIns The device instance.
|
---|
3372 | * @param pDmacReg Pointer to a DMAC registration structure.
|
---|
3373 | * @param ppDmacHlp Where to store the pointer to the DMA helpers.
|
---|
3374 | */
|
---|
3375 | DECLR3CALLBACKMEMBER(int, pfnDMACRegister,(PPDMDEVINS pDevIns, PPDMDMACREG pDmacReg, PCPDMDMACHLP *ppDmacHlp));
|
---|
3376 |
|
---|
3377 | /**
|
---|
3378 | * Register transfer function for DMA channel.
|
---|
3379 | *
|
---|
3380 | * @returns VBox status code.
|
---|
3381 | * @param pDevIns The device instance.
|
---|
3382 | * @param uChannel Channel number.
|
---|
3383 | * @param pfnTransferHandler Device specific transfer callback function.
|
---|
3384 | * @param pvUser User pointer to pass to the callback.
|
---|
3385 | * @thread EMT
|
---|
3386 | */
|
---|
3387 | DECLR3CALLBACKMEMBER(int, pfnDMARegister,(PPDMDEVINS pDevIns, unsigned uChannel, PFNDMATRANSFERHANDLER pfnTransferHandler, void *pvUser));
|
---|
3388 |
|
---|
3389 | /**
|
---|
3390 | * Read memory.
|
---|
3391 | *
|
---|
3392 | * @returns VBox status code.
|
---|
3393 | * @param pDevIns The device instance.
|
---|
3394 | * @param uChannel Channel number.
|
---|
3395 | * @param pvBuffer Pointer to target buffer.
|
---|
3396 | * @param off DMA position.
|
---|
3397 | * @param cbBlock Block size.
|
---|
3398 | * @param pcbRead Where to store the number of bytes which was
|
---|
3399 | * read. optional.
|
---|
3400 | * @thread EMT
|
---|
3401 | */
|
---|
3402 | DECLR3CALLBACKMEMBER(int, pfnDMAReadMemory,(PPDMDEVINS pDevIns, unsigned uChannel, void *pvBuffer, uint32_t off, uint32_t cbBlock, uint32_t *pcbRead));
|
---|
3403 |
|
---|
3404 | /**
|
---|
3405 | * Write memory.
|
---|
3406 | *
|
---|
3407 | * @returns VBox status code.
|
---|
3408 | * @param pDevIns The device instance.
|
---|
3409 | * @param uChannel Channel number.
|
---|
3410 | * @param pvBuffer Memory to write.
|
---|
3411 | * @param off DMA position.
|
---|
3412 | * @param cbBlock Block size.
|
---|
3413 | * @param pcbWritten Where to store the number of bytes which was
|
---|
3414 | * written. optional.
|
---|
3415 | * @thread EMT
|
---|
3416 | */
|
---|
3417 | DECLR3CALLBACKMEMBER(int, pfnDMAWriteMemory,(PPDMDEVINS pDevIns, unsigned uChannel, const void *pvBuffer, uint32_t off, uint32_t cbBlock, uint32_t *pcbWritten));
|
---|
3418 |
|
---|
3419 | /**
|
---|
3420 | * Set the DREQ line.
|
---|
3421 | *
|
---|
3422 | * @returns VBox status code.
|
---|
3423 | * @param pDevIns Device instance.
|
---|
3424 | * @param uChannel Channel number.
|
---|
3425 | * @param uLevel Level of the line.
|
---|
3426 | * @thread EMT
|
---|
3427 | */
|
---|
3428 | DECLR3CALLBACKMEMBER(int, pfnDMASetDREQ,(PPDMDEVINS pDevIns, unsigned uChannel, unsigned uLevel));
|
---|
3429 |
|
---|
3430 | /**
|
---|
3431 | * Get channel mode.
|
---|
3432 | *
|
---|
3433 | * @returns Channel mode. See specs.
|
---|
3434 | * @param pDevIns The device instance.
|
---|
3435 | * @param uChannel Channel number.
|
---|
3436 | * @thread EMT
|
---|
3437 | */
|
---|
3438 | DECLR3CALLBACKMEMBER(uint8_t, pfnDMAGetChannelMode,(PPDMDEVINS pDevIns, unsigned uChannel));
|
---|
3439 |
|
---|
3440 | /**
|
---|
3441 | * Schedule DMA execution.
|
---|
3442 | *
|
---|
3443 | * @param pDevIns The device instance.
|
---|
3444 | * @thread Any thread.
|
---|
3445 | */
|
---|
3446 | DECLR3CALLBACKMEMBER(void, pfnDMASchedule,(PPDMDEVINS pDevIns));
|
---|
3447 |
|
---|
3448 | /**
|
---|
3449 | * Write CMOS value and update the checksum(s).
|
---|
3450 | *
|
---|
3451 | * @returns VBox status code.
|
---|
3452 | * @param pDevIns The device instance.
|
---|
3453 | * @param iReg The CMOS register index.
|
---|
3454 | * @param u8Value The CMOS register value.
|
---|
3455 | * @thread EMT
|
---|
3456 | */
|
---|
3457 | DECLR3CALLBACKMEMBER(int, pfnCMOSWrite,(PPDMDEVINS pDevIns, unsigned iReg, uint8_t u8Value));
|
---|
3458 |
|
---|
3459 | /**
|
---|
3460 | * Read CMOS value.
|
---|
3461 | *
|
---|
3462 | * @returns VBox status code.
|
---|
3463 | * @param pDevIns The device instance.
|
---|
3464 | * @param iReg The CMOS register index.
|
---|
3465 | * @param pu8Value Where to store the CMOS register value.
|
---|
3466 | * @thread EMT
|
---|
3467 | */
|
---|
3468 | DECLR3CALLBACKMEMBER(int, pfnCMOSRead,(PPDMDEVINS pDevIns, unsigned iReg, uint8_t *pu8Value));
|
---|
3469 |
|
---|
3470 | /**
|
---|
3471 | * Assert that the current thread is the emulation thread.
|
---|
3472 | *
|
---|
3473 | * @returns True if correct.
|
---|
3474 | * @returns False if wrong.
|
---|
3475 | * @param pDevIns The device instance.
|
---|
3476 | * @param pszFile Filename of the assertion location.
|
---|
3477 | * @param iLine The linenumber of the assertion location.
|
---|
3478 | * @param pszFunction Function of the assertion location.
|
---|
3479 | */
|
---|
3480 | DECLR3CALLBACKMEMBER(bool, pfnAssertEMT,(PPDMDEVINS pDevIns, const char *pszFile, unsigned iLine, const char *pszFunction));
|
---|
3481 |
|
---|
3482 | /**
|
---|
3483 | * Assert that the current thread is NOT the emulation thread.
|
---|
3484 | *
|
---|
3485 | * @returns True if correct.
|
---|
3486 | * @returns False if wrong.
|
---|
3487 | * @param pDevIns The device instance.
|
---|
3488 | * @param pszFile Filename of the assertion location.
|
---|
3489 | * @param iLine The linenumber of the assertion location.
|
---|
3490 | * @param pszFunction Function of the assertion location.
|
---|
3491 | */
|
---|
3492 | DECLR3CALLBACKMEMBER(bool, pfnAssertOther,(PPDMDEVINS pDevIns, const char *pszFile, unsigned iLine, const char *pszFunction));
|
---|
3493 |
|
---|
3494 | /**
|
---|
3495 | * Resolves the symbol for a raw-mode context interface.
|
---|
3496 | *
|
---|
3497 | * @returns VBox status code.
|
---|
3498 | * @param pDevIns The device instance.
|
---|
3499 | * @param pvInterface The interface structure.
|
---|
3500 | * @param cbInterface The size of the interface structure.
|
---|
3501 | * @param pszSymPrefix What to prefix the symbols in the list with
|
---|
3502 | * before resolving them. This must start with
|
---|
3503 | * 'dev' and contain the driver name.
|
---|
3504 | * @param pszSymList List of symbols corresponding to the interface.
|
---|
3505 | * There is generally a there is generally a define
|
---|
3506 | * holding this list associated with the interface
|
---|
3507 | * definition (INTERFACE_SYM_LIST). For more
|
---|
3508 | * details see PDMR3LdrGetInterfaceSymbols.
|
---|
3509 | * @thread EMT
|
---|
3510 | */
|
---|
3511 | DECLR3CALLBACKMEMBER(int, pfnLdrGetRCInterfaceSymbols,(PPDMDEVINS pDevIns, void *pvInterface, size_t cbInterface,
|
---|
3512 | const char *pszSymPrefix, const char *pszSymList));
|
---|
3513 |
|
---|
3514 | /**
|
---|
3515 | * Resolves the symbol for a ring-0 context interface.
|
---|
3516 | *
|
---|
3517 | * @returns VBox status code.
|
---|
3518 | * @param pDevIns The device instance.
|
---|
3519 | * @param pvInterface The interface structure.
|
---|
3520 | * @param cbInterface The size of the interface structure.
|
---|
3521 | * @param pszSymPrefix What to prefix the symbols in the list with
|
---|
3522 | * before resolving them. This must start with
|
---|
3523 | * 'dev' and contain the driver name.
|
---|
3524 | * @param pszSymList List of symbols corresponding to the interface.
|
---|
3525 | * There is generally a there is generally a define
|
---|
3526 | * holding this list associated with the interface
|
---|
3527 | * definition (INTERFACE_SYM_LIST). For more
|
---|
3528 | * details see PDMR3LdrGetInterfaceSymbols.
|
---|
3529 | * @thread EMT
|
---|
3530 | */
|
---|
3531 | DECLR3CALLBACKMEMBER(int, pfnLdrGetR0InterfaceSymbols,(PPDMDEVINS pDevIns, void *pvInterface, size_t cbInterface,
|
---|
3532 | const char *pszSymPrefix, const char *pszSymList));
|
---|
3533 |
|
---|
3534 | /**
|
---|
3535 | * Call the ring-0 request handler routine of the device.
|
---|
3536 | *
|
---|
3537 | * For this to work, the device must be ring-0 enabled and export a request
|
---|
3538 | * handler function. The name of the function must be the device name in
|
---|
3539 | * the PDMDRVREG struct prefixed with 'drvR0' and suffixed with
|
---|
3540 | * 'ReqHandler'. The device name will be captialized. It shall take the
|
---|
3541 | * exact same arguments as this function and be declared using
|
---|
3542 | * PDMBOTHCBDECL. See FNPDMDEVREQHANDLERR0.
|
---|
3543 | *
|
---|
3544 | * Unlike PDMDrvHlpCallR0, this is current unsuitable for more than a call
|
---|
3545 | * or two as the handler address will be resolved on each invocation. This
|
---|
3546 | * is the reason for the EMT only restriction as well.
|
---|
3547 | *
|
---|
3548 | * @returns VBox status code.
|
---|
3549 | * @retval VERR_SYMBOL_NOT_FOUND if the device doesn't export the required
|
---|
3550 | * handler function.
|
---|
3551 | * @retval VERR_ACCESS_DENIED if the device isn't ring-0 capable.
|
---|
3552 | *
|
---|
3553 | * @param pDevIns The device instance.
|
---|
3554 | * @param uOperation The operation to perform.
|
---|
3555 | * @param u64Arg 64-bit integer argument.
|
---|
3556 | * @thread EMT
|
---|
3557 | */
|
---|
3558 | DECLR3CALLBACKMEMBER(int, pfnCallR0,(PPDMDEVINS pDevIns, uint32_t uOperation, uint64_t u64Arg));
|
---|
3559 |
|
---|
3560 | /**
|
---|
3561 | * Gets the reason for the most recent VM suspend.
|
---|
3562 | *
|
---|
3563 | * @returns The suspend reason. VMSUSPENDREASON_INVALID is returned if no
|
---|
3564 | * suspend has been made or if the pDevIns is invalid.
|
---|
3565 | * @param pDevIns The device instance.
|
---|
3566 | */
|
---|
3567 | DECLR3CALLBACKMEMBER(VMSUSPENDREASON, pfnVMGetSuspendReason,(PPDMDEVINS pDevIns));
|
---|
3568 |
|
---|
3569 | /**
|
---|
3570 | * Gets the reason for the most recent VM resume.
|
---|
3571 | *
|
---|
3572 | * @returns The resume reason. VMRESUMEREASON_INVALID is returned if no
|
---|
3573 | * resume has been made or if the pDevIns is invalid.
|
---|
3574 | * @param pDevIns The device instance.
|
---|
3575 | */
|
---|
3576 | DECLR3CALLBACKMEMBER(VMRESUMEREASON, pfnVMGetResumeReason,(PPDMDEVINS pDevIns));
|
---|
3577 |
|
---|
3578 |
|
---|
3579 | /** Space reserved for future members.
|
---|
3580 | * @{ */
|
---|
3581 | DECLR3CALLBACKMEMBER(void, pfnReserved1,(void));
|
---|
3582 | DECLR3CALLBACKMEMBER(void, pfnReserved2,(void));
|
---|
3583 | DECLR3CALLBACKMEMBER(void, pfnReserved3,(void));
|
---|
3584 | DECLR3CALLBACKMEMBER(void, pfnReserved4,(void));
|
---|
3585 | DECLR3CALLBACKMEMBER(void, pfnReserved5,(void));
|
---|
3586 | DECLR3CALLBACKMEMBER(void, pfnReserved6,(void));
|
---|
3587 | DECLR3CALLBACKMEMBER(void, pfnReserved7,(void));
|
---|
3588 | /*DECLR3CALLBACKMEMBER(void, pfnReserved8,(void));
|
---|
3589 | DECLR3CALLBACKMEMBER(void, pfnReserved9,(void));*/
|
---|
3590 | /*DECLR3CALLBACKMEMBER(void, pfnReserved10,(void));*/
|
---|
3591 | /** @} */
|
---|
3592 |
|
---|
3593 |
|
---|
3594 | /** API available to trusted devices only.
|
---|
3595 | *
|
---|
3596 | * These APIs are providing unrestricted access to the guest and the VM,
|
---|
3597 | * or they are interacting intimately with PDM.
|
---|
3598 | *
|
---|
3599 | * @{
|
---|
3600 | */
|
---|
3601 |
|
---|
3602 | /**
|
---|
3603 | * Gets the user mode VM handle. Restricted API.
|
---|
3604 | *
|
---|
3605 | * @returns User mode VM Handle.
|
---|
3606 | * @param pDevIns The device instance.
|
---|
3607 | */
|
---|
3608 | DECLR3CALLBACKMEMBER(PUVM, pfnGetUVM,(PPDMDEVINS pDevIns));
|
---|
3609 |
|
---|
3610 | /**
|
---|
3611 | * Gets the global VM handle. Restricted API.
|
---|
3612 | *
|
---|
3613 | * @returns VM Handle.
|
---|
3614 | * @param pDevIns The device instance.
|
---|
3615 | */
|
---|
3616 | DECLR3CALLBACKMEMBER(PVM, pfnGetVM,(PPDMDEVINS pDevIns));
|
---|
3617 |
|
---|
3618 | /**
|
---|
3619 | * Gets the VMCPU handle. Restricted API.
|
---|
3620 | *
|
---|
3621 | * @returns VMCPU Handle.
|
---|
3622 | * @param pDevIns The device instance.
|
---|
3623 | */
|
---|
3624 | DECLR3CALLBACKMEMBER(PVMCPU, pfnGetVMCPU,(PPDMDEVINS pDevIns));
|
---|
3625 |
|
---|
3626 | /**
|
---|
3627 | * The the VM CPU ID of the current thread (restricted API).
|
---|
3628 | *
|
---|
3629 | * @returns The VMCPUID of the calling thread, NIL_CPUID if not EMT.
|
---|
3630 | * @param pDevIns The device instance.
|
---|
3631 | */
|
---|
3632 | DECLR3CALLBACKMEMBER(VMCPUID, pfnGetCurrentCpuId,(PPDMDEVINS pDevIns));
|
---|
3633 |
|
---|
3634 | /**
|
---|
3635 | * Registers the VMM device heap or notifies about mapping/unmapping.
|
---|
3636 | *
|
---|
3637 | * This interface serves three purposes:
|
---|
3638 | *
|
---|
3639 | * -# Register the VMM device heap during device construction
|
---|
3640 | * for the HM to use.
|
---|
3641 | * -# Notify PDM/HM that it's mapped into guest address
|
---|
3642 | * space (i.e. usable).
|
---|
3643 | * -# Notify PDM/HM that it is being unmapped from the guest
|
---|
3644 | * address space (i.e. not usable).
|
---|
3645 | *
|
---|
3646 | * @returns VBox status code.
|
---|
3647 | * @param pDevIns The device instance.
|
---|
3648 | * @param GCPhys The physical address if mapped, NIL_RTGCPHYS if
|
---|
3649 | * not mapped.
|
---|
3650 | * @param pvHeap Ring 3 heap pointer.
|
---|
3651 | * @param cbHeap Size of the heap.
|
---|
3652 | * @thread EMT.
|
---|
3653 | */
|
---|
3654 | DECLR3CALLBACKMEMBER(int, pfnRegisterVMMDevHeap,(PPDMDEVINS pDevIns, RTGCPHYS GCPhys, RTR3PTR pvHeap, unsigned cbHeap));
|
---|
3655 |
|
---|
3656 | /**
|
---|
3657 | * Registers the firmware (BIOS, EFI) device with PDM.
|
---|
3658 | *
|
---|
3659 | * The firmware provides a callback table and gets a special PDM helper table.
|
---|
3660 | * There can only be one firmware device for a VM.
|
---|
3661 | *
|
---|
3662 | * @returns VBox status code.
|
---|
3663 | * @param pDevIns The device instance.
|
---|
3664 | * @param pFwReg Firmware registration structure.
|
---|
3665 | * @param ppFwHlp Where to return the firmware helper structure.
|
---|
3666 | * @remarks Only valid during device construction.
|
---|
3667 | * @thread EMT(0)
|
---|
3668 | */
|
---|
3669 | DECLR3CALLBACKMEMBER(int, pfnFirmwareRegister,(PPDMDEVINS pDevIns, PCPDMFWREG pFwReg, PCPDMFWHLPR3 *ppFwHlp));
|
---|
3670 |
|
---|
3671 | /**
|
---|
3672 | * Resets the VM.
|
---|
3673 | *
|
---|
3674 | * @returns The appropriate VBox status code to pass around on reset.
|
---|
3675 | * @param pDevIns The device instance.
|
---|
3676 | * @param fFlags PDMVMRESET_F_XXX flags.
|
---|
3677 | * @thread The emulation thread.
|
---|
3678 | */
|
---|
3679 | DECLR3CALLBACKMEMBER(int, pfnVMReset,(PPDMDEVINS pDevIns, uint32_t fFlags));
|
---|
3680 |
|
---|
3681 | /**
|
---|
3682 | * Suspends the VM.
|
---|
3683 | *
|
---|
3684 | * @returns The appropriate VBox status code to pass around on suspend.
|
---|
3685 | * @param pDevIns The device instance.
|
---|
3686 | * @thread The emulation thread.
|
---|
3687 | */
|
---|
3688 | DECLR3CALLBACKMEMBER(int, pfnVMSuspend,(PPDMDEVINS pDevIns));
|
---|
3689 |
|
---|
3690 | /**
|
---|
3691 | * Suspends, saves and powers off the VM.
|
---|
3692 | *
|
---|
3693 | * @returns The appropriate VBox status code to pass around.
|
---|
3694 | * @param pDevIns The device instance.
|
---|
3695 | * @thread An emulation thread.
|
---|
3696 | */
|
---|
3697 | DECLR3CALLBACKMEMBER(int, pfnVMSuspendSaveAndPowerOff,(PPDMDEVINS pDevIns));
|
---|
3698 |
|
---|
3699 | /**
|
---|
3700 | * Power off the VM.
|
---|
3701 | *
|
---|
3702 | * @returns The appropriate VBox status code to pass around on power off.
|
---|
3703 | * @param pDevIns The device instance.
|
---|
3704 | * @thread The emulation thread.
|
---|
3705 | */
|
---|
3706 | DECLR3CALLBACKMEMBER(int, pfnVMPowerOff,(PPDMDEVINS pDevIns));
|
---|
3707 |
|
---|
3708 | /**
|
---|
3709 | * Checks if the Gate A20 is enabled or not.
|
---|
3710 | *
|
---|
3711 | * @returns true if A20 is enabled.
|
---|
3712 | * @returns false if A20 is disabled.
|
---|
3713 | * @param pDevIns The device instance.
|
---|
3714 | * @thread The emulation thread.
|
---|
3715 | */
|
---|
3716 | DECLR3CALLBACKMEMBER(bool, pfnA20IsEnabled,(PPDMDEVINS pDevIns));
|
---|
3717 |
|
---|
3718 | /**
|
---|
3719 | * Enables or disables the Gate A20.
|
---|
3720 | *
|
---|
3721 | * @param pDevIns The device instance.
|
---|
3722 | * @param fEnable Set this flag to enable the Gate A20; clear it
|
---|
3723 | * to disable.
|
---|
3724 | * @thread The emulation thread.
|
---|
3725 | */
|
---|
3726 | DECLR3CALLBACKMEMBER(void, pfnA20Set,(PPDMDEVINS pDevIns, bool fEnable));
|
---|
3727 |
|
---|
3728 | /**
|
---|
3729 | * Get the specified CPUID leaf for the virtual CPU associated with the calling
|
---|
3730 | * thread.
|
---|
3731 | *
|
---|
3732 | * @param pDevIns The device instance.
|
---|
3733 | * @param iLeaf The CPUID leaf to get.
|
---|
3734 | * @param pEax Where to store the EAX value.
|
---|
3735 | * @param pEbx Where to store the EBX value.
|
---|
3736 | * @param pEcx Where to store the ECX value.
|
---|
3737 | * @param pEdx Where to store the EDX value.
|
---|
3738 | * @thread EMT.
|
---|
3739 | */
|
---|
3740 | DECLR3CALLBACKMEMBER(void, pfnGetCpuId,(PPDMDEVINS pDevIns, uint32_t iLeaf, uint32_t *pEax, uint32_t *pEbx, uint32_t *pEcx, uint32_t *pEdx));
|
---|
3741 |
|
---|
3742 | /**
|
---|
3743 | * Get the current virtual clock time in a VM. The clock frequency must be
|
---|
3744 | * queried separately.
|
---|
3745 | *
|
---|
3746 | * @returns Current clock time.
|
---|
3747 | * @param pDevIns The device instance.
|
---|
3748 | */
|
---|
3749 | DECLR3CALLBACKMEMBER(uint64_t, pfnTMTimeVirtGet,(PPDMDEVINS pDevIns));
|
---|
3750 |
|
---|
3751 | /**
|
---|
3752 | * Get the frequency of the virtual clock.
|
---|
3753 | *
|
---|
3754 | * @returns The clock frequency (not variable at run-time).
|
---|
3755 | * @param pDevIns The device instance.
|
---|
3756 | */
|
---|
3757 | DECLR3CALLBACKMEMBER(uint64_t, pfnTMTimeVirtGetFreq,(PPDMDEVINS pDevIns));
|
---|
3758 |
|
---|
3759 | /**
|
---|
3760 | * Get the current virtual clock time in a VM, in nanoseconds.
|
---|
3761 | *
|
---|
3762 | * @returns Current clock time (in ns).
|
---|
3763 | * @param pDevIns The device instance.
|
---|
3764 | */
|
---|
3765 | DECLR3CALLBACKMEMBER(uint64_t, pfnTMTimeVirtGetNano,(PPDMDEVINS pDevIns));
|
---|
3766 |
|
---|
3767 | /**
|
---|
3768 | * Gets the support driver session.
|
---|
3769 | *
|
---|
3770 | * This is intended for working with the semaphore API.
|
---|
3771 | *
|
---|
3772 | * @returns Support driver session handle.
|
---|
3773 | * @param pDevIns The device instance.
|
---|
3774 | */
|
---|
3775 | DECLR3CALLBACKMEMBER(PSUPDRVSESSION, pfnGetSupDrvSession,(PPDMDEVINS pDevIns));
|
---|
3776 |
|
---|
3777 | /** @} */
|
---|
3778 |
|
---|
3779 | /** Just a safety precaution. (PDM_DEVHLPR3_VERSION) */
|
---|
3780 | uint32_t u32TheEnd;
|
---|
3781 | } PDMDEVHLPR3;
|
---|
3782 | #endif /* !IN_RING3 */
|
---|
3783 | /** Pointer to the R3 PDM Device API. */
|
---|
3784 | typedef R3PTRTYPE(struct PDMDEVHLPR3 *) PPDMDEVHLPR3;
|
---|
3785 | /** Pointer to the R3 PDM Device API, const variant. */
|
---|
3786 | typedef R3PTRTYPE(const struct PDMDEVHLPR3 *) PCPDMDEVHLPR3;
|
---|
3787 |
|
---|
3788 | /** Current PDMDEVHLPR3 version number. */
|
---|
3789 | #define PDM_DEVHLPR3_VERSION PDM_VERSION_MAKE(0xffe7, 16, 0)
|
---|
3790 |
|
---|
3791 |
|
---|
3792 | /**
|
---|
3793 | * PDM Device API - RC Variant.
|
---|
3794 | */
|
---|
3795 | typedef struct PDMDEVHLPRC
|
---|
3796 | {
|
---|
3797 | /** Structure version. PDM_DEVHLPRC_VERSION defines the current version. */
|
---|
3798 | uint32_t u32Version;
|
---|
3799 |
|
---|
3800 | /**
|
---|
3801 | * Bus master physical memory read.
|
---|
3802 | *
|
---|
3803 | * @returns VINF_SUCCESS or VERR_PGM_PCI_PHYS_READ_BM_DISABLED, later maybe
|
---|
3804 | * VERR_EM_MEMORY. The informational status shall NOT be propagated!
|
---|
3805 | * @param pDevIns The device instance.
|
---|
3806 | * @param GCPhys Physical address start reading from.
|
---|
3807 | * @param pvBuf Where to put the read bits.
|
---|
3808 | * @param cbRead How many bytes to read.
|
---|
3809 | * @thread Any thread, but the call may involve the emulation thread.
|
---|
3810 | */
|
---|
3811 | DECLRCCALLBACKMEMBER(int, pfnPCIPhysRead,(PPDMDEVINS pDevIns, RTGCPHYS GCPhys, void *pvBuf, size_t cbRead));
|
---|
3812 |
|
---|
3813 | /**
|
---|
3814 | * Bus master physical memory write.
|
---|
3815 | *
|
---|
3816 | * @returns VINF_SUCCESS or VERR_PGM_PCI_PHYS_WRITE_BM_DISABLED, later maybe
|
---|
3817 | * VERR_EM_MEMORY. The informational status shall NOT be propagated!
|
---|
3818 | * @param pDevIns The device instance.
|
---|
3819 | * @param GCPhys Physical address to write to.
|
---|
3820 | * @param pvBuf What to write.
|
---|
3821 | * @param cbWrite How many bytes to write.
|
---|
3822 | * @thread Any thread, but the call may involve the emulation thread.
|
---|
3823 | */
|
---|
3824 | DECLRCCALLBACKMEMBER(int, pfnPCIPhysWrite,(PPDMDEVINS pDevIns, RTGCPHYS GCPhys, const void *pvBuf, size_t cbWrite));
|
---|
3825 |
|
---|
3826 | /**
|
---|
3827 | * Set the IRQ for a PCI device.
|
---|
3828 | *
|
---|
3829 | * @param pDevIns Device instance.
|
---|
3830 | * @param iIrq IRQ number to set.
|
---|
3831 | * @param iLevel IRQ level. See the PDM_IRQ_LEVEL_* \#defines.
|
---|
3832 | * @thread Any thread, but will involve the emulation thread.
|
---|
3833 | */
|
---|
3834 | DECLRCCALLBACKMEMBER(void, pfnPCISetIrq,(PPDMDEVINS pDevIns, int iIrq, int iLevel));
|
---|
3835 |
|
---|
3836 | /**
|
---|
3837 | * Set ISA IRQ for a device.
|
---|
3838 | *
|
---|
3839 | * @param pDevIns Device instance.
|
---|
3840 | * @param iIrq IRQ number to set.
|
---|
3841 | * @param iLevel IRQ level. See the PDM_IRQ_LEVEL_* \#defines.
|
---|
3842 | * @thread Any thread, but will involve the emulation thread.
|
---|
3843 | */
|
---|
3844 | DECLRCCALLBACKMEMBER(void, pfnISASetIrq,(PPDMDEVINS pDevIns, int iIrq, int iLevel));
|
---|
3845 |
|
---|
3846 | /**
|
---|
3847 | * Read physical memory.
|
---|
3848 | *
|
---|
3849 | * @returns VINF_SUCCESS (for now).
|
---|
3850 | * @param pDevIns Device instance.
|
---|
3851 | * @param GCPhys Physical address start reading from.
|
---|
3852 | * @param pvBuf Where to put the read bits.
|
---|
3853 | * @param cbRead How many bytes to read.
|
---|
3854 | */
|
---|
3855 | DECLRCCALLBACKMEMBER(int, pfnPhysRead,(PPDMDEVINS pDevIns, RTGCPHYS GCPhys, void *pvBuf, size_t cbRead));
|
---|
3856 |
|
---|
3857 | /**
|
---|
3858 | * Write to physical memory.
|
---|
3859 | *
|
---|
3860 | * @returns VINF_SUCCESS for now, and later maybe VERR_EM_MEMORY.
|
---|
3861 | * @param pDevIns Device instance.
|
---|
3862 | * @param GCPhys Physical address to write to.
|
---|
3863 | * @param pvBuf What to write.
|
---|
3864 | * @param cbWrite How many bytes to write.
|
---|
3865 | */
|
---|
3866 | DECLRCCALLBACKMEMBER(int, pfnPhysWrite,(PPDMDEVINS pDevIns, RTGCPHYS GCPhys, const void *pvBuf, size_t cbWrite));
|
---|
3867 |
|
---|
3868 | /**
|
---|
3869 | * Checks if the Gate A20 is enabled or not.
|
---|
3870 | *
|
---|
3871 | * @returns true if A20 is enabled.
|
---|
3872 | * @returns false if A20 is disabled.
|
---|
3873 | * @param pDevIns Device instance.
|
---|
3874 | * @thread The emulation thread.
|
---|
3875 | */
|
---|
3876 | DECLRCCALLBACKMEMBER(bool, pfnA20IsEnabled,(PPDMDEVINS pDevIns));
|
---|
3877 |
|
---|
3878 | /**
|
---|
3879 | * Gets the VM state.
|
---|
3880 | *
|
---|
3881 | * @returns VM state.
|
---|
3882 | * @param pDevIns The device instance.
|
---|
3883 | * @thread Any thread (just keep in mind that it's volatile info).
|
---|
3884 | */
|
---|
3885 | DECLRCCALLBACKMEMBER(VMSTATE, pfnVMState, (PPDMDEVINS pDevIns));
|
---|
3886 |
|
---|
3887 | /**
|
---|
3888 | * Set the VM error message
|
---|
3889 | *
|
---|
3890 | * @returns rc.
|
---|
3891 | * @param pDevIns Driver instance.
|
---|
3892 | * @param rc VBox status code.
|
---|
3893 | * @param SRC_POS Use RT_SRC_POS.
|
---|
3894 | * @param pszFormat Error message format string.
|
---|
3895 | * @param ... Error message arguments.
|
---|
3896 | */
|
---|
3897 | DECLRCCALLBACKMEMBER(int, pfnVMSetError,(PPDMDEVINS pDevIns, int rc, RT_SRC_POS_DECL,
|
---|
3898 | const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(6, 7));
|
---|
3899 |
|
---|
3900 | /**
|
---|
3901 | * Set the VM error message
|
---|
3902 | *
|
---|
3903 | * @returns rc.
|
---|
3904 | * @param pDevIns Driver instance.
|
---|
3905 | * @param rc VBox status code.
|
---|
3906 | * @param SRC_POS Use RT_SRC_POS.
|
---|
3907 | * @param pszFormat Error message format string.
|
---|
3908 | * @param va Error message arguments.
|
---|
3909 | */
|
---|
3910 | DECLRCCALLBACKMEMBER(int, pfnVMSetErrorV,(PPDMDEVINS pDevIns, int rc, RT_SRC_POS_DECL,
|
---|
3911 | const char *pszFormat, va_list va) RT_IPRT_FORMAT_ATTR(6, 0));
|
---|
3912 |
|
---|
3913 | /**
|
---|
3914 | * Set the VM runtime error message
|
---|
3915 | *
|
---|
3916 | * @returns VBox status code.
|
---|
3917 | * @param pDevIns Device instance.
|
---|
3918 | * @param fFlags The action flags. See VMSETRTERR_FLAGS_*.
|
---|
3919 | * @param pszErrorId Error ID string.
|
---|
3920 | * @param pszFormat Error message format string.
|
---|
3921 | * @param ... Error message arguments.
|
---|
3922 | */
|
---|
3923 | DECLRCCALLBACKMEMBER(int, pfnVMSetRuntimeError,(PPDMDEVINS pDevIns, uint32_t fFlags, const char *pszErrorId,
|
---|
3924 | const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(4, 5));
|
---|
3925 |
|
---|
3926 | /**
|
---|
3927 | * Set the VM runtime error message
|
---|
3928 | *
|
---|
3929 | * @returns VBox status code.
|
---|
3930 | * @param pDevIns Device instance.
|
---|
3931 | * @param fFlags The action flags. See VMSETRTERR_FLAGS_*.
|
---|
3932 | * @param pszErrorId Error ID string.
|
---|
3933 | * @param pszFormat Error message format string.
|
---|
3934 | * @param va Error message arguments.
|
---|
3935 | */
|
---|
3936 | DECLRCCALLBACKMEMBER(int, pfnVMSetRuntimeErrorV,(PPDMDEVINS pDevIns, uint32_t fFlags, const char *pszErrorId,
|
---|
3937 | const char *pszFormat, va_list va) RT_IPRT_FORMAT_ATTR(4, 0));
|
---|
3938 |
|
---|
3939 | /**
|
---|
3940 | * Set parameters for pending MMIO patch operation
|
---|
3941 | *
|
---|
3942 | * @returns VBox status code.
|
---|
3943 | * @param pDevIns Device instance.
|
---|
3944 | * @param GCPhys MMIO physical address
|
---|
3945 | * @param pCachedData GC pointer to cached data
|
---|
3946 | */
|
---|
3947 | DECLRCCALLBACKMEMBER(int, pfnPATMSetMMIOPatchInfo,(PPDMDEVINS pDevIns, RTGCPHYS GCPhys, RTGCPTR pCachedData));
|
---|
3948 |
|
---|
3949 | /**
|
---|
3950 | * Gets the VM handle. Restricted API.
|
---|
3951 | *
|
---|
3952 | * @returns VM Handle.
|
---|
3953 | * @param pDevIns Device instance.
|
---|
3954 | */
|
---|
3955 | DECLRCCALLBACKMEMBER(PVM, pfnGetVM,(PPDMDEVINS pDevIns));
|
---|
3956 |
|
---|
3957 | /**
|
---|
3958 | * Gets the VMCPU handle. Restricted API.
|
---|
3959 | *
|
---|
3960 | * @returns VMCPU Handle.
|
---|
3961 | * @param pDevIns The device instance.
|
---|
3962 | */
|
---|
3963 | DECLRCCALLBACKMEMBER(PVMCPU, pfnGetVMCPU,(PPDMDEVINS pDevIns));
|
---|
3964 |
|
---|
3965 | /**
|
---|
3966 | * The the VM CPU ID of the current thread (restricted API).
|
---|
3967 | *
|
---|
3968 | * @returns The VMCPUID of the calling thread, NIL_CPUID if not EMT.
|
---|
3969 | * @param pDevIns The device instance.
|
---|
3970 | */
|
---|
3971 | DECLRCCALLBACKMEMBER(VMCPUID, pfnGetCurrentCpuId,(PPDMDEVINS pDevIns));
|
---|
3972 |
|
---|
3973 | /**
|
---|
3974 | * Get the current virtual clock time in a VM. The clock frequency must be
|
---|
3975 | * queried separately.
|
---|
3976 | *
|
---|
3977 | * @returns Current clock time.
|
---|
3978 | * @param pDevIns The device instance.
|
---|
3979 | */
|
---|
3980 | DECLRCCALLBACKMEMBER(uint64_t, pfnTMTimeVirtGet,(PPDMDEVINS pDevIns));
|
---|
3981 |
|
---|
3982 | /**
|
---|
3983 | * Get the frequency of the virtual clock.
|
---|
3984 | *
|
---|
3985 | * @returns The clock frequency (not variable at run-time).
|
---|
3986 | * @param pDevIns The device instance.
|
---|
3987 | */
|
---|
3988 | DECLRCCALLBACKMEMBER(uint64_t, pfnTMTimeVirtGetFreq,(PPDMDEVINS pDevIns));
|
---|
3989 |
|
---|
3990 | /**
|
---|
3991 | * Get the current virtual clock time in a VM, in nanoseconds.
|
---|
3992 | *
|
---|
3993 | * @returns Current clock time (in ns).
|
---|
3994 | * @param pDevIns The device instance.
|
---|
3995 | */
|
---|
3996 | DECLRCCALLBACKMEMBER(uint64_t, pfnTMTimeVirtGetNano,(PPDMDEVINS pDevIns));
|
---|
3997 |
|
---|
3998 | /**
|
---|
3999 | * Gets the trace buffer handle.
|
---|
4000 | *
|
---|
4001 | * This is used by the macros found in VBox/vmm/dbgftrace.h and is not
|
---|
4002 | * really inteded for direct usage, thus no inline wrapper function.
|
---|
4003 | *
|
---|
4004 | * @returns Trace buffer handle or NIL_RTTRACEBUF.
|
---|
4005 | * @param pDevIns The device instance.
|
---|
4006 | */
|
---|
4007 | DECLRCCALLBACKMEMBER(RTTRACEBUF, pfnDBGFTraceBuf,(PPDMDEVINS pDevIns));
|
---|
4008 |
|
---|
4009 | /** Just a safety precaution. */
|
---|
4010 | uint32_t u32TheEnd;
|
---|
4011 | } PDMDEVHLPRC;
|
---|
4012 | /** Pointer PDM Device RC API. */
|
---|
4013 | typedef RCPTRTYPE(struct PDMDEVHLPRC *) PPDMDEVHLPRC;
|
---|
4014 | /** Pointer PDM Device RC API. */
|
---|
4015 | typedef RCPTRTYPE(const struct PDMDEVHLPRC *) PCPDMDEVHLPRC;
|
---|
4016 |
|
---|
4017 | /** Current PDMDEVHLP version number. */
|
---|
4018 | #define PDM_DEVHLPRC_VERSION PDM_VERSION_MAKE(0xffe6, 4, 1)
|
---|
4019 |
|
---|
4020 |
|
---|
4021 | /**
|
---|
4022 | * PDM Device API - R0 Variant.
|
---|
4023 | */
|
---|
4024 | typedef struct PDMDEVHLPR0
|
---|
4025 | {
|
---|
4026 | /** Structure version. PDM_DEVHLPR0_VERSION defines the current version. */
|
---|
4027 | uint32_t u32Version;
|
---|
4028 |
|
---|
4029 | /**
|
---|
4030 | * Bus master physical memory read.
|
---|
4031 | *
|
---|
4032 | * @returns VINF_SUCCESS or VERR_PDM_NOT_PCI_BUS_MASTER, later maybe
|
---|
4033 | * VERR_EM_MEMORY.
|
---|
4034 | * @param pDevIns The device instance.
|
---|
4035 | * @param GCPhys Physical address start reading from.
|
---|
4036 | * @param pvBuf Where to put the read bits.
|
---|
4037 | * @param cbRead How many bytes to read.
|
---|
4038 | * @thread Any thread, but the call may involve the emulation thread.
|
---|
4039 | */
|
---|
4040 | DECLR0CALLBACKMEMBER(int, pfnPCIPhysRead,(PPDMDEVINS pDevIns, RTGCPHYS GCPhys, void *pvBuf, size_t cbRead));
|
---|
4041 |
|
---|
4042 | /**
|
---|
4043 | * Bus master physical memory write.
|
---|
4044 | *
|
---|
4045 | * @returns VINF_SUCCESS or VERR_PDM_NOT_PCI_BUS_MASTER, later maybe
|
---|
4046 | * VERR_EM_MEMORY.
|
---|
4047 | * @param pDevIns The device instance.
|
---|
4048 | * @param GCPhys Physical address to write to.
|
---|
4049 | * @param pvBuf What to write.
|
---|
4050 | * @param cbWrite How many bytes to write.
|
---|
4051 | * @thread Any thread, but the call may involve the emulation thread.
|
---|
4052 | */
|
---|
4053 | DECLR0CALLBACKMEMBER(int, pfnPCIPhysWrite,(PPDMDEVINS pDevIns, RTGCPHYS GCPhys, const void *pvBuf, size_t cbWrite));
|
---|
4054 |
|
---|
4055 | /**
|
---|
4056 | * Set the IRQ for a PCI device.
|
---|
4057 | *
|
---|
4058 | * @param pDevIns Device instance.
|
---|
4059 | * @param iIrq IRQ number to set.
|
---|
4060 | * @param iLevel IRQ level. See the PDM_IRQ_LEVEL_* \#defines.
|
---|
4061 | * @thread Any thread, but will involve the emulation thread.
|
---|
4062 | */
|
---|
4063 | DECLR0CALLBACKMEMBER(void, pfnPCISetIrq,(PPDMDEVINS pDevIns, int iIrq, int iLevel));
|
---|
4064 |
|
---|
4065 | /**
|
---|
4066 | * Set ISA IRQ for a device.
|
---|
4067 | *
|
---|
4068 | * @param pDevIns Device instance.
|
---|
4069 | * @param iIrq IRQ number to set.
|
---|
4070 | * @param iLevel IRQ level. See the PDM_IRQ_LEVEL_* \#defines.
|
---|
4071 | * @thread Any thread, but will involve the emulation thread.
|
---|
4072 | */
|
---|
4073 | DECLR0CALLBACKMEMBER(void, pfnISASetIrq,(PPDMDEVINS pDevIns, int iIrq, int iLevel));
|
---|
4074 |
|
---|
4075 | /**
|
---|
4076 | * Read physical memory.
|
---|
4077 | *
|
---|
4078 | * @returns VINF_SUCCESS (for now).
|
---|
4079 | * @param pDevIns Device instance.
|
---|
4080 | * @param GCPhys Physical address start reading from.
|
---|
4081 | * @param pvBuf Where to put the read bits.
|
---|
4082 | * @param cbRead How many bytes to read.
|
---|
4083 | */
|
---|
4084 | DECLR0CALLBACKMEMBER(int, pfnPhysRead,(PPDMDEVINS pDevIns, RTGCPHYS GCPhys, void *pvBuf, size_t cbRead));
|
---|
4085 |
|
---|
4086 | /**
|
---|
4087 | * Write to physical memory.
|
---|
4088 | *
|
---|
4089 | * @returns VINF_SUCCESS for now, and later maybe VERR_EM_MEMORY.
|
---|
4090 | * @param pDevIns Device instance.
|
---|
4091 | * @param GCPhys Physical address to write to.
|
---|
4092 | * @param pvBuf What to write.
|
---|
4093 | * @param cbWrite How many bytes to write.
|
---|
4094 | */
|
---|
4095 | DECLR0CALLBACKMEMBER(int, pfnPhysWrite,(PPDMDEVINS pDevIns, RTGCPHYS GCPhys, const void *pvBuf, size_t cbWrite));
|
---|
4096 |
|
---|
4097 | /**
|
---|
4098 | * Checks if the Gate A20 is enabled or not.
|
---|
4099 | *
|
---|
4100 | * @returns true if A20 is enabled.
|
---|
4101 | * @returns false if A20 is disabled.
|
---|
4102 | * @param pDevIns Device instance.
|
---|
4103 | * @thread The emulation thread.
|
---|
4104 | */
|
---|
4105 | DECLR0CALLBACKMEMBER(bool, pfnA20IsEnabled,(PPDMDEVINS pDevIns));
|
---|
4106 |
|
---|
4107 | /**
|
---|
4108 | * Gets the VM state.
|
---|
4109 | *
|
---|
4110 | * @returns VM state.
|
---|
4111 | * @param pDevIns The device instance.
|
---|
4112 | * @thread Any thread (just keep in mind that it's volatile info).
|
---|
4113 | */
|
---|
4114 | DECLR0CALLBACKMEMBER(VMSTATE, pfnVMState, (PPDMDEVINS pDevIns));
|
---|
4115 |
|
---|
4116 | /**
|
---|
4117 | * Set the VM error message
|
---|
4118 | *
|
---|
4119 | * @returns rc.
|
---|
4120 | * @param pDevIns Driver instance.
|
---|
4121 | * @param rc VBox status code.
|
---|
4122 | * @param SRC_POS Use RT_SRC_POS.
|
---|
4123 | * @param pszFormat Error message format string.
|
---|
4124 | * @param ... Error message arguments.
|
---|
4125 | */
|
---|
4126 | DECLR0CALLBACKMEMBER(int, pfnVMSetError,(PPDMDEVINS pDevIns, int rc, RT_SRC_POS_DECL,
|
---|
4127 | const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(6, 7));
|
---|
4128 |
|
---|
4129 | /**
|
---|
4130 | * Set the VM error message
|
---|
4131 | *
|
---|
4132 | * @returns rc.
|
---|
4133 | * @param pDevIns Driver instance.
|
---|
4134 | * @param rc VBox status code.
|
---|
4135 | * @param SRC_POS Use RT_SRC_POS.
|
---|
4136 | * @param pszFormat Error message format string.
|
---|
4137 | * @param va Error message arguments.
|
---|
4138 | */
|
---|
4139 | DECLR0CALLBACKMEMBER(int, pfnVMSetErrorV,(PPDMDEVINS pDevIns, int rc, RT_SRC_POS_DECL,
|
---|
4140 | const char *pszFormat, va_list va) RT_IPRT_FORMAT_ATTR(6, 0));
|
---|
4141 |
|
---|
4142 | /**
|
---|
4143 | * Set the VM runtime error message
|
---|
4144 | *
|
---|
4145 | * @returns VBox status code.
|
---|
4146 | * @param pDevIns Device instance.
|
---|
4147 | * @param fFlags The action flags. See VMSETRTERR_FLAGS_*.
|
---|
4148 | * @param pszErrorId Error ID string.
|
---|
4149 | * @param pszFormat Error message format string.
|
---|
4150 | * @param ... Error message arguments.
|
---|
4151 | */
|
---|
4152 | DECLR0CALLBACKMEMBER(int, pfnVMSetRuntimeError,(PPDMDEVINS pDevIns, uint32_t fFlags, const char *pszErrorId,
|
---|
4153 | const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(4, 5));
|
---|
4154 |
|
---|
4155 | /**
|
---|
4156 | * Set the VM runtime error message
|
---|
4157 | *
|
---|
4158 | * @returns VBox status code.
|
---|
4159 | * @param pDevIns Device instance.
|
---|
4160 | * @param fFlags The action flags. See VMSETRTERR_FLAGS_*.
|
---|
4161 | * @param pszErrorId Error ID string.
|
---|
4162 | * @param pszFormat Error message format string.
|
---|
4163 | * @param va Error message arguments.
|
---|
4164 | */
|
---|
4165 | DECLR0CALLBACKMEMBER(int, pfnVMSetRuntimeErrorV,(PPDMDEVINS pDevIns, uint32_t fFlags, const char *pszErrorId,
|
---|
4166 | const char *pszFormat, va_list va) RT_IPRT_FORMAT_ATTR(4, 0));
|
---|
4167 |
|
---|
4168 | /**
|
---|
4169 | * Set parameters for pending MMIO patch operation
|
---|
4170 | *
|
---|
4171 | * @returns rc.
|
---|
4172 | * @param pDevIns Device instance.
|
---|
4173 | * @param GCPhys MMIO physical address
|
---|
4174 | * @param pCachedData GC pointer to cached data
|
---|
4175 | */
|
---|
4176 | DECLR0CALLBACKMEMBER(int, pfnPATMSetMMIOPatchInfo,(PPDMDEVINS pDevIns, RTGCPHYS GCPhys, RTGCPTR pCachedData));
|
---|
4177 |
|
---|
4178 | /**
|
---|
4179 | * Gets the VM handle. Restricted API.
|
---|
4180 | *
|
---|
4181 | * @returns VM Handle.
|
---|
4182 | * @param pDevIns Device instance.
|
---|
4183 | */
|
---|
4184 | DECLR0CALLBACKMEMBER(PVM, pfnGetVM,(PPDMDEVINS pDevIns));
|
---|
4185 |
|
---|
4186 | /**
|
---|
4187 | * Checks if our current CPU state allows for IO block emulation fallback to the recompiler
|
---|
4188 | *
|
---|
4189 | * @returns true = yes, false = no
|
---|
4190 | * @param pDevIns Device instance.
|
---|
4191 | */
|
---|
4192 | DECLR0CALLBACKMEMBER(bool, pfnCanEmulateIoBlock,(PPDMDEVINS pDevIns));
|
---|
4193 |
|
---|
4194 | /**
|
---|
4195 | * Gets the VMCPU handle. Restricted API.
|
---|
4196 | *
|
---|
4197 | * @returns VMCPU Handle.
|
---|
4198 | * @param pDevIns The device instance.
|
---|
4199 | */
|
---|
4200 | DECLR0CALLBACKMEMBER(PVMCPU, pfnGetVMCPU,(PPDMDEVINS pDevIns));
|
---|
4201 |
|
---|
4202 | /**
|
---|
4203 | * The the VM CPU ID of the current thread (restricted API).
|
---|
4204 | *
|
---|
4205 | * @returns The VMCPUID of the calling thread, NIL_CPUID if not EMT.
|
---|
4206 | * @param pDevIns The device instance.
|
---|
4207 | */
|
---|
4208 | DECLR0CALLBACKMEMBER(VMCPUID, pfnGetCurrentCpuId,(PPDMDEVINS pDevIns));
|
---|
4209 |
|
---|
4210 | /**
|
---|
4211 | * Get the current virtual clock time in a VM. The clock frequency must be
|
---|
4212 | * queried separately.
|
---|
4213 | *
|
---|
4214 | * @returns Current clock time.
|
---|
4215 | * @param pDevIns The device instance.
|
---|
4216 | */
|
---|
4217 | DECLR0CALLBACKMEMBER(uint64_t, pfnTMTimeVirtGet,(PPDMDEVINS pDevIns));
|
---|
4218 |
|
---|
4219 | /**
|
---|
4220 | * Get the frequency of the virtual clock.
|
---|
4221 | *
|
---|
4222 | * @returns The clock frequency (not variable at run-time).
|
---|
4223 | * @param pDevIns The device instance.
|
---|
4224 | */
|
---|
4225 | DECLR0CALLBACKMEMBER(uint64_t, pfnTMTimeVirtGetFreq,(PPDMDEVINS pDevIns));
|
---|
4226 |
|
---|
4227 | /**
|
---|
4228 | * Get the current virtual clock time in a VM, in nanoseconds.
|
---|
4229 | *
|
---|
4230 | * @returns Current clock time (in ns).
|
---|
4231 | * @param pDevIns The device instance.
|
---|
4232 | */
|
---|
4233 | DECLR0CALLBACKMEMBER(uint64_t, pfnTMTimeVirtGetNano,(PPDMDEVINS pDevIns));
|
---|
4234 |
|
---|
4235 | /**
|
---|
4236 | * Gets the trace buffer handle.
|
---|
4237 | *
|
---|
4238 | * This is used by the macros found in VBox/vmm/dbgftrace.h and is not
|
---|
4239 | * really inteded for direct usage, thus no inline wrapper function.
|
---|
4240 | *
|
---|
4241 | * @returns Trace buffer handle or NIL_RTTRACEBUF.
|
---|
4242 | * @param pDevIns The device instance.
|
---|
4243 | */
|
---|
4244 | DECLR0CALLBACKMEMBER(RTTRACEBUF, pfnDBGFTraceBuf,(PPDMDEVINS pDevIns));
|
---|
4245 |
|
---|
4246 | /** Just a safety precaution. */
|
---|
4247 | uint32_t u32TheEnd;
|
---|
4248 | } PDMDEVHLPR0;
|
---|
4249 | /** Pointer PDM Device R0 API. */
|
---|
4250 | typedef R0PTRTYPE(struct PDMDEVHLPR0 *) PPDMDEVHLPR0;
|
---|
4251 | /** Pointer PDM Device GC API. */
|
---|
4252 | typedef R0PTRTYPE(const struct PDMDEVHLPR0 *) PCPDMDEVHLPR0;
|
---|
4253 |
|
---|
4254 | /** Current PDMDEVHLP version number. */
|
---|
4255 | #define PDM_DEVHLPR0_VERSION PDM_VERSION_MAKE(0xffe5, 4, 1)
|
---|
4256 |
|
---|
4257 |
|
---|
4258 |
|
---|
4259 | /**
|
---|
4260 | * PDM Device Instance.
|
---|
4261 | */
|
---|
4262 | typedef struct PDMDEVINS
|
---|
4263 | {
|
---|
4264 | /** Structure version. PDM_DEVINS_VERSION defines the current version. */
|
---|
4265 | uint32_t u32Version;
|
---|
4266 | /** Device instance number. */
|
---|
4267 | uint32_t iInstance;
|
---|
4268 |
|
---|
4269 | /** Pointer the GC PDM Device API. */
|
---|
4270 | PCPDMDEVHLPRC pHlpRC;
|
---|
4271 | /** Pointer to device instance data. */
|
---|
4272 | RTRCPTR pvInstanceDataRC;
|
---|
4273 | /** The critical section for the device, see pCritSectXR3. */
|
---|
4274 | RCPTRTYPE(PPDMCRITSECT) pCritSectRoRC;
|
---|
4275 | /** Alignment padding. */
|
---|
4276 | RTRCPTR pAlignmentRC;
|
---|
4277 |
|
---|
4278 | /** Pointer the R0 PDM Device API. */
|
---|
4279 | PCPDMDEVHLPR0 pHlpR0;
|
---|
4280 | /** Pointer to device instance data (R0). */
|
---|
4281 | RTR0PTR pvInstanceDataR0;
|
---|
4282 | /** The critical section for the device, see pCritSectXR3. */
|
---|
4283 | R0PTRTYPE(PPDMCRITSECT) pCritSectRoR0;
|
---|
4284 |
|
---|
4285 | /** Pointer the HC PDM Device API. */
|
---|
4286 | PCPDMDEVHLPR3 pHlpR3;
|
---|
4287 | /** Pointer to device instance data. */
|
---|
4288 | RTR3PTR pvInstanceDataR3;
|
---|
4289 | /** The critical section for the device.
|
---|
4290 | *
|
---|
4291 | * TM and IOM will enter this critical section before calling into the device
|
---|
4292 | * code. PDM will when doing power on, power off, reset, suspend and resume
|
---|
4293 | * notifications. SSM will currently not, but this will be changed later on.
|
---|
4294 | *
|
---|
4295 | * The device gets a critical section automatically assigned to it before
|
---|
4296 | * the constructor is called. If the constructor wishes to use a different
|
---|
4297 | * critical section, it calls PDMDevHlpSetDeviceCritSect() to change it
|
---|
4298 | * very early on.
|
---|
4299 | */
|
---|
4300 | R3PTRTYPE(PPDMCRITSECT) pCritSectRoR3;
|
---|
4301 |
|
---|
4302 | /** Pointer to device registration structure. */
|
---|
4303 | R3PTRTYPE(PCPDMDEVREG) pReg;
|
---|
4304 | /** Configuration handle. */
|
---|
4305 | R3PTRTYPE(PCFGMNODE) pCfg;
|
---|
4306 |
|
---|
4307 | /** The base interface of the device.
|
---|
4308 | *
|
---|
4309 | * The device constructor initializes this if it has any
|
---|
4310 | * device level interfaces to export. To obtain this interface
|
---|
4311 | * call PDMR3QueryDevice(). */
|
---|
4312 | PDMIBASE IBase;
|
---|
4313 |
|
---|
4314 | /** Tracing indicator. */
|
---|
4315 | uint32_t fTracing;
|
---|
4316 | /** The tracing ID of this device. */
|
---|
4317 | uint32_t idTracing;
|
---|
4318 | #if HC_ARCH_BITS == 32
|
---|
4319 | /** Align the internal data more naturally. */
|
---|
4320 | uint32_t au32Padding[HC_ARCH_BITS == 32 ? 13 : 0];
|
---|
4321 | #endif
|
---|
4322 |
|
---|
4323 | /** Internal data. */
|
---|
4324 | union
|
---|
4325 | {
|
---|
4326 | #ifdef PDMDEVINSINT_DECLARED
|
---|
4327 | PDMDEVINSINT s;
|
---|
4328 | #endif
|
---|
4329 | uint8_t padding[HC_ARCH_BITS == 32 ? 72 : 112 + 0x28];
|
---|
4330 | } Internal;
|
---|
4331 |
|
---|
4332 | /** Device instance data. The size of this area is defined
|
---|
4333 | * in the PDMDEVREG::cbInstanceData field. */
|
---|
4334 | char achInstanceData[8];
|
---|
4335 | } PDMDEVINS;
|
---|
4336 |
|
---|
4337 | /** Current PDMDEVINS version number. */
|
---|
4338 | #define PDM_DEVINS_VERSION PDM_VERSION_MAKE(0xffe4, 3, 0)
|
---|
4339 |
|
---|
4340 | /** Converts a pointer to the PDMDEVINS::IBase to a pointer to PDMDEVINS. */
|
---|
4341 | #define PDMIBASE_2_PDMDEV(pInterface) ( (PPDMDEVINS)((char *)(pInterface) - RT_OFFSETOF(PDMDEVINS, IBase)) )
|
---|
4342 |
|
---|
4343 | /**
|
---|
4344 | * Checks the structure versions of the device instance and device helpers,
|
---|
4345 | * returning if they are incompatible.
|
---|
4346 | *
|
---|
4347 | * This is for use in the constructor.
|
---|
4348 | *
|
---|
4349 | * @param pDevIns The device instance pointer.
|
---|
4350 | */
|
---|
4351 | #define PDMDEV_CHECK_VERSIONS_RETURN(pDevIns) \
|
---|
4352 | do \
|
---|
4353 | { \
|
---|
4354 | PPDMDEVINS pDevInsTypeCheck = (pDevIns); NOREF(pDevInsTypeCheck); \
|
---|
4355 | AssertLogRelMsgReturn(PDM_VERSION_ARE_COMPATIBLE((pDevIns)->u32Version, PDM_DEVINS_VERSION), \
|
---|
4356 | ("DevIns=%#x mine=%#x\n", (pDevIns)->u32Version, PDM_DEVINS_VERSION), \
|
---|
4357 | VERR_PDM_DEVINS_VERSION_MISMATCH); \
|
---|
4358 | AssertLogRelMsgReturn(PDM_VERSION_ARE_COMPATIBLE((pDevIns)->pHlpR3->u32Version, PDM_DEVHLPR3_VERSION), \
|
---|
4359 | ("DevHlp=%#x mine=%#x\n", (pDevIns)->pHlpR3->u32Version, PDM_DEVHLPR3_VERSION), \
|
---|
4360 | VERR_PDM_DEVHLPR3_VERSION_MISMATCH); \
|
---|
4361 | } while (0)
|
---|
4362 |
|
---|
4363 | /**
|
---|
4364 | * Quietly checks the structure versions of the device instance and device
|
---|
4365 | * helpers, returning if they are incompatible.
|
---|
4366 | *
|
---|
4367 | * This is for use in the destructor.
|
---|
4368 | *
|
---|
4369 | * @param pDevIns The device instance pointer.
|
---|
4370 | */
|
---|
4371 | #define PDMDEV_CHECK_VERSIONS_RETURN_QUIET(pDevIns) \
|
---|
4372 | do \
|
---|
4373 | { \
|
---|
4374 | PPDMDEVINS pDevInsTypeCheck = (pDevIns); NOREF(pDevInsTypeCheck); \
|
---|
4375 | if (RT_LIKELY(PDM_VERSION_ARE_COMPATIBLE((pDevIns)->u32Version, PDM_DEVINS_VERSION) )) \
|
---|
4376 | { /* likely */ } else return VERR_PDM_DEVINS_VERSION_MISMATCH; \
|
---|
4377 | if (RT_LIKELY(PDM_VERSION_ARE_COMPATIBLE((pDevIns)->pHlpR3->u32Version, PDM_DEVHLPR3_VERSION) )) \
|
---|
4378 | { /* likely */ } else return VERR_PDM_DEVHLPR3_VERSION_MISMATCH; \
|
---|
4379 | } while (0)
|
---|
4380 |
|
---|
4381 | /**
|
---|
4382 | * Wrapper around CFGMR3ValidateConfig for the root config for use in the
|
---|
4383 | * constructor - returns on failure.
|
---|
4384 | *
|
---|
4385 | * This should be invoked after having initialized the instance data
|
---|
4386 | * sufficiently for the correct operation of the destructor. The destructor is
|
---|
4387 | * always called!
|
---|
4388 | *
|
---|
4389 | * @param pDevIns Pointer to the PDM device instance.
|
---|
4390 | * @param pszValidValues Patterns describing the valid value names. See
|
---|
4391 | * RTStrSimplePatternMultiMatch for details on the
|
---|
4392 | * pattern syntax.
|
---|
4393 | * @param pszValidNodes Patterns describing the valid node (key) names.
|
---|
4394 | * Pass empty string if no valid nodes.
|
---|
4395 | */
|
---|
4396 | #define PDMDEV_VALIDATE_CONFIG_RETURN(pDevIns, pszValidValues, pszValidNodes) \
|
---|
4397 | do \
|
---|
4398 | { \
|
---|
4399 | int rcValCfg = CFGMR3ValidateConfig((pDevIns)->pCfg, "/", pszValidValues, pszValidNodes, \
|
---|
4400 | (pDevIns)->pReg->szName, (pDevIns)->iInstance); \
|
---|
4401 | if (RT_SUCCESS(rcValCfg)) \
|
---|
4402 | { /* likely */ } else return rcValCfg; \
|
---|
4403 | } while (0)
|
---|
4404 |
|
---|
4405 | /** @def PDMDEV_ASSERT_EMT
|
---|
4406 | * Assert that the current thread is the emulation thread.
|
---|
4407 | */
|
---|
4408 | #ifdef VBOX_STRICT
|
---|
4409 | # define PDMDEV_ASSERT_EMT(pDevIns) pDevIns->pHlpR3->pfnAssertEMT(pDevIns, __FILE__, __LINE__, __FUNCTION__)
|
---|
4410 | #else
|
---|
4411 | # define PDMDEV_ASSERT_EMT(pDevIns) do { } while (0)
|
---|
4412 | #endif
|
---|
4413 |
|
---|
4414 | /** @def PDMDEV_ASSERT_OTHER
|
---|
4415 | * Assert that the current thread is NOT the emulation thread.
|
---|
4416 | */
|
---|
4417 | #ifdef VBOX_STRICT
|
---|
4418 | # define PDMDEV_ASSERT_OTHER(pDevIns) pDevIns->pHlpR3->pfnAssertOther(pDevIns, __FILE__, __LINE__, __FUNCTION__)
|
---|
4419 | #else
|
---|
4420 | # define PDMDEV_ASSERT_OTHER(pDevIns) do { } while (0)
|
---|
4421 | #endif
|
---|
4422 |
|
---|
4423 | /** @def PDMDEV_ASSERT_VMLOCK_OWNER
|
---|
4424 | * Assert that the current thread is owner of the VM lock.
|
---|
4425 | */
|
---|
4426 | #ifdef VBOX_STRICT
|
---|
4427 | # define PDMDEV_ASSERT_VMLOCK_OWNER(pDevIns) pDevIns->pHlpR3->pfnAssertVMLock(pDevIns, __FILE__, __LINE__, __FUNCTION__)
|
---|
4428 | #else
|
---|
4429 | # define PDMDEV_ASSERT_VMLOCK_OWNER(pDevIns) do { } while (0)
|
---|
4430 | #endif
|
---|
4431 |
|
---|
4432 | /** @def PDMDEV_SET_ERROR
|
---|
4433 | * Set the VM error. See PDMDevHlpVMSetError() for printf like message formatting.
|
---|
4434 | */
|
---|
4435 | #define PDMDEV_SET_ERROR(pDevIns, rc, pszError) \
|
---|
4436 | PDMDevHlpVMSetError(pDevIns, rc, RT_SRC_POS, "%s", pszError)
|
---|
4437 |
|
---|
4438 | /** @def PDMDEV_SET_RUNTIME_ERROR
|
---|
4439 | * Set the VM runtime error. See PDMDevHlpVMSetRuntimeError() for printf like message formatting.
|
---|
4440 | */
|
---|
4441 | #define PDMDEV_SET_RUNTIME_ERROR(pDevIns, fFlags, pszErrorId, pszError) \
|
---|
4442 | PDMDevHlpVMSetRuntimeError(pDevIns, fFlags, pszErrorId, "%s", pszError)
|
---|
4443 |
|
---|
4444 | /** @def PDMDEVINS_2_RCPTR
|
---|
4445 | * Converts a PDM Device instance pointer a RC PDM Device instance pointer.
|
---|
4446 | */
|
---|
4447 | #define PDMDEVINS_2_RCPTR(pDevIns) ( (RCPTRTYPE(PPDMDEVINS))((RTGCUINTPTR)(pDevIns)->pvInstanceDataRC - RT_OFFSETOF(PDMDEVINS, achInstanceData)) )
|
---|
4448 |
|
---|
4449 | /** @def PDMDEVINS_2_R3PTR
|
---|
4450 | * Converts a PDM Device instance pointer a R3 PDM Device instance pointer.
|
---|
4451 | */
|
---|
4452 | #define PDMDEVINS_2_R3PTR(pDevIns) ( (R3PTRTYPE(PPDMDEVINS))((RTHCUINTPTR)(pDevIns)->pvInstanceDataR3 - RT_OFFSETOF(PDMDEVINS, achInstanceData)) )
|
---|
4453 |
|
---|
4454 | /** @def PDMDEVINS_2_R0PTR
|
---|
4455 | * Converts a PDM Device instance pointer a R0 PDM Device instance pointer.
|
---|
4456 | */
|
---|
4457 | #define PDMDEVINS_2_R0PTR(pDevIns) ( (R0PTRTYPE(PPDMDEVINS))((RTR0UINTPTR)(pDevIns)->pvInstanceDataR0 - RT_OFFSETOF(PDMDEVINS, achInstanceData)) )
|
---|
4458 |
|
---|
4459 |
|
---|
4460 | #ifdef IN_RING3
|
---|
4461 |
|
---|
4462 | /**
|
---|
4463 | * @copydoc PDMDEVHLPR3::pfnIOPortRegister
|
---|
4464 | */
|
---|
4465 | DECLINLINE(int) PDMDevHlpIOPortRegister(PPDMDEVINS pDevIns, RTIOPORT Port, RTIOPORT cPorts, RTHCPTR pvUser,
|
---|
4466 | PFNIOMIOPORTOUT pfnOut, PFNIOMIOPORTIN pfnIn,
|
---|
4467 | PFNIOMIOPORTOUTSTRING pfnOutStr, PFNIOMIOPORTINSTRING pfnInStr, const char *pszDesc)
|
---|
4468 | {
|
---|
4469 | return pDevIns->pHlpR3->pfnIOPortRegister(pDevIns, Port, cPorts, pvUser, pfnOut, pfnIn, pfnOutStr, pfnInStr, pszDesc);
|
---|
4470 | }
|
---|
4471 |
|
---|
4472 | /**
|
---|
4473 | * @copydoc PDMDEVHLPR3::pfnIOPortRegisterRC
|
---|
4474 | */
|
---|
4475 | DECLINLINE(int) PDMDevHlpIOPortRegisterRC(PPDMDEVINS pDevIns, RTIOPORT Port, RTIOPORT cPorts, RTRCPTR pvUser,
|
---|
4476 | const char *pszOut, const char *pszIn, const char *pszOutStr,
|
---|
4477 | const char *pszInStr, const char *pszDesc)
|
---|
4478 | {
|
---|
4479 | return pDevIns->pHlpR3->pfnIOPortRegisterRC(pDevIns, Port, cPorts, pvUser, pszOut, pszIn, pszOutStr, pszInStr, pszDesc);
|
---|
4480 | }
|
---|
4481 |
|
---|
4482 | /**
|
---|
4483 | * @copydoc PDMDEVHLPR3::pfnIOPortRegisterR0
|
---|
4484 | */
|
---|
4485 | DECLINLINE(int) PDMDevHlpIOPortRegisterR0(PPDMDEVINS pDevIns, RTIOPORT Port, RTIOPORT cPorts, RTR0PTR pvUser,
|
---|
4486 | const char *pszOut, const char *pszIn, const char *pszOutStr,
|
---|
4487 | const char *pszInStr, const char *pszDesc)
|
---|
4488 | {
|
---|
4489 | return pDevIns->pHlpR3->pfnIOPortRegisterR0(pDevIns, Port, cPorts, pvUser, pszOut, pszIn, pszOutStr, pszInStr, pszDesc);
|
---|
4490 | }
|
---|
4491 |
|
---|
4492 | /**
|
---|
4493 | * @copydoc PDMDEVHLPR3::pfnIOPortDeregister
|
---|
4494 | */
|
---|
4495 | DECLINLINE(int) PDMDevHlpIOPortDeregister(PPDMDEVINS pDevIns, RTIOPORT Port, RTIOPORT cPorts)
|
---|
4496 | {
|
---|
4497 | return pDevIns->pHlpR3->pfnIOPortDeregister(pDevIns, Port, cPorts);
|
---|
4498 | }
|
---|
4499 |
|
---|
4500 | /**
|
---|
4501 | * Register a Memory Mapped I/O (MMIO) region.
|
---|
4502 | *
|
---|
4503 | * These callbacks are of course for the ring-3 context (R3). Register HC
|
---|
4504 | * handlers before raw-mode context (RC) and ring-0 context (R0) handlers! There
|
---|
4505 | * must be a R3 handler for every RC and R0 handler!
|
---|
4506 | *
|
---|
4507 | * @returns VBox status.
|
---|
4508 | * @param pDevIns The device instance to register the MMIO with.
|
---|
4509 | * @param GCPhysStart First physical address in the range.
|
---|
4510 | * @param cbRange The size of the range (in bytes).
|
---|
4511 | * @param pvUser User argument.
|
---|
4512 | * @param fFlags Flags, IOMMMIO_FLAGS_XXX.
|
---|
4513 | * @param pfnWrite Pointer to function which is gonna handle Write operations.
|
---|
4514 | * @param pfnRead Pointer to function which is gonna handle Read operations.
|
---|
4515 | * @param pszDesc Pointer to description string. This must not be freed.
|
---|
4516 | */
|
---|
4517 | DECLINLINE(int) PDMDevHlpMMIORegister(PPDMDEVINS pDevIns, RTGCPHYS GCPhysStart, uint32_t cbRange, RTHCPTR pvUser,
|
---|
4518 | uint32_t fFlags, PFNIOMMMIOWRITE pfnWrite, PFNIOMMMIOREAD pfnRead, const char *pszDesc)
|
---|
4519 | {
|
---|
4520 | return pDevIns->pHlpR3->pfnMMIORegister(pDevIns, GCPhysStart, cbRange, pvUser, pfnWrite, pfnRead, NULL /*pfnFill*/,
|
---|
4521 | fFlags, pszDesc);
|
---|
4522 | }
|
---|
4523 |
|
---|
4524 | /**
|
---|
4525 | * Register a Memory Mapped I/O (MMIO) region for RC.
|
---|
4526 | *
|
---|
4527 | * These callbacks are for the raw-mode context (RC). Register ring-3 context
|
---|
4528 | * (R3) handlers before guest context handlers! There must be a R3 handler for
|
---|
4529 | * every RC handler!
|
---|
4530 | *
|
---|
4531 | * @returns VBox status.
|
---|
4532 | * @param pDevIns The device instance to register the MMIO with.
|
---|
4533 | * @param GCPhysStart First physical address in the range.
|
---|
4534 | * @param cbRange The size of the range (in bytes).
|
---|
4535 | * @param pvUser User argument.
|
---|
4536 | * @param pszWrite Name of the RC function which is gonna handle Write operations.
|
---|
4537 | * @param pszRead Name of the RC function which is gonna handle Read operations.
|
---|
4538 | */
|
---|
4539 | DECLINLINE(int) PDMDevHlpMMIORegisterRC(PPDMDEVINS pDevIns, RTGCPHYS GCPhysStart, uint32_t cbRange, RTRCPTR pvUser,
|
---|
4540 | const char *pszWrite, const char *pszRead)
|
---|
4541 | {
|
---|
4542 | return pDevIns->pHlpR3->pfnMMIORegisterRC(pDevIns, GCPhysStart, cbRange, pvUser, pszWrite, pszRead, NULL /*pszFill*/);
|
---|
4543 | }
|
---|
4544 |
|
---|
4545 | /**
|
---|
4546 | * Register a Memory Mapped I/O (MMIO) region for R0.
|
---|
4547 | *
|
---|
4548 | * These callbacks are for the ring-0 host context (R0). Register ring-3
|
---|
4549 | * constext (R3) handlers before R0 handlers! There must be a R3 handler for
|
---|
4550 | * every R0 handler!
|
---|
4551 | *
|
---|
4552 | * @returns VBox status.
|
---|
4553 | * @param pDevIns The device instance to register the MMIO with.
|
---|
4554 | * @param GCPhysStart First physical address in the range.
|
---|
4555 | * @param cbRange The size of the range (in bytes).
|
---|
4556 | * @param pvUser User argument. (if pointer, then it must be in locked memory!)
|
---|
4557 | * @param pszWrite Name of the RC function which is gonna handle Write operations.
|
---|
4558 | * @param pszRead Name of the RC function which is gonna handle Read operations.
|
---|
4559 | * @remarks Caller enters the device critical section prior to invoking the
|
---|
4560 | * registered callback methods.
|
---|
4561 | */
|
---|
4562 | DECLINLINE(int) PDMDevHlpMMIORegisterR0(PPDMDEVINS pDevIns, RTGCPHYS GCPhysStart, uint32_t cbRange, RTR0PTR pvUser,
|
---|
4563 | const char *pszWrite, const char *pszRead)
|
---|
4564 | {
|
---|
4565 | return pDevIns->pHlpR3->pfnMMIORegisterR0(pDevIns, GCPhysStart, cbRange, pvUser, pszWrite, pszRead, NULL /*pszFill*/);
|
---|
4566 | }
|
---|
4567 |
|
---|
4568 | /**
|
---|
4569 | * @copydoc PDMDEVHLPR3::pfnMMIORegister
|
---|
4570 | */
|
---|
4571 | DECLINLINE(int) PDMDevHlpMMIORegisterEx(PPDMDEVINS pDevIns, RTGCPHYS GCPhysStart, uint32_t cbRange, RTHCPTR pvUser,
|
---|
4572 | uint32_t fFlags, PFNIOMMMIOWRITE pfnWrite, PFNIOMMMIOREAD pfnRead,
|
---|
4573 | PFNIOMMMIOFILL pfnFill, const char *pszDesc)
|
---|
4574 | {
|
---|
4575 | return pDevIns->pHlpR3->pfnMMIORegister(pDevIns, GCPhysStart, cbRange, pvUser, pfnWrite, pfnRead, pfnFill,
|
---|
4576 | fFlags, pszDesc);
|
---|
4577 | }
|
---|
4578 |
|
---|
4579 | /**
|
---|
4580 | * @copydoc PDMDEVHLPR3::pfnMMIORegisterRC
|
---|
4581 | */
|
---|
4582 | DECLINLINE(int) PDMDevHlpMMIORegisterRCEx(PPDMDEVINS pDevIns, RTGCPHYS GCPhysStart, uint32_t cbRange, RTRCPTR pvUser,
|
---|
4583 | const char *pszWrite, const char *pszRead, const char *pszFill)
|
---|
4584 | {
|
---|
4585 | return pDevIns->pHlpR3->pfnMMIORegisterRC(pDevIns, GCPhysStart, cbRange, pvUser, pszWrite, pszRead, pszFill);
|
---|
4586 | }
|
---|
4587 |
|
---|
4588 | /**
|
---|
4589 | * @copydoc PDMDEVHLPR3::pfnMMIORegisterR0
|
---|
4590 | */
|
---|
4591 | DECLINLINE(int) PDMDevHlpMMIORegisterR0Ex(PPDMDEVINS pDevIns, RTGCPHYS GCPhysStart, uint32_t cbRange, RTR0PTR pvUser,
|
---|
4592 | const char *pszWrite, const char *pszRead, const char *pszFill)
|
---|
4593 | {
|
---|
4594 | return pDevIns->pHlpR3->pfnMMIORegisterR0(pDevIns, GCPhysStart, cbRange, pvUser, pszWrite, pszRead, pszFill);
|
---|
4595 | }
|
---|
4596 |
|
---|
4597 | /**
|
---|
4598 | * @copydoc PDMDEVHLPR3::pfnMMIODeregister
|
---|
4599 | */
|
---|
4600 | DECLINLINE(int) PDMDevHlpMMIODeregister(PPDMDEVINS pDevIns, RTGCPHYS GCPhysStart, uint32_t cbRange)
|
---|
4601 | {
|
---|
4602 | return pDevIns->pHlpR3->pfnMMIODeregister(pDevIns, GCPhysStart, cbRange);
|
---|
4603 | }
|
---|
4604 |
|
---|
4605 | /**
|
---|
4606 | * @copydoc PDMDEVHLPR3::pfnMMIO2Register
|
---|
4607 | */
|
---|
4608 | DECLINLINE(int) PDMDevHlpMMIO2Register(PPDMDEVINS pDevIns, uint32_t iRegion, RTGCPHYS cb, uint32_t fFlags, void **ppv, const char *pszDesc)
|
---|
4609 | {
|
---|
4610 | return pDevIns->pHlpR3->pfnMMIO2Register(pDevIns, iRegion, cb, fFlags, ppv, pszDesc);
|
---|
4611 | }
|
---|
4612 |
|
---|
4613 | /**
|
---|
4614 | * @copydoc PDMDEVHLPR3::pfnMMIO2Deregister
|
---|
4615 | */
|
---|
4616 | DECLINLINE(int) PDMDevHlpMMIO2Deregister(PPDMDEVINS pDevIns, uint32_t iRegion)
|
---|
4617 | {
|
---|
4618 | return pDevIns->pHlpR3->pfnMMIO2Deregister(pDevIns, iRegion);
|
---|
4619 | }
|
---|
4620 |
|
---|
4621 | /**
|
---|
4622 | * @copydoc PDMDEVHLPR3::pfnMMIO2Map
|
---|
4623 | */
|
---|
4624 | DECLINLINE(int) PDMDevHlpMMIO2Map(PPDMDEVINS pDevIns, uint32_t iRegion, RTGCPHYS GCPhys)
|
---|
4625 | {
|
---|
4626 | return pDevIns->pHlpR3->pfnMMIO2Map(pDevIns, iRegion, GCPhys);
|
---|
4627 | }
|
---|
4628 |
|
---|
4629 | /**
|
---|
4630 | * @copydoc PDMDEVHLPR3::pfnMMIO2Unmap
|
---|
4631 | */
|
---|
4632 | DECLINLINE(int) PDMDevHlpMMIO2Unmap(PPDMDEVINS pDevIns, uint32_t iRegion, RTGCPHYS GCPhys)
|
---|
4633 | {
|
---|
4634 | return pDevIns->pHlpR3->pfnMMIO2Unmap(pDevIns, iRegion, GCPhys);
|
---|
4635 | }
|
---|
4636 |
|
---|
4637 | /**
|
---|
4638 | * @copydoc PDMDEVHLPR3::pfnMMHyperMapMMIO2
|
---|
4639 | */
|
---|
4640 | DECLINLINE(int) PDMDevHlpMMHyperMapMMIO2(PPDMDEVINS pDevIns, uint32_t iRegion, RTGCPHYS off, RTGCPHYS cb,
|
---|
4641 | const char *pszDesc, PRTRCPTR pRCPtr)
|
---|
4642 | {
|
---|
4643 | return pDevIns->pHlpR3->pfnMMHyperMapMMIO2(pDevIns, iRegion, off, cb, pszDesc, pRCPtr);
|
---|
4644 | }
|
---|
4645 |
|
---|
4646 | /**
|
---|
4647 | * @copydoc PDMDEVHLPR3::pfnMMIO2MapKernel
|
---|
4648 | */
|
---|
4649 | DECLINLINE(int) PDMDevHlpMMIO2MapKernel(PPDMDEVINS pDevIns, uint32_t iRegion, RTGCPHYS off, RTGCPHYS cb,
|
---|
4650 | const char *pszDesc, PRTR0PTR pR0Ptr)
|
---|
4651 | {
|
---|
4652 | return pDevIns->pHlpR3->pfnMMIO2MapKernel(pDevIns, iRegion, off, cb, pszDesc, pR0Ptr);
|
---|
4653 | }
|
---|
4654 |
|
---|
4655 | /**
|
---|
4656 | * @copydoc PDMDEVHLPR3::pfnROMRegister
|
---|
4657 | */
|
---|
4658 | DECLINLINE(int) PDMDevHlpROMRegister(PPDMDEVINS pDevIns, RTGCPHYS GCPhysStart, uint32_t cbRange,
|
---|
4659 | const void *pvBinary, uint32_t cbBinary, uint32_t fFlags, const char *pszDesc)
|
---|
4660 | {
|
---|
4661 | return pDevIns->pHlpR3->pfnROMRegister(pDevIns, GCPhysStart, cbRange, pvBinary, cbBinary, fFlags, pszDesc);
|
---|
4662 | }
|
---|
4663 |
|
---|
4664 | /**
|
---|
4665 | * @copydoc PDMDEVHLPR3::pfnROMProtectShadow
|
---|
4666 | */
|
---|
4667 | DECLINLINE(int) PDMDevHlpROMProtectShadow(PPDMDEVINS pDevIns, RTGCPHYS GCPhysStart, uint32_t cbRange, PGMROMPROT enmProt)
|
---|
4668 | {
|
---|
4669 | return pDevIns->pHlpR3->pfnROMProtectShadow(pDevIns, GCPhysStart, cbRange, enmProt);
|
---|
4670 | }
|
---|
4671 |
|
---|
4672 | /**
|
---|
4673 | * Register a save state data unit.
|
---|
4674 | *
|
---|
4675 | * @returns VBox status.
|
---|
4676 | * @param pDevIns The device instance.
|
---|
4677 | * @param uVersion Data layout version number.
|
---|
4678 | * @param cbGuess The approximate amount of data in the unit.
|
---|
4679 | * Only for progress indicators.
|
---|
4680 | * @param pfnSaveExec Execute save callback, optional.
|
---|
4681 | * @param pfnLoadExec Execute load callback, optional.
|
---|
4682 | */
|
---|
4683 | DECLINLINE(int) PDMDevHlpSSMRegister(PPDMDEVINS pDevIns, uint32_t uVersion, size_t cbGuess,
|
---|
4684 | PFNSSMDEVSAVEEXEC pfnSaveExec, PFNSSMDEVLOADEXEC pfnLoadExec)
|
---|
4685 | {
|
---|
4686 | return pDevIns->pHlpR3->pfnSSMRegister(pDevIns, uVersion, cbGuess, NULL /*pszBefore*/,
|
---|
4687 | NULL /*pfnLivePrep*/, NULL /*pfnLiveExec*/, NULL /*pfnLiveDone*/,
|
---|
4688 | NULL /*pfnSavePrep*/, pfnSaveExec, NULL /*pfnSaveDone*/,
|
---|
4689 | NULL /*pfnLoadPrep*/, pfnLoadExec, NULL /*pfnLoadDone*/);
|
---|
4690 | }
|
---|
4691 |
|
---|
4692 | /**
|
---|
4693 | * Register a save state data unit with a live save callback as well.
|
---|
4694 | *
|
---|
4695 | * @returns VBox status.
|
---|
4696 | * @param pDevIns The device instance.
|
---|
4697 | * @param uVersion Data layout version number.
|
---|
4698 | * @param cbGuess The approximate amount of data in the unit.
|
---|
4699 | * Only for progress indicators.
|
---|
4700 | * @param pfnLiveExec Execute live callback, optional.
|
---|
4701 | * @param pfnSaveExec Execute save callback, optional.
|
---|
4702 | * @param pfnLoadExec Execute load callback, optional.
|
---|
4703 | */
|
---|
4704 | DECLINLINE(int) PDMDevHlpSSMRegister3(PPDMDEVINS pDevIns, uint32_t uVersion, size_t cbGuess,
|
---|
4705 | FNSSMDEVLIVEEXEC pfnLiveExec, PFNSSMDEVSAVEEXEC pfnSaveExec, PFNSSMDEVLOADEXEC pfnLoadExec)
|
---|
4706 | {
|
---|
4707 | return pDevIns->pHlpR3->pfnSSMRegister(pDevIns, uVersion, cbGuess, NULL /*pszBefore*/,
|
---|
4708 | NULL /*pfnLivePrep*/, pfnLiveExec, NULL /*pfnLiveDone*/,
|
---|
4709 | NULL /*pfnSavePrep*/, pfnSaveExec, NULL /*pfnSaveDone*/,
|
---|
4710 | NULL /*pfnLoadPrep*/, pfnLoadExec, NULL /*pfnLoadDone*/);
|
---|
4711 | }
|
---|
4712 |
|
---|
4713 | /**
|
---|
4714 | * @copydoc PDMDEVHLPR3::pfnSSMRegister
|
---|
4715 | */
|
---|
4716 | DECLINLINE(int) PDMDevHlpSSMRegisterEx(PPDMDEVINS pDevIns, uint32_t uVersion, size_t cbGuess, const char *pszBefore,
|
---|
4717 | PFNSSMDEVLIVEPREP pfnLivePrep, PFNSSMDEVLIVEEXEC pfnLiveExec, PFNSSMDEVLIVEVOTE pfnLiveVote,
|
---|
4718 | PFNSSMDEVSAVEPREP pfnSavePrep, PFNSSMDEVSAVEEXEC pfnSaveExec, PFNSSMDEVSAVEDONE pfnSaveDone,
|
---|
4719 | PFNSSMDEVLOADPREP pfnLoadPrep, PFNSSMDEVLOADEXEC pfnLoadExec, PFNSSMDEVLOADDONE pfnLoadDone)
|
---|
4720 | {
|
---|
4721 | return pDevIns->pHlpR3->pfnSSMRegister(pDevIns, uVersion, cbGuess, pszBefore,
|
---|
4722 | pfnLivePrep, pfnLiveExec, pfnLiveVote,
|
---|
4723 | pfnSavePrep, pfnSaveExec, pfnSaveDone,
|
---|
4724 | pfnLoadPrep, pfnLoadExec, pfnLoadDone);
|
---|
4725 | }
|
---|
4726 |
|
---|
4727 | /**
|
---|
4728 | * @copydoc PDMDEVHLPR3::pfnTMTimerCreate
|
---|
4729 | */
|
---|
4730 | DECLINLINE(int) PDMDevHlpTMTimerCreate(PPDMDEVINS pDevIns, TMCLOCK enmClock, PFNTMTIMERDEV pfnCallback, void *pvUser, uint32_t fFlags,
|
---|
4731 | const char *pszDesc, PPTMTIMERR3 ppTimer)
|
---|
4732 | {
|
---|
4733 | return pDevIns->pHlpR3->pfnTMTimerCreate(pDevIns, enmClock, pfnCallback, pvUser, fFlags, pszDesc, ppTimer);
|
---|
4734 | }
|
---|
4735 |
|
---|
4736 | /**
|
---|
4737 | * @copydoc PDMDEVHLPR3::pfnTMUtcNow
|
---|
4738 | */
|
---|
4739 | DECLINLINE(PRTTIMESPEC) PDMDevHlpTMUtcNow(PPDMDEVINS pDevIns, PRTTIMESPEC pTime)
|
---|
4740 | {
|
---|
4741 | return pDevIns->pHlpR3->pfnTMUtcNow(pDevIns, pTime);
|
---|
4742 | }
|
---|
4743 |
|
---|
4744 | #endif /* IN_RING3 */
|
---|
4745 |
|
---|
4746 | /**
|
---|
4747 | * @copydoc PDMDEVHLPR3::pfnPhysRead
|
---|
4748 | */
|
---|
4749 | DECLINLINE(int) PDMDevHlpPhysRead(PPDMDEVINS pDevIns, RTGCPHYS GCPhys, void *pvBuf, size_t cbRead)
|
---|
4750 | {
|
---|
4751 | return pDevIns->CTX_SUFF(pHlp)->pfnPhysRead(pDevIns, GCPhys, pvBuf, cbRead);
|
---|
4752 | }
|
---|
4753 |
|
---|
4754 | /**
|
---|
4755 | * @copydoc PDMDEVHLPR3::pfnPhysWrite
|
---|
4756 | */
|
---|
4757 | DECLINLINE(int) PDMDevHlpPhysWrite(PPDMDEVINS pDevIns, RTGCPHYS GCPhys, const void *pvBuf, size_t cbWrite)
|
---|
4758 | {
|
---|
4759 | return pDevIns->CTX_SUFF(pHlp)->pfnPhysWrite(pDevIns, GCPhys, pvBuf, cbWrite);
|
---|
4760 | }
|
---|
4761 |
|
---|
4762 | #ifdef IN_RING3
|
---|
4763 |
|
---|
4764 | /**
|
---|
4765 | * @copydoc PDMDEVHLPR3::pfnPhysGCPhys2CCPtr
|
---|
4766 | */
|
---|
4767 | DECLINLINE(int) PDMDevHlpPhysGCPhys2CCPtr(PPDMDEVINS pDevIns, RTGCPHYS GCPhys, uint32_t fFlags, void **ppv, PPGMPAGEMAPLOCK pLock)
|
---|
4768 | {
|
---|
4769 | return pDevIns->CTX_SUFF(pHlp)->pfnPhysGCPhys2CCPtr(pDevIns, GCPhys, fFlags, ppv, pLock);
|
---|
4770 | }
|
---|
4771 |
|
---|
4772 | /**
|
---|
4773 | * @copydoc PDMDEVHLPR3::pfnPhysGCPhys2CCPtrReadOnly
|
---|
4774 | */
|
---|
4775 | DECLINLINE(int) PDMDevHlpPhysGCPhys2CCPtrReadOnly(PPDMDEVINS pDevIns, RTGCPHYS GCPhys, uint32_t fFlags, void const **ppv,
|
---|
4776 | PPGMPAGEMAPLOCK pLock)
|
---|
4777 | {
|
---|
4778 | return pDevIns->CTX_SUFF(pHlp)->pfnPhysGCPhys2CCPtrReadOnly(pDevIns, GCPhys, fFlags, ppv, pLock);
|
---|
4779 | }
|
---|
4780 |
|
---|
4781 | /**
|
---|
4782 | * @copydoc PDMDEVHLPR3::pfnPhysReleasePageMappingLock
|
---|
4783 | */
|
---|
4784 | DECLINLINE(void) PDMDevHlpPhysReleasePageMappingLock(PPDMDEVINS pDevIns, PPGMPAGEMAPLOCK pLock)
|
---|
4785 | {
|
---|
4786 | pDevIns->CTX_SUFF(pHlp)->pfnPhysReleasePageMappingLock(pDevIns, pLock);
|
---|
4787 | }
|
---|
4788 |
|
---|
4789 | /**
|
---|
4790 | * @copydoc PDMDEVHLPR3::pfnPhysReadGCVirt
|
---|
4791 | */
|
---|
4792 | DECLINLINE(int) PDMDevHlpPhysReadGCVirt(PPDMDEVINS pDevIns, void *pvDst, RTGCPTR GCVirtSrc, size_t cb)
|
---|
4793 | {
|
---|
4794 | return pDevIns->pHlpR3->pfnPhysReadGCVirt(pDevIns, pvDst, GCVirtSrc, cb);
|
---|
4795 | }
|
---|
4796 |
|
---|
4797 | /**
|
---|
4798 | * @copydoc PDMDEVHLPR3::pfnPhysWriteGCVirt
|
---|
4799 | */
|
---|
4800 | DECLINLINE(int) PDMDevHlpPhysWriteGCVirt(PPDMDEVINS pDevIns, RTGCPTR GCVirtDst, const void *pvSrc, size_t cb)
|
---|
4801 | {
|
---|
4802 | return pDevIns->pHlpR3->pfnPhysWriteGCVirt(pDevIns, GCVirtDst, pvSrc, cb);
|
---|
4803 | }
|
---|
4804 |
|
---|
4805 | /**
|
---|
4806 | * @copydoc PDMDEVHLPR3::pfnPhysGCPtr2GCPhys
|
---|
4807 | */
|
---|
4808 | DECLINLINE(int) PDMDevHlpPhysGCPtr2GCPhys(PPDMDEVINS pDevIns, RTGCPTR GCPtr, PRTGCPHYS pGCPhys)
|
---|
4809 | {
|
---|
4810 | return pDevIns->pHlpR3->pfnPhysGCPtr2GCPhys(pDevIns, GCPtr, pGCPhys);
|
---|
4811 | }
|
---|
4812 |
|
---|
4813 | /**
|
---|
4814 | * @copydoc PDMDEVHLPR3::pfnMMHeapAlloc
|
---|
4815 | */
|
---|
4816 | DECLINLINE(void *) PDMDevHlpMMHeapAlloc(PPDMDEVINS pDevIns, size_t cb)
|
---|
4817 | {
|
---|
4818 | return pDevIns->pHlpR3->pfnMMHeapAlloc(pDevIns, cb);
|
---|
4819 | }
|
---|
4820 |
|
---|
4821 | /**
|
---|
4822 | * @copydoc PDMDEVHLPR3::pfnMMHeapAllocZ
|
---|
4823 | */
|
---|
4824 | DECLINLINE(void *) PDMDevHlpMMHeapAllocZ(PPDMDEVINS pDevIns, size_t cb)
|
---|
4825 | {
|
---|
4826 | return pDevIns->pHlpR3->pfnMMHeapAllocZ(pDevIns, cb);
|
---|
4827 | }
|
---|
4828 |
|
---|
4829 | /**
|
---|
4830 | * @copydoc PDMDEVHLPR3::pfnMMHeapFree
|
---|
4831 | */
|
---|
4832 | DECLINLINE(void) PDMDevHlpMMHeapFree(PPDMDEVINS pDevIns, void *pv)
|
---|
4833 | {
|
---|
4834 | pDevIns->pHlpR3->pfnMMHeapFree(pDevIns, pv);
|
---|
4835 | }
|
---|
4836 | #endif /* IN_RING3 */
|
---|
4837 |
|
---|
4838 | /**
|
---|
4839 | * @copydoc PDMDEVHLPR3::pfnVMState
|
---|
4840 | */
|
---|
4841 | DECLINLINE(VMSTATE) PDMDevHlpVMState(PPDMDEVINS pDevIns)
|
---|
4842 | {
|
---|
4843 | return pDevIns->CTX_SUFF(pHlp)->pfnVMState(pDevIns);
|
---|
4844 | }
|
---|
4845 |
|
---|
4846 | #ifdef IN_RING3
|
---|
4847 | /**
|
---|
4848 | * @copydoc PDMDEVHLPR3::pfnVMTeleportedAndNotFullyResumedYet
|
---|
4849 | */
|
---|
4850 | DECLINLINE(bool) PDMDevHlpVMTeleportedAndNotFullyResumedYet(PPDMDEVINS pDevIns)
|
---|
4851 | {
|
---|
4852 | return pDevIns->pHlpR3->pfnVMTeleportedAndNotFullyResumedYet(pDevIns);
|
---|
4853 | }
|
---|
4854 | #endif /* IN_RING3 */
|
---|
4855 |
|
---|
4856 | /**
|
---|
4857 | * @copydoc PDMDEVHLPR3::pfnVMSetError
|
---|
4858 | */
|
---|
4859 | DECLINLINE(int) RT_IPRT_FORMAT_ATTR(6, 7) PDMDevHlpVMSetError(PPDMDEVINS pDevIns, const int rc, RT_SRC_POS_DECL,
|
---|
4860 | const char *pszFormat, ...)
|
---|
4861 | {
|
---|
4862 | va_list va;
|
---|
4863 | va_start(va, pszFormat);
|
---|
4864 | pDevIns->CTX_SUFF(pHlp)->pfnVMSetErrorV(pDevIns, rc, RT_SRC_POS_ARGS, pszFormat, va);
|
---|
4865 | va_end(va);
|
---|
4866 | return rc;
|
---|
4867 | }
|
---|
4868 |
|
---|
4869 | /**
|
---|
4870 | * @copydoc PDMDEVHLPR3::pfnVMSetRuntimeError
|
---|
4871 | */
|
---|
4872 | DECLINLINE(int) RT_IPRT_FORMAT_ATTR(4, 5) PDMDevHlpVMSetRuntimeError(PPDMDEVINS pDevIns, uint32_t fFlags, const char *pszErrorId,
|
---|
4873 | const char *pszFormat, ...)
|
---|
4874 | {
|
---|
4875 | va_list va;
|
---|
4876 | int rc;
|
---|
4877 | va_start(va, pszFormat);
|
---|
4878 | rc = pDevIns->CTX_SUFF(pHlp)->pfnVMSetRuntimeErrorV(pDevIns, fFlags, pszErrorId, pszFormat, va);
|
---|
4879 | va_end(va);
|
---|
4880 | return rc;
|
---|
4881 | }
|
---|
4882 |
|
---|
4883 | /**
|
---|
4884 | * VBOX_STRICT wrapper for pHlp->pfnDBGFStopV.
|
---|
4885 | *
|
---|
4886 | * @returns VBox status code which must be passed up to the VMM. This will be
|
---|
4887 | * VINF_SUCCESS in non-strict builds.
|
---|
4888 | * @param pDevIns The device instance.
|
---|
4889 | * @param SRC_POS Use RT_SRC_POS.
|
---|
4890 | * @param pszFormat Message. (optional)
|
---|
4891 | * @param ... Message parameters.
|
---|
4892 | */
|
---|
4893 | DECLINLINE(int) RT_IPRT_FORMAT_ATTR(5, 6) PDMDevHlpDBGFStop(PPDMDEVINS pDevIns, RT_SRC_POS_DECL, const char *pszFormat, ...)
|
---|
4894 | {
|
---|
4895 | #ifdef VBOX_STRICT
|
---|
4896 | # ifdef IN_RING3
|
---|
4897 | int rc;
|
---|
4898 | va_list args;
|
---|
4899 | va_start(args, pszFormat);
|
---|
4900 | rc = pDevIns->pHlpR3->pfnDBGFStopV(pDevIns, RT_SRC_POS_ARGS, pszFormat, args);
|
---|
4901 | va_end(args);
|
---|
4902 | return rc;
|
---|
4903 | # else
|
---|
4904 | NOREF(pDevIns);
|
---|
4905 | NOREF(pszFile);
|
---|
4906 | NOREF(iLine);
|
---|
4907 | NOREF(pszFunction);
|
---|
4908 | NOREF(pszFormat);
|
---|
4909 | return VINF_EM_DBG_STOP;
|
---|
4910 | # endif
|
---|
4911 | #else
|
---|
4912 | NOREF(pDevIns);
|
---|
4913 | NOREF(pszFile);
|
---|
4914 | NOREF(iLine);
|
---|
4915 | NOREF(pszFunction);
|
---|
4916 | NOREF(pszFormat);
|
---|
4917 | return VINF_SUCCESS;
|
---|
4918 | #endif
|
---|
4919 | }
|
---|
4920 |
|
---|
4921 | #ifdef IN_RING3
|
---|
4922 |
|
---|
4923 | /**
|
---|
4924 | * @copydoc PDMDEVHLPR3::pfnDBGFInfoRegister
|
---|
4925 | */
|
---|
4926 | DECLINLINE(int) PDMDevHlpDBGFInfoRegister(PPDMDEVINS pDevIns, const char *pszName, const char *pszDesc, PFNDBGFHANDLERDEV pfnHandler)
|
---|
4927 | {
|
---|
4928 | return pDevIns->pHlpR3->pfnDBGFInfoRegister(pDevIns, pszName, pszDesc, pfnHandler);
|
---|
4929 | }
|
---|
4930 |
|
---|
4931 | /**
|
---|
4932 | * @copydoc PDMDEVHLPR3::pfnDBGFRegRegister
|
---|
4933 | */
|
---|
4934 | DECLINLINE(int) PDMDevHlpDBGFRegRegister(PPDMDEVINS pDevIns, PCDBGFREGDESC paRegisters)
|
---|
4935 | {
|
---|
4936 | return pDevIns->pHlpR3->pfnDBGFRegRegister(pDevIns, paRegisters);
|
---|
4937 | }
|
---|
4938 |
|
---|
4939 | /**
|
---|
4940 | * @copydoc PDMDEVHLPR3::pfnSTAMRegister
|
---|
4941 | */
|
---|
4942 | DECLINLINE(void) PDMDevHlpSTAMRegister(PPDMDEVINS pDevIns, void *pvSample, STAMTYPE enmType, const char *pszName, STAMUNIT enmUnit, const char *pszDesc)
|
---|
4943 | {
|
---|
4944 | pDevIns->pHlpR3->pfnSTAMRegister(pDevIns, pvSample, enmType, pszName, enmUnit, pszDesc);
|
---|
4945 | }
|
---|
4946 |
|
---|
4947 | /**
|
---|
4948 | * @copydoc PDMDEVHLPR3::pfnSTAMRegisterF
|
---|
4949 | */
|
---|
4950 | DECLINLINE(void) RT_IPRT_FORMAT_ATTR(7, 8) PDMDevHlpSTAMRegisterF(PPDMDEVINS pDevIns, void *pvSample, STAMTYPE enmType,
|
---|
4951 | STAMVISIBILITY enmVisibility, STAMUNIT enmUnit,
|
---|
4952 | const char *pszDesc, const char *pszName, ...)
|
---|
4953 | {
|
---|
4954 | va_list va;
|
---|
4955 | va_start(va, pszName);
|
---|
4956 | pDevIns->pHlpR3->pfnSTAMRegisterV(pDevIns, pvSample, enmType, enmVisibility, enmUnit, pszDesc, pszName, va);
|
---|
4957 | va_end(va);
|
---|
4958 | }
|
---|
4959 |
|
---|
4960 | /**
|
---|
4961 | * @copydoc PDMDEVHLPR3::pfnPCIRegister
|
---|
4962 | */
|
---|
4963 | DECLINLINE(int) PDMDevHlpPCIRegister(PPDMDEVINS pDevIns, PPCIDEVICE pPciDev)
|
---|
4964 | {
|
---|
4965 | return pDevIns->pHlpR3->pfnPCIRegister(pDevIns, pPciDev);
|
---|
4966 | }
|
---|
4967 |
|
---|
4968 | /**
|
---|
4969 | * @copydoc PDMDEVHLPR3::pfnPCIIORegionRegister
|
---|
4970 | */
|
---|
4971 | DECLINLINE(int) PDMDevHlpPCIIORegionRegister(PPDMDEVINS pDevIns, int iRegion, uint32_t cbRegion,
|
---|
4972 | PCIADDRESSSPACE enmType, PFNPCIIOREGIONMAP pfnCallback)
|
---|
4973 | {
|
---|
4974 | return pDevIns->pHlpR3->pfnPCIIORegionRegister(pDevIns, iRegion, cbRegion, enmType, pfnCallback);
|
---|
4975 | }
|
---|
4976 |
|
---|
4977 | /**
|
---|
4978 | * @copydoc PDMDEVHLPR3::pfnPCIRegisterMsi
|
---|
4979 | */
|
---|
4980 | DECLINLINE(int) PDMDevHlpPCIRegisterMsi(PPDMDEVINS pDevIns, PPDMMSIREG pMsiReg)
|
---|
4981 | {
|
---|
4982 | return pDevIns->pHlpR3->pfnPCIRegisterMsi(pDevIns, pMsiReg);
|
---|
4983 | }
|
---|
4984 |
|
---|
4985 | /**
|
---|
4986 | * @copydoc PDMDEVHLPR3::pfnPCISetConfigCallbacks
|
---|
4987 | */
|
---|
4988 | DECLINLINE(void) PDMDevHlpPCISetConfigCallbacks(PPDMDEVINS pDevIns, PPCIDEVICE pPciDev, PFNPCICONFIGREAD pfnRead, PPFNPCICONFIGREAD ppfnReadOld,
|
---|
4989 | PFNPCICONFIGWRITE pfnWrite, PPFNPCICONFIGWRITE ppfnWriteOld)
|
---|
4990 | {
|
---|
4991 | pDevIns->pHlpR3->pfnPCISetConfigCallbacks(pDevIns, pPciDev, pfnRead, ppfnReadOld, pfnWrite, ppfnWriteOld);
|
---|
4992 | }
|
---|
4993 |
|
---|
4994 | #endif /* IN_RING3 */
|
---|
4995 |
|
---|
4996 | /**
|
---|
4997 | * @copydoc PDMDEVHLPR3::pfnPCIPhysRead
|
---|
4998 | */
|
---|
4999 | DECLINLINE(int) PDMDevHlpPCIPhysRead(PPDMDEVINS pDevIns, RTGCPHYS GCPhys, void *pvBuf, size_t cbRead)
|
---|
5000 | {
|
---|
5001 | return pDevIns->CTX_SUFF(pHlp)->pfnPCIPhysRead(pDevIns, GCPhys, pvBuf, cbRead);
|
---|
5002 | }
|
---|
5003 |
|
---|
5004 | /**
|
---|
5005 | * @copydoc PDMDEVHLPR3::pfnPCIPhysWrite
|
---|
5006 | */
|
---|
5007 | DECLINLINE(int) PDMDevHlpPCIPhysWrite(PPDMDEVINS pDevIns, RTGCPHYS GCPhys, const void *pvBuf, size_t cbWrite)
|
---|
5008 | {
|
---|
5009 | return pDevIns->CTX_SUFF(pHlp)->pfnPCIPhysWrite(pDevIns, GCPhys, pvBuf, cbWrite);
|
---|
5010 | }
|
---|
5011 |
|
---|
5012 | /**
|
---|
5013 | * @copydoc PDMDEVHLPR3::pfnPCISetIrq
|
---|
5014 | */
|
---|
5015 | DECLINLINE(void) PDMDevHlpPCISetIrq(PPDMDEVINS pDevIns, int iIrq, int iLevel)
|
---|
5016 | {
|
---|
5017 | pDevIns->CTX_SUFF(pHlp)->pfnPCISetIrq(pDevIns, iIrq, iLevel);
|
---|
5018 | }
|
---|
5019 |
|
---|
5020 | /**
|
---|
5021 | * @copydoc PDMDEVHLPR3::pfnPCISetIrqNoWait
|
---|
5022 | */
|
---|
5023 | DECLINLINE(void) PDMDevHlpPCISetIrqNoWait(PPDMDEVINS pDevIns, int iIrq, int iLevel)
|
---|
5024 | {
|
---|
5025 | pDevIns->CTX_SUFF(pHlp)->pfnPCISetIrq(pDevIns, iIrq, iLevel);
|
---|
5026 | }
|
---|
5027 |
|
---|
5028 | /**
|
---|
5029 | * @copydoc PDMDEVHLPR3::pfnISASetIrq
|
---|
5030 | */
|
---|
5031 | DECLINLINE(void) PDMDevHlpISASetIrq(PPDMDEVINS pDevIns, int iIrq, int iLevel)
|
---|
5032 | {
|
---|
5033 | pDevIns->CTX_SUFF(pHlp)->pfnISASetIrq(pDevIns, iIrq, iLevel);
|
---|
5034 | }
|
---|
5035 |
|
---|
5036 | /**
|
---|
5037 | * @copydoc PDMDEVHLPR3::pfnISASetIrqNoWait
|
---|
5038 | */
|
---|
5039 | DECLINLINE(void) PDMDevHlpISASetIrqNoWait(PPDMDEVINS pDevIns, int iIrq, int iLevel)
|
---|
5040 | {
|
---|
5041 | pDevIns->CTX_SUFF(pHlp)->pfnISASetIrq(pDevIns, iIrq, iLevel);
|
---|
5042 | }
|
---|
5043 |
|
---|
5044 | #ifdef IN_RING3
|
---|
5045 |
|
---|
5046 | /**
|
---|
5047 | * @copydoc PDMDEVHLPR3::pfnDriverAttach
|
---|
5048 | */
|
---|
5049 | DECLINLINE(int) PDMDevHlpDriverAttach(PPDMDEVINS pDevIns, uint32_t iLun, PPDMIBASE pBaseInterface, PPDMIBASE *ppBaseInterface, const char *pszDesc)
|
---|
5050 | {
|
---|
5051 | return pDevIns->pHlpR3->pfnDriverAttach(pDevIns, iLun, pBaseInterface, ppBaseInterface, pszDesc);
|
---|
5052 | }
|
---|
5053 |
|
---|
5054 | /**
|
---|
5055 | * @copydoc PDMDEVHLPR3::pfnDriverDetach
|
---|
5056 | */
|
---|
5057 | DECLINLINE(int) PDMDevHlpDriverDetach(PPDMDEVINS pDevIns, PPDMDRVINS pDrvIns, uint32_t fFlags)
|
---|
5058 | {
|
---|
5059 | return pDevIns->pHlpR3->pfnDriverDetach(pDevIns, pDrvIns, fFlags);
|
---|
5060 | }
|
---|
5061 |
|
---|
5062 | /**
|
---|
5063 | * @copydoc PDMDEVHLPR3::pfnQueueCreate
|
---|
5064 | */
|
---|
5065 | DECLINLINE(int) PDMDevHlpQueueCreate(PPDMDEVINS pDevIns, size_t cbItem, uint32_t cItems, uint32_t cMilliesInterval,
|
---|
5066 | PFNPDMQUEUEDEV pfnCallback, bool fRZEnabled, const char *pszName, PPDMQUEUE *ppQueue)
|
---|
5067 | {
|
---|
5068 | return pDevIns->pHlpR3->pfnQueueCreate(pDevIns, cbItem, cItems, cMilliesInterval, pfnCallback, fRZEnabled, pszName, ppQueue);
|
---|
5069 | }
|
---|
5070 |
|
---|
5071 | /**
|
---|
5072 | * Initializes a PDM critical section.
|
---|
5073 | *
|
---|
5074 | * The PDM critical sections are derived from the IPRT critical sections, but
|
---|
5075 | * works in RC and R0 as well.
|
---|
5076 | *
|
---|
5077 | * @returns VBox status code.
|
---|
5078 | * @param pDevIns The device instance.
|
---|
5079 | * @param pCritSect Pointer to the critical section.
|
---|
5080 | * @param SRC_POS Use RT_SRC_POS.
|
---|
5081 | * @param pszNameFmt Format string for naming the critical section.
|
---|
5082 | * For statistics and lock validation.
|
---|
5083 | * @param ... Arguments for the format string.
|
---|
5084 | */
|
---|
5085 | DECLINLINE(int) RT_IPRT_FORMAT_ATTR(6, 7) PDMDevHlpCritSectInit(PPDMDEVINS pDevIns, PPDMCRITSECT pCritSect, RT_SRC_POS_DECL,
|
---|
5086 | const char *pszNameFmt, ...)
|
---|
5087 | {
|
---|
5088 | int rc;
|
---|
5089 | va_list va;
|
---|
5090 | va_start(va, pszNameFmt);
|
---|
5091 | rc = pDevIns->pHlpR3->pfnCritSectInit(pDevIns, pCritSect, RT_SRC_POS_ARGS, pszNameFmt, va);
|
---|
5092 | va_end(va);
|
---|
5093 | return rc;
|
---|
5094 | }
|
---|
5095 |
|
---|
5096 | /**
|
---|
5097 | * @copydoc PDMDEVHLPR3::pfnCritSectGetNop
|
---|
5098 | */
|
---|
5099 | DECLINLINE(PPDMCRITSECT) PDMDevHlpCritSectGetNop(PPDMDEVINS pDevIns)
|
---|
5100 | {
|
---|
5101 | return pDevIns->pHlpR3->pfnCritSectGetNop(pDevIns);
|
---|
5102 | }
|
---|
5103 |
|
---|
5104 | /**
|
---|
5105 | * @copydoc PDMDEVHLPR3::pfnCritSectGetNopR0
|
---|
5106 | */
|
---|
5107 | DECLINLINE(R0PTRTYPE(PPDMCRITSECT)) PDMDevHlpCritSectGetNopR0(PPDMDEVINS pDevIns)
|
---|
5108 | {
|
---|
5109 | return pDevIns->pHlpR3->pfnCritSectGetNopR0(pDevIns);
|
---|
5110 | }
|
---|
5111 |
|
---|
5112 | /**
|
---|
5113 | * @copydoc PDMDEVHLPR3::pfnCritSectGetNopRC
|
---|
5114 | */
|
---|
5115 | DECLINLINE(RCPTRTYPE(PPDMCRITSECT)) PDMDevHlpCritSectGetNopRC(PPDMDEVINS pDevIns)
|
---|
5116 | {
|
---|
5117 | return pDevIns->pHlpR3->pfnCritSectGetNopRC(pDevIns);
|
---|
5118 | }
|
---|
5119 |
|
---|
5120 | /**
|
---|
5121 | * @copydoc PDMDEVHLPR3::pfnSetDeviceCritSect
|
---|
5122 | */
|
---|
5123 | DECLINLINE(int) PDMDevHlpSetDeviceCritSect(PPDMDEVINS pDevIns, PPDMCRITSECT pCritSect)
|
---|
5124 | {
|
---|
5125 | return pDevIns->pHlpR3->pfnSetDeviceCritSect(pDevIns, pCritSect);
|
---|
5126 | }
|
---|
5127 |
|
---|
5128 | /**
|
---|
5129 | * @copydoc PDMDEVHLPR3::pfnThreadCreate
|
---|
5130 | */
|
---|
5131 | DECLINLINE(int) PDMDevHlpThreadCreate(PPDMDEVINS pDevIns, PPPDMTHREAD ppThread, void *pvUser, PFNPDMTHREADDEV pfnThread,
|
---|
5132 | PFNPDMTHREADWAKEUPDEV pfnWakeup, size_t cbStack, RTTHREADTYPE enmType, const char *pszName)
|
---|
5133 | {
|
---|
5134 | return pDevIns->pHlpR3->pfnThreadCreate(pDevIns, ppThread, pvUser, pfnThread, pfnWakeup, cbStack, enmType, pszName);
|
---|
5135 | }
|
---|
5136 |
|
---|
5137 | /**
|
---|
5138 | * @copydoc PDMDEVHLPR3::pfnSetAsyncNotification
|
---|
5139 | */
|
---|
5140 | DECLINLINE(int) PDMDevHlpSetAsyncNotification(PPDMDEVINS pDevIns, PFNPDMDEVASYNCNOTIFY pfnAsyncNotify)
|
---|
5141 | {
|
---|
5142 | return pDevIns->pHlpR3->pfnSetAsyncNotification(pDevIns, pfnAsyncNotify);
|
---|
5143 | }
|
---|
5144 |
|
---|
5145 | /**
|
---|
5146 | * @copydoc PDMDEVHLPR3::pfnAsyncNotificationCompleted
|
---|
5147 | */
|
---|
5148 | DECLINLINE(void) PDMDevHlpAsyncNotificationCompleted(PPDMDEVINS pDevIns)
|
---|
5149 | {
|
---|
5150 | pDevIns->pHlpR3->pfnAsyncNotificationCompleted(pDevIns);
|
---|
5151 | }
|
---|
5152 |
|
---|
5153 | /**
|
---|
5154 | * @copydoc PDMDEVHLPR3::pfnA20Set
|
---|
5155 | */
|
---|
5156 | DECLINLINE(void) PDMDevHlpA20Set(PPDMDEVINS pDevIns, bool fEnable)
|
---|
5157 | {
|
---|
5158 | pDevIns->pHlpR3->pfnA20Set(pDevIns, fEnable);
|
---|
5159 | }
|
---|
5160 |
|
---|
5161 | /**
|
---|
5162 | * @copydoc PDMDEVHLPR3::pfnRTCRegister
|
---|
5163 | */
|
---|
5164 | DECLINLINE(int) PDMDevHlpRTCRegister(PPDMDEVINS pDevIns, PCPDMRTCREG pRtcReg, PCPDMRTCHLP *ppRtcHlp)
|
---|
5165 | {
|
---|
5166 | return pDevIns->pHlpR3->pfnRTCRegister(pDevIns, pRtcReg, ppRtcHlp);
|
---|
5167 | }
|
---|
5168 |
|
---|
5169 | /**
|
---|
5170 | * @copydoc PDMDEVHLPR3::pfnPCIBusRegister
|
---|
5171 | */
|
---|
5172 | DECLINLINE(int) PDMDevHlpPCIBusRegister(PPDMDEVINS pDevIns, PPDMPCIBUSREG pPciBusReg, PCPDMPCIHLPR3 *ppPciHlpR3)
|
---|
5173 | {
|
---|
5174 | return pDevIns->pHlpR3->pfnPCIBusRegister(pDevIns, pPciBusReg, ppPciHlpR3);
|
---|
5175 | }
|
---|
5176 |
|
---|
5177 | /**
|
---|
5178 | * @copydoc PDMDEVHLPR3::pfnPICRegister
|
---|
5179 | */
|
---|
5180 | DECLINLINE(int) PDMDevHlpPICRegister(PPDMDEVINS pDevIns, PPDMPICREG pPicReg, PCPDMPICHLPR3 *ppPicHlpR3)
|
---|
5181 | {
|
---|
5182 | return pDevIns->pHlpR3->pfnPICRegister(pDevIns, pPicReg, ppPicHlpR3);
|
---|
5183 | }
|
---|
5184 |
|
---|
5185 | /**
|
---|
5186 | * @copydoc PDMDEVHLPR3::pfnAPICRegister
|
---|
5187 | */
|
---|
5188 | DECLINLINE(int) PDMDevHlpAPICRegister(PPDMDEVINS pDevIns, PPDMAPICREG pApicReg, PCPDMAPICHLPR3 *ppApicHlpR3)
|
---|
5189 | {
|
---|
5190 | return pDevIns->pHlpR3->pfnAPICRegister(pDevIns, pApicReg, ppApicHlpR3);
|
---|
5191 | }
|
---|
5192 |
|
---|
5193 | /**
|
---|
5194 | * @copydoc PDMDEVHLPR3::pfnIOAPICRegister
|
---|
5195 | */
|
---|
5196 | DECLINLINE(int) PDMDevHlpIOAPICRegister(PPDMDEVINS pDevIns, PPDMIOAPICREG pIoApicReg, PCPDMIOAPICHLPR3 *ppIoApicHlpR3)
|
---|
5197 | {
|
---|
5198 | return pDevIns->pHlpR3->pfnIOAPICRegister(pDevIns, pIoApicReg, ppIoApicHlpR3);
|
---|
5199 | }
|
---|
5200 |
|
---|
5201 | /**
|
---|
5202 | * @copydoc PDMDEVHLPR3::pfnHPETRegister
|
---|
5203 | */
|
---|
5204 | DECLINLINE(int) PDMDevHlpHPETRegister(PPDMDEVINS pDevIns, PPDMHPETREG pHpetReg, PCPDMHPETHLPR3 *ppHpetHlpR3)
|
---|
5205 | {
|
---|
5206 | return pDevIns->pHlpR3->pfnHPETRegister(pDevIns, pHpetReg, ppHpetHlpR3);
|
---|
5207 | }
|
---|
5208 |
|
---|
5209 | /**
|
---|
5210 | * @copydoc PDMDEVHLPR3::pfnPciRawRegister
|
---|
5211 | */
|
---|
5212 | DECLINLINE(int) PDMDevHlpPciRawRegister(PPDMDEVINS pDevIns, PPDMPCIRAWREG pPciRawReg, PCPDMPCIRAWHLPR3 *ppPciRawHlpR3)
|
---|
5213 | {
|
---|
5214 | return pDevIns->pHlpR3->pfnPciRawRegister(pDevIns, pPciRawReg, ppPciRawHlpR3);
|
---|
5215 | }
|
---|
5216 |
|
---|
5217 | /**
|
---|
5218 | * @copydoc PDMDEVHLPR3::pfnDMACRegister
|
---|
5219 | */
|
---|
5220 | DECLINLINE(int) PDMDevHlpDMACRegister(PPDMDEVINS pDevIns, PPDMDMACREG pDmacReg, PCPDMDMACHLP *ppDmacHlp)
|
---|
5221 | {
|
---|
5222 | return pDevIns->pHlpR3->pfnDMACRegister(pDevIns, pDmacReg, ppDmacHlp);
|
---|
5223 | }
|
---|
5224 |
|
---|
5225 | /**
|
---|
5226 | * @copydoc PDMDEVHLPR3::pfnDMARegister
|
---|
5227 | */
|
---|
5228 | DECLINLINE(int) PDMDevHlpDMARegister(PPDMDEVINS pDevIns, unsigned uChannel, PFNDMATRANSFERHANDLER pfnTransferHandler, void *pvUser)
|
---|
5229 | {
|
---|
5230 | return pDevIns->pHlpR3->pfnDMARegister(pDevIns, uChannel, pfnTransferHandler, pvUser);
|
---|
5231 | }
|
---|
5232 |
|
---|
5233 | /**
|
---|
5234 | * @copydoc PDMDEVHLPR3::pfnDMAReadMemory
|
---|
5235 | */
|
---|
5236 | DECLINLINE(int) PDMDevHlpDMAReadMemory(PPDMDEVINS pDevIns, unsigned uChannel, void *pvBuffer, uint32_t off, uint32_t cbBlock, uint32_t *pcbRead)
|
---|
5237 | {
|
---|
5238 | return pDevIns->pHlpR3->pfnDMAReadMemory(pDevIns, uChannel, pvBuffer, off, cbBlock, pcbRead);
|
---|
5239 | }
|
---|
5240 |
|
---|
5241 | /**
|
---|
5242 | * @copydoc PDMDEVHLPR3::pfnDMAWriteMemory
|
---|
5243 | */
|
---|
5244 | DECLINLINE(int) PDMDevHlpDMAWriteMemory(PPDMDEVINS pDevIns, unsigned uChannel, const void *pvBuffer, uint32_t off, uint32_t cbBlock, uint32_t *pcbWritten)
|
---|
5245 | {
|
---|
5246 | return pDevIns->pHlpR3->pfnDMAWriteMemory(pDevIns, uChannel, pvBuffer, off, cbBlock, pcbWritten);
|
---|
5247 | }
|
---|
5248 |
|
---|
5249 | /**
|
---|
5250 | * @copydoc PDMDEVHLPR3::pfnDMASetDREQ
|
---|
5251 | */
|
---|
5252 | DECLINLINE(int) PDMDevHlpDMASetDREQ(PPDMDEVINS pDevIns, unsigned uChannel, unsigned uLevel)
|
---|
5253 | {
|
---|
5254 | return pDevIns->pHlpR3->pfnDMASetDREQ(pDevIns, uChannel, uLevel);
|
---|
5255 | }
|
---|
5256 |
|
---|
5257 | /**
|
---|
5258 | * @copydoc PDMDEVHLPR3::pfnDMAGetChannelMode
|
---|
5259 | */
|
---|
5260 | DECLINLINE(uint8_t) PDMDevHlpDMAGetChannelMode(PPDMDEVINS pDevIns, unsigned uChannel)
|
---|
5261 | {
|
---|
5262 | return pDevIns->pHlpR3->pfnDMAGetChannelMode(pDevIns, uChannel);
|
---|
5263 | }
|
---|
5264 |
|
---|
5265 | /**
|
---|
5266 | * @copydoc PDMDEVHLPR3::pfnDMASchedule
|
---|
5267 | */
|
---|
5268 | DECLINLINE(void) PDMDevHlpDMASchedule(PPDMDEVINS pDevIns)
|
---|
5269 | {
|
---|
5270 | pDevIns->pHlpR3->pfnDMASchedule(pDevIns);
|
---|
5271 | }
|
---|
5272 |
|
---|
5273 | /**
|
---|
5274 | * @copydoc PDMDEVHLPR3::pfnCMOSWrite
|
---|
5275 | */
|
---|
5276 | DECLINLINE(int) PDMDevHlpCMOSWrite(PPDMDEVINS pDevIns, unsigned iReg, uint8_t u8Value)
|
---|
5277 | {
|
---|
5278 | return pDevIns->pHlpR3->pfnCMOSWrite(pDevIns, iReg, u8Value);
|
---|
5279 | }
|
---|
5280 |
|
---|
5281 | /**
|
---|
5282 | * @copydoc PDMDEVHLPR3::pfnCMOSRead
|
---|
5283 | */
|
---|
5284 | DECLINLINE(int) PDMDevHlpCMOSRead(PPDMDEVINS pDevIns, unsigned iReg, uint8_t *pu8Value)
|
---|
5285 | {
|
---|
5286 | return pDevIns->pHlpR3->pfnCMOSRead(pDevIns, iReg, pu8Value);
|
---|
5287 | }
|
---|
5288 |
|
---|
5289 | /**
|
---|
5290 | * @copydoc PDMDEVHLPR3::pfnCallR0
|
---|
5291 | */
|
---|
5292 | DECLINLINE(int) PDMDevHlpCallR0(PPDMDEVINS pDevIns, uint32_t uOperation, uint64_t u64Arg)
|
---|
5293 | {
|
---|
5294 | return pDevIns->pHlpR3->pfnCallR0(pDevIns, uOperation, u64Arg);
|
---|
5295 | }
|
---|
5296 |
|
---|
5297 | /**
|
---|
5298 | * @copydoc PDMDEVHLPR3::pfnVMGetSuspendReason
|
---|
5299 | */
|
---|
5300 | DECLINLINE(VMSUSPENDREASON) PDMDevHlpVMGetSuspendReason(PPDMDEVINS pDevIns)
|
---|
5301 | {
|
---|
5302 | return pDevIns->pHlpR3->pfnVMGetSuspendReason(pDevIns);
|
---|
5303 | }
|
---|
5304 |
|
---|
5305 | /**
|
---|
5306 | * @copydoc PDMDEVHLPR3::pfnVMGetResumeReason
|
---|
5307 | */
|
---|
5308 | DECLINLINE(VMRESUMEREASON) PDMDevHlpVMGetResumeReason(PPDMDEVINS pDevIns)
|
---|
5309 | {
|
---|
5310 | return pDevIns->pHlpR3->pfnVMGetResumeReason(pDevIns);
|
---|
5311 | }
|
---|
5312 |
|
---|
5313 | /**
|
---|
5314 | * @copydoc PDMDEVHLPR3::pfnGetUVM
|
---|
5315 | */
|
---|
5316 | DECLINLINE(PUVM) PDMDevHlpGetUVM(PPDMDEVINS pDevIns)
|
---|
5317 | {
|
---|
5318 | return pDevIns->CTX_SUFF(pHlp)->pfnGetUVM(pDevIns);
|
---|
5319 | }
|
---|
5320 |
|
---|
5321 | #endif /* IN_RING3 */
|
---|
5322 |
|
---|
5323 | /**
|
---|
5324 | * @copydoc PDMDEVHLPR3::pfnGetVM
|
---|
5325 | */
|
---|
5326 | DECLINLINE(PVM) PDMDevHlpGetVM(PPDMDEVINS pDevIns)
|
---|
5327 | {
|
---|
5328 | return pDevIns->CTX_SUFF(pHlp)->pfnGetVM(pDevIns);
|
---|
5329 | }
|
---|
5330 |
|
---|
5331 | /**
|
---|
5332 | * @copydoc PDMDEVHLPR3::pfnGetVMCPU
|
---|
5333 | */
|
---|
5334 | DECLINLINE(PVMCPU) PDMDevHlpGetVMCPU(PPDMDEVINS pDevIns)
|
---|
5335 | {
|
---|
5336 | return pDevIns->CTX_SUFF(pHlp)->pfnGetVMCPU(pDevIns);
|
---|
5337 | }
|
---|
5338 |
|
---|
5339 | /**
|
---|
5340 | * @copydoc PDMDEVHLPR3::pfnGetCurrentCpuId
|
---|
5341 | */
|
---|
5342 | DECLINLINE(VMCPUID) PDMDevHlpGetCurrentCpuId(PPDMDEVINS pDevIns)
|
---|
5343 | {
|
---|
5344 | return pDevIns->CTX_SUFF(pHlp)->pfnGetCurrentCpuId(pDevIns);
|
---|
5345 | }
|
---|
5346 |
|
---|
5347 | /**
|
---|
5348 | * @copydoc PDMDEVHLPR3::pfnTMTimeVirtGet
|
---|
5349 | */
|
---|
5350 | DECLINLINE(uint64_t) PDMDevHlpTMTimeVirtGet(PPDMDEVINS pDevIns)
|
---|
5351 | {
|
---|
5352 | return pDevIns->CTX_SUFF(pHlp)->pfnTMTimeVirtGet(pDevIns);
|
---|
5353 | }
|
---|
5354 |
|
---|
5355 | /**
|
---|
5356 | * @copydoc PDMDEVHLPR3::pfnTMTimeVirtGetFreq
|
---|
5357 | */
|
---|
5358 | DECLINLINE(uint64_t) PDMDevHlpTMTimeVirtGetFreq(PPDMDEVINS pDevIns)
|
---|
5359 | {
|
---|
5360 | return pDevIns->CTX_SUFF(pHlp)->pfnTMTimeVirtGetFreq(pDevIns);
|
---|
5361 | }
|
---|
5362 |
|
---|
5363 | /**
|
---|
5364 | * @copydoc PDMDEVHLPR3::pfnTMTimeVirtGetFreq
|
---|
5365 | */
|
---|
5366 | DECLINLINE(uint64_t) PDMDevHlpTMTimeVirtGetNano(PPDMDEVINS pDevIns)
|
---|
5367 | {
|
---|
5368 | return pDevIns->CTX_SUFF(pHlp)->pfnTMTimeVirtGetNano(pDevIns);
|
---|
5369 | }
|
---|
5370 |
|
---|
5371 | #ifdef IN_RING3
|
---|
5372 |
|
---|
5373 | /**
|
---|
5374 | * @copydoc PDMDEVHLPR3::pfnRegisterVMMDevHeap
|
---|
5375 | */
|
---|
5376 | DECLINLINE(int) PDMDevHlpRegisterVMMDevHeap(PPDMDEVINS pDevIns, RTGCPHYS GCPhys, RTR3PTR pvHeap, unsigned cbHeap)
|
---|
5377 | {
|
---|
5378 | return pDevIns->pHlpR3->pfnRegisterVMMDevHeap(pDevIns, GCPhys, pvHeap, cbHeap);
|
---|
5379 | }
|
---|
5380 |
|
---|
5381 | /**
|
---|
5382 | * @copydoc PDMDEVHLPR3::pfnFirmwareRegister
|
---|
5383 | */
|
---|
5384 | DECLINLINE(int) PDMDevHlpFirmwareRegister(PPDMDEVINS pDevIns, PCPDMFWREG pFwReg, PCPDMFWHLPR3 *ppFwHlp)
|
---|
5385 | {
|
---|
5386 | return pDevIns->pHlpR3->pfnFirmwareRegister(pDevIns, pFwReg, ppFwHlp);
|
---|
5387 | }
|
---|
5388 |
|
---|
5389 | /**
|
---|
5390 | * @copydoc PDMDEVHLPR3::pfnVMReset
|
---|
5391 | */
|
---|
5392 | DECLINLINE(int) PDMDevHlpVMReset(PPDMDEVINS pDevIns, uint32_t fFlags)
|
---|
5393 | {
|
---|
5394 | return pDevIns->pHlpR3->pfnVMReset(pDevIns, fFlags);
|
---|
5395 | }
|
---|
5396 |
|
---|
5397 | /**
|
---|
5398 | * @copydoc PDMDEVHLPR3::pfnVMSuspend
|
---|
5399 | */
|
---|
5400 | DECLINLINE(int) PDMDevHlpVMSuspend(PPDMDEVINS pDevIns)
|
---|
5401 | {
|
---|
5402 | return pDevIns->pHlpR3->pfnVMSuspend(pDevIns);
|
---|
5403 | }
|
---|
5404 |
|
---|
5405 | /**
|
---|
5406 | * @copydoc PDMDEVHLPR3::pfnVMSuspendSaveAndPowerOff
|
---|
5407 | */
|
---|
5408 | DECLINLINE(int) PDMDevHlpVMSuspendSaveAndPowerOff(PPDMDEVINS pDevIns)
|
---|
5409 | {
|
---|
5410 | return pDevIns->pHlpR3->pfnVMSuspendSaveAndPowerOff(pDevIns);
|
---|
5411 | }
|
---|
5412 |
|
---|
5413 | /**
|
---|
5414 | * @copydoc PDMDEVHLPR3::pfnVMPowerOff
|
---|
5415 | */
|
---|
5416 | DECLINLINE(int) PDMDevHlpVMPowerOff(PPDMDEVINS pDevIns)
|
---|
5417 | {
|
---|
5418 | return pDevIns->pHlpR3->pfnVMPowerOff(pDevIns);
|
---|
5419 | }
|
---|
5420 |
|
---|
5421 | #endif /* IN_RING3 */
|
---|
5422 |
|
---|
5423 | /**
|
---|
5424 | * @copydoc PDMDEVHLPR3::pfnA20IsEnabled
|
---|
5425 | */
|
---|
5426 | DECLINLINE(bool) PDMDevHlpA20IsEnabled(PPDMDEVINS pDevIns)
|
---|
5427 | {
|
---|
5428 | return pDevIns->CTX_SUFF(pHlp)->pfnA20IsEnabled(pDevIns);
|
---|
5429 | }
|
---|
5430 |
|
---|
5431 | #ifdef IN_RING3
|
---|
5432 |
|
---|
5433 | /**
|
---|
5434 | * @copydoc PDMDEVHLPR3::pfnGetCpuId
|
---|
5435 | */
|
---|
5436 | DECLINLINE(void) PDMDevHlpGetCpuId(PPDMDEVINS pDevIns, uint32_t iLeaf, uint32_t *pEax, uint32_t *pEbx, uint32_t *pEcx, uint32_t *pEdx)
|
---|
5437 | {
|
---|
5438 | pDevIns->pHlpR3->pfnGetCpuId(pDevIns, iLeaf, pEax, pEbx, pEcx, pEdx);
|
---|
5439 | }
|
---|
5440 |
|
---|
5441 | /**
|
---|
5442 | * @copydoc PDMDEVHLPR3::pfnGetSupDrvSession
|
---|
5443 | */
|
---|
5444 | DECLINLINE(PSUPDRVSESSION) PDMDevHlpGetSupDrvSession(PPDMDEVINS pDevIns)
|
---|
5445 | {
|
---|
5446 | return pDevIns->pHlpR3->pfnGetSupDrvSession(pDevIns);
|
---|
5447 | }
|
---|
5448 |
|
---|
5449 | #endif /* IN_RING3 */
|
---|
5450 | #ifdef IN_RING0
|
---|
5451 |
|
---|
5452 | /**
|
---|
5453 | * @copydoc PDMDEVHLPR0::pfnCanEmulateIoBlock
|
---|
5454 | */
|
---|
5455 | DECLINLINE(bool) PDMDevHlpCanEmulateIoBlock(PPDMDEVINS pDevIns)
|
---|
5456 | {
|
---|
5457 | return pDevIns->CTX_SUFF(pHlp)->pfnCanEmulateIoBlock(pDevIns);
|
---|
5458 | }
|
---|
5459 |
|
---|
5460 | #endif /* IN_RING0 */
|
---|
5461 |
|
---|
5462 |
|
---|
5463 |
|
---|
5464 |
|
---|
5465 | /** Pointer to callbacks provided to the VBoxDeviceRegister() call. */
|
---|
5466 | typedef struct PDMDEVREGCB *PPDMDEVREGCB;
|
---|
5467 |
|
---|
5468 | /**
|
---|
5469 | * Callbacks for VBoxDeviceRegister().
|
---|
5470 | */
|
---|
5471 | typedef struct PDMDEVREGCB
|
---|
5472 | {
|
---|
5473 | /** Interface version.
|
---|
5474 | * This is set to PDM_DEVREG_CB_VERSION. */
|
---|
5475 | uint32_t u32Version;
|
---|
5476 |
|
---|
5477 | /**
|
---|
5478 | * Registers a device with the current VM instance.
|
---|
5479 | *
|
---|
5480 | * @returns VBox status code.
|
---|
5481 | * @param pCallbacks Pointer to the callback table.
|
---|
5482 | * @param pReg Pointer to the device registration record.
|
---|
5483 | * This data must be permanent and readonly.
|
---|
5484 | */
|
---|
5485 | DECLR3CALLBACKMEMBER(int, pfnRegister,(PPDMDEVREGCB pCallbacks, PCPDMDEVREG pReg));
|
---|
5486 | } PDMDEVREGCB;
|
---|
5487 |
|
---|
5488 | /** Current version of the PDMDEVREGCB structure. */
|
---|
5489 | #define PDM_DEVREG_CB_VERSION PDM_VERSION_MAKE(0xffe3, 1, 0)
|
---|
5490 |
|
---|
5491 |
|
---|
5492 | /**
|
---|
5493 | * The VBoxDevicesRegister callback function.
|
---|
5494 | *
|
---|
5495 | * PDM will invoke this function after loading a device module and letting
|
---|
5496 | * the module decide which devices to register and how to handle conflicts.
|
---|
5497 | *
|
---|
5498 | * @returns VBox status code.
|
---|
5499 | * @param pCallbacks Pointer to the callback table.
|
---|
5500 | * @param u32Version VBox version number.
|
---|
5501 | */
|
---|
5502 | typedef DECLCALLBACK(int) FNPDMVBOXDEVICESREGISTER(PPDMDEVREGCB pCallbacks, uint32_t u32Version);
|
---|
5503 |
|
---|
5504 | /** @} */
|
---|
5505 |
|
---|
5506 | RT_C_DECLS_END
|
---|
5507 |
|
---|
5508 | #endif
|
---|