xilinx_pci.c 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. /*
  2. * PCI support for Xilinx plbv46_pci soft-core which can be used on
  3. * Xilinx Virtex ML410 / ML510 boards.
  4. *
  5. * Copyright 2009 Roderick Colenbrander
  6. * Copyright 2009 Secret Lab Technologies Ltd.
  7. *
  8. * The pci bridge fixup code was copied from ppc4xx_pci.c and was written
  9. * by Benjamin Herrenschmidt.
  10. * Copyright 2007 Ben. Herrenschmidt <benh@kernel.crashing.org>, IBM Corp.
  11. *
  12. * This file is licensed under the terms of the GNU General Public License
  13. * version 2. This program is licensed "as is" without any warranty of any
  14. * kind, whether express or implied.
  15. */
  16. #include <linux/ioport.h>
  17. #include <linux/of.h>
  18. #include <linux/pci.h>
  19. #include <mm/mmu_decl.h>
  20. #include <asm/io.h>
  21. #include <asm/xilinx_pci.h>
  22. #define XPLB_PCI_ADDR 0x10c
  23. #define XPLB_PCI_DATA 0x110
  24. #define XPLB_PCI_BUS 0x114
  25. #define PCI_HOST_ENABLE_CMD PCI_COMMAND_SERR | PCI_COMMAND_PARITY | PCI_COMMAND_MASTER | PCI_COMMAND_MEMORY
  26. static const struct of_device_id xilinx_pci_match[] = {
  27. { .compatible = "xlnx,plbv46-pci-1.03.a", },
  28. {}
  29. };
  30. /**
  31. * xilinx_pci_fixup_bridge - Block Xilinx PHB configuration.
  32. */
  33. static void xilinx_pci_fixup_bridge(struct pci_dev *dev)
  34. {
  35. struct pci_controller *hose;
  36. int i;
  37. if (dev->devfn || dev->bus->self)
  38. return;
  39. hose = pci_bus_to_host(dev->bus);
  40. if (!hose)
  41. return;
  42. if (!of_match_node(xilinx_pci_match, hose->dn))
  43. return;
  44. /* Hide the PCI host BARs from the kernel as their content doesn't
  45. * fit well in the resource management
  46. */
  47. for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
  48. dev->resource[i].start = 0;
  49. dev->resource[i].end = 0;
  50. dev->resource[i].flags = 0;
  51. }
  52. dev_info(&dev->dev, "Hiding Xilinx plb-pci host bridge resources %s\n",
  53. pci_name(dev));
  54. }
  55. DECLARE_PCI_FIXUP_HEADER(PCI_ANY_ID, PCI_ANY_ID, xilinx_pci_fixup_bridge);
  56. /**
  57. * xilinx_pci_exclude_device - Don't do config access for non-root bus
  58. *
  59. * This is a hack. Config access to any bus other than bus 0 does not
  60. * currently work on the ML510 so we prevent it here.
  61. */
  62. static int
  63. xilinx_pci_exclude_device(struct pci_controller *hose, u_char bus, u8 devfn)
  64. {
  65. return (bus != 0);
  66. }
  67. /**
  68. * xilinx_pci_init - Find and register a Xilinx PCI host bridge
  69. */
  70. void __init xilinx_pci_init(void)
  71. {
  72. struct pci_controller *hose;
  73. struct resource r;
  74. void __iomem *pci_reg;
  75. struct device_node *pci_node;
  76. pci_node = of_find_matching_node(NULL, xilinx_pci_match);
  77. if(!pci_node)
  78. return;
  79. if (of_address_to_resource(pci_node, 0, &r)) {
  80. pr_err("xilinx-pci: cannot resolve base address\n");
  81. return;
  82. }
  83. hose = pcibios_alloc_controller(pci_node);
  84. if (!hose) {
  85. pr_err("xilinx-pci: pcibios_alloc_controller() failed\n");
  86. return;
  87. }
  88. /* Setup config space */
  89. setup_indirect_pci(hose, r.start + XPLB_PCI_ADDR,
  90. r.start + XPLB_PCI_DATA,
  91. PPC_INDIRECT_TYPE_SET_CFG_TYPE);
  92. /* According to the xilinx plbv46_pci documentation the soft-core starts
  93. * a self-init when the bus master enable bit is set. Without this bit
  94. * set the pci bus can't be scanned.
  95. */
  96. early_write_config_word(hose, 0, 0, PCI_COMMAND, PCI_HOST_ENABLE_CMD);
  97. /* Set the max latency timer to 255 */
  98. early_write_config_byte(hose, 0, 0, PCI_LATENCY_TIMER, 0xff);
  99. /* Set the max bus number to 255 */
  100. pci_reg = of_iomap(pci_node, 0);
  101. out_8(pci_reg + XPLB_PCI_BUS, 0xff);
  102. iounmap(pci_reg);
  103. /* Nothing past the root bridge is working right now. By default
  104. * exclude config access to anything except bus 0 */
  105. if (!ppc_md.pci_exclude_device)
  106. ppc_md.pci_exclude_device = xilinx_pci_exclude_device;
  107. /* Register the host bridge with the linux kernel! */
  108. pci_process_bridge_OF_ranges(hose, pci_node, 1);
  109. pr_info("xilinx-pci: Registered PCI host bridge\n");
  110. }