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

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _CYCLOMX_H
  2. #define _CYCLOMX_H
  3. /*
  4. * cyclomx.h Cyclom 2X WAN Link Driver.
  5. * User-level API definitions.
  6. *
  7. * Author: Arnaldo Carvalho de Melo <acme@conectiva.com.br>
  8. *
  9. * Copyright: (c) 1998-2003 Arnaldo Carvalho de Melo
  10. *
  11. * Based on wanpipe.h by Gene Kozin <genek@compuserve.com>
  12. *
  13. * This program is free software; you can redistribute it and/or
  14. * modify it under the terms of the GNU General Public License
  15. * as published by the Free Software Foundation; either version
  16. * 2 of the License, or (at your option) any later version.
  17. * ============================================================================
  18. * 2000/07/13    acme remove crap #if KERNEL_VERSION > blah
  19. * 2000/01/21    acme            rename cyclomx_open to cyclomx_mod_inc_use_count
  20. *                               and cyclomx_close to cyclomx_mod_dec_use_count
  21. * 1999/05/19 acme wait_queue_head_t wait_stats(support for 2.3.*)
  22. * 1999/01/03 acme judicious use of data types
  23. * 1998/12/27 acme cleanup: PACKED not needed
  24. * 1998/08/08 acme Version 0.0.1
  25. */
  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. struct cycx_device {
  42. char devname[WAN_DRVNAME_SZ + 1];/* card name */
  43. struct cycx_hw hw; /* hardware configuration */
  44. struct wan_device wandev; /* WAN device data space */
  45. u32 state_tick; /* link state timestamp */
  46. spinlock_t lock;
  47. char in_isr; /* interrupt-in-service flag */
  48. char buff_int_mode_unbusy;      /* flag for carrying out dev_tint */
  49. wait_queue_head_t wait_stats;  /* to wait for the STATS indication */
  50. void __iomem *mbox; /* -> mailbox */
  51. void (*isr)(struct cycx_device* card); /* interrupt service routine */
  52. int (*exec)(struct cycx_device* card, void* u_cmd, void* u_data);
  53. union {
  54. #ifdef CONFIG_CYCLOMX_X25
  55. struct { /* X.25 specific data */
  56. u32 lo_pvc;
  57. u32 hi_pvc;
  58. u32 lo_svc;
  59. u32 hi_svc;
  60. struct cycx_x25_stats stats;
  61. spinlock_t lock;
  62. u32 connection_keys;
  63. } x;
  64. #endif
  65. } u;
  66. };
  67. /* Public Functions */
  68. void cycx_set_state(struct cycx_device *card, int state);
  69. #ifdef CONFIG_CYCLOMX_X25
  70. int cycx_x25_wan_init(struct cycx_device *card, wandev_conf_t *conf);
  71. #endif
  72. #endif /* __KERNEL__ */
  73. #endif /* _CYCLOMX_H */