pci-lasat.c 2.1 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 * This file is subject to the terms and conditions of the GNU General Public
 * License.  See the file "COPYING" in the main directory of this archive
 * for more details.
 *
 * Copyright (C) 2000, 2001, 04 Keith M Wesolowski
 */
#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/pci.h>
#include <linux/types.h>
#include <asm/bootinfo.h>

extern struct pci_ops nile4_pci_ops;
extern struct pci_ops gt64120_pci_ops;
static struct resource lasat_pci_mem_resource = {
	.name	= "LASAT PCI MEM",
	.start	= 0x18000000,
T
Thiemo Seufer 已提交
19
	.end	= 0x19ffffff,
L
Linus Torvalds 已提交
20 21 22 23 24 25
	.flags	= IORESOURCE_MEM,
};

static struct resource lasat_pci_io_resource = {
	.name	= "LASAT PCI IO",
	.start	= 0x1a000000,
T
Thiemo Seufer 已提交
26
	.end	= 0x1bffffff,
L
Linus Torvalds 已提交
27 28 29 30 31 32 33 34 35 36
	.flags	= IORESOURCE_IO,
};

static struct pci_controller lasat_pci_controller = {
	.mem_resource	= &lasat_pci_mem_resource,
	.io_resource	= &lasat_pci_io_resource,
};

static int __init lasat_pci_setup(void)
{
T
Thiemo Seufer 已提交
37
	printk("PCI: starting\n");
L
Linus Torvalds 已提交
38

T
Thiemo Seufer 已提交
39 40
	switch (mips_machtype) {
	case MACH_LASAT_100:
L
Linus Torvalds 已提交
41 42
                lasat_pci_controller.pci_ops = &gt64120_pci_ops;
                break;
T
Thiemo Seufer 已提交
43
	case MACH_LASAT_200:
L
Linus Torvalds 已提交
44 45
                lasat_pci_controller.pci_ops = &nile4_pci_ops;
                break;
T
Thiemo Seufer 已提交
46
	default:
L
Linus Torvalds 已提交
47 48 49 50
                panic("pcibios_init: mips_machtype incorrect");
        }

	register_pci_controller(&lasat_pci_controller);
51 52

	return 0;
L
Linus Torvalds 已提交
53
}
54 55

arch_initcall(lasat_pci_setup);
L
Linus Torvalds 已提交
56 57 58 59 60 61 62 63 64 65 66 67 68

#define LASATINT_ETH1   0
#define LASATINT_ETH0   1
#define LASATINT_HDC    2
#define LASATINT_COMP   3
#define LASATINT_HDLC   4
#define LASATINT_PCIA   5
#define LASATINT_PCIB   6
#define LASATINT_PCIC   7
#define LASATINT_PCID   8

int __init pcibios_map_irq(struct pci_dev *dev, u8 slot, u8 pin)
{
T
Thiemo Seufer 已提交
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
	switch (slot) {
	case 1:
		return LASATINT_PCIA;
	case 2:
		return LASATINT_PCIB;
	case 3:
		return LASATINT_PCIC;
	case 4:
		return LASATINT_ETH1;   /* Ethernet 1 (LAN 2) */
	case 5:
		return LASATINT_ETH0;   /* Ethernet 0 (LAN 1) */
	case 6:
		return LASATINT_HDC;    /* IDE controller */
	default:
		return 0xff;            /* Illegal */
	}
L
Linus Torvalds 已提交
85

T
Thiemo Seufer 已提交
86
	return -1;
L
Linus Torvalds 已提交
87 88 89 90 91 92 93
}

/* Do platform specific device initialization at pci_enable_device() time */
int pcibios_plat_dev_init(struct pci_dev *dev)
{
	return 0;
}