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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * bios32.c - PCI BIOS functions for m68k systems.
  3.  *
  4.  * Written by Wout Klaren.
  5.  *
  6.  * Based on the DEC Alpha bios32.c by Dave Rusling and David Mosberger.
  7.  */
  8. #include <linux/config.h>
  9. #include <linux/init.h>
  10. #include <linux/kernel.h>
  11. #if 0
  12. # define DBG_DEVS(args) printk args
  13. #else
  14. # define DBG_DEVS(args)
  15. #endif
  16. #ifdef CONFIG_PCI
  17. /*
  18.  * PCI support for Linux/m68k. Currently only the Hades is supported.
  19.  *
  20.  * The support for PCI bridges in the DEC Alpha version has
  21.  * been removed in this version.
  22.  */
  23. #include <linux/pci.h>
  24. #include <linux/slab.h>
  25. #include <linux/mm.h>
  26. #include <asm/io.h>
  27. #include <asm/pci.h>
  28. #include <asm/uaccess.h>
  29. #define KB 1024
  30. #define MB (1024*KB)
  31. #define GB (1024*MB)
  32. #define MAJOR_REV 0
  33. #define MINOR_REV 5
  34. /*
  35.  * Align VAL to ALIGN, which must be a power of two.
  36.  */
  37. #define ALIGN(val,align) (((val) + ((align) - 1)) & ~((align) - 1))
  38. #define MAX(val1, val2)  (((val1) > (val2)) ? val1 : val2)
  39. /*
  40.  * Offsets relative to the I/O and memory base addresses from where resources
  41.  * are allocated.
  42.  */
  43. #define IO_ALLOC_OFFSET 0x00004000
  44. #define MEM_ALLOC_OFFSET 0x04000000
  45. /*
  46.  * Declarations of hardware specific initialisation functions.
  47.  */
  48. extern struct pci_bus_info *init_hades_pci(void);
  49. /*
  50.  * Bus info structure of the PCI bus. A pointer to this structure is
  51.  * put in the sysdata member of the pci_bus structure.
  52.  */
  53. static struct pci_bus_info *bus_info;
  54. static int pci_modify = 1; /* If set, layout the PCI bus ourself. */
  55. static int skip_vga = 0; /* If set do not modify base addresses
  56.    of vga cards.*/
  57. static int disable_pci_burst = 0; /* If set do not allow PCI bursts. */
  58. static unsigned int io_base;
  59. static unsigned int mem_base;
  60. struct pci_fixup pcibios_fixups[] =
  61. {
  62. { 0 }
  63. };
  64. /*
  65.  * static void disable_dev(struct pci_dev *dev)
  66.  *
  67.  * Disable PCI device DEV so that it does not respond to I/O or memory
  68.  * accesses.
  69.  *
  70.  * Parameters:
  71.  *
  72.  * dev - device to disable.
  73.  */
  74. static void __init disable_dev(struct pci_dev *dev)
  75. {
  76. struct pci_bus *bus;
  77. unsigned short cmd;
  78. if (((dev->class >> 8 == PCI_CLASS_NOT_DEFINED_VGA) ||
  79.      (dev->class >> 8 == PCI_CLASS_DISPLAY_VGA) ||
  80.      (dev->class >> 8 == PCI_CLASS_DISPLAY_XGA)) && skip_vga)
  81. return;
  82. bus = dev->bus;
  83. pcibios_read_config_word(bus->number, dev->devfn, PCI_COMMAND, &cmd);
  84. cmd &= (~PCI_COMMAND_IO & ~PCI_COMMAND_MEMORY & ~PCI_COMMAND_MASTER);
  85. pcibios_write_config_word(bus->number, dev->devfn, PCI_COMMAND, cmd);
  86. }
  87. /*
  88.  * static void layout_dev(struct pci_dev *dev)
  89.  *
  90.  * Layout memory and I/O for a device.
  91.  *
  92.  * Parameters:
  93.  *
  94.  * device - device to layout memory and I/O for.
  95.  */
  96. static void __init layout_dev(struct pci_dev *dev)
  97. {
  98. struct pci_bus *bus;
  99. unsigned short cmd;
  100. unsigned int base, mask, size, reg;
  101. unsigned int alignto;
  102. int i;
  103. /*
  104.  * Skip video cards if requested.
  105.  */
  106. if (((dev->class >> 8 == PCI_CLASS_NOT_DEFINED_VGA) ||
  107.      (dev->class >> 8 == PCI_CLASS_DISPLAY_VGA) ||
  108.      (dev->class >> 8 == PCI_CLASS_DISPLAY_XGA)) && skip_vga)
  109. return;
  110. bus = dev->bus;
  111. pcibios_read_config_word(bus->number, dev->devfn, PCI_COMMAND, &cmd);
  112. for (reg = PCI_BASE_ADDRESS_0, i = 0; reg <= PCI_BASE_ADDRESS_5; reg += 4, i++)
  113. {
  114. /*
  115.  * Figure out how much space and of what type this
  116.  * device wants.
  117.  */
  118. pcibios_write_config_dword(bus->number, dev->devfn, reg,
  119.    0xffffffff);
  120. pcibios_read_config_dword(bus->number, dev->devfn, reg, &base);
  121. if (!base)
  122. {
  123. /* this base-address register is unused */
  124. dev->resource[i].start = 0;
  125. dev->resource[i].end = 0;
  126. dev->resource[i].flags = 0;
  127. continue;
  128. }
  129. /*
  130.  * We've read the base address register back after
  131.  * writing all ones and so now we must decode it.
  132.  */
  133. if (base & PCI_BASE_ADDRESS_SPACE_IO)
  134. {
  135. /*
  136.  * I/O space base address register.
  137.  */
  138. cmd |= PCI_COMMAND_IO;
  139. base &= PCI_BASE_ADDRESS_IO_MASK;
  140. mask = (~base << 1) | 0x1;
  141. size = (mask & base) & 0xffffffff;
  142. /*
  143.  * Align to multiple of size of minimum base.
  144.  */
  145. alignto = MAX(0x040, size) ;
  146. base = ALIGN(io_base, alignto);
  147. io_base = base + size;
  148. pcibios_write_config_dword(bus->number, dev->devfn,
  149.    reg, base | PCI_BASE_ADDRESS_SPACE_IO);
  150. dev->resource[i].start = base;
  151. dev->resource[i].end = dev->resource[i].start + size - 1;
  152. dev->resource[i].flags = IORESOURCE_IO | PCI_BASE_ADDRESS_SPACE_IO;
  153. DBG_DEVS(("layout_dev: IO address: %lXn", base));
  154. }
  155. else
  156. {
  157. unsigned int type;
  158. /*
  159.  * Memory space base address register.
  160.  */
  161. cmd |= PCI_COMMAND_MEMORY;
  162. type = base & PCI_BASE_ADDRESS_MEM_TYPE_MASK;
  163. base &= PCI_BASE_ADDRESS_MEM_MASK;
  164. mask = (~base << 1) | 0x1;
  165. size = (mask & base) & 0xffffffff;
  166. switch (type)
  167. {
  168. case PCI_BASE_ADDRESS_MEM_TYPE_32:
  169. case PCI_BASE_ADDRESS_MEM_TYPE_64:
  170. break;
  171. case PCI_BASE_ADDRESS_MEM_TYPE_1M:
  172. printk("bios32 WARNING: slot %d, function %d "
  173.        "requests memory below 1MB---don't "
  174.        "know how to do that.n",
  175.        PCI_SLOT(dev->devfn),
  176.        PCI_FUNC(dev->devfn));
  177. continue;
  178. }
  179. /*
  180.  * Align to multiple of size of minimum base.
  181.  */
  182. alignto = MAX(0x1000, size) ;
  183. base = ALIGN(mem_base, alignto);
  184. mem_base = base + size;
  185. pcibios_write_config_dword(bus->number, dev->devfn,
  186.    reg, base);
  187. dev->resource[i].start = base;
  188. dev->resource[i].end = dev->resource[i].start + size - 1;
  189. dev->resource[i].flags = IORESOURCE_MEM;
  190. if (type == PCI_BASE_ADDRESS_MEM_TYPE_64)
  191. {
  192. /*
  193.  * 64-bit address, set the highest 32 bits
  194.  * to zero.
  195.  */
  196. reg += 4;
  197. pcibios_write_config_dword(bus->number, dev->devfn,
  198.    reg, 0);
  199. i++;
  200. dev->resource[i].start = 0;
  201. dev->resource[i].end = 0;
  202. dev->resource[i].flags = 0;
  203. }
  204. }
  205. }
  206. /*
  207.  * Enable device:
  208.  */
  209. if (dev->class >> 8 == PCI_CLASS_NOT_DEFINED ||
  210.     dev->class >> 8 == PCI_CLASS_NOT_DEFINED_VGA ||
  211.     dev->class >> 8 == PCI_CLASS_DISPLAY_VGA ||
  212.     dev->class >> 8 == PCI_CLASS_DISPLAY_XGA)
  213. {
  214. /*
  215.  * All of these (may) have I/O scattered all around
  216.  * and may not use i/o-base address registers at all.
  217.  * So we just have to always enable I/O to these
  218.  * devices.
  219.  */
  220. cmd |= PCI_COMMAND_IO;
  221. }
  222. pcibios_write_config_word(bus->number, dev->devfn, PCI_COMMAND,
  223.   cmd | PCI_COMMAND_MASTER);
  224. pcibios_write_config_byte(bus->number, dev->devfn, PCI_LATENCY_TIMER,
  225.   (disable_pci_burst) ? 0 : 32);
  226. if (bus_info != NULL)
  227. bus_info->conf_device(bus->number, dev->devfn); /* Machine dependent configuration. */
  228. DBG_DEVS(("layout_dev: bus %d  slot 0x%x  VID 0x%x  DID 0x%x  class 0x%xn",
  229.   bus->number, PCI_SLOT(dev->devfn), dev->vendor, dev->device, dev->class));
  230. }
  231. /*
  232.  * static void layout_bus(struct pci_bus *bus)
  233.  *
  234.  * Layout memory and I/O for all devices on the given bus.
  235.  *
  236.  * Parameters:
  237.  *
  238.  * bus - bus.
  239.  */
  240. static void __init layout_bus(struct pci_bus *bus)
  241. {
  242. unsigned int bio, bmem;
  243. struct pci_dev *dev;
  244. DBG_DEVS(("layout_bus: starting bus %dn", bus->number));
  245. if (!bus->devices && !bus->children)
  246. return;
  247. /*
  248.  * Align the current bases on appropriate boundaries (4K for
  249.  * IO and 1MB for memory).
  250.  */
  251. bio = io_base = ALIGN(io_base, 4*KB);
  252. bmem = mem_base = ALIGN(mem_base, 1*MB);
  253. /*
  254.  * PCI devices might have been setup by a PCI BIOS emulation
  255.  * running under TOS. In these cases there is a
  256.  * window during which two devices may have an overlapping
  257.  * address range. To avoid this causing trouble, we first
  258.  * turn off the I/O and memory address decoders for all PCI
  259.  * devices.  They'll be re-enabled only once all address
  260.  * decoders are programmed consistently.
  261.  */
  262. DBG_DEVS(("layout_bus: disable_dev for bus %dn", bus->number));
  263. for (dev = bus->devices; dev; dev = dev->sibling)
  264. {
  265. if ((dev->class >> 16 != PCI_BASE_CLASS_BRIDGE) ||
  266.     (dev->class >> 8 == PCI_CLASS_BRIDGE_PCMCIA))
  267. disable_dev(dev);
  268. }
  269. /*
  270.  * Allocate space to each device:
  271.  */
  272. DBG_DEVS(("layout_bus: starting bus %d devicesn", bus->number));
  273. for (dev = bus->devices; dev; dev = dev->sibling)
  274. {
  275. if ((dev->class >> 16 != PCI_BASE_CLASS_BRIDGE) ||
  276.     (dev->class >> 8 == PCI_CLASS_BRIDGE_PCMCIA))
  277. layout_dev(dev);
  278. }
  279. DBG_DEVS(("layout_bus: bus %d finishedn", bus->number));
  280. }
  281. /*
  282.  * static void pcibios_fixup(void)
  283.  *
  284.  * Layout memory and I/O of all devices on the PCI bus if 'pci_modify' is
  285.  * true. This might be necessary because not every m68k machine with a PCI
  286.  * bus has a PCI BIOS. This function should be called right after
  287.  * pci_scan_bus() in pcibios_init().
  288.  */
  289. static void __init pcibios_fixup(void)
  290. {
  291. if (pci_modify)
  292. {
  293. /*
  294.  * Set base addresses for allocation of I/O and memory space.
  295.  */
  296. io_base = bus_info->io_space.start + IO_ALLOC_OFFSET;
  297. mem_base = bus_info->mem_space.start + MEM_ALLOC_OFFSET;
  298. /*
  299.  * Scan the tree, allocating PCI memory and I/O space.
  300.  */
  301. layout_bus(pci_bus_b(pci_root.next));
  302. }
  303. /*
  304.  * Fix interrupt assignments, etc.
  305.  */
  306. bus_info->fixup(pci_modify);
  307. }
  308. /*
  309.  * static void pcibios_claim_resources(struct pci_bus *bus)
  310.  *
  311.  * Claim all resources that are assigned to devices on the given bus.
  312.  *
  313.  * Parameters:
  314.  *
  315.  * bus - bus.
  316.  */
  317. static void __init pcibios_claim_resources(struct pci_bus *bus)
  318. {
  319. struct pci_dev *dev;
  320. int i;
  321. while (bus)
  322. {
  323. for (dev = bus->devices; (dev != NULL); dev = dev->sibling)
  324. {
  325. for (i = 0; i < PCI_NUM_RESOURCES; i++)
  326. {
  327. struct resource *r = &dev->resource[i];
  328. struct resource *pr;
  329. struct pci_bus_info *bus_info = (struct pci_bus_info *) dev->sysdata;
  330. if ((r->start == 0) || (r->parent != NULL))
  331. continue;
  332. #if 1
  333. if (r->flags & IORESOURCE_IO)
  334. pr = &bus_info->io_space;
  335. else
  336. pr = &bus_info->mem_space;
  337. #else
  338. if (r->flags & IORESOURCE_IO)
  339. pr = &ioport_resource;
  340. else
  341. pr = &iomem_resource;
  342. #endif
  343. if (request_resource(pr, r) < 0)
  344. {
  345. printk(KERN_ERR "PCI: Address space collision on region %d of device %sn", i, dev->name);
  346. }
  347. }
  348. }
  349. if (bus->children)
  350. pcibios_claim_resources(bus->children);
  351. bus = bus->next;
  352. }
  353. }
  354. /*
  355.  * int pcibios_assign_resource(struct pci_dev *dev, int i)
  356.  *
  357.  * Assign a new address to a PCI resource.
  358.  *
  359.  * Parameters:
  360.  *
  361.  * dev - device.
  362.  * i - resource.
  363.  *
  364.  * Result: 0 if successful.
  365.  */
  366. int __init pcibios_assign_resource(struct pci_dev *dev, int i)
  367. {
  368. struct resource *r = &dev->resource[i];
  369. struct resource *pr = pci_find_parent_resource(dev, r);
  370. unsigned long size = r->end + 1;
  371. if (!pr)
  372. return -EINVAL;
  373. if (r->flags & IORESOURCE_IO)
  374. {
  375. if (size > 0x100)
  376. return -EFBIG;
  377. if (allocate_resource(pr, r, size, bus_info->io_space.start +
  378.       IO_ALLOC_OFFSET,  bus_info->io_space.end, 1024))
  379. return -EBUSY;
  380. }
  381. else
  382. {
  383. if (allocate_resource(pr, r, size, bus_info->mem_space.start +
  384.       MEM_ALLOC_OFFSET, bus_info->mem_space.end, size))
  385. return -EBUSY;
  386. }
  387. if (i < 6)
  388. pci_write_config_dword(dev, PCI_BASE_ADDRESS_0 + 4 * i, r->start);
  389. return 0;
  390. }
  391. void __init pcibios_fixup_bus(struct pci_bus *bus)
  392. {
  393. struct pci_dev *dev;
  394. void *sysdata;
  395. sysdata = (bus->parent) ? bus->parent->sysdata : bus->sysdata;
  396. for (dev = bus->devices; (dev != NULL); dev = dev->sibling)
  397. dev->sysdata = sysdata;
  398. }
  399. void __init pcibios_init(void)
  400. {
  401. printk("Linux/m68k PCI BIOS32 revision %x.%02xn", MAJOR_REV, MINOR_REV);
  402. bus_info = NULL;
  403. #ifdef CONFIG_HADES
  404. if (MACH_IS_HADES)
  405. bus_info = init_hades_pci();
  406. #endif
  407. if (bus_info != NULL)
  408. {
  409. printk("PCI: Probing PCI hardwaren");
  410. pci_scan_bus(0, bus_info->m68k_pci_ops, bus_info);
  411. pcibios_fixup();
  412. pcibios_claim_resources(pci_root);
  413. }
  414. else
  415. printk("PCI: No PCI bus detectedn");
  416. }
  417. char * __init pcibios_setup(char *str)
  418. {
  419. if (!strcmp(str, "nomodify"))
  420. {
  421. pci_modify = 0;
  422. return NULL;
  423. }
  424. else if (!strcmp(str, "skipvga"))
  425. {
  426. skip_vga = 1;
  427. return NULL;
  428. }
  429. else if (!strcmp(str, "noburst"))
  430. {
  431. disable_pci_burst = 1;
  432. return NULL;
  433. }
  434. return str;
  435. }
  436. #endif /* CONFIG_PCI */