VirtualBox

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

Last change on this file since 72300 was 69501, checked in by vboxsync, 7 years ago

PC/BIOS: Added LGPL disclaimer text where appropriate.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.5 KB
Line 
1/* $Id: pciutil.h 69501 2017-10-28 16:12:47Z vboxsync $ */
2/** @file
3 * Utility routines for calling the PCI BIOS.
4 */
5
6/*
7 * Copyright (C) 2011-2017 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
18extern uint16_t pci_find_device(uint16_t v_id, uint16_t d_id);
19/* Warning: pci_find_classcode destroys the high bits of ECX. */
20extern uint16_t pci_find_classcode(uint32_t dev_class);
21extern uint32_t pci_read_config_byte(uint8_t bus, uint8_t dev_fn, uint8_t reg);
22extern uint32_t pci_read_config_word(uint8_t bus, uint8_t dev_fn, uint8_t reg);
23/* Warning: pci_read_config_dword destroys the high bits of ECX. */
24extern uint32_t pci_read_config_dword(uint8_t bus, uint8_t dev_fn, uint8_t reg);
25extern void pci_write_config_byte(uint8_t bus, uint8_t dev_fn, uint8_t reg, uint8_t val);
26extern void pci_write_config_word(uint8_t bus, uint8_t dev_fn, uint8_t reg, uint16_t val);
27/* Warning: pci_write_config_dword destroys the high bits of ECX. */
28extern void pci_write_config_dword(uint8_t bus, uint8_t dev_fn, uint8_t reg, uint32_t val);
29
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