hdlcdrv.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:26k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*****************************************************************************/
  2. /*
  3.  * hdlcdrv.c  -- HDLC packet radio network driver.
  4.  *
  5.  * Copyright (C) 1996-2000  Thomas Sailer (sailer@ife.ee.ethz.ch)
  6.  *
  7.  * This program is free software; you can redistribute it and/or modify
  8.  * it under the terms of the GNU General Public License as published by
  9.  * the Free Software Foundation; either version 2 of the License, or
  10.  * (at your option) any later version.
  11.  *
  12.  * This program is distributed in the hope that it will be useful,
  13.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15.  * GNU General Public License for more details.
  16.  *
  17.  * You should have received a copy of the GNU General Public License
  18.  * along with this program; if not, write to the Free Software
  19.  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  20.  *
  21.  *  Please note that the GPL allows you to use the driver, NOT the radio.
  22.  *  In order to use the radio, you need a license from the communications
  23.  *  authority of your country.
  24.  *
  25.  *  The driver was derived from Donald Beckers skeleton.c
  26.  * Written 1993-94 by Donald Becker.
  27.  *
  28.  *  History:
  29.  *   0.1  21.09.1996  Started
  30.  *        18.10.1996  Changed to new user space access routines 
  31.  *                    (copy_{to,from}_user)
  32.  *   0.2  21.11.1996  various small changes
  33.  *   0.3  03.03.1997  fixed (hopefully) IP not working with ax.25 as a module
  34.  *   0.4  16.04.1997  init code/data tagged
  35.  *   0.5  30.07.1997  made HDLC buffers bigger (solves a problem with the
  36.  *                    soundmodem driver)
  37.  *   0.6  05.04.1998  add spinlocks
  38.  *   0.7  03.08.1999  removed some old compatibility cruft
  39.  *   0.8  12.02.2000  adapted to softnet driver interface
  40.  */
  41. /*****************************************************************************/
  42. #include <linux/config.h>
  43. #include <linux/version.h>
  44. #include <linux/module.h>
  45. #include <linux/types.h>
  46. #include <linux/net.h>
  47. #include <linux/in.h>
  48. #include <linux/if.h>
  49. #include <linux/slab.h>
  50. #include <linux/errno.h>
  51. #include <linux/init.h>
  52. #include <asm/bitops.h>
  53. #include <asm/uaccess.h>
  54. #include <linux/netdevice.h>
  55. #include <linux/if_arp.h>
  56. #include <linux/etherdevice.h>
  57. #include <linux/skbuff.h>
  58. #include <linux/hdlcdrv.h>
  59. /* prototypes for ax25_encapsulate and ax25_rebuild_header */
  60. #include <net/ax25.h> 
  61. /* make genksyms happy */
  62. #include <linux/ip.h>
  63. #include <linux/udp.h>
  64. #include <linux/tcp.h>
  65. /* --------------------------------------------------------------------- */
  66. /*
  67.  * The name of the card. Is used for messages and in the requests for
  68.  * io regions, irqs and dma channels
  69.  */
  70. static char ax25_bcast[AX25_ADDR_LEN] =
  71. {'Q' << 1, 'S' << 1, 'T' << 1, ' ' << 1, ' ' << 1, ' ' << 1, '0' << 1};
  72. static char ax25_nocall[AX25_ADDR_LEN] =
  73. {'L' << 1, 'I' << 1, 'N' << 1, 'U' << 1, 'X' << 1, ' ' << 1, '1' << 1};
  74. /* --------------------------------------------------------------------- */
  75. #define KISS_VERBOSE
  76. /* --------------------------------------------------------------------- */
  77. #define PARAM_TXDELAY   1
  78. #define PARAM_PERSIST   2
  79. #define PARAM_SLOTTIME  3
  80. #define PARAM_TXTAIL    4
  81. #define PARAM_FULLDUP   5
  82. #define PARAM_HARDWARE  6
  83. #define PARAM_RETURN    255
  84. /* --------------------------------------------------------------------- */
  85. /*
  86.  * the CRC routines are stolen from WAMPES
  87.  * by Dieter Deyke
  88.  */
  89. static const unsigned short crc_ccitt_table[] = {
  90. 0x0000, 0x1189, 0x2312, 0x329b, 0x4624, 0x57ad, 0x6536, 0x74bf,
  91. 0x8c48, 0x9dc1, 0xaf5a, 0xbed3, 0xca6c, 0xdbe5, 0xe97e, 0xf8f7,
  92. 0x1081, 0x0108, 0x3393, 0x221a, 0x56a5, 0x472c, 0x75b7, 0x643e,
  93. 0x9cc9, 0x8d40, 0xbfdb, 0xae52, 0xdaed, 0xcb64, 0xf9ff, 0xe876,
  94. 0x2102, 0x308b, 0x0210, 0x1399, 0x6726, 0x76af, 0x4434, 0x55bd,
  95. 0xad4a, 0xbcc3, 0x8e58, 0x9fd1, 0xeb6e, 0xfae7, 0xc87c, 0xd9f5,
  96. 0x3183, 0x200a, 0x1291, 0x0318, 0x77a7, 0x662e, 0x54b5, 0x453c,
  97. 0xbdcb, 0xac42, 0x9ed9, 0x8f50, 0xfbef, 0xea66, 0xd8fd, 0xc974,
  98. 0x4204, 0x538d, 0x6116, 0x709f, 0x0420, 0x15a9, 0x2732, 0x36bb,
  99. 0xce4c, 0xdfc5, 0xed5e, 0xfcd7, 0x8868, 0x99e1, 0xab7a, 0xbaf3,
  100. 0x5285, 0x430c, 0x7197, 0x601e, 0x14a1, 0x0528, 0x37b3, 0x263a,
  101. 0xdecd, 0xcf44, 0xfddf, 0xec56, 0x98e9, 0x8960, 0xbbfb, 0xaa72,
  102. 0x6306, 0x728f, 0x4014, 0x519d, 0x2522, 0x34ab, 0x0630, 0x17b9,
  103. 0xef4e, 0xfec7, 0xcc5c, 0xddd5, 0xa96a, 0xb8e3, 0x8a78, 0x9bf1,
  104. 0x7387, 0x620e, 0x5095, 0x411c, 0x35a3, 0x242a, 0x16b1, 0x0738,
  105. 0xffcf, 0xee46, 0xdcdd, 0xcd54, 0xb9eb, 0xa862, 0x9af9, 0x8b70,
  106. 0x8408, 0x9581, 0xa71a, 0xb693, 0xc22c, 0xd3a5, 0xe13e, 0xf0b7,
  107. 0x0840, 0x19c9, 0x2b52, 0x3adb, 0x4e64, 0x5fed, 0x6d76, 0x7cff,
  108. 0x9489, 0x8500, 0xb79b, 0xa612, 0xd2ad, 0xc324, 0xf1bf, 0xe036,
  109. 0x18c1, 0x0948, 0x3bd3, 0x2a5a, 0x5ee5, 0x4f6c, 0x7df7, 0x6c7e,
  110. 0xa50a, 0xb483, 0x8618, 0x9791, 0xe32e, 0xf2a7, 0xc03c, 0xd1b5,
  111. 0x2942, 0x38cb, 0x0a50, 0x1bd9, 0x6f66, 0x7eef, 0x4c74, 0x5dfd,
  112. 0xb58b, 0xa402, 0x9699, 0x8710, 0xf3af, 0xe226, 0xd0bd, 0xc134,
  113. 0x39c3, 0x284a, 0x1ad1, 0x0b58, 0x7fe7, 0x6e6e, 0x5cf5, 0x4d7c,
  114. 0xc60c, 0xd785, 0xe51e, 0xf497, 0x8028, 0x91a1, 0xa33a, 0xb2b3,
  115. 0x4a44, 0x5bcd, 0x6956, 0x78df, 0x0c60, 0x1de9, 0x2f72, 0x3efb,
  116. 0xd68d, 0xc704, 0xf59f, 0xe416, 0x90a9, 0x8120, 0xb3bb, 0xa232,
  117. 0x5ac5, 0x4b4c, 0x79d7, 0x685e, 0x1ce1, 0x0d68, 0x3ff3, 0x2e7a,
  118. 0xe70e, 0xf687, 0xc41c, 0xd595, 0xa12a, 0xb0a3, 0x8238, 0x93b1,
  119. 0x6b46, 0x7acf, 0x4854, 0x59dd, 0x2d62, 0x3ceb, 0x0e70, 0x1ff9,
  120. 0xf78f, 0xe606, 0xd49d, 0xc514, 0xb1ab, 0xa022, 0x92b9, 0x8330,
  121. 0x7bc7, 0x6a4e, 0x58d5, 0x495c, 0x3de3, 0x2c6a, 0x1ef1, 0x0f78
  122. };
  123. /*---------------------------------------------------------------------------*/
  124. static inline void append_crc_ccitt(unsigned char *buffer, int len)
  125. {
  126.   unsigned int crc = 0xffff;
  127. for (;len>0;len--)
  128. crc = (crc >> 8) ^ crc_ccitt_table[(crc ^ *buffer++) & 0xff];
  129. crc ^= 0xffff;
  130. *buffer++ = crc;
  131. *buffer++ = crc >> 8;
  132. }
  133. /*---------------------------------------------------------------------------*/
  134. static inline int check_crc_ccitt(const unsigned char *buf, int cnt)
  135. {
  136. unsigned int crc = 0xffff;
  137. for (; cnt > 0; cnt--)
  138. crc = (crc >> 8) ^ crc_ccitt_table[(crc ^ *buf++) & 0xff];
  139. return (crc & 0xffff) == 0xf0b8;
  140. }
  141. /*---------------------------------------------------------------------------*/
  142. #if 0
  143. static int calc_crc_ccitt(const unsigned char *buf, int cnt)
  144. {
  145. unsigned int crc = 0xffff;
  146. for (; cnt > 0; cnt--)
  147. crc = (crc >> 8) ^ crc_ccitt_table[(crc ^ *buf++) & 0xff];
  148. crc ^= 0xffff;
  149. return (crc & 0xffff);
  150. }
  151. #endif
  152. /* ---------------------------------------------------------------------- */
  153. #define tenms_to_2flags(s,tenms) ((tenms * s->par.bitrate) / 100 / 16)
  154. /* ---------------------------------------------------------------------- */
  155. /*
  156.  * The HDLC routines
  157.  */
  158. static int hdlc_rx_add_bytes(struct hdlcdrv_state *s, unsigned int bits, 
  159.      int num)
  160. {
  161. int added = 0;
  162. while (s->hdlcrx.rx_state && num >= 8) {
  163. if (s->hdlcrx.len >= sizeof(s->hdlcrx.buffer)) {
  164. s->hdlcrx.rx_state = 0;
  165. return 0;
  166. }
  167. *s->hdlcrx.bp++ = bits >> (32-num);
  168. s->hdlcrx.len++;
  169. num -= 8;
  170. added += 8;
  171. }
  172. return added;
  173. }
  174. static void hdlc_rx_flag(struct net_device *dev, struct hdlcdrv_state *s)
  175. {
  176. struct sk_buff *skb;
  177. int pkt_len;
  178. unsigned char *cp;
  179. if (s->hdlcrx.len < 4) 
  180. return;
  181. if (!check_crc_ccitt(s->hdlcrx.buffer, s->hdlcrx.len)) 
  182. return;
  183. pkt_len = s->hdlcrx.len - 2 + 1; /* KISS kludge */
  184. if (!(skb = dev_alloc_skb(pkt_len))) {
  185. printk("%s: memory squeeze, dropping packetn", dev->name);
  186. s->stats.rx_dropped++;
  187. return;
  188. }
  189. skb->dev = dev;
  190. cp = skb_put(skb, pkt_len);
  191. *cp++ = 0; /* KISS kludge */
  192. memcpy(cp, s->hdlcrx.buffer, pkt_len - 1);
  193. skb->protocol = htons(ETH_P_AX25);
  194. skb->mac.raw = skb->data;
  195. netif_rx(skb);
  196. s->stats.rx_packets++;
  197. }
  198. void hdlcdrv_receiver(struct net_device *dev, struct hdlcdrv_state *s)
  199. {
  200. int i;
  201. unsigned int mask1, mask2, mask3, mask4, mask5, mask6, word;
  202. if (!s || s->magic != HDLCDRV_MAGIC) 
  203. return;
  204. if (test_and_set_bit(0, &s->hdlcrx.in_hdlc_rx))
  205. return;
  206. while (!hdlcdrv_hbuf_empty(&s->hdlcrx.hbuf)) {
  207. word = hdlcdrv_hbuf_get(&s->hdlcrx.hbuf);
  208. #ifdef HDLCDRV_DEBUG
  209. hdlcdrv_add_bitbuffer_word(&s->bitbuf_hdlc, word);
  210. #endif /* HDLCDRV_DEBUG */
  211.         s->hdlcrx.bitstream >>= 16;
  212. s->hdlcrx.bitstream |= word << 16;
  213. s->hdlcrx.bitbuf >>= 16;
  214. s->hdlcrx.bitbuf |= word << 16;
  215. s->hdlcrx.numbits += 16;
  216. for(i = 15, mask1 = 0x1fc00, mask2 = 0x1fe00, mask3 = 0x0fc00,
  217.     mask4 = 0x1f800, mask5 = 0xf800, mask6 = 0xffff; 
  218.     i >= 0; 
  219.     i--, mask1 <<= 1, mask2 <<= 1, mask3 <<= 1, mask4 <<= 1, 
  220.     mask5 <<= 1, mask6 = (mask6 << 1) | 1) {
  221. if ((s->hdlcrx.bitstream & mask1) == mask1)
  222. s->hdlcrx.rx_state = 0; /* abort received */
  223. else if ((s->hdlcrx.bitstream & mask2) == mask3) {
  224. /* flag received */
  225. if (s->hdlcrx.rx_state) {
  226. hdlc_rx_add_bytes(s, s->hdlcrx.bitbuf 
  227.   << (8+i),
  228.   s->hdlcrx.numbits
  229.   -8-i);
  230. hdlc_rx_flag(dev, s);
  231. }
  232. s->hdlcrx.len = 0;
  233. s->hdlcrx.bp = s->hdlcrx.buffer;
  234. s->hdlcrx.rx_state = 1;
  235. s->hdlcrx.numbits = i;
  236. } else if ((s->hdlcrx.bitstream & mask4) == mask5) {
  237. /* stuffed bit */
  238. s->hdlcrx.numbits--;
  239. s->hdlcrx.bitbuf = (s->hdlcrx.bitbuf & (~mask6)) |
  240. ((s->hdlcrx.bitbuf & mask6) << 1);
  241. }
  242. }
  243. s->hdlcrx.numbits -= hdlc_rx_add_bytes(s, s->hdlcrx.bitbuf,
  244.        s->hdlcrx.numbits);
  245. }
  246. clear_bit(0, &s->hdlcrx.in_hdlc_rx);
  247. }
  248. /* ---------------------------------------------------------------------- */
  249. static inline void do_kiss_params(struct hdlcdrv_state *s,
  250.   unsigned char *data, unsigned long len)
  251. {
  252. #ifdef KISS_VERBOSE
  253. #define PKP(a,b) printk(KERN_INFO "hdlcdrv.c: channel params: " a "n", b)
  254. #else /* KISS_VERBOSE */       
  255. #define PKP(a,b) 
  256. #endif /* KISS_VERBOSE */       
  257. if (len < 2)
  258. return;
  259. switch(data[0]) {
  260. case PARAM_TXDELAY:
  261. s->ch_params.tx_delay = data[1];
  262. PKP("TX delay = %ums", 10 * s->ch_params.tx_delay);
  263. break;
  264. case PARAM_PERSIST:   
  265. s->ch_params.ppersist = data[1];
  266. PKP("p persistence = %u", s->ch_params.ppersist);
  267. break;
  268. case PARAM_SLOTTIME:  
  269. s->ch_params.slottime = data[1];
  270. PKP("slot time = %ums", s->ch_params.slottime);
  271. break;
  272. case PARAM_TXTAIL:    
  273. s->ch_params.tx_tail = data[1];
  274. PKP("TX tail = %ums", s->ch_params.tx_tail);
  275. break;
  276. case PARAM_FULLDUP:   
  277. s->ch_params.fulldup = !!data[1];
  278. PKP("%s duplex", s->ch_params.fulldup ? "full" : "half");
  279. break;
  280. default:
  281. break;
  282. }
  283. #undef PKP
  284. }
  285. /* ---------------------------------------------------------------------- */
  286. void hdlcdrv_transmitter(struct net_device *dev, struct hdlcdrv_state *s)
  287. {
  288. unsigned int mask1, mask2, mask3;
  289. int i;
  290. struct sk_buff *skb;
  291. int pkt_len;
  292. if (!s || s->magic != HDLCDRV_MAGIC) 
  293. return;
  294. if (test_and_set_bit(0, &s->hdlctx.in_hdlc_tx))
  295. return;
  296. for (;;) {
  297. if (s->hdlctx.numbits >= 16) {
  298. if (hdlcdrv_hbuf_full(&s->hdlctx.hbuf)) {
  299. clear_bit(0, &s->hdlctx.in_hdlc_tx);
  300. return;
  301. }
  302. hdlcdrv_hbuf_put(&s->hdlctx.hbuf, s->hdlctx.bitbuf);
  303. s->hdlctx.bitbuf >>= 16;
  304. s->hdlctx.numbits -= 16;
  305. }
  306. switch (s->hdlctx.tx_state) {
  307. default:
  308. clear_bit(0, &s->hdlctx.in_hdlc_tx);
  309. return;
  310. case 0:
  311. case 1:
  312. if (s->hdlctx.numflags) {
  313. s->hdlctx.numflags--;
  314. s->hdlctx.bitbuf |= 
  315. 0x7e7e << s->hdlctx.numbits;
  316. s->hdlctx.numbits += 16;
  317. break;
  318. }
  319. if (s->hdlctx.tx_state == 1) {
  320. clear_bit(0, &s->hdlctx.in_hdlc_tx);
  321. return;
  322. }
  323. if (!(skb = s->skb)) {
  324. int flgs = tenms_to_2flags(s, s->ch_params.tx_tail);
  325. if (flgs < 2)
  326. flgs = 2;
  327. s->hdlctx.tx_state = 1;
  328. s->hdlctx.numflags = flgs;
  329. break;
  330. }
  331. s->skb = NULL;
  332. netif_wake_queue(dev);
  333. pkt_len = skb->len-1; /* strip KISS byte */
  334. if (pkt_len >= HDLCDRV_MAXFLEN || pkt_len < 2) {
  335. s->hdlctx.tx_state = 0;
  336. s->hdlctx.numflags = 1;
  337. dev_kfree_skb_irq(skb);
  338. break;
  339. }
  340. memcpy(s->hdlctx.buffer, skb->data+1, pkt_len);
  341. dev_kfree_skb_irq(skb);
  342. s->hdlctx.bp = s->hdlctx.buffer;
  343. append_crc_ccitt(s->hdlctx.buffer, pkt_len);
  344. s->hdlctx.len = pkt_len+2; /* the appended CRC */
  345. s->hdlctx.tx_state = 2;
  346. s->hdlctx.bitstream = 0;
  347. s->stats.tx_packets++;
  348. break;
  349. case 2:
  350. if (!s->hdlctx.len) {
  351. s->hdlctx.tx_state = 0;
  352. s->hdlctx.numflags = 1;
  353. break;
  354. }
  355. s->hdlctx.len--;
  356. s->hdlctx.bitbuf |= *s->hdlctx.bp <<
  357. s->hdlctx.numbits;
  358. s->hdlctx.bitstream >>= 8;
  359. s->hdlctx.bitstream |= (*s->hdlctx.bp++) << 16;
  360. mask1 = 0x1f000;
  361. mask2 = 0x10000;
  362. mask3 = 0xffffffff >> (31-s->hdlctx.numbits);
  363. s->hdlctx.numbits += 8;
  364. for(i = 0; i < 8; i++, mask1 <<= 1, mask2 <<= 1, 
  365.     mask3 = (mask3 << 1) | 1) {
  366. if ((s->hdlctx.bitstream & mask1) != mask1) 
  367. continue;
  368. s->hdlctx.bitstream &= ~mask2;
  369. s->hdlctx.bitbuf = 
  370. (s->hdlctx.bitbuf & mask3) |
  371. ((s->hdlctx.bitbuf & 
  372.  (~mask3)) << 1);
  373. s->hdlctx.numbits++;
  374. mask3 = (mask3 << 1) | 1;
  375. }
  376. break;
  377. }
  378. }
  379. }
  380. /* ---------------------------------------------------------------------- */
  381. static void start_tx(struct net_device *dev, struct hdlcdrv_state *s)
  382. {
  383. s->hdlctx.tx_state = 0;
  384. s->hdlctx.numflags = tenms_to_2flags(s, s->ch_params.tx_delay);
  385. s->hdlctx.bitbuf = s->hdlctx.bitstream = s->hdlctx.numbits = 0;
  386. hdlcdrv_transmitter(dev, s);
  387. s->hdlctx.ptt = 1;
  388. s->ptt_keyed++;
  389. }
  390. /* ---------------------------------------------------------------------- */
  391. static unsigned short random_seed;
  392. static inline unsigned short random_num(void)
  393. {
  394. random_seed = 28629 * random_seed + 157;
  395. return random_seed;
  396. }
  397. /* ---------------------------------------------------------------------- */
  398. void hdlcdrv_arbitrate(struct net_device *dev, struct hdlcdrv_state *s)
  399. {
  400. if (!s || s->magic != HDLCDRV_MAGIC || s->hdlctx.ptt || !s->skb) 
  401. return;
  402. if (s->ch_params.fulldup) {
  403. start_tx(dev, s);
  404. return;
  405. }
  406. if (s->hdlcrx.dcd) {
  407. s->hdlctx.slotcnt = s->ch_params.slottime;
  408. return;
  409. }
  410. if ((--s->hdlctx.slotcnt) > 0)
  411. return;
  412. s->hdlctx.slotcnt = s->ch_params.slottime;
  413. if ((random_num() % 256) > s->ch_params.ppersist)
  414. return;
  415. start_tx(dev, s);
  416. }
  417. /* --------------------------------------------------------------------- */
  418. /*
  419.  * ===================== network driver interface =========================
  420.  */
  421. static inline int hdlcdrv_paranoia_check(struct net_device *dev,
  422. const char *routine)
  423. {
  424. if (!dev || !dev->priv || 
  425.     ((struct hdlcdrv_state *)dev->priv)->magic != HDLCDRV_MAGIC) {
  426. printk(KERN_ERR "hdlcdrv: bad magic number for hdlcdrv_state "
  427.        "struct in routine %sn", routine);
  428. return 1;
  429. }
  430. return 0;
  431. }
  432. /* --------------------------------------------------------------------- */
  433. static int hdlcdrv_send_packet(struct sk_buff *skb, struct net_device *dev)
  434. {
  435. struct hdlcdrv_state *sm;
  436. if (hdlcdrv_paranoia_check(dev, "hdlcdrv_send_packet"))
  437. return 0;
  438. sm = (struct hdlcdrv_state *)dev->priv;
  439. if (skb->data[0] != 0) {
  440. do_kiss_params(sm, skb->data, skb->len);
  441. dev_kfree_skb(skb);
  442. return 0;
  443. }
  444. if (sm->skb)
  445. return -1;
  446. netif_stop_queue(dev);
  447. sm->skb = skb;
  448. return 0;
  449. }
  450. /* --------------------------------------------------------------------- */
  451. static int hdlcdrv_set_mac_address(struct net_device *dev, void *addr)
  452. {
  453. struct sockaddr *sa = (struct sockaddr *)addr;
  454. /* addr is an AX.25 shifted ASCII mac address */
  455. memcpy(dev->dev_addr, sa->sa_data, dev->addr_len); 
  456. return 0;                                         
  457. }
  458. /* --------------------------------------------------------------------- */
  459. static struct net_device_stats *hdlcdrv_get_stats(struct net_device *dev)
  460. {
  461. struct hdlcdrv_state *sm;
  462. if (hdlcdrv_paranoia_check(dev, "hdlcdrv_get_stats"))
  463. return NULL;
  464. sm = (struct hdlcdrv_state *)dev->priv;
  465. /* 
  466.  * Get the current statistics.  This may be called with the
  467.  * card open or closed. 
  468.  */
  469. return &sm->stats;
  470. }
  471. /* --------------------------------------------------------------------- */
  472. /*
  473.  * Open/initialize the board. This is called (in the current kernel)
  474.  * sometime after booting when the 'ifconfig' program is run.
  475.  *
  476.  * This routine should set everything up anew at each open, even
  477.  * registers that "should" only need to be set once at boot, so that
  478.  * there is non-reboot way to recover if something goes wrong.
  479.  */
  480. static int hdlcdrv_open(struct net_device *dev)
  481. {
  482. struct hdlcdrv_state *s;
  483. int i;
  484. if (hdlcdrv_paranoia_check(dev, "hdlcdrv_open"))
  485. return -EINVAL;
  486. s = (struct hdlcdrv_state *)dev->priv;
  487. if (!s->ops || !s->ops->open)
  488. return -ENODEV;
  489. /*
  490.  * initialise some variables
  491.  */
  492. s->hdlcrx.hbuf.rd = s->hdlcrx.hbuf.wr = 0;
  493. s->hdlcrx.in_hdlc_rx = 0;
  494. s->hdlcrx.rx_state = 0;
  495. s->hdlctx.hbuf.rd = s->hdlctx.hbuf.wr = 0;
  496. s->hdlctx.in_hdlc_tx = 0;
  497. s->hdlctx.tx_state = 1;
  498. s->hdlctx.numflags = 0;
  499. s->hdlctx.bitstream = s->hdlctx.bitbuf = s->hdlctx.numbits = 0;
  500. s->hdlctx.ptt = 0;
  501. s->hdlctx.slotcnt = s->ch_params.slottime;
  502. s->hdlctx.calibrate = 0;
  503. i = s->ops->open(dev);
  504. if (i)
  505. return i;
  506. netif_start_queue(dev);
  507. return 0;
  508. }
  509. /* --------------------------------------------------------------------- */
  510. /* 
  511.  * The inverse routine to hdlcdrv_open(). 
  512.  */
  513. static int hdlcdrv_close(struct net_device *dev)
  514. {
  515. struct hdlcdrv_state *s;
  516. int i = 0;
  517. if (hdlcdrv_paranoia_check(dev, "hdlcdrv_close"))
  518. return -EINVAL;
  519. s = (struct hdlcdrv_state *)dev->priv;
  520. if (s->ops && s->ops->close)
  521. i = s->ops->close(dev);
  522. if (s->skb)
  523. dev_kfree_skb(s->skb);
  524. s->skb = NULL;
  525. return i;
  526. }
  527. /* --------------------------------------------------------------------- */
  528. static int hdlcdrv_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
  529. {
  530. struct hdlcdrv_state *s;
  531. struct hdlcdrv_ioctl bi;
  532. if (hdlcdrv_paranoia_check(dev, "hdlcdrv_ioctl"))
  533. return -EINVAL;
  534. s = (struct hdlcdrv_state *)dev->priv;
  535. if (cmd != SIOCDEVPRIVATE) {
  536. if (s->ops && s->ops->ioctl)
  537. return s->ops->ioctl(dev, ifr, &bi, cmd);
  538. return -ENOIOCTLCMD;
  539. }
  540. if (copy_from_user(&bi, ifr->ifr_data, sizeof(bi)))
  541. return -EFAULT;
  542. switch (bi.cmd) {
  543. default:
  544. if (s->ops && s->ops->ioctl)
  545. return s->ops->ioctl(dev, ifr, &bi, cmd);
  546. return -ENOIOCTLCMD;
  547. case HDLCDRVCTL_GETCHANNELPAR:
  548. bi.data.cp.tx_delay = s->ch_params.tx_delay;
  549. bi.data.cp.tx_tail = s->ch_params.tx_tail;
  550. bi.data.cp.slottime = s->ch_params.slottime;
  551. bi.data.cp.ppersist = s->ch_params.ppersist;
  552. bi.data.cp.fulldup = s->ch_params.fulldup;
  553. break;
  554. case HDLCDRVCTL_SETCHANNELPAR:
  555. if (!capable(CAP_NET_ADMIN))
  556. return -EACCES;
  557. s->ch_params.tx_delay = bi.data.cp.tx_delay;
  558. s->ch_params.tx_tail = bi.data.cp.tx_tail;
  559. s->ch_params.slottime = bi.data.cp.slottime;
  560. s->ch_params.ppersist = bi.data.cp.ppersist;
  561. s->ch_params.fulldup = bi.data.cp.fulldup;
  562. s->hdlctx.slotcnt = 1;
  563. return 0;
  564. case HDLCDRVCTL_GETMODEMPAR:
  565. bi.data.mp.iobase = dev->base_addr;
  566. bi.data.mp.irq = dev->irq;
  567. bi.data.mp.dma = dev->dma;
  568. bi.data.mp.dma2 = s->ptt_out.dma2;
  569. bi.data.mp.seriobase = s->ptt_out.seriobase;
  570. bi.data.mp.pariobase = s->ptt_out.pariobase;
  571. bi.data.mp.midiiobase = s->ptt_out.midiiobase;
  572. break;
  573. case HDLCDRVCTL_SETMODEMPAR:
  574. if ((!capable(CAP_SYS_RAWIO)) || netif_running(dev))
  575. return -EACCES;
  576. dev->base_addr = bi.data.mp.iobase;
  577. dev->irq = bi.data.mp.irq;
  578. dev->dma = bi.data.mp.dma;
  579. s->ptt_out.dma2 = bi.data.mp.dma2;
  580. s->ptt_out.seriobase = bi.data.mp.seriobase;
  581. s->ptt_out.pariobase = bi.data.mp.pariobase;
  582. s->ptt_out.midiiobase = bi.data.mp.midiiobase;
  583. return 0;
  584. case HDLCDRVCTL_GETSTAT:
  585. bi.data.cs.ptt = hdlcdrv_ptt(s);
  586. bi.data.cs.dcd = s->hdlcrx.dcd;
  587. bi.data.cs.ptt_keyed = s->ptt_keyed;
  588. bi.data.cs.tx_packets = s->stats.tx_packets;
  589. bi.data.cs.tx_errors = s->stats.tx_errors;
  590. bi.data.cs.rx_packets = s->stats.rx_packets;
  591. bi.data.cs.rx_errors = s->stats.rx_errors;
  592. break;
  593. case HDLCDRVCTL_OLDGETSTAT:
  594. bi.data.ocs.ptt = hdlcdrv_ptt(s);
  595. bi.data.ocs.dcd = s->hdlcrx.dcd;
  596. bi.data.ocs.ptt_keyed = s->ptt_keyed;
  597. break;
  598. case HDLCDRVCTL_CALIBRATE:
  599. if(!capable(CAP_SYS_RAWIO))
  600. return -EPERM;
  601. s->hdlctx.calibrate = bi.data.calibrate * s->par.bitrate / 16;
  602. return 0;
  603. case HDLCDRVCTL_GETSAMPLES:
  604. #ifndef HDLCDRV_DEBUG
  605. return -EPERM;
  606. #else /* HDLCDRV_DEBUG */
  607. if (s->bitbuf_channel.rd == s->bitbuf_channel.wr) 
  608. return -EAGAIN;
  609. bi.data.bits = 
  610. s->bitbuf_channel.buffer[s->bitbuf_channel.rd];
  611. s->bitbuf_channel.rd = (s->bitbuf_channel.rd+1) %
  612. sizeof(s->bitbuf_channel.buffer);
  613. break;
  614. #endif /* HDLCDRV_DEBUG */
  615. case HDLCDRVCTL_GETBITS:
  616. #ifndef HDLCDRV_DEBUG
  617. return -EPERM;
  618. #else /* HDLCDRV_DEBUG */
  619. if (s->bitbuf_hdlc.rd == s->bitbuf_hdlc.wr) 
  620. return -EAGAIN;
  621. bi.data.bits = 
  622. s->bitbuf_hdlc.buffer[s->bitbuf_hdlc.rd];
  623. s->bitbuf_hdlc.rd = (s->bitbuf_hdlc.rd+1) %
  624. sizeof(s->bitbuf_hdlc.buffer);
  625. break;
  626. #endif /* HDLCDRV_DEBUG */
  627. case HDLCDRVCTL_DRIVERNAME:
  628. if (s->ops && s->ops->drvname) {
  629. strncpy(bi.data.drivername, s->ops->drvname, 
  630. sizeof(bi.data.drivername));
  631. break;
  632. }
  633. bi.data.drivername[0] = '';
  634. break;
  635. }
  636. if (copy_to_user(ifr->ifr_data, &bi, sizeof(bi)))
  637. return -EFAULT;
  638. return 0;
  639. }
  640. /* --------------------------------------------------------------------- */
  641. /*
  642.  * Check for a network adaptor of this type, and return '0' if one exists.
  643.  * If dev->base_addr == 0, probe all likely locations.
  644.  * If dev->base_addr == 1, always return failure.
  645.  * If dev->base_addr == 2, allocate space for the device and return success
  646.  * (detachable devices only).
  647.  */
  648. static int hdlcdrv_probe(struct net_device *dev)
  649. {
  650. const struct hdlcdrv_channel_params dflt_ch_params = { 
  651. 20, 2, 10, 40, 0 
  652. };
  653. struct hdlcdrv_state *s;
  654. if (!dev)
  655. return -ENXIO;
  656. /*
  657.  * not a real probe! only initialize data structures
  658.  */
  659. s = (struct hdlcdrv_state *)dev->priv;
  660. /*
  661.  * initialize the hdlcdrv_state struct
  662.  */
  663. s->ch_params = dflt_ch_params;
  664. s->ptt_keyed = 0;
  665. spin_lock_init(&s->hdlcrx.hbuf.lock);
  666. s->hdlcrx.hbuf.rd = s->hdlcrx.hbuf.wr = 0;
  667. s->hdlcrx.in_hdlc_rx = 0;
  668. s->hdlcrx.rx_state = 0;
  669. spin_lock_init(&s->hdlctx.hbuf.lock);
  670. s->hdlctx.hbuf.rd = s->hdlctx.hbuf.wr = 0;
  671. s->hdlctx.in_hdlc_tx = 0;
  672. s->hdlctx.tx_state = 1;
  673. s->hdlctx.numflags = 0;
  674. s->hdlctx.bitstream = s->hdlctx.bitbuf = s->hdlctx.numbits = 0;
  675. s->hdlctx.ptt = 0;
  676. s->hdlctx.slotcnt = s->ch_params.slottime;
  677. s->hdlctx.calibrate = 0;
  678. #ifdef HDLCDRV_DEBUG
  679. s->bitbuf_channel.rd = s->bitbuf_channel.wr = 0;
  680. s->bitbuf_channel.shreg = 0x80;
  681. s->bitbuf_hdlc.rd = s->bitbuf_hdlc.wr = 0;
  682. s->bitbuf_hdlc.shreg = 0x80;
  683. #endif /* HDLCDRV_DEBUG */
  684. /*
  685.  * initialize the device struct
  686.  */
  687. dev->open = hdlcdrv_open;
  688. dev->stop = hdlcdrv_close;
  689. dev->do_ioctl = hdlcdrv_ioctl;
  690. dev->hard_start_xmit = hdlcdrv_send_packet;
  691. dev->get_stats = hdlcdrv_get_stats;
  692. /* Fill in the fields of the device structure */
  693. s->skb = NULL;
  694. #if defined(CONFIG_AX25) || defined(CONFIG_AX25_MODULE)
  695. dev->hard_header = ax25_encapsulate;
  696. dev->rebuild_header = ax25_rebuild_header;
  697. #else /* CONFIG_AX25 || CONFIG_AX25_MODULE */
  698. dev->hard_header = NULL;
  699. dev->rebuild_header = NULL;
  700. #endif /* CONFIG_AX25 || CONFIG_AX25_MODULE */
  701. dev->set_mac_address = hdlcdrv_set_mac_address;
  702. dev->type = ARPHRD_AX25;           /* AF_AX25 device */
  703. dev->hard_header_len = AX25_MAX_HEADER_LEN + AX25_BPQ_HEADER_LEN;
  704. dev->mtu = AX25_DEF_PACLEN;        /* eth_mtu is the default */
  705. dev->addr_len = AX25_ADDR_LEN;     /* sizeof an ax.25 address */
  706. memcpy(dev->broadcast, ax25_bcast, AX25_ADDR_LEN);
  707. memcpy(dev->dev_addr, ax25_nocall, AX25_ADDR_LEN);
  708. dev->tx_queue_len = 16;
  709. /* New style flags */
  710. dev->flags = 0;
  711. return 0;
  712. }
  713. /* --------------------------------------------------------------------- */
  714. int hdlcdrv_register_hdlcdrv(struct net_device *dev, const struct hdlcdrv_ops *ops,
  715.      unsigned int privsize, char *ifname,
  716.      unsigned int baseaddr, unsigned int irq, 
  717.      unsigned int dma) 
  718. {
  719. struct hdlcdrv_state *s;
  720. if (!dev || !ops)
  721. return -EACCES;
  722. if (privsize < sizeof(struct hdlcdrv_state))
  723. privsize = sizeof(struct hdlcdrv_state);
  724. memset(dev, 0, sizeof(struct net_device));
  725. if (!(s = dev->priv = kmalloc(privsize, GFP_KERNEL)))
  726. return -ENOMEM;
  727. /*
  728.  * initialize part of the hdlcdrv_state struct
  729.  */
  730. memset(s, 0, privsize);
  731. s->magic = HDLCDRV_MAGIC;
  732. strncpy(dev->name, ifname, sizeof(dev->name));
  733. s->ops = ops;
  734. /*
  735.  * initialize part of the device struct
  736.  */
  737. dev->if_port = 0;
  738. dev->init = hdlcdrv_probe;
  739. dev->base_addr = baseaddr;
  740. dev->irq = irq;
  741. dev->dma = dma;
  742. if (register_netdev(dev)) {
  743. printk(KERN_WARNING "hdlcdrv: cannot register net "
  744.        "device %sn", dev->name);
  745. kfree(dev->priv);
  746. return -ENXIO;
  747. }
  748. MOD_INC_USE_COUNT;
  749. return 0;
  750. }
  751. /* --------------------------------------------------------------------- */
  752. int hdlcdrv_unregister_hdlcdrv(struct net_device *dev) 
  753. {
  754. struct hdlcdrv_state *s;
  755. if (!dev)
  756. return -EINVAL;
  757. if (!(s = (struct hdlcdrv_state *)dev->priv))
  758. return -EINVAL;
  759. if (s->magic != HDLCDRV_MAGIC)
  760. return -EINVAL;
  761. if (s->ops->close)
  762. s->ops->close(dev);
  763. unregister_netdev(dev);
  764. kfree(s);
  765. MOD_DEC_USE_COUNT;
  766. return 0;
  767. }
  768. /* --------------------------------------------------------------------- */
  769. EXPORT_SYMBOL(hdlcdrv_receiver);
  770. EXPORT_SYMBOL(hdlcdrv_transmitter);
  771. EXPORT_SYMBOL(hdlcdrv_arbitrate);
  772. EXPORT_SYMBOL(hdlcdrv_register_hdlcdrv);
  773. EXPORT_SYMBOL(hdlcdrv_unregister_hdlcdrv);
  774. /* --------------------------------------------------------------------- */
  775. static int __init hdlcdrv_init_driver(void)
  776. {
  777. printk(KERN_INFO "hdlcdrv: (C) 1996-2000 Thomas Sailer HB9JNX/AE4WAn");
  778. printk(KERN_INFO "hdlcdrv: version 0.8 compiled " __TIME__ " " __DATE__ "n");
  779. return 0;
  780. }
  781. /* --------------------------------------------------------------------- */
  782. static void __exit hdlcdrv_cleanup_driver(void)
  783. {
  784. printk(KERN_INFO "hdlcdrv: cleanupn");
  785. }
  786. /* --------------------------------------------------------------------- */
  787. MODULE_AUTHOR("Thomas M. Sailer, sailer@ife.ee.ethz.ch, hb9jnx@hb9w.che.eu");
  788. MODULE_DESCRIPTION("Packet Radio network interface HDLC encoder/decoder");
  789. MODULE_LICENSE("GPL");
  790. module_init(hdlcdrv_init_driver);
  791. module_exit(hdlcdrv_cleanup_driver);
  792. /* --------------------------------------------------------------------- */