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

嵌入式Linux

开发平台:

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, unsigned long size)
  110. {
  111. struct pci_dev *dev = data;
  112. struct pci_controller *hose = dev->sysdata;
  113. unsigned long alignto;
  114. unsigned long start = res->start;
  115. if (res->flags & IORESOURCE_IO) {
  116. /* Make sure we start at our min on all hoses */
  117. if (start - hose->io_space->start < PCIBIOS_MIN_IO)
  118. start = PCIBIOS_MIN_IO + hose->io_space->start;
  119. /*
  120.  * Put everything into 0x00-0xff region modulo 0x400
  121.  */
  122. if (start & 0x300)
  123. start = (start + 0x3ff) & ~0x3ff;
  124. }
  125. else if (res->flags & IORESOURCE_MEM) {
  126. /* Make sure we start at our min on all hoses */
  127. if (start - hose->mem_space->start < PCIBIOS_MIN_MEM)
  128. start = PCIBIOS_MIN_MEM + hose->mem_space->start;
  129. /*
  130.  * The following holds at least for the Low Cost
  131.  * Alpha implementation of the PCI interface:
  132.  *
  133.  * In sparse memory address space, the first
  134.  * octant (16MB) of every 128MB segment is
  135.  * aliased to the very first 16 MB of the
  136.  * address space (i.e., it aliases the ISA
  137.  * memory address space).  Thus, we try to
  138.  * avoid allocating PCI devices in that range.
  139.  * Can be allocated in 2nd-7th octant only.
  140.  * Devices that need more than 112MB of
  141.  * address space must be accessed through
  142.  * dense memory space only!
  143.  */
  144. /* Align to multiple of size of minimum base.  */
  145. alignto = MAX(0x1000, size);
  146. start = ALIGN(start, alignto);
  147. if (hose->sparse_mem_base && size <= 7 * 16*MB) {
  148. if (((start / (16*MB)) & 0x7) == 0) {
  149. start &= ~(128*MB - 1);
  150. start += 16*MB;
  151. start  = ALIGN(start, alignto);
  152. }
  153. if (start/(128*MB) != (start + size - 1)/(128*MB)) {
  154. start &= ~(128*MB - 1);
  155. start += (128 + 16)*MB;
  156. start  = ALIGN(start, alignto);
  157. }
  158. }
  159. }
  160. res->start = start;
  161. }
  162. #undef MAX
  163. #undef ALIGN
  164. #undef KB
  165. #undef MB
  166. #undef GB
  167. void __init
  168. pcibios_init(void)
  169. {
  170. if (!alpha_mv.init_pci)
  171. return;
  172. alpha_mv.init_pci();
  173. }
  174. char * __init
  175. pcibios_setup(char *str)
  176. {
  177. return str;
  178. }
  179. void __init
  180. pcibios_fixup_resource(struct resource *res, struct resource *root)
  181. {
  182. res->start += root->start;
  183. res->end += root->start;
  184. }
  185. void __init
  186. pcibios_fixup_device_resources(struct pci_dev *dev, struct pci_bus *bus)
  187. {
  188. /* Update device resources.  */
  189. struct pci_controller *hose = (struct pci_controller *)bus->sysdata;
  190. int i;
  191. for (i = 0; i < PCI_NUM_RESOURCES; i++) {
  192. if (!dev->resource[i].start)
  193. continue;
  194. if (dev->resource[i].flags & IORESOURCE_IO)
  195. pcibios_fixup_resource(&dev->resource[i],
  196.        hose->io_space);
  197. else if (dev->resource[i].flags & IORESOURCE_MEM)
  198. pcibios_fixup_resource(&dev->resource[i],
  199.        hose->mem_space);
  200. }
  201. }
  202. void __init
  203. pcibios_fixup_bus(struct pci_bus *bus)
  204. {
  205. /* Propogate hose info into the subordinate devices.  */
  206. struct pci_controller *hose = bus->sysdata;
  207. struct list_head *ln;
  208. struct pci_dev *dev = bus->self;
  209. if (!dev) {
  210. /* Root bus */
  211. bus->resource[0] = hose->io_space;
  212. bus->resource[1] = hose->mem_space;
  213. } else {
  214. /* This is a bridge. Do not care how it's initialized,
  215.    just link its resources to the bus ones */
  216. int i;
  217. for(i=0; i<3; i++) {
  218. bus->resource[i] =
  219. &dev->resource[PCI_BRIDGE_RESOURCES+i];
  220. bus->resource[i]->name = bus->name;
  221. }
  222. bus->resource[0]->flags |= pci_bridge_check_io(dev);
  223. bus->resource[1]->flags |= IORESOURCE_MEM;
  224. /* For now, propogate hose limits to the bus;
  225.    we'll adjust them later. */
  226. bus->resource[0]->end = hose->io_space->end;
  227. bus->resource[1]->end = hose->mem_space->end;
  228. /* Turn off downstream PF memory address range by default */
  229. bus->resource[2]->start = 1024*1024;
  230. bus->resource[2]->end = bus->resource[2]->start - 1;
  231. }
  232. for (ln = bus->devices.next; ln != &bus->devices; ln = ln->next) {
  233. struct pci_dev *dev = pci_dev_b(ln);
  234. if ((dev->class >> 8) != PCI_CLASS_BRIDGE_PCI)
  235. pcibios_fixup_device_resources(dev, bus);
  236. }
  237. }
  238. void
  239. pcibios_update_resource(struct pci_dev *dev, struct resource *root,
  240. struct resource *res, int resource)
  241. {
  242. struct pci_controller *hose = dev->sysdata;
  243. int where;
  244. u32 reg;
  245. if (resource < PCI_ROM_RESOURCE) 
  246. where = PCI_BASE_ADDRESS_0 + (resource * 4);
  247. else if (resource == PCI_ROM_RESOURCE)
  248. where = dev->rom_base_reg;
  249. else {
  250. return; /* Don't update non-standard resources here. */
  251. }
  252. /* Point root at the hose root. */
  253. if (res->flags & IORESOURCE_IO)
  254. root = hose->io_space;
  255. if (res->flags & IORESOURCE_MEM)
  256. root = hose->mem_space;
  257. reg = (res->start - root->start) | (res->flags & 0xf);
  258. pci_write_config_dword(dev, where, reg);
  259. if ((res->flags & (PCI_BASE_ADDRESS_SPACE
  260.    | PCI_BASE_ADDRESS_MEM_TYPE_MASK))
  261.     == (PCI_BASE_ADDRESS_SPACE_MEMORY
  262. | PCI_BASE_ADDRESS_MEM_TYPE_64)) {
  263. pci_write_config_dword(dev, where+4, 0);
  264. printk(KERN_WARNING "PCI: dev %s type 64-bitn", dev->name);
  265. }
  266. /* ??? FIXME -- record old value for shutdown.  */
  267. }
  268. void __init
  269. pcibios_update_irq(struct pci_dev *dev, int irq)
  270. {
  271. pci_write_config_byte(dev, PCI_INTERRUPT_LINE, irq);
  272. /* ??? FIXME -- record old value for shutdown.  */
  273. }
  274. /* Most Alphas have straight-forward swizzling needs.  */
  275. u8 __init
  276. common_swizzle(struct pci_dev *dev, u8 *pinp)
  277. {
  278. struct pci_controller *hose = dev->sysdata;
  279. if (dev->bus->number != hose->first_busno) {
  280. u8 pin = *pinp;
  281. do {
  282. pin = bridge_swizzle(pin, PCI_SLOT(dev->devfn));
  283. /* Move up the chain of bridges. */
  284. dev = dev->bus->self;
  285. } while (dev->bus->self);
  286. *pinp = pin;
  287. /* The slot is the slot of the last bridge. */
  288. }
  289. return PCI_SLOT(dev->devfn);
  290. }
  291. void __init
  292. pcibios_fixup_pbus_ranges(struct pci_bus * bus,
  293.   struct pbus_set_ranges_data * ranges)
  294. {
  295. struct pci_controller *hose = (struct pci_controller *)bus->sysdata;
  296. ranges->io_start -= hose->io_space->start;
  297. ranges->io_end -= hose->io_space->start;
  298. ranges->mem_start -= hose->mem_space->start;
  299. ranges->mem_end -= hose->mem_space->start;
  300. }
  301. int
  302. pcibios_enable_device(struct pci_dev *dev)
  303. {
  304. /* Nothing to do, since we enable all devices at startup.  */
  305. return 0;
  306. }
  307. /*
  308.  *  If we set up a device for bus mastering, we need to check the latency
  309.  *  timer as certain firmware forgets to set it properly, as seen
  310.  *  on SX164 and LX164 with SRM.
  311.  */
  312. void
  313. pcibios_set_master(struct pci_dev *dev)
  314. {
  315. u8 lat;
  316. pci_read_config_byte(dev, PCI_LATENCY_TIMER, &lat);
  317. if (lat >= 16) return;
  318. printk("PCI: Setting latency timer of device %s to 64n",
  319. dev->slot_name);
  320. pci_write_config_byte(dev, PCI_LATENCY_TIMER, 64);
  321. }
  322. void __init
  323. common_init_pci(void)
  324. {
  325. struct pci_controller *hose;
  326. struct pci_bus *bus;
  327. int next_busno;
  328. /* Scan all of the recorded PCI controllers.  */
  329. for (next_busno = 0, hose = hose_head; hose; hose = hose->next) {
  330. hose->first_busno = next_busno;
  331. hose->last_busno = 0xff;
  332. bus = pci_scan_bus(next_busno, alpha_mv.pci_ops, hose);
  333. hose->bus = bus;
  334. next_busno = hose->last_busno = bus->subordinate;
  335. next_busno += 1;
  336. }
  337. pci_assign_unassigned_resources();
  338. pci_fixup_irqs(alpha_mv.pci_swizzle, alpha_mv.pci_map_irq);
  339. }
  340. struct pci_controller * __init
  341. alloc_pci_controller(void)
  342. {
  343. struct pci_controller *hose;
  344. hose = alloc_bootmem(sizeof(*hose));
  345. *hose_tail = hose;
  346. hose_tail = &hose->next;
  347. return hose;
  348. }
  349. struct resource * __init
  350. alloc_resource(void)
  351. {
  352. struct resource *res;
  353. res = alloc_bootmem(sizeof(*res));
  354. return res;
  355. }
  356. /* Provide information on locations of various I/O regions in physical
  357.    memory.  Do this on a per-card basis so that we choose the right hose.  */
  358. asmlinkage long
  359. sys_pciconfig_iobase(long which, unsigned long bus, unsigned long dfn)
  360. {
  361. struct pci_controller *hose;
  362. struct pci_dev *dev;
  363. /* from hose or from bus.devfn */
  364. if (which & IOBASE_FROM_HOSE) {
  365. for(hose = hose_head; hose; hose = hose->next) 
  366. if (hose->index == bus) break;
  367. if (!hose) return -ENODEV;
  368. } else {
  369. /* Special hook for ISA access.  */
  370. if (bus == 0 && dfn == 0) {
  371. hose = pci_isa_hose;
  372. } else {
  373. dev = pci_find_slot(bus, dfn);
  374. if (!dev)
  375. return -ENODEV;
  376. hose = dev->sysdata;
  377. }
  378. }
  379. switch (which & ~IOBASE_FROM_HOSE) {
  380. case IOBASE_HOSE:
  381. return hose->index;
  382. case IOBASE_SPARSE_MEM:
  383. return hose->sparse_mem_base;
  384. case IOBASE_DENSE_MEM:
  385. return hose->dense_mem_base;
  386. case IOBASE_SPARSE_IO:
  387. return hose->sparse_io_base;
  388. case IOBASE_DENSE_IO:
  389. return hose->dense_io_base;
  390. case IOBASE_ROOT_BUS:
  391. return hose->bus->number;
  392. }
  393. return -EOPNOTSUPP;
  394. }
  395. /* Return the index of the PCI controller for device PDEV. */
  396. int
  397. pci_controller_num(struct pci_dev *pdev)
  398. {
  399.         struct pci_controller *hose = pdev->sysdata;
  400. return (hose ? hose->index : -ENXIO);
  401. }