| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
| Krzysztof Hałasa | 9bf4d67 | 2009-11-16 15:24:41 +0100 | [diff] [blame] | 2 | * arch/arm/mach-ixp4xx/ixdp425-pci.c | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * | 
|  | 4 | * IXDP425 board-level PCI initialization | 
|  | 5 | * | 
|  | 6 | * Copyright (C) 2002 Intel Corporation. | 
|  | 7 | * Copyright (C) 2003-2004 MontaVista Software, Inc. | 
|  | 8 | * | 
|  | 9 | * Maintainer: Deepak Saxena <dsaxena@plexity.net> | 
|  | 10 | * | 
|  | 11 | * This program is free software; you can redistribute it and/or modify | 
|  | 12 | * it under the terms of the GNU General Public License version 2 as | 
|  | 13 | * published by the Free Software Foundation. | 
|  | 14 | * | 
|  | 15 | */ | 
|  | 16 |  | 
|  | 17 | #include <linux/kernel.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include <linux/pci.h> | 
|  | 19 | #include <linux/init.h> | 
| Thomas Gleixner | 698dfe2 | 2006-07-01 23:01:49 +0100 | [diff] [blame] | 20 | #include <linux/irq.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include <linux/delay.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #include <asm/mach/pci.h> | 
|  | 23 | #include <asm/irq.h> | 
| Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 24 | #include <mach/hardware.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #include <asm/mach-types.h> | 
|  | 26 |  | 
| Krzysztof Hałasa | 8d3fdf3 | 2009-11-17 18:48:23 +0100 | [diff] [blame] | 27 | #define MAX_DEV		4 | 
|  | 28 | #define IRQ_LINES	4 | 
| Krzysztof Hałasa | 9bf4d67 | 2009-11-16 15:24:41 +0100 | [diff] [blame] | 29 |  | 
|  | 30 | /* PCI controller GPIO to IRQ pin mappings */ | 
| Krzysztof Hałasa | 8d3fdf3 | 2009-11-17 18:48:23 +0100 | [diff] [blame] | 31 | #define INTA		11 | 
|  | 32 | #define INTB		10 | 
|  | 33 | #define INTC		9 | 
|  | 34 | #define INTD		8 | 
| Krzysztof Hałasa | 9bf4d67 | 2009-11-16 15:24:41 +0100 | [diff] [blame] | 35 |  | 
| Krzysztof Hałasa | 9bf4d67 | 2009-11-16 15:24:41 +0100 | [diff] [blame] | 36 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | void __init ixdp425_pci_preinit(void) | 
|  | 38 | { | 
| Krzysztof Hałasa | 8d3fdf3 | 2009-11-17 18:48:23 +0100 | [diff] [blame] | 39 | set_irq_type(IXP4XX_GPIO_IRQ(INTA), IRQ_TYPE_LEVEL_LOW); | 
|  | 40 | set_irq_type(IXP4XX_GPIO_IRQ(INTB), IRQ_TYPE_LEVEL_LOW); | 
|  | 41 | set_irq_type(IXP4XX_GPIO_IRQ(INTC), IRQ_TYPE_LEVEL_LOW); | 
|  | 42 | set_irq_type(IXP4XX_GPIO_IRQ(INTD), IRQ_TYPE_LEVEL_LOW); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | ixp4xx_pci_preinit(); | 
|  | 44 | } | 
|  | 45 |  | 
|  | 46 | static int __init ixdp425_map_irq(struct pci_dev *dev, u8 slot, u8 pin) | 
|  | 47 | { | 
| Krzysztof Hałasa | 8d3fdf3 | 2009-11-17 18:48:23 +0100 | [diff] [blame] | 48 | static int pci_irq_table[IRQ_LINES] = { | 
|  | 49 | IXP4XX_GPIO_IRQ(INTA), | 
|  | 50 | IXP4XX_GPIO_IRQ(INTB), | 
|  | 51 | IXP4XX_GPIO_IRQ(INTC), | 
|  | 52 | IXP4XX_GPIO_IRQ(INTD) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | }; | 
|  | 54 |  | 
| Krzysztof Hałasa | 8d3fdf3 | 2009-11-17 18:48:23 +0100 | [diff] [blame] | 55 | if (slot >= 1 && slot <= MAX_DEV && pin >= 1 && pin <= IRQ_LINES) | 
|  | 56 | return pci_irq_table[(slot + pin - 2) % 4]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 |  | 
| Krzysztof Hałasa | 8d3fdf3 | 2009-11-17 18:48:23 +0100 | [diff] [blame] | 58 | return -1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | } | 
|  | 60 |  | 
|  | 61 | struct hw_pci ixdp425_pci __initdata = { | 
|  | 62 | .nr_controllers = 1, | 
|  | 63 | .preinit	= ixdp425_pci_preinit, | 
|  | 64 | .swizzle	= pci_std_swizzle, | 
|  | 65 | .setup		= ixp4xx_setup, | 
|  | 66 | .scan		= ixp4xx_scan_bus, | 
|  | 67 | .map_irq	= ixdp425_map_irq, | 
|  | 68 | }; | 
|  | 69 |  | 
|  | 70 | int __init ixdp425_pci_init(void) | 
|  | 71 | { | 
|  | 72 | if (machine_is_ixdp425() || machine_is_ixcdp1100() || | 
| Ruslan V. Sushko | 45fba08 | 2007-04-06 15:00:31 +0100 | [diff] [blame] | 73 | machine_is_ixdp465() || machine_is_kixrp435()) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | pci_common_init(&ixdp425_pci); | 
|  | 75 | return 0; | 
|  | 76 | } | 
|  | 77 |  | 
|  | 78 | subsys_initcall(ixdp425_pci_init); |