VirtualBox

source: vbox/trunk/src/VBox/Devices/Bus/MsixCommon.cpp@ 67815

Last change on this file since 67815 was 64454, checked in by vboxsync, 8 years ago

DevPci: Cleaned up ich9pciConfigReadDev, eleminating unnecessary MSI and MSI-x workers.

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

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette