dsmg600-pci.c 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * DSM-G600 board-level PCI initialization
  4. *
  5. * Copyright (C) 2006 Tower Technologies
  6. * Author: Alessandro Zummo <a.zummo@towertech.it>
  7. *
  8. * based on ixdp425-pci.c:
  9. * Copyright (C) 2002 Intel Corporation.
  10. * Copyright (C) 2003-2004 MontaVista Software, Inc.
  11. *
  12. * Maintainer: http://www.nslu2-linux.org/
  13. */
  14. #include <linux/pci.h>
  15. #include <linux/init.h>
  16. #include <linux/irq.h>
  17. #include <asm/mach/pci.h>
  18. #include <asm/mach-types.h>
  19. #include "irqs.h"
  20. #define MAX_DEV 4
  21. #define IRQ_LINES 3
  22. /* PCI controller GPIO to IRQ pin mappings */
  23. #define INTA 11
  24. #define INTB 10
  25. #define INTC 9
  26. #define INTD 8
  27. #define INTE 7
  28. #define INTF 6
  29. void __init dsmg600_pci_preinit(void)
  30. {
  31. irq_set_irq_type(IXP4XX_GPIO_IRQ(INTA), IRQ_TYPE_LEVEL_LOW);
  32. irq_set_irq_type(IXP4XX_GPIO_IRQ(INTB), IRQ_TYPE_LEVEL_LOW);
  33. irq_set_irq_type(IXP4XX_GPIO_IRQ(INTC), IRQ_TYPE_LEVEL_LOW);
  34. irq_set_irq_type(IXP4XX_GPIO_IRQ(INTD), IRQ_TYPE_LEVEL_LOW);
  35. irq_set_irq_type(IXP4XX_GPIO_IRQ(INTE), IRQ_TYPE_LEVEL_LOW);
  36. irq_set_irq_type(IXP4XX_GPIO_IRQ(INTF), IRQ_TYPE_LEVEL_LOW);
  37. ixp4xx_pci_preinit();
  38. }
  39. static int __init dsmg600_map_irq(const struct pci_dev *dev, u8 slot, u8 pin)
  40. {
  41. static int pci_irq_table[MAX_DEV][IRQ_LINES] = {
  42. { IXP4XX_GPIO_IRQ(INTE), -1, -1 },
  43. { IXP4XX_GPIO_IRQ(INTA), -1, -1 },
  44. { IXP4XX_GPIO_IRQ(INTB), IXP4XX_GPIO_IRQ(INTC),
  45. IXP4XX_GPIO_IRQ(INTD) },
  46. { IXP4XX_GPIO_IRQ(INTF), -1, -1 },
  47. };
  48. if (slot >= 1 && slot <= MAX_DEV && pin >= 1 && pin <= IRQ_LINES)
  49. return pci_irq_table[slot - 1][pin - 1];
  50. return -1;
  51. }
  52. struct hw_pci __initdata dsmg600_pci = {
  53. .nr_controllers = 1,
  54. .ops = &ixp4xx_ops,
  55. .preinit = dsmg600_pci_preinit,
  56. .setup = ixp4xx_setup,
  57. .map_irq = dsmg600_map_irq,
  58. };
  59. int __init dsmg600_pci_init(void)
  60. {
  61. if (machine_is_dsmg600())
  62. pci_common_init(&dsmg600_pci);
  63. return 0;
  64. }
  65. subsys_initcall(dsmg600_pci_init);