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

嵌入式Linux

开发平台:

Unix_Linux

  1. /***********************************************************************
  2.  * Copyright 2001 MontaVista Software Inc.
  3.  * Author: Jun Sun, jsun@mvista.com or jsun@junsun.net
  4.  *
  5.  * arch/mips/ddb5xxx/common/pci.c
  6.  *     Common PCI routines for DDB5xxx - as a matter of fact, meant for all 
  7.  * MIPS machines.
  8.  *
  9.  * This program is free software; you can redistribute  it and/or modify it
  10.  * under  the terms of  the GNU General  Public License as published by the
  11.  * Free Software Foundation;  either version 2 of the  License, or (at your
  12.  * option) any later version.
  13.  ***********************************************************************
  14.  */
  15. /*
  16.  * This file contains common PCI routines meant to be shared for
  17.  * all MIPS machines.
  18.  *
  19.  * Strategies:
  20.  *
  21.  * . We rely on pci_auto.c file to assign PCI resources (MEM and IO)
  22.  *   TODO: this shold be optional for some machines where they do have
  23.  *   a real "pcibios" that does resource assignment.
  24.  *
  25.  * . We then use pci_scan_bus() to "discover" all the resources for
  26.  *   later use by Linux.
  27.  *
  28.  * . We finally reply on a board supplied function, pcibios_fixup_irq(), to 
  29.  *   to assign the interrupts.  We may use setup-irq.c under drivers/pci
  30.  *   later.
  31.  *
  32.  * . Specifically, we will *NOT* use pci_assign_unassigned_resources(),
  33.  *   because we assume all PCI devices should have the resources correctly
  34.  *   assigned and recorded.
  35.  *
  36.  * Limitations:
  37.  *
  38.  * . We "collapse" all IO and MEM spaces in sub-buses under a top-level bus 
  39.  *   into a contiguous range.  
  40.  * 
  41.  * . In the case of Memory space, the rnage is 1:1 mapping with CPU physical
  42.  *   address space.
  43.  *
  44.  * . In the case of IO space, it starts from 0, and the beginning address
  45.  *   is mapped to KSEG0ADDR(mips_io_port) in the CPU physical address.
  46.  *
  47.  * . These are the current MIPS limitations (by ioremap, etc).  In the
  48.  *   future, we may remove them.
  49.  *
  50.  * Credits:
  51.  * Most of the code are derived from the pci routines from PPC and Alpha,
  52.  * which were mostly writtne by
  53.  * Cort Dougan, cort@fsmlabs.com
  54.  * Matt Porter, mporter@mvista.com
  55.  * Dave Rusling david.rusling@reo.mts.dec.com
  56.  * David Mosberger davidm@cs.arizona.edu
  57.  */
  58. #include <linux/kernel.h>
  59. #include <linux/init.h>
  60. #include <linux/types.h>
  61. #include <linux/pci.h>
  62. #include <asm/ddb5xxx/pci.h>
  63. #include <asm/ddb5xxx/debug.h>
  64. struct pci_fixup pcibios_fixups[] = { {0} };
  65. extern int pciauto_assign_resources(int busno, struct pci_channel * hose);
  66. void __init pcibios_init(void)
  67. {
  68. struct pci_channel *p;
  69. struct pci_bus *bus;
  70. int busno;
  71. /* assign resources */
  72. busno=0;
  73. for (p= mips_pci_channels; p->pci_ops != NULL; p++) {
  74. busno = pciauto_assign_resources(busno, p) + 1;
  75. }
  76. /* scan the buses */
  77. busno = 0;
  78. for (p= mips_pci_channels; p->pci_ops != NULL; p++) {
  79. bus = pci_scan_bus(busno, p->pci_ops, p);
  80. busno = bus->subordinate+1;
  81. }
  82. /* fixup irqs (board specific routines) */
  83. pcibios_fixup_irqs();
  84. /* 
  85.  * should we do a fixup of ioport_resource and iomem_resource
  86.  * based on mips_pci_channels?  
  87.  * Let us wait and see if this is a common need and whether there
  88.  * are exceptions.  Until then, each board should adjust them
  89.  * perhaps in their setup() function.
  90.  */
  91. }
  92. int pcibios_enable_device(struct pci_dev *dev)
  93. {
  94. /* pciauto_assign_resources() will enable all devices found */
  95. return 0;
  96. }
  97. unsigned long __init
  98. pci_bridge_check_io(struct pci_dev *bridge)
  99. {
  100.         u16 io;
  101.         pci_read_config_word(bridge, PCI_IO_BASE, &io);
  102.         if (!io) {
  103.                 pci_write_config_word(bridge, PCI_IO_BASE, 0xf0f0);
  104.                 pci_read_config_word(bridge, PCI_IO_BASE, &io);
  105.                 pci_write_config_word(bridge, PCI_IO_BASE, 0x0);
  106.         }
  107.         if (io)
  108.                 return IORESOURCE_IO;
  109.         printk(KERN_WARNING "PCI: bridge %s does not support I/O forwarding!n",
  110.                                 bridge->name);
  111.         return 0;
  112. }
  113. void __init pcibios_fixup_bus(struct pci_bus *bus)
  114. {
  115.         /* Propogate hose info into the subordinate devices.  */
  116.         struct pci_channel *hose = bus->sysdata;
  117.         struct pci_dev *dev = bus->self;
  118.         if (!dev) {
  119.                 /* Root bus */
  120.                 bus->resource[0] = hose->io_resource;
  121.                 bus->resource[1] = hose->mem_resource;
  122.         } else {
  123.                 /* This is a bridge. Do not care how it's initialized,
  124.                    just link its resources to the bus ones */
  125.                 int i;
  126.                 for(i=0; i<3; i++) {
  127.                         bus->resource[i] =
  128.                                 &dev->resource[PCI_BRIDGE_RESOURCES+i];
  129.                         bus->resource[i]->name = bus->name;
  130.                 }
  131.                 bus->resource[0]->flags |= pci_bridge_check_io(dev);
  132.                 bus->resource[1]->flags |= IORESOURCE_MEM;
  133.                 /* For now, propogate hose limits to the bus;
  134.                    we'll adjust them later. */
  135.                 bus->resource[0]->end = hose->io_resource->end;
  136.                 bus->resource[1]->end = hose->mem_resource->end;
  137.                 /* Turn off downstream PF memory address range by default */
  138.                 bus->resource[2]->start = 1024*1024;
  139.                 bus->resource[2]->end = bus->resource[2]->start - 1;
  140.         }
  141. }
  142. char *pcibios_setup(char *str)
  143. {
  144. return str;
  145. }
  146. void
  147. pcibios_align_resource(void *data, struct resource *res, unsigned long size)
  148. {
  149. /* this should not be called */
  150. MIPS_ASSERT(1 == 0);
  151. }
  152. void
  153. pcibios_update_resource(struct pci_dev *dev, struct resource *root,
  154.                              struct resource *res, int resource)
  155. {
  156. /* this should not be called */
  157. MIPS_ASSERT(1 == 0);
  158. }