blob: d4b333938f73277790ae2a512b374da747512fae [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Generic HDLC support routines for Linux
3 *
Krzysztof Halasab3dd65f2005-04-21 15:57:25 +02004 * Copyright (C) 1999-2005 Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
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
11#ifndef __HDLC_H
12#define __HDLC_H
13
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
15#define HDLC_MAX_MTU 1500 /* Ethernet 1500 bytes */
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +020016#if 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#define HDLC_MAX_MRU (HDLC_MAX_MTU + 10 + 14 + 4) /* for ETH+VLAN over FR */
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +020018#else
19#define HDLC_MAX_MRU 1600 /* as required for FR network */
20#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
22
23#ifdef __KERNEL__
24
25#include <linux/skbuff.h>
26#include <linux/netdevice.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/hdlc/ioctl.h>
28
29
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +020030/* Used by all network devices here, pointed to by netdev_priv(dev) */
31struct hdlc_device_desc {
32 int (*netif_rx)(struct sk_buff *skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 struct net_device_stats stats;
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +020034};
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +020036/* This structure is a private property of HDLC protocols.
37 Hardware drivers have no interest here */
38
39struct hdlc_proto {
40 int (*open)(struct net_device *dev);
41 void (*close)(struct net_device *dev);
42 void (*start)(struct net_device *dev); /* if open & DCD */
43 void (*stop)(struct net_device *dev); /* if open & !DCD */
44 void (*detach)(struct net_device *dev);
45 int (*ioctl)(struct net_device *dev, struct ifreq *ifr);
46 unsigned short (*type_trans)(struct sk_buff *skb,
47 struct net_device *dev);
48 struct module *module;
49 struct hdlc_proto *next; /* next protocol in the list */
50};
51
52
53typedef struct hdlc_device {
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 /* used by HDLC layer to take control over HDLC device from hw driver*/
55 int (*attach)(struct net_device *dev,
56 unsigned short encoding, unsigned short parity);
57
58 /* hardware driver must handle this instead of dev->hard_start_xmit */
59 int (*xmit)(struct sk_buff *skb, struct net_device *dev);
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 /* Things below are for HDLC layer internal use only */
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +020062 const struct hdlc_proto *proto;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 int carrier;
64 int open;
65 spinlock_t state_lock;
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +020066 void *state;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 void *priv;
68}hdlc_device;
69
70
71
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +020072/* Exported from hdlc module */
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74/* Called by hardware driver when a user requests HDLC service */
75int hdlc_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd);
76
77/* Must be used by hardware driver on module startup/exit */
Krzysztof Halasa4a31e342006-06-22 22:20:19 +020078#define register_hdlc_device(dev) register_netdev(dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070079void unregister_hdlc_device(struct net_device *dev);
80
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +020081
82void register_hdlc_protocol(struct hdlc_proto *proto);
83void unregister_hdlc_protocol(struct hdlc_proto *proto);
84
Linus Torvalds1da177e2005-04-16 15:20:36 -070085struct net_device *alloc_hdlcdev(void *priv);
86
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +020087
88static __inline__ struct hdlc_device_desc* dev_to_desc(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070089{
90 return netdev_priv(dev);
91}
92
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +020093static __inline__ hdlc_device* dev_to_hdlc(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070094{
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +020095 return netdev_priv(dev) + sizeof(struct hdlc_device_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096}
97
98
99static __inline__ void debug_frame(const struct sk_buff *skb)
100{
101 int i;
102
103 for (i=0; i < skb->len; i++) {
104 if (i == 100) {
105 printk("...\n");
106 return;
107 }
108 printk(" %02X", skb->data[i]);
109 }
110 printk("\n");
111}
112
113
114/* Must be called by hardware driver when HDLC device is being opened */
115int hdlc_open(struct net_device *dev);
116/* Must be called by hardware driver when HDLC device is being closed */
117void hdlc_close(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +0200119int attach_hdlc_protocol(struct net_device *dev, struct hdlc_proto *proto,
120 int (*rx)(struct sk_buff *skb), size_t size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121/* May be used by hardware driver to gain control over HDLC device */
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +0200122void detach_hdlc_protocol(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
124static __inline__ struct net_device_stats *hdlc_stats(struct net_device *dev)
125{
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +0200126 return &dev_to_desc(dev)->stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127}
128
129
Alexey Dobriyanab611482005-07-12 12:08:43 -0700130static __inline__ __be16 hdlc_type_trans(struct sk_buff *skb,
131 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132{
133 hdlc_device *hdlc = dev_to_hdlc(dev);
134
135 skb->mac.raw = skb->data;
136 skb->dev = dev;
137
Krzysztof Halasaeb2a2fd2006-09-26 23:23:45 +0200138 if (hdlc->proto->type_trans)
139 return hdlc->proto->type_trans(skb, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 else
141 return htons(ETH_P_HDLC);
142}
143
144#endif /* __KERNEL */
145#endif /* __HDLC_H */