patch-2.2.15 linux/include/net/irda/irlap.h
Next file: linux/include/net/irda/irlap_event.h
Previous file: linux/include/net/irda/irlan_common.h
Back to the patch index
Back to the overall index
- Lines: 238
- Date:
Fri Apr 21 23:18:42 2000
- Orig file:
v2.2.14/include/net/irda/irlap.h
- Orig date:
Sat Aug 14 02:26:51 1999
diff -u --new-file --recursive --exclude-from ../../exclude v2.2.14/include/net/irda/irlap.h linux/include/net/irda/irlap.h
@@ -6,10 +6,11 @@
* Status: Experimental.
* Author: Dag Brattli <dagb@cs.uit.no>
* Created at: Mon Aug 4 20:40:53 1997
- * Modified at: Sun May 9 11:38:18 1999
+ * Modified at: Fri Dec 10 13:21:17 1999
* Modified by: Dag Brattli <dagb@cs.uit.no>
*
- * Copyright (c) 1998-1999 Dag Brattli <dagb@cs.uit.no>, All Rights Reserved.
+ * Copyright (c) 1998-1999 Dag Brattli <dagb@cs.uit.no>,
+ * All Rights Reserved.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
@@ -31,9 +32,12 @@
#include <linux/netdevice.h>
#include <linux/ppp_defs.h>
#include <linux/ppp-comp.h>
+#include <linux/timer.h>
#include <net/irda/irlap_event.h>
+#define CONFIG_IRDA_DYNAMIC_WINDOW 1
+
#define LAP_RELIABLE 1
#define LAP_UNRELIABLE 0
@@ -54,7 +58,7 @@
#define XID_FORMAT 0x01 /* Discovery XID format */
#define LAP_WINDOW_SIZE 8
-#define MAX_CONNECTIONS 1
+#define LAP_MAX_QUEUE 10
#define NR_EXPECTED 1
#define NR_UNEXPECTED 0
@@ -65,6 +69,7 @@
#define NS_INVALID -1
#ifdef CONFIG_IRDA_COMPRESSION
+
/*
* Just some shortcuts (may give you strange compiler errors if you change
* them :-)
@@ -76,7 +81,7 @@
#define irda_incomp (*self->decompressor.cp->incomp)
struct irda_compressor {
- QUEUE queue;
+ queue_t q;
struct compressor *cp;
void *state; /* Not used by IrDA */
@@ -85,12 +90,10 @@
/* Main structure of IrLAP */
struct irlap_cb {
- QUEUE q; /* Must be first */
+ queue_t q; /* Must be first */
+ magic_t magic;
- int magic;
-
- struct irda_device *irdev;
- struct device *netdev;
+ struct device *netdev;
/* Connection state */
volatile IRLAP_STATE state; /* Current state */
@@ -104,13 +107,18 @@
struct timer_list wd_timer;
struct timer_list backoff_timer;
+ /* Media busy stuff */
+ struct timer_list media_busy_timer;
+ int media_busy;
+
/* Timeouts which will be different with different turn time */
int slot_timeout;
int poll_timeout;
int final_timeout;
int wd_timeout;
- struct sk_buff_head tx_list; /* Frames to be transmitted */
+ struct sk_buff_head txq; /* Frames to be transmitted */
+ struct sk_buff_head txq_ultra;
__u8 caddr; /* Connection address */
__u32 saddr; /* Source device address */
@@ -126,7 +134,7 @@
#ifdef CONFIG_IRDA_FAST_RR
int fast_RR_timeout;
int fast_RR;
-#endif
+#endif /* CONFIG_IRDA_FAST_RR */
int N1; /* N1 * F-timer = Negitiated link disconnect warning threshold */
int N2; /* N2 * F-timer = Negitiated link disconnect time */
@@ -136,14 +144,16 @@
int remote_busy;
int xmitflag;
- __u8 vs; /* Next frame to be sent */
- __u8 vr; /* Next frame to be received */
-/* int tmp; */
- __u8 va; /* Last frame acked */
- int window; /* Nr of I-frames allowed to send */
- int window_size; /* Current negotiated window size */
- int window_bytes; /* Number of bytes allowed to send */
- int bytes_left; /* Number of bytes allowed to transmit */
+ __u8 vs; /* Next frame to be sent */
+ __u8 vr; /* Next frame to be received */
+ __u8 va; /* Last frame acked */
+ int window; /* Nr of I-frames allowed to send */
+ int window_size; /* Current negotiated window size */
+
+#ifdef CONFIG_IRDA_DYNAMIC_WINDOW
+ __u32 line_capacity; /* Number of bytes allowed to send */
+ __u32 bytes_left; /* Number of bytes still allowed to transmit */
+#endif /* CONFIG_IRDA_DYNAMIC_WINDOW */
struct sk_buff_head wx_list;
@@ -158,21 +168,22 @@
hashbin_t *discovery_log;
discovery_t *discovery_cmd;
- struct qos_info qos_tx; /* QoS requested by peer */
- struct qos_info qos_rx; /* QoS requested by self */
+ __u32 speed;
+
+ struct qos_info qos_tx; /* QoS requested by peer */
+ struct qos_info qos_rx; /* QoS requested by self */
+ struct qos_info *qos_dev; /* QoS supported by device */
- struct notify_t notify; /* Callbacks to IrLMP */
+ notify_t notify; /* Callbacks to IrLMP */
int mtt_required; /* Minumum turnaround time required */
int xbofs_delay; /* Nr of XBOF's used to MTT */
int bofs_count; /* Negotiated extra BOFs */
- struct irda_statistics stats;
-
#ifdef CONFIG_IRDA_COMPRESSION
struct irda_compressor compressor;
struct irda_compressor decompressor;
-#endif
+#endif /* CONFIG_IRDA_COMPRESSION */
};
extern hashbin_t *irlap;
@@ -180,55 +191,56 @@
/*
* Function prototypes
*/
+int irlap_init(void);
+void irlap_cleanup(void);
-int irlap_init( void);
-void irlap_cleanup( void);
+struct irlap_cb *irlap_open(struct device *dev, struct qos_info *qos);
+void irlap_close(struct irlap_cb *self);
-struct irlap_cb *irlap_open( struct irda_device *dev);
-void irlap_close( struct irlap_cb *self);
+void irlap_connect_request(struct irlap_cb *self, __u32 daddr,
+ struct qos_info *qos, int sniff);
+void irlap_connect_response(struct irlap_cb *self, struct sk_buff *skb);
+void irlap_connect_indication(struct irlap_cb *self, struct sk_buff *skb);
+void irlap_connect_confirm(struct irlap_cb *, struct sk_buff *skb);
-void irlap_connect_request( struct irlap_cb *self, __u32 daddr,
- struct qos_info *qos, int sniff);
-void irlap_connect_response( struct irlap_cb *self, struct sk_buff *skb);
-void irlap_connect_indication( struct irlap_cb *self, struct sk_buff *skb);
-void irlap_connect_confirm( struct irlap_cb *, struct sk_buff *skb);
+void irlap_data_indication(struct irlap_cb *, struct sk_buff *, int unreliable);
+void irlap_data_request(struct irlap_cb *, struct sk_buff *, int unreliable);
-inline void irlap_data_indication( struct irlap_cb *, struct sk_buff *);
-inline void irlap_unit_data_indication( struct irlap_cb *, struct sk_buff *);
-inline void irlap_data_request( struct irlap_cb *, struct sk_buff *,
- int reliable);
+#ifdef CONFIG_IRDA_ULTRA
+void irlap_unitdata_request(struct irlap_cb *, struct sk_buff *);
+void irlap_unitdata_indication(struct irlap_cb *, struct sk_buff *);
+#endif /* CONFIG_IRDA_ULTRA */
-void irlap_disconnect_request( struct irlap_cb *);
-void irlap_disconnect_indication( struct irlap_cb *, LAP_REASON reason);
+void irlap_disconnect_request(struct irlap_cb *);
+void irlap_disconnect_indication(struct irlap_cb *, LAP_REASON reason);
-void irlap_status_indication( int quality_of_link);
+void irlap_status_indication(int quality_of_link);
-void irlap_test_request( __u8 *info, int len);
+void irlap_test_request(__u8 *info, int len);
void irlap_discovery_request(struct irlap_cb *, discovery_t *discovery);
void irlap_discovery_confirm(struct irlap_cb *, hashbin_t *discovery_log);
void irlap_discovery_indication(struct irlap_cb *, discovery_t *discovery);
-void irlap_reset_indication( struct irlap_cb *self);
+void irlap_reset_indication(struct irlap_cb *self);
void irlap_reset_confirm(void);
-void irlap_update_nr_received( struct irlap_cb *, int nr);
-int irlap_validate_nr_received( struct irlap_cb *, int nr);
-int irlap_validate_ns_received( struct irlap_cb *, int ns);
+void irlap_update_nr_received(struct irlap_cb *, int nr);
+int irlap_validate_nr_received(struct irlap_cb *, int nr);
+int irlap_validate_ns_received(struct irlap_cb *, int ns);
-int irlap_generate_rand_time_slot( int S, int s);
-void irlap_initiate_connection_state( struct irlap_cb *);
+int irlap_generate_rand_time_slot(int S, int s);
+void irlap_initiate_connection_state(struct irlap_cb *);
void irlap_flush_all_queues(struct irlap_cb *);
-void irlap_change_speed(struct irlap_cb *, int);
+void irlap_change_speed(struct irlap_cb *self, __u32 speed, int now);
void irlap_wait_min_turn_around(struct irlap_cb *, struct qos_info *);
void irlap_init_qos_capabilities(struct irlap_cb *, struct qos_info *);
void irlap_apply_default_connection_parameters(struct irlap_cb *self);
-void irlap_apply_connection_parameters(struct irlap_cb *, struct qos_info *);
+void irlap_apply_connection_parameters(struct irlap_cb *self);
+void irlap_set_local_busy(struct irlap_cb *self, int status);
-extern inline __u8 irlap_get_header_size(struct irlap_cb *self)
-{
- return 2;
-}
+#define IRLAP_GET_HEADER_SIZE(self) 2 /* Will be different when we get VFIR */
+#define IRLAP_GET_TX_QUEUE_LEN(self) skb_queue_len(&self->txq)
#endif
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)