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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Generic HDLC support routines for Linux
  3.  *
  4.  * Copyright (C) 1999-2005 Krzysztof Halasa <khc@pm.waw.pl>
  5.  *
  6.  * This program is free software; you can redistribute it and/or modify it
  7.  * under the terms of version 2 of the GNU General Public License
  8.  * as published by the Free Software Foundation.
  9.  */
  10. #ifndef __HDLC_H
  11. #define __HDLC_H
  12. #define GENERIC_HDLC_VERSION 4 /* For synchronization with sethdlc utility */
  13. #define CLOCK_DEFAULT   0 /* Default setting */
  14. #define CLOCK_EXT 1 /* External TX and RX clock - DTE */
  15. #define CLOCK_INT 2 /* Internal TX and RX clock - DCE */
  16. #define CLOCK_TXINT 3 /* Internal TX and external RX clock */
  17. #define CLOCK_TXFROMRX 4 /* TX clock derived from external RX clock */
  18. #define ENCODING_DEFAULT 0 /* Default setting */
  19. #define ENCODING_NRZ 1
  20. #define ENCODING_NRZI 2
  21. #define ENCODING_FM_MARK 3
  22. #define ENCODING_FM_SPACE 4
  23. #define ENCODING_MANCHESTER 5
  24. #define PARITY_DEFAULT 0 /* Default setting */
  25. #define PARITY_NONE 1 /* No parity */
  26. #define PARITY_CRC16_PR0 2 /* CRC16, initial value 0x0000 */
  27. #define PARITY_CRC16_PR1 3 /* CRC16, initial value 0xFFFF */
  28. #define PARITY_CRC16_PR0_CCITT 4 /* CRC16, initial 0x0000, ITU-T version */
  29. #define PARITY_CRC16_PR1_CCITT 5 /* CRC16, initial 0xFFFF, ITU-T version */
  30. #define PARITY_CRC32_PR0_CCITT 6 /* CRC32, initial value 0x00000000 */
  31. #define PARITY_CRC32_PR1_CCITT 7 /* CRC32, initial value 0xFFFFFFFF */
  32. #define LMI_DEFAULT 0 /* Default setting */
  33. #define LMI_NONE 1 /* No LMI, all PVCs are static */
  34. #define LMI_ANSI 2 /* ANSI Annex D */
  35. #define LMI_CCITT 3 /* ITU-T Annex A */
  36. #define LMI_CISCO 4 /* The "original" LMI, aka Gang of Four */
  37. #define HDLC_MAX_MTU 1500 /* Ethernet 1500 bytes */
  38. #define HDLC_MAX_MRU (HDLC_MAX_MTU + 10 + 14 + 4) /* for ETH+VLAN over FR */
  39. #ifdef __KERNEL__
  40. #include <linux/skbuff.h>
  41. #include <linux/netdevice.h>
  42. #include <net/syncppp.h>
  43. #include <linux/hdlc/ioctl.h>
  44. typedef struct { /* Used in Cisco and PPP mode */
  45. u8 address;
  46. u8 control;
  47. u16 protocol;
  48. }__attribute__ ((packed)) hdlc_header;
  49. typedef struct {
  50. u32 type; /* code */
  51. u32 par1;
  52. u32 par2;
  53. u16 rel; /* reliability */
  54. u32 time;
  55. }__attribute__ ((packed)) cisco_packet;
  56. #define CISCO_PACKET_LEN 18
  57. #define CISCO_BIG_PACKET_LEN 20
  58. typedef struct pvc_device_struct {
  59. struct net_device *master;
  60. struct net_device *main;
  61. struct net_device *ether; /* bridged Ethernet interface */
  62. struct pvc_device_struct *next; /* Sorted in ascending DLCI order */
  63. int dlci;
  64. int open_count;
  65. struct {
  66. unsigned int new: 1;
  67. unsigned int active: 1;
  68. unsigned int exist: 1;
  69. unsigned int deleted: 1;
  70. unsigned int fecn: 1;
  71. unsigned int becn: 1;
  72. unsigned int bandwidth; /* Cisco LMI reporting only */
  73. }state;
  74. }pvc_device;
  75. typedef struct hdlc_device_struct {
  76. /* To be initialized by hardware driver */
  77. struct net_device_stats stats;
  78. /* used by HDLC layer to take control over HDLC device from hw driver*/
  79. int (*attach)(struct net_device *dev,
  80.       unsigned short encoding, unsigned short parity);
  81. /* hardware driver must handle this instead of dev->hard_start_xmit */
  82. int (*xmit)(struct sk_buff *skb, struct net_device *dev);
  83. /* Things below are for HDLC layer internal use only */
  84. struct {
  85. int (*open)(struct net_device *dev);
  86. void (*close)(struct net_device *dev);
  87. /* if open & DCD */
  88. void (*start)(struct net_device *dev);
  89. /* if open & !DCD */
  90. void (*stop)(struct net_device *dev);
  91. void (*detach)(struct hdlc_device_struct *hdlc);
  92. int (*netif_rx)(struct sk_buff *skb);
  93. unsigned short (*type_trans)(struct sk_buff *skb,
  94.      struct net_device *dev);
  95. int id; /* IF_PROTO_HDLC/CISCO/FR/etc. */
  96. }proto;
  97. int carrier;
  98. int open;
  99. spinlock_t state_lock;
  100. union {
  101. struct {
  102. fr_proto settings;
  103. pvc_device *first_pvc;
  104. int dce_pvc_count;
  105. struct timer_list timer;
  106. unsigned long last_poll;
  107. int reliable;
  108. int dce_changed;
  109. int request;
  110. int fullrep_sent;
  111. u32 last_errors; /* last errors bit list */
  112. u8 n391cnt;
  113. u8 txseq; /* TX sequence number */
  114. u8 rxseq; /* RX sequence number */
  115. }fr;
  116. struct {
  117. cisco_proto settings;
  118. struct timer_list timer;
  119. unsigned long last_poll;
  120. int up;
  121. int request_sent;
  122. u32 txseq; /* TX sequence number */
  123. u32 rxseq; /* RX sequence number */
  124. }cisco;
  125. struct {
  126. raw_hdlc_proto settings;
  127. }raw_hdlc;
  128. struct {
  129. struct ppp_device pppdev;
  130. struct ppp_device *syncppp_ptr;
  131. int (*old_change_mtu)(struct net_device *dev,
  132.       int new_mtu);
  133. }ppp;
  134. }state;
  135. void *priv;
  136. }hdlc_device;
  137. int hdlc_raw_ioctl(struct net_device *dev, struct ifreq *ifr);
  138. int hdlc_raw_eth_ioctl(struct net_device *dev, struct ifreq *ifr);
  139. int hdlc_cisco_ioctl(struct net_device *dev, struct ifreq *ifr);
  140. int hdlc_ppp_ioctl(struct net_device *dev, struct ifreq *ifr);
  141. int hdlc_fr_ioctl(struct net_device *dev, struct ifreq *ifr);
  142. int hdlc_x25_ioctl(struct net_device *dev, struct ifreq *ifr);
  143. /* Exported from hdlc.o */
  144. /* Called by hardware driver when a user requests HDLC service */
  145. int hdlc_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd);
  146. /* Must be used by hardware driver on module startup/exit */
  147. int register_hdlc_device(struct net_device *dev);
  148. void unregister_hdlc_device(struct net_device *dev);
  149. struct net_device *alloc_hdlcdev(void *priv);
  150. static __inline__ hdlc_device* dev_to_hdlc(struct net_device *dev)
  151. {
  152. return netdev_priv(dev);
  153. }
  154. static __inline__ pvc_device* dev_to_pvc(struct net_device *dev)
  155. {
  156. return (pvc_device*)dev->priv;
  157. }
  158. static __inline__ void debug_frame(const struct sk_buff *skb)
  159. {
  160. int i;
  161. for (i=0; i < skb->len; i++) {
  162. if (i == 100) {
  163. printk("...n");
  164. return;
  165. }
  166. printk(" %02X", skb->data[i]);
  167. }
  168. printk("n");
  169. }
  170. /* Must be called by hardware driver when HDLC device is being opened */
  171. int hdlc_open(struct net_device *dev);
  172. /* Must be called by hardware driver when HDLC device is being closed */
  173. void hdlc_close(struct net_device *dev);
  174. /* Called by hardware driver when DCD line level changes */
  175. void hdlc_set_carrier(int on, struct net_device *dev);
  176. /* May be used by hardware driver to gain control over HDLC device */
  177. static __inline__ void hdlc_proto_detach(hdlc_device *hdlc)
  178. {
  179. if (hdlc->proto.detach)
  180. hdlc->proto.detach(hdlc);
  181. hdlc->proto.detach = NULL;
  182. }
  183. static __inline__ struct net_device_stats *hdlc_stats(struct net_device *dev)
  184. {
  185. return &dev_to_hdlc(dev)->stats;
  186. }
  187. static __inline__ __be16 hdlc_type_trans(struct sk_buff *skb,
  188.  struct net_device *dev)
  189. {
  190. hdlc_device *hdlc = dev_to_hdlc(dev);
  191. skb->mac.raw  = skb->data;
  192. skb->dev      = dev;
  193. if (hdlc->proto.type_trans)
  194. return hdlc->proto.type_trans(skb, dev);
  195. else
  196. return htons(ETH_P_HDLC);
  197. }
  198. #endif /* __KERNEL */
  199. #endif /* __HDLC_H */