pci-sh7751.c 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. /*
  2. * Low-Level PCI Support for the SH7751
  3. *
  4. * Dustin McIntire (dustin@sensoria.com)
  5. * Derived from arch/i386/kernel/pci-*.c which bore the message:
  6. * (c) 1999--2000 Martin Mares <mj@ucw.cz>
  7. *
  8. * Ported to the new API by Paul Mundt <lethal@linux-sh.org>
  9. * With cleanup by Paul van Gool <pvangool@mimotech.com>
  10. *
  11. * May be copied or modified under the terms of the GNU General Public
  12. * License. See linux/COPYING for more information.
  13. *
  14. */
  15. #undef DEBUG
  16. #include <linux/init.h>
  17. #include <linux/pci.h>
  18. #include <linux/types.h>
  19. #include <linux/errno.h>
  20. #include <linux/delay.h>
  21. #include "pci-sh4.h"
  22. #include <asm/addrspace.h>
  23. #include <asm/io.h>
  24. /*
  25. * Initialization. Try all known PCI access methods. Note that we support
  26. * using both PCI BIOS and direct access: in such cases, we use I/O ports
  27. * to access config space.
  28. *
  29. * Note that the platform specific initialization (BSC registers, and memory
  30. * space mapping) will be called via the platform defined function
  31. * pcibios_init_platform().
  32. */
  33. int __init sh7751_pci_init(struct pci_channel *chan)
  34. {
  35. unsigned int id;
  36. int ret;
  37. pr_debug("PCI: Starting intialization.\n");
  38. chan->reg_base = 0xfe200000;
  39. /* check for SH7751/SH7751R hardware */
  40. id = pci_read_reg(chan, SH7751_PCICONF0);
  41. if (id != ((SH7751_DEVICE_ID << 16) | SH7751_VENDOR_ID) &&
  42. id != ((SH7751R_DEVICE_ID << 16) | SH7751_VENDOR_ID)) {
  43. pr_debug("PCI: This is not an SH7751(R) (%x)\n", id);
  44. return -ENODEV;
  45. }
  46. if ((ret = sh4_pci_check_direct(chan)) != 0)
  47. return ret;
  48. return pcibios_init_platform();
  49. }
  50. static int __init __area_sdram_check(struct pci_channel *chan,
  51. unsigned int area)
  52. {
  53. u32 word;
  54. word = ctrl_inl(SH7751_BCR1);
  55. /* check BCR for SDRAM in area */
  56. if (((word >> area) & 1) == 0) {
  57. printk("PCI: Area %d is not configured for SDRAM. BCR1=0x%x\n",
  58. area, word);
  59. return 0;
  60. }
  61. pci_write_reg(chan, word, SH4_PCIBCR1);
  62. word = (u16)ctrl_inw(SH7751_BCR2);
  63. /* check BCR2 for 32bit SDRAM interface*/
  64. if (((word >> (area << 1)) & 0x3) != 0x3) {
  65. printk("PCI: Area %d is not 32 bit SDRAM. BCR2=0x%x\n",
  66. area, word);
  67. return 0;
  68. }
  69. pci_write_reg(chan, word, SH4_PCIBCR2);
  70. return 1;
  71. }
  72. int __init sh7751_pcic_init(struct pci_channel *chan,
  73. struct sh4_pci_address_map *map)
  74. {
  75. u32 reg;
  76. u32 word;
  77. /* Set the BCR's to enable PCI access */
  78. reg = ctrl_inl(SH7751_BCR1);
  79. reg |= 0x80000;
  80. ctrl_outl(reg, SH7751_BCR1);
  81. /* Turn the clocks back on (not done in reset)*/
  82. pci_write_reg(chan, 0, SH4_PCICLKR);
  83. /* Clear Powerdown IRQ's (not done in reset) */
  84. word = SH4_PCIPINT_D3 | SH4_PCIPINT_D0;
  85. pci_write_reg(chan, word, SH4_PCIPINT);
  86. /*
  87. * This code is unused for some boards as it is done in the
  88. * bootloader and doing it here means the MAC addresses loaded
  89. * by the bootloader get lost.
  90. */
  91. if (!(map->flags & SH4_PCIC_NO_RESET)) {
  92. /* toggle PCI reset pin */
  93. word = SH4_PCICR_PREFIX | SH4_PCICR_PRST;
  94. pci_write_reg(chan, word, SH4_PCICR);
  95. /* Wait for a long time... not 1 sec. but long enough */
  96. mdelay(100);
  97. word = SH4_PCICR_PREFIX;
  98. pci_write_reg(chan, word, SH4_PCICR);
  99. }
  100. /* set the command/status bits to:
  101. * Wait Cycle Control + Parity Enable + Bus Master +
  102. * Mem space enable
  103. */
  104. word = SH7751_PCICONF1_WCC | SH7751_PCICONF1_PER |
  105. SH7751_PCICONF1_BUM | SH7751_PCICONF1_MES;
  106. pci_write_reg(chan, word, SH7751_PCICONF1);
  107. /* define this host as the host bridge */
  108. word = PCI_BASE_CLASS_BRIDGE << 24;
  109. pci_write_reg(chan, word, SH7751_PCICONF2);
  110. /* Set IO and Mem windows to local address
  111. * Make PCI and local address the same for easy 1 to 1 mapping
  112. * Window0 = map->window0.size @ non-cached area base = SDRAM
  113. * Window1 = map->window1.size @ cached area base = SDRAM
  114. */
  115. word = map->window0.size - 1;
  116. pci_write_reg(chan, word, SH4_PCILSR0);
  117. word = map->window1.size - 1;
  118. pci_write_reg(chan, word, SH4_PCILSR1);
  119. /* Set the values on window 0 PCI config registers */
  120. word = P2SEGADDR(map->window0.base);
  121. pci_write_reg(chan, word, SH4_PCILAR0);
  122. pci_write_reg(chan, word, SH7751_PCICONF5);
  123. /* Set the values on window 1 PCI config registers */
  124. word = PHYSADDR(map->window1.base);
  125. pci_write_reg(chan, word, SH4_PCILAR1);
  126. pci_write_reg(chan, word, SH7751_PCICONF6);
  127. /* Set the local 16MB PCI memory space window to
  128. * the lowest PCI mapped address
  129. */
  130. word = chan->mem_resource->start & SH4_PCIMBR_MASK;
  131. pr_debug("PCI: Setting upper bits of Memory window to 0x%x\n", word);
  132. pci_write_reg(chan, word , SH4_PCIMBR);
  133. /* Map IO space into PCI IO window:
  134. * IO addresses will be translated to the PCI IO window base address
  135. */
  136. pr_debug("PCI: Mapping IO address 0x%x - 0x%x to base 0x%x\n",
  137. chan->io_resource->start, chan->io_resource->end,
  138. SH7751_PCI_IO_BASE + chan->io_resource->start);
  139. /* Make sure the MSB's of IO window are set to access PCI space
  140. * correctly */
  141. word = chan->io_resource->start & SH4_PCIIOBR_MASK;
  142. pr_debug("PCI: Setting upper bits of IO window to 0x%x\n", word);
  143. pci_write_reg(chan, word, SH4_PCIIOBR);
  144. /* Set PCI WCRx, BCRx's, copy from BSC locations */
  145. /* check BCR for SDRAM in specified area */
  146. switch (map->window0.base) {
  147. case SH7751_CS0_BASE_ADDR: word = __area_sdram_check(chan, 0); break;
  148. case SH7751_CS1_BASE_ADDR: word = __area_sdram_check(chan, 1); break;
  149. case SH7751_CS2_BASE_ADDR: word = __area_sdram_check(chan, 2); break;
  150. case SH7751_CS3_BASE_ADDR: word = __area_sdram_check(chan, 3); break;
  151. case SH7751_CS4_BASE_ADDR: word = __area_sdram_check(chan, 4); break;
  152. case SH7751_CS5_BASE_ADDR: word = __area_sdram_check(chan, 5); break;
  153. case SH7751_CS6_BASE_ADDR: word = __area_sdram_check(chan, 6); break;
  154. }
  155. if (!word)
  156. return -1;
  157. /* configure the wait control registers */
  158. word = ctrl_inl(SH7751_WCR1);
  159. pci_write_reg(chan, word, SH4_PCIWCR1);
  160. word = ctrl_inl(SH7751_WCR2);
  161. pci_write_reg(chan, word, SH4_PCIWCR2);
  162. word = ctrl_inl(SH7751_WCR3);
  163. pci_write_reg(chan, word, SH4_PCIWCR3);
  164. word = ctrl_inl(SH7751_MCR);
  165. pci_write_reg(chan, word, SH4_PCIMCR);
  166. /* NOTE: I'm ignoring the PCI error IRQs for now..
  167. * TODO: add support for the internal error interrupts and
  168. * DMA interrupts...
  169. */
  170. pci_fixup_pcic(chan);
  171. /* SH7751 init done, set central function init complete */
  172. /* use round robin mode to stop a device starving/overruning */
  173. word = SH4_PCICR_PREFIX | SH4_PCICR_CFIN | SH4_PCICR_ARBM;
  174. pci_write_reg(chan, word, SH4_PCICR);
  175. return 0;
  176. }