1 /*****************************************************************************/
4 * hdlcdrv.c -- HDLC packet radio network driver.
6 * Copyright (C) 1996-2000 Thomas Sailer (sailer@ife.ee.ethz.ch)
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 * Please note that the GPL allows you to use the driver, NOT the radio.
23 * In order to use the radio, you need a license from the communications
24 * authority of your country.
26 * The driver was derived from Donald Beckers skeleton.c
27 * Written 1993-94 by Donald Becker.
30 * 0.1 21.09.1996 Started
31 * 18.10.1996 Changed to new user space access routines
32 * (copy_{to,from}_user)
33 * 0.2 21.11.1996 various small changes
34 * 0.3 03.03.1997 fixed (hopefully) IP not working with ax.25 as a module
35 * 0.4 16.04.1997 init code/data tagged
36 * 0.5 30.07.1997 made HDLC buffers bigger (solves a problem with the
38 * 0.6 05.04.1998 add spinlocks
39 * 0.7 03.08.1999 removed some old compatibility cruft
40 * 0.8 12.02.2000 adapted to softnet driver interface
43 /*****************************************************************************/
45 #include <linux/capability.h>
46 #include <linux/module.h>
47 #include <linux/types.h>
48 #include <linux/net.h>
51 #include <linux/errno.h>
52 #include <linux/init.h>
53 #include <linux/bitops.h>
55 #include <linux/netdevice.h>
56 #include <linux/if_arp.h>
57 #include <linux/skbuff.h>
58 #include <linux/hdlcdrv.h>
59 #include <linux/random.h>
61 #include <linux/uaccess.h>
63 #include <linux/crc-ccitt.h>
65 /* --------------------------------------------------------------------- */
69 /* --------------------------------------------------------------------- */
71 #define PARAM_TXDELAY 1
72 #define PARAM_PERSIST 2
73 #define PARAM_SLOTTIME 3
74 #define PARAM_TXTAIL 4
75 #define PARAM_FULLDUP 5
76 #define PARAM_HARDWARE 6
77 #define PARAM_RETURN 255
79 /* --------------------------------------------------------------------- */
81 * the CRC routines are stolen from WAMPES
86 /*---------------------------------------------------------------------------*/
88 static inline void append_crc_ccitt(unsigned char *buffer
, int len
)
90 unsigned int crc
= crc_ccitt(0xffff, buffer
, len
) ^ 0xffff;
96 /*---------------------------------------------------------------------------*/
98 static inline int check_crc_ccitt(const unsigned char *buf
, int cnt
)
100 return (crc_ccitt(0xffff, buf
, cnt
) & 0xffff) == 0xf0b8;
103 /*---------------------------------------------------------------------------*/
106 static int calc_crc_ccitt(const unsigned char *buf
, int cnt
)
108 unsigned int crc
= 0xffff;
110 for (; cnt
> 0; cnt
--)
111 crc
= (crc
>> 8) ^ crc_ccitt_table
[(crc
^ *buf
++) & 0xff];
117 /* ---------------------------------------------------------------------- */
119 #define tenms_to_2flags(s,tenms) ((tenms * s->par.bitrate) / 100 / 16)
121 /* ---------------------------------------------------------------------- */
126 static int hdlc_rx_add_bytes(struct hdlcdrv_state
*s
, unsigned int bits
,
131 while (s
->hdlcrx
.rx_state
&& num
>= 8) {
132 if (s
->hdlcrx
.len
>= sizeof(s
->hdlcrx
.buffer
)) {
133 s
->hdlcrx
.rx_state
= 0;
136 *s
->hdlcrx
.bp
++ = bits
>> (32-num
);
144 static void hdlc_rx_flag(struct net_device
*dev
, struct hdlcdrv_state
*s
)
150 if (s
->hdlcrx
.len
< 4)
152 if (!check_crc_ccitt(s
->hdlcrx
.buffer
, s
->hdlcrx
.len
))
154 pkt_len
= s
->hdlcrx
.len
- 2 + 1; /* KISS kludge */
155 if (!(skb
= dev_alloc_skb(pkt_len
))) {
156 printk("%s: memory squeeze, dropping packet\n", dev
->name
);
157 dev
->stats
.rx_dropped
++;
160 cp
= skb_put(skb
, pkt_len
);
161 *cp
++ = 0; /* KISS kludge */
162 memcpy(cp
, s
->hdlcrx
.buffer
, pkt_len
- 1);
163 skb
->protocol
= ax25_type_trans(skb
, dev
);
165 dev
->stats
.rx_packets
++;
168 void hdlcdrv_receiver(struct net_device
*dev
, struct hdlcdrv_state
*s
)
171 unsigned int mask1
, mask2
, mask3
, mask4
, mask5
, mask6
, word
;
173 if (!s
|| s
->magic
!= HDLCDRV_MAGIC
)
175 if (test_and_set_bit(0, &s
->hdlcrx
.in_hdlc_rx
))
178 while (!hdlcdrv_hbuf_empty(&s
->hdlcrx
.hbuf
)) {
179 word
= hdlcdrv_hbuf_get(&s
->hdlcrx
.hbuf
);
182 hdlcdrv_add_bitbuffer_word(&s
->bitbuf_hdlc
, word
);
183 #endif /* HDLCDRV_DEBUG */
184 s
->hdlcrx
.bitstream
>>= 16;
185 s
->hdlcrx
.bitstream
|= word
<< 16;
186 s
->hdlcrx
.bitbuf
>>= 16;
187 s
->hdlcrx
.bitbuf
|= word
<< 16;
188 s
->hdlcrx
.numbits
+= 16;
189 for(i
= 15, mask1
= 0x1fc00, mask2
= 0x1fe00, mask3
= 0x0fc00,
190 mask4
= 0x1f800, mask5
= 0xf800, mask6
= 0xffff;
192 i
--, mask1
<<= 1, mask2
<<= 1, mask3
<<= 1, mask4
<<= 1,
193 mask5
<<= 1, mask6
= (mask6
<< 1) | 1) {
194 if ((s
->hdlcrx
.bitstream
& mask1
) == mask1
)
195 s
->hdlcrx
.rx_state
= 0; /* abort received */
196 else if ((s
->hdlcrx
.bitstream
& mask2
) == mask3
) {
198 if (s
->hdlcrx
.rx_state
) {
199 hdlc_rx_add_bytes(s
, s
->hdlcrx
.bitbuf
203 hdlc_rx_flag(dev
, s
);
206 s
->hdlcrx
.bp
= s
->hdlcrx
.buffer
;
207 s
->hdlcrx
.rx_state
= 1;
208 s
->hdlcrx
.numbits
= i
;
209 } else if ((s
->hdlcrx
.bitstream
& mask4
) == mask5
) {
212 s
->hdlcrx
.bitbuf
= (s
->hdlcrx
.bitbuf
& (~mask6
)) |
213 ((s
->hdlcrx
.bitbuf
& mask6
) << 1);
216 s
->hdlcrx
.numbits
-= hdlc_rx_add_bytes(s
, s
->hdlcrx
.bitbuf
,
219 clear_bit(0, &s
->hdlcrx
.in_hdlc_rx
);
222 /* ---------------------------------------------------------------------- */
224 static inline void do_kiss_params(struct hdlcdrv_state
*s
,
225 unsigned char *data
, unsigned long len
)
229 #define PKP(a,b) printk(KERN_INFO "hdlcdrv.c: channel params: " a "\n", b)
230 #else /* KISS_VERBOSE */
232 #endif /* KISS_VERBOSE */
238 s
->ch_params
.tx_delay
= data
[1];
239 PKP("TX delay = %ums", 10 * s
->ch_params
.tx_delay
);
242 s
->ch_params
.ppersist
= data
[1];
243 PKP("p persistence = %u", s
->ch_params
.ppersist
);
246 s
->ch_params
.slottime
= data
[1];
247 PKP("slot time = %ums", s
->ch_params
.slottime
);
250 s
->ch_params
.tx_tail
= data
[1];
251 PKP("TX tail = %ums", s
->ch_params
.tx_tail
);
254 s
->ch_params
.fulldup
= !!data
[1];
255 PKP("%s duplex", s
->ch_params
.fulldup
? "full" : "half");
263 /* ---------------------------------------------------------------------- */
265 void hdlcdrv_transmitter(struct net_device
*dev
, struct hdlcdrv_state
*s
)
267 unsigned int mask1
, mask2
, mask3
;
272 if (!s
|| s
->magic
!= HDLCDRV_MAGIC
)
274 if (test_and_set_bit(0, &s
->hdlctx
.in_hdlc_tx
))
277 if (s
->hdlctx
.numbits
>= 16) {
278 if (hdlcdrv_hbuf_full(&s
->hdlctx
.hbuf
)) {
279 clear_bit(0, &s
->hdlctx
.in_hdlc_tx
);
282 hdlcdrv_hbuf_put(&s
->hdlctx
.hbuf
, s
->hdlctx
.bitbuf
);
283 s
->hdlctx
.bitbuf
>>= 16;
284 s
->hdlctx
.numbits
-= 16;
286 switch (s
->hdlctx
.tx_state
) {
288 clear_bit(0, &s
->hdlctx
.in_hdlc_tx
);
292 if (s
->hdlctx
.numflags
) {
293 s
->hdlctx
.numflags
--;
295 0x7e7e << s
->hdlctx
.numbits
;
296 s
->hdlctx
.numbits
+= 16;
299 if (s
->hdlctx
.tx_state
== 1) {
300 clear_bit(0, &s
->hdlctx
.in_hdlc_tx
);
303 if (!(skb
= s
->skb
)) {
304 int flgs
= tenms_to_2flags(s
, s
->ch_params
.tx_tail
);
307 s
->hdlctx
.tx_state
= 1;
308 s
->hdlctx
.numflags
= flgs
;
312 netif_wake_queue(dev
);
313 pkt_len
= skb
->len
-1; /* strip KISS byte */
314 if (pkt_len
>= HDLCDRV_MAXFLEN
|| pkt_len
< 2) {
315 s
->hdlctx
.tx_state
= 0;
316 s
->hdlctx
.numflags
= 1;
317 dev_kfree_skb_irq(skb
);
320 skb_copy_from_linear_data_offset(skb
, 1,
323 dev_kfree_skb_irq(skb
);
324 s
->hdlctx
.bp
= s
->hdlctx
.buffer
;
325 append_crc_ccitt(s
->hdlctx
.buffer
, pkt_len
);
326 s
->hdlctx
.len
= pkt_len
+2; /* the appended CRC */
327 s
->hdlctx
.tx_state
= 2;
328 s
->hdlctx
.bitstream
= 0;
329 dev
->stats
.tx_packets
++;
332 if (!s
->hdlctx
.len
) {
333 s
->hdlctx
.tx_state
= 0;
334 s
->hdlctx
.numflags
= 1;
338 s
->hdlctx
.bitbuf
|= *s
->hdlctx
.bp
<<
340 s
->hdlctx
.bitstream
>>= 8;
341 s
->hdlctx
.bitstream
|= (*s
->hdlctx
.bp
++) << 16;
344 mask3
= 0xffffffff >> (31-s
->hdlctx
.numbits
);
345 s
->hdlctx
.numbits
+= 8;
346 for(i
= 0; i
< 8; i
++, mask1
<<= 1, mask2
<<= 1,
347 mask3
= (mask3
<< 1) | 1) {
348 if ((s
->hdlctx
.bitstream
& mask1
) != mask1
)
350 s
->hdlctx
.bitstream
&= ~mask2
;
352 (s
->hdlctx
.bitbuf
& mask3
) |
356 mask3
= (mask3
<< 1) | 1;
363 /* ---------------------------------------------------------------------- */
365 static void start_tx(struct net_device
*dev
, struct hdlcdrv_state
*s
)
367 s
->hdlctx
.tx_state
= 0;
368 s
->hdlctx
.numflags
= tenms_to_2flags(s
, s
->ch_params
.tx_delay
);
369 s
->hdlctx
.bitbuf
= s
->hdlctx
.bitstream
= s
->hdlctx
.numbits
= 0;
370 hdlcdrv_transmitter(dev
, s
);
375 /* ---------------------------------------------------------------------- */
377 void hdlcdrv_arbitrate(struct net_device
*dev
, struct hdlcdrv_state
*s
)
379 if (!s
|| s
->magic
!= HDLCDRV_MAGIC
|| s
->hdlctx
.ptt
|| !s
->skb
)
381 if (s
->ch_params
.fulldup
) {
386 s
->hdlctx
.slotcnt
= s
->ch_params
.slottime
;
389 if ((--s
->hdlctx
.slotcnt
) > 0)
391 s
->hdlctx
.slotcnt
= s
->ch_params
.slottime
;
392 if ((prandom_u32() % 256) > s
->ch_params
.ppersist
)
397 /* --------------------------------------------------------------------- */
399 * ===================== network driver interface =========================
402 static netdev_tx_t
hdlcdrv_send_packet(struct sk_buff
*skb
,
403 struct net_device
*dev
)
405 struct hdlcdrv_state
*sm
= netdev_priv(dev
);
407 if (skb
->protocol
== htons(ETH_P_IP
))
408 return ax25_ip_xmit(skb
);
410 if (skb
->data
[0] != 0) {
411 do_kiss_params(sm
, skb
->data
, skb
->len
);
419 netif_stop_queue(dev
);
424 /* --------------------------------------------------------------------- */
426 static int hdlcdrv_set_mac_address(struct net_device
*dev
, void *addr
)
428 struct sockaddr
*sa
= (struct sockaddr
*)addr
;
430 /* addr is an AX.25 shifted ASCII mac address */
431 memcpy(dev
->dev_addr
, sa
->sa_data
, dev
->addr_len
);
435 /* --------------------------------------------------------------------- */
437 * Open/initialize the board. This is called (in the current kernel)
438 * sometime after booting when the 'ifconfig' program is run.
440 * This routine should set everything up anew at each open, even
441 * registers that "should" only need to be set once at boot, so that
442 * there is non-reboot way to recover if something goes wrong.
445 static int hdlcdrv_open(struct net_device
*dev
)
447 struct hdlcdrv_state
*s
= netdev_priv(dev
);
450 if (!s
->ops
|| !s
->ops
->open
)
454 * initialise some variables
457 s
->hdlcrx
.hbuf
.rd
= s
->hdlcrx
.hbuf
.wr
= 0;
458 s
->hdlcrx
.in_hdlc_rx
= 0;
459 s
->hdlcrx
.rx_state
= 0;
461 s
->hdlctx
.hbuf
.rd
= s
->hdlctx
.hbuf
.wr
= 0;
462 s
->hdlctx
.in_hdlc_tx
= 0;
463 s
->hdlctx
.tx_state
= 1;
464 s
->hdlctx
.numflags
= 0;
465 s
->hdlctx
.bitstream
= s
->hdlctx
.bitbuf
= s
->hdlctx
.numbits
= 0;
467 s
->hdlctx
.slotcnt
= s
->ch_params
.slottime
;
468 s
->hdlctx
.calibrate
= 0;
470 i
= s
->ops
->open(dev
);
473 netif_start_queue(dev
);
477 /* --------------------------------------------------------------------- */
479 * The inverse routine to hdlcdrv_open().
482 static int hdlcdrv_close(struct net_device
*dev
)
484 struct hdlcdrv_state
*s
= netdev_priv(dev
);
487 netif_stop_queue(dev
);
489 if (s
->ops
&& s
->ops
->close
)
490 i
= s
->ops
->close(dev
);
492 dev_kfree_skb(s
->skb
);
498 /* --------------------------------------------------------------------- */
500 static int hdlcdrv_ioctl(struct net_device
*dev
, struct ifreq
*ifr
, int cmd
)
502 struct hdlcdrv_state
*s
= netdev_priv(dev
);
503 struct hdlcdrv_ioctl bi
;
505 if (cmd
!= SIOCDEVPRIVATE
) {
506 if (s
->ops
&& s
->ops
->ioctl
)
507 return s
->ops
->ioctl(dev
, ifr
, &bi
, cmd
);
510 if (copy_from_user(&bi
, ifr
->ifr_data
, sizeof(bi
)))
515 if (s
->ops
&& s
->ops
->ioctl
)
516 return s
->ops
->ioctl(dev
, ifr
, &bi
, cmd
);
519 case HDLCDRVCTL_GETCHANNELPAR
:
520 bi
.data
.cp
.tx_delay
= s
->ch_params
.tx_delay
;
521 bi
.data
.cp
.tx_tail
= s
->ch_params
.tx_tail
;
522 bi
.data
.cp
.slottime
= s
->ch_params
.slottime
;
523 bi
.data
.cp
.ppersist
= s
->ch_params
.ppersist
;
524 bi
.data
.cp
.fulldup
= s
->ch_params
.fulldup
;
527 case HDLCDRVCTL_SETCHANNELPAR
:
528 if (!capable(CAP_NET_ADMIN
))
530 s
->ch_params
.tx_delay
= bi
.data
.cp
.tx_delay
;
531 s
->ch_params
.tx_tail
= bi
.data
.cp
.tx_tail
;
532 s
->ch_params
.slottime
= bi
.data
.cp
.slottime
;
533 s
->ch_params
.ppersist
= bi
.data
.cp
.ppersist
;
534 s
->ch_params
.fulldup
= bi
.data
.cp
.fulldup
;
535 s
->hdlctx
.slotcnt
= 1;
538 case HDLCDRVCTL_GETMODEMPAR
:
539 bi
.data
.mp
.iobase
= dev
->base_addr
;
540 bi
.data
.mp
.irq
= dev
->irq
;
541 bi
.data
.mp
.dma
= dev
->dma
;
542 bi
.data
.mp
.dma2
= s
->ptt_out
.dma2
;
543 bi
.data
.mp
.seriobase
= s
->ptt_out
.seriobase
;
544 bi
.data
.mp
.pariobase
= s
->ptt_out
.pariobase
;
545 bi
.data
.mp
.midiiobase
= s
->ptt_out
.midiiobase
;
548 case HDLCDRVCTL_SETMODEMPAR
:
549 if ((!capable(CAP_SYS_RAWIO
)) || netif_running(dev
))
551 dev
->base_addr
= bi
.data
.mp
.iobase
;
552 dev
->irq
= bi
.data
.mp
.irq
;
553 dev
->dma
= bi
.data
.mp
.dma
;
554 s
->ptt_out
.dma2
= bi
.data
.mp
.dma2
;
555 s
->ptt_out
.seriobase
= bi
.data
.mp
.seriobase
;
556 s
->ptt_out
.pariobase
= bi
.data
.mp
.pariobase
;
557 s
->ptt_out
.midiiobase
= bi
.data
.mp
.midiiobase
;
560 case HDLCDRVCTL_GETSTAT
:
561 bi
.data
.cs
.ptt
= hdlcdrv_ptt(s
);
562 bi
.data
.cs
.dcd
= s
->hdlcrx
.dcd
;
563 bi
.data
.cs
.ptt_keyed
= s
->ptt_keyed
;
564 bi
.data
.cs
.tx_packets
= dev
->stats
.tx_packets
;
565 bi
.data
.cs
.tx_errors
= dev
->stats
.tx_errors
;
566 bi
.data
.cs
.rx_packets
= dev
->stats
.rx_packets
;
567 bi
.data
.cs
.rx_errors
= dev
->stats
.rx_errors
;
570 case HDLCDRVCTL_OLDGETSTAT
:
571 bi
.data
.ocs
.ptt
= hdlcdrv_ptt(s
);
572 bi
.data
.ocs
.dcd
= s
->hdlcrx
.dcd
;
573 bi
.data
.ocs
.ptt_keyed
= s
->ptt_keyed
;
576 case HDLCDRVCTL_CALIBRATE
:
577 if(!capable(CAP_SYS_RAWIO
))
579 if (s
->par
.bitrate
<= 0)
581 if (bi
.data
.calibrate
> INT_MAX
/ s
->par
.bitrate
)
583 s
->hdlctx
.calibrate
= bi
.data
.calibrate
* s
->par
.bitrate
/ 16;
586 case HDLCDRVCTL_GETSAMPLES
:
587 #ifndef HDLCDRV_DEBUG
589 #else /* HDLCDRV_DEBUG */
590 if (s
->bitbuf_channel
.rd
== s
->bitbuf_channel
.wr
)
593 s
->bitbuf_channel
.buffer
[s
->bitbuf_channel
.rd
];
594 s
->bitbuf_channel
.rd
= (s
->bitbuf_channel
.rd
+1) %
595 sizeof(s
->bitbuf_channel
.buffer
);
597 #endif /* HDLCDRV_DEBUG */
599 case HDLCDRVCTL_GETBITS
:
600 #ifndef HDLCDRV_DEBUG
602 #else /* HDLCDRV_DEBUG */
603 if (s
->bitbuf_hdlc
.rd
== s
->bitbuf_hdlc
.wr
)
606 s
->bitbuf_hdlc
.buffer
[s
->bitbuf_hdlc
.rd
];
607 s
->bitbuf_hdlc
.rd
= (s
->bitbuf_hdlc
.rd
+1) %
608 sizeof(s
->bitbuf_hdlc
.buffer
);
610 #endif /* HDLCDRV_DEBUG */
612 case HDLCDRVCTL_DRIVERNAME
:
613 if (s
->ops
&& s
->ops
->drvname
) {
614 strncpy(bi
.data
.drivername
, s
->ops
->drvname
,
615 sizeof(bi
.data
.drivername
));
618 bi
.data
.drivername
[0] = '\0';
622 if (copy_to_user(ifr
->ifr_data
, &bi
, sizeof(bi
)))
628 /* --------------------------------------------------------------------- */
630 static const struct net_device_ops hdlcdrv_netdev
= {
631 .ndo_open
= hdlcdrv_open
,
632 .ndo_stop
= hdlcdrv_close
,
633 .ndo_start_xmit
= hdlcdrv_send_packet
,
634 .ndo_do_ioctl
= hdlcdrv_ioctl
,
635 .ndo_set_mac_address
= hdlcdrv_set_mac_address
,
639 * Initialize fields in hdlcdrv
641 static void hdlcdrv_setup(struct net_device
*dev
)
643 static const struct hdlcdrv_channel_params dflt_ch_params
= {
646 struct hdlcdrv_state
*s
= netdev_priv(dev
);
649 * initialize the hdlcdrv_state struct
651 s
->ch_params
= dflt_ch_params
;
654 spin_lock_init(&s
->hdlcrx
.hbuf
.lock
);
655 s
->hdlcrx
.hbuf
.rd
= s
->hdlcrx
.hbuf
.wr
= 0;
656 s
->hdlcrx
.in_hdlc_rx
= 0;
657 s
->hdlcrx
.rx_state
= 0;
659 spin_lock_init(&s
->hdlctx
.hbuf
.lock
);
660 s
->hdlctx
.hbuf
.rd
= s
->hdlctx
.hbuf
.wr
= 0;
661 s
->hdlctx
.in_hdlc_tx
= 0;
662 s
->hdlctx
.tx_state
= 1;
663 s
->hdlctx
.numflags
= 0;
664 s
->hdlctx
.bitstream
= s
->hdlctx
.bitbuf
= s
->hdlctx
.numbits
= 0;
666 s
->hdlctx
.slotcnt
= s
->ch_params
.slottime
;
667 s
->hdlctx
.calibrate
= 0;
670 s
->bitbuf_channel
.rd
= s
->bitbuf_channel
.wr
= 0;
671 s
->bitbuf_channel
.shreg
= 0x80;
673 s
->bitbuf_hdlc
.rd
= s
->bitbuf_hdlc
.wr
= 0;
674 s
->bitbuf_hdlc
.shreg
= 0x80;
675 #endif /* HDLCDRV_DEBUG */
678 /* Fill in the fields of the device structure */
682 dev
->netdev_ops
= &hdlcdrv_netdev
;
683 dev
->header_ops
= &ax25_header_ops
;
685 dev
->type
= ARPHRD_AX25
; /* AF_AX25 device */
686 dev
->hard_header_len
= AX25_MAX_HEADER_LEN
+ AX25_BPQ_HEADER_LEN
;
687 dev
->mtu
= AX25_DEF_PACLEN
; /* eth_mtu is the default */
688 dev
->addr_len
= AX25_ADDR_LEN
; /* sizeof an ax.25 address */
689 memcpy(dev
->broadcast
, &ax25_bcast
, AX25_ADDR_LEN
);
690 memcpy(dev
->dev_addr
, &ax25_defaddr
, AX25_ADDR_LEN
);
691 dev
->tx_queue_len
= 16;
694 /* --------------------------------------------------------------------- */
695 struct net_device
*hdlcdrv_register(const struct hdlcdrv_ops
*ops
,
696 unsigned int privsize
, const char *ifname
,
697 unsigned int baseaddr
, unsigned int irq
,
700 struct net_device
*dev
;
701 struct hdlcdrv_state
*s
;
706 if (privsize
< sizeof(struct hdlcdrv_state
))
707 privsize
= sizeof(struct hdlcdrv_state
);
709 dev
= alloc_netdev(privsize
, ifname
, NET_NAME_UNKNOWN
, hdlcdrv_setup
);
711 return ERR_PTR(-ENOMEM
);
714 * initialize part of the hdlcdrv_state struct
716 s
= netdev_priv(dev
);
717 s
->magic
= HDLCDRV_MAGIC
;
719 dev
->base_addr
= baseaddr
;
723 err
= register_netdev(dev
);
725 printk(KERN_WARNING
"hdlcdrv: cannot register net "
726 "device %s\n", dev
->name
);
733 /* --------------------------------------------------------------------- */
735 void hdlcdrv_unregister(struct net_device
*dev
)
737 struct hdlcdrv_state
*s
= netdev_priv(dev
);
739 BUG_ON(s
->magic
!= HDLCDRV_MAGIC
);
741 if (s
->opened
&& s
->ops
->close
)
743 unregister_netdev(dev
);
748 /* --------------------------------------------------------------------- */
750 EXPORT_SYMBOL(hdlcdrv_receiver
);
751 EXPORT_SYMBOL(hdlcdrv_transmitter
);
752 EXPORT_SYMBOL(hdlcdrv_arbitrate
);
753 EXPORT_SYMBOL(hdlcdrv_register
);
754 EXPORT_SYMBOL(hdlcdrv_unregister
);
756 /* --------------------------------------------------------------------- */
758 static int __init
hdlcdrv_init_driver(void)
760 printk(KERN_INFO
"hdlcdrv: (C) 1996-2000 Thomas Sailer HB9JNX/AE4WA\n");
761 printk(KERN_INFO
"hdlcdrv: version 0.8\n");
765 /* --------------------------------------------------------------------- */
767 static void __exit
hdlcdrv_cleanup_driver(void)
769 printk(KERN_INFO
"hdlcdrv: cleanup\n");
772 /* --------------------------------------------------------------------- */
774 MODULE_AUTHOR("Thomas M. Sailer, sailer@ife.ee.ethz.ch, hb9jnx@hb9w.che.eu");
775 MODULE_DESCRIPTION("Packet Radio network interface HDLC encoder/decoder");
776 MODULE_LICENSE("GPL");
777 module_init(hdlcdrv_init_driver
);
778 module_exit(hdlcdrv_cleanup_driver
);
780 /* --------------------------------------------------------------------- */