xilinx_pci.c 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  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/of_address.h>
  19. #include <linux/pci.h>
  20. #include <linux/io.h>
  21. #define XPLB_PCI_ADDR 0x10c
  22. #define XPLB_PCI_DATA 0x110
  23. #define XPLB_PCI_BUS 0x114
  24. #define PCI_HOST_ENABLE_CMD (PCI_COMMAND_SERR | PCI_COMMAND_PARITY | \
  25. PCI_COMMAND_MASTER | PCI_COMMAND_MEMORY)
  26. static 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. #ifdef DEBUG
  57. /**
  58. * xilinx_pci_exclude_device - Don't do config access for non-root bus
  59. *
  60. * This is a hack. Config access to any bus other than bus 0 does not
  61. * currently work on the ML510 so we prevent it here.
  62. */
  63. static int
  64. xilinx_pci_exclude_device(struct pci_controller *hose, u_char bus, u8 devfn)
  65. {
  66. return (bus != 0);
  67. }
  68. /**
  69. * xilinx_early_pci_scan - List pci config space for available devices
  70. *
  71. * List pci devices in very early phase.
  72. */
  73. static void __init xilinx_early_pci_scan(struct pci_controller *hose)
  74. {
  75. u32 bus = 0;
  76. u32 val, dev, func, offset;
  77. /* Currently we have only 2 device connected - up-to 32 devices */
  78. for (dev = 0; dev < 2; dev++) {
  79. /* List only first function number - up-to 8 functions */
  80. for (func = 0; func < 1; func++) {
  81. pr_info("%02x:%02x:%02x", bus, dev, func);
  82. /* read the first 64 standardized bytes */
  83. /* Up-to 192 bytes can be list of capabilities */
  84. for (offset = 0; offset < 64; offset += 4) {
  85. early_read_config_dword(hose, bus,
  86. PCI_DEVFN(dev, func), offset, &val);
  87. if (offset == 0 && val == 0xFFFFFFFF) {
  88. pr_cont("\nABSENT");
  89. break;
  90. }
  91. if (!(offset % 0x10))
  92. pr_cont("\n%04x: ", offset);
  93. pr_cont("%08x ", val);
  94. }
  95. pr_info("\n");
  96. }
  97. }
  98. }
  99. #else
  100. static void __init xilinx_early_pci_scan(struct pci_controller *hose)
  101. {
  102. }
  103. #endif
  104. /**
  105. * xilinx_pci_init - Find and register a Xilinx PCI host bridge
  106. */
  107. void __init xilinx_pci_init(void)
  108. {
  109. struct pci_controller *hose;
  110. struct resource r;
  111. void __iomem *pci_reg;
  112. struct device_node *pci_node;
  113. pci_node = of_find_matching_node(NULL, xilinx_pci_match);
  114. if (!pci_node)
  115. return;
  116. if (of_address_to_resource(pci_node, 0, &r)) {
  117. pr_err("xilinx-pci: cannot resolve base address\n");
  118. return;
  119. }
  120. hose = pcibios_alloc_controller(pci_node);
  121. if (!hose) {
  122. pr_err("xilinx-pci: pcibios_alloc_controller() failed\n");
  123. return;
  124. }
  125. /* Setup config space */
  126. setup_indirect_pci(hose, r.start + XPLB_PCI_ADDR,
  127. r.start + XPLB_PCI_DATA,
  128. INDIRECT_TYPE_SET_CFG_TYPE);
  129. /* According to the xilinx plbv46_pci documentation the soft-core starts
  130. * a self-init when the bus master enable bit is set. Without this bit
  131. * set the pci bus can't be scanned.
  132. */
  133. early_write_config_word(hose, 0, 0, PCI_COMMAND, PCI_HOST_ENABLE_CMD);
  134. /* Set the max latency timer to 255 */
  135. early_write_config_byte(hose, 0, 0, PCI_LATENCY_TIMER, 0xff);
  136. /* Set the max bus number to 255, and bus/subbus no's to 0 */
  137. pci_reg = of_iomap(pci_node, 0);
  138. out_be32(pci_reg + XPLB_PCI_BUS, 0x000000ff);
  139. iounmap(pci_reg);
  140. /* Register the host bridge with the linux kernel! */
  141. pci_process_bridge_OF_ranges(hose, pci_node,
  142. INDIRECT_TYPE_SET_CFG_TYPE);
  143. pr_info("xilinx-pci: Registered PCI host bridge\n");
  144. xilinx_early_pci_scan(hose);
  145. }