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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/zorro.h -- Amiga AutoConfig (Zorro) Bus Definitions
  3.  *
  4.  *  Copyright (C) 1995--2000 Geert Uytterhoeven
  5.  *
  6.  *  This file is subject to the terms and conditions of the GNU General Public
  7.  *  License.  See the file COPYING in the main directory of this archive
  8.  *  for more details.
  9.  */
  10. #ifndef _LINUX_ZORRO_H
  11. #define _LINUX_ZORRO_H
  12. #ifndef __ASSEMBLY__
  13.     /*
  14.      *  Each Zorro board has a 32-bit ID of the form
  15.      *
  16.      *      mmmmmmmmmmmmmmmmppppppppeeeeeeee
  17.      *
  18.      *  with
  19.      *
  20.      *      mmmmmmmmmmmmmmmm 16-bit Manufacturer ID (assigned by CBM (sigh))
  21.      *      pppppppp 8-bit Product ID (assigned by manufacturer)
  22.      *      eeeeeeee 8-bit Extended Product ID (currently only used
  23.      * for some GVP boards)
  24.      */
  25. #define ZORRO_MANUF(id) ((id) >> 16)
  26. #define ZORRO_PROD(id) (((id) >> 8) & 0xff)
  27. #define ZORRO_EPC(id) ((id) & 0xff)
  28. #define ZORRO_ID(manuf, prod, epc) 
  29.     ((ZORRO_MANUF_##manuf << 16) | ((prod) << 8) | (epc))
  30. typedef __u32 zorro_id;
  31. #define ZORRO_WILDCARD (0xffffffff) /* not official */
  32. /* Include the ID list */
  33. #include <linux/zorro_ids.h>
  34.     /*
  35.      *  GVP identifies most of its products through the 'extended product code'
  36.      *  (epc). The epc has to be ANDed with the GVP_PRODMASK before the
  37.      *  identification.
  38.      */
  39. #define GVP_PRODMASK (0xf8)
  40. #define GVP_SCSICLKMASK (0x01)
  41. enum GVP_flags {
  42.     GVP_IO = 0x01,
  43.     GVP_ACCEL = 0x02,
  44.     GVP_SCSI = 0x04,
  45.     GVP_24BITDMA = 0x08,
  46.     GVP_25BITDMA = 0x10,
  47.     GVP_NOBANK = 0x20,
  48.     GVP_14MHZ = 0x40,
  49. };
  50. struct Node {
  51.     struct  Node *ln_Succ; /* Pointer to next (successor) */
  52.     struct  Node *ln_Pred; /* Pointer to previous (predecessor) */
  53.     __u8    ln_Type;
  54.     __s8    ln_Pri; /* Priority, for sorting */
  55.     __s8    *ln_Name; /* ID string, null terminated */
  56. } __attribute__ ((packed));
  57. struct ExpansionRom {
  58.     /* -First 16 bytes of the expansion ROM */
  59.     __u8  er_Type; /* Board type, size and flags */
  60.     __u8  er_Product; /* Product number, assigned by manufacturer */
  61.     __u8  er_Flags; /* Flags */
  62.     __u8  er_Reserved03; /* Must be zero ($ff inverted) */
  63.     __u16 er_Manufacturer; /* Unique ID, ASSIGNED BY COMMODORE-AMIGA! */
  64.     __u32 er_SerialNumber; /* Available for use by manufacturer */
  65.     __u16 er_InitDiagVec; /* Offset to optional "DiagArea" structure */
  66.     __u8  er_Reserved0c;
  67.     __u8  er_Reserved0d;
  68.     __u8  er_Reserved0e;
  69.     __u8  er_Reserved0f;
  70. } __attribute__ ((packed));
  71. /* er_Type board type bits */
  72. #define ERT_TYPEMASK 0xc0
  73. #define ERT_ZORROII 0xc0
  74. #define ERT_ZORROIII 0x80
  75. /* other bits defined in er_Type */
  76. #define ERTB_MEMLIST 5 /* Link RAM into free memory list */
  77. #define ERTF_MEMLIST (1<<5)
  78. struct ConfigDev {
  79.     struct Node  cd_Node;
  80.     __u8   cd_Flags; /* (read/write) */
  81.     __u8   cd_Pad;  /* reserved */
  82.     struct ExpansionRom cd_Rom;  /* copy of board's expansion ROM */
  83.     void *cd_BoardAddr; /* where in memory the board was placed */
  84.     __u32  cd_BoardSize; /* size of board in bytes */
  85.     __u16   cd_SlotAddr; /* which slot number (PRIVATE) */
  86.     __u16   cd_SlotSize; /* number of slots (PRIVATE) */
  87.     void *cd_Driver; /* pointer to node of driver */
  88.     struct ConfigDev *cd_NextCD; /* linked list of drivers to config */
  89.     __u32  cd_Unused[4]; /* for whatever the driver wants */
  90. } __attribute__ ((packed));
  91. #else /* __ASSEMBLY__ */
  92. LN_Succ = 0
  93. LN_Pred = LN_Succ+4
  94. LN_Type = LN_Pred+4
  95. LN_Pri = LN_Type+1
  96. LN_Name = LN_Pri+1
  97. LN_sizeof = LN_Name+4
  98. ER_Type = 0
  99. ER_Product = ER_Type+1
  100. ER_Flags = ER_Product+1
  101. ER_Reserved03 = ER_Flags+1
  102. ER_Manufacturer = ER_Reserved03+1
  103. ER_SerialNumber = ER_Manufacturer+2
  104. ER_InitDiagVec = ER_SerialNumber+4
  105. ER_Reserved0c = ER_InitDiagVec+2
  106. ER_Reserved0d = ER_Reserved0c+1
  107. ER_Reserved0e = ER_Reserved0d+1
  108. ER_Reserved0f = ER_Reserved0e+1
  109. ER_sizeof = ER_Reserved0f+1
  110. CD_Node = 0
  111. CD_Flags = CD_Node+LN_sizeof
  112. CD_Pad = CD_Flags+1
  113. CD_Rom = CD_Pad+1
  114. CD_BoardAddr = CD_Rom+ER_sizeof
  115. CD_BoardSize = CD_BoardAddr+4
  116. CD_SlotAddr = CD_BoardSize+4
  117. CD_SlotSize = CD_SlotAddr+2
  118. CD_Driver = CD_SlotSize+2
  119. CD_NextCD = CD_Driver+4
  120. CD_Unused = CD_NextCD+4
  121. CD_sizeof = CD_Unused+(4*4)
  122. #endif /* __ASSEMBLY__ */
  123. #ifndef __ASSEMBLY__
  124. #define ZORRO_NUM_AUTO 16
  125. #ifdef __KERNEL__
  126. #include <linux/init.h>
  127. #include <linux/ioport.h>
  128. #include <asm/zorro.h>
  129. struct zorro_dev {
  130.     struct ExpansionRom rom;
  131.     zorro_id id;
  132.     u16 slotaddr;
  133.     u16 slotsize;
  134.     char name[64];
  135.     struct resource resource;
  136. };
  137. extern unsigned int zorro_num_autocon; /* # of autoconfig devices found */
  138. extern struct zorro_dev zorro_autocon[ZORRO_NUM_AUTO];
  139.     /*
  140.      *  Zorro Functions
  141.      */
  142. extern void zorro_init(void);
  143. extern void zorro_name_device(struct zorro_dev *dev);
  144. extern struct zorro_dev *zorro_find_device(zorro_id id,
  145.    struct zorro_dev *from);
  146. #define zorro_request_device(z, name) 
  147.     request_mem_region((z)->resource.start, 
  148.        (z)->resource.end-(z)->resource.start+1, (name))
  149. #define zorro_check_device(z) 
  150.     check_mem_region((z)->resource.start, 
  151.      (z)->resource.end-(z)->resource.start+1)
  152. #define zorro_release_device(z) 
  153.     release_mem_region((z)->resource.start, 
  154.        (z)->resource.end-(z)->resource.start+1)
  155.     /*
  156.      *  Bitmask indicating portions of available Zorro II RAM that are unused
  157.      *  by the system. Every bit represents a 64K chunk, for a maximum of 8MB
  158.      *  (128 chunks, physical 0x00200000-0x009fffff).
  159.      *
  160.      *  If you want to use (= allocate) portions of this RAM, you should clear
  161.      *  the corresponding bits.
  162.      */
  163. extern __u32 zorro_unused_z2ram[4];
  164. #define Z2RAM_START (0x00200000)
  165. #define Z2RAM_END (0x00a00000)
  166. #define Z2RAM_SIZE (0x00800000)
  167. #define Z2RAM_CHUNKSIZE (0x00010000)
  168. #define Z2RAM_CHUNKMASK (0x0000ffff)
  169. #define Z2RAM_CHUNKSHIFT (16)
  170. #endif /* !__ASSEMBLY__ */
  171. #endif /* __KERNEL__ */
  172. #endif /* _LINUX_ZORRO_H */