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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * ds.h 1.56 2000/06/12 21:55:40
  3.  *
  4.  * The contents of this file are subject to the Mozilla Public License
  5.  * Version 1.1 (the "License"); you may not use this file except in
  6.  * compliance with the License. You may obtain a copy of the License
  7.  * at http://www.mozilla.org/MPL/
  8.  *
  9.  * Software distributed under the License is distributed on an "AS IS"
  10.  * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
  11.  * the License for the specific language governing rights and
  12.  * limitations under the License. 
  13.  *
  14.  * The initial developer of the original code is David A. Hinds
  15.  * <dahinds@users.sourceforge.net>.  Portions created by David A. Hinds
  16.  * are Copyright (C) 1999 David A. Hinds.  All Rights Reserved.
  17.  *
  18.  * Alternatively, the contents of this file may be used under the
  19.  * terms of the GNU General Public License version 2 (the "GPL"), in which
  20.  * case the provisions of the GPL are applicable instead of the
  21.  * above.  If you wish to allow the use of your version of this file
  22.  * only under the terms of the GPL and not to allow others to use
  23.  * your version of this file under the MPL, indicate your decision by
  24.  * deleting the provisions above and replace them with the notice and
  25.  * other provisions required by the GPL.  If you do not delete the
  26.  * provisions above, a recipient may use your version of this file
  27.  * under either the MPL or the GPL.
  28.  */
  29. #ifndef _LINUX_DS_H
  30. #define _LINUX_DS_H
  31. #include <pcmcia/driver_ops.h>
  32. #include <pcmcia/bulkmem.h>
  33. typedef struct tuple_parse_t {
  34.     tuple_t tuple;
  35.     cisdata_t data[255];
  36.     cisparse_t parse;
  37. } tuple_parse_t;
  38. typedef struct win_info_t {
  39.     window_handle_t handle;
  40.     win_req_t window;
  41.     memreq_t map;
  42. } win_info_t;
  43.     
  44. typedef struct bind_info_t {
  45.     dev_info_t dev_info;
  46.     u_char function;
  47.     struct dev_link_t *instance;
  48.     char name[DEV_NAME_LEN];
  49.     u_short major, minor;
  50.     void *next;
  51. } bind_info_t;
  52. typedef struct mtd_info_t {
  53.     dev_info_t dev_info;
  54.     u_int Attributes;
  55.     u_int CardOffset;
  56. } mtd_info_t;
  57. typedef union ds_ioctl_arg_t {
  58.     servinfo_t servinfo;
  59.     adjust_t adjust;
  60.     config_info_t config;
  61.     tuple_t tuple;
  62.     tuple_parse_t tuple_parse;
  63.     client_req_t client_req;
  64.     cs_status_t status;
  65.     conf_reg_t conf_reg;
  66.     cisinfo_t cisinfo;
  67.     region_info_t region;
  68.     bind_info_t bind_info;
  69.     mtd_info_t mtd_info;
  70.     win_info_t win_info;
  71.     cisdump_t cisdump;
  72. } ds_ioctl_arg_t;
  73. #define DS_GET_CARD_SERVICES_INFO _IOR ('d', 1, servinfo_t)
  74. #define DS_ADJUST_RESOURCE_INFO _IOWR('d', 2, adjust_t)
  75. #define DS_GET_CONFIGURATION_INFO _IOWR('d', 3, config_info_t)
  76. #define DS_GET_FIRST_TUPLE _IOWR('d', 4, tuple_t)
  77. #define DS_GET_NEXT_TUPLE _IOWR('d', 5, tuple_t)
  78. #define DS_GET_TUPLE_DATA _IOWR('d', 6, tuple_parse_t)
  79. #define DS_PARSE_TUPLE _IOWR('d', 7, tuple_parse_t)
  80. #define DS_RESET_CARD _IO  ('d', 8)
  81. #define DS_GET_STATUS _IOWR('d', 9, cs_status_t)
  82. #define DS_ACCESS_CONFIGURATION_REGISTER _IOWR('d', 10, conf_reg_t)
  83. #define DS_VALIDATE_CIS _IOR ('d', 11, cisinfo_t)
  84. #define DS_SUSPEND_CARD _IO  ('d', 12)
  85. #define DS_RESUME_CARD _IO  ('d', 13)
  86. #define DS_EJECT_CARD _IO  ('d', 14)
  87. #define DS_INSERT_CARD _IO  ('d', 15)
  88. #define DS_GET_FIRST_REGION _IOWR('d', 16, region_info_t)
  89. #define DS_GET_NEXT_REGION _IOWR('d', 17, region_info_t)
  90. #define DS_REPLACE_CIS _IOWR('d', 18, cisdump_t)
  91. #define DS_GET_FIRST_WINDOW _IOR ('d', 19, win_info_t)
  92. #define DS_GET_NEXT_WINDOW _IOWR('d', 20, win_info_t)
  93. #define DS_GET_MEM_PAGE _IOWR('d', 21, win_info_t)
  94. #define DS_BIND_REQUEST _IOWR('d', 60, bind_info_t)
  95. #define DS_GET_DEVICE_INFO _IOWR('d', 61, bind_info_t) 
  96. #define DS_GET_NEXT_DEVICE _IOWR('d', 62, bind_info_t) 
  97. #define DS_UNBIND_REQUEST _IOW ('d', 63, bind_info_t)
  98. #define DS_BIND_MTD _IOWR('d', 64, mtd_info_t)
  99. #ifdef __KERNEL__
  100. typedef struct dev_link_t {
  101.     dev_node_t *dev;
  102.     u_int state, open;
  103.     wait_queue_head_t pending;
  104.     struct timer_list release;
  105.     client_handle_t handle;
  106.     io_req_t io;
  107.     irq_req_t irq;
  108.     config_req_t conf;
  109.     window_handle_t win;
  110.     void *priv;
  111.     struct dev_link_t *next;
  112. } dev_link_t;
  113. /* Flags for device state */
  114. #define DEV_PRESENT 0x01
  115. #define DEV_CONFIG 0x02
  116. #define DEV_STALE_CONFIG 0x04 /* release on close */
  117. #define DEV_STALE_LINK 0x08 /* detach on release */
  118. #define DEV_CONFIG_PENDING 0x10
  119. #define DEV_RELEASE_PENDING 0x20
  120. #define DEV_SUSPEND 0x40
  121. #define DEV_BUSY 0x80
  122. #define DEV_OK(l) 
  123.     ((l) && ((l->state & ~DEV_BUSY) == (DEV_CONFIG|DEV_PRESENT)))
  124. int register_pccard_driver(dev_info_t *dev_info,
  125.    dev_link_t *(*attach)(void),
  126.    void (*detach)(dev_link_t *));
  127. int unregister_pccard_driver(dev_info_t *dev_info);
  128. #define register_pcmcia_driver register_pccard_driver
  129. #define unregister_pcmcia_driver unregister_pccard_driver
  130. #endif /* __KERNEL__ */
  131. #endif /* _LINUX_DS_H */