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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * FILE NAME
  3.  * arch/mips/vr41xx/common/pciu.c
  4.  *
  5.  * BRIEF MODULE DESCRIPTION
  6.  * PCI Control Unit routines for the NEC VR4100 series.
  7.  *
  8.  * Author: Yoichi Yuasa
  9.  *         yyuasa@mvista.com or source@mvista.com
  10.  *
  11.  * Copyright 2001,2002 MontaVista Software Inc.
  12.  *
  13.  *  This program is free software; you can redistribute it and/or modify it
  14.  *  under the terms of the GNU General Public License as published by the
  15.  *  Free Software Foundation; either version 2 of the License, or (at your
  16.  *  option) any later version.
  17.  *
  18.  *  THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
  19.  *  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  20.  *  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
  21.  *  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
  22.  *  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
  23.  *  BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
  24.  *  OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  25.  *  ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
  26.  *  TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
  27.  *  USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  28.  *
  29.  *  You should have received a copy of the GNU General Public License along
  30.  *  with this program; if not, write to the Free Software Foundation, Inc.,
  31.  *  675 Mass Ave, Cambridge, MA 02139, USA.
  32.  */
  33. /*
  34.  * Changes:
  35.  *  Paul Mundt <lethal@chaoticdreams.org>
  36.  *  - Fix deadlock-causing PCIU access race for VR4131.
  37.  *
  38.  *  MontaVista Software Inc. <yyuasa@mvista.com> or <source@mvista.com>
  39.  *  - New creation, NEC VR4122 and VR4131 are supported.
  40.  */
  41. #include <linux/config.h>
  42. #include <linux/init.h>
  43. #include <linux/pci.h>
  44. #include <linux/types.h>
  45. #include <linux/delay.h>
  46. #include <asm/cpu.h>
  47. #include <asm/io.h>
  48. #include <asm/pci_channel.h>
  49. #include <asm/vr41xx/vr41xx.h>
  50. #include "pciu.h"
  51. extern unsigned long vr41xx_vtclock;
  52. static inline int vr41xx_pci_config_access(struct pci_dev *dev, int where)
  53. {
  54. unsigned char bus = dev->bus->number;
  55. unsigned int dev_fn = dev->devfn;
  56. if (bus == 0) {
  57. /*
  58.  * Type 0 configuration
  59.  */
  60. if (PCI_SLOT(dev_fn) < 11 || PCI_SLOT(dev_fn) > 31 || where > 255)
  61. return -1;
  62. writel((1UL << PCI_SLOT(dev_fn))|
  63.        (PCI_FUNC(dev_fn) << 8) |
  64.        (where & 0xfc),
  65.        PCICONFAREG);
  66. }
  67. else {
  68. /*
  69.  * Type 1 configuration
  70.  */
  71. if (bus > 255 || PCI_SLOT(dev_fn) > 31 || where > 255)
  72. return -1;
  73. writel((bus << 16) |
  74.        (dev_fn << 8) |
  75.        (where & 0xfc) |
  76.        1UL,
  77.        PCICONFAREG);
  78. }
  79. return 0;
  80. }
  81. static int vr41xx_pci_read_config_byte(struct pci_dev *dev, int where, u8 *val)
  82. {
  83. u32 data;
  84. *val = 0xff;
  85. if (vr41xx_pci_config_access(dev, where) < 0)
  86. return PCIBIOS_DEVICE_NOT_FOUND;
  87. data = readl(PCICONFDREG);
  88. *val = (u8)(data >> ((where & 3) << 3));
  89. return PCIBIOS_SUCCESSFUL;
  90. }
  91. static int vr41xx_pci_read_config_word(struct pci_dev *dev, int where, u16 *val)
  92. {
  93. u32 data;
  94. *val = 0xffff;
  95. if (where & 1)
  96. return PCIBIOS_BAD_REGISTER_NUMBER;
  97. if (vr41xx_pci_config_access(dev, where) < 0)
  98. return PCIBIOS_DEVICE_NOT_FOUND;
  99. data = readl(PCICONFDREG);
  100. *val = (u16)(data >> ((where & 2) << 3));
  101. return PCIBIOS_SUCCESSFUL;
  102. }
  103. static int vr41xx_pci_read_config_dword(struct pci_dev *dev, int where, u32 *val)
  104. {
  105. *val = 0xffffffff;
  106. if (where & 3)
  107. return PCIBIOS_BAD_REGISTER_NUMBER;
  108. if (vr41xx_pci_config_access(dev, where) < 0)
  109. return PCIBIOS_DEVICE_NOT_FOUND;
  110. *val = readl(PCICONFDREG);
  111. return PCIBIOS_SUCCESSFUL;
  112. }
  113. static int vr41xx_pci_write_config_byte(struct pci_dev *dev, int where, u8 val)
  114. {
  115. u32 data;
  116. int shift;
  117. if (vr41xx_pci_config_access(dev, where) < 0)
  118. return PCIBIOS_DEVICE_NOT_FOUND;
  119. data = readl(PCICONFDREG);
  120. shift = (where & 3) << 3;
  121. data &= ~(0xff << shift);
  122. data |= (((u32)val) << shift);
  123. writel(data, PCICONFDREG);
  124. return PCIBIOS_SUCCESSFUL;
  125. }
  126. static int vr41xx_pci_write_config_word(struct pci_dev *dev, int where, u16 val)
  127. {
  128. u32 data;
  129. int shift;
  130. if (where & 1)
  131. return PCIBIOS_BAD_REGISTER_NUMBER;
  132. if (vr41xx_pci_config_access(dev, where) < 0)
  133. return PCIBIOS_DEVICE_NOT_FOUND;
  134. data = readl(PCICONFDREG);
  135. shift = (where & 2) << 3;
  136. data &= ~(0xffff << shift);
  137. data |= (((u32)val) << shift);
  138. writel(data, PCICONFDREG);
  139. return PCIBIOS_SUCCESSFUL;
  140. }
  141. static int vr41xx_pci_write_config_dword(struct pci_dev *dev, int where, u32 val)
  142. {
  143. if (where & 3)
  144. return PCIBIOS_BAD_REGISTER_NUMBER;
  145. if (vr41xx_pci_config_access(dev, where) < 0)
  146. return PCIBIOS_DEVICE_NOT_FOUND;
  147. writel(val, PCICONFDREG);
  148. return PCIBIOS_SUCCESSFUL;
  149. }
  150. struct pci_ops vr41xx_pci_ops = {
  151. vr41xx_pci_read_config_byte,
  152. vr41xx_pci_read_config_word,
  153. vr41xx_pci_read_config_dword,
  154. vr41xx_pci_write_config_byte,
  155. vr41xx_pci_write_config_word,
  156. vr41xx_pci_write_config_dword
  157. };
  158. void __init vr41xx_pciu_init(struct vr41xx_pci_address_map *map)
  159. {
  160. struct vr41xx_pci_address_space *s;
  161. u32 config;
  162. int n;
  163. if (!map)
  164. return;
  165. /* Disable PCI interrupt */
  166. writew(0, MPCIINTREG);
  167. /* Supply VTClock to PCIU */
  168. vr41xx_clock_supply(PCIU_CLOCK);
  169. /*
  170.  * Sleep for 1us after setting MSKPPCIU bit in CMUCLKMSK
  171.  * before doing any PCIU access to avoid deadlock on VR4131.
  172.  */
  173. udelay(1);
  174. /* Select PCI clock */
  175. if (vr41xx_vtclock < MAX_PCI_CLOCK)
  176. writel(EQUAL_VTCLOCK, PCICLKSELREG);
  177. else if ((vr41xx_vtclock / 2) < MAX_PCI_CLOCK)
  178. writel(HALF_VTCLOCK, PCICLKSELREG);
  179. else if ((vr41xx_vtclock / 4) < MAX_PCI_CLOCK)
  180. writel(QUARTER_VTCLOCK, PCICLKSELREG);
  181. else
  182. printk(KERN_INFO "Warning: PCI Clock is over 33MHz.n");
  183. /* Supply PCI clock by PCI bus */
  184. vr41xx_clock_supply(PCI_CLOCK);
  185. /*
  186.  * Set PCI memory & I/O space address conversion registers
  187.  * for master transaction.
  188.  */
  189. if (map->mem1 != NULL) {
  190. s = map->mem1;
  191. config = (s->internal_base & 0xff000000) |
  192.          ((s->address_mask & 0x7f000000) >> 11) | (1UL << 12) |
  193.          ((s->pci_base & 0xff000000) >> 24);
  194. writel(config, PCIMMAW1REG);
  195. }
  196. if (map->mem2 != NULL) {
  197. s = map->mem2;
  198. config = (s->internal_base & 0xff000000) |
  199.          ((s->address_mask & 0x7f000000) >> 11) | (1UL << 12) |
  200.          ((s->pci_base & 0xff000000) >> 24);
  201. writel(config, PCIMMAW2REG);
  202. }
  203. if (map->io != NULL) {
  204. s = map->io;
  205. config = (s->internal_base & 0xff000000) |
  206.          ((s->address_mask & 0x7f000000) >> 11) | (1UL << 12) |
  207.          ((s->pci_base & 0xff000000) >> 24);
  208. writel(config, PCIMIOAWREG);
  209. }
  210. /* Set target memory windows */
  211. writel(0x00081000, PCITAW1REG);
  212. writel(0UL, PCITAW2REG);
  213. pciu_write_config_dword(PCI_BASE_ADDRESS_0, 0UL);
  214. pciu_write_config_dword(PCI_BASE_ADDRESS_1, 0UL);
  215. /* Clear bus error */
  216. n = readl(BUSERRADREG);
  217. if (mips_cpu.cputype == CPU_VR4122) {
  218. writel(0UL, PCITRDYVREG);
  219. pciu_write_config_dword(PCI_CACHE_LINE_SIZE, 0x0000f804);
  220. } else {
  221. writel(100UL, PCITRDYVREG);
  222. pciu_write_config_dword(PCI_CACHE_LINE_SIZE, 0x00008004);
  223. }
  224. writel(CONFIG_DONE, PCIENREG);
  225. pciu_write_config_dword(PCI_COMMAND,
  226.                         PCI_COMMAND_IO |
  227.                         PCI_COMMAND_MEMORY |
  228.                         PCI_COMMAND_MASTER |
  229.                         PCI_COMMAND_PARITY |
  230.                         PCI_COMMAND_SERR);
  231. }