2 * DLCI/FRAD Definitions for Frame Relay Access Devices. DLCI devices are
3 * created for each DLCI associated with a FRAD. The FRAD driver
4 * is not truly a network device, but the lower level device
5 * handler. This allows other FRAD manufacturers to use the DLCI
6 * code, including its RFC1490 encapsulation alongside the current
7 * implementation for the Sangoma cards.
9 * Version: @(#)if_ifrad.h 0.15 31 Mar 96
11 * Author: Mike McLagan <mike.mclagan@linux.org>
14 * 0.15 Mike McLagan changed structure defs (packed)
18 * This program is free software; you can redistribute it and/or
19 * modify it under the terms of the GNU General Public License
20 * as published by the Free Software Foundation; either version
21 * 2 of the License, or (at your option) any later version.
27 #include <linux/config.h>
30 #if defined(CONFIG_DLCI) || defined(CONFIG_DLCI_MODULE)
32 /* Structures and constants associated with the DLCI device driver */
36 char devname
[IFNAMSIZ
];
40 #define DLCI_GET_CONF (SIOCDEVPRIVATE + 2)
41 #define DLCI_SET_CONF (SIOCDEVPRIVATE + 3)
44 * These are related to the Sangoma SDLA and should remain in order.
45 * Code within the SDLA module is based on the specifics of this
46 * structure. Change at your own peril.
57 /* these are part of the status read */
63 /* add any new fields here above is a mirror of sdla_dlci_conf */
66 #define DLCI_GET_SLAVE (SIOCDEVPRIVATE + 4)
68 /* configuration flags for DLCI */
69 #define DLCI_IGNORE_CIR_OUT 0x0001
70 #define DLCI_ACCOUNT_CIR_IN 0x0002
71 #define DLCI_BUFFER_IF 0x0008
73 #define DLCI_VALID_FLAGS 0x000B
75 /* FRAD driver uses these to indicate what it did with packet */
76 #define DLCI_RET_OK 0x00
77 #define DLCI_RET_ERR 0x01
78 #define DLCI_RET_DROP 0x02
80 /* defines for the actual Frame Relay hardware */
81 #define FRAD_GET_CONF (SIOCDEVPRIVATE)
82 #define FRAD_SET_CONF (SIOCDEVPRIVATE + 1)
84 #define FRAD_LAST_IOCTL FRAD_SET_CONF
87 * Based on the setup for the Sangoma SDLA. If changes are
88 * necessary to this structure, a routine will need to be
89 * added to that module to copy fields.
110 /* Add new fields here, above is a mirror of the sdla_conf */
114 #define FRAD_STATION_CPE 0x0000
115 #define FRAD_STATION_NODE 0x0001
117 #define FRAD_TX_IGNORE_CIR 0x0001
118 #define FRAD_RX_ACCOUNT_CIR 0x0002
119 #define FRAD_DROP_ABORTED 0x0004
120 #define FRAD_BUFFERIF 0x0008
121 #define FRAD_STATS 0x0010
122 #define FRAD_MCI 0x0100
123 #define FRAD_AUTODLCI 0x8000
124 #define FRAD_VALID_FLAGS 0x811F
126 #define FRAD_CLOCK_INT 0x0001
127 #define FRAD_CLOCK_EXT 0x0000
131 /* these are the fields of an RFC 1490 header */
134 unsigned char control
__attribute__((packed
));
136 /* for IP packets, this can be the NLPID */
137 unsigned char pad
__attribute__((packed
));
139 unsigned char NLPID
__attribute__((packed
));
140 unsigned char OUI
[3] __attribute__((packed
));
141 unsigned short PID
__attribute__((packed
));
146 /* see RFC 1490 for the definition of the following */
147 #define FRAD_I_UI 0x03
149 #define FRAD_P_PADDING 0x00
150 #define FRAD_P_Q933 0x08
151 #define FRAD_P_SNAP 0x80
152 #define FRAD_P_CLNP 0x81
153 #define FRAD_P_IP 0xCC
157 struct net_device_stats stats
;
158 struct net_device
*master
;
159 struct net_device
*slave
;
160 struct dlci_conf config
;
162 struct list_head list
;
164 /* callback function */
165 void (*receive
)(struct sk_buff
*skb
, struct net_device
*);
170 struct net_device_stats stats
;
172 /* devices which this FRAD is slaved to */
173 struct net_device
*master
[CONFIG_DLCI_MAX
];
174 short dlci
[CONFIG_DLCI_MAX
];
176 struct frad_conf config
;
177 int configured
; /* has this device been configured */
178 int initialized
; /* mem_start, port, irq set ? */
180 /* callback functions */
181 int (*activate
)(struct net_device
*, struct net_device
*);
182 int (*deactivate
)(struct net_device
*, struct net_device
*);
183 int (*assoc
)(struct net_device
*, struct net_device
*);
184 int (*deassoc
)(struct net_device
*, struct net_device
*);
185 int (*dlci_conf
)(struct net_device
*, struct net_device
*, int get
);
187 /* fields that are used by the Sangoma SDLA cards */
188 struct timer_list timer
;
189 int type
; /* adapter type */
190 int state
; /* state of the S502/8 control latch */
191 int buffer
; /* current buffer for S508 firmware */
194 #endif /* __KERNEL__ */
196 #endif /* CONFIG_DLCI || CONFIG_DLCI_MODULE */
199 extern void dlci_ioctl_set(int (*hook
)(unsigned int, void __user
*));