]> git.proxmox.com Git - qemu.git/blob - hw/pci_bridge.h
pci/bridge: split out pci bridge code into pci_bridge.c from pci.c
[qemu.git] / hw / pci_bridge.h
1 /*
2 * QEMU PCI bridge
3 *
4 * Copyright (c) 2004 Fabrice Bellard
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 *
20 * split out pci bus specific stuff from pci.[hc] to pci_bridge.[hc]
21 * Copyright (c) 2009 Isaku Yamahata <yamahata at valinux co jp>
22 * VA Linux Systems Japan K.K.
23 *
24 */
25
26 #ifndef QEMU_PCI_BRIDGE_H
27 #define QEMU_PCI_BRIDGE_H
28
29 #include "pci.h"
30
31 PCIDevice *pci_bridge_get_device(PCIBus *bus);
32
33 pcibus_t pci_bridge_get_base(PCIDevice *bridge, uint8_t type);
34 pcibus_t pci_bridge_get_limit(PCIDevice *bridge, uint8_t type);
35
36 PCIBus *pci_bridge_init(PCIBus *bus, int devfn, bool multifunction,
37 uint16_t vid, uint16_t did,
38 pci_map_irq_fn map_irq, const char *name);
39
40 #endif /* QEMU_PCI_BRIDGE_H */
41 /*
42 * Local variables:
43 * c-indent-level: 4
44 * c-basic-offset: 4
45 * tab-width: 8
46 * indent-tab-mode: nil
47 * End:
48 */