pci-sh7751.c 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. /*
  2. * Low-Level PCI Support for the SH7751
  3. *
  4. * Copyright (C) 2003 - 2009 Paul Mundt
  5. * Copyright (C) 2001 Dustin McIntire
  6. *
  7. * With cleanup by Paul van Gool <pvangool@mimotech.com>, 2003.
  8. *
  9. * This file is subject to the terms and conditions of the GNU General Public
  10. * License. See the file "COPYING" in the main directory of this archive
  11. * for more details.
  12. */
  13. #include <linux/init.h>
  14. #include <linux/pci.h>
  15. #include <linux/types.h>
  16. #include <linux/errno.h>
  17. #include <linux/io.h>
  18. #include "pci-sh4.h"
  19. #include <asm/addrspace.h>
  20. static int __init __area_sdram_check(struct pci_channel *chan,
  21. unsigned int area)
  22. {
  23. unsigned long word;
  24. word = __raw_readl(SH7751_BCR1);
  25. /* check BCR for SDRAM in area */
  26. if (((word >> area) & 1) == 0) {
  27. printk("PCI: Area %d is not configured for SDRAM. BCR1=0x%lx\n",
  28. area, word);
  29. return 0;
  30. }
  31. pci_write_reg(chan, word, SH4_PCIBCR1);
  32. word = __raw_readw(SH7751_BCR2);
  33. /* check BCR2 for 32bit SDRAM interface*/
  34. if (((word >> (area << 1)) & 0x3) != 0x3) {
  35. printk("PCI: Area %d is not 32 bit SDRAM. BCR2=0x%lx\n",
  36. area, word);
  37. return 0;
  38. }
  39. pci_write_reg(chan, word, SH4_PCIBCR2);
  40. return 1;
  41. }
  42. static struct resource sh7751_io_resource = {
  43. .name = "SH7751_IO",
  44. .start = SH7751_PCI_IO_BASE,
  45. .end = SH7751_PCI_IO_BASE + SH7751_PCI_IO_SIZE - 1,
  46. .flags = IORESOURCE_IO
  47. };
  48. static struct resource sh7751_mem_resource = {
  49. .name = "SH7751_mem",
  50. .start = SH7751_PCI_MEMORY_BASE,
  51. .end = SH7751_PCI_MEMORY_BASE + SH7751_PCI_MEM_SIZE - 1,
  52. .flags = IORESOURCE_MEM
  53. };
  54. static struct pci_channel sh7751_pci_controller = {
  55. .pci_ops = &sh4_pci_ops,
  56. .mem_resource = &sh7751_mem_resource,
  57. .mem_offset = 0x00000000,
  58. .io_resource = &sh7751_io_resource,
  59. .io_offset = 0x00000000,
  60. .io_map_base = SH7751_PCI_IO_BASE,
  61. };
  62. static struct sh4_pci_address_map sh7751_pci_map = {
  63. .window0 = {
  64. .base = SH7751_CS3_BASE_ADDR,
  65. .size = 0x04000000,
  66. },
  67. };
  68. static int __init sh7751_pci_init(void)
  69. {
  70. struct pci_channel *chan = &sh7751_pci_controller;
  71. unsigned int id;
  72. u32 word, reg;
  73. int ret;
  74. printk(KERN_NOTICE "PCI: Starting intialization.\n");
  75. chan->reg_base = 0xfe200000;
  76. /* check for SH7751/SH7751R hardware */
  77. id = pci_read_reg(chan, SH7751_PCICONF0);
  78. if (id != ((SH7751_DEVICE_ID << 16) | SH7751_VENDOR_ID) &&
  79. id != ((SH7751R_DEVICE_ID << 16) | SH7751_VENDOR_ID)) {
  80. pr_debug("PCI: This is not an SH7751(R) (%x)\n", id);
  81. return -ENODEV;
  82. }
  83. if ((ret = sh4_pci_check_direct(chan)) != 0)
  84. return ret;
  85. /* Set the BCR's to enable PCI access */
  86. reg = ctrl_inl(SH7751_BCR1);
  87. reg |= 0x80000;
  88. ctrl_outl(reg, SH7751_BCR1);
  89. /* Turn the clocks back on (not done in reset)*/
  90. pci_write_reg(chan, 0, SH4_PCICLKR);
  91. /* Clear Powerdown IRQ's (not done in reset) */
  92. word = SH4_PCIPINT_D3 | SH4_PCIPINT_D0;
  93. pci_write_reg(chan, word, SH4_PCIPINT);
  94. /* set the command/status bits to:
  95. * Wait Cycle Control + Parity Enable + Bus Master +
  96. * Mem space enable
  97. */
  98. word = SH7751_PCICONF1_WCC | SH7751_PCICONF1_PER |
  99. SH7751_PCICONF1_BUM | SH7751_PCICONF1_MES;
  100. pci_write_reg(chan, word, SH7751_PCICONF1);
  101. /* define this host as the host bridge */
  102. word = PCI_BASE_CLASS_BRIDGE << 24;
  103. pci_write_reg(chan, word, SH7751_PCICONF2);
  104. /* Set IO and Mem windows to local address
  105. * Make PCI and local address the same for easy 1 to 1 mapping
  106. */
  107. word = sh7751_pci_map.window0.size - 1;
  108. pci_write_reg(chan, word, SH4_PCILSR0);
  109. /* Set the values on window 0 PCI config registers */
  110. word = P2SEGADDR(sh7751_pci_map.window0.base);
  111. pci_write_reg(chan, word, SH4_PCILAR0);
  112. pci_write_reg(chan, word, SH7751_PCICONF5);
  113. /* Set the local 16MB PCI memory space window to
  114. * the lowest PCI mapped address
  115. */
  116. word = chan->mem_resource->start & SH4_PCIMBR_MASK;
  117. pr_debug("PCI: Setting upper bits of Memory window to 0x%x\n", word);
  118. pci_write_reg(chan, word , SH4_PCIMBR);
  119. /* Make sure the MSB's of IO window are set to access PCI space
  120. * correctly */
  121. word = chan->io_resource->start & SH4_PCIIOBR_MASK;
  122. pr_debug("PCI: Setting upper bits of IO window to 0x%x\n", word);
  123. pci_write_reg(chan, word, SH4_PCIIOBR);
  124. /* Set PCI WCRx, BCRx's, copy from BSC locations */
  125. /* check BCR for SDRAM in specified area */
  126. switch (sh7751_pci_map.window0.base) {
  127. case SH7751_CS0_BASE_ADDR: word = __area_sdram_check(chan, 0); break;
  128. case SH7751_CS1_BASE_ADDR: word = __area_sdram_check(chan, 1); break;
  129. case SH7751_CS2_BASE_ADDR: word = __area_sdram_check(chan, 2); break;
  130. case SH7751_CS3_BASE_ADDR: word = __area_sdram_check(chan, 3); break;
  131. case SH7751_CS4_BASE_ADDR: word = __area_sdram_check(chan, 4); break;
  132. case SH7751_CS5_BASE_ADDR: word = __area_sdram_check(chan, 5); break;
  133. case SH7751_CS6_BASE_ADDR: word = __area_sdram_check(chan, 6); break;
  134. }
  135. if (!word)
  136. return -1;
  137. /* configure the wait control registers */
  138. word = ctrl_inl(SH7751_WCR1);
  139. pci_write_reg(chan, word, SH4_PCIWCR1);
  140. word = ctrl_inl(SH7751_WCR2);
  141. pci_write_reg(chan, word, SH4_PCIWCR2);
  142. word = ctrl_inl(SH7751_WCR3);
  143. pci_write_reg(chan, word, SH4_PCIWCR3);
  144. word = ctrl_inl(SH7751_MCR);
  145. pci_write_reg(chan, word, SH4_PCIMCR);
  146. /* NOTE: I'm ignoring the PCI error IRQs for now..
  147. * TODO: add support for the internal error interrupts and
  148. * DMA interrupts...
  149. */
  150. pci_fixup_pcic(chan);
  151. /* SH7751 init done, set central function init complete */
  152. /* use round robin mode to stop a device starving/overruning */
  153. word = SH4_PCICR_PREFIX | SH4_PCICR_CFIN | SH4_PCICR_ARBM;
  154. pci_write_reg(chan, word, SH4_PCICR);
  155. register_pci_controller(chan);
  156. return 0;
  157. }
  158. arch_initcall(sh7751_pci_init);