forked from Minki/linux
of: implement pci_address_to_pio as weak function
Implement pci_address_to_pio as weak function to remove the dependency on asm/prom.h. This is in preparation to make prom.h optional. Signed-off-by: Rob Herring <rob.herring@calxeda.com> Acked-by: Grant Likely <grant.likely@linaro.org> Cc: Michal Simek <monstr@monstr.eu> Cc: Ralf Baechle <ralf@linux-mips.org> Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org> Cc: Paul Mackerras <paulus@samba.org> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: Ingo Molnar <mingo@redhat.com> Cc: "H. Peter Anvin" <hpa@zytor.com> Cc: x86@kernel.org Cc: Grant Likely <grant.likely@linaro.org>
This commit is contained in:
parent
ba904f0649
commit
25ff79443c
@ -26,13 +26,4 @@ enum early_consoles {
|
|||||||
|
|
||||||
extern int of_early_console(void *version);
|
extern int of_early_console(void *version);
|
||||||
|
|
||||||
/*
|
|
||||||
* OF address retreival & translation
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifdef CONFIG_PCI
|
|
||||||
extern unsigned long pci_address_to_pio(phys_addr_t address);
|
|
||||||
#define pci_address_to_pio pci_address_to_pio
|
|
||||||
#endif /* CONFIG_PCI */
|
|
||||||
|
|
||||||
#endif /* _ASM_MICROBLAZE_PROM_H */
|
#endif /* _ASM_MICROBLAZE_PROM_H */
|
||||||
|
@ -19,17 +19,6 @@
|
|||||||
|
|
||||||
extern void device_tree_init(void);
|
extern void device_tree_init(void);
|
||||||
|
|
||||||
static inline unsigned long pci_address_to_pio(phys_addr_t address)
|
|
||||||
{
|
|
||||||
/*
|
|
||||||
* The ioport address can be directly used by inX() / outX()
|
|
||||||
*/
|
|
||||||
BUG_ON(address > IO_SPACE_LIMIT);
|
|
||||||
|
|
||||||
return (unsigned long) address;
|
|
||||||
}
|
|
||||||
#define pci_address_to_pio pci_address_to_pio
|
|
||||||
|
|
||||||
struct boot_param_header;
|
struct boot_param_header;
|
||||||
|
|
||||||
extern void __dt_setup_arch(struct boot_param_header *bph);
|
extern void __dt_setup_arch(struct boot_param_header *bph);
|
||||||
|
@ -30,11 +30,6 @@
|
|||||||
extern u64 of_translate_dma_address(struct device_node *dev,
|
extern u64 of_translate_dma_address(struct device_node *dev,
|
||||||
const __be32 *in_addr);
|
const __be32 *in_addr);
|
||||||
|
|
||||||
#ifdef CONFIG_PCI
|
|
||||||
extern unsigned long pci_address_to_pio(phys_addr_t address);
|
|
||||||
#define pci_address_to_pio pci_address_to_pio
|
|
||||||
#endif /* CONFIG_PCI */
|
|
||||||
|
|
||||||
/* Parse the ibm,dma-window property of an OF node into the busno, phys and
|
/* Parse the ibm,dma-window property of an OF node into the busno, phys and
|
||||||
* size parameters.
|
* size parameters.
|
||||||
*/
|
*/
|
||||||
|
@ -39,9 +39,6 @@ static inline void x86_dtb_init(void) { }
|
|||||||
|
|
||||||
extern char cmd_line[COMMAND_LINE_SIZE];
|
extern char cmd_line[COMMAND_LINE_SIZE];
|
||||||
|
|
||||||
#define pci_address_to_pio pci_address_to_pio
|
|
||||||
unsigned long pci_address_to_pio(phys_addr_t addr);
|
|
||||||
|
|
||||||
#define HAVE_ARCH_DEVTREE_FIXUPS
|
#define HAVE_ARCH_DEVTREE_FIXUPS
|
||||||
|
|
||||||
#endif /* __ASSEMBLY__ */
|
#endif /* __ASSEMBLY__ */
|
||||||
|
@ -27,16 +27,6 @@ char __initdata cmd_line[COMMAND_LINE_SIZE];
|
|||||||
|
|
||||||
int __initdata of_ioapic;
|
int __initdata of_ioapic;
|
||||||
|
|
||||||
unsigned long pci_address_to_pio(phys_addr_t address)
|
|
||||||
{
|
|
||||||
/*
|
|
||||||
* The ioport address can be directly used by inX / outX
|
|
||||||
*/
|
|
||||||
BUG_ON(address >= (1 << 16));
|
|
||||||
return (unsigned long)address;
|
|
||||||
}
|
|
||||||
EXPORT_SYMBOL_GPL(pci_address_to_pio);
|
|
||||||
|
|
||||||
void __init early_init_dt_scan_chosen_arch(unsigned long node)
|
void __init early_init_dt_scan_chosen_arch(unsigned long node)
|
||||||
{
|
{
|
||||||
BUG();
|
BUG();
|
||||||
|
@ -626,6 +626,14 @@ const __be32 *of_get_address(struct device_node *dev, int index, u64 *size,
|
|||||||
}
|
}
|
||||||
EXPORT_SYMBOL(of_get_address);
|
EXPORT_SYMBOL(of_get_address);
|
||||||
|
|
||||||
|
unsigned long __weak pci_address_to_pio(phys_addr_t address)
|
||||||
|
{
|
||||||
|
if (address > IO_SPACE_LIMIT)
|
||||||
|
return (unsigned long)-1;
|
||||||
|
|
||||||
|
return (unsigned long) address;
|
||||||
|
}
|
||||||
|
|
||||||
static int __of_address_to_resource(struct device_node *dev,
|
static int __of_address_to_resource(struct device_node *dev,
|
||||||
const __be32 *addrp, u64 size, unsigned int flags,
|
const __be32 *addrp, u64 size, unsigned int flags,
|
||||||
const char *name, struct resource *r)
|
const char *name, struct resource *r)
|
||||||
|
@ -2,7 +2,6 @@
|
|||||||
#include <linux/export.h>
|
#include <linux/export.h>
|
||||||
#include <linux/of.h>
|
#include <linux/of.h>
|
||||||
#include <linux/of_pci.h>
|
#include <linux/of_pci.h>
|
||||||
#include <asm/prom.h>
|
|
||||||
|
|
||||||
static inline int __of_pci_pci_compare(struct device_node *node,
|
static inline int __of_pci_pci_compare(struct device_node *node,
|
||||||
unsigned int data)
|
unsigned int data)
|
||||||
|
@ -52,10 +52,7 @@ extern void __iomem *of_iomap(struct device_node *device, int index);
|
|||||||
extern const __be32 *of_get_address(struct device_node *dev, int index,
|
extern const __be32 *of_get_address(struct device_node *dev, int index,
|
||||||
u64 *size, unsigned int *flags);
|
u64 *size, unsigned int *flags);
|
||||||
|
|
||||||
#ifndef pci_address_to_pio
|
extern unsigned long pci_address_to_pio(phys_addr_t addr);
|
||||||
static inline unsigned long pci_address_to_pio(phys_addr_t addr) { return -1; }
|
|
||||||
#define pci_address_to_pio pci_address_to_pio
|
|
||||||
#endif
|
|
||||||
|
|
||||||
extern int of_pci_range_parser_init(struct of_pci_range_parser *parser,
|
extern int of_pci_range_parser_init(struct of_pci_range_parser *parser,
|
||||||
struct device_node *node);
|
struct device_node *node);
|
||||||
|
Loading…
Reference in New Issue
Block a user