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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *    $Id: zorro.c,v 1.1.2.1 1998/06/07 23:21:02 geert Exp $
  3.  *
  4.  *    Zorro Bus Services
  5.  *
  6.  *    Copyright (C) 1995-2000 Geert Uytterhoeven
  7.  *
  8.  *    This file is subject to the terms and conditions of the GNU General Public
  9.  *    License.  See the file COPYING in the main directory of this archive
  10.  *    for more details.
  11.  */
  12. #include <linux/module.h>
  13. #include <linux/types.h>
  14. #include <linux/kernel.h>
  15. #include <linux/init.h>
  16. #include <linux/zorro.h>
  17. #include <asm/setup.h>
  18. #include <asm/bitops.h>
  19. #include <asm/amigahw.h>
  20.     /*
  21.      *  Zorro Expansion Devices
  22.      */
  23. u_int zorro_num_autocon = 0;
  24. struct zorro_dev zorro_autocon[ZORRO_NUM_AUTO];
  25.     /*
  26.      *  Zorro Bus Resources
  27.      *  Order _does_ matter! (see code below)
  28.      */
  29. static struct resource zorro_res[4] = {
  30.     /* Zorro II regions (on Zorro II/III) */
  31.     { "Zorro II exp", 0x00e80000, 0x00efffff },
  32.     { "Zorro II mem", 0x00200000, 0x009fffff },
  33.     /* Zorro III regions (on Zorro III only) */
  34.     { "Zorro III exp", 0xff000000, 0xffffffff },
  35.     { "Zorro III cfg", 0x40000000, 0x7fffffff }
  36. };
  37. static u_int zorro_num_res __initdata = 0;
  38.     /*
  39.      *  Find Zorro Devices
  40.      */
  41. struct zorro_dev *zorro_find_device(zorro_id id, struct zorro_dev *from)
  42. {
  43.     struct zorro_dev *dev;
  44.     if (!MACH_IS_AMIGA || !AMIGAHW_PRESENT(ZORRO))
  45. return NULL;
  46.     for (dev = from ? from+1 : &zorro_autocon[0];
  47.  dev < zorro_autocon+zorro_num_autocon;
  48.  dev++)
  49. if (id == ZORRO_WILDCARD || id == dev->id)
  50.     return dev;
  51.     return NULL;
  52. }
  53.     /*
  54.      *  Bitmask indicating portions of available Zorro II RAM that are unused
  55.      *  by the system. Every bit represents a 64K chunk, for a maximum of 8MB
  56.      *  (128 chunks, physical 0x00200000-0x009fffff).
  57.      *
  58.      *  If you want to use (= allocate) portions of this RAM, you should clear
  59.      *  the corresponding bits.
  60.      *
  61.      *  Possible uses:
  62.      *      - z2ram device
  63.      *      - SCSI DMA bounce buffers
  64.      *
  65.      *  FIXME: use the normal resource management
  66.      */
  67. u32 zorro_unused_z2ram[4] = { 0, 0, 0, 0 };
  68. static void __init mark_region(unsigned long start, unsigned long end,
  69.        int flag)
  70. {
  71.     if (flag)
  72. start += Z2RAM_CHUNKMASK;
  73.     else
  74. end += Z2RAM_CHUNKMASK;
  75.     start &= ~Z2RAM_CHUNKMASK;
  76.     end &= ~Z2RAM_CHUNKMASK;
  77.     if (end <= Z2RAM_START || start >= Z2RAM_END)
  78. return;
  79.     start = start < Z2RAM_START ? 0x00000000 : start-Z2RAM_START;
  80.     end = end > Z2RAM_END ? Z2RAM_SIZE : end-Z2RAM_START;
  81.     while (start < end) {
  82. u32 chunk = start>>Z2RAM_CHUNKSHIFT;
  83. if (flag)
  84.     set_bit(chunk, zorro_unused_z2ram);
  85. else
  86.     clear_bit(chunk, zorro_unused_z2ram);
  87. start += Z2RAM_CHUNKSIZE;
  88.     }
  89. }
  90. static struct resource __init *zorro_find_parent_resource(struct zorro_dev *z)
  91. {
  92.     int i;
  93.     for (i = 0; i < zorro_num_res; i++)
  94. if (z->resource.start >= zorro_res[i].start &&
  95.     z->resource.end <= zorro_res[i].end)
  96. return &zorro_res[i];
  97.     return &iomem_resource;
  98. }
  99.     /*
  100.      *  Initialization
  101.      */
  102. void __init zorro_init(void)
  103. {
  104.     struct zorro_dev *dev;
  105.     u_int i;
  106.     if (!MACH_IS_AMIGA || !AMIGAHW_PRESENT(ZORRO))
  107. return;
  108.     printk("Zorro: Probing AutoConfig expansion devices: %d device%sn",
  109.    zorro_num_autocon, zorro_num_autocon == 1 ? "" : "s");
  110.     /* Request the resources */
  111.     zorro_num_res = AMIGAHW_PRESENT(ZORRO3) ? 4 : 2;
  112.     for (i = 0; i < zorro_num_res; i++)
  113. request_resource(&iomem_resource, &zorro_res[i]);
  114.     for (i = 0; i < zorro_num_autocon; i++) {
  115. dev = &zorro_autocon[i];
  116. dev->id = (dev->rom.er_Manufacturer<<16) | (dev->rom.er_Product<<8);
  117. if (dev->id == ZORRO_PROD_GVP_EPC_BASE) {
  118.     /* GVP quirk */
  119.     unsigned long magic = dev->resource.start+0x8000;
  120.     dev->id |= *(u16 *)ZTWO_VADDR(magic) & GVP_PRODMASK;
  121. }
  122. sprintf(dev->name, "Zorro device %08x", dev->id);
  123. zorro_name_device(dev);
  124. dev->resource.name = dev->name;
  125. if (request_resource(zorro_find_parent_resource(dev), &dev->resource))
  126.     printk(KERN_ERR "Zorro: Address space collision on device %s "
  127.    "[%lx:%lx]n",
  128.    dev->name, dev->resource.start, dev->resource.end);
  129.     }
  130.     /* Mark all available Zorro II memory */
  131.     for (i = 0; i < zorro_num_autocon; i++) {
  132. dev = &zorro_autocon[i];
  133. if (dev->rom.er_Type & ERTF_MEMLIST)
  134.     mark_region(dev->resource.start, dev->resource.end+1, 1);
  135.     }
  136.     /* Unmark all used Zorro II memory */
  137.     for (i = 0; i < m68k_num_memory; i++)
  138. if (m68k_memory[i].addr < 16*1024*1024)
  139.     mark_region(m68k_memory[i].addr,
  140. m68k_memory[i].addr+m68k_memory[i].size, 0);
  141. }
  142. EXPORT_SYMBOL(zorro_find_device);
  143. EXPORT_SYMBOL(zorro_unused_z2ram);
  144. MODULE_LICENSE("GPL");