Thomas Gleixner | d2912cb | 2019-06-04 10:11:33 +0200 | [diff] [blame^] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Richard Cochran | 2b8f011 | 2011-09-28 15:16:41 +0200 | [diff] [blame] | 2 | /* |
| 3 | * arch/arm/mach-ixp4xx/miccpt-pci.c |
| 4 | * |
| 5 | * MICCPT board-level PCI initialization |
| 6 | * |
| 7 | * Copyright (C) 2002 Intel Corporation. |
| 8 | * Copyright (C) 2003-2004 MontaVista Software, Inc. |
| 9 | * Copyright (C) 2006 OMICRON electronics GmbH |
| 10 | * |
| 11 | * Author: Michael Jochum <michael.jochum@omicron.at> |
Richard Cochran | 2b8f011 | 2011-09-28 15:16:41 +0200 | [diff] [blame] | 12 | */ |
| 13 | |
| 14 | #include <linux/kernel.h> |
| 15 | #include <linux/pci.h> |
| 16 | #include <linux/init.h> |
| 17 | #include <linux/delay.h> |
| 18 | #include <linux/irq.h> |
| 19 | #include <asm/mach/pci.h> |
| 20 | #include <asm/irq.h> |
| 21 | #include <mach/hardware.h> |
| 22 | #include <asm/mach-types.h> |
| 23 | |
| 24 | #define MAX_DEV 4 |
| 25 | #define IRQ_LINES 4 |
| 26 | |
| 27 | /* PCI controller GPIO to IRQ pin mappings */ |
| 28 | #define INTA 1 |
| 29 | #define INTB 2 |
| 30 | #define INTC 3 |
| 31 | #define INTD 4 |
| 32 | |
| 33 | |
| 34 | void __init miccpt_pci_preinit(void) |
| 35 | { |
| 36 | irq_set_irq_type(IXP4XX_GPIO_IRQ(INTA), IRQ_TYPE_LEVEL_LOW); |
| 37 | irq_set_irq_type(IXP4XX_GPIO_IRQ(INTB), IRQ_TYPE_LEVEL_LOW); |
| 38 | irq_set_irq_type(IXP4XX_GPIO_IRQ(INTC), IRQ_TYPE_LEVEL_LOW); |
| 39 | irq_set_irq_type(IXP4XX_GPIO_IRQ(INTD), IRQ_TYPE_LEVEL_LOW); |
| 40 | ixp4xx_pci_preinit(); |
| 41 | } |
| 42 | |
| 43 | static int __init miccpt_map_irq(const struct pci_dev *dev, u8 slot, u8 pin) |
| 44 | { |
| 45 | static int pci_irq_table[IRQ_LINES] = { |
| 46 | IXP4XX_GPIO_IRQ(INTA), |
| 47 | IXP4XX_GPIO_IRQ(INTB), |
| 48 | IXP4XX_GPIO_IRQ(INTC), |
| 49 | IXP4XX_GPIO_IRQ(INTD) |
| 50 | }; |
| 51 | |
| 52 | if (slot >= 1 && slot <= MAX_DEV && pin >= 1 && pin <= IRQ_LINES) |
| 53 | return pci_irq_table[(slot + pin - 2) % 4]; |
| 54 | |
| 55 | return -1; |
| 56 | } |
| 57 | |
| 58 | struct hw_pci miccpt_pci __initdata = { |
| 59 | .nr_controllers = 1, |
Russell King | c23bfc3 | 2012-03-10 12:49:16 +0000 | [diff] [blame] | 60 | .ops = &ixp4xx_ops, |
Richard Cochran | 2b8f011 | 2011-09-28 15:16:41 +0200 | [diff] [blame] | 61 | .preinit = miccpt_pci_preinit, |
Richard Cochran | 2b8f011 | 2011-09-28 15:16:41 +0200 | [diff] [blame] | 62 | .setup = ixp4xx_setup, |
Richard Cochran | 2b8f011 | 2011-09-28 15:16:41 +0200 | [diff] [blame] | 63 | .map_irq = miccpt_map_irq, |
| 64 | }; |
| 65 | |
| 66 | int __init miccpt_pci_init(void) |
| 67 | { |
| 68 | if (machine_is_miccpt()) |
| 69 | pci_common_init(&miccpt_pci); |
| 70 | return 0; |
| 71 | } |
| 72 | |
| 73 | subsys_initcall(miccpt_pci_init); |