VirtualBox

source: vbox/trunk/src/VBox/Devices/Bus/PciInline.h@ 68594

Last change on this file since 68594 was 64373, checked in by vboxsync, 8 years ago

PDM,Devices: Support for multiple PCI devices/function in a single PDM device.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
  • Property svn:mergeinfo set to (toggle deleted branches)
    /branches/VBox-3.0/include/VBox/pci.h58652,​70973
    /branches/VBox-3.2/include/VBox/pci.h66309,​66318
    /branches/VBox-4.0/include/VBox/pci.h70873
    /branches/VBox-4.1/include/VBox/pci.h74233,​78414,​78691,​82579,​85941,​85944-85947,​85949-85950,​85953,​86701,​86728,​87009
    /branches/VBox-4.2/include/VBox/pci.h82653,​86229-86230,​86234,​86529,​91503-91504,​91506-91508,​91510,​91514-91515,​91521,​108112,​108114,​108127
    /branches/VBox-4.3/include/VBox/pci.h89714,​91223,​94066,​94839,​94897,​95154,​95164,​95167,​95295,​95338,​95353-95354,​95356,​95367,​95451,​95475,​95477,​95480,​95507,​95640,​95659,​95661,​95663,​98913-98915,​99358
    /branches/VBox-4.3/trunk/include/VBox/pci.h91223
    /branches/VBox-5.0/include/VBox/pci.h104445,​104938,​104943,​104950,​104952-104953,​104987-104988,​104990,​106453
    /branches/andy/draganddrop/include/VBox/pci.h90781-91268
    /branches/andy/guestctrl20/include/VBox/pci.h78916,​78930
    /branches/andy/pdmaudio/include/VBox/pci.h94582,​94641,​94654,​94688,​94778,​94783,​94816,​95197,​95215-95216,​95250,​95279,​95505-95506,​95543,​95694,​96323,​96470-96471,​96582,​96587,​96802-96803,​96817,​96904,​96967,​96999,​97020-97021,​97025,​97050,​97099
    /branches/bird/hardenedwindows/include/VBox/pci.h92692-94610
    /branches/dsen/gui/include/VBox/pci.h79076-79078,​79089,​79109-79110,​79112-79113,​79127-79130,​79134,​79141,​79151,​79155,​79157-79159,​79193,​79197
    /branches/dsen/gui2/include/VBox/pci.h79224,​79228,​79233,​79235,​79258,​79262-79263,​79273,​79341,​79345,​79354,​79357,​79387-79388,​79559-79569,​79572-79573,​79578,​79581-79582,​79590-79591,​79598-79599,​79602-79603,​79605-79606,​79632,​79635,​79637,​79644
    /branches/dsen/gui3/include/VBox/pci.h79645-79692
    /trunk/src/include/VBox/pci.h92342
File size: 2.5 KB
Line 
1/** @file
2 * PCI - The PCI Controller And Devices, inline device helpers.
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
17#ifndef ___Bus_PciInline_h
18#define ___Bus_PciInline_h
19
20DECLINLINE(void) pciDevSetPci2PciBridge(PPDMPCIDEV pDev)
21{
22 pDev->Int.s.fFlags |= PCIDEV_FLAG_PCI_TO_PCI_BRIDGE;
23}
24
25DECLINLINE(bool) pciDevIsPci2PciBridge(PPDMPCIDEV pDev)
26{
27 return (pDev->Int.s.fFlags & PCIDEV_FLAG_PCI_TO_PCI_BRIDGE) != 0;
28}
29
30DECLINLINE(void) pciDevSetPciExpress(PPDMPCIDEV pDev)
31{
32 pDev->Int.s.fFlags |= PCIDEV_FLAG_PCI_EXPRESS_DEVICE;
33}
34
35DECLINLINE(bool) pciDevIsPciExpress(PPDMPCIDEV pDev)
36{
37 return (pDev->Int.s.fFlags & PCIDEV_FLAG_PCI_EXPRESS_DEVICE) != 0;
38}
39
40DECLINLINE(void) pciDevSetMsiCapable(PPDMPCIDEV pDev)
41{
42 pDev->Int.s.fFlags |= PCIDEV_FLAG_MSI_CAPABLE;
43}
44
45DECLINLINE(void) pciDevClearMsiCapable(PPDMPCIDEV pDev)
46{
47 pDev->Int.s.fFlags &= ~PCIDEV_FLAG_MSI_CAPABLE;
48}
49
50DECLINLINE(bool) pciDevIsMsiCapable(PPDMPCIDEV pDev)
51{
52 return (pDev->Int.s.fFlags & PCIDEV_FLAG_MSI_CAPABLE) != 0;
53}
54
55DECLINLINE(void) pciDevSetMsi64Capable(PPDMPCIDEV pDev)
56{
57 pDev->Int.s.fFlags |= PCIDEV_FLAG_MSI64_CAPABLE;
58}
59
60DECLINLINE(void) pciDevClearMsi64Capable(PPDMPCIDEV pDev)
61{
62 pDev->Int.s.fFlags &= ~PCIDEV_FLAG_MSI64_CAPABLE;
63}
64
65DECLINLINE(bool) pciDevIsMsi64Capable(PPDMPCIDEV pDev)
66{
67 return (pDev->Int.s.fFlags & PCIDEV_FLAG_MSI64_CAPABLE) != 0;
68}
69
70DECLINLINE(void) pciDevSetMsixCapable(PPDMPCIDEV pDev)
71{
72 pDev->Int.s.fFlags |= PCIDEV_FLAG_MSIX_CAPABLE;
73}
74
75DECLINLINE(void) pciDevClearMsixCapable(PPDMPCIDEV pDev)
76{
77 pDev->Int.s.fFlags &= ~PCIDEV_FLAG_MSIX_CAPABLE;
78}
79
80DECLINLINE(bool) pciDevIsMsixCapable(PPDMPCIDEV pDev)
81{
82 return (pDev->Int.s.fFlags & PCIDEV_FLAG_MSIX_CAPABLE) != 0;
83}
84
85DECLINLINE(void) pciDevSetPassthrough(PPDMPCIDEV pDev)
86{
87 pDev->Int.s.fFlags |= PCIDEV_FLAG_PASSTHROUGH;
88}
89
90DECLINLINE(void) pciDevClearPassthrough(PPDMPCIDEV pDev)
91{
92 pDev->Int.s.fFlags &= ~PCIDEV_FLAG_PASSTHROUGH;
93}
94
95DECLINLINE(bool) pciDevIsPassthrough(PPDMPCIDEV pDev)
96{
97 return (pDev->Int.s.fFlags & PCIDEV_FLAG_PASSTHROUGH) != 0;
98}
99
100#endif
101
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