1 | /* $Id: MsixCommon.cpp 35346 2010-12-27 16:13:13Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * MSI-X support routines
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2010 Oracle Corporation
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | */
|
---|
17 | #define LOG_GROUP LOG_GROUP_DEV_PCI
|
---|
18 | /* Hack to get PCIDEVICEINT declare at the right point - include "PCIInternal.h". */
|
---|
19 | #define PCI_INCLUDE_PRIVATE
|
---|
20 | #include <VBox/pci.h>
|
---|
21 | #include <VBox/msi.h>
|
---|
22 | #include <VBox/vmm/pdmdev.h>
|
---|
23 | #include <VBox/log.h>
|
---|
24 | #include <VBox/vmm/mm.h>
|
---|
25 |
|
---|
26 | #include <iprt/assert.h>
|
---|
27 |
|
---|
28 | #include "MsiCommon.h"
|
---|
29 |
|
---|
30 | #pragma pack(1)
|
---|
31 | typedef struct {
|
---|
32 | uint32_t u32MsgAddressLo;
|
---|
33 | uint32_t u32MsgAddressHi;
|
---|
34 | uint32_t u32MsgData;
|
---|
35 | uint32_t u32VectorControl;
|
---|
36 | } MsixTableRecord;
|
---|
37 | AssertCompileSize(MsixTableRecord, VBOX_MSIX_ENTRY_SIZE);
|
---|
38 | #pragma pack()
|
---|
39 |
|
---|
40 | DECLINLINE(uint16_t) msixGetMessageControl(PPCIDEVICE pDev)
|
---|
41 | {
|
---|
42 | return PCIDevGetWord(pDev, pDev->Int.s.u8MsixCapOffset + VBOX_MSIX_CAP_MESSAGE_CONTROL);
|
---|
43 | }
|
---|
44 |
|
---|
45 | DECLINLINE(bool) msixIsEnabled(PPCIDEVICE pDev)
|
---|
46 | {
|
---|
47 | return (msixGetMessageControl(pDev) & VBOX_PCI_MSIX_FLAGS_ENABLE) != 0;
|
---|
48 | }
|
---|
49 |
|
---|
50 | DECLINLINE(bool) msixIsMasked(PPCIDEVICE pDev)
|
---|
51 | {
|
---|
52 | return (msixGetMessageControl(pDev) & VBOX_PCI_MSIX_FLAGS_FUNCMASK) != 0;
|
---|
53 | }
|
---|
54 |
|
---|
55 | DECLINLINE(uint16_t) msixTableSize(PPCIDEVICE pDev)
|
---|
56 | {
|
---|
57 | return (msixGetMessageControl(pDev) & 0x3ff) + 1;
|
---|
58 | }
|
---|
59 |
|
---|
60 | DECLINLINE(uint8_t*) msixGetPageOffset(PPCIDEVICE pDev, uint32_t off)
|
---|
61 | {
|
---|
62 | return (uint8_t*)pDev->Int.s.CTX_SUFF(pMsixPage) + off;
|
---|
63 | }
|
---|
64 |
|
---|
65 | DECLINLINE(MsixTableRecord*) msixGetVectorRecord(PPCIDEVICE pDev, uint32_t iVector)
|
---|
66 | {
|
---|
67 | return (MsixTableRecord*)msixGetPageOffset(pDev, iVector * VBOX_MSIX_ENTRY_SIZE);
|
---|
68 | }
|
---|
69 |
|
---|
70 | DECLINLINE(RTGCPHYS) msixGetMsiAddress(PPCIDEVICE pDev, uint32_t iVector)
|
---|
71 | {
|
---|
72 | MsixTableRecord* pRec = msixGetVectorRecord(pDev, iVector);
|
---|
73 | return RT_MAKE_U64(pRec->u32MsgAddressLo & ~UINT32_C(0x3), pRec->u32MsgAddressHi);
|
---|
74 | }
|
---|
75 |
|
---|
76 | DECLINLINE(uint32_t) msixGetMsiData(PPCIDEVICE pDev, uint32_t iVector)
|
---|
77 | {
|
---|
78 | return msixGetVectorRecord(pDev, iVector)->u32MsgData;
|
---|
79 | }
|
---|
80 |
|
---|
81 | DECLINLINE(uint32_t) msixIsVectorMasked(PPCIDEVICE pDev, uint32_t iVector)
|
---|
82 | {
|
---|
83 | return (msixGetVectorRecord(pDev, iVector)->u32VectorControl & 0x1) != 0;
|
---|
84 | }
|
---|
85 |
|
---|
86 | DECLINLINE(uint8_t*) msixPendingByte(PPCIDEVICE pDev, uint32_t iVector)
|
---|
87 | {
|
---|
88 | return msixGetPageOffset(pDev, 0x800 + iVector / 8);
|
---|
89 | }
|
---|
90 |
|
---|
91 | DECLINLINE(void) msixSetPending(PPCIDEVICE pDev, uint32_t iVector)
|
---|
92 | {
|
---|
93 | *msixPendingByte(pDev, iVector) |= (1 << (iVector & 0x7));
|
---|
94 | }
|
---|
95 |
|
---|
96 | DECLINLINE(void) msixClearPending(PPCIDEVICE pDev, uint32_t iVector)
|
---|
97 | {
|
---|
98 | *msixPendingByte(pDev, iVector) &= ~(1 << (iVector & 0x7));
|
---|
99 | }
|
---|
100 |
|
---|
101 | DECLINLINE(bool) msixIsPending(PPCIDEVICE pDev, uint32_t iVector)
|
---|
102 | {
|
---|
103 | return (*msixPendingByte(pDev, iVector) & (1 << (iVector & 0x7))) != 0;
|
---|
104 | }
|
---|
105 |
|
---|
106 | static void msixCheckPendingVector(PPDMDEVINS pDevIns, PCPDMPCIHLP pPciHlp, PPCIDEVICE pDev, uint32_t iVector)
|
---|
107 | {
|
---|
108 | if (msixIsPending(pDev, iVector) && !msixIsVectorMasked(pDev, iVector))
|
---|
109 | MsixNotify(pDevIns, pPciHlp, pDev, iVector, 1 /* iLevel */);
|
---|
110 | }
|
---|
111 |
|
---|
112 | #ifdef IN_RING3
|
---|
113 |
|
---|
114 | PDMBOTHCBDECL(int) msixMMIORead(PPDMDEVINS pDevIns, void *pvUser, RTGCPHYS GCPhysAddr, void *pv, unsigned cb)
|
---|
115 | {
|
---|
116 | /// @todo: qword accesses?
|
---|
117 | AssertMsgReturn(cb == 4,
|
---|
118 | ("MSI-X must be accessed with 4-byte reads"),
|
---|
119 | VERR_INTERNAL_ERROR);
|
---|
120 |
|
---|
121 | uint32_t off = (uint32_t)(GCPhysAddr & 0xfff);
|
---|
122 | PPCIDEVICE pPciDev = (PPCIDEVICE)pvUser;
|
---|
123 |
|
---|
124 | *(uint32_t*)pv = *(uint32_t*)msixGetPageOffset(pPciDev, off);
|
---|
125 |
|
---|
126 | return VINF_SUCCESS;
|
---|
127 | }
|
---|
128 |
|
---|
129 | PDMBOTHCBDECL(int) msixMMIOWrite(PPDMDEVINS pDevIns, void *pvUser, RTGCPHYS GCPhysAddr, void *pv, unsigned cb)
|
---|
130 | {
|
---|
131 | /// @todo: qword accesses?
|
---|
132 | AssertMsgReturn(cb == 4,
|
---|
133 | ("MSI-X must be accessed with 4-byte reads"),
|
---|
134 | VERR_INTERNAL_ERROR);
|
---|
135 | PPCIDEVICE pPciDev = (PPCIDEVICE)pvUser;
|
---|
136 |
|
---|
137 | uint32_t off = (uint32_t)(GCPhysAddr & 0xfff);
|
---|
138 |
|
---|
139 | AssertMsgReturn(off < 0x800, ("Trying to write to PBA\n"), VINF_SUCCESS);
|
---|
140 |
|
---|
141 | *(uint32_t*)msixGetPageOffset(pPciDev, off) = *(uint32_t*)pv;
|
---|
142 |
|
---|
143 | msixCheckPendingVector(pDevIns, (PCPDMPCIHLP)pPciDev->Int.s.pPciBusPtrR3, pPciDev, off / VBOX_MSIX_ENTRY_SIZE);
|
---|
144 |
|
---|
145 | return VINF_SUCCESS;
|
---|
146 | }
|
---|
147 |
|
---|
148 | static DECLCALLBACK(int) msixMap (PPCIDEVICE pPciDev, int iRegion,
|
---|
149 | RTGCPHYS GCPhysAddress, uint32_t cb,
|
---|
150 | PCIADDRESSSPACE enmType)
|
---|
151 | {
|
---|
152 | Assert(enmType == PCI_ADDRESS_SPACE_MEM);
|
---|
153 |
|
---|
154 | int rc = PDMDevHlpMMIORegister(pPciDev->pDevIns, GCPhysAddress, cb, pPciDev,
|
---|
155 | msixMMIOWrite, msixMMIORead, NULL, "MSI-X tables");
|
---|
156 |
|
---|
157 | if (RT_FAILURE(rc))
|
---|
158 | return rc;
|
---|
159 |
|
---|
160 | return VINF_SUCCESS;
|
---|
161 | }
|
---|
162 |
|
---|
163 | int MsixInit(PCPDMPCIHLP pPciHlp, PPCIDEVICE pDev, PPDMMSIREG pMsiReg)
|
---|
164 | {
|
---|
165 | if (pMsiReg->cMsixVectors == 0)
|
---|
166 | return VINF_SUCCESS;
|
---|
167 |
|
---|
168 | uint16_t cVectors = pMsiReg->cMsixVectors;
|
---|
169 | uint8_t iCapOffset = pMsiReg->iMsixCapOffset;
|
---|
170 | uint8_t iNextOffset = pMsiReg->iMsixNextOffset;
|
---|
171 | uint8_t iBar = pMsiReg->iMsixBar;
|
---|
172 |
|
---|
173 | if (cVectors > VBOX_MSIX_MAX_ENTRIES)
|
---|
174 | return VERR_TOO_MUCH_DATA;
|
---|
175 |
|
---|
176 | if (iBar > 5)
|
---|
177 | return VERR_INVALID_PARAMETER;
|
---|
178 |
|
---|
179 | Assert(iCapOffset != 0 && iCapOffset < 0xff && iNextOffset < 0xff);
|
---|
180 |
|
---|
181 | int rc;
|
---|
182 |
|
---|
183 | rc = PDMDevHlpPCIIORegionRegister (pDev->pDevIns, iBar, 0x1000, PCI_ADDRESS_SPACE_MEM, msixMap);
|
---|
184 | if (RT_FAILURE (rc))
|
---|
185 | return rc;
|
---|
186 |
|
---|
187 | pDev->Int.s.u8MsixCapOffset = iCapOffset;
|
---|
188 | pDev->Int.s.u8MsixCapSize = VBOX_MSIX_CAP_SIZE;
|
---|
189 | PVM pVM = PDMDevHlpGetVM(pDev->pDevIns);
|
---|
190 |
|
---|
191 | pDev->Int.s.pMsixPageR3 = NULL;
|
---|
192 |
|
---|
193 | rc = MMHyperAlloc(pVM, 0x1000, 1, MM_TAG_PDM_DEVICE_USER, (void **)&pDev->Int.s.pMsixPageR3);
|
---|
194 | if (RT_FAILURE(rc) || (pDev->Int.s.pMsixPageR3 == NULL))
|
---|
195 | return VERR_NO_VM_MEMORY;
|
---|
196 | RT_BZERO(pDev->Int.s.pMsixPageR3, 0x1000);
|
---|
197 | pDev->Int.s.pMsixPageR0 = MMHyperR3ToR0(pVM, pDev->Int.s.pMsixPageR3);
|
---|
198 | pDev->Int.s.pMsixPageRC = MMHyperR3ToRC(pVM, pDev->Int.s.pMsixPageR3);
|
---|
199 |
|
---|
200 | /* R3 PCI helper */
|
---|
201 | pDev->Int.s.pPciBusPtrR3 = pPciHlp;
|
---|
202 |
|
---|
203 | PCIDevSetByte(pDev, iCapOffset + 0, VBOX_PCI_CAP_ID_MSIX);
|
---|
204 | PCIDevSetByte(pDev, iCapOffset + 1, iNextOffset); /* next */
|
---|
205 | PCIDevSetWord(pDev, iCapOffset + VBOX_MSIX_CAP_MESSAGE_CONTROL, cVectors - 1);
|
---|
206 |
|
---|
207 | uint32_t offTable = 0, offPBA = 0x800;
|
---|
208 |
|
---|
209 | PCIDevSetDWord(pDev, iCapOffset + VBOX_MSIX_TABLE_BIROFFSET, offTable | iBar);
|
---|
210 | PCIDevSetDWord(pDev, iCapOffset + VBOX_MSIX_PBA_BIROFFSET, offPBA | iBar);
|
---|
211 |
|
---|
212 | PCISetMsixCapable(pDev);
|
---|
213 |
|
---|
214 | return VINF_SUCCESS;
|
---|
215 | }
|
---|
216 | #endif
|
---|
217 |
|
---|
218 | bool MsixIsEnabled(PPCIDEVICE pDev)
|
---|
219 | {
|
---|
220 | return PCIIsMsixCapable(pDev) && msixIsEnabled(pDev);
|
---|
221 | }
|
---|
222 |
|
---|
223 | void MsixNotify(PPDMDEVINS pDevIns, PCPDMPCIHLP pPciHlp, PPCIDEVICE pDev, int iVector, int iLevel)
|
---|
224 | {
|
---|
225 | AssertMsg(msixIsEnabled(pDev), ("Must be enabled to use that"));
|
---|
226 |
|
---|
227 | Assert(pPciHlp->pfnIoApicSendMsi != NULL);
|
---|
228 |
|
---|
229 | /* We only trigger MSI-X on level up */
|
---|
230 | if ((iLevel & PDM_IRQ_LEVEL_HIGH) == 0)
|
---|
231 | {
|
---|
232 | return;
|
---|
233 | }
|
---|
234 |
|
---|
235 | // if this vector is somehow disabled
|
---|
236 | if (msixIsMasked(pDev) || msixIsVectorMasked(pDev, iVector))
|
---|
237 | {
|
---|
238 | // mark pending bit
|
---|
239 | msixSetPending(pDev, iVector);
|
---|
240 | return;
|
---|
241 | }
|
---|
242 |
|
---|
243 | // clear pending bit
|
---|
244 | msixClearPending(pDev, iVector);
|
---|
245 |
|
---|
246 | RTGCPHYS GCAddr = msixGetMsiAddress(pDev, iVector);
|
---|
247 | uint32_t u32Value = msixGetMsiData(pDev, iVector);
|
---|
248 |
|
---|
249 | pPciHlp->pfnIoApicSendMsi(pDevIns, GCAddr, u32Value);
|
---|
250 | }
|
---|
251 |
|
---|
252 | DECLINLINE(bool) msixBitJustCleared(uint32_t uOldValue,
|
---|
253 | uint32_t uNewValue,
|
---|
254 | uint32_t uMask)
|
---|
255 | {
|
---|
256 | return (!!(uOldValue & uMask) && !(uNewValue & uMask));
|
---|
257 | }
|
---|
258 |
|
---|
259 | static void msixCheckPendingVectors(PPDMDEVINS pDevIns, PCPDMPCIHLP pPciHlp, PPCIDEVICE pDev)
|
---|
260 | {
|
---|
261 | for (uint32_t i = 0; i < msixTableSize(pDev); i++)
|
---|
262 | msixCheckPendingVector(pDevIns, pPciHlp, pDev, i);
|
---|
263 | }
|
---|
264 |
|
---|
265 |
|
---|
266 | void MsixPciConfigWrite(PPDMDEVINS pDevIns, PCPDMPCIHLP pPciHlp, PPCIDEVICE pDev, uint32_t u32Address, uint32_t val, unsigned len)
|
---|
267 | {
|
---|
268 | int32_t iOff = u32Address - pDev->Int.s.u8MsixCapOffset;
|
---|
269 | Assert(iOff >= 0 && (PCIIsMsixCapable(pDev) && iOff < pDev->Int.s.u8MsixCapSize));
|
---|
270 |
|
---|
271 | Log2(("MsixPciConfigWrite: %d <- %x (%d)\n", iOff, val, len));
|
---|
272 |
|
---|
273 | uint32_t uAddr = u32Address;
|
---|
274 | uint8_t u8NewVal;
|
---|
275 | bool fJustEnabled = false;
|
---|
276 |
|
---|
277 | for (uint32_t i = 0; i < len; i++)
|
---|
278 | {
|
---|
279 | uint32_t reg = i + iOff;
|
---|
280 | uint8_t u8Val = (uint8_t)val;
|
---|
281 | switch (reg)
|
---|
282 | {
|
---|
283 | case 0: /* Capability ID, ro */
|
---|
284 | case 1: /* Next pointer, ro */
|
---|
285 | break;
|
---|
286 | case VBOX_MSIX_CAP_MESSAGE_CONTROL:
|
---|
287 | /* don't change read-only bits: 0-7 */
|
---|
288 | break;
|
---|
289 | case VBOX_MSIX_CAP_MESSAGE_CONTROL + 1:
|
---|
290 | {
|
---|
291 | /* don't change read-only bits 8-13 */
|
---|
292 | u8NewVal = (u8Val & UINT8_C(~0x3f)) | (pDev->config[uAddr] & UINT8_C(0x3f));
|
---|
293 | /* If just enabled globally - check pending vectors */
|
---|
294 | fJustEnabled |= msixBitJustCleared(pDev->config[uAddr], u8NewVal, VBOX_PCI_MSIX_FLAGS_ENABLE >> 8);
|
---|
295 | fJustEnabled |= msixBitJustCleared(pDev->config[uAddr], u8NewVal, VBOX_PCI_MSIX_FLAGS_FUNCMASK >> 8);
|
---|
296 | pDev->config[uAddr] = u8NewVal;
|
---|
297 | break;
|
---|
298 | }
|
---|
299 | default:
|
---|
300 | /* other fields read-only too */
|
---|
301 | break;
|
---|
302 | }
|
---|
303 | uAddr++;
|
---|
304 | val >>= 8;
|
---|
305 | }
|
---|
306 |
|
---|
307 | if (fJustEnabled)
|
---|
308 | msixCheckPendingVectors(pDevIns, pPciHlp, pDev);
|
---|
309 | }
|
---|
310 | uint32_t MsixPciConfigRead (PPDMDEVINS pDevIns, PPCIDEVICE pDev, uint32_t u32Address, unsigned len)
|
---|
311 | {
|
---|
312 | int32_t iOff = u32Address - pDev->Int.s.u8MsixCapOffset;
|
---|
313 |
|
---|
314 | Assert(iOff >= 0 && (PCIIsMsixCapable(pDev) && iOff < pDev->Int.s.u8MsixCapSize));
|
---|
315 | uint32_t rv = 0;
|
---|
316 |
|
---|
317 | switch (len)
|
---|
318 | {
|
---|
319 | case 1:
|
---|
320 | rv = PCIDevGetByte(pDev, u32Address);
|
---|
321 | break;
|
---|
322 | case 2:
|
---|
323 | rv = PCIDevGetWord(pDev, u32Address);
|
---|
324 | break;
|
---|
325 | case 4:
|
---|
326 | rv = PCIDevGetDWord(pDev, u32Address);
|
---|
327 | break;
|
---|
328 | default:
|
---|
329 | Assert(false);
|
---|
330 | }
|
---|
331 |
|
---|
332 | Log2(("MsixPciConfigRead: %d (%d) -> %x\n", iOff, len, rv));
|
---|
333 |
|
---|
334 | return rv;
|
---|
335 | }
|
---|