rjw | 1f88458 | 2022-01-06 17:20:42 +0800 | [diff] [blame^] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
| 2 | /* |
| 3 | * Low-Level PCI Access for FRV machines. |
| 4 | * |
| 5 | * (c) 1999 Martin Mares <mj@ucw.cz> |
| 6 | */ |
| 7 | |
| 8 | #include <asm/sections.h> |
| 9 | |
| 10 | #undef DEBUG |
| 11 | |
| 12 | #ifdef DEBUG |
| 13 | #define DBG(x...) printk(x) |
| 14 | #else |
| 15 | #define DBG(x...) |
| 16 | #endif |
| 17 | |
| 18 | extern unsigned int __nongpreldata pci_probe; |
| 19 | |
| 20 | /* pci-frv.c */ |
| 21 | |
| 22 | void pcibios_resource_survey(void); |
| 23 | |
| 24 | /* pci-vdk.c */ |
| 25 | |
| 26 | extern struct pci_ops *__nongpreldata pci_root_ops; |
| 27 | |
| 28 | /* pci-irq.c */ |
| 29 | extern unsigned int pcibios_irq_mask; |
| 30 | |
| 31 | void pcibios_irq_init(void); |
| 32 | void pcibios_fixup_irqs(void); |
| 33 | void pcibios_enable_irq(struct pci_dev *dev); |