blob: 41fbb6bae558dc1c1f6236d111efb8ad5edc513a [file] [log] [blame]
rjw1f884582022-01-06 17:20:42 +08001/* 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
18extern unsigned int __nongpreldata pci_probe;
19
20/* pci-frv.c */
21
22void pcibios_resource_survey(void);
23
24/* pci-vdk.c */
25
26extern struct pci_ops *__nongpreldata pci_root_ops;
27
28/* pci-irq.c */
29extern unsigned int pcibios_irq_mask;
30
31void pcibios_irq_init(void);
32void pcibios_fixup_irqs(void);
33void pcibios_enable_irq(struct pci_dev *dev);