VirtualBox

source: vbox/trunk/src/VBox/Devices/PC/BIOS-new/pciutil.h@ 40754

Last change on this file since 40754 was 38897, checked in by vboxsync, 13 years ago

Broke out PCI utility routines as they are not tied to AHCI.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.4 KB
Line 
1/** @file
2 * Utility routines for calling the PCI BIOS.
3 */
4
5/*
6 * Copyright (C) 2011 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
17extern uint16_t pci_find_device(uint16_t v_id, uint16_t d_id);
18/* Warning: pci_find_classcode destroys the high bits of ECX. */
19extern uint16_t pci_find_classcode(uint32_t dev_class);
20extern uint32_t pci_read_config_byte(uint8_t bus, uint8_t dev_fn, uint8_t reg);
21extern uint32_t pci_read_config_word(uint8_t bus, uint8_t dev_fn, uint8_t reg);
22/* Warning: pci_read_config_dword destroys the high bits of ECX. */
23extern uint32_t pci_read_config_dword(uint8_t bus, uint8_t dev_fn, uint8_t reg);
24extern void pci_write_config_byte(uint8_t bus, uint8_t dev_fn, uint8_t reg, uint8_t val);
25extern void pci_write_config_word(uint8_t bus, uint8_t dev_fn, uint8_t reg, uint16_t val);
26/* Warning: pci_write_config_dword destroys the high bits of ECX. */
27extern void pci_write_config_dword(uint8_t bus, uint8_t dev_fn, uint8_t reg, uint32_t val);
28
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use