2005-04-17 00:20:36 +02:00
|
|
|
/*
|
|
|
|
* linux/arch/arm/mach-shark/pci.c
|
|
|
|
*
|
|
|
|
* PCI bios-type initialisation for PCI machines
|
|
|
|
*
|
|
|
|
* Bits taken from various places.
|
|
|
|
*/
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/pci.h>
|
|
|
|
#include <linux/init.h>
|
2012-02-28 20:15:43 +01:00
|
|
|
#include <linux/io.h>
|
2011-06-29 04:22:40 +02:00
|
|
|
#include <video/vga.h>
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
#include <asm/irq.h>
|
|
|
|
#include <asm/mach/pci.h>
|
|
|
|
#include <asm/mach-types.h>
|
|
|
|
|
2012-02-28 20:15:43 +01:00
|
|
|
#define IO_START 0x40000000
|
|
|
|
|
2011-06-10 16:30:21 +02:00
|
|
|
static int __init shark_map_irq(const struct pci_dev *dev, u8 slot, u8 pin)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
if (dev->bus->number == 0)
|
2010-05-23 21:55:47 +02:00
|
|
|
if (dev->devfn == 0)
|
|
|
|
return 255;
|
|
|
|
else
|
|
|
|
return 11;
|
|
|
|
else
|
|
|
|
return 255;
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
extern void __init via82c505_preinit(void);
|
|
|
|
|
|
|
|
static struct hw_pci shark_pci __initdata = {
|
|
|
|
.setup = via82c505_setup,
|
|
|
|
.map_irq = shark_map_irq,
|
|
|
|
.nr_controllers = 1,
|
2012-03-10 13:49:16 +01:00
|
|
|
.ops = &via82c505_ops,
|
2005-04-17 00:20:36 +02:00
|
|
|
.preinit = via82c505_preinit,
|
|
|
|
};
|
|
|
|
|
|
|
|
static int __init shark_pci_init(void)
|
|
|
|
{
|
2011-06-29 04:16:13 +02:00
|
|
|
if (!machine_is_shark())
|
2012-04-30 18:36:59 +02:00
|
|
|
return -ENODEV;
|
2011-06-29 04:16:13 +02:00
|
|
|
|
|
|
|
pcibios_min_io = 0x6000;
|
|
|
|
pcibios_min_mem = 0x50000000;
|
2011-06-29 04:22:40 +02:00
|
|
|
vga_base = 0xe8000000;
|
2011-06-29 04:16:13 +02:00
|
|
|
|
2012-02-28 20:15:43 +01:00
|
|
|
pci_ioremap_io(0, IO_START);
|
|
|
|
|
2011-06-29 04:16:13 +02:00
|
|
|
pci_common_init(&shark_pci);
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
subsys_initcall(shark_pci_init);
|