isapnp.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:9k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  ISA Plug & Play support
  3.  *  Copyright (c) by Jaroslav Kysela <perex@suse.cz>
  4.  *
  5.  *
  6.  *   This program is free software; you can redistribute it and/or modify
  7.  *   it under the terms of the GNU General Public License as published by
  8.  *   the Free Software Foundation; either version 2 of the License, or
  9.  *   (at your option) any later version.
  10.  *
  11.  *   This program is distributed in the hope that it will be useful,
  12.  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  *   GNU General Public License for more details.
  15.  *
  16.  *   You should have received a copy of the GNU General Public License
  17.  *   along with this program; if not, write to the Free Software
  18.  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  19.  *
  20.  */
  21. #ifndef LINUX_ISAPNP_H
  22. #define LINUX_ISAPNP_H
  23. #include <linux/config.h>
  24. #include <linux/errno.h>
  25. /*
  26.  *  Configuration registers (TODO: change by specification)
  27.  */ 
  28. #define ISAPNP_CFG_ACTIVATE 0x30 /* byte */
  29. #define ISAPNP_CFG_MEM 0x40 /* 4 * dword */
  30. #define ISAPNP_CFG_PORT 0x60 /* 8 * word */
  31. #define ISAPNP_CFG_IRQ 0x70 /* 2 * word */
  32. #define ISAPNP_CFG_DMA 0x74 /* 2 * byte */
  33. /*
  34.  *
  35.  */
  36. #define ISAPNP_VENDOR(a,b,c) (((((a)-'A'+1)&0x3f)<<2)|
  37. ((((b)-'A'+1)&0x18)>>3)|((((b)-'A'+1)&7)<<13)|
  38. ((((c)-'A'+1)&0x1f)<<8))
  39. #define ISAPNP_DEVICE(x) ((((x)&0xf000)>>8)|
  40.  (((x)&0x0f00)>>8)|
  41.  (((x)&0x00f0)<<8)|
  42.  (((x)&0x000f)<<8))
  43. #define ISAPNP_FUNCTION(x) ISAPNP_DEVICE(x)
  44. /*
  45.  *
  46.  */
  47. #ifdef __KERNEL__
  48. #include <linux/pci.h>
  49. #define ISAPNP_PORT_FLAG_16BITADDR (1<<0)
  50. #define ISAPNP_PORT_FLAG_FIXED (1<<1)
  51. struct isapnp_port {
  52. unsigned short min; /* min base number */
  53. unsigned short max; /* max base number */
  54. unsigned char align; /* align boundary */
  55. unsigned char size; /* size of range */
  56. unsigned char flags; /* port flags */
  57. unsigned char pad; /* pad */
  58. struct isapnp_resources *res; /* parent */
  59. struct isapnp_port *next; /* next port */
  60. };
  61. struct isapnp_irq {
  62. unsigned short map; /* bitmaks for IRQ lines */
  63. unsigned char flags; /* IRQ flags */
  64. unsigned char pad; /* pad */
  65. struct isapnp_resources *res; /* parent */
  66. struct isapnp_irq *next; /* next IRQ */
  67. };
  68. struct isapnp_dma {
  69. unsigned char map; /* bitmask for DMA channels */
  70. unsigned char flags; /* DMA flags */
  71. struct isapnp_resources *res; /* parent */
  72. struct isapnp_dma *next; /* next port */
  73. };
  74. struct isapnp_mem {
  75. unsigned int min; /* min base number */
  76. unsigned int max; /* max base number */
  77. unsigned int align; /* align boundary */
  78. unsigned int size; /* size of range */
  79. unsigned char flags; /* memory flags */
  80. unsigned char pad; /* pad */
  81. struct isapnp_resources *res; /* parent */
  82. struct isapnp_mem *next; /* next memory resource */
  83. };
  84. struct isapnp_mem32 {
  85. /* TODO */
  86. unsigned char data[17];
  87. struct isapnp_resources *res; /* parent */
  88. struct isapnp_mem32 *next; /* next 32-bit memory resource */
  89. };
  90. struct isapnp_fixup {
  91. unsigned short vendor; /* matching vendor */
  92. unsigned short device; /* matching device */
  93. void (*quirk_function)(struct pci_dev *dev); /* fixup function */
  94. };
  95. #define ISAPNP_RES_PRIORITY_PREFERRED 0
  96. #define ISAPNP_RES_PRIORITY_ACCEPTABLE 1
  97. #define ISAPNP_RES_PRIORITY_FUNCTIONAL 2
  98. #define ISAPNP_RES_PRIORITY_INVALID 65535
  99. struct isapnp_resources {
  100. unsigned short priority; /* priority */
  101. unsigned short dependent; /* dependent resources */
  102. struct isapnp_port *port; /* first port */
  103. struct isapnp_irq *irq; /* first IRQ */
  104. struct isapnp_dma *dma; /* first DMA */
  105. struct isapnp_mem *mem; /* first memory resource */
  106. struct isapnp_mem32 *mem32; /* first 32-bit memory */
  107. struct pci_dev *dev; /* parent */
  108. struct isapnp_resources *alt; /* alternative resource (aka dependent resources) */
  109. struct isapnp_resources *next; /* next resource */
  110. };
  111. #define ISAPNP_ANY_ID 0xffff
  112. #define ISAPNP_CARD_DEVS 8
  113. #define ISAPNP_CARD_ID(_va, _vb, _vc, _device) 
  114. card_vendor: ISAPNP_VENDOR(_va, _vb, _vc), card_device: ISAPNP_DEVICE(_device)
  115. #define ISAPNP_CARD_END 
  116. card_vendor: 0, card_device: 0
  117. #define ISAPNP_DEVICE_ID(_va, _vb, _vc, _function) 
  118. { vendor: ISAPNP_VENDOR(_va, _vb, _vc), function: ISAPNP_FUNCTION(_function) }
  119. /* export used IDs outside module */
  120. #define ISAPNP_CARD_TABLE(name) 
  121. MODULE_GENERIC_TABLE(isapnp_card, name)
  122. struct isapnp_card_id {
  123. unsigned long driver_data; /* data private to the driver */
  124. unsigned short card_vendor, card_device;
  125. struct {
  126. unsigned short vendor, function;
  127. } devs[ISAPNP_CARD_DEVS]; /* logical devices */
  128. };
  129. #define ISAPNP_DEVICE_SINGLE(_cva, _cvb, _cvc, _cdevice, _dva, _dvb, _dvc, _dfunction) 
  130. card_vendor: ISAPNP_VENDOR(_cva, _cvb, _cvc), card_device: ISAPNP_DEVICE(_cdevice), 
  131. vendor: ISAPNP_VENDOR(_dva, _dvb, _dvc), function: ISAPNP_FUNCTION(_dfunction)
  132. #define ISAPNP_DEVICE_SINGLE_END 
  133. card_vendor: 0, card_device: 0
  134. struct isapnp_device_id {
  135. unsigned short card_vendor, card_device;
  136. unsigned short vendor, function;
  137. unsigned long driver_data; /* data private to the driver */
  138. };
  139. struct isapnp_driver {
  140. struct list_head node;
  141. char *name;
  142. const struct isapnp_device_id *id_table; /* NULL if wants all devices */
  143. int  (*probe)  (struct pci_dev *dev, const struct isapnp_device_id *id); /* New device inserted */
  144. void (*remove) (struct pci_dev *dev); /* Device removed (NULL if not a hot-plug capable driver) */
  145. };
  146. #if defined(CONFIG_ISAPNP) || (defined(CONFIG_ISAPNP_MODULE) && defined(MODULE))
  147. #define __ISAPNP__
  148. /* lowlevel configuration */
  149. int isapnp_present(void);
  150. int isapnp_cfg_begin(int csn, int device);
  151. int isapnp_cfg_end(void);
  152. unsigned char isapnp_read_byte(unsigned char idx);
  153. unsigned short isapnp_read_word(unsigned char idx);
  154. unsigned int isapnp_read_dword(unsigned char idx);
  155. void isapnp_write_byte(unsigned char idx, unsigned char val);
  156. void isapnp_write_word(unsigned char idx, unsigned short val);
  157. void isapnp_write_dword(unsigned char idx, unsigned int val);
  158. void isapnp_wake(unsigned char csn);
  159. void isapnp_device(unsigned char device);
  160. void isapnp_activate(unsigned char device);
  161. void isapnp_deactivate(unsigned char device);
  162. void isapnp_fixup_device(struct pci_dev *dev);
  163. void *isapnp_alloc(long size);
  164. int isapnp_proc_init(void);
  165. int isapnp_proc_done(void);
  166. /* manager */
  167. struct pci_bus *isapnp_find_card(unsigned short vendor,
  168.  unsigned short device,
  169.  struct pci_bus *from);
  170. struct pci_dev *isapnp_find_dev(struct pci_bus *card,
  171. unsigned short vendor,
  172. unsigned short function,
  173. struct pci_dev *from);
  174. int isapnp_probe_cards(const struct isapnp_card_id *ids,
  175.        int (*probe)(struct pci_bus *card,
  176.     const struct isapnp_card_id *id));
  177. int isapnp_probe_devs(const struct isapnp_device_id *ids,
  178. int (*probe)(struct pci_dev *dev,
  179.      const struct isapnp_device_id *id));
  180. /* misc */
  181. void isapnp_resource_change(struct resource *resource,
  182.     unsigned long start,
  183.     unsigned long size);
  184. int isapnp_activate_dev(struct pci_dev *dev, const char *name);
  185. /* init/main.c */
  186. int isapnp_init(void);
  187. extern struct list_head isapnp_cards;
  188. extern struct list_head isapnp_devices;
  189. #define isapnp_for_each_card(card) 
  190. for(card = pci_bus_b(isapnp_cards.next); card != pci_bus_b(&isapnp_cards); card = pci_bus_b(card->node.next))
  191. #define isapnp_for_each_dev(dev) 
  192. for(dev = pci_dev_g(isapnp_devices.next); dev != pci_dev_g(&isapnp_devices); dev = pci_dev_g(dev->global_list.next))
  193. int isapnp_register_driver(struct isapnp_driver *drv);
  194. void isapnp_unregister_driver(struct isapnp_driver *drv);
  195. #else /* !CONFIG_ISAPNP */
  196. /* lowlevel configuration */
  197. static inline int isapnp_present(void) { return 0; }
  198. static inline int isapnp_cfg_begin(int csn, int device) { return -ENODEV; }
  199. static inline int isapnp_cfg_end(void) { return -ENODEV; }
  200. static inline unsigned char isapnp_read_byte(unsigned char idx) { return 0xff; }
  201. static inline unsigned short isapnp_read_word(unsigned char idx) { return 0xffff; }
  202. static inline unsigned int isapnp_read_dword(unsigned char idx) { return 0xffffffff; }
  203. static inline void isapnp_write_byte(unsigned char idx, unsigned char val) { ; }
  204. static inline void isapnp_write_word(unsigned char idx, unsigned short val) { ; }
  205. static inline void isapnp_write_dword(unsigned char idx, unsigned int val) { ; }
  206. static inline void isapnp_wake(unsigned char csn) { ; }
  207. static inline void isapnp_device(unsigned char device) { ; }
  208. static inline void isapnp_activate(unsigned char device) { ; }
  209. static inline void isapnp_deactivate(unsigned char device) { ; }
  210. /* manager */
  211. static inline struct pci_bus *isapnp_find_card(unsigned short vendor,
  212.        unsigned short device,
  213.        struct pci_bus *from) { return NULL; }
  214. static inline struct pci_dev *isapnp_find_dev(struct pci_bus *card,
  215.       unsigned short vendor,
  216.       unsigned short function,
  217.       struct pci_dev *from) { return NULL; }
  218. static inline int isapnp_probe_cards(const struct isapnp_card_id *ids,
  219.      int (*probe)(struct pci_bus *card,
  220.   const struct isapnp_card_id *id)) { return -ENODEV; }
  221. static inline int isapnp_probe_devs(const struct isapnp_device_id *ids,
  222.     int (*probe)(struct pci_dev *dev,
  223.  const struct isapnp_device_id *id)) { return -ENODEV; }
  224. static inline void isapnp_resource_change(struct resource *resource,
  225.   unsigned long start,
  226.   unsigned long size) { ; }
  227. static inline int isapnp_activate_dev(struct pci_dev *dev, const char *name) { return -ENODEV; }
  228. static inline int isapnp_register_driver(struct isapnp_driver *drv) { return 0; }
  229. static inline void isapnp_unregister_driver(struct isapnp_driver *drv) { }
  230. #endif /* CONFIG_ISAPNP */
  231. #endif /* __KERNEL__ */
  232. #endif /* LINUX_ISAPNP_H */