1 | /** @file
|
---|
2 | * Utility routines for calling the PCI BIOS.
|
---|
3 | */
|
---|
4 |
|
---|
5 | /*
|
---|
6 | * Copyright (C) 2011-2017 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 |
|
---|
17 | extern uint16_t pci_find_device(uint16_t v_id, uint16_t d_id);
|
---|
18 | /* Warning: pci_find_classcode destroys the high bits of ECX. */
|
---|
19 | extern uint16_t pci_find_classcode(uint32_t dev_class);
|
---|
20 | extern uint32_t pci_read_config_byte(uint8_t bus, uint8_t dev_fn, uint8_t reg);
|
---|
21 | extern 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. */
|
---|
23 | extern uint32_t pci_read_config_dword(uint8_t bus, uint8_t dev_fn, uint8_t reg);
|
---|
24 | extern void pci_write_config_byte(uint8_t bus, uint8_t dev_fn, uint8_t reg, uint8_t val);
|
---|
25 | extern 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. */
|
---|
27 | extern void pci_write_config_dword(uint8_t bus, uint8_t dev_fn, uint8_t reg, uint32_t val);
|
---|
28 |
|
---|