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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* $Id: pci.c,v 1.6 2000/01/29 00:12:05 grundler Exp $
  2.  *
  3.  * This file is subject to the terms and conditions of the GNU General Public
  4.  * License.  See the file "COPYING" in the main directory of this archive
  5.  * for more details.
  6.  *
  7.  * Copyright (C) 1997, 1998 Ralf Baechle
  8.  * Copyright (C) 1999 SuSE GmbH
  9.  * Copyright (C) 1999-2001 Hewlett-Packard Company
  10.  * Copyright (C) 1999-2001 Grant Grundler
  11.  */
  12. #include <linux/config.h>
  13. #include <linux/types.h>
  14. #include <linux/kernel.h>
  15. #include <linux/init.h> /* for __init and __devinit */
  16. #include <linux/pci.h>
  17. #include <linux/slab.h>
  18. #include <asm/io.h>
  19. #include <asm/system.h>
  20. #include <asm/cache.h> /* for L1_CACHE_BYTES */
  21. #define DEBUG_RESOURCES 0
  22. #define DEBUG_CONFIG 0
  23. #if DEBUG_CONFIG
  24. # define DBGC(x...)     printk(KERN_DEBUG x)
  25. #else
  26. # define DBGC(x...)
  27. #endif
  28. #if DEBUG_RESOURCES
  29. #define DBG_RES(x...) printk(KERN_DEBUG x)
  30. #else
  31. #define DBG_RES(x...)
  32. #endif
  33. /* To be used as: mdelay(pci_post_reset_delay);
  34. **
  35. ** post_reset is the time the kernel should stall to prevent anyone from
  36. ** accessing the PCI bus once #RESET is de-asserted. 
  37. ** PCI spec somewhere says 1 second but with multi-PCI bus systems,
  38. ** this makes the boot time much longer than necessary.
  39. ** 20ms seems to work for all the HP PCI implementations to date.
  40. */
  41. int pci_post_reset_delay = 50;
  42. struct pci_port_ops *pci_port;
  43. struct pci_bios_ops *pci_bios;
  44. int pci_hba_count = 0;
  45. /*
  46. ** parisc_pci_hba used by pci_port->in/out() ops to lookup bus data.
  47. */
  48. #define PCI_HBA_MAX 32
  49. struct pci_hba_data *parisc_pci_hba[PCI_HBA_MAX];
  50. /********************************************************************
  51. **
  52. ** I/O port space support
  53. **
  54. *********************************************************************/
  55. /* EISA port numbers and PCI port numbers share the same interface.  Some
  56.  * machines have both EISA and PCI adapters installed.  Rather than turn
  57.  * pci_port into an array, we reserve bus 0 for EISA and call the EISA
  58.  * routines if the access is to a port on bus 0.  We don't want to fix
  59.  * EISA and ISA drivers which assume port space is <= 0xffff.
  60.  */
  61. #ifdef CONFIG_EISA
  62. #define EISA_IN(size) if (EISA_bus && (b == 0)) return eisa_in##size(addr)
  63. #define EISA_OUT(size) if (EISA_bus && (b == 0)) return eisa_out##size(d, addr)
  64. #else
  65. #define EISA_IN(size)
  66. #define EISA_OUT(size)
  67. #endif
  68. #define PCI_PORT_IN(type, size) 
  69. u##size in##type (int addr) 
  70. int b = PCI_PORT_HBA(addr); 
  71. u##size d = (u##size) -1; 
  72. EISA_IN(size); 
  73. ASSERT(pci_port); /* make sure services are defined */ 
  74. ASSERT(parisc_pci_hba[b]); /* make sure ioaddr are "fixed up" */ 
  75. if (parisc_pci_hba[b] == NULL) { 
  76. printk(KERN_WARNING "nPCI or EISA Host Bus Adapter %d not registered. in" #size "(0x%x) returning -1n", b, addr); 
  77. } else { 
  78. d = pci_port->in##type(parisc_pci_hba[b], PCI_PORT_ADDR(addr)); 
  79. return d; 
  80. }
  81. PCI_PORT_IN(b,  8)
  82. PCI_PORT_IN(w, 16)
  83. PCI_PORT_IN(l, 32)
  84. #define PCI_PORT_OUT(type, size) 
  85. void out##type (u##size d, int addr) 
  86. int b = PCI_PORT_HBA(addr); 
  87. EISA_OUT(size); 
  88. ASSERT(pci_port); 
  89. pci_port->out##type(parisc_pci_hba[b], PCI_PORT_ADDR(addr), d); 
  90. }
  91. PCI_PORT_OUT(b,  8)
  92. PCI_PORT_OUT(w, 16)
  93. PCI_PORT_OUT(l, 32)
  94. /*
  95.  * BIOS32 replacement.
  96.  */
  97. void pcibios_init(void)
  98. {
  99. if (!pci_bios)
  100. return;
  101. if (pci_bios->init) {
  102. pci_bios->init();
  103. } else {
  104. printk(KERN_WARNING "pci_bios != NULL but init() is!n");
  105. }
  106. }
  107. /* Called from pci_do_scan_bus() *after* walking a bus but before walking PPBs. */
  108. void pcibios_fixup_bus(struct pci_bus *bus)
  109. {
  110. ASSERT(pci_bios != NULL);
  111. if (pci_bios->fixup_bus) {
  112. pci_bios->fixup_bus(bus);
  113. } else {
  114. printk(KERN_WARNING "pci_bios != NULL but fixup_bus() is!n");
  115. }
  116. }
  117. char *pcibios_setup(char *str)
  118. {
  119. return str;
  120. }
  121. /*
  122. ** Used in drivers/pci/quirks.c
  123. */
  124. struct pci_fixup pcibios_fixups[] = { {0} };
  125. /*
  126. ** called by drivers/pci/setup.c:pdev_fixup_irq()
  127. */
  128. void __devinit pcibios_update_irq(struct pci_dev *dev, int irq)
  129. {
  130. /*
  131. ** updates IRQ_LINE cfg register to reflect PCI-PCI bridge skewing.
  132. **
  133. ** Calling path for Alpha is:
  134. **  alpha/kernel/pci.c:common_init_pci(swizzle_func, pci_map_irq_func )
  135. ** drivers/pci/setup.c:pci_fixup_irqs()
  136. **     drivers/pci/setup.c:pci_fixup_irq() (for each PCI device)
  137. ** invoke swizzle and map functions
  138. **         alpha/kernel/pci.c:pcibios_update_irq()
  139. **
  140. ** Don't need this for PA legacy PDC systems.
  141. **
  142. ** On PAT PDC systems, We only support one "swizzle" for any number
  143. ** of PCI-PCI bridges deep. That's how bit3 PCI expansion chassis
  144. ** are implemented. The IRQ lines are "skewed" for all devices but
  145. ** *NOT* routed through the PCI-PCI bridge. Ie any device "0" will
  146. ** share an IRQ line. Legacy PDC is expecting this IRQ line routing
  147. ** as well.
  148. **
  149. ** Unfortunately, PCI spec allows the IRQ lines to be routed
  150. ** around the PCI bridge as long as the IRQ lines are skewed
  151. ** based on the device number...<sigh>...
  152. **
  153. ** Lastly, dino.c might be able to use pci_fixup_irq() to
  154. ** support RS-232 and PS/2 children. Not sure how but it's
  155. ** something to think about.
  156. */
  157. }
  158. /* ------------------------------------
  159. **
  160. ** Program one BAR in PCI config space.
  161. **
  162. ** ------------------------------------
  163. ** PAT PDC systems need this routine. PA legacy PDC does not.
  164. **
  165. ** When BAR's are configured by linux, this routine will update
  166. ** configuration space with the "normalized" address. "root" indicates
  167. ** where the range starts and res is some portion of that range.
  168. **
  169. ** VCLASS: For all PA-RISC systems except V-class, root->start would be zero.
  170. **
  171. ** PAT PDC can tell us which MMIO ranges are available or already in use.
  172. ** I/O port space and such are not memory mapped anyway for PA-Risc.
  173. */
  174. void __devinit
  175. pcibios_update_resource(
  176. struct pci_dev *dev,
  177. struct resource *root,
  178. struct resource *res,
  179. int barnum
  180. )
  181. {
  182. int where;
  183. u32 barval = 0;
  184. DBG_RES("pcibios_update_resource(%s, ..., %d) [%lx,%lx]/%xn",
  185. dev->slot_name,
  186. barnum, res->start, res->end, (int) res->flags);
  187. if (barnum >= PCI_BRIDGE_RESOURCES) {
  188. /* handled in PCI-PCI bridge specific support */
  189. return;
  190. }
  191. if (barnum == PCI_ROM_RESOURCE) {
  192. where = PCI_ROM_ADDRESS;
  193. } else {
  194. /* 0-5  standard PCI "regions" */
  195. where = PCI_BASE_ADDRESS_0 + (barnum * 4);
  196. }
  197. if (res->flags & IORESOURCE_IO) {
  198. barval = PCI_PORT_ADDR(res->start);
  199. } else if (res->flags & IORESOURCE_MEM) {
  200. barval = PCI_BUS_ADDR(HBA_DATA(dev->bus->sysdata), res->start);
  201. } else {
  202. panic("pcibios_update_resource() WTF? flags not IO or MEM");
  203. }
  204. pci_write_config_dword(dev, where, barval);
  205. /* XXX FIXME - Elroy does support 64-bit (dual cycle) addressing.
  206. ** But at least one device (Symbios 53c896) which has 64-bit BAR
  207. ** doesn't actually work right with dual cycle addresses.
  208. ** So ignore the whole mess for now.
  209. */
  210. if ((res->flags & (PCI_BASE_ADDRESS_SPACE
  211.    | PCI_BASE_ADDRESS_MEM_TYPE_MASK))
  212.     == (PCI_BASE_ADDRESS_SPACE_MEMORY
  213. | PCI_BASE_ADDRESS_MEM_TYPE_64)) {
  214. pci_write_config_dword(dev, where+4, 0);
  215. DBGC("PCIBIOS: dev %s type 64-bitn", dev->name);
  216. }
  217. }
  218. /*
  219. ** Called by pci_set_master() - a driver interface.
  220. **
  221. ** Legacy PDC guarantees to set:
  222. **      Map Memory BAR's into PA IO space.
  223. **      Map Expansion ROM BAR into one common PA IO space per bus.
  224. **      Map IO BAR's into PCI IO space.
  225. **      Command (see below)
  226. **      Cache Line Size
  227. **      Latency Timer
  228. **      Interrupt Line
  229. ** PPB: secondary latency timer, io/mmio base/limit,
  230. ** bus numbers, bridge control
  231. **
  232. */
  233. void
  234. pcibios_set_master(struct pci_dev *dev)
  235. {
  236. u8 lat;
  237. /* If someone already mucked with this, don't touch it. */
  238. pci_read_config_byte(dev, PCI_LATENCY_TIMER, &lat);
  239. if (lat >= 16) return;
  240. /*
  241. ** HP generally has fewer devices on the bus than other architectures.
  242. ** upper byte is PCI_LATENCY_TIMER.
  243. */
  244.         pci_write_config_word(dev, PCI_CACHE_LINE_SIZE,
  245. (0x80 << 8) | (L1_CACHE_BYTES / sizeof(u32)));
  246. }
  247. void __init
  248. pcibios_init_bus(struct pci_bus *bus)
  249. {
  250. struct pci_dev *dev = bus->self;
  251. /* We deal only with pci controllers and pci-pci bridges. */
  252. if (dev && (dev->class >> 8) != PCI_CLASS_BRIDGE_PCI)
  253. return;
  254. if (dev) {
  255. /* PCI-PCI bridge - set the cache line and default latency
  256.    (32) for primary and secondary buses. */
  257. pci_write_config_byte(dev, PCI_SEC_LATENCY_TIMER, 32);
  258. /* Read bridge control */
  259. pci_read_config_word(dev, PCI_BRIDGE_CONTROL, &bus->bridge_ctl);
  260. }
  261. /* Set FBB bit for now. Disable ISA IO forwarding. Enable PERR/SERR */
  262. bus->bridge_ctl |= PCI_BRIDGE_CTL_FAST_BACK | 
  263.    PCI_BRIDGE_CTL_PARITY | PCI_BRIDGE_CTL_SERR;
  264. }
  265. /*
  266. ** KLUGE: Link the child and parent resources - generic PCI didn't
  267. */
  268. static void
  269. pcibios_link_hba_resources( struct resource *hba_res, struct resource *r)
  270. {
  271. if (!r->parent) {
  272. r->parent = hba_res;
  273. /* reverse link is harder *sigh*  */
  274. if (r->parent->child) {
  275. if (r->parent->sibling) {
  276. struct resource *next = r->parent->sibling;
  277. while (next->sibling)
  278.  next = next->sibling;
  279. next->sibling = r;
  280. } else {
  281. r->parent->sibling = r;
  282. }
  283. } else
  284. r->parent->child = r;
  285. }
  286. }
  287. /*
  288. ** called by drivers/pci/setup-res.c:pci_setup_bridge().
  289. */
  290. void pcibios_fixup_pbus_ranges(
  291. struct pci_bus *bus,
  292. struct pbus_set_ranges_data *ranges
  293. )
  294. {
  295. struct pci_hba_data *hba = HBA_DATA(bus->sysdata);
  296. /*
  297. ** I/O space may see busnumbers here. Something
  298. ** in the form of 0xbbxxxx where bb is the bus num
  299. ** and xxxx is the I/O port space address.
  300. ** Remaining address translation are done in the
  301. ** PCI Host adapter specific code - ie dino_out8.
  302. */
  303. ranges->io_start = PCI_PORT_ADDR(ranges->io_start);
  304. ranges->io_end   = PCI_PORT_ADDR(ranges->io_end);
  305. /* Convert MMIO addr to PCI addr (undo global virtualization) */
  306. ranges->mem_start = PCI_BUS_ADDR(hba, ranges->mem_start);
  307. ranges->mem_end   = PCI_BUS_ADDR(hba, ranges->mem_end);
  308. DBG_RES("pcibios_fixup_pbus_ranges(%02x, [%lx,%lx %lx,%lx])n", bus->number,
  309. ranges->io_start, ranges->io_end,
  310. ranges->mem_start, ranges->mem_end);
  311. /* KLUGE ALERT
  312. ** if this resource isn't linked to a "parent", then it seems
  313. ** to be a child of the HBA - lets link it in.
  314. */
  315. pcibios_link_hba_resources(&hba->io_space, bus->resource[0]);
  316. pcibios_link_hba_resources(&hba->lmmio_space, bus->resource[1]);
  317. }
  318. #define MAX(val1, val2)   ((val1) > (val2) ? (val1) : (val2))
  319. /*
  320. ** pcibios align resources() is called everytime generic PCI code
  321. ** wants to generate a new address. The process of looking for
  322. ** an available address, each candidate is first "aligned" and
  323. ** then checked if the resource is available until a match is found.
  324. **
  325. ** Since we are just checking candidates, don't use any fields other
  326. ** than res->start.
  327. */
  328. void __devinit
  329. pcibios_align_resource(void *data, struct resource *res,
  330.        unsigned long size, unsigned long alignment)
  331. {
  332. unsigned long mask, align;
  333. DBG_RES("pcibios_align_resource(%s, (%p) [%lx,%lx]/%x, 0x%lx, 0x%lx)n",
  334. ((struct pci_dev *) data)->slot_name,
  335. res->parent, res->start, res->end,
  336. (int) res->flags, size, alignment);
  337. /* has resource already been aligned/assigned? */
  338. if (res->parent)
  339. return;
  340. /* If it's not IO, then it's gotta be MEM */
  341. align = (res->flags & IORESOURCE_IO) ? PCIBIOS_MIN_IO : PCIBIOS_MIN_MEM;
  342. /* Align to largest of MIN or input size */
  343. mask = MAX(size, align) - 1;
  344. res->start += mask;
  345. res->start &= ~mask;
  346. /*
  347. ** WARNING : caller is expected to update "end" field.
  348. ** We can't since it might really represent the *size*.
  349. ** The difference is "end = start + size" vs "end += start".
  350. */
  351. }
  352. int __devinit
  353. pcibios_enable_device(struct pci_dev *dev)
  354. {
  355. u16 cmd;
  356. int idx;
  357. /*
  358. ** The various platform PDC's (aka "BIOS" for PCs) don't
  359. ** enable all the same bits. We just make sure they are here.
  360. */
  361. pci_read_config_word(dev, PCI_COMMAND, &cmd);
  362. /*
  363. ** See if any resources have been allocated
  364. ** While "regular" PCI devices only use 0-5, Bridges use a few
  365. ** beyond that for window registers.
  366. */
  367.         for (idx=0; idx<DEVICE_COUNT_RESOURCE; idx++) {
  368. struct resource *r = &dev->resource[idx];
  369. if (r->flags & IORESOURCE_IO)
  370. cmd |= PCI_COMMAND_IO;
  371. if (r->flags & IORESOURCE_MEM)
  372. cmd |= PCI_COMMAND_MEMORY;
  373. }
  374. /*
  375. ** Enable System error and Parity Error reporting by default.
  376. ** Devices that do NOT want those behaviors should clear them
  377. ** (eg PCI graphics, possibly networking).
  378. ** Interfaces like SCSI certainly should not. We want the
  379. ** system to crash if a system or parity error is detected.
  380. ** At least until the device driver can recover from such an error.
  381. */
  382. cmd |= (PCI_COMMAND_SERR | PCI_COMMAND_PARITY);
  383. /* If bridge/bus controller has FBB enabled, child must too. */
  384. if (dev->bus->bridge_ctl & PCI_BRIDGE_CTL_FAST_BACK)
  385. cmd |= PCI_COMMAND_FAST_BACK;
  386. DBGC("PCIBIOS: Enabling device %s cmd 0x%04xn", dev->slot_name, cmd);
  387. pci_write_config_word(dev, PCI_COMMAND, cmd);
  388. return 0;
  389. }
  390. void __init
  391. pcibios_setup_host_bridge(struct pci_bus *bus)
  392. {
  393. ASSERT(pci_bios != NULL);
  394. #if 0
  395. if (pci_bios)
  396. {
  397. if (pci_bios->setup_host_bridge) {
  398. (*pci_bios->setup_host_bridge)(bus);
  399. }
  400. }
  401. #endif
  402. }
  403. /*
  404. ** Mostly copied from drivers/pci/setup-bus.c:pci_assign_unassigned_resources()
  405. */
  406. void __devinit
  407. pcibios_assign_unassigned_resources(struct pci_bus *bus)
  408. {
  409. /* from drivers/pci/setup-bus.c */
  410. extern void pbus_assign_resources(struct pci_bus *bus, struct pbus_set_ranges_data *ranges);
  411. struct pbus_set_ranges_data ranges;
  412. ranges.io_end = ranges.io_start
  413. = bus->resource[0]->start + PCIBIOS_MIN_IO;
  414. ranges.mem_end = ranges.mem_start
  415. = bus->resource[1]->start + PCIBIOS_MIN_MEM;
  416. ranges.found_vga = 0;
  417. pbus_assign_resources(bus, &ranges);
  418. }
  419. /*
  420. ** PARISC specific (unfortunately)
  421. */
  422. void pcibios_register_hba(struct pci_hba_data *hba)
  423. {
  424. ASSERT(pci_hba_count < PCI_HBA_MAX);
  425. /* pci_port->in/out() uses parisc_pci_hba to lookup parameter. */
  426. parisc_pci_hba[pci_hba_count] = hba;
  427. hba->hba_num = pci_hba_count++;
  428. }