PCI: hotplug: pciehp: wait for 1 second after power off slot
[linux-2.6/mini2440.git] / arch / arm / mach-ks8695 / board-micrel.c
blob8fc0edb5211ed82a9d9100aeb00521b33e240f42
1 /*
2 * arch/arm/mach-ks8695/board-micrel.c
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 */
9 #include <linux/kernel.h>
10 #include <linux/types.h>
11 #include <linux/interrupt.h>
12 #include <linux/init.h>
13 #include <linux/platform_device.h>
15 #include <asm/mach-types.h>
17 #include <asm/mach/arch.h>
18 #include <asm/mach/map.h>
19 #include <asm/mach/irq.h>
21 #include <asm/arch/devices.h>
23 #include "generic.h"
25 #ifdef CONFIG_PCI
26 static int __init micrel_pci_map_irq(struct pci_dev *dev, u8 slot, u8 pin)
28 return KS8695_IRQ_EXTERN0;
31 static struct ks8695_pci_cfg micrel_pci = {
32 .mode = KS8695_MODE_MINIPCI,
33 .map_irq = micrel_pci_map_irq,
35 #endif
38 static void micrel_init(void)
40 printk(KERN_INFO "Micrel KS8695 Development Board initializing\n");
42 #ifdef CONFIG_PCI
43 ks8695_init_pci(&micrel_pci);
44 #endif
46 /* Add devices */
47 ks8695_add_device_wan(); /* eth0 = WAN */
48 ks8695_add_device_lan(); /* eth1 = LAN */
51 MACHINE_START(KS8695, "KS8695 Centaur Development Board")
52 /* Maintainer: Micrel Semiconductor Inc. */
53 .phys_io = KS8695_IO_PA,
54 .io_pg_offst = (KS8695_IO_VA >> 18) & 0xfffc,
55 .boot_params = KS8695_SDRAM_PA + 0x100,
56 .map_io = ks8695_map_io,
57 .init_irq = ks8695_init_irq,
58 .init_machine = micrel_init,
59 .timer = &ks8695_timer,
60 MACHINE_END