VirtualBox

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

Last change on this file since 77807 was 76565, checked in by vboxsync, 6 years ago

Devices: Use VBOX_INCLUDED_SRC_ as header guard prefix with scm.

  • 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.6 KB
Line 
1/* $Id: PciInline.h 76565 2019-01-01 04:23:20Z vboxsync $ */
2/** @file
3 * PCI - The PCI Controller And Devices, inline device helpers.
4 */
5
6/*
7 * Copyright (C) 2006-2019 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
18#ifndef VBOX_INCLUDED_SRC_Bus_PciInline_h
19#define VBOX_INCLUDED_SRC_Bus_PciInline_h
20#ifndef RT_WITHOUT_PRAGMA_ONCE
21# pragma once
22#endif
23
24DECLINLINE(void) pciDevSetPci2PciBridge(PPDMPCIDEV pDev)
25{
26 pDev->Int.s.fFlags |= PCIDEV_FLAG_PCI_TO_PCI_BRIDGE;
27}
28
29DECLINLINE(bool) pciDevIsPci2PciBridge(PPDMPCIDEV pDev)
30{
31 return (pDev->Int.s.fFlags & PCIDEV_FLAG_PCI_TO_PCI_BRIDGE) != 0;
32}
33
34DECLINLINE(void) pciDevSetPciExpress(PPDMPCIDEV pDev)
35{
36 pDev->Int.s.fFlags |= PCIDEV_FLAG_PCI_EXPRESS_DEVICE;
37}
38
39DECLINLINE(bool) pciDevIsPciExpress(PPDMPCIDEV pDev)
40{
41 return (pDev->Int.s.fFlags & PCIDEV_FLAG_PCI_EXPRESS_DEVICE) != 0;
42}
43
44DECLINLINE(void) pciDevSetMsiCapable(PPDMPCIDEV pDev)
45{
46 pDev->Int.s.fFlags |= PCIDEV_FLAG_MSI_CAPABLE;
47}
48
49DECLINLINE(void) pciDevClearMsiCapable(PPDMPCIDEV pDev)
50{
51 pDev->Int.s.fFlags &= ~PCIDEV_FLAG_MSI_CAPABLE;
52}
53
54DECLINLINE(bool) pciDevIsMsiCapable(PPDMPCIDEV pDev)
55{
56 return (pDev->Int.s.fFlags & PCIDEV_FLAG_MSI_CAPABLE) != 0;
57}
58
59DECLINLINE(void) pciDevSetMsi64Capable(PPDMPCIDEV pDev)
60{
61 pDev->Int.s.fFlags |= PCIDEV_FLAG_MSI64_CAPABLE;
62}
63
64DECLINLINE(void) pciDevClearMsi64Capable(PPDMPCIDEV pDev)
65{
66 pDev->Int.s.fFlags &= ~PCIDEV_FLAG_MSI64_CAPABLE;
67}
68
69DECLINLINE(bool) pciDevIsMsi64Capable(PPDMPCIDEV pDev)
70{
71 return (pDev->Int.s.fFlags & PCIDEV_FLAG_MSI64_CAPABLE) != 0;
72}
73
74DECLINLINE(void) pciDevSetMsixCapable(PPDMPCIDEV pDev)
75{
76 pDev->Int.s.fFlags |= PCIDEV_FLAG_MSIX_CAPABLE;
77}
78
79DECLINLINE(void) pciDevClearMsixCapable(PPDMPCIDEV pDev)
80{
81 pDev->Int.s.fFlags &= ~PCIDEV_FLAG_MSIX_CAPABLE;
82}
83
84DECLINLINE(bool) pciDevIsMsixCapable(PPDMPCIDEV pDev)
85{
86 return (pDev->Int.s.fFlags & PCIDEV_FLAG_MSIX_CAPABLE) != 0;
87}
88
89DECLINLINE(void) pciDevSetPassthrough(PPDMPCIDEV pDev)
90{
91 pDev->Int.s.fFlags |= PCIDEV_FLAG_PASSTHROUGH;
92}
93
94DECLINLINE(void) pciDevClearPassthrough(PPDMPCIDEV pDev)
95{
96 pDev->Int.s.fFlags &= ~PCIDEV_FLAG_PASSTHROUGH;
97}
98
99DECLINLINE(bool) pciDevIsPassthrough(PPDMPCIDEV pDev)
100{
101 return (pDev->Int.s.fFlags & PCIDEV_FLAG_PASSTHROUGH) != 0;
102}
103
104#endif /* !VBOX_INCLUDED_SRC_Bus_PciInline_h */
105
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