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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* $Id: capilli.h,v 1.1.4.1 2001/11/20 14:19:34 kai Exp $
  2.  * 
  3.  * Kernel CAPI 2.0 Driver Interface for Linux
  4.  * 
  5.  * Copyright 1999 by Carsten Paeth <calle@calle.de>
  6.  * 
  7.  * This software may be used and distributed according to the terms
  8.  * of the GNU General Public License, incorporated herein by reference.
  9.  *
  10.  */
  11. #ifndef __CAPILLI_H__
  12. #define __CAPILLI_H__
  13. typedef struct capiloaddatapart {
  14. int user; /* data in userspace ? */
  15. int len;
  16. unsigned char *data;
  17. } capiloaddatapart;
  18. typedef struct capiloaddata {
  19. capiloaddatapart firmware;
  20. capiloaddatapart configuration;
  21. } capiloaddata;
  22. typedef struct capicardparams {
  23. unsigned int port;
  24. unsigned irq;
  25. int cardtype;
  26. int cardnr;
  27. unsigned int membase;
  28. } capicardparams;
  29. struct capi_driver;
  30. struct capi_ctr {
  31.         struct capi_ctr *next; /* next ctr of same driver */
  32.         struct capi_driver *driver;
  33. int cnr; /* controller number */
  34. char name[32]; /* name of controller */
  35. volatile unsigned short cardstate; /* controller state */
  36. volatile int blocked; /* output blocked */
  37. int traceflag; /* capi trace */
  38. void *driverdata; /* driver specific */
  39. /* filled before calling ready callback */
  40. __u8 manu[CAPI_MANUFACTURER_LEN]; /* CAPI_GET_MANUFACTURER */
  41. capi_version version; /* CAPI_GET_VERSION */
  42. capi_profile profile; /* CAPI_GET_PROFILE */
  43. __u8 serial[CAPI_SERIAL_LEN]; /* CAPI_GET_SERIAL */
  44. /* functions */
  45.         void (*ready)(struct capi_ctr * card);
  46.         void (*reseted)(struct capi_ctr * card);
  47.         void (*suspend_output)(struct capi_ctr * card);
  48.         void (*resume_output)(struct capi_ctr * card);
  49.         void (*handle_capimsg)(struct capi_ctr * card,
  50.     __u16 appl, struct sk_buff *skb);
  51. void (*appl_registered)(struct capi_ctr * card, __u16 appl);
  52. void (*appl_released)(struct capi_ctr * card, __u16 appl);
  53.         void (*new_ncci)(struct capi_ctr * card,
  54.     __u16 appl, __u32 ncci, __u32 winsize);
  55.         void (*free_ncci)(struct capi_ctr * card, __u16 appl, __u32 ncci);
  56. /* management information for kcapi */
  57. unsigned long nrecvctlpkt;
  58. unsigned long nrecvdatapkt;
  59. unsigned long nsentctlpkt;
  60. unsigned long nsentdatapkt;
  61. struct proc_dir_entry *procent;
  62.         char procfn[128];
  63. };
  64. struct capi_driver_interface {
  65.     struct capi_ctr *(*attach_ctr)(struct capi_driver *driver, char *name, void *data);
  66.     int (*detach_ctr)(struct capi_ctr *);
  67. };
  68. struct capi_driver {
  69.      char name[32]; /* driver name */
  70.      char revision[32];
  71.      int (*load_firmware)(struct capi_ctr *, capiloaddata *);
  72.      void (*reset_ctr)(struct capi_ctr *);
  73.      void (*remove_ctr)(struct capi_ctr *);
  74.      void (*register_appl)(struct capi_ctr *, __u16 appl,
  75. capi_register_params *);
  76.      void (*release_appl)(struct capi_ctr *, __u16 appl);
  77.      void (*send_message)(struct capi_ctr *, struct sk_buff *skb);
  78.      char *(*procinfo)(struct capi_ctr *);
  79.      int (*ctr_read_proc)(char *page, char **start, off_t off,
  80.        int count, int *eof, struct capi_ctr *card);
  81.      int (*driver_read_proc)(char *page, char **start, off_t off,
  82.                int count, int *eof, struct capi_driver *driver);
  83.      int (*add_card)(struct capi_driver *driver, capicardparams *data);
  84.      /* intitialized by kcapi */
  85.      struct capi_ctr *controller; /* list of controllers */
  86.      struct capi_driver *next;
  87.      int ncontroller;
  88.      struct proc_dir_entry *procent;
  89.      char procfn[128];
  90. };
  91. struct capi_driver_interface *attach_capi_driver(struct capi_driver *driver);
  92. void detach_capi_driver(struct capi_driver *driver);
  93. #endif /* __CAPILLI_H__ */