pci.c 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. /*
  2. * Copyright (C) 2004-2007 Freescale Semiconductor, Inc.
  3. * TsiChung Liew (Tsi-Chung.Liew@freescale.com)
  4. *
  5. * See file CREDITS for list of people who contributed to this
  6. * project.
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License as
  10. * published by the Free Software Foundation; either version 2 of
  11. * the License, or (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  21. * MA 02111-1307 USA
  22. */
  23. /*
  24. * PCI Configuration space access support
  25. */
  26. #include <common.h>
  27. #include <pci.h>
  28. #include <asm/io.h>
  29. #include <asm/immap.h>
  30. #if defined(CONFIG_PCI)
  31. /* System RAM mapped over PCI */
  32. #define CFG_PCI_SYS_MEM_BUS CFG_SDRAM_BASE
  33. #define CFG_PCI_SYS_MEM_PHYS CFG_SDRAM_BASE
  34. #define CFG_PCI_SYS_MEM_SIZE (1024 * 1024 * 1024)
  35. #define cfg_read(val, addr, type, op) *val = op((type)(addr));
  36. #define cfg_write(val, addr, type, op) op((type *)(addr), (val));
  37. #define PCI_OP(rw, size, type, op, mask) \
  38. int pci_##rw##_cfg_##size(struct pci_controller *hose, \
  39. pci_dev_t dev, int offset, type val) \
  40. { \
  41. u32 addr = 0; \
  42. u16 cfg_type = 0; \
  43. addr = ((offset & 0xfc) | cfg_type | (dev) | 0x80000000); \
  44. out_be32(hose->cfg_addr, addr); \
  45. __asm__ __volatile__("nop"); \
  46. cfg_##rw(val, hose->cfg_data + (offset & mask), type, op); \
  47. out_be32(hose->cfg_addr, addr & 0x7fffffff); \
  48. __asm__ __volatile__("nop"); \
  49. return 0; \
  50. }
  51. PCI_OP(read, byte, u8 *, in_8, 3)
  52. PCI_OP(read, word, u16 *, in_le16, 2)
  53. PCI_OP(write, byte, u8, out_8, 3)
  54. PCI_OP(write, word, u16, out_le16, 2)
  55. PCI_OP(write, dword, u32, out_le32, 0)
  56. int pci_read_cfg_dword(struct pci_controller *hose, pci_dev_t dev,
  57. int offset, u32 * val)
  58. {
  59. u32 addr;
  60. u32 tmpv;
  61. u32 mask = 2; /* word access */
  62. /* Read lower 16 bits */
  63. addr = ((offset & 0xfc) | (dev) | 0x80000000);
  64. out_be32(hose->cfg_addr, addr);
  65. __asm__ __volatile__("nop");
  66. *val = (u32) in_le16((u16 *) (hose->cfg_data + (offset & mask)));
  67. out_be32(hose->cfg_addr, addr & 0x7fffffff);
  68. __asm__ __volatile__("nop");
  69. /* Read upper 16 bits */
  70. offset += 2;
  71. addr = ((offset & 0xfc) | 1 | (dev) | 0x80000000);
  72. out_be32(hose->cfg_addr, addr);
  73. __asm__ __volatile__("nop");
  74. tmpv = (u32) in_le16((u16 *) (hose->cfg_data + (offset & mask)));
  75. out_be32(hose->cfg_addr, addr & 0x7fffffff);
  76. __asm__ __volatile__("nop");
  77. /* combine results into dword value */
  78. *val = (tmpv << 16) | *val;
  79. return 0;
  80. }
  81. void pci_mcf5445x_init(struct pci_controller *hose)
  82. {
  83. volatile pci_t *pci = (volatile pci_t *)MMAP_PCI;
  84. volatile pciarb_t *pciarb = (volatile pciarb_t *)MMAP_PCIARB;
  85. volatile gpio_t *gpio = (gpio_t *) MMAP_GPIO;
  86. u32 barEn = 0;
  87. pciarb->acr = 0x001f001f;
  88. /* Set PCIGNT1, PCIREQ1, PCIREQ0/PCIGNTIN, PCIGNT0/PCIREQOUT,
  89. PCIREQ2, PCIGNT2 */
  90. gpio->par_pci =
  91. GPIO_PAR_PCI_GNT3_GNT3 | GPIO_PAR_PCI_GNT2 | GPIO_PAR_PCI_GNT1 |
  92. GPIO_PAR_PCI_GNT0 | GPIO_PAR_PCI_REQ3_REQ3 | GPIO_PAR_PCI_REQ2 |
  93. GPIO_PAR_PCI_REQ1 | GPIO_PAR_PCI_REQ0;
  94. pci->tcr1 |= PCI_TCR1_P;
  95. /* Initiator windows */
  96. pci->iw0btar = CFG_PCI_MEM_PHYS;
  97. pci->iw1btar = CFG_PCI_IO_PHYS;
  98. pci->iw2btar = CFG_PCI_CFG_PHYS;
  99. pci->iwcr =
  100. PCI_IWCR_W0C_EN | PCI_IWCR_W1C_EN | PCI_IWCR_W1C_IO |
  101. PCI_IWCR_W2C_EN | PCI_IWCR_W2C_IO;
  102. /* Enable bus master and mem access */
  103. pci->scr = PCI_SCR_MW | PCI_SCR_B | PCI_SCR_M;
  104. /* Cache line size and master latency */
  105. pci->cr1 = PCI_CR1_CLS(8) | PCI_CR1_LTMR(0xFF);
  106. pci->cr2 = 0;
  107. #ifdef CFG_PCI_BAR0
  108. pci->bar0 = PCI_BAR_BAR0(CFG_PCI_BAR0);
  109. pci->tbatr0 = CFG_PCI_TBATR0 | PCI_TBATR_EN;
  110. barEn |= PCI_TCR1_B0E;
  111. #endif
  112. #ifdef CFG_PCI_BAR1
  113. pci->bar1 = PCI_BAR_BAR1(CFG_PCI_BAR1);
  114. pci->tbatr1 = CFG_PCI_TBATR1 | PCI_TBATR_EN;
  115. barEn |= PCI_TCR1_B1E;
  116. #endif
  117. #ifdef CFG_PCI_BAR2
  118. pci->bar2 = PCI_BAR_BAR2(CFG_PCI_BAR2);
  119. pci->tbatr2 = CFG_PCI_TBATR2 | PCI_TBATR_EN;
  120. barEn |= PCI_TCR1_B2E;
  121. #endif
  122. #ifdef CFG_PCI_BAR3
  123. pci->bar3 = PCI_BAR_BAR3(CFG_PCI_BAR3);
  124. pci->tbatr3 = CFG_PCI_TBATR3 | PCI_TBATR_EN;
  125. barEn |= PCI_TCR1_B3E;
  126. #endif
  127. #ifdef CFG_PCI_BAR4
  128. pci->bar4 = PCI_BAR_BAR4(CFG_PCI_BAR4);
  129. pci->tbatr4 = CFG_PCI_TBATR4 | PCI_TBATR_EN;
  130. barEn |= PCI_TCR1_B4E;
  131. #endif
  132. #ifdef CFG_PCI_BAR5
  133. pci->bar5 = PCI_BAR_BAR5(CFG_PCI_BAR5);
  134. pci->tbatr5 = CFG_PCI_TBATR5 | PCI_TBATR_EN;
  135. barEn |= PCI_TCR1_B5E;
  136. #endif
  137. pci->tcr2 = barEn;
  138. /* Deassert reset bit */
  139. pci->gscr &= ~PCI_GSCR_PR;
  140. udelay(1000);
  141. /* Enable PCI bus master support */
  142. hose->first_busno = 0;
  143. hose->last_busno = 0xff;
  144. pci_set_region(hose->regions + 0, CFG_PCI_MEM_BUS, CFG_PCI_MEM_PHYS,
  145. CFG_PCI_MEM_SIZE, PCI_REGION_MEM);
  146. pci_set_region(hose->regions + 1, CFG_PCI_IO_BUS, CFG_PCI_IO_PHYS,
  147. CFG_PCI_IO_SIZE, PCI_REGION_IO);
  148. pci_set_region(hose->regions + 2, CFG_PCI_SYS_MEM_BUS,
  149. CFG_PCI_SYS_MEM_PHYS, CFG_PCI_SYS_MEM_SIZE,
  150. PCI_REGION_MEM | PCI_REGION_MEMORY);
  151. hose->region_count = 3;
  152. hose->cfg_addr = &(pci->car);
  153. hose->cfg_data = (volatile unsigned char *)CFG_PCI_CFG_BUS;
  154. pci_set_ops(hose, pci_read_cfg_byte, pci_read_cfg_word,
  155. pci_read_cfg_dword, pci_write_cfg_byte, pci_write_cfg_word,
  156. pci_write_cfg_dword);
  157. /* Hose scan */
  158. pci_register_hose(hose);
  159. hose->last_busno = pci_hose_scan(hose);
  160. }
  161. #endif /* CONFIG_PCI */