pci.c 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. /*
  2. * Copyright (C) Freescale Semiconductor, Inc. 2007
  3. *
  4. * Author: Scott Wood <scottwood@freescale.com>,
  5. * with some bits from older board-specific PCI initialization.
  6. *
  7. * See file CREDITS for list of people who contributed to this
  8. * project.
  9. *
  10. * This program is free software; you can redistribute it and/or
  11. * modify it under the terms of the GNU General Public License as
  12. * published by the Free Software Foundation; either version 2 of
  13. * the License, or (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU General Public License
  21. * along with this program; if not, write to the Free Software
  22. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  23. * MA 02111-1307 USA
  24. */
  25. #include <common.h>
  26. #include <pci.h>
  27. #include <ft_build.h>
  28. #include <asm/mpc8349_pci.h>
  29. #ifdef CONFIG_83XX_GENERIC_PCI
  30. #define MAX_BUSES 2
  31. DECLARE_GLOBAL_DATA_PTR;
  32. static struct pci_controller pci_hose[MAX_BUSES];
  33. static int pci_num_buses;
  34. static void pci_init_bus(int bus, struct pci_region *reg)
  35. {
  36. volatile immap_t *immr = (volatile immap_t *)CFG_IMMR;
  37. volatile pot83xx_t *pot = immr->ios.pot;
  38. volatile pcictrl83xx_t *pci_ctrl = &immr->pci_ctrl[bus];
  39. struct pci_controller *hose = &pci_hose[bus];
  40. u32 dev;
  41. u16 reg16;
  42. int i;
  43. if (bus == 1)
  44. pot += 3;
  45. /* Setup outbound translation windows */
  46. for (i = 0; i < 3; i++, reg++, pot++) {
  47. if (reg->size == 0)
  48. break;
  49. hose->regions[i] = *reg;
  50. hose->region_count++;
  51. pot->potar = reg->bus_start >> 12;
  52. pot->pobar = reg->phys_start >> 12;
  53. pot->pocmr = ~(reg->size - 1) >> 12;
  54. if (reg->flags & PCI_REGION_IO)
  55. pot->pocmr |= POCMR_IO;
  56. #ifdef CONFIG_83XX_PCI_STREAMING
  57. else if (reg->flags & PCI_REGION_PREFETCH)
  58. pot->pocmr |= POCMR_SE;
  59. #endif
  60. if (bus == 1)
  61. pot->pocmr |= POCMR_DST;
  62. pot->pocmr |= POCMR_EN;
  63. }
  64. /* Point inbound translation at RAM */
  65. pci_ctrl->pitar1 = 0;
  66. pci_ctrl->pibar1 = 0;
  67. pci_ctrl->piebar1 = 0;
  68. pci_ctrl->piwar1 = PIWAR_EN | PIWAR_PF | PIWAR_RTT_SNOOP |
  69. PIWAR_WTT_SNOOP | (__ilog2(gd->ram_size) - 1);
  70. i = hose->region_count++;
  71. hose->regions[i].bus_start = 0;
  72. hose->regions[i].phys_start = 0;
  73. hose->regions[i].size = gd->ram_size;
  74. hose->regions[i].flags = PCI_REGION_MEM | PCI_REGION_MEMORY;
  75. hose->first_busno = 0;
  76. hose->last_busno = 0xff;
  77. pci_setup_indirect(hose, CFG_IMMR + 0x8300 + bus * 0x80,
  78. CFG_IMMR + 0x8304 + bus * 0x80);
  79. pci_register_hose(hose);
  80. /*
  81. * Write to Command register
  82. */
  83. reg16 = 0xff;
  84. dev = PCI_BDF(hose->first_busno, 0, 0);
  85. pci_hose_read_config_word(hose, dev, PCI_COMMAND, &reg16);
  86. reg16 |= PCI_COMMAND_SERR | PCI_COMMAND_MASTER | PCI_COMMAND_MEMORY;
  87. pci_hose_write_config_word(hose, dev, PCI_COMMAND, reg16);
  88. /*
  89. * Clear non-reserved bits in status register.
  90. */
  91. pci_hose_write_config_word(hose, dev, PCI_STATUS, 0xffff);
  92. pci_hose_write_config_byte(hose, dev, PCI_LATENCY_TIMER, 0x80);
  93. pci_hose_write_config_byte(hose, dev, PCI_CACHE_LINE_SIZE, 0x08);
  94. #ifdef CONFIG_PCI_SCAN_SHOW
  95. printf("PCI: Bus Dev VenId DevId Class Int\n");
  96. #endif
  97. /*
  98. * Hose scan.
  99. */
  100. hose->last_busno = pci_hose_scan(hose);
  101. }
  102. /*
  103. * The caller must have already set OCCR, and the PCI_LAW BARs
  104. * must have been set to cover all of the requested regions.
  105. *
  106. * If fewer than three regions are requested, then the region
  107. * list is terminated with a region of size 0.
  108. */
  109. void mpc83xx_pci_init(int num_buses, struct pci_region **reg, int warmboot)
  110. {
  111. volatile immap_t *immr = (volatile immap_t *)CFG_IMMR;
  112. int i;
  113. if (num_buses > MAX_BUSES) {
  114. printf("%d PCI buses requsted, %d supported\n",
  115. num_buses, MAX_BUSES);
  116. num_buses = MAX_BUSES;
  117. }
  118. pci_num_buses = num_buses;
  119. /*
  120. * Release PCI RST Output signal.
  121. * Power on to RST high must be at least 100 ms as per PCI spec.
  122. * On warm boots only 1 ms is required.
  123. */
  124. udelay(warmboot ? 1000 : 100000);
  125. for (i = 0; i < num_buses; i++)
  126. immr->pci_ctrl[i].gcr = 1;
  127. /*
  128. * RST high to first config access must be at least 2^25 cycles
  129. * as per PCI spec. This could be cut in half if we know we're
  130. * running at 66MHz. This could be insufficiently long if we're
  131. * running the PCI bus at significantly less than 33MHz.
  132. */
  133. udelay(1020000);
  134. for (i = 0; i < num_buses; i++)
  135. pci_init_bus(i, reg[i]);
  136. }
  137. #ifdef CONFIG_OF_FLAT_TREE
  138. void ft_pci_setup(void *blob, bd_t *bd)
  139. {
  140. u32 *p;
  141. int len;
  142. if (pci_num_buses < 1)
  143. return;
  144. p = (u32 *)ft_get_prop(blob, "/" OF_SOC "/pci@8500/bus-range", &len);
  145. if (p) {
  146. p[0] = pci_hose[0].first_busno;
  147. p[1] = pci_hose[0].last_busno;
  148. }
  149. if (pci_num_buses < 2)
  150. return;
  151. p = (u32 *)ft_get_prop(blob, "/" OF_SOC "/pci@8600/bus-range", &len);
  152. if (p) {
  153. p[0] = pci_hose[1].first_busno;
  154. p[1] = pci_hose[1].last_busno;
  155. }
  156. }
  157. #endif /* CONFIG_OF_FLAT_TREE */
  158. #endif /* CONFIG_83XX_GENERIC_PCI */