VirtualBox

source: vbox/trunk/src/VBox/Devices/PC/BIOS/pciutil.h@ 93115

Last change on this file since 93115 was 93115, checked in by vboxsync, 2 years ago

scm --update-copyright-year

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.7 KB
Line 
1/* $Id: pciutil.h 93115 2022-01-01 11:31:46Z vboxsync $ */
2/** @file
3 * Utility routines for calling the PCI BIOS.
4 */
5
6/*
7 * Copyright (C) 2011-2022 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_PC_BIOS_pciutil_h
19#define VBOX_INCLUDED_SRC_PC_BIOS_pciutil_h
20#ifndef RT_WITHOUT_PRAGMA_ONCE
21# pragma once
22#endif
23
24extern uint16_t pci_find_device(uint16_t v_id, uint16_t d_id);
25/* Warning: pci_find_classcode destroys the high bits of ECX. */
26extern uint16_t pci_find_classcode(uint32_t dev_class);
27extern uint32_t pci_read_config_byte(uint8_t bus, uint8_t dev_fn, uint8_t reg);
28extern uint32_t pci_read_config_word(uint8_t bus, uint8_t dev_fn, uint8_t reg);
29/* Warning: pci_read_config_dword destroys the high bits of ECX. */
30extern uint32_t pci_read_config_dword(uint8_t bus, uint8_t dev_fn, uint8_t reg);
31extern void pci_write_config_byte(uint8_t bus, uint8_t dev_fn, uint8_t reg, uint8_t val);
32extern void pci_write_config_word(uint8_t bus, uint8_t dev_fn, uint8_t reg, uint16_t val);
33/* Warning: pci_write_config_dword destroys the high bits of ECX. */
34extern void pci_write_config_dword(uint8_t bus, uint8_t dev_fn, uint8_t reg, uint32_t val);
35extern uint16_t pci_find_class_noif(uint16_t dev_class);
36
37#endif /* !VBOX_INCLUDED_SRC_PC_BIOS_pciutil_h */
38
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use