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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2. * cyclomx.h Cyclom 2X WAN Link Driver.
  3. * User-level API definitions.
  4. *
  5. * Author: Arnaldo Carvalho de Melo <acme@conectiva.com.br>
  6. *
  7. * Copyright: (c) 1998-2000 Arnaldo Carvalho de Melo
  8. *
  9. * Based on wanpipe.h by Gene Kozin <genek@compuserve.com>
  10. *
  11. * This program is free software; you can redistribute it and/or
  12. * modify it under the terms of the GNU General Public License
  13. * as published by the Free Software Foundation; either version
  14. * 2 of the License, or (at your option) any later version.
  15. * ============================================================================
  16. * 2000/07/13    acme remove crap #if KERNEL_VERSION > blah
  17. * 2000/01/21    acme            rename cyclomx_open to cyclomx_mod_inc_use_count
  18. *                               and cyclomx_close to cyclomx_mod_dec_use_count
  19. * 1999/05/19 acme wait_queue_head_t wait_stats(support for 2.3.*)
  20. * 1999/01/03 acme judicious use of data types
  21. * 1998/12/27 acme cleanup: PACKED not needed
  22. * 1998/08/08 acme Version 0.0.1
  23. */
  24. #ifndef _CYCLOMX_H
  25. #define _CYCLOMX_H
  26. #include <linux/config.h>
  27. #include <linux/wanrouter.h>
  28. #include <linux/spinlock.h>
  29. #ifdef __KERNEL__
  30. /* Kernel Interface */
  31. #include <linux/cycx_drv.h> /* Cyclom 2X support module API definitions */
  32. #include <linux/cycx_cfm.h> /* Cyclom 2X firmware module definitions */
  33. #ifdef CONFIG_CYCLOMX_X25
  34. #include <linux/cycx_x25.h>
  35. #endif
  36. #define is_digit(ch) (((ch)>=(unsigned)'0'&&(ch)<=(unsigned)'9')?1:0)
  37. /* Adapter Data Space.
  38.  * This structure is needed because we handle multiple cards, otherwise
  39.  * static data would do it.
  40.  */
  41. typedef struct cycx {
  42. char devname[WAN_DRVNAME_SZ+1]; /* card name */
  43. cycxhw_t hw; /* hardware configuration */
  44. wan_device_t wandev; /* WAN device data space */
  45. u32 open_cnt; /* number of open interfaces */
  46. u32 state_tick; /* link state timestamp */
  47. spinlock_t lock;
  48. char in_isr; /* interrupt-in-service flag */
  49. char buff_int_mode_unbusy;      /* flag for carrying out dev_tint */
  50. wait_queue_head_t wait_stats;  /* to wait for the STATS indication */
  51. u32 mbox; /* -> mailbox */
  52. void (*isr)(struct cycx* card); /* interrupt service routine */
  53. int (*exec)(struct cycx* card, void* u_cmd, void* u_data);
  54. union {
  55. #ifdef CONFIG_CYCLOMX_X25
  56. struct { /* X.25 specific data */
  57. u32 lo_pvc;
  58. u32 hi_pvc;
  59. u32 lo_svc;
  60. u32 hi_svc;
  61. TX25Stats stats;
  62. spinlock_t lock;
  63. u32 connection_keys;
  64. } x;
  65. #endif
  66. } u;
  67. } cycx_t;
  68. /* Public Functions */
  69. void cyclomx_mod_inc_use_count (cycx_t *card); /* cycx_main.c */
  70. void cyclomx_mod_dec_use_count (cycx_t *card); /* cycx_main.c */
  71. void cyclomx_set_state (cycx_t *card, int state); /* cycx_main.c */
  72. #ifdef CONFIG_CYCLOMX_X25
  73. int cyx_init (cycx_t *card, wandev_conf_t *conf); /* cycx_x25.c */
  74. #endif
  75. #endif /* __KERNEL__ */
  76. #endif /* _CYCLOMX_H */