pci.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:8k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Carsten Langgaard, carstenl@mips.com
  3.  * Copyright (C) 1999,2000 MIPS Technologies, Inc.  All rights reserved.
  4.  *
  5.  *  This program is free software; you can distribute it and/or modify it
  6.  *  under the terms of the GNU General Public License (Version 2) as
  7.  *  published by the Free Software Foundation.
  8.  *
  9.  *  This program is distributed in the hope it will be useful, but WITHOUT
  10.  *  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11.  *  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12.  *  for more details.
  13.  *
  14.  *  You should have received a copy of the GNU General Public License along
  15.  *  with this program; if not, write to the Free Software Foundation, Inc.,
  16.  *  59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
  17.  *
  18.  * MIPS boards specific PCI support.
  19.  *
  20.  */
  21. #include <linux/config.h>
  22. #ifdef CONFIG_PCI
  23. #include <linux/types.h>
  24. #include <linux/pci.h>
  25. #include <linux/kernel.h>
  26. #include <linux/init.h>
  27. #include <asm/mips-boards/generic.h>
  28. #include <asm/gt64120.h>
  29. #ifdef CONFIG_MIPS_MALTA
  30. #include <asm/mips-boards/malta.h>
  31. #endif
  32. #define PCI_ACCESS_READ  0
  33. #define PCI_ACCESS_WRITE 1
  34. static int
  35. mips_pcibios_config_access(unsigned char access_type, struct pci_dev *dev,
  36.                            unsigned char where, u32 *data)
  37. {
  38. unsigned char bus = dev->bus->number;
  39. unsigned char dev_fn = dev->devfn;
  40.         u32 intr;
  41. if ((bus == 0) && (dev_fn >= PCI_DEVFN(31,0)))
  42.         return -1; /* Because of a bug in the galileo (for slot 31). */
  43. /* Clear cause register bits */
  44. GT_WRITE(GT_INTRCAUSE_OFS, ~(GT_INTRCAUSE_MASABORT0_BIT | 
  45.                              GT_INTRCAUSE_TARABORT0_BIT));
  46. /* Setup address */
  47. GT_WRITE(GT_PCI0_CFGADDR_OFS, 
  48.  (bus         << GT_PCI0_CFGADDR_BUSNUM_SHF)   |
  49.  (dev_fn      << GT_PCI0_CFGADDR_FUNCTNUM_SHF) |
  50.  ((where / 4) << GT_PCI0_CFGADDR_REGNUM_SHF)   |
  51.  GT_PCI0_CFGADDR_CONFIGEN_BIT);
  52. if (access_type == PCI_ACCESS_WRITE) {
  53.         if (bus == 0 && dev_fn == 0) {
  54.         /* 
  55.  * Galileo is acting differently than other devices. 
  56.  */
  57.         GT_WRITE(GT_PCI0_CFGDATA_OFS, *data);
  58. } else {
  59.         GT_PCI_WRITE(GT_PCI0_CFGDATA_OFS, *data);
  60. }
  61. } else {
  62.         if (bus == 0 && dev_fn == 0) {
  63.         /* 
  64.  * Galileo is acting differently than other devices. 
  65.  */
  66.         GT_READ(GT_PCI0_CFGDATA_OFS, *data);
  67. } else {
  68.         GT_PCI_READ(GT_PCI0_CFGDATA_OFS, *data);
  69. }
  70. }
  71. /* Check for master or target abort */
  72. GT_READ(GT_INTRCAUSE_OFS, intr);
  73. if (intr & (GT_INTRCAUSE_MASABORT0_BIT | GT_INTRCAUSE_TARABORT0_BIT))
  74. {
  75.         /* Error occured */
  76.         /* Clear bits */
  77.         GT_WRITE( GT_INTRCAUSE_OFS, ~(GT_INTRCAUSE_MASABORT0_BIT | 
  78.       GT_INTRCAUSE_TARABORT0_BIT) );
  79. return -1;
  80. }
  81. return 0;
  82. }
  83. /*
  84.  * We can't address 8 and 16 bit words directly.  Instead we have to
  85.  * read/write a 32bit word and mask/modify the data we actually want.
  86.  */
  87. static int
  88. mips_pcibios_read_config_byte (struct pci_dev *dev, int where, u8 *val)
  89. {
  90. u32 data = 0;
  91. if (mips_pcibios_config_access(PCI_ACCESS_READ, dev, where, &data))
  92. return -1;
  93. *val = (data >> ((where & 3) << 3)) & 0xff;
  94. return PCIBIOS_SUCCESSFUL;
  95. }
  96. static int
  97. mips_pcibios_read_config_word (struct pci_dev *dev, int where, u16 *val)
  98. {
  99. u32 data = 0;
  100. if (where & 1)
  101. return PCIBIOS_BAD_REGISTER_NUMBER;
  102. if (mips_pcibios_config_access(PCI_ACCESS_READ, dev, where, &data))
  103.        return -1;
  104. *val = (data >> ((where & 3) << 3)) & 0xffff;
  105. return PCIBIOS_SUCCESSFUL;
  106. }
  107. static int
  108. mips_pcibios_read_config_dword (struct pci_dev *dev, int where, u32 *val)
  109. {
  110. u32 data = 0;
  111. if (where & 3)
  112. return PCIBIOS_BAD_REGISTER_NUMBER;
  113. if (mips_pcibios_config_access(PCI_ACCESS_READ, dev, where, &data))
  114. return -1;
  115. *val = data;
  116. return PCIBIOS_SUCCESSFUL;
  117. }
  118. static int
  119. mips_pcibios_write_config_byte (struct pci_dev *dev, int where, u8 val)
  120. {
  121. u32 data = 0;
  122.        
  123. if (mips_pcibios_config_access(PCI_ACCESS_READ, dev, where, &data))
  124. return -1;
  125. data = (data & ~(0xff << ((where & 3) << 3))) |
  126.        (val << ((where & 3) << 3));
  127. if (mips_pcibios_config_access(PCI_ACCESS_WRITE, dev, where, &data))
  128. return -1;
  129. return PCIBIOS_SUCCESSFUL;
  130. }
  131. static int
  132. mips_pcibios_write_config_word (struct pci_dev *dev, int where, u16 val)
  133. {
  134.         u32 data = 0;
  135. if (where & 1)
  136. return PCIBIOS_BAD_REGISTER_NUMBER;
  137.        
  138.         if (mips_pcibios_config_access(PCI_ACCESS_READ, dev, where, &data))
  139.        return -1;
  140. data = (data & ~(0xffff << ((where & 3) << 3))) | 
  141.        (val << ((where & 3) << 3));
  142. if (mips_pcibios_config_access(PCI_ACCESS_WRITE, dev, where, &data))
  143.        return -1;
  144. return PCIBIOS_SUCCESSFUL;
  145. }
  146. static int
  147. mips_pcibios_write_config_dword(struct pci_dev *dev, int where, u32 val)
  148. {
  149. if (where & 3)
  150. return PCIBIOS_BAD_REGISTER_NUMBER;
  151. if (mips_pcibios_config_access(PCI_ACCESS_WRITE, dev, where, &val))
  152.        return -1;
  153. return PCIBIOS_SUCCESSFUL;
  154. }
  155. struct pci_ops mips_pci_ops = {
  156. mips_pcibios_read_config_byte,
  157.         mips_pcibios_read_config_word,
  158. mips_pcibios_read_config_dword,
  159. mips_pcibios_write_config_byte,
  160. mips_pcibios_write_config_word,
  161. mips_pcibios_write_config_dword
  162. };
  163. void __init pcibios_init(void)
  164. {
  165. #ifdef CONFIG_MIPS_MALTA
  166. struct pci_dev *pdev;
  167. unsigned char reg_val;
  168. #endif
  169. printk("PCI: Probing PCI hardware on host bus 0.n");
  170. pci_scan_bus(0, &mips_pci_ops, NULL);
  171. /* 
  172.  * Due to a bug in the Galileo system controller, we need to setup 
  173.  * the PCI BAR for the Galileo internal registers.
  174.  * This should be done in the bios/bootprom and will be fixed in
  175.  * a later revision of YAMON (the MIPS boards boot prom).
  176.  */
  177. GT_WRITE(GT_PCI0_CFGADDR_OFS,
  178.  (0 << GT_PCI0_CFGADDR_BUSNUM_SHF)   |  /* Local bus */
  179.  (0 << GT_PCI0_CFGADDR_DEVNUM_SHF)   |  /* GT64120 device */
  180.  (0 << GT_PCI0_CFGADDR_FUNCTNUM_SHF) |  /* Function 0 */
  181.  ((0x20/4) << GT_PCI0_CFGADDR_REGNUM_SHF) |  /* BAR 4 */
  182.  GT_PCI0_CFGADDR_CONFIGEN_BIT );
  183. /* Perform the write */
  184. GT_WRITE( GT_PCI0_CFGDATA_OFS, PHYSADDR(MIPS_GT_BASE)); 
  185. #ifdef CONFIG_MIPS_MALTA
  186. pci_for_each_dev(pdev) {
  187. if ((pdev->vendor == PCI_VENDOR_ID_INTEL)
  188.     && (pdev->device == PCI_DEVICE_ID_INTEL_82371AB)
  189.     && (PCI_SLOT(pdev->devfn) == 0x0a)) {
  190. /*
  191.  * IDE Decode enable.
  192.  */
  193. pci_read_config_byte(pdev, 0x41, &reg_val);
  194.          pci_write_config_byte(pdev, 0x41, reg_val | 0x80);
  195. pci_read_config_byte(pdev, 0x43, &reg_val);
  196.          pci_write_config_byte(pdev, 0x43, reg_val | 0x80);
  197. }
  198. if ((pdev->vendor == PCI_VENDOR_ID_INTEL)
  199.     && (pdev->device == PCI_DEVICE_ID_INTEL_82371AB_0)
  200.     && (PCI_SLOT(pdev->devfn) == 0x0a)) {
  201. /*
  202.  * Set top of main memory accessible by ISA or DMA
  203.  * devices to 16 Mb.
  204.  */
  205. pci_read_config_byte(pdev, 0x69, &reg_val);
  206. pci_write_config_byte(pdev, 0x69, reg_val | 0xf0);
  207. }
  208. }
  209. /* 
  210.  * Activate Floppy Controller in the SMSC FDC37M817 Super I/O 
  211.  * Controller.
  212.  * This should be done in the bios/bootprom and will be fixed in
  213.          * a later revision of YAMON (the MIPS boards boot prom).
  214.  */
  215. /* Entering config state. */
  216. SMSC_WRITE(SMSC_CONFIG_ENTER, SMSC_CONFIG_REG); 
  217.        
  218. /* Activate floppy controller. */
  219. SMSC_WRITE(SMSC_CONFIG_DEVNUM, SMSC_CONFIG_REG);
  220. SMSC_WRITE(SMSC_CONFIG_DEVNUM_FLOPPY, SMSC_DATA_REG);
  221. SMSC_WRITE(SMSC_CONFIG_ACTIVATE, SMSC_CONFIG_REG);
  222. SMSC_WRITE(SMSC_CONFIG_ACTIVATE_ENABLE, SMSC_DATA_REG);
  223. /* Exit config state. */
  224. SMSC_WRITE(SMSC_CONFIG_EXIT, SMSC_CONFIG_REG);
  225. #endif
  226. }
  227. int __init
  228. pcibios_enable_device(struct pci_dev *dev)
  229. {
  230. /* Not needed, since we enable all devices at startup.  */
  231. return 0;
  232. }
  233. void __init
  234. pcibios_align_resource(void *data, struct resource *res, unsigned long size)
  235. {
  236. }
  237. char * __init
  238. pcibios_setup(char *str)
  239. {
  240. /* Nothing to do for now.  */
  241. return str;
  242. }
  243. struct pci_fixup pcibios_fixups[] = {
  244. { 0 }
  245. };
  246. void __init
  247. pcibios_update_resource(struct pci_dev *dev, struct resource *root,
  248.                         struct resource *res, int resource)
  249. {
  250. unsigned long where, size;
  251. u32 reg;
  252. where = PCI_BASE_ADDRESS_0 + (resource * 4);
  253. size = res->end - res->start;
  254. pci_read_config_dword(dev, where, &reg);
  255. reg = (reg & size) | (((u32)(res->start - root->start)) & ~size);
  256. pci_write_config_dword(dev, where, reg);
  257. }
  258. /*
  259.  *  Called after each bus is probed, but before its children
  260.  *  are examined.
  261.  */
  262. void __init pcibios_fixup_bus(struct pci_bus *b)
  263. {
  264. pci_read_bridge_bases(b);
  265. }
  266. unsigned __init int pcibios_assign_all_busses(void)
  267. {
  268. return 1;
  269. }
  270. #endif /* CONFIG_PCI */