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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2. ** -----------------------------------------------------------------------------
  3. **
  4. **  Perle Specialix driver for Linux
  5. **  Ported from existing RIO Driver for SCO sources.
  6.  *
  7.  *  (C) 1990 - 2000 Specialix International Ltd., Byfleet, Surrey, UK.
  8.  *
  9.  *      This program is free software; you can redistribute it and/or modify
  10.  *      it under the terms of the GNU General Public License as published by
  11.  *      the Free Software Foundation; either version 2 of the License, or
  12.  *      (at your option) any later version.
  13.  *
  14.  *      This program is distributed in the hope that it will be useful,
  15.  *      but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  *      GNU General Public License for more details.
  18.  *
  19.  *      You should have received a copy of the GNU General Public License
  20.  *      along with this program; if not, write to the Free Software
  21.  *      Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  22. **
  23. ** Module : eisa.h
  24. ** SID : 1.2
  25. ** Last Modified : 11/6/98 11:34:10
  26. ** Retrieved : 11/6/98 11:34:21
  27. **
  28. **  ident @(#)eisa.h 1.2
  29. **
  30. ** -----------------------------------------------------------------------------
  31. */
  32. #ifndef __rio_eisa_h__
  33. #define __rio_eisa_h__
  34. #ifdef SCCS_LABELS
  35. #ifndef lint
  36. static char *_eisa_h_sccs_ = "@(#)eisa.h 1.2";
  37. #endif
  38. #endif
  39. /*
  40. ** things to do with the EISA bus
  41. */
  42. #define RIO_EISA_STRING_ADDRESS  0xfffd9 /* where EISA is stored */
  43. #define RIO_MAX_EISA_SLOTS 16 /* how many EISA slots? */
  44. #define RIO_EISA_IDENT 0x984D /* Specialix */
  45. #define RIO_EISA_PRODUCT_CODE 0x14 /* Code 14 */
  46. #define RIO_EISA_ENABLE_BIT 0x01 /* To enable card */
  47. #define EISA_MEMORY_BASE_LO 0xC00 /* A16-A23 */
  48. #define EISA_MEMORY_BASE_HI 0xC01 /* A24-A31 */
  49. #define EISA_INTERRUPT_VEC 0xC02 /* see below */
  50. #define EISA_CONTROL_PORT 0xC02 /* see below */
  51. #define EISA_INTERRUPT_RESET 0xC03 /* read to clear IRQ */
  52. #define EISA_PRODUCT_IDENT_LO 0xC80 /* where RIO_EISA_IDENT is */
  53. #define EISA_PRODUCT_IDENT_HI 0xC81
  54. #define EISA_PRODUCT_NUMBER 0xC82   /* where PROD_CODE is */
  55. #define EISA_REVISION_NUMBER 0xC83 /* revision (1dp) */
  56. #define EISA_ENABLE 0xC84 /* set LSB to enable card */
  57. #define EISA_UNIQUE_NUM_0 0xC88 /* vomit */
  58. #define EISA_UNIQUE_NUM_1 0xC8A
  59. #define EISA_UNIQUE_NUM_2 0xC90 /* bit strangely arranged */
  60. #define EISA_UNIQUE_NUM_3 0xC92
  61. #define EISA_MANUF_YEAR 0xC98 /* when */
  62. #define EISA_MANUF_WEEK 0xC9A /* more when */
  63. #define EISA_TP_BOOT_FROM_RAM 0x01
  64. #define EISA_TP_BOOT_FROM_LINK 0x00
  65. #define EISA_TP_FAST_LINKS 0x02
  66. #define EISA_TP_SLOW_LINKS 0x00
  67. #define EISA_TP_BUS_ENABLE 0x04
  68. #define EISA_TP_BUS_DISABLE 0x00
  69. #define EISA_TP_RUN 0x08
  70. #define EISA_TP_RESET 0x00
  71. #define EISA_POLLED 0x00
  72. #define EISA_IRQ_3 0x30
  73. #define EISA_IRQ_4 0x40
  74. #define EISA_IRQ_5 0x50
  75. #define EISA_IRQ_6 0x60
  76. #define EISA_IRQ_7 0x70
  77. #define EISA_IRQ_9 0x90
  78. #define EISA_IRQ_10 0xA0
  79. #define EISA_IRQ_11 0xB0
  80. #define EISA_IRQ_12 0xC0
  81. #define EISA_IRQ_14 0xE0
  82. #define EISA_IRQ_15 0xF0
  83. #define EISA_INTERRUPT_MASK 0xF0
  84. #define EISA_CONTROL_MASK 0x0F
  85. #define RIO_EISA_DEFAULT_MODE EISA_TP_SLOW_LINKS
  86. #define RIOEisaToIvec(X) (uchar )((uchar)((X) & EISA_INTERRUPT_MASK)>>4)
  87. #define INBZ(z,x) inb(((z)<<12) | (x))
  88. #define OUTBZ(z,x,y) outb((((z)<<12) | (x)), y)
  89. #endif /* __rio_eisa_h__ */