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

嵌入式Linux

开发平台:

Unix_Linux

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