VirtualBox

source: vbox/trunk/src/VBox/Devices/VirtIO/Virtio.cpp@ 25816

Last change on this file since 25816 was 25732, checked in by vboxsync, 15 years ago

PDMCritSect: Deployed lock ordering. (ring-3 only, only DEBUG_bird atm)

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 32.0 KB
Line 
1/* $Id: Virtio.cpp 25732 2010-01-11 16:23:26Z vboxsync $ */
2/** @file
3 * Virtio - Virtio Common Functions (VRing, VQueue, Virtio PCI)
4 *
5 */
6
7/*
8 * Copyright (C) 2009 Sun Microsystems, Inc.
9 *
10 * This file is part of VirtualBox Open Source Edition (OSE), as
11 * available from http://www.virtualbox.org. This file is free software;
12 * you can redistribute it and/or modify it under the terms of the GNU
13 * General Public License (GPL) as published by the Free Software
14 * Foundation, in version 2 as it comes in the "COPYING" file of the
15 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
16 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
17 *
18 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
19 * Clara, CA 95054 USA or visit http://www.sun.com if you need
20 * additional information or have any questions.
21 */
22
23
24#define LOG_GROUP LOG_GROUP_DEV_VIRTIO
25
26#include <iprt/param.h>
27#include <VBox/pdmdev.h>
28#include "Virtio.h"
29
30#define INSTANCE(pState) pState->szInstance
31#define IFACE_TO_STATE(pIface, ifaceName) ((VPCISTATE *)((char*)pIface - RT_OFFSETOF(VPCISTATE, ifaceName)))
32
33#ifdef DEBUG
34#define QUEUENAME(s, q) (q->pcszName)
35#endif /* DEBUG */
36
37
38
39#ifndef VBOX_DEVICE_STRUCT_TESTCASE
40
41//RT_C_DECLS_BEGIN
42//RT_C_DECLS_END
43
44
45static void vqueueReset(PVQUEUE pQueue)
46{
47 pQueue->VRing.addrDescriptors = 0;
48 pQueue->VRing.addrAvail = 0;
49 pQueue->VRing.addrUsed = 0;
50 pQueue->uNextAvailIndex = 0;
51 pQueue->uNextUsedIndex = 0;
52 pQueue->uPageNumber = 0;
53}
54
55static void vqueueInit(PVQUEUE pQueue, uint32_t uPageNumber)
56{
57 pQueue->VRing.addrDescriptors = uPageNumber << PAGE_SHIFT;
58 pQueue->VRing.addrAvail = pQueue->VRing.addrDescriptors
59 + sizeof(VRINGDESC) * pQueue->VRing.uSize;
60 pQueue->VRing.addrUsed = RT_ALIGN(
61 pQueue->VRing.addrAvail + RT_OFFSETOF(VRINGAVAIL, auRing[pQueue->VRing.uSize]),
62 PAGE_SIZE); /* The used ring must start from the next page. */
63 pQueue->uNextAvailIndex = 0;
64 pQueue->uNextUsedIndex = 0;
65}
66
67// void vqueueElemFree(PVQUEUEELEM pElem)
68// {
69// }
70
71void vringReadDesc(PVPCISTATE pState, PVRING pVRing, uint32_t uIndex, PVRINGDESC pDesc)
72{
73 //Log(("%s vringReadDesc: ring=%p idx=%u\n", INSTANCE(pState), pVRing, uIndex));
74 PDMDevHlpPhysRead(pState->CTX_SUFF(pDevIns),
75 pVRing->addrDescriptors + sizeof(VRINGDESC) * (uIndex % pVRing->uSize),
76 pDesc, sizeof(VRINGDESC));
77}
78
79uint16_t vringReadAvail(PVPCISTATE pState, PVRING pVRing, uint32_t uIndex)
80{
81 uint16_t tmp;
82
83 PDMDevHlpPhysRead(pState->CTX_SUFF(pDevIns),
84 pVRing->addrAvail + RT_OFFSETOF(VRINGAVAIL, auRing[uIndex % pVRing->uSize]),
85 &tmp, sizeof(tmp));
86 return tmp;
87}
88
89uint16_t vringReadAvailFlags(PVPCISTATE pState, PVRING pVRing)
90{
91 uint16_t tmp;
92
93 PDMDevHlpPhysRead(pState->CTX_SUFF(pDevIns),
94 pVRing->addrAvail + RT_OFFSETOF(VRINGAVAIL, uFlags),
95 &tmp, sizeof(tmp));
96 return tmp;
97}
98
99void vringSetNotification(PVPCISTATE pState, PVRING pVRing, bool fEnabled)
100{
101 uint16_t tmp;
102
103 PDMDevHlpPhysRead(pState->CTX_SUFF(pDevIns),
104 pVRing->addrUsed + RT_OFFSETOF(VRINGUSED, uFlags),
105 &tmp, sizeof(tmp));
106
107 if (fEnabled)
108 tmp &= ~ VRINGUSED_F_NO_NOTIFY;
109 else
110 tmp |= VRINGUSED_F_NO_NOTIFY;
111
112 PDMDevHlpPhysWrite(pState->CTX_SUFF(pDevIns),
113 pVRing->addrUsed + RT_OFFSETOF(VRINGUSED, uFlags),
114 &tmp, sizeof(tmp));
115}
116
117bool vqueueGet(PVPCISTATE pState, PVQUEUE pQueue, PVQUEUEELEM pElem)
118{
119 if (vqueueIsEmpty(pState, pQueue))
120 return false;
121
122 pElem->nIn = pElem->nOut = 0;
123
124 Log2(("%s vqueueGet: %s avail_idx=%u\n", INSTANCE(pState),
125 QUEUENAME(pState, pQueue), pQueue->uNextAvailIndex));
126
127 VRINGDESC desc;
128 uint16_t idx = vringReadAvail(pState, &pQueue->VRing, pQueue->uNextAvailIndex++);
129 pElem->uIndex = idx;
130 do
131 {
132 VQUEUESEG *pSeg;
133
134 vringReadDesc(pState, &pQueue->VRing, idx, &desc);
135 if (desc.u16Flags & VRINGDESC_F_WRITE)
136 {
137 Log2(("%s vqueueGet: %s IN seg=%u desc_idx=%u addr=%p cb=%u\n", INSTANCE(pState),
138 QUEUENAME(pState, pQueue), pElem->nIn, idx, desc.u64Addr, desc.uLen));
139 pSeg = &pElem->aSegsIn[pElem->nIn++];
140 }
141 else
142 {
143 Log2(("%s vqueueGet: %s OUT seg=%u desc_idx=%u addr=%p cb=%u\n", INSTANCE(pState),
144 QUEUENAME(pState, pQueue), pElem->nOut, idx, desc.u64Addr, desc.uLen));
145 pSeg = &pElem->aSegsOut[pElem->nOut++];
146 }
147
148 pSeg->addr = desc.u64Addr;
149 pSeg->cb = desc.uLen;
150 pSeg->pv = NULL;
151
152 idx = desc.u16Next;
153 } while (desc.u16Flags & VRINGDESC_F_NEXT);
154
155 Log2(("%s vqueueGet: %s head_desc_idx=%u nIn=%u nOut=%u\n", INSTANCE(pState),
156 QUEUENAME(pState, pQueue), pElem->uIndex, pElem->nIn, pElem->nOut));
157 return true;
158}
159
160uint16_t vringReadUsedIndex(PVPCISTATE pState, PVRING pVRing)
161{
162 uint16_t tmp;
163 PDMDevHlpPhysRead(pState->CTX_SUFF(pDevIns),
164 pVRing->addrUsed + RT_OFFSETOF(VRINGUSED, uIndex),
165 &tmp, sizeof(tmp));
166 return tmp;
167}
168
169void vringWriteUsedIndex(PVPCISTATE pState, PVRING pVRing, uint16_t u16Value)
170{
171 PDMDevHlpPhysWrite(pState->CTX_SUFF(pDevIns),
172 pVRing->addrUsed + RT_OFFSETOF(VRINGUSED, uIndex),
173 &u16Value, sizeof(u16Value));
174}
175
176void vringWriteUsedElem(PVPCISTATE pState, PVRING pVRing, uint32_t uIndex, uint32_t uId, uint32_t uLen)
177{
178 VRINGUSEDELEM elem;
179
180 elem.uId = uId;
181 elem.uLen = uLen;
182 PDMDevHlpPhysWrite(pState->CTX_SUFF(pDevIns),
183 pVRing->addrUsed + RT_OFFSETOF(VRINGUSED, aRing[uIndex % pVRing->uSize]),
184 &elem, sizeof(elem));
185}
186
187void vqueuePut(PVPCISTATE pState, PVQUEUE pQueue, PVQUEUEELEM pElem, uint32_t uLen)
188{
189 unsigned int i, uOffset;
190
191 Log2(("%s vqueuePut: %s desc_idx=%u acb=%u\n", INSTANCE(pState),
192 QUEUENAME(pState, pQueue), pElem->uIndex, uLen));
193 for (i = uOffset = 0; i < pElem->nIn && uOffset < uLen; i++)
194 {
195 uint32_t cbSegLen = RT_MIN(uLen - uOffset, pElem->aSegsIn[i].cb);
196 if (pElem->aSegsIn[i].pv)
197 {
198 Log2(("%s vqueuePut: %s used_idx=%u seg=%u addr=%p pv=%p cb=%u acb=%u\n", INSTANCE(pState),
199 QUEUENAME(pState, pQueue), pQueue->uNextUsedIndex, i, pElem->aSegsIn[i].addr, pElem->aSegsIn[i].pv, pElem->aSegsIn[i].cb, cbSegLen));
200 PDMDevHlpPhysWrite(pState->CTX_SUFF(pDevIns), pElem->aSegsIn[i].addr,
201 pElem->aSegsIn[i].pv, cbSegLen);
202 }
203 uOffset += cbSegLen;
204 }
205
206 Log2(("%s vqueuePut: %s used_idx=%u guest_used_idx=%u id=%u len=%u\n", INSTANCE(pState),
207 QUEUENAME(pState, pQueue), pQueue->uNextUsedIndex, vringReadUsedIndex(pState, &pQueue->VRing), pElem->uIndex, uLen));
208 vringWriteUsedElem(pState, &pQueue->VRing, pQueue->uNextUsedIndex++, pElem->uIndex, uLen);
209}
210
211void vqueueNotify(PVPCISTATE pState, PVQUEUE pQueue)
212{
213 LogFlow(("%s vqueueNotify: %s availFlags=%x guestFeatures=%x vqueue is %sempty\n",
214 INSTANCE(pState), QUEUENAME(pState, pQueue),
215 vringReadAvailFlags(pState, &pQueue->VRing),
216 pState->uGuestFeatures, vqueueIsEmpty(pState, pQueue)?"":"not "));
217 if (!(vringReadAvailFlags(pState, &pQueue->VRing) & VRINGAVAIL_F_NO_INTERRUPT)
218 || ((pState->uGuestFeatures & VPCI_F_NOTIFY_ON_EMPTY) && vqueueIsEmpty(pState, pQueue)))
219 {
220 int rc = vpciRaiseInterrupt(pState, VERR_INTERNAL_ERROR, VPCI_ISR_QUEUE);
221 if (RT_FAILURE(rc))
222 Log(("%s vqueueNotify: Failed to raise an interrupt (%Vrc).\n", INSTANCE(pState), rc));
223 }
224 else
225 {
226 STAM_COUNTER_INC(&pState->StatIntsSkipped);
227 }
228
229}
230
231void vqueueSync(PVPCISTATE pState, PVQUEUE pQueue)
232{
233 Log2(("%s vqueueSync: %s old_used_idx=%u new_used_idx=%u\n", INSTANCE(pState),
234 QUEUENAME(pState, pQueue), vringReadUsedIndex(pState, &pQueue->VRing), pQueue->uNextUsedIndex));
235 vringWriteUsedIndex(pState, &pQueue->VRing, pQueue->uNextUsedIndex);
236 vqueueNotify(pState, pQueue);
237}
238
239void vpciReset(PVPCISTATE pState)
240{
241 pState->uGuestFeatures = 0;
242 pState->uQueueSelector = 0;
243 pState->uStatus = 0;
244 pState->uISR = 0;
245
246 for (unsigned i = 0; i < pState->nQueues; i++)
247 vqueueReset(&pState->Queues[i]);
248}
249
250
251/**
252 * Raise interrupt.
253 *
254 * @param pState The device state structure.
255 * @param rcBusy Status code to return when the critical section is busy.
256 * @param u8IntCause Interrupt cause bit mask to set in PCI ISR port.
257 */
258int vpciRaiseInterrupt(VPCISTATE *pState, int rcBusy, uint8_t u8IntCause)
259{
260 // int rc = vpciCsEnter(pState, rcBusy);
261 // if (RT_UNLIKELY(rc != VINF_SUCCESS))
262 // return rc;
263
264 STAM_COUNTER_INC(&pState->StatIntsRaised);
265 LogFlow(("%s vpciRaiseInterrupt: u8IntCause=%x\n",
266 INSTANCE(pState), u8IntCause));
267
268 pState->uISR |= u8IntCause;
269 PDMDevHlpPCISetIrq(pState->CTX_SUFF(pDevIns), 0, 1);
270 // vpciCsLeave(pState);
271 return VINF_SUCCESS;
272}
273
274/**
275 * Lower interrupt.
276 *
277 * @param pState The device state structure.
278 */
279PDMBOTHCBDECL(void) vpciLowerInterrupt(VPCISTATE *pState)
280{
281 LogFlow(("%s vpciLowerInterrupt\n", INSTANCE(pState)));
282 PDMDevHlpPCISetIrq(pState->CTX_SUFF(pDevIns), 0, 0);
283}
284
285DECLINLINE(uint32_t) vpciGetHostFeatures(PVPCISTATE pState,
286 PFNGETHOSTFEATURES pfnGetHostFeatures)
287{
288 return pfnGetHostFeatures(pState)
289 | VPCI_F_NOTIFY_ON_EMPTY;
290}
291
292/**
293 * Port I/O Handler for IN operations.
294 *
295 * @returns VBox status code.
296 *
297 * @param pDevIns The device instance.
298 * @param pvUser Pointer to the device state structure.
299 * @param port Port number used for the IN operation.
300 * @param pu32 Where to store the result.
301 * @param cb Number of bytes read.
302 * @thread EMT
303 */
304int vpciIOPortIn(PPDMDEVINS pDevIns,
305 void *pvUser,
306 RTIOPORT port,
307 uint32_t *pu32,
308 unsigned cb,
309 PFNGETHOSTFEATURES pfnGetHostFeatures,
310 PFNGETCONFIG pfnGetConfig)
311{
312 VPCISTATE *pState = PDMINS_2_DATA(pDevIns, VPCISTATE *);
313 int rc = VINF_SUCCESS;
314 const char *szInst = INSTANCE(pState);
315 STAM_PROFILE_ADV_START(&pState->CTXSUFF(StatIORead), a);
316
317 /*
318 * We probably do not need to enter critical section when reading registers
319 * as the most of them are either constant or being changed during
320 * initialization only, the exception being ISR which can be raced by all
321 * threads but I see no big harm in it. It also happens to be the most read
322 * register as it gets read in interrupt handler. By dropping cs protection
323 * here we gain the ability to deliver RX packets to the guest while TX is
324 * holding cs transmitting queued packets.
325 *
326 rc = vpciCsEnter(pState, VINF_IOM_HC_IOPORT_READ);
327 if (RT_UNLIKELY(rc != VINF_SUCCESS))
328 {
329 STAM_PROFILE_ADV_STOP(&pState->CTXSUFF(StatIORead), a);
330 return rc;
331 }*/
332
333 port -= pState->addrIOPort;
334 switch (port)
335 {
336 case VPCI_HOST_FEATURES:
337 /* Tell the guest what features we support. */
338 *pu32 = vpciGetHostFeatures(pState, pfnGetHostFeatures)
339 | VPCI_F_BAD_FEATURE;
340 break;
341
342 case VPCI_GUEST_FEATURES:
343 *pu32 = pState->uGuestFeatures;
344 break;
345
346 case VPCI_QUEUE_PFN:
347 *pu32 = pState->Queues[pState->uQueueSelector].uPageNumber;
348 break;
349
350 case VPCI_QUEUE_NUM:
351 Assert(cb == 2);
352 *(uint16_t*)pu32 = pState->Queues[pState->uQueueSelector].VRing.uSize;
353 break;
354
355 case VPCI_QUEUE_SEL:
356 Assert(cb == 2);
357 *(uint16_t*)pu32 = pState->uQueueSelector;
358 break;
359
360 case VPCI_STATUS:
361 Assert(cb == 1);
362 *(uint8_t*)pu32 = pState->uStatus;
363 break;
364
365 case VPCI_ISR:
366 Assert(cb == 1);
367 *(uint8_t*)pu32 = pState->uISR;
368 pState->uISR = 0; /* read clears all interrupts */
369 vpciLowerInterrupt(pState);
370 break;
371
372 default:
373 if (port >= VPCI_CONFIG)
374 {
375 rc = pfnGetConfig(pState, port - VPCI_CONFIG, cb, pu32);
376 }
377 else
378 {
379 *pu32 = 0xFFFFFFFF;
380 rc = PDMDeviceDBGFStop(pDevIns, RT_SRC_POS, "%s vpciIOPortIn: "
381 "no valid port at offset port=%RTiop "
382 "cb=%08x\n", szInst, port, cb);
383 }
384 break;
385 }
386 Log3(("%s vpciIOPortIn: At %RTiop in %0*x\n",
387 szInst, port, cb*2, *pu32));
388 STAM_PROFILE_ADV_STOP(&pState->CTXSUFF(StatIORead), a);
389 //vpciCsLeave(pState);
390 return rc;
391}
392
393
394/**
395 * Port I/O Handler for OUT operations.
396 *
397 * @returns VBox status code.
398 *
399 * @param pDevIns The device instance.
400 * @param pvUser User argument.
401 * @param Port Port number used for the IN operation.
402 * @param u32 The value to output.
403 * @param cb The value size in bytes.
404 * @thread EMT
405 */
406int vpciIOPortOut(PPDMDEVINS pDevIns,
407 void *pvUser,
408 RTIOPORT port,
409 uint32_t u32,
410 unsigned cb,
411 PFNGETHOSTMINIMALFEATURES pfnGetHostMinimalFeatures,
412 PFNGETHOSTFEATURES pfnGetHostFeatures,
413 PFNSETHOSTFEATURES pfnSetHostFeatures,
414 PFNRESET pfnReset,
415 PFNREADY pfnReady,
416 PFNSETCONFIG pfnSetConfig)
417
418{
419 VPCISTATE *pState = PDMINS_2_DATA(pDevIns, VPCISTATE *);
420 int rc = VINF_SUCCESS;
421 const char *szInst = INSTANCE(pState);
422 bool fHasBecomeReady;
423 STAM_PROFILE_ADV_START(&pState->CTXSUFF(StatIOWrite), a);
424
425 port -= pState->addrIOPort;
426 Log3(("%s virtioIOPortOut: At %RTiop out %0*x\n", szInst, port, cb*2, u32));
427
428 switch (port)
429 {
430 case VPCI_GUEST_FEATURES:
431 /* Check if the guest negotiates properly, fall back to basics if it does not. */
432 if (VPCI_F_BAD_FEATURE & u32)
433 {
434 Log(("%s WARNING! Guest failed to negotiate properly (guest=%x)\n",
435 INSTANCE(pState), u32));
436 pState->uGuestFeatures = pfnGetHostMinimalFeatures(pState);
437 }
438 /* The guest may potentially desire features we don't support! */
439 else if (~vpciGetHostFeatures(pState, pfnGetHostFeatures) & u32)
440 {
441 Log(("%s Guest asked for features host does not support! (host=%x guest=%x)\n",
442 INSTANCE(pState),
443 vpciGetHostFeatures(pState, pfnGetHostFeatures), u32));
444 pState->uGuestFeatures =
445 vpciGetHostFeatures(pState, pfnGetHostFeatures);
446 }
447 else
448 pState->uGuestFeatures = u32;
449 pfnSetHostFeatures(pState, pState->uGuestFeatures);
450 break;
451
452 case VPCI_QUEUE_PFN:
453 /*
454 * The guest is responsible for allocating the pages for queues,
455 * here it provides us with the page number of descriptor table.
456 * Note that we provide the size of the queue to the guest via
457 * VIRTIO_PCI_QUEUE_NUM.
458 */
459 pState->Queues[pState->uQueueSelector].uPageNumber = u32;
460 if (u32)
461 vqueueInit(&pState->Queues[pState->uQueueSelector], u32);
462 else
463 pfnReset(pState);
464 break;
465
466 case VPCI_QUEUE_SEL:
467 Assert(cb == 2);
468 u32 &= 0xFFFF;
469 if (u32 < pState->nQueues)
470 pState->uQueueSelector = u32;
471 else
472 Log3(("%s vpciIOPortOut: Invalid queue selector %08x\n", szInst, u32));
473 break;
474
475 case VPCI_QUEUE_NOTIFY:
476#ifdef IN_RING3
477 Assert(cb == 2);
478 u32 &= 0xFFFF;
479 if (u32 < pState->nQueues)
480 if (pState->Queues[u32].VRing.addrDescriptors)
481 {
482 rc = vpciCsEnter(pState, VERR_SEM_BUSY);
483 if (RT_LIKELY(rc == VINF_SUCCESS))
484 {
485 pState->Queues[u32].pfnCallback(pState, &pState->Queues[u32]);
486 vpciCsLeave(pState);
487 }
488 }
489 else
490 Log(("%s The queue (#%d) being notified has not been initialized.\n",
491 INSTANCE(pState), u32));
492 else
493 Log(("%s Invalid queue number (%d)\n", INSTANCE(pState), u32));
494#else
495 rc = VINF_IOM_HC_IOPORT_WRITE;
496#endif
497 break;
498
499 case VPCI_STATUS:
500 Assert(cb == 1);
501 u32 &= 0xFF;
502 fHasBecomeReady = !(pState->uStatus & VPCI_STATUS_DRV_OK) && (u32 & VPCI_STATUS_DRV_OK);
503 pState->uStatus = u32;
504 /* Writing 0 to the status port triggers device reset. */
505 if (u32 == 0)
506 pfnReset(pState);
507 else if (fHasBecomeReady)
508 pfnReady(pState);
509 break;
510
511 default:
512 if (port >= VPCI_CONFIG)
513 rc = pfnSetConfig(pState, port - VPCI_CONFIG, cb, &u32);
514 else
515 rc = PDMDeviceDBGFStop(pDevIns, RT_SRC_POS, "%s vpciIOPortOut: no valid port at offset port=%RTiop cb=%08x\n", szInst, port, cb);
516 break;
517 }
518
519 STAM_PROFILE_ADV_STOP(&pState->CTXSUFF(StatIOWrite), a);
520 return rc;
521}
522
523#ifdef IN_RING3
524/**
525 * Provides interfaces to the driver.
526 *
527 * @returns Pointer to interface. NULL if the interface is not supported.
528 * @param pInterface Pointer to this interface structure.
529 * @param enmInterface The requested interface identification.
530 * @thread EMT
531 */
532void *vpciQueryInterface(struct PDMIBASE *pInterface, PDMINTERFACE enmInterface)
533{
534 VPCISTATE *pState = IFACE_TO_STATE(pInterface, IBase);
535 Assert(&pState->IBase == pInterface);
536 switch (enmInterface)
537 {
538 case PDMINTERFACE_BASE:
539 return &pState->IBase;
540 case PDMINTERFACE_LED_PORTS:
541 return &pState->ILeds;
542 default:
543 return NULL;
544 }
545}
546
547/**
548 * Gets the pointer to the status LED of a unit.
549 *
550 * @returns VBox status code.
551 * @param pInterface Pointer to the interface structure.
552 * @param iLUN The unit which status LED we desire.
553 * @param ppLed Where to store the LED pointer.
554 * @thread EMT
555 */
556static DECLCALLBACK(int) vpciQueryStatusLed(PPDMILEDPORTS pInterface, unsigned iLUN, PPDMLED *ppLed)
557{
558 VPCISTATE *pState = IFACE_TO_STATE(pInterface, ILeds);
559 int rc = VERR_PDM_LUN_NOT_FOUND;
560
561 if (iLUN == 0)
562 {
563 *ppLed = &pState->led;
564 rc = VINF_SUCCESS;
565 }
566 return rc;
567}
568
569/**
570 * Turns on/off the write status LED.
571 *
572 * @returns VBox status code.
573 * @param pState Pointer to the device state structure.
574 * @param fOn New LED state.
575 */
576void vpciSetWriteLed(PVPCISTATE pState, bool fOn)
577{
578 LogFlow(("%s vpciSetWriteLed: %s\n", INSTANCE(pState), fOn?"on":"off"));
579 if (fOn)
580 pState->led.Asserted.s.fWriting = pState->led.Actual.s.fWriting = 1;
581 else
582 pState->led.Actual.s.fWriting = fOn;
583}
584
585/**
586 * Turns on/off the read status LED.
587 *
588 * @returns VBox status code.
589 * @param pState Pointer to the device state structure.
590 * @param fOn New LED state.
591 */
592void vpciSetReadLed(PVPCISTATE pState, bool fOn)
593{
594 LogFlow(("%s vpciSetReadLed: %s\n", INSTANCE(pState), fOn?"on":"off"));
595 if (fOn)
596 pState->led.Asserted.s.fReading = pState->led.Actual.s.fReading = 1;
597 else
598 pState->led.Actual.s.fReading = fOn;
599}
600
601/**
602 * Sets 8-bit register in PCI configuration space.
603 * @param refPciDev The PCI device.
604 * @param uOffset The register offset.
605 * @param u16Value The value to store in the register.
606 * @thread EMT
607 */
608DECLINLINE(void) vpciCfgSetU8(PCIDEVICE& refPciDev, uint32_t uOffset, uint8_t u8Value)
609{
610 Assert(uOffset < sizeof(refPciDev.config));
611 refPciDev.config[uOffset] = u8Value;
612}
613
614/**
615 * Sets 16-bit register in PCI configuration space.
616 * @param refPciDev The PCI device.
617 * @param uOffset The register offset.
618 * @param u16Value The value to store in the register.
619 * @thread EMT
620 */
621DECLINLINE(void) vpciCfgSetU16(PCIDEVICE& refPciDev, uint32_t uOffset, uint16_t u16Value)
622{
623 Assert(uOffset+sizeof(u16Value) <= sizeof(refPciDev.config));
624 *(uint16_t*)&refPciDev.config[uOffset] = u16Value;
625}
626
627/**
628 * Sets 32-bit register in PCI configuration space.
629 * @param refPciDev The PCI device.
630 * @param uOffset The register offset.
631 * @param u32Value The value to store in the register.
632 * @thread EMT
633 */
634DECLINLINE(void) vpciCfgSetU32(PCIDEVICE& refPciDev, uint32_t uOffset, uint32_t u32Value)
635{
636 Assert(uOffset+sizeof(u32Value) <= sizeof(refPciDev.config));
637 *(uint32_t*)&refPciDev.config[uOffset] = u32Value;
638}
639
640
641#ifdef DEBUG
642static void vpciDumpState(PVPCISTATE pState, const char *pcszCaller)
643{
644 Log2(("vpciDumpState: (called from %s)\n"
645 " uGuestFeatures = 0x%08x\n"
646 " uQueueSelector = 0x%04x\n"
647 " uStatus = 0x%02x\n"
648 " uISR = 0x%02x\n",
649 pcszCaller,
650 pState->uGuestFeatures,
651 pState->uQueueSelector,
652 pState->uStatus,
653 pState->uISR));
654
655 for (unsigned i = 0; i < pState->nQueues; i++)
656 Log2((" %s queue:\n"
657 " VRing.uSize = %u\n"
658 " VRing.addrDescriptors = %p\n"
659 " VRing.addrAvail = %p\n"
660 " VRing.addrUsed = %p\n"
661 " uNextAvailIndex = %u\n"
662 " uNextUsedIndex = %u\n"
663 " uPageNumber = %x\n",
664 pState->Queues[i].pcszName,
665 pState->Queues[i].VRing.uSize,
666 pState->Queues[i].VRing.addrDescriptors,
667 pState->Queues[i].VRing.addrAvail,
668 pState->Queues[i].VRing.addrUsed,
669 pState->Queues[i].uNextAvailIndex,
670 pState->Queues[i].uNextUsedIndex,
671 pState->Queues[i].uPageNumber));
672}
673#else
674# define vpciDumpState(x, s) do {} while (0)
675#endif
676
677/**
678 * Saves the state of device.
679 *
680 * @returns VBox status code.
681 * @param pDevIns The device instance.
682 * @param pSSM The handle to the saved state.
683 */
684int vpciSaveExec(PVPCISTATE pState, PSSMHANDLE pSSM)
685{
686 int rc;
687
688 vpciDumpState(pState, "vpciSaveExec");
689
690 rc = SSMR3PutU32(pSSM, pState->uGuestFeatures);
691 AssertRCReturn(rc, rc);
692 rc = SSMR3PutU16(pSSM, pState->uQueueSelector);
693 AssertRCReturn(rc, rc);
694 rc = SSMR3PutU8( pSSM, pState->uStatus);
695 AssertRCReturn(rc, rc);
696 rc = SSMR3PutU8( pSSM, pState->uISR);
697 AssertRCReturn(rc, rc);
698
699 /* Save queue states */
700 rc = SSMR3PutU32(pSSM, pState->nQueues);
701 AssertRCReturn(rc, rc);
702 for (unsigned i = 0; i < pState->nQueues; i++)
703 {
704 rc = SSMR3PutU16(pSSM, pState->Queues[i].VRing.uSize);
705 AssertRCReturn(rc, rc);
706 rc = SSMR3PutU32(pSSM, pState->Queues[i].uPageNumber);
707 AssertRCReturn(rc, rc);
708 rc = SSMR3PutU16(pSSM, pState->Queues[i].uNextAvailIndex);
709 AssertRCReturn(rc, rc);
710 rc = SSMR3PutU16(pSSM, pState->Queues[i].uNextUsedIndex);
711 AssertRCReturn(rc, rc);
712 }
713
714 return VINF_SUCCESS;
715}
716
717/**
718 * Loads a saved device state.
719 *
720 * @returns VBox status code.
721 * @param pDevIns The device instance.
722 * @param pSSM The handle to the saved state.
723 * @param uVersion The data unit version number.
724 * @param uPass The data pass.
725 */
726int vpciLoadExec(PVPCISTATE pState, PSSMHANDLE pSSM, uint32_t uVersion, uint32_t uPass, uint32_t nQueues)
727{
728 int rc;
729
730 if (uPass == SSM_PASS_FINAL)
731 {
732 /* Restore state data */
733 rc = SSMR3GetU32(pSSM, &pState->uGuestFeatures);
734 AssertRCReturn(rc, rc);
735 rc = SSMR3GetU16(pSSM, &pState->uQueueSelector);
736 AssertRCReturn(rc, rc);
737 rc = SSMR3GetU8( pSSM, &pState->uStatus);
738 AssertRCReturn(rc, rc);
739 rc = SSMR3GetU8( pSSM, &pState->uISR);
740 AssertRCReturn(rc, rc);
741
742 /* Restore queues */
743 if (uVersion > VIRTIO_SAVEDSTATE_VERSION_3_1_BETA1)
744 {
745 rc = SSMR3GetU32(pSSM, &pState->nQueues);
746 AssertRCReturn(rc, rc);
747 }
748 else
749 pState->nQueues = nQueues;
750 for (unsigned i = 0; i < pState->nQueues; i++)
751 {
752 rc = SSMR3GetU16(pSSM, &pState->Queues[i].VRing.uSize);
753 AssertRCReturn(rc, rc);
754 rc = SSMR3GetU32(pSSM, &pState->Queues[i].uPageNumber);
755 AssertRCReturn(rc, rc);
756
757 if (pState->Queues[i].uPageNumber)
758 vqueueInit(&pState->Queues[i], pState->Queues[i].uPageNumber);
759
760 rc = SSMR3GetU16(pSSM, &pState->Queues[i].uNextAvailIndex);
761 AssertRCReturn(rc, rc);
762 rc = SSMR3GetU16(pSSM, &pState->Queues[i].uNextUsedIndex);
763 AssertRCReturn(rc, rc);
764 }
765 }
766
767 vpciDumpState(pState, "vpciLoadExec");
768
769 return VINF_SUCCESS;
770}
771
772/**
773 * Set PCI configuration space registers.
774 *
775 * @param pci Reference to PCI device structure.
776 * @param uSubsystemId PCI Subsystem Id
777 * @param uClass Class of PCI device (network, etc)
778 * @thread EMT
779 */
780static DECLCALLBACK(void) vpciConfigure(PCIDEVICE& pci,
781 uint16_t uSubsystemId,
782 uint16_t uClass)
783{
784 /* Configure PCI Device, assume 32-bit mode ******************************/
785 PCIDevSetVendorId(&pci, DEVICE_PCI_VENDOR_ID);
786 PCIDevSetDeviceId(&pci, DEVICE_PCI_DEVICE_ID);
787 vpciCfgSetU16(pci, VBOX_PCI_SUBSYSTEM_VENDOR_ID, DEVICE_PCI_SUBSYSTEM_VENDOR_ID);
788 vpciCfgSetU16(pci, VBOX_PCI_SUBSYSTEM_ID, uSubsystemId);
789
790 /* ABI version, must be equal 0 as of 2.6.30 kernel. */
791 vpciCfgSetU8( pci, VBOX_PCI_REVISION_ID, 0x00);
792 /* Ethernet adapter */
793 vpciCfgSetU8( pci, VBOX_PCI_CLASS_PROG, 0x00);
794 vpciCfgSetU16(pci, VBOX_PCI_CLASS_DEVICE, uClass);
795 /* Interrupt Pin: INTA# */
796 vpciCfgSetU8( pci, VBOX_PCI_INTERRUPT_PIN, 0x01);
797}
798
799/* WARNING! This function must never be used in multithreaded context! */
800static const char *vpciCounter(const char *pszDevFmt,
801 const char *pszCounter)
802{
803 static char g_szCounterName[80];
804
805 RTStrPrintf(g_szCounterName, sizeof(g_szCounterName),
806 "/Devices/%s/%s", pszDevFmt, pszCounter);
807
808 return g_szCounterName;
809}
810
811// TODO: header
812DECLCALLBACK(int) vpciConstruct(PPDMDEVINS pDevIns, VPCISTATE *pState,
813 int iInstance, const char *pcszNameFmt,
814 uint16_t uSubsystemId, uint16_t uClass,
815 uint32_t nQueues)
816{
817 int rc = VINF_SUCCESS;
818 /* Init handles and log related stuff. */
819 RTStrPrintf(pState->szInstance, sizeof(pState->szInstance),
820 pcszNameFmt, iInstance);
821
822 pState->pDevInsR3 = pDevIns;
823 pState->pDevInsR0 = PDMDEVINS_2_R0PTR(pDevIns);
824 pState->pDevInsRC = PDMDEVINS_2_RCPTR(pDevIns);
825 pState->led.u32Magic = PDMLED_MAGIC;
826
827 pState->ILeds.pfnQueryStatusLed = vpciQueryStatusLed;
828
829 /* Initialize critical section. */
830 rc = PDMDevHlpCritSectInit(pDevIns, &pState->cs, RT_SRC_POS, "%s", pState->szInstance);
831 if (RT_FAILURE(rc))
832 return rc;
833
834 /* Set PCI config registers */
835 vpciConfigure(pState->pciDevice, uSubsystemId, uClass);
836 /* Register PCI device */
837 rc = PDMDevHlpPCIRegister(pDevIns, &pState->pciDevice);
838 if (RT_FAILURE(rc))
839 return rc;
840
841 /* Status driver */
842 PPDMIBASE pBase;
843 rc = PDMDevHlpDriverAttach(pDevIns, PDM_STATUS_LUN, &pState->IBase, &pBase, "Status Port");
844 if (RT_FAILURE(rc))
845 return PDMDEV_SET_ERROR(pDevIns, rc, N_("Failed to attach the status LUN"));
846 pState->pLedsConnector = (PPDMILEDCONNECTORS)pBase->pfnQueryInterface(pBase, PDMINTERFACE_LED_CONNECTORS);
847
848 pState->nQueues = nQueues;
849
850#if defined(VBOX_WITH_STATISTICS)
851 PDMDevHlpSTAMRegisterF(pDevIns, &pState->StatIOReadGC, STAMTYPE_PROFILE, STAMVISIBILITY_ALWAYS, STAMUNIT_TICKS_PER_CALL, "Profiling IO reads in GC", vpciCounter(pcszNameFmt, "IO/ReadGC"), iInstance);
852 PDMDevHlpSTAMRegisterF(pDevIns, &pState->StatIOReadHC, STAMTYPE_PROFILE, STAMVISIBILITY_ALWAYS, STAMUNIT_TICKS_PER_CALL, "Profiling IO reads in HC", vpciCounter(pcszNameFmt, "IO/ReadHC"), iInstance);
853 PDMDevHlpSTAMRegisterF(pDevIns, &pState->StatIOWriteGC, STAMTYPE_PROFILE, STAMVISIBILITY_ALWAYS, STAMUNIT_TICKS_PER_CALL, "Profiling IO writes in GC", vpciCounter(pcszNameFmt, "IO/WriteGC"), iInstance);
854 PDMDevHlpSTAMRegisterF(pDevIns, &pState->StatIOWriteHC, STAMTYPE_PROFILE, STAMVISIBILITY_ALWAYS, STAMUNIT_TICKS_PER_CALL, "Profiling IO writes in HC", vpciCounter(pcszNameFmt, "IO/WriteHC"), iInstance);
855 PDMDevHlpSTAMRegisterF(pDevIns, &pState->StatIntsRaised, STAMTYPE_COUNTER, STAMVISIBILITY_ALWAYS, STAMUNIT_OCCURENCES, "Number of raised interrupts", vpciCounter(pcszNameFmt, "Interrupts/Raised"), iInstance);
856 PDMDevHlpSTAMRegisterF(pDevIns, &pState->StatIntsSkipped, STAMTYPE_COUNTER, STAMVISIBILITY_ALWAYS, STAMUNIT_OCCURENCES, "Number of skipped interrupts", vpciCounter(pcszNameFmt, "Interrupts/Skipped"), iInstance);
857 PDMDevHlpSTAMRegisterF(pDevIns, &pState->StatCsGC, STAMTYPE_PROFILE, STAMVISIBILITY_ALWAYS, STAMUNIT_TICKS_PER_CALL, "Profiling CS wait in GC", vpciCounter(pcszNameFmt, "Cs/CsGC"), iInstance);
858 PDMDevHlpSTAMRegisterF(pDevIns, &pState->StatCsHC, STAMTYPE_PROFILE, STAMVISIBILITY_ALWAYS, STAMUNIT_TICKS_PER_CALL, "Profiling CS wait in HC", vpciCounter(pcszNameFmt, "Cs/CsHC"), iInstance);
859#endif /* VBOX_WITH_STATISTICS */
860
861 return rc;
862}
863
864/**
865 * Destruct PCI-related part of device.
866 *
867 * We need to free non-VM resources only.
868 *
869 * @returns VBox status.
870 * @param pState The device state structure.
871 */
872int vpciDestruct(VPCISTATE* pState)
873{
874 Log(("%s Destroying PCI instance\n", INSTANCE(pState)));
875
876 if (PDMCritSectIsInitialized(&pState->cs))
877 PDMR3CritSectDelete(&pState->cs);
878
879 return VINF_SUCCESS;
880}
881
882/**
883 * Device relocation callback.
884 *
885 * When this callback is called the device instance data, and if the
886 * device have a GC component, is being relocated, or/and the selectors
887 * have been changed. The device must use the chance to perform the
888 * necessary pointer relocations and data updates.
889 *
890 * Before the GC code is executed the first time, this function will be
891 * called with a 0 delta so GC pointer calculations can be one in one place.
892 *
893 * @param pDevIns Pointer to the device instance.
894 * @param offDelta The relocation delta relative to the old location.
895 *
896 * @remark A relocation CANNOT fail.
897 */
898void vpciRelocate(PPDMDEVINS pDevIns, RTGCINTPTR offDelta)
899{
900 VPCISTATE* pState = PDMINS_2_DATA(pDevIns, VPCISTATE*);
901 pState->pDevInsRC = PDMDEVINS_2_RCPTR(pDevIns);
902 // TBD
903}
904
905PVQUEUE vpciAddQueue(VPCISTATE* pState, unsigned uSize,
906 void (*pfnCallback)(void *pvState, PVQUEUE pQueue),
907 const char *pcszName)
908{
909 PVQUEUE pQueue = NULL;
910 /* Find an empty queue slot */
911 for (unsigned i = 0; i < pState->nQueues; i++)
912 {
913 if (pState->Queues[i].VRing.uSize == 0)
914 {
915 pQueue = &pState->Queues[i];
916 break;
917 }
918 }
919
920 if (!pQueue)
921 {
922 Log(("%s Too many queues being added, no empty slots available!\n", INSTANCE(pState)));
923 }
924 else
925 {
926 pQueue->VRing.uSize = uSize;
927 pQueue->VRing.addrDescriptors = 0;
928 pQueue->uPageNumber = 0;
929 pQueue->pfnCallback = pfnCallback;
930 pQueue->pcszName = pcszName;
931 }
932
933 return pQueue;
934}
935
936
937#endif /* IN_RING3 */
938
939#endif /* VBOX_DEVICE_STRUCT_TESTCASE */
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