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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * linux/arch/alpha/kernel/pci.c
  3.  *
  4.  * Extruded from code written by
  5.  * Dave Rusling (david.rusling@reo.mts.dec.com)
  6.  * David Mosberger (davidm@cs.arizona.edu)
  7.  */
  8. /* 2.3.x PCI/resources, 1999 Andrea Arcangeli <andrea@suse.de> */
  9. /*
  10.  * Nov 2000, Ivan Kokshaysky <ink@jurassic.park.msu.ru>
  11.  *      PCI-PCI bridges cleanup
  12.  */
  13. #include <linux/string.h>
  14. #include <linux/pci.h>
  15. #include <linux/init.h>
  16. #include <linux/ioport.h>
  17. #include <linux/kernel.h>
  18. #include <linux/bootmem.h>
  19. #include <asm/machvec.h>
  20. #include "proto.h"
  21. #include "pci_impl.h"
  22. /*
  23.  * Some string constants used by the various core logics. 
  24.  */
  25. const char *const pci_io_names[] = {
  26.   "PCI IO bus 0", "PCI IO bus 1", "PCI IO bus 2", "PCI IO bus 3",
  27.   "PCI IO bus 4", "PCI IO bus 5", "PCI IO bus 6", "PCI IO bus 7"
  28. };
  29. const char *const pci_mem_names[] = {
  30.   "PCI mem bus 0", "PCI mem bus 1", "PCI mem bus 2", "PCI mem bus 3",
  31.   "PCI mem bus 4", "PCI mem bus 5", "PCI mem bus 6", "PCI mem bus 7"
  32. };
  33. const char pci_hae0_name[] = "HAE0";
  34. /*
  35.  * The PCI controller list.
  36.  */
  37. struct pci_controller *hose_head, **hose_tail = &hose_head;
  38. struct pci_controller *pci_isa_hose;
  39. /*
  40.  * Quirks.
  41.  */
  42. static void __init
  43. quirk_eisa_bridge(struct pci_dev *dev)
  44. {
  45. dev->class = PCI_CLASS_BRIDGE_EISA << 8;
  46. }
  47. static void __init
  48. quirk_isa_bridge(struct pci_dev *dev)
  49. {
  50. dev->class = PCI_CLASS_BRIDGE_ISA << 8;
  51. }
  52. static void __init
  53. quirk_ali_ide_ports(struct pci_dev *dev)
  54. {
  55. if (dev->resource[0].end == 0xffff)
  56. dev->resource[0].end = dev->resource[0].start + 7;
  57. if (dev->resource[2].end == 0xffff)
  58. dev->resource[2].end = dev->resource[2].start + 7;
  59. if (dev->resource[3].end == 0xffff)
  60. dev->resource[3].end = dev->resource[3].start + 7;
  61. }
  62. static void __init
  63. quirk_cypress(struct pci_dev *dev)
  64. {
  65. /* The Notorious Cy82C693 chip.  */
  66. /* The Cypress IDE controller doesn't support native mode, but it
  67.    has programmable addresses of IDE command/control registers.
  68.    This violates PCI specifications, confuses the IDE subsystem and
  69.    causes resource conflicts between the primary HD_CMD register and
  70.    the floppy controller.  Ugh.  Fix that.  */
  71. if (dev->class >> 8 == PCI_CLASS_STORAGE_IDE) {
  72. dev->resource[0].flags = 0;
  73. dev->resource[1].flags = 0;
  74. }
  75. /* The Cypress bridge responds on the PCI bus in the address range
  76.    0xffff0000-0xffffffff (conventional x86 BIOS ROM).  There is no
  77.    way to turn this off.  The bridge also supports several extended
  78.    BIOS ranges (disabled after power-up), and some consoles do turn
  79.    them on.  So if we use a large direct-map window, or a large SG
  80.    window, we must avoid entire 0xfff00000-0xffffffff region.  */
  81. else if (dev->class >> 8 == PCI_CLASS_BRIDGE_ISA) {
  82. if (__direct_map_base + __direct_map_size >= 0xfff00000)
  83. __direct_map_size = 0xfff00000 - __direct_map_base;
  84. else {
  85. struct pci_controller *hose = dev->sysdata;
  86. struct pci_iommu_arena *pci = hose->sg_pci;
  87. if (pci && pci->dma_base + pci->size >= 0xfff00000)
  88. pci->size = 0xfff00000 - pci->dma_base;
  89. }
  90. }
  91. }
  92. struct pci_fixup pcibios_fixups[] __initdata = {
  93. { PCI_FIXUP_HEADER, PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82375,
  94.   quirk_eisa_bridge },
  95. { PCI_FIXUP_HEADER, PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82378,
  96.   quirk_isa_bridge },
  97. { PCI_FIXUP_HEADER, PCI_VENDOR_ID_AL, PCI_DEVICE_ID_AL_M5229,
  98.   quirk_ali_ide_ports },
  99. { PCI_FIXUP_HEADER, PCI_VENDOR_ID_CONTAQ, PCI_DEVICE_ID_CONTAQ_82C693,
  100.   quirk_cypress },
  101. { 0 }
  102. };
  103. #define MAX(val1, val2) ((val1) > (val2) ? (val1) : (val2))
  104. #define ALIGN(val,align) (((val) + ((align) - 1)) & ~((align) - 1))
  105. #define KB 1024
  106. #define MB (1024*KB)
  107. #define GB (1024*MB)
  108. void
  109. pcibios_align_resource(void *data, struct resource *res,
  110.        unsigned long size, unsigned long align)
  111. {
  112. struct pci_dev *dev = data;
  113. struct pci_controller *hose = dev->sysdata;
  114. unsigned long alignto;
  115. unsigned long start = res->start;
  116. if (res->flags & IORESOURCE_IO) {
  117. /* Make sure we start at our min on all hoses */
  118. if (start - hose->io_space->start < PCIBIOS_MIN_IO)
  119. start = PCIBIOS_MIN_IO + hose->io_space->start;
  120. /*
  121.  * Put everything into 0x00-0xff region modulo 0x400
  122.  */
  123. if (start & 0x300)
  124. start = (start + 0x3ff) & ~0x3ff;
  125. }
  126. else if (res->flags & IORESOURCE_MEM) {
  127. /* Make sure we start at our min on all hoses */
  128. if (start - hose->mem_space->start < PCIBIOS_MIN_MEM)
  129. start = PCIBIOS_MIN_MEM + hose->mem_space->start;
  130. /*
  131.  * The following holds at least for the Low Cost
  132.  * Alpha implementation of the PCI interface:
  133.  *
  134.  * In sparse memory address space, the first
  135.  * octant (16MB) of every 128MB segment is
  136.  * aliased to the very first 16 MB of the
  137.  * address space (i.e., it aliases the ISA
  138.  * memory address space).  Thus, we try to
  139.  * avoid allocating PCI devices in that range.
  140.  * Can be allocated in 2nd-7th octant only.
  141.  * Devices that need more than 112MB of
  142.  * address space must be accessed through
  143.  * dense memory space only!
  144.  */
  145. /* Align to multiple of size of minimum base.  */
  146. alignto = MAX(0x1000, align);
  147. start = ALIGN(start, alignto);
  148. if (hose->sparse_mem_base && size <= 7 * 16*MB) {
  149. if (((start / (16*MB)) & 0x7) == 0) {
  150. start &= ~(128*MB - 1);
  151. start += 16*MB;
  152. start  = ALIGN(start, alignto);
  153. }
  154. if (start/(128*MB) != (start + size - 1)/(128*MB)) {
  155. start &= ~(128*MB - 1);
  156. start += (128 + 16)*MB;
  157. start  = ALIGN(start, alignto);
  158. }
  159. }
  160. }
  161. res->start = start;
  162. }
  163. #undef MAX
  164. #undef ALIGN
  165. #undef KB
  166. #undef MB
  167. #undef GB
  168. void __init
  169. pcibios_init(void)
  170. {
  171. if (!alpha_mv.init_pci)
  172. return;
  173. alpha_mv.init_pci();
  174. }
  175. char * __init
  176. pcibios_setup(char *str)
  177. {
  178. return str;
  179. }
  180. void __init
  181. pcibios_fixup_resource(struct resource *res, struct resource *root)
  182. {
  183. res->start += root->start;
  184. res->end += root->start;
  185. }
  186. void __init
  187. pcibios_fixup_device_resources(struct pci_dev *dev, struct pci_bus *bus)
  188. {
  189. /* Update device resources.  */
  190. struct pci_controller *hose = (struct pci_controller *)bus->sysdata;
  191. int i;
  192. for (i = 0; i < PCI_NUM_RESOURCES; i++) {
  193. if (!dev->resource[i].start)
  194. continue;
  195. if (dev->resource[i].flags & IORESOURCE_IO)
  196. pcibios_fixup_resource(&dev->resource[i],
  197.        hose->io_space);
  198. else if (dev->resource[i].flags & IORESOURCE_MEM)
  199. pcibios_fixup_resource(&dev->resource[i],
  200.        hose->mem_space);
  201. }
  202. }
  203. void __init
  204. pcibios_fixup_bus(struct pci_bus *bus)
  205. {
  206. /* Propogate hose info into the subordinate devices.  */
  207. struct pci_controller *hose = bus->sysdata;
  208. struct list_head *ln;
  209. struct pci_dev *dev = bus->self;
  210. if (!dev) {
  211. /* Root bus */
  212. bus->resource[0] = hose->io_space;
  213. bus->resource[1] = hose->mem_space;
  214. }
  215. for (ln = bus->devices.next; ln != &bus->devices; ln = ln->next) {
  216. struct pci_dev *dev = pci_dev_b(ln);
  217. if ((dev->class >> 8) != PCI_CLASS_BRIDGE_PCI)
  218. pcibios_fixup_device_resources(dev, bus);
  219. }
  220. }
  221. void
  222. pcibios_update_resource(struct pci_dev *dev, struct resource *root,
  223. struct resource *res, int resource)
  224. {
  225. struct pci_controller *hose = dev->sysdata;
  226. int where;
  227. u32 reg;
  228. if (resource < PCI_ROM_RESOURCE) 
  229. where = PCI_BASE_ADDRESS_0 + (resource * 4);
  230. else if (resource == PCI_ROM_RESOURCE)
  231. where = dev->rom_base_reg;
  232. else {
  233. return; /* Don't update non-standard resources here. */
  234. }
  235. /* Point root at the hose root. */
  236. if (res->flags & IORESOURCE_IO)
  237. root = hose->io_space;
  238. if (res->flags & IORESOURCE_MEM)
  239. root = hose->mem_space;
  240. reg = (res->start - root->start) | (res->flags & 0xf);
  241. pci_write_config_dword(dev, where, reg);
  242. if ((res->flags & (PCI_BASE_ADDRESS_SPACE
  243.    | PCI_BASE_ADDRESS_MEM_TYPE_MASK))
  244.     == (PCI_BASE_ADDRESS_SPACE_MEMORY
  245. | PCI_BASE_ADDRESS_MEM_TYPE_64)) {
  246. pci_write_config_dword(dev, where+4, 0);
  247. printk(KERN_WARNING "PCI: dev %s type 64-bitn", dev->name);
  248. }
  249. /* ??? FIXME -- record old value for shutdown.  */
  250. }
  251. void __init
  252. pcibios_update_irq(struct pci_dev *dev, int irq)
  253. {
  254. pci_write_config_byte(dev, PCI_INTERRUPT_LINE, irq);
  255. /* ??? FIXME -- record old value for shutdown.  */
  256. }
  257. /* Most Alphas have straight-forward swizzling needs.  */
  258. u8 __init
  259. common_swizzle(struct pci_dev *dev, u8 *pinp)
  260. {
  261. struct pci_controller *hose = dev->sysdata;
  262. if (dev->bus->number != hose->first_busno) {
  263. u8 pin = *pinp;
  264. do {
  265. pin = bridge_swizzle(pin, PCI_SLOT(dev->devfn));
  266. /* Move up the chain of bridges. */
  267. dev = dev->bus->self;
  268. } while (dev->bus->self);
  269. *pinp = pin;
  270. /* The slot is the slot of the last bridge. */
  271. }
  272. return PCI_SLOT(dev->devfn);
  273. }
  274. void __init
  275. pcibios_fixup_pbus_ranges(struct pci_bus * bus,
  276.   struct pbus_set_ranges_data * ranges)
  277. {
  278. struct pci_controller *hose = (struct pci_controller *)bus->sysdata;
  279. ranges->io_start -= hose->io_space->start;
  280. ranges->io_end -= hose->io_space->start;
  281. ranges->mem_start -= hose->mem_space->start;
  282. ranges->mem_end -= hose->mem_space->start;
  283. /* FIXME: On older alphas we could use dense memory space
  284.   to access prefetchable resources. */
  285. ranges->prefetch_start -= hose->mem_space->start;
  286. ranges->prefetch_end -= hose->mem_space->start;
  287. }
  288. int
  289. pcibios_enable_device(struct pci_dev *dev, int mask)
  290. {
  291. /* Nothing to do, since we enable all devices at startup.  */
  292. return 0;
  293. }
  294. /*
  295.  *  If we set up a device for bus mastering, we need to check the latency
  296.  *  timer as certain firmware forgets to set it properly, as seen
  297.  *  on SX164 and LX164 with SRM.
  298.  */
  299. void
  300. pcibios_set_master(struct pci_dev *dev)
  301. {
  302. u8 lat;
  303. pci_read_config_byte(dev, PCI_LATENCY_TIMER, &lat);
  304. if (lat >= 16) return;
  305. printk("PCI: Setting latency timer of device %s to 64n",
  306. dev->slot_name);
  307. pci_write_config_byte(dev, PCI_LATENCY_TIMER, 64);
  308. }
  309. void __init
  310. common_init_pci(void)
  311. {
  312. struct pci_controller *hose;
  313. struct pci_bus *bus;
  314. int next_busno;
  315. /* Scan all of the recorded PCI controllers.  */
  316. for (next_busno = 0, hose = hose_head; hose; hose = hose->next) {
  317. hose->first_busno = next_busno;
  318. hose->last_busno = 0xff;
  319. bus = pci_scan_bus(next_busno, alpha_mv.pci_ops, hose);
  320. hose->bus = bus;
  321. next_busno = hose->last_busno = bus->subordinate;
  322. next_busno += 1;
  323. }
  324. pci_assign_unassigned_resources();
  325. pci_fixup_irqs(alpha_mv.pci_swizzle, alpha_mv.pci_map_irq);
  326. }
  327. struct pci_controller * __init
  328. alloc_pci_controller(void)
  329. {
  330. struct pci_controller *hose;
  331. hose = alloc_bootmem(sizeof(*hose));
  332. *hose_tail = hose;
  333. hose_tail = &hose->next;
  334. return hose;
  335. }
  336. struct resource * __init
  337. alloc_resource(void)
  338. {
  339. struct resource *res;
  340. res = alloc_bootmem(sizeof(*res));
  341. return res;
  342. }
  343. /* Provide information on locations of various I/O regions in physical
  344.    memory.  Do this on a per-card basis so that we choose the right hose.  */
  345. asmlinkage long
  346. sys_pciconfig_iobase(long which, unsigned long bus, unsigned long dfn)
  347. {
  348. struct pci_controller *hose;
  349. struct pci_dev *dev;
  350. /* from hose or from bus.devfn */
  351. if (which & IOBASE_FROM_HOSE) {
  352. for(hose = hose_head; hose; hose = hose->next) 
  353. if (hose->index == bus) break;
  354. if (!hose) return -ENODEV;
  355. } else {
  356. /* Special hook for ISA access.  */
  357. if (bus == 0 && dfn == 0) {
  358. hose = pci_isa_hose;
  359. } else {
  360. dev = pci_find_slot(bus, dfn);
  361. if (!dev)
  362. return -ENODEV;
  363. hose = dev->sysdata;
  364. }
  365. }
  366. switch (which & ~IOBASE_FROM_HOSE) {
  367. case IOBASE_HOSE:
  368. return hose->index;
  369. case IOBASE_SPARSE_MEM:
  370. return hose->sparse_mem_base;
  371. case IOBASE_DENSE_MEM:
  372. return hose->dense_mem_base;
  373. case IOBASE_SPARSE_IO:
  374. return hose->sparse_io_base;
  375. case IOBASE_DENSE_IO:
  376. return hose->dense_io_base;
  377. case IOBASE_ROOT_BUS:
  378. return hose->bus->number;
  379. }
  380. return -EOPNOTSUPP;
  381. }
  382. /* Return the index of the PCI controller for device PDEV. */
  383. int
  384. pci_controller_num(struct pci_dev *pdev)
  385. {
  386.         struct pci_controller *hose = pdev->sysdata;
  387. return (hose ? hose->index : -ENXIO);
  388. }