VirtualBox

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

Last change on this file was 98103, checked in by vboxsync, 16 months ago

Copyright year updates by 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.9 KB
Line 
1/* $Id: PciInline.h 98103 2023-01-17 14:15:46Z vboxsync $ */
2/** @file
3 * PCI - The PCI Controller And Devices, inline device helpers.
4 */
5
6/*
7 * Copyright (C) 2006-2023 Oracle and/or its affiliates.
8 *
9 * This file is part of VirtualBox base platform packages, as
10 * available from https://www.virtualbox.org.
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation, in version 3 of the
15 * License.
16 *
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, see <https://www.gnu.org/licenses>.
24 *
25 * SPDX-License-Identifier: GPL-3.0-only
26 */
27
28#ifndef VBOX_INCLUDED_SRC_Bus_PciInline_h
29#define VBOX_INCLUDED_SRC_Bus_PciInline_h
30#ifndef RT_WITHOUT_PRAGMA_ONCE
31# pragma once
32#endif
33
34DECLINLINE(void) pciDevSetPci2PciBridge(PPDMPCIDEV pDev)
35{
36 pDev->Int.s.fFlags |= PCIDEV_FLAG_PCI_TO_PCI_BRIDGE;
37}
38
39DECLINLINE(bool) pciDevIsPci2PciBridge(PPDMPCIDEV pDev)
40{
41 return (pDev->Int.s.fFlags & PCIDEV_FLAG_PCI_TO_PCI_BRIDGE) != 0;
42}
43
44DECLINLINE(void) pciDevSetPciExpress(PPDMPCIDEV pDev)
45{
46 pDev->Int.s.fFlags |= PCIDEV_FLAG_PCI_EXPRESS_DEVICE;
47}
48
49DECLINLINE(bool) pciDevIsPciExpress(PPDMPCIDEV pDev)
50{
51 return (pDev->Int.s.fFlags & PCIDEV_FLAG_PCI_EXPRESS_DEVICE) != 0;
52}
53
54DECLINLINE(void) pciDevSetMsiCapable(PPDMPCIDEV pDev)
55{
56 pDev->Int.s.fFlags |= PCIDEV_FLAG_MSI_CAPABLE;
57}
58
59DECLINLINE(void) pciDevClearMsiCapable(PPDMPCIDEV pDev)
60{
61 pDev->Int.s.fFlags &= ~PCIDEV_FLAG_MSI_CAPABLE;
62}
63
64DECLINLINE(bool) pciDevIsMsiCapable(PPDMPCIDEV pDev)
65{
66 return (pDev->Int.s.fFlags & PCIDEV_FLAG_MSI_CAPABLE) != 0;
67}
68
69DECLINLINE(void) pciDevSetMsi64Capable(PPDMPCIDEV pDev)
70{
71 pDev->Int.s.fFlags |= PCIDEV_FLAG_MSI64_CAPABLE;
72}
73
74DECLINLINE(void) pciDevClearMsi64Capable(PPDMPCIDEV pDev)
75{
76 pDev->Int.s.fFlags &= ~PCIDEV_FLAG_MSI64_CAPABLE;
77}
78
79DECLINLINE(bool) pciDevIsMsi64Capable(PPDMPCIDEV pDev)
80{
81 return (pDev->Int.s.fFlags & PCIDEV_FLAG_MSI64_CAPABLE) != 0;
82}
83
84DECLINLINE(void) pciDevSetMsixCapable(PPDMPCIDEV pDev)
85{
86 pDev->Int.s.fFlags |= PCIDEV_FLAG_MSIX_CAPABLE;
87}
88
89DECLINLINE(void) pciDevClearMsixCapable(PPDMPCIDEV pDev)
90{
91 pDev->Int.s.fFlags &= ~PCIDEV_FLAG_MSIX_CAPABLE;
92}
93
94DECLINLINE(bool) pciDevIsMsixCapable(PPDMPCIDEV pDev)
95{
96 return (pDev->Int.s.fFlags & PCIDEV_FLAG_MSIX_CAPABLE) != 0;
97}
98
99DECLINLINE(void) pciDevSetPassthrough(PPDMPCIDEV pDev)
100{
101 pDev->Int.s.fFlags |= PCIDEV_FLAG_PASSTHROUGH;
102}
103
104DECLINLINE(void) pciDevClearPassthrough(PPDMPCIDEV pDev)
105{
106 pDev->Int.s.fFlags &= ~PCIDEV_FLAG_PASSTHROUGH;
107}
108
109DECLINLINE(bool) pciDevIsPassthrough(PPDMPCIDEV pDev)
110{
111 return (pDev->Int.s.fFlags & PCIDEV_FLAG_PASSTHROUGH) != 0;
112}
113
114#endif /* !VBOX_INCLUDED_SRC_Bus_PciInline_h */
115
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use