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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* header file for DIO boards for the HP300 architecture.
  2.  * Maybe this should handle DIO-II later?
  3.  * The general structure of this is vaguely based on how
  4.  * the Amiga port handles Zorro boards.
  5.  * Copyright (C) Peter Maydell 05/1998 <pmaydell@chiark.greenend.org.uk>
  6.  *
  7.  * The board IDs are from the NetBSD kernel, which for once provided
  8.  * helpful comments...
  9.  *
  10.  * This goes with arch/m68k/hp300/dio.c
  11.  */
  12. #ifndef _LINUX_DIO_H
  13. #define _LINUX_DIO_H
  14. /* The DIO boards in a system are distinguished by 'select codes' which 
  15.  * range from 0-63 (DIO) and 132-255 (DIO-II). 
  16.  * The DIO board with select code sc is located at physical address 
  17.  *     0x600000 + sc * 0x10000
  18.  * So DIO cards cover [0x600000-0x800000); the areas [0x200000-0x400000) and
  19.  * [0x800000-0x1000000) are for additional space required by things
  20.  * like framebuffers. [0x400000-0x600000) is for miscellaneous internal I/O.
  21.  * On Linux, this is currently all mapped into the virtual address space
  22.  * at 0xf0000000 on bootup.
  23.  * DIO-II boards are at 0x1000000 + (sc - 132) * 0x400000
  24.  * which is address range [0x1000000-0x20000000) -- too big to map completely,
  25.  * so currently we just don't handle DIO-II boards.  It wouldn't be hard to 
  26.  * do with ioremap() though.
  27.  */
  28. #ifdef __KERNEL__
  29. /* DIO/DIO-II boards all have the following 8bit registers.
  30.  * These are offsets from the base of the device.
  31.  */
  32. #define DIO_IDOFF     0x01                        /* primary device ID */
  33. #define DIO_IPLOFF    0x03                        /* interrupt priority level */
  34. #define DIO_SECIDOFF  0x15                        /* secondary device ID */
  35. #define DIOII_SIZEOFF 0x101                       /* device size, DIO-II only */
  36. /* The internal HPIB device is special; this is its physaddr; its select code is 7. 
  37.  * The reason why we have to treat it specially is because apparently it's broken:
  38.  * the device ID isn't consistent/reliable. *sigh*
  39.  */
  40. #define DIO_IHPIBADDR 0x47800
  41. #define DIO_IHPIBSCODE 7
  42. /* If we don't have the internal HPIB defined, then treat select code 7 like
  43.  * any other. If we *do* have internal HPIB, then we just have to assume that
  44.  * select code 7 is the internal HPIB regardless of the ID register :-<
  45.  */
  46. #define CONFIG_IHPIB /* hack hack : not yet a proper config option */
  47. #ifdef CONFIG_IHPIB
  48. #define DIO_ISIHPIB(scode) ((scode) == DIO_IHPIBSCODE)
  49. #else
  50. #define DIO_ISIHPIB(scode) 0
  51. #endif
  52. #define DIO_VIRADDRBASE 0xf0000000                /* vir addr where IOspace is mapped */
  53. #define DIO_BASE                0x600000        /* start of DIO space */
  54. #define DIO_END                 0x1000000       /* end of DIO space */
  55. #define DIO_DEVSIZE             0x10000         /* size of a DIO device */
  56. #define DIOII_BASE              0x01000000      /* start of DIO-II space */
  57. #define DIOII_END               0x20000000      /* end of DIO-II space */
  58. #define DIOII_DEVSIZE           0x00400000      /* size of a DIO-II device */
  59. /* Highest valid select code. If we add DIO-II support this should become
  60.  * 256 for everything except HP320, which only has DIO.
  61.  */
  62. #define DIO_SCMAX 32                             
  63. #define DIOII_SCBASE 132 /* lowest DIO-II select code */
  64. #define DIO_SCINHOLE(scode) (((scode) >= 32) && ((scode) < DIOII_SCBASE))
  65. /* macros to read device IDs, given base address */
  66. #define DIO_ID(baseaddr) in_8((baseaddr) + DIO_IDOFF)
  67. #define DIO_SECID(baseaddr) in_8((baseaddr) + DIO_SECIDOFF)
  68. /* extract the interrupt level */
  69. #define DIO_IPL(baseaddr) (((in_8((baseaddr) + DIO_IPLOFF) >> 4) & 0x03) + 3)
  70. /* find the size of a DIO-II board's address space.
  71.  * DIO boards are all fixed length.
  72.  */
  73. #define DIOII_SIZE(baseaddr) ((in_8((baseaddr) + DIOII_SIZEOFF) + 1) * 0x100000)
  74. /* general purpose macro for both DIO and DIO-II */
  75. #define DIO_SIZE(scode, base) (DIO_ISDIOII((scode)) ? DIOII_SIZE((base)) : DIO_DEVSIZE)
  76. /* The hardware has primary and secondary IDs; we encode these in a single
  77.  * int as PRIMARY ID & (SECONDARY ID << 8).
  78.  * In practice this is only important for framebuffers,
  79.  * and everybody else just sets ID fields equal to the DIO_ID_FOO value.
  80.  */
  81. #define DIO_ENCODE_ID(pr,sec) ((((int)sec & 0xff) << 8) & ((int)pr & 0xff))
  82. /* macro to determine whether a given primary ID requires a secondary ID byte */
  83. #define DIO_NEEDSSECID(id) ((id) == DIO_ID_FBUFFER)
  84. /* Now a whole slew of macros giving device IDs and descriptive strings: */
  85. #define DIO_ID_DCA0     0x02 /* 98644A serial */
  86. #define DIO_DESC_DCA0 "98644A DCA0 serial"
  87. #define DIO_ID_DCA0REM  0x82 /* 98644A serial */
  88. #define DIO_DESC_DCA0REM "98644A DCA0REM serial"
  89. #define DIO_ID_DCA1     0x42 /* 98644A serial */
  90. #define DIO_DESC_DCA1 "98644A DCA1 serial"
  91. #define DIO_ID_DCA1REM  0xc2 /* 98644A serial */
  92. #define DIO_DESC_DCA1REM "98644A DCA1REM serial"
  93. #define DIO_ID_DCM      0x05 /* 98642A serial MUX */
  94. #define DIO_DESC_DCM "98642A DCM serial MUX"
  95. #define DIO_ID_DCMREM   0x85 /* 98642A serial MUX */
  96. #define DIO_DESC_DCMREM "98642A DCMREM serial MUX"
  97. #define DIO_ID_LAN      0x15 /* 98643A LAN */
  98. #define DIO_DESC_LAN "98643A LANCE ethernet"
  99. #define DIO_ID_FHPIB    0x08 /* 98625A/98625B fast HP-IB */
  100. #define DIO_DESC_FHPIB "98625A/98625B fast HPIB"
  101. #define DIO_ID_NHPIB    0x80 /* 98624A HP-IB (normal ie slow) */
  102. #define DIO_DESC_NHPIB "98624A HPIB"
  103. #define DIO_ID_IHPIB    0x00 /* internal HPIB (not its real ID, it hasn't got one! */
  104. #define DIO_DESC_IHPIB "internal HPIB"
  105. #define DIO_ID_SCSI0    0x07 /* 98625A SCSI */
  106. #define DIO_DESC_SCSI0 "98625A SCSI0"
  107. #define DIO_ID_SCSI1    0x27 /* ditto */
  108. #define DIO_DESC_SCSI1 "98625A SCSI1"
  109. #define DIO_ID_SCSI2    0x47 /* ditto */
  110. #define DIO_DESC_SCSI2 "98625A SCSI2"
  111. #define DIO_ID_SCSI3    0x67 /* ditto */
  112. #define DIO_DESC_SCSI3 "98625A SCSI3"
  113. #define DIO_ID_FBUFFER  0x39 /* framebuffer: flavour is distinguished by secondary ID */
  114. #define DIO_DESC_FBUFFER "bitmapped display"
  115. /* the NetBSD kernel source is a bit unsure as to what these next IDs actually do :-> */
  116. #define DIO_ID_MISC0    0x03 /* 98622A */
  117. #define DIO_DESC_MISC0 "98622A"
  118. #define DIO_ID_MISC1    0x04 /* 98623A */
  119. #define DIO_DESC_MISC1 "98623A"
  120. #define DIO_ID_PARALLEL 0x06 /* internal parallel */
  121. #define DIO_DESC_PARALLEL "internal parallel"
  122. #define DIO_ID_MISC2    0x09 /* 98287A keyboard */
  123. #define DIO_DESC_MISC2 "98287A keyboard"
  124. #define DIO_ID_MISC3    0x0a /* HP98635A FP accelerator */
  125. #define DIO_DESC_MISC3 "HP98635A FP accelerator"
  126. #define DIO_ID_MISC4    0x0b /* timer */
  127. #define DIO_DESC_MISC4 "timer"
  128. #define DIO_ID_MISC5    0x12 /* 98640A */
  129. #define DIO_DESC_MISC5 "98640A"
  130. #define DIO_ID_MISC6    0x16 /* 98659A */
  131. #define DIO_DESC_MISC6 "98659A"
  132. #define DIO_ID_MISC7    0x19 /* 237 display */
  133. #define DIO_DESC_MISC7 "237 display"
  134. #define DIO_ID_MISC8    0x1a /* quad-wide card */
  135. #define DIO_DESC_MISC8 "quad-wide card"
  136. #define DIO_ID_MISC9    0x1b /* 98253A */
  137. #define DIO_DESC_MISC9 "98253A"
  138. #define DIO_ID_MISC10   0x1c /* 98627A */
  139. #define DIO_DESC_MISC10 "98253A"
  140. #define DIO_ID_MISC11   0x1d /* 98633A */
  141. #define DIO_DESC_MISC11 "98633A"
  142. #define DIO_ID_MISC12   0x1e /* 98259A */
  143. #define DIO_DESC_MISC12 "98259A"
  144. #define DIO_ID_MISC13   0x1f /* 8741 */
  145. #define DIO_DESC_MISC13 "8741"
  146. #define DIO_ID_VME      0x31 /* 98577A VME adapter */
  147. #define DIO_DESC_VME "98577A VME adapter"
  148. #define DIO_ID_DCL      0x34 /* 98628A serial */
  149. #define DIO_DESC_DCL "98628A DCL serial"
  150. #define DIO_ID_DCLREM   0xb4 /* 98628A serial */
  151. #define DIO_DESC_DCLREM "98628A DCLREM serial"
  152. /* These are the secondary IDs for the framebuffers */
  153. #define DIO_ID2_GATORBOX    0x01 /* 98700/98710 "gatorbox" */
  154. #define DIO_DESC2_GATORBOX       "98700/98710 "gatorbox" display"
  155. #define DIO_ID2_TOPCAT      0x02 /* 98544/98545/98547 "topcat" */
  156. #define DIO_DESC2_TOPCAT         "98544/98545/98547 "topcat" display"
  157. #define DIO_ID2_RENAISSANCE 0x04 /* 98720/98721 "renaissance" */
  158. #define DIO_DESC2_RENAISSANCE    "98720/98721 "renaissance" display"
  159. #define DIO_ID2_LRCATSEYE   0x05 /* lowres "catseye" */
  160. #define DIO_DESC2_LRCATSEYE      "low-res catseye display"
  161. #define DIO_ID2_HRCCATSEYE  0x06 /* highres colour "catseye" */
  162. #define DIO_DESC2_HRCCATSEYE     "high-res color catseye display"
  163. #define DIO_ID2_HRMCATSEYE  0x07 /* highres mono "catseye" */
  164. #define DIO_DESC2_HRMCATSEYE     "high-res mono catseye display"
  165. #define DIO_ID2_DAVINCI     0x08 /* 98730/98731 "davinci" */
  166. #define DIO_DESC2_DAVINCI        "98730/98731 "davinci" display"
  167. #define DIO_ID2_XXXCATSEYE  0x09 /* "catseye" */
  168. #define DIO_DESC2_XXXCATSEYE     "catseye display"
  169. #define DIO_ID2_HYPERION    0x0e /* A1096A "hyperion" */
  170. #define DIO_DESC2_HYPERION       "A1096A "hyperion" display"
  171. #define DIO_ID2_XGENESIS    0x0b /* "x-genesis"; no NetBSD support */
  172. #define DIO_DESC2_XGENESIS       ""x-genesis" display"
  173. #define DIO_ID2_TIGER       0x0c /* "tiger"; no NetBSD support */
  174. #define DIO_DESC2_TIGER          ""tiger" display"
  175. #define DIO_ID2_YGENESIS    0x0d /* "y-genesis"; no NetBSD support */
  176. #define DIO_DESC2_YGENESIS       ""y-genesis" display"
  177. /* if you add new IDs then you should tell dio.c about them so it can
  178.  * identify them...
  179.  */
  180. extern void dio_init(void);
  181. extern int dio_find(int deviceid);
  182. extern void *dio_scodetoviraddr(int scode);
  183. extern int dio_scodetoipl(int scode);
  184. extern const char *dio_scodetoname(int scode);
  185. extern void dio_config_board(int scode);
  186. extern void dio_unconfig_board(int scode);
  187. #endif /* __KERNEL__ */
  188. #endif /* ndef _LINUX_DIO_H */