isapnp.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:4k
源码类别:

嵌入式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. #include <linux/pnp.h>
  26. /*
  27.  *  Configuration registers (TODO: change by specification)
  28.  */ 
  29. #define ISAPNP_CFG_ACTIVATE 0x30 /* byte */
  30. #define ISAPNP_CFG_MEM 0x40 /* 4 * dword */
  31. #define ISAPNP_CFG_PORT 0x60 /* 8 * word */
  32. #define ISAPNP_CFG_IRQ 0x70 /* 2 * word */
  33. #define ISAPNP_CFG_DMA 0x74 /* 2 * byte */
  34. /*
  35.  *
  36.  */
  37. #define ISAPNP_VENDOR(a,b,c) (((((a)-'A'+1)&0x3f)<<2)|
  38. ((((b)-'A'+1)&0x18)>>3)|((((b)-'A'+1)&7)<<13)|
  39. ((((c)-'A'+1)&0x1f)<<8))
  40. #define ISAPNP_DEVICE(x) ((((x)&0xf000)>>8)|
  41.  (((x)&0x0f00)>>8)|
  42.  (((x)&0x00f0)<<8)|
  43.  (((x)&0x000f)<<8))
  44. #define ISAPNP_FUNCTION(x) ISAPNP_DEVICE(x)
  45. /*
  46.  *
  47.  */
  48. #ifdef __KERNEL__
  49. #define DEVICE_COUNT_COMPATIBLE 4
  50. #define ISAPNP_ANY_ID 0xffff
  51. #define ISAPNP_CARD_DEVS 8
  52. #define ISAPNP_CARD_ID(_va, _vb, _vc, _device) 
  53. .card_vendor = ISAPNP_VENDOR(_va, _vb, _vc), .card_device = ISAPNP_DEVICE(_device)
  54. #define ISAPNP_CARD_END 
  55. .card_vendor = 0, .card_device = 0
  56. #define ISAPNP_DEVICE_ID(_va, _vb, _vc, _function) 
  57. { .vendor = ISAPNP_VENDOR(_va, _vb, _vc), .function = ISAPNP_FUNCTION(_function) }
  58. /* export used IDs outside module */
  59. #define ISAPNP_CARD_TABLE(name) 
  60. MODULE_GENERIC_TABLE(isapnp_card, name)
  61. struct isapnp_card_id {
  62. unsigned long driver_data; /* data private to the driver */
  63. unsigned short card_vendor, card_device;
  64. struct {
  65. unsigned short vendor, function;
  66. } devs[ISAPNP_CARD_DEVS]; /* logical devices */
  67. };
  68. #define ISAPNP_DEVICE_SINGLE(_cva, _cvb, _cvc, _cdevice, _dva, _dvb, _dvc, _dfunction) 
  69. .card_vendor = ISAPNP_VENDOR(_cva, _cvb, _cvc), .card_device =  ISAPNP_DEVICE(_cdevice), 
  70. .vendor = ISAPNP_VENDOR(_dva, _dvb, _dvc), .function = ISAPNP_FUNCTION(_dfunction)
  71. #define ISAPNP_DEVICE_SINGLE_END 
  72. .card_vendor = 0, .card_device = 0
  73. struct isapnp_device_id {
  74. unsigned short card_vendor, card_device;
  75. unsigned short vendor, function;
  76. unsigned long driver_data; /* data private to the driver */
  77. };
  78. #if defined(CONFIG_ISAPNP) || (defined(CONFIG_ISAPNP_MODULE) && defined(MODULE))
  79. #define __ISAPNP__
  80. /* lowlevel configuration */
  81. int isapnp_present(void);
  82. int isapnp_cfg_begin(int csn, int device);
  83. int isapnp_cfg_end(void);
  84. unsigned char isapnp_read_byte(unsigned char idx);
  85. void isapnp_write_byte(unsigned char idx, unsigned char val);
  86. #ifdef CONFIG_PROC_FS
  87. int isapnp_proc_init(void);
  88. int isapnp_proc_done(void);
  89. #else
  90. static inline int isapnp_proc_init(void) { return 0; }
  91. static inline int isapnp_proc_done(void) { return 0; }
  92. #endif
  93. /* compat */
  94. struct pnp_card *pnp_find_card(unsigned short vendor,
  95.        unsigned short device,
  96.        struct pnp_card *from);
  97. struct pnp_dev *pnp_find_dev(struct pnp_card *card,
  98.      unsigned short vendor,
  99.      unsigned short function,
  100.      struct pnp_dev *from);
  101. #else /* !CONFIG_ISAPNP */
  102. /* lowlevel configuration */
  103. static inline int isapnp_present(void) { return 0; }
  104. static inline int isapnp_cfg_begin(int csn, int device) { return -ENODEV; }
  105. static inline int isapnp_cfg_end(void) { return -ENODEV; }
  106. static inline unsigned char isapnp_read_byte(unsigned char idx) { return 0xff; }
  107. static inline void isapnp_write_byte(unsigned char idx, unsigned char val) { ; }
  108. static inline struct pnp_card *pnp_find_card(unsigned short vendor,
  109.      unsigned short device,
  110.      struct pnp_card *from) { return NULL; }
  111. static inline struct pnp_dev *pnp_find_dev(struct pnp_card *card,
  112.    unsigned short vendor,
  113.    unsigned short function,
  114.    struct pnp_dev *from) { return NULL; }
  115. #endif /* CONFIG_ISAPNP */
  116. #endif /* __KERNEL__ */
  117. #endif /* LINUX_ISAPNP_H */