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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Low-Level PCI Support for PC
  3.  *
  4.  * (c) 1999--2000 Martin Mares <mj@ucw.cz>
  5.  *  2001 Andi Kleen. Cleanup for x86-64. Removed PCI-BIOS access and fixups
  6.  * for hardware that is unlikely to exist on any Hammer platform.
  7.  * 
  8.  *  On x86-64 we don't have any access to the PCI-BIOS in long mode, so we
  9.  * cannot sort the pci device table based on what the BIOS did. This might 
  10.  * change the probing order of some devices compared to an i386 kernel.
  11.  *  May need to use ACPI to fix this.
  12.  */
  13. #include <linux/config.h>
  14. #include <linux/types.h>
  15. #include <linux/kernel.h>
  16. #include <linux/sched.h>
  17. #include <linux/pci.h>
  18. #include <linux/init.h>
  19. #include <linux/ioport.h>
  20. #include <asm/segment.h>
  21. #include <asm/io.h>
  22. #include <asm/mpspec.h>
  23. #include "pci-x86_64.h"
  24. unsigned int pci_probe = PCI_PROBE_CONF1 | PCI_PROBE_CONF2;
  25. int pcibios_last_bus = -1;
  26. struct pci_bus *pci_root_bus;
  27. struct pci_ops *pci_root_ops;
  28. /*
  29.  * Direct access to PCI hardware...
  30.  */
  31. #ifdef CONFIG_PCI_DIRECT
  32. /*
  33.  * Functions for accessing PCI configuration space with type 1 accesses
  34.  */
  35. #define CONFIG_CMD(dev, where)   (0x80000000 | (dev->bus->number << 16) | (dev->devfn << 8) | (where & ~3))
  36. static int pci_conf1_read_config_byte(struct pci_dev *dev, int where, u8 *value)
  37. {
  38. outl(CONFIG_CMD(dev,where), 0xCF8);
  39. *value = inb(0xCFC + (where&3));
  40. return PCIBIOS_SUCCESSFUL;
  41. }
  42. static int pci_conf1_read_config_word(struct pci_dev *dev, int where, u16 *value)
  43. {
  44. outl(CONFIG_CMD(dev,where), 0xCF8);    
  45. *value = inw(0xCFC + (where&2));
  46. return PCIBIOS_SUCCESSFUL;    
  47. }
  48. static int pci_conf1_read_config_dword(struct pci_dev *dev, int where, u32 *value)
  49. {
  50. outl(CONFIG_CMD(dev,where), 0xCF8);
  51. *value = inl(0xCFC);
  52. return PCIBIOS_SUCCESSFUL;    
  53. }
  54. static int pci_conf1_write_config_byte(struct pci_dev *dev, int where, u8 value)
  55. {
  56. outl(CONFIG_CMD(dev,where), 0xCF8);    
  57. outb(value, 0xCFC + (where&3));
  58. return PCIBIOS_SUCCESSFUL;
  59. }
  60. static int pci_conf1_write_config_word(struct pci_dev *dev, int where, u16 value)
  61. {
  62. outl(CONFIG_CMD(dev,where), 0xCF8);
  63. outw(value, 0xCFC + (where&2));
  64. return PCIBIOS_SUCCESSFUL;
  65. }
  66. static int pci_conf1_write_config_dword(struct pci_dev *dev, int where, u32 value)
  67. {
  68. outl(CONFIG_CMD(dev,where), 0xCF8);
  69. outl(value, 0xCFC);
  70. return PCIBIOS_SUCCESSFUL;
  71. }
  72. #undef CONFIG_CMD
  73. static struct pci_ops pci_direct_conf1 = {
  74. pci_conf1_read_config_byte,
  75. pci_conf1_read_config_word,
  76. pci_conf1_read_config_dword,
  77. pci_conf1_write_config_byte,
  78. pci_conf1_write_config_word,
  79. pci_conf1_write_config_dword
  80. };
  81. /*
  82.  * Functions for accessing PCI configuration space with type 2 accesses
  83.  */
  84. #define IOADDR(devfn, where) ((0xC000 | ((devfn & 0x78) << 5)) + where)
  85. #define FUNC(devfn) (((devfn & 7) << 1) | 0xf0)
  86. #define SET(dev) if (dev->devfn & 0x80) return PCIBIOS_DEVICE_NOT_FOUND;
  87. outb(FUNC(dev->devfn), 0xCF8);
  88. outb(dev->bus->number, 0xCFA);
  89. static int pci_conf2_read_config_byte(struct pci_dev *dev, int where, u8 *value)
  90. {
  91. SET(dev);
  92. *value = inb(IOADDR(dev->devfn,where));
  93. outb (0, 0xCF8);
  94. return PCIBIOS_SUCCESSFUL;
  95. }
  96. static int pci_conf2_read_config_word(struct pci_dev *dev, int where, u16 *value)
  97. {
  98. SET(dev);
  99. *value = inw(IOADDR(dev->devfn,where));
  100. outb (0, 0xCF8);
  101. return PCIBIOS_SUCCESSFUL;
  102. }
  103. static int pci_conf2_read_config_dword(struct pci_dev *dev, int where, u32 *value)
  104. {
  105. SET(dev);
  106. *value = inl (IOADDR(dev->devfn,where));    
  107. outb (0, 0xCF8);    
  108. return PCIBIOS_SUCCESSFUL;
  109. }
  110. static int pci_conf2_write_config_byte(struct pci_dev *dev, int where, u8 value)
  111. {
  112. SET(dev);
  113. outb (value, IOADDR(dev->devfn,where));
  114. outb (0, 0xCF8);    
  115. return PCIBIOS_SUCCESSFUL;
  116. }
  117. static int pci_conf2_write_config_word(struct pci_dev *dev, int where, u16 value)
  118. {
  119. SET(dev);
  120. outw (value, IOADDR(dev->devfn,where));
  121. outb (0, 0xCF8);    
  122. return PCIBIOS_SUCCESSFUL;
  123. }
  124. static int pci_conf2_write_config_dword(struct pci_dev *dev, int where, u32 value)
  125. {
  126. SET(dev);
  127. outl (value, IOADDR(dev->devfn,where));    
  128. outb (0, 0xCF8);    
  129. return PCIBIOS_SUCCESSFUL;
  130. }
  131. #undef SET
  132. #undef IOADDR
  133. #undef FUNC
  134. static struct pci_ops pci_direct_conf2 = {
  135. pci_conf2_read_config_byte,
  136. pci_conf2_read_config_word,
  137. pci_conf2_read_config_dword,
  138. pci_conf2_write_config_byte,
  139. pci_conf2_write_config_word,
  140. pci_conf2_write_config_dword
  141. };
  142. /*
  143.  * Before we decide to use direct hardware access mechanisms, we try to do some
  144.  * trivial checks to ensure it at least _seems_ to be working -- we just test
  145.  * whether bus 00 contains a host bridge (this is similar to checking
  146.  * techniques used in XFree86, but ours should be more reliable since we
  147.  * attempt to make use of direct access hints provided by the PCI BIOS).
  148.  *
  149.  * This should be close to trivial, but it isn't, because there are buggy
  150.  * chipsets (yes, you guessed it, by Intel and Compaq) that have no class ID.
  151.  */
  152. static int __devinit pci_sanity_check(struct pci_ops *o)
  153. {
  154. u16 x;
  155. struct pci_bus bus; /* Fake bus and device */
  156. struct pci_dev dev;
  157. if (pci_probe & PCI_NO_CHECKS)
  158. return 1;
  159. bus.number = 0;
  160. dev.bus = &bus;
  161. for(dev.devfn=0; dev.devfn < 0x100; dev.devfn++)
  162. if ((!o->read_word(&dev, PCI_CLASS_DEVICE, &x) &&
  163.      (x == PCI_CLASS_BRIDGE_HOST || x == PCI_CLASS_DISPLAY_VGA)) ||
  164.     (!o->read_word(&dev, PCI_VENDOR_ID, &x) &&
  165.      (x == PCI_VENDOR_ID_INTEL || x == PCI_VENDOR_ID_COMPAQ)))
  166. return 1;
  167. DBG("PCI: Sanity check failedn");
  168. return 0;
  169. }
  170. static struct pci_ops * __devinit pci_check_direct(void)
  171. {
  172. unsigned int tmp;
  173. unsigned long flags;
  174. __save_flags(flags); __cli();
  175. /*
  176.  * Check if configuration type 1 works.
  177.  */
  178. if (pci_probe & PCI_PROBE_CONF1) {
  179. outb (0x01, 0xCFB);
  180. tmp = inl (0xCF8);
  181. outl (0x80000000, 0xCF8);
  182. if (inl (0xCF8) == 0x80000000 &&
  183.     pci_sanity_check(&pci_direct_conf1)) {
  184. outl (tmp, 0xCF8);
  185. __restore_flags(flags);
  186. printk(KERN_INFO "PCI: Using configuration type 1n");
  187. request_region(0xCF8, 8, "PCI conf1");
  188. return &pci_direct_conf1;
  189. }
  190. outl (tmp, 0xCF8);
  191. }
  192. /*
  193.  * Check if configuration type 2 works.
  194.  */
  195. if (pci_probe & PCI_PROBE_CONF2) {
  196. outb (0x00, 0xCFB);
  197. outb (0x00, 0xCF8);
  198. outb (0x00, 0xCFA);
  199. if (inb (0xCF8) == 0x00 && inb (0xCFA) == 0x00 &&
  200.     pci_sanity_check(&pci_direct_conf2)) {
  201. __restore_flags(flags);
  202. printk(KERN_INFO "PCI: Using configuration type 2n");
  203. request_region(0xCF8, 4, "PCI conf2");
  204. return &pci_direct_conf2;
  205. }
  206. }
  207. __restore_flags(flags);
  208. return NULL;
  209. }
  210. #endif
  211. /*
  212.  * Several buggy motherboards address only 16 devices and mirror
  213.  * them to next 16 IDs. We try to detect this `feature' on all
  214.  * primary buses (those containing host bridges as they are
  215.  * expected to be unique) and remove the ghost devices.
  216.  */
  217. static void __devinit pcibios_fixup_ghosts(struct pci_bus *b)
  218. {
  219. struct list_head *ln, *mn;
  220. struct pci_dev *d, *e;
  221. int mirror = PCI_DEVFN(16,0);
  222. int seen_host_bridge = 0;
  223. int i;
  224. DBG("PCI: Scanning for ghost devices on bus %dn", b->number);
  225. for (ln=b->devices.next; ln != &b->devices; ln=ln->next) {
  226. d = pci_dev_b(ln);
  227. if ((d->class >> 8) == PCI_CLASS_BRIDGE_HOST)
  228. seen_host_bridge++;
  229. for (mn=ln->next; mn != &b->devices; mn=mn->next) {
  230. e = pci_dev_b(mn);
  231. if (e->devfn != d->devfn + mirror ||
  232.     e->vendor != d->vendor ||
  233.     e->device != d->device ||
  234.     e->class != d->class)
  235. continue;
  236. for(i=0; i<PCI_NUM_RESOURCES; i++)
  237. if (e->resource[i].start != d->resource[i].start ||
  238.     e->resource[i].end != d->resource[i].end ||
  239.     e->resource[i].flags != d->resource[i].flags)
  240. continue;
  241. break;
  242. }
  243. if (mn == &b->devices)
  244. return;
  245. }
  246. if (!seen_host_bridge)
  247. return;
  248. printk(KERN_INFO "PCI: Ignoring ghost devices on bus %02xn", b->number);
  249. ln = &b->devices;
  250. while (ln->next != &b->devices) {
  251. d = pci_dev_b(ln->next);
  252. if (d->devfn >= mirror) {
  253. list_del(&d->global_list);
  254. list_del(&d->bus_list);
  255. kfree(d);
  256. } else
  257. ln = ln->next;
  258. }
  259. }
  260. /*
  261.  * Discover remaining PCI buses in case there are peer host bridges.
  262.  */
  263. static void __devinit pcibios_fixup_peer_bridges(void)
  264. {
  265. int n;
  266. struct pci_bus bus;
  267. struct pci_dev dev;
  268. u16 l;
  269. if (pcibios_last_bus <= 0 || pcibios_last_bus >= 0xff)
  270. return;
  271. DBG("PCI: Peer bridge fixupn");
  272. for (n=0; n <= pcibios_last_bus; n++) {
  273. if (pci_bus_exists(&pci_root_buses, n))
  274. continue;
  275. bus.number = n;
  276. bus.ops = pci_root_ops;
  277. dev.bus = &bus;
  278. for(dev.devfn=0; dev.devfn<256; dev.devfn += 8)
  279. if (!pci_read_config_word(&dev, PCI_VENDOR_ID, &l) &&
  280.     l != 0x0000 && l != 0xffff) {
  281. DBG("Found device at %02x:%02x [%04x]n", n, dev.devfn, l);
  282. printk(KERN_INFO "PCI: Discovered peer bus %02xn", n);
  283. pci_scan_bus(n, pci_root_ops, NULL);
  284. break;
  285. }
  286. }
  287. }
  288. static void __devinit pci_scan_mptable(void)
  289. int i; 
  290. /* Handle ACPI here */
  291. if (!smp_found_config) { 
  292. printk(KERN_WARNING "PCI: Warning: no mptable. Scanning busses upto 0xffn"); 
  293. pcibios_last_bus = 0xff; 
  294. return;
  295. pcibios_last_bus = 0xff;
  296. for (i = 0; i < MAX_MP_BUSSES; i++) {
  297. int n = mp_bus_id_to_pci_bus[i]; 
  298. if (n < 0 || n >= 0xff)
  299. continue; 
  300. if (pci_bus_exists(&pci_root_buses, n))
  301. continue;
  302. printk(KERN_INFO "PCI: Scanning bus %02x from mptablen", n); 
  303. pci_scan_bus(n, pci_root_ops, NULL); 
  304. static void __devinit pci_fixup_ide_bases(struct pci_dev *d)
  305. {
  306. int i;
  307. /*
  308.  * PCI IDE controllers use non-standard I/O port decoding, respect it.
  309.  */
  310. if ((d->class >> 8) != PCI_CLASS_STORAGE_IDE)
  311. return;
  312. DBG("PCI: IDE base address fixup for %sn", d->slot_name);
  313. for(i=0; i<4; i++) {
  314. struct resource *r = &d->resource[i];
  315. if ((r->start & ~0x80) == 0x374) {
  316. r->start |= 2;
  317. r->end = r->start;
  318. }
  319. }
  320. }
  321. struct pci_fixup pcibios_fixups[] = {
  322. { PCI_FIXUP_HEADER, PCI_ANY_ID, PCI_ANY_ID, pci_fixup_ide_bases },
  323. { 0 }
  324. };
  325. /*
  326.  *  Called after each bus is probed, but before its children
  327.  *  are examined.
  328.  */
  329. void __devinit pcibios_fixup_bus(struct pci_bus *b)
  330. {
  331. pcibios_fixup_ghosts(b);
  332. pci_read_bridge_bases(b);
  333. }
  334. void __devinit pcibios_init(void)
  335. {
  336. struct pci_ops *dir = NULL;
  337. #ifdef CONFIG_PCI_DIRECT
  338. if (pci_probe & (PCI_PROBE_CONF1 | PCI_PROBE_CONF2))
  339. dir = pci_check_direct();
  340. #endif
  341. if (dir)
  342. pci_root_ops = dir;
  343. else {
  344. printk(KERN_INFO "PCI: No PCI bus detectedn");
  345. return;
  346. }
  347. printk(KERN_INFO "PCI: Probing PCI hardwaren");
  348. pci_root_bus = pci_scan_bus(0, pci_root_ops, NULL);
  349. pcibios_irq_init();
  350. pci_scan_mptable(); 
  351. pcibios_fixup_peer_bridges();
  352. pcibios_fixup_irqs();
  353. pcibios_resource_survey();
  354. #ifdef CONFIG_GART_IOMMU
  355. pci_iommu_init();
  356. #endif
  357. }
  358. char * __devinit pcibios_setup(char *str)
  359. {
  360. if (!strcmp(str, "off")) {
  361. pci_probe = 0;
  362. return NULL;
  363. }
  364. else if (!strncmp(str, "bios", 4)) {
  365. printk(KERN_WARNING "PCI: No PCI bios access on x86-64. BIOS hint ignored.n");
  366. return NULL;
  367. } else if (!strcmp(str, "nobios")) {
  368. pci_probe &= ~PCI_PROBE_BIOS;
  369. return NULL;
  370. } else if (!strcmp(str, "nosort")) { /* Default */ 
  371. pci_probe |= PCI_NO_SORT;
  372. return NULL;
  373. #ifdef CONFIG_PCI_DIRECT
  374. else if (!strcmp(str, "conf1")) {
  375. pci_probe = PCI_PROBE_CONF1 | PCI_NO_CHECKS;
  376. return NULL;
  377. }
  378. else if (!strcmp(str, "conf2")) {
  379. pci_probe = PCI_PROBE_CONF2 | PCI_NO_CHECKS;
  380. return NULL;
  381. }
  382. #endif
  383. else if (!strcmp(str, "rom")) {
  384. pci_probe |= PCI_ASSIGN_ROMS;
  385. return NULL;
  386. } else if (!strcmp(str, "assign-busses")) {
  387. pci_probe |= PCI_ASSIGN_ALL_BUSSES;
  388. return NULL;
  389. } else if (!strncmp(str, "irqmask=", 8)) {
  390. pcibios_irq_mask = simple_strtol(str+8, NULL, 0);
  391. return NULL;
  392. } else if (!strncmp(str, "lastbus=", 8)) {
  393. pcibios_last_bus = simple_strtol(str+8, NULL, 0);
  394. return NULL;
  395. }
  396. return str;
  397. }
  398. unsigned int pcibios_assign_all_busses(void)
  399. {
  400. return (pci_probe & PCI_ASSIGN_ALL_BUSSES) ? 1 : 0;
  401. }
  402. int pcibios_enable_device(struct pci_dev *dev, int mask)
  403. {
  404. int err;
  405. if ((err = pcibios_enable_resources(dev, mask)) < 0)
  406. return err;
  407. pcibios_enable_irq(dev);
  408. return 0;
  409. }