1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
|
/* $Id: VBoxPciInternal.h $ */
/** @file
* VBoxPci - PCI driver (Host), Internal Header.
*/
/*
* Copyright (C) 2011-2012 Oracle Corporation
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* you can redistribute it and/or modify it under the terms of the GNU
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*/
#ifndef ___VBoPciInternal_h___
#define ___VBoxPciInternal_h___
#include <VBox/sup.h>
#include <VBox/rawpci.h>
#include <iprt/semaphore.h>
#include <iprt/assert.h>
#ifdef RT_OS_LINUX
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 35) && defined(CONFIG_IOMMU_API)
# define VBOX_WITH_IOMMU
#endif
#ifdef VBOX_WITH_IOMMU
#include <linux/errno.h>
#include <linux/iommu.h>
#endif
#endif
RT_C_DECLS_BEGIN
/* Forward declaration. */
typedef struct VBOXRAWPCIGLOBALS *PVBOXRAWPCIGLOBALS;
typedef struct VBOXRAWPCIDRVVM *PVBOXRAWPCIDRVVM;
typedef struct VBOXRAWPCIINS *PVBOXRAWPCIINS;
typedef struct VBOXRAWPCIISRDESC
{
/** Handler function. */
PFNRAWPCIISR pfnIrqHandler;
/** Handler context. */
void *pIrqContext;
/** Host IRQ. */
int32_t iHostIrq;
} VBOXRAWPCIISRDESC;
typedef struct VBOXRAWPCIISRDESC *PVBOXRAWPCIISRDESC;
/**
* The per-instance data of the VBox raw PCI interface.
*
* This is data associated with a host PCI card attached to the VM.
*
*/
typedef struct VBOXRAWPCIINS
{
/** Pointer to the globals. */
PVBOXRAWPCIGLOBALS pGlobals;
/** Mutex protecting device access. */
RTSEMFASTMUTEX hFastMtx;
/** The spinlock protecting the state variables and device access. */
RTSPINLOCK hSpinlock;
/** Pointer to the next device in the list. */
PVBOXRAWPCIINS pNext;
/** Reference count. */
uint32_t volatile cRefs;
/* Host PCI address of this device. */
uint32_t HostPciAddress;
#ifdef RT_OS_LINUX
struct pci_dev * pPciDev;
char szPrevDriver[64];
#endif
bool fMsiUsed;
bool fMsixUsed;
bool fIommuUsed;
bool fPad0;
/** Port, given to the outside world. */
RAWPCIDEVPORT DevPort;
/** IRQ handler. */
VBOXRAWPCIISRDESC IrqHandler;
/** Pointer to per-VM context in hypervisor data. */
PRAWPCIPERVM pVmCtx;
} VBOXRAWPCIINS;
/**
* Per-VM data of the VBox PCI driver. Pointed to by pGVM->rawpci.s.pDriverData.
*
*/
typedef struct VBOXRAWPCIDRVVM
{
/** Mutex protecting state changes. */
RTSEMFASTMUTEX hFastMtx;
#ifdef RT_OS_LINUX
# ifdef VBOX_WITH_IOMMU
/* IOMMU domain. */
struct iommu_domain* pIommuDomain;
# endif
#endif
/* Back pointer to pGVM->rawpci.s. */
PRAWPCIPERVM pPerVmData;
} VBOXRAWPCIDRVVM;
/**
* The global data of the VBox PCI driver.
*
* This contains the bit required for communicating with support driver, VBoxDrv
* (start out as SupDrv).
*/
typedef struct VBOXRAWPCIGLOBALS
{
/** Mutex protecting the list of instances and state changes. */
RTSEMFASTMUTEX hFastMtx;
/** Pointer to a list of instance data. */
PVBOXRAWPCIINS pInstanceHead;
/** The raw PCI interface factory. */
RAWPCIFACTORY RawPciFactory;
/** The SUPDRV component factory registration. */
SUPDRVFACTORY SupDrvFactory;
/** The number of current factory references. */
int32_t volatile cFactoryRefs;
/** Whether the IDC connection is open or not.
* This is only for cleaning up correctly after the separate IDC init on Windows. */
bool fIDCOpen;
/** The SUPDRV IDC handle (opaque struct). */
SUPDRVIDCHANDLE SupDrvIDC;
#ifdef RT_OS_LINUX
bool fPciStubModuleAvail;
struct module * pciStubModule;
#endif
} VBOXRAWPCIGLOBALS;
DECLHIDDEN(int) vboxPciInit(PVBOXRAWPCIGLOBALS pGlobals);
DECLHIDDEN(void) vboxPciShutdown(PVBOXRAWPCIGLOBALS pGlobals);
DECLHIDDEN(int) vboxPciOsInitVm(PVBOXRAWPCIDRVVM pThis, PVM pVM, PRAWPCIPERVM pVmData);
DECLHIDDEN(void) vboxPciOsDeinitVm(PVBOXRAWPCIDRVVM pThis, PVM pVM);
DECLHIDDEN(int) vboxPciOsDevInit (PVBOXRAWPCIINS pIns, uint32_t fFlags);
DECLHIDDEN(int) vboxPciOsDevDeinit(PVBOXRAWPCIINS pIns, uint32_t fFlags);
DECLHIDDEN(int) vboxPciOsDevDestroy(PVBOXRAWPCIINS pIns);
DECLHIDDEN(int) vboxPciOsDevGetRegionInfo(PVBOXRAWPCIINS pIns,
int32_t iRegion,
RTHCPHYS *pRegionStart,
uint64_t *pu64RegionSize,
bool *pfPresent,
uint32_t *pfFlags);
DECLHIDDEN(int) vboxPciOsDevMapRegion(PVBOXRAWPCIINS pIns,
int32_t iRegion,
RTHCPHYS pRegionStart,
uint64_t u64RegionSize,
uint32_t fFlags,
RTR0PTR *pRegionBase);
DECLHIDDEN(int) vboxPciOsDevUnmapRegion(PVBOXRAWPCIINS pIns,
int32_t iRegion,
RTHCPHYS RegionStart,
uint64_t u64RegionSize,
RTR0PTR RegionBase);
DECLHIDDEN(int) vboxPciOsDevPciCfgWrite(PVBOXRAWPCIINS pIns, uint32_t Register, PCIRAWMEMLOC *pValue);
DECLHIDDEN(int) vboxPciOsDevPciCfgRead (PVBOXRAWPCIINS pIns, uint32_t Register, PCIRAWMEMLOC *pValue);
DECLHIDDEN(int) vboxPciOsDevRegisterIrqHandler (PVBOXRAWPCIINS pIns, PFNRAWPCIISR pfnHandler, void* pIrqContext, int32_t *piHostIrq);
DECLHIDDEN(int) vboxPciOsDevUnregisterIrqHandler(PVBOXRAWPCIINS pIns, int32_t iHostIrq);
DECLHIDDEN(int) vboxPciOsDevPowerStateChange(PVBOXRAWPCIINS pIns, PCIRAWPOWERSTATE aState);
#define VBOX_DRV_VMDATA(pIns) ((PVBOXRAWPCIDRVVM)(pIns->pVmCtx ? pIns->pVmCtx->pDriverData : NULL))
RT_C_DECLS_END
#endif
|