pci-bigsur.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:5k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * linux/arch/sh/kernel/pci-bigsur.c
  3.  *
  4.  * By Dustin McIntire (dustin@sensoria.com) (c)2001
  5.  * May be copied or modified under the terms of the GNU General Public
  6.  * License.  See linux/COPYING for more information.
  7.  *
  8.  * PCI initialization for the Hitachi Big Sur Evaluation Board
  9.  */
  10. #include <linux/config.h>
  11. #include <linux/kernel.h>
  12. #include <linux/types.h>
  13. #include <linux/init.h>
  14. #include <linux/delay.h>
  15. #include <linux/pci.h>
  16. #include <asm/io.h>
  17. #include <asm/pci-sh7751.h>
  18. #include <asm/bigsur.h>
  19. #define PCI_REG(reg)        (SH7751_PCIREG_BASE+reg)
  20. /*
  21.  * Initialize the Big Sur PCI interface 
  22.  * Setup hardware to be Central Funtion
  23.  * Copy the BSR regs to the PCI interface
  24.  * Setup PCI windows into local RAM
  25.  */
  26. int __init pcibios_init_platform(void) {
  27. u32 reg;
  28. u32 word;
  29. PCIDBG(1,"PCI: bigsur_pci_init calledn");
  30. /* Set the BCR's to enable PCI access */
  31. reg = inl(SH7751_BCR1);
  32. reg |= 0x80000;
  33. outl(reg, SH7751_BCR1);
  34. /* Setup the host hardware */
  35. if(inl(PCI_REG(SH7751_PCICONF0)) !=
  36.    (u32)((SH7751_DEVICE_ID <<16) | (SH7751_VENDOR_ID))) {
  37.    printk("PCI: Unkown PCI host bridge.n");
  38.    return 0;
  39. }  
  40. printk("PCI: SH7751 PCI host bridge found.n");
  41. /* Turn the clocks back on (not done in reset)*/
  42. outl(0, PCI_REG(SH7751_PCICLKR));
  43. /* Clear Powerdown IRQ's (not done in reset) */
  44. word = SH7751_PCIPINT_D3 | SH7751_PCIPINT_D0;
  45. outl(word, PCI_REG(SH7751_PCICLKR));
  46. /* toggle PCI reset pin */
  47. word = SH7751_PCICR_PREFIX | SH7751_PCICR_PRST;
  48. outl(word,PCI_REG(SH7751_PCICR));    
  49. /* Wait for a long time... not 1 sec. but long enough */
  50. mdelay(100);
  51. word = SH7751_PCICR_PREFIX;
  52. outl(word,PCI_REG(SH7751_PCICR)); 
  53.     /* set the command/status bits to:
  54.      * Wait Cycle Control + Parity Enable + Bus Master +
  55.      * Mem space enable
  56.      */
  57.     word = SH7751_PCICONF1_WCC | SH7751_PCICONF1_PER | 
  58.            SH7751_PCICONF1_BUM | SH7751_PCICONF1_MES;
  59. outl(word, PCI_REG(SH7751_PCICONF1));
  60. /* define this host as the host bridge */
  61. word = SH7751_PCI_HOST_BRIDGE << 24;
  62. outl(word, PCI_REG(SH7751_PCICONF2));
  63. /* Set IO and Mem windows to local address 
  64.  * Make PCI and local address the same for easy 1 to 1 mapping 
  65.  * Window0 = BIGSUR_LSR0_SIZE @ non-cached CS3 base = SDRAM
  66.  * Window1 = BIGSUR_LSR1_SIZE @ cached CS3 base = SDRAM 
  67.  */
  68. word = BIGSUR_LSR0_SIZE - 1;
  69. outl(word, PCI_REG(SH7751_PCILSR0));
  70. word = BIGSUR_LSR1_SIZE - 1;
  71. outl(word, PCI_REG(SH7751_PCILSR1));
  72. /* Set the values on window 0 PCI config registers */
  73. word = P2SEGADDR(SH7751_CS3_BASE_ADDR);
  74. outl(word, PCI_REG(SH7751_PCILAR0));
  75. outl(word, PCI_REG(SH7751_PCICONF5));
  76. /* Set the values on window 1 PCI config registers */
  77. word =  PHYSADDR(SH7751_CS3_BASE_ADDR);
  78. outl(word, PCI_REG(SH7751_PCILAR1));
  79. outl(word, PCI_REG(SH7751_PCICONF6));
  80. /* Set the local 16MB PCI memory space window to 
  81.  * the lowest PCI mapped address
  82.  */
  83. word = PCIBIOS_MIN_MEM & SH7751_PCIMBR_MASK;
  84. PCIDBG(2,"PCI: Setting upper bits of Memory window to 0x%xn", word);
  85. outl(word , PCI_REG(SH7751_PCIMBR));
  86. /* Map IO space into PCI IO window
  87.  * The IO window is 64K-PCIBIOS_MIN_IO in size
  88.  * IO addresses will be translated to the 
  89.  * PCI IO window base address
  90.  */
  91. PCIDBG(3,"PCI: Mapping IO address 0x%x - 0x%x to base 0x%xn", PCIBIOS_MIN_IO,
  92.     (64*1024), SH7751_PCI_IO_BASE+PCIBIOS_MIN_IO);
  93. bigsur_port_map(PCIBIOS_MIN_IO, (64*1024), SH7751_PCI_IO_BASE+PCIBIOS_MIN_IO,0);
  94.     
  95. /* Make sure the MSB's of IO window are set to access PCI space correctly */
  96. word = PCIBIOS_MIN_IO & SH7751_PCIIOBR_MASK;
  97. PCIDBG(2,"PCI: Setting upper bits of IO window to 0x%xn", word);
  98. outl(word, PCI_REG(SH7751_PCIIOBR));
  99. /* Set PCI WCRx, BCRx's, copy from BSC locations */
  100. word = inl(SH7751_BCR1);
  101. /* check BCR for SDRAM in area 3 */
  102. if(((word >> 3) & 1) == 0) {
  103. printk("PCI: Area 3 is not configured for SDRAM. BCR1=0x%xn", word);
  104. return 0;
  105. }
  106. outl(word, PCI_REG(SH7751_PCIBCR1));
  107. word = (u16)inw(SH7751_BCR2);
  108. /* check BCR2 for 32bit SDRAM interface*/
  109. if(((word >> 6) & 0x3) != 0x3) {
  110. printk("PCI: Area 3 is not 32 bit SDRAM. BCR2=0x%xn", word);
  111. return 0;
  112. }
  113. outl(word, PCI_REG(SH7751_PCIBCR2));
  114. /* configure the wait control registers */
  115. word = inl(SH7751_WCR1);
  116. outl(word, PCI_REG(SH7751_PCIWCR1));
  117. word = inl(SH7751_WCR2);
  118. outl(word, PCI_REG(SH7751_PCIWCR2));
  119. word = inl(SH7751_WCR3);
  120. outl(word, PCI_REG(SH7751_PCIWCR3));
  121. word = inl(SH7751_MCR);
  122. outl(word, PCI_REG(SH7751_PCIMCR));
  123. /* NOTE: I'm ignoring the PCI error IRQs for now..
  124.  * TODO: add support for the internal error interrupts and
  125.  * DMA interrupts...
  126.  */
  127.  
  128. /* SH7751 init done, set central function init complete */
  129. word = SH7751_PCICR_PREFIX | SH7751_PCICR_CFIN;
  130. outl(word,PCI_REG(SH7751_PCICR)); 
  131. PCIDBG(2,"PCI: bigsur_pci_init finishedn");
  132. return 1;
  133. }
  134. int pcibios_map_platform_irq(u8 slot, u8 pin)
  135. {
  136.     /* The Big Sur can be used in a CPCI chassis, but the SH7751 PCI interface is on the
  137.      * wrong end of the board so that it can also support a V320 CPI interface chip...
  138.      * Therefor the IRQ mapping is somewhat use dependent... I'l assume a linear map for
  139.      * now, i.e. INTA=slot0,pin0... INTD=slot3,pin0...
  140.      */ 
  141.     int irq = (slot + pin-1)%4 + BIGSUR_SH7751_PCI_IRQ_BASE;
  142.     PCIDBG(2,"PCI: Mapping Big Sur IRQ for slot %d, pin %c to irq %dn", slot, pin-1+'A', irq);
  143.     return irq;
  144.      
  145. }