isapnp.h
上传用户:sy_wanhua
上传日期:2013-07-25
资源大小:3048k
文件大小:5k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. /*
  2.  *  ISA Plug & Play support
  3.  *  Copyright (c) by Jaroslav Kysela <perex@suse.cz>
  4.  *
  5.  *  Modified by Ed Okerson <eokerson@quicknet.net> to work with the 2.2.x
  6.  *  series of Linux kernels. 11/17/99
  7.  *
  8.  *   This program is free software; you can redistribute it and/or modify
  9.  *   it under the terms of the GNU General Public License as published by
  10.  *   the Free Software Foundation; either version 2 of the License, or
  11.  *   (at your option) any later version.
  12.  *
  13.  *   This program is distributed in the hope that it will be useful,
  14.  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.  *   GNU General Public License for more details.
  17.  *
  18.  *   You should have received a copy of the GNU General Public License
  19.  *   along with this program; if not, write to the Free Software
  20.  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  21.  *
  22.  */
  23. #ifndef LINUX_ISAPNP_H
  24. #define LINUX_ISAPNP_H
  25. #include <linux/config.h>
  26. #include <linux/errno.h>
  27. /*
  28.  *  Configuration registers (TODO: change by specification)
  29.  */ 
  30. #define ISAPNP_CFG_ACTIVATE 0x30 /* byte */
  31. #define ISAPNP_CFG_MEM 0x40 /* 4 * dword */
  32. #define ISAPNP_CFG_PORT 0x60 /* 8 * word */
  33. #define ISAPNP_CFG_IRQ 0x70 /* 2 * word */
  34. #define ISAPNP_CFG_DMA 0x74 /* 2 * byte */
  35. /*
  36.  *
  37.  */
  38. #define ISAPNP_VENDOR(a,b,c) (((((a)-'A'+1)&0x3f)<<2)|
  39. ((((b)-'A'+1)&0x18)>>3)|((((b)-'A'+1)&7)<<13)|
  40. ((((c)-'A'+1)&0x1f)<<8))
  41. #define ISAPNP_DEVICE(x) ((((x)&0xf000)>>8)|
  42.  (((x)&0x0f00)>>8)|
  43.  (((x)&0x00f0)<<8)|
  44.  (((x)&0x000f)<<8))
  45. #define ISAPNP_FUNCTION(x) ISAPNP_DEVICE(x)
  46. /*
  47.  *
  48.  */
  49. #ifdef __KERNEL__
  50. #include <linux/pci.h>
  51. #define ISAPNP_PORT_FLAG_16BITADDR (1<<0)
  52. #define ISAPNP_PORT_FLAG_FIXED (1<<1)
  53. struct isapnp_port {
  54. unsigned short min; /* min base number */
  55. unsigned short max; /* max base number */
  56. unsigned char align; /* align boundary */
  57. unsigned char size; /* size of range */
  58. unsigned char flags; /* port flags */
  59. unsigned char pad; /* pad */
  60. struct isapnp_resources *res; /* parent */
  61. struct isapnp_port *next; /* next port */
  62. };
  63. struct isapnp_irq {
  64. unsigned short map; /* bitmaks for IRQ lines */
  65. unsigned char flags; /* IRQ flags */
  66. unsigned char pad; /* pad */
  67. struct isapnp_resources *res; /* parent */
  68. struct isapnp_irq *next; /* next IRQ */
  69. };
  70. struct isapnp_dma {
  71. unsigned char map; /* bitmask for DMA channels */
  72. unsigned char flags; /* DMA flags */
  73. struct isapnp_resources *res; /* parent */
  74. struct isapnp_dma *next; /* next port */
  75. };
  76. struct isapnp_mem {
  77. unsigned int min; /* min base number */
  78. unsigned int max; /* max base number */
  79. unsigned int align; /* align boundary */
  80. unsigned int size; /* size of range */
  81. unsigned char flags; /* memory flags */
  82. unsigned char pad; /* pad */
  83. struct isapnp_resources *res; /* parent */
  84. struct isapnp_mem *next; /* next memory resource */
  85. };
  86. struct isapnp_mem32 {
  87. /* TODO */
  88. unsigned char data[17];
  89. struct isapnp_resources *res; /* parent */
  90. struct isapnp_mem32 *next; /* next 32-bit memory resource */
  91. };
  92. #define ISAPNP_RES_PRIORITY_PREFERRED 0
  93. #define ISAPNP_RES_PRIORITY_ACCEPTABLE 1
  94. #define ISAPNP_RES_PRIORITY_FUNCTIONAL 2
  95. #define ISAPNP_RES_PRIORITY_INVALID 65535
  96. struct isapnp_resources {
  97. unsigned short priority; /* priority */
  98. unsigned short dependent; /* dependent resources */
  99. struct isapnp_port *port; /* first port */
  100. struct isapnp_irq *irq; /* first IRQ */
  101. struct isapnp_dma *dma; /* first DMA */
  102. struct isapnp_mem *mem; /* first memory resource */
  103. struct isapnp_mem32 *mem32; /* first 32-bit memory */
  104. struct pnp_dev *dev; /* parent */
  105. struct isapnp_resources *alt; /* alternative resource (aka dependent resources) */
  106. struct isapnp_resources *next; /* next resource */
  107. };
  108. /* lowlevel configuration */
  109. int isapnp_present(void);
  110. int isapnp_cfg_begin(int csn, int device);
  111. int isapnp_cfg_end(void);
  112. unsigned char isapnp_read_byte(unsigned char idx);
  113. unsigned short isapnp_read_word(unsigned char idx);
  114. unsigned int isapnp_read_dword(unsigned char idx);
  115. void isapnp_write_byte(unsigned char idx, unsigned char val);
  116. void isapnp_write_word(unsigned char idx, unsigned short val);
  117. void isapnp_write_dword(unsigned char idx, unsigned int val);
  118. void isapnp_wake(unsigned char csn);
  119. void isapnp_device(unsigned char device);
  120. void isapnp_activate(unsigned char device);
  121. void isapnp_deactivate(unsigned char device);
  122. /* manager */
  123. struct pnp_bus *isapnp_find_card(unsigned short vendor,
  124.  unsigned short device,
  125.  struct pnp_bus *from);
  126. struct pnp_dev *isapnp_find_dev(struct pnp_bus *card,
  127. unsigned short vendor,
  128. unsigned short function,
  129. struct pnp_dev *from);
  130. /* misc */
  131. void isapnp_resource_change(struct resource *resource,
  132.     unsigned long start,
  133.     unsigned long size);
  134. /* init/main.c */
  135. int isapnp_init(void);
  136. #endif /* __KERNEL__ */
  137. #endif /* LINUX_ISAPNP_H */