yam.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:32k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*****************************************************************************/
  2. /*
  3.  *    yam.c  -- YAM radio modem driver.
  4.  *
  5.  *      Copyright (C) 1998 Frederic Rible F1OAT (frible@teaser.fr)
  6.  *      Adapted from baycom.c driver written by Thomas Sailer (sailer@ife.ee.ethz.ch)
  7.  *
  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.
  12.  *
  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.
  17.  *
  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.
  21.  *
  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.
  25.  *
  26.  *
  27.  *  History:
  28.  *   0.0 F1OAT 06.06.98  Begin of work with baycom.c source code V 0.3
  29.  *   0.1 F1OAT 07.06.98  Add timer polling routine for channel arbitration
  30.  *   0.2 F6FBB 08.06.98  Added delay after FPGA programming
  31.  *   0.3 F6FBB 29.07.98  Delayed PTT implementation for dupmode=2
  32.  *   0.4 F6FBB 30.07.98  Added TxTail, Slottime and Persistance
  33.  *   0.5 F6FBB 01.08.98  Shared IRQs, /proc/net and network statistics
  34.  *   0.6 F6FBB 25.08.98  Added 1200Bds format
  35.  *   0.7 F6FBB 12.09.98  Added to the kernel configuration
  36.  *   0.8 F6FBB 14.10.98  Fixed slottime/persistance timing bug
  37.  *       OK1ZIA 2.09.01  Fixed "kfree_skb on hard IRQ" 
  38.  *                       using dev_kfree_skb_any(). (important in 2.4 kernel)
  39.  *   
  40.  */
  41. /*****************************************************************************/
  42. #include <linux/config.h>
  43. #include <linux/module.h>
  44. #include <linux/types.h>
  45. #include <linux/net.h>
  46. #include <linux/in.h>
  47. #include <linux/if.h>
  48. #include <linux/slab.h>
  49. #include <linux/errno.h>
  50. #include <asm/bitops.h>
  51. #include <asm/io.h>
  52. #include <asm/system.h>
  53. #include <linux/interrupt.h>
  54. #include <linux/ioport.h>
  55. #include <linux/netdevice.h>
  56. #include <linux/if_arp.h>
  57. #include <linux/etherdevice.h>
  58. #include <linux/skbuff.h>
  59. #if defined(CONFIG_AX25) || defined(CONFIG_AX25_MODULE)
  60. /* prototypes for ax25_encapsulate and ax25_rebuild_header */
  61. #include <net/ax25.h>
  62. #endif /* CONFIG_AX25 || CONFIG_AX25_MODULE */
  63. /* make genksyms happy */
  64. #include <linux/ip.h>
  65. #include <linux/udp.h>
  66. #include <linux/tcp.h>
  67. #include <linux/kernel.h>
  68. #include <linux/proc_fs.h>
  69. #include <linux/version.h>
  70. #include <asm/uaccess.h>
  71. #include <linux/init.h>
  72. #include <linux/yam.h>
  73. #include "yam9600.h"
  74. #include "yam1200.h"
  75. /* --------------------------------------------------------------------- */
  76. static const char yam_drvname[] = "yam";
  77. static char yam_drvinfo[] __initdata = KERN_INFO "YAM driver version 0.8 by F1OAT/F6FBBn";
  78. /* --------------------------------------------------------------------- */
  79. #define YAM_9600 1
  80. #define YAM_1200 2
  81. #define NR_PORTS 4
  82. #define YAM_MAGIC 0xF10A7654
  83. /* Transmitter states */
  84. #define TX_OFF 0
  85. #define TX_HEAD 1
  86. #define TX_DATA 2
  87. #define TX_CRC1 3
  88. #define TX_CRC2 4
  89. #define TX_TAIL 5
  90. #define YAM_MAX_FRAME 1024
  91. #define DEFAULT_BITRATE 9600 /* bps */
  92. #define DEFAULT_HOLDD 10 /* sec */
  93. #define DEFAULT_TXD 300 /* ms */
  94. #define DEFAULT_TXTAIL 10 /* ms */
  95. #define DEFAULT_SLOT 100 /* ms */
  96. #define DEFAULT_PERS 64 /* 0->255 */
  97. struct yam_port {
  98. int magic;
  99. int bitrate;
  100. int baudrate;
  101. int iobase;
  102. int irq;
  103. int dupmode;
  104. struct net_device dev;
  105. /* Stats section */
  106. struct net_device_stats stats;
  107. int nb_rxint;
  108. int nb_mdint;
  109. /* Parameters section */
  110. int txd; /* tx delay */
  111. int holdd; /* duplex ptt delay */
  112. int txtail; /* txtail delay */
  113. int slot; /* slottime */
  114. int pers; /* persistence */
  115. /* Tx section */
  116. int tx_state;
  117. int tx_count;
  118. int slotcnt;
  119. unsigned char tx_buf[YAM_MAX_FRAME];
  120. int tx_len;
  121. int tx_crcl, tx_crch;
  122. struct sk_buff_head send_queue; /* Packets awaiting transmission */
  123. /* Rx section */
  124. int dcd;
  125. unsigned char rx_buf[YAM_MAX_FRAME];
  126. int rx_len;
  127. int rx_crcl, rx_crch;
  128. };
  129. struct yam_mcs {
  130. unsigned char bits[YAM_FPGA_SIZE];
  131. int bitrate;
  132. struct yam_mcs *next;
  133. };
  134. static struct yam_port yam_ports[NR_PORTS];
  135. static struct yam_mcs *yam_data;
  136. static char ax25_bcast[7] =
  137. {'Q' << 1, 'S' << 1, 'T' << 1, ' ' << 1, ' ' << 1, ' ' << 1, '0' << 1};
  138. static char ax25_test[7] =
  139. {'L' << 1, 'I' << 1, 'N' << 1, 'U' << 1, 'X' << 1, ' ' << 1, '1' << 1};
  140. static struct timer_list yam_timer;
  141. /* --------------------------------------------------------------------- */
  142. #define RBR(iobase) (iobase+0)
  143. #define THR(iobase) (iobase+0)
  144. #define IER(iobase) (iobase+1)
  145. #define IIR(iobase) (iobase+2)
  146. #define FCR(iobase) (iobase+2)
  147. #define LCR(iobase) (iobase+3)
  148. #define MCR(iobase) (iobase+4)
  149. #define LSR(iobase) (iobase+5)
  150. #define MSR(iobase) (iobase+6)
  151. #define SCR(iobase) (iobase+7)
  152. #define DLL(iobase) (iobase+0)
  153. #define DLM(iobase) (iobase+1)
  154. #define YAM_EXTENT 8
  155. /* Interrupt Identification Register Bit Masks */
  156. #define IIR_NOPEND 1
  157. #define IIR_MSR 0
  158. #define IIR_TX 2
  159. #define IIR_RX 4
  160. #define IIR_LSR 6
  161. #define IIR_TIMEOUT 12 /* Fifo mode only */
  162. #define IIR_MASK 0x0F
  163. /* Interrupt Enable Register Bit Masks */
  164. #define IER_RX 1 /* enable rx interrupt */
  165. #define IER_TX 2 /* enable tx interrupt */
  166. #define IER_LSR 4 /* enable line status interrupts */
  167. #define IER_MSR 8 /* enable modem status interrupts */
  168. /* Modem Control Register Bit Masks */
  169. #define MCR_DTR 0x01 /* DTR output */
  170. #define MCR_RTS 0x02 /* RTS output */
  171. #define MCR_OUT1 0x04 /* OUT1 output (not accessible in RS232) */
  172. #define MCR_OUT2 0x08 /* Master Interrupt enable (must be set on PCs) */
  173. #define MCR_LOOP 0x10 /* Loopback enable */
  174. /* Modem Status Register Bit Masks */
  175. #define MSR_DCTS 0x01 /* Delta CTS input */
  176. #define MSR_DDSR 0x02 /* Delta DSR */
  177. #define MSR_DRIN 0x04 /* Delta RI */
  178. #define MSR_DDCD 0x08 /* Delta DCD */
  179. #define MSR_CTS 0x10 /* CTS input */
  180. #define MSR_DSR 0x20 /* DSR input */
  181. #define MSR_RING 0x40 /* RI  input */
  182. #define MSR_DCD 0x80 /* DCD input */
  183. /* line status register bit mask */
  184. #define LSR_RXC 0x01
  185. #define LSR_OE 0x02
  186. #define LSR_PE 0x04
  187. #define LSR_FE 0x08
  188. #define LSR_BREAK 0x10
  189. #define LSR_THRE 0x20
  190. #define LSR_TSRE 0x40
  191. /* Line Control Register Bit Masks */
  192. #define LCR_DLAB 0x80
  193. #define LCR_BREAK 0x40
  194. #define LCR_PZERO 0x28
  195. #define LCR_PEVEN 0x18
  196. #define LCR_PODD 0x08
  197. #define LCR_STOP1 0x00
  198. #define LCR_STOP2 0x04
  199. #define LCR_BIT5 0x00
  200. #define LCR_BIT6 0x02
  201. #define LCR_BIT7 0x01
  202. #define LCR_BIT8 0x03
  203. /* YAM Modem <-> UART Port mapping */
  204. #define TX_RDY MSR_DCTS /* transmitter ready to send */
  205. #define RX_DCD MSR_DCD /* carrier detect */
  206. #define RX_FLAG MSR_RING /* hdlc flag received */
  207. #define FPGA_DONE MSR_DSR /* FPGA is configured */
  208. #define PTT_ON (MCR_RTS|MCR_OUT2) /* activate PTT */
  209. #define PTT_OFF (MCR_DTR|MCR_OUT2) /* release PTT */
  210. #define ENABLE_RXINT IER_RX /* enable uart rx interrupt during rx */
  211. #define ENABLE_TXINT IER_MSR /* enable uart ms interrupt during tx */
  212. #define ENABLE_RTXINT (IER_RX|IER_MSR) /* full duplex operations */
  213. /*************************************************************************
  214. * CRC Tables
  215. ************************************************************************/
  216. static const unsigned char chktabl[256] =
  217. {0x00, 0x89, 0x12, 0x9b, 0x24, 0xad, 0x36, 0xbf, 0x48, 0xc1, 0x5a, 0xd3, 0x6c, 0xe5, 0x7e,
  218.  0xf7, 0x81, 0x08, 0x93, 0x1a, 0xa5, 0x2c, 0xb7, 0x3e, 0xc9, 0x40, 0xdb, 0x52, 0xed, 0x64,
  219.  0xff, 0x76, 0x02, 0x8b, 0x10, 0x99, 0x26, 0xaf, 0x34, 0xbd, 0x4a, 0xc3, 0x58, 0xd1, 0x6e,
  220.  0xe7, 0x7c, 0xf5, 0x83, 0x0a, 0x91, 0x18, 0xa7, 0x2e, 0xb5, 0x3c, 0xcb, 0x42, 0xd9, 0x50,
  221.  0xef, 0x66, 0xfd, 0x74, 0x04, 0x8d, 0x16, 0x9f, 0x20, 0xa9, 0x32, 0xbb, 0x4c, 0xc5, 0x5e,
  222.  0xd7, 0x68, 0xe1, 0x7a, 0xf3, 0x85, 0x0c, 0x97, 0x1e, 0xa1, 0x28, 0xb3, 0x3a, 0xcd, 0x44,
  223.  0xdf, 0x56, 0xe9, 0x60, 0xfb, 0x72, 0x06, 0x8f, 0x14, 0x9d, 0x22, 0xab, 0x30, 0xb9, 0x4e,
  224.  0xc7, 0x5c, 0xd5, 0x6a, 0xe3, 0x78, 0xf1, 0x87, 0x0e, 0x95, 0x1c, 0xa3, 0x2a, 0xb1, 0x38,
  225.  0xcf, 0x46, 0xdd, 0x54, 0xeb, 0x62, 0xf9, 0x70, 0x08, 0x81, 0x1a, 0x93, 0x2c, 0xa5, 0x3e,
  226.  0xb7, 0x40, 0xc9, 0x52, 0xdb, 0x64, 0xed, 0x76, 0xff, 0x89, 0x00, 0x9b, 0x12, 0xad, 0x24,
  227.  0xbf, 0x36, 0xc1, 0x48, 0xd3, 0x5a, 0xe5, 0x6c, 0xf7, 0x7e, 0x0a, 0x83, 0x18, 0x91, 0x2e,
  228.  0xa7, 0x3c, 0xb5, 0x42, 0xcb, 0x50, 0xd9, 0x66, 0xef, 0x74, 0xfd, 0x8b, 0x02, 0x99, 0x10,
  229.  0xaf, 0x26, 0xbd, 0x34, 0xc3, 0x4a, 0xd1, 0x58, 0xe7, 0x6e, 0xf5, 0x7c, 0x0c, 0x85, 0x1e,
  230.  0x97, 0x28, 0xa1, 0x3a, 0xb3, 0x44, 0xcd, 0x56, 0xdf, 0x60, 0xe9, 0x72, 0xfb, 0x8d, 0x04,
  231.  0x9f, 0x16, 0xa9, 0x20, 0xbb, 0x32, 0xc5, 0x4c, 0xd7, 0x5e, 0xe1, 0x68, 0xf3, 0x7a, 0x0e,
  232.  0x87, 0x1c, 0x95, 0x2a, 0xa3, 0x38, 0xb1, 0x46, 0xcf, 0x54, 0xdd, 0x62, 0xeb, 0x70, 0xf9,
  233.  0x8f, 0x06, 0x9d, 0x14, 0xab, 0x22, 0xb9, 0x30, 0xc7, 0x4e, 0xd5, 0x5c, 0xe3, 0x6a, 0xf1,
  234.  0x78};
  235. static const unsigned char chktabh[256] =
  236. {0x00, 0x11, 0x23, 0x32, 0x46, 0x57, 0x65, 0x74, 0x8c, 0x9d, 0xaf, 0xbe, 0xca, 0xdb, 0xe9,
  237.  0xf8, 0x10, 0x01, 0x33, 0x22, 0x56, 0x47, 0x75, 0x64, 0x9c, 0x8d, 0xbf, 0xae, 0xda, 0xcb,
  238.  0xf9, 0xe8, 0x21, 0x30, 0x02, 0x13, 0x67, 0x76, 0x44, 0x55, 0xad, 0xbc, 0x8e, 0x9f, 0xeb,
  239.  0xfa, 0xc8, 0xd9, 0x31, 0x20, 0x12, 0x03, 0x77, 0x66, 0x54, 0x45, 0xbd, 0xac, 0x9e, 0x8f,
  240.  0xfb, 0xea, 0xd8, 0xc9, 0x42, 0x53, 0x61, 0x70, 0x04, 0x15, 0x27, 0x36, 0xce, 0xdf, 0xed,
  241.  0xfc, 0x88, 0x99, 0xab, 0xba, 0x52, 0x43, 0x71, 0x60, 0x14, 0x05, 0x37, 0x26, 0xde, 0xcf,
  242.  0xfd, 0xec, 0x98, 0x89, 0xbb, 0xaa, 0x63, 0x72, 0x40, 0x51, 0x25, 0x34, 0x06, 0x17, 0xef,
  243.  0xfe, 0xcc, 0xdd, 0xa9, 0xb8, 0x8a, 0x9b, 0x73, 0x62, 0x50, 0x41, 0x35, 0x24, 0x16, 0x07,
  244.  0xff, 0xee, 0xdc, 0xcd, 0xb9, 0xa8, 0x9a, 0x8b, 0x84, 0x95, 0xa7, 0xb6, 0xc2, 0xd3, 0xe1,
  245.  0xf0, 0x08, 0x19, 0x2b, 0x3a, 0x4e, 0x5f, 0x6d, 0x7c, 0x94, 0x85, 0xb7, 0xa6, 0xd2, 0xc3,
  246.  0xf1, 0xe0, 0x18, 0x09, 0x3b, 0x2a, 0x5e, 0x4f, 0x7d, 0x6c, 0xa5, 0xb4, 0x86, 0x97, 0xe3,
  247.  0xf2, 0xc0, 0xd1, 0x29, 0x38, 0x0a, 0x1b, 0x6f, 0x7e, 0x4c, 0x5d, 0xb5, 0xa4, 0x96, 0x87,
  248.  0xf3, 0xe2, 0xd0, 0xc1, 0x39, 0x28, 0x1a, 0x0b, 0x7f, 0x6e, 0x5c, 0x4d, 0xc6, 0xd7, 0xe5,
  249.  0xf4, 0x80, 0x91, 0xa3, 0xb2, 0x4a, 0x5b, 0x69, 0x78, 0x0c, 0x1d, 0x2f, 0x3e, 0xd6, 0xc7,
  250.  0xf5, 0xe4, 0x90, 0x81, 0xb3, 0xa2, 0x5a, 0x4b, 0x79, 0x68, 0x1c, 0x0d, 0x3f, 0x2e, 0xe7,
  251.  0xf6, 0xc4, 0xd5, 0xa1, 0xb0, 0x82, 0x93, 0x6b, 0x7a, 0x48, 0x59, 0x2d, 0x3c, 0x0e, 0x1f,
  252.  0xf7, 0xe6, 0xd4, 0xc5, 0xb1, 0xa0, 0x92, 0x83, 0x7b, 0x6a, 0x58, 0x49, 0x3d, 0x2c, 0x1e,
  253.  0x0f};
  254. /*************************************************************************
  255. * FPGA functions
  256. ************************************************************************/
  257. static void delay(int ms)
  258. {
  259. unsigned long timeout = jiffies + ((ms * HZ) / 1000);
  260. while (time_before(jiffies, timeout))
  261. cpu_relax();
  262. }
  263. /*
  264.  * reset FPGA
  265.  */
  266. static void fpga_reset(int iobase)
  267. {
  268. outb(0, IER(iobase));
  269. outb(LCR_DLAB | LCR_BIT5, LCR(iobase));
  270. outb(1, DLL(iobase));
  271. outb(0, DLM(iobase));
  272. outb(LCR_BIT5, LCR(iobase));
  273. inb(LSR(iobase));
  274. inb(MSR(iobase));
  275. /* turn off FPGA supply voltage */
  276. outb(MCR_OUT1 | MCR_OUT2, MCR(iobase));
  277. delay(100);
  278. /* turn on FPGA supply voltage again */
  279. outb(MCR_DTR | MCR_RTS | MCR_OUT1 | MCR_OUT2, MCR(iobase));
  280. delay(100);
  281. }
  282. /*
  283.  * send one byte to FPGA
  284.  */
  285. static int fpga_write(int iobase, unsigned char wrd)
  286. {
  287. unsigned char bit;
  288. int k;
  289. unsigned long timeout = jiffies + HZ / 10;
  290. for (k = 0; k < 8; k++) {
  291. bit = (wrd & 0x80) ? (MCR_RTS | MCR_DTR) : MCR_DTR;
  292. outb(bit | MCR_OUT1 | MCR_OUT2, MCR(iobase));
  293. wrd <<= 1;
  294. outb(0xfc, THR(iobase));
  295. while ((inb(LSR(iobase)) & LSR_TSRE) == 0)
  296. if (jiffies > timeout)
  297. return -1;
  298. }
  299. return 0;
  300. }
  301. static unsigned char *add_mcs(unsigned char *bits, int bitrate)
  302. {
  303. struct yam_mcs *p;
  304. /* If it already exists, replace the bit data */
  305. p = yam_data;
  306. while (p) {
  307. if (p->bitrate == bitrate) {
  308. memcpy(p->bits, bits, YAM_FPGA_SIZE);
  309. return p->bits;
  310. }
  311. p = p->next;
  312. }
  313. /* Allocate a new mcs */
  314. if ((p = kmalloc(sizeof(struct yam_mcs), GFP_KERNEL)) == NULL) {
  315. printk(KERN_WARNING "YAM: no memory to allocate mcsn");
  316. return NULL;
  317. }
  318. memcpy(p->bits, bits, YAM_FPGA_SIZE);
  319. p->bitrate = bitrate;
  320. p->next = yam_data;
  321. yam_data = p;
  322. return p->bits;
  323. }
  324. static unsigned char *get_mcs(int bitrate)
  325. {
  326. struct yam_mcs *p;
  327. p = yam_data;
  328. while (p) {
  329. if (p->bitrate == bitrate)
  330. return p->bits;
  331. p = p->next;
  332. }
  333. /* Load predefined mcs data */
  334. switch (bitrate) {
  335. case 1200:
  336. return add_mcs(bits_1200, bitrate);
  337. default:
  338. return add_mcs(bits_9600, bitrate);
  339. }
  340. }
  341. /*
  342.  * download bitstream to FPGA
  343.  * data is contained in bits[] array in yam1200.h resp. yam9600.h
  344.  */
  345. static int fpga_download(int iobase, int bitrate)
  346. {
  347. int i, rc;
  348. unsigned char *pbits;
  349. pbits = get_mcs(bitrate);
  350. if (pbits == NULL)
  351. return -1;
  352. fpga_reset(iobase);
  353. for (i = 0; i < YAM_FPGA_SIZE; i++) {
  354. if (fpga_write(iobase, pbits[i])) {
  355. printk(KERN_ERR "yam: error in write cyclen");
  356. return -1; /* write... */
  357. }
  358. }
  359. fpga_write(iobase, 0xFF);
  360. rc = inb(MSR(iobase)); /* check DONE signal */
  361. /* Needed for some hardwares */
  362. delay(50);
  363. return (rc & MSR_DSR) ? 0 : -1;
  364. }
  365. /************************************************************************
  366. * Serial port init 
  367. ************************************************************************/
  368. static void yam_set_uart(struct net_device *dev)
  369. {
  370. struct yam_port *yp = (struct yam_port *) dev->priv;
  371. int divisor = 115200 / yp->baudrate;
  372. outb(0, IER(dev->base_addr));
  373. outb(LCR_DLAB | LCR_BIT8, LCR(dev->base_addr));
  374. outb(divisor, DLL(dev->base_addr));
  375. outb(0, DLM(dev->base_addr));
  376. outb(LCR_BIT8, LCR(dev->base_addr));
  377. outb(PTT_OFF, MCR(dev->base_addr));
  378. outb(0x00, FCR(dev->base_addr));
  379. /* Flush pending irq */
  380. inb(RBR(dev->base_addr));
  381. inb(MSR(dev->base_addr));
  382. /* Enable rx irq */
  383. outb(ENABLE_RTXINT, IER(dev->base_addr));
  384. }
  385. /* --------------------------------------------------------------------- */
  386. enum uart {
  387. c_uart_unknown, c_uart_8250,
  388. c_uart_16450, c_uart_16550, c_uart_16550A
  389. };
  390. static const char *uart_str[] =
  391. {"unknown", "8250", "16450", "16550", "16550A"};
  392. static enum uart yam_check_uart(unsigned int iobase)
  393. {
  394. unsigned char b1, b2, b3;
  395. enum uart u;
  396. enum uart uart_tab[] =
  397. {c_uart_16450, c_uart_unknown, c_uart_16550, c_uart_16550A};
  398. b1 = inb(MCR(iobase));
  399. outb(b1 | 0x10, MCR(iobase)); /* loopback mode */
  400. b2 = inb(MSR(iobase));
  401. outb(0x1a, MCR(iobase));
  402. b3 = inb(MSR(iobase)) & 0xf0;
  403. outb(b1, MCR(iobase)); /* restore old values */
  404. outb(b2, MSR(iobase));
  405. if (b3 != 0x90)
  406. return c_uart_unknown;
  407. inb(RBR(iobase));
  408. inb(RBR(iobase));
  409. outb(0x01, FCR(iobase)); /* enable FIFOs */
  410. u = uart_tab[(inb(IIR(iobase)) >> 6) & 3];
  411. if (u == c_uart_16450) {
  412. outb(0x5a, SCR(iobase));
  413. b1 = inb(SCR(iobase));
  414. outb(0xa5, SCR(iobase));
  415. b2 = inb(SCR(iobase));
  416. if ((b1 != 0x5a) || (b2 != 0xa5))
  417. u = c_uart_8250;
  418. }
  419. return u;
  420. }
  421. /******************************************************************************
  422. * Rx Section
  423. ******************************************************************************/
  424. static inline void yam_rx_flag(struct net_device *dev, struct yam_port *yp)
  425. {
  426. if (yp->dcd && yp->rx_len >= 3 && yp->rx_len < YAM_MAX_FRAME) {
  427. int pkt_len = yp->rx_len - 2 + 1; /* -CRC + kiss */
  428. struct sk_buff *skb;
  429. if ((yp->rx_crch & yp->rx_crcl) != 0xFF) {
  430. /* Bad crc */
  431. } else {
  432. if (!(skb = dev_alloc_skb(pkt_len))) {
  433. printk(KERN_WARNING "%s: memory squeeze, dropping packetn", dev->name);
  434. ++yp->stats.rx_dropped;
  435. } else {
  436. unsigned char *cp;
  437. skb->dev = dev;
  438. cp = skb_put(skb, pkt_len);
  439. *cp++ = 0; /* KISS kludge */
  440. memcpy(cp, yp->rx_buf, pkt_len - 1);
  441. skb->protocol = htons(ETH_P_AX25);
  442. skb->mac.raw = skb->data;
  443. netif_rx(skb);
  444. ++yp->stats.rx_packets;
  445. }
  446. }
  447. }
  448. yp->rx_len = 0;
  449. yp->rx_crcl = 0x21;
  450. yp->rx_crch = 0xf3;
  451. }
  452. static inline void yam_rx_byte(struct net_device *dev, struct yam_port *yp, unsigned char rxb)
  453. {
  454. if (yp->rx_len < YAM_MAX_FRAME) {
  455. unsigned char c = yp->rx_crcl;
  456. yp->rx_crcl = (chktabl[c] ^ yp->rx_crch);
  457. yp->rx_crch = (chktabh[c] ^ rxb);
  458. yp->rx_buf[yp->rx_len++] = rxb;
  459. }
  460. }
  461. /********************************************************************************
  462. * TX Section
  463. ********************************************************************************/
  464. static void ptt_on(struct net_device *dev)
  465. {
  466. outb(PTT_ON, MCR(dev->base_addr));
  467. }
  468. static void ptt_off(struct net_device *dev)
  469. {
  470. outb(PTT_OFF, MCR(dev->base_addr));
  471. }
  472. static int yam_send_packet(struct sk_buff *skb, struct net_device *dev)
  473. {
  474. struct yam_port *yp = dev->priv;
  475. skb_queue_tail(&yp->send_queue, skb);
  476. dev->trans_start = jiffies;
  477. return 0;
  478. }
  479. static void yam_start_tx(struct net_device *dev, struct yam_port *yp)
  480. {
  481. if ((yp->tx_state == TX_TAIL) || (yp->txd == 0))
  482. yp->tx_count = 1;
  483. else
  484. yp->tx_count = (yp->bitrate * yp->txd) / 8000;
  485. yp->tx_state = TX_HEAD;
  486. ptt_on(dev);
  487. }
  488. static unsigned short random_seed;
  489. static inline unsigned short random_num(void)
  490. {
  491. random_seed = 28629 * random_seed + 157;
  492. return random_seed;
  493. }
  494. static void yam_arbitrate(struct net_device *dev)
  495. {
  496. struct yam_port *yp = dev->priv;
  497. if (!yp || yp->magic != YAM_MAGIC
  498. || yp->tx_state != TX_OFF || skb_queue_empty(&yp->send_queue)) {
  499. return;
  500. }
  501. /* tx_state is TX_OFF and there is data to send */
  502. if (yp->dupmode) {
  503. /* Full duplex mode, don't wait */
  504. yam_start_tx(dev, yp);
  505. return;
  506. }
  507. if (yp->dcd) {
  508. /* DCD on, wait slotime ... */
  509. yp->slotcnt = yp->slot / 10;
  510. return;
  511. }
  512. /* Is slottime passed ? */
  513. if ((--yp->slotcnt) > 0)
  514. return;
  515. yp->slotcnt = yp->slot / 10;
  516. /* is random > persist ? */
  517. if ((random_num() % 256) > yp->pers)
  518. return;
  519. yam_start_tx(dev, yp);
  520. }
  521. static void yam_dotimer(unsigned long dummy)
  522. {
  523. int i;
  524. for (i = 0; i < NR_PORTS; i++) {
  525. struct net_device *dev = &yam_ports[i].dev;
  526. if (netif_running(dev))
  527. yam_arbitrate(dev);
  528. }
  529. yam_timer.expires = jiffies + HZ / 100;
  530. add_timer(&yam_timer);
  531. }
  532. static void yam_tx_byte(struct net_device *dev, struct yam_port *yp)
  533. {
  534. struct sk_buff *skb;
  535. unsigned char b, temp;
  536. switch (yp->tx_state) {
  537. case TX_OFF:
  538. break;
  539. case TX_HEAD:
  540. if (--yp->tx_count <= 0) {
  541. if (!(skb = skb_dequeue(&yp->send_queue))) {
  542. ptt_off(dev);
  543. yp->tx_state = TX_OFF;
  544. break;
  545. }
  546. yp->tx_state = TX_DATA;
  547. if (skb->data[0] != 0) {
  548. /*                              do_kiss_params(s, skb->data, skb->len); */
  549. dev_kfree_skb_any(skb);
  550. break;
  551. }
  552. yp->tx_len = skb->len - 1; /* strip KISS byte */
  553. if (yp->tx_len >= YAM_MAX_FRAME || yp->tx_len < 2) {
  554.          dev_kfree_skb_any(skb);
  555. break;
  556. }
  557. memcpy(yp->tx_buf, skb->data + 1, yp->tx_len);
  558. dev_kfree_skb_any(skb);
  559. yp->tx_count = 0;
  560. yp->tx_crcl = 0x21;
  561. yp->tx_crch = 0xf3;
  562. yp->tx_state = TX_DATA;
  563. }
  564. break;
  565. case TX_DATA:
  566. b = yp->tx_buf[yp->tx_count++];
  567. outb(b, THR(dev->base_addr));
  568. temp = yp->tx_crcl;
  569. yp->tx_crcl = chktabl[temp] ^ yp->tx_crch;
  570. yp->tx_crch = chktabh[temp] ^ b;
  571. if (yp->tx_count >= yp->tx_len) {
  572. yp->tx_state = TX_CRC1;
  573. }
  574. break;
  575. case TX_CRC1:
  576. yp->tx_crch = chktabl[yp->tx_crcl] ^ yp->tx_crch;
  577. yp->tx_crcl = chktabh[yp->tx_crcl] ^ chktabl[yp->tx_crch] ^ 0xff;
  578. outb(yp->tx_crcl, THR(dev->base_addr));
  579. yp->tx_state = TX_CRC2;
  580. break;
  581. case TX_CRC2:
  582. outb(chktabh[yp->tx_crch] ^ 0xFF, THR(dev->base_addr));
  583. if (skb_queue_empty(&yp->send_queue)) {
  584. yp->tx_count = (yp->bitrate * yp->txtail) / 8000;
  585. if (yp->dupmode == 2)
  586. yp->tx_count += (yp->bitrate * yp->holdd) / 8;
  587. if (yp->tx_count == 0)
  588. yp->tx_count = 1;
  589. yp->tx_state = TX_TAIL;
  590. } else {
  591. yp->tx_count = 1;
  592. yp->tx_state = TX_HEAD;
  593. }
  594. ++yp->stats.tx_packets;
  595. break;
  596. case TX_TAIL:
  597. if (--yp->tx_count <= 0) {
  598. yp->tx_state = TX_OFF;
  599. ptt_off(dev);
  600. }
  601. break;
  602. }
  603. }
  604. /***********************************************************************************
  605. * ISR routine
  606. ************************************************************************************/
  607. static void yam_interrupt(int irq, void *dev_id, struct pt_regs *regs)
  608. {
  609. struct net_device *dev;
  610. struct yam_port *yp;
  611. unsigned char iir;
  612. int counter = 100;
  613. int i;
  614. sti();
  615. for (i = 0; i < NR_PORTS; i++) {
  616. yp = &yam_ports[i];
  617. dev = &yp->dev;
  618. if (!netif_running(dev))
  619. continue;
  620. while ((iir = IIR_MASK & inb(IIR(dev->base_addr))) != IIR_NOPEND) {
  621. unsigned char msr = inb(MSR(dev->base_addr));
  622. unsigned char lsr = inb(LSR(dev->base_addr));
  623. unsigned char rxb;
  624. if (lsr & LSR_OE)
  625. ++yp->stats.rx_fifo_errors;
  626. yp->dcd = (msr & RX_DCD) ? 1 : 0;
  627. if (--counter <= 0) {
  628. printk(KERN_ERR "%s: too many irq iir=%dn", dev->name, iir);
  629. return;
  630. }
  631. if (msr & TX_RDY) {
  632. ++yp->nb_mdint;
  633. yam_tx_byte(dev, yp);
  634. }
  635. if (lsr & LSR_RXC) {
  636. ++yp->nb_rxint;
  637. rxb = inb(RBR(dev->base_addr));
  638. if (msr & RX_FLAG)
  639. yam_rx_flag(dev, yp);
  640. else
  641. yam_rx_byte(dev, yp, rxb);
  642. }
  643. }
  644. }
  645. }
  646. static int yam_net_get_info(char *buffer, char **start, off_t offset, int length)
  647. {
  648. int len = 0;
  649. int i;
  650. off_t pos = 0;
  651. off_t begin = 0;
  652. cli();
  653. for (i = 0; i < NR_PORTS; i++) {
  654. if (yam_ports[i].iobase == 0 || yam_ports[i].irq == 0)
  655. continue;
  656. len += sprintf(buffer + len, "Device yam%dn", i);
  657. len += sprintf(buffer + len, "  Up       %dn", netif_running(&yam_ports[i].dev));
  658. len += sprintf(buffer + len, "  Speed    %un", yam_ports[i].bitrate);
  659. len += sprintf(buffer + len, "  IoBase   0x%xn", yam_ports[i].iobase);
  660. len += sprintf(buffer + len, "  BaudRate %un", yam_ports[i].baudrate);
  661. len += sprintf(buffer + len, "  IRQ      %un", yam_ports[i].irq);
  662. len += sprintf(buffer + len, "  TxState  %un", yam_ports[i].tx_state);
  663. len += sprintf(buffer + len, "  Duplex   %un", yam_ports[i].dupmode);
  664. len += sprintf(buffer + len, "  HoldDly  %un", yam_ports[i].holdd);
  665. len += sprintf(buffer + len, "  TxDelay  %un", yam_ports[i].txd);
  666. len += sprintf(buffer + len, "  TxTail   %un", yam_ports[i].txtail);
  667. len += sprintf(buffer + len, "  SlotTime %un", yam_ports[i].slot);
  668. len += sprintf(buffer + len, "  Persist  %un", yam_ports[i].pers);
  669. len += sprintf(buffer + len, "  TxFrames %lun", yam_ports[i].stats.tx_packets);
  670. len += sprintf(buffer + len, "  RxFrames %lun", yam_ports[i].stats.rx_packets);
  671. len += sprintf(buffer + len, "  TxInt    %un", yam_ports[i].nb_mdint);
  672. len += sprintf(buffer + len, "  RxInt    %un", yam_ports[i].nb_rxint);
  673. len += sprintf(buffer + len, "  RxOver   %lun", yam_ports[i].stats.rx_fifo_errors);
  674. len += sprintf(buffer + len, "n");
  675. pos = begin + len;
  676. if (pos < offset) {
  677. len = 0;
  678. begin = pos;
  679. }
  680. if (pos > offset + length)
  681. break;
  682. }
  683. sti();
  684. *start = buffer + (offset - begin);
  685. len -= (offset - begin);
  686. if (len > length)
  687. len = length;
  688. return len;
  689. }
  690. /* --------------------------------------------------------------------- */
  691. static struct net_device_stats *yam_get_stats(struct net_device *dev)
  692. {
  693. struct yam_port *yp;
  694. if (!dev || !dev->priv)
  695. return NULL;
  696. yp = (struct yam_port *) dev->priv;
  697. if (yp->magic != YAM_MAGIC)
  698. return NULL;
  699. /* 
  700.  * Get the current statistics.  This may be called with the
  701.  * card open or closed. 
  702.  */
  703. return &yp->stats;
  704. }
  705. /* --------------------------------------------------------------------- */
  706. static int yam_open(struct net_device *dev)
  707. {
  708. struct yam_port *yp = (struct yam_port *) dev->priv;
  709. enum uart u;
  710. int i;
  711. printk(KERN_INFO "Trying %s at iobase 0x%lx irq %un", dev->name, dev->base_addr, dev->irq);
  712. if (!dev || !yp || !yp->bitrate)
  713. return -ENXIO;
  714. if (!dev->base_addr || dev->base_addr > 0x1000 - YAM_EXTENT ||
  715. dev->irq < 2 || dev->irq > 15) {
  716. return -ENXIO;
  717. }
  718. if (check_region(dev->base_addr, YAM_EXTENT)) {
  719. printk(KERN_ERR "%s: cannot 0x%lx busyn", dev->name, dev->base_addr);
  720. return -EACCES;
  721. }
  722. if ((u = yam_check_uart(dev->base_addr)) == c_uart_unknown) {
  723. printk(KERN_ERR "%s: cannot find uart typen", dev->name);
  724. return -EIO;
  725. }
  726. if (fpga_download(dev->base_addr, yp->bitrate)) {
  727. printk(KERN_ERR "%s: cannot init FPGAn", dev->name);
  728. return -EIO;
  729. }
  730. outb(0, IER(dev->base_addr));
  731. if (request_irq(dev->irq, yam_interrupt, SA_INTERRUPT | SA_SHIRQ, dev->name, dev)) {
  732. printk(KERN_ERR "%s: irq %d busyn", dev->name, dev->irq);
  733. return -EBUSY;
  734. }
  735. request_region(dev->base_addr, YAM_EXTENT, dev->name);
  736. yam_set_uart(dev);
  737. netif_start_queue(dev);
  738. yp->slotcnt = yp->slot / 10;
  739. /* Reset overruns for all ports - FPGA programming makes overruns */
  740. for (i = 0; i < NR_PORTS; i++) {
  741. inb(LSR(yam_ports[i].dev.base_addr));
  742. yam_ports[i].stats.rx_fifo_errors = 0;
  743. }
  744. printk(KERN_INFO "%s at iobase 0x%lx irq %u uart %sn", dev->name, dev->base_addr, dev->irq,
  745.    uart_str[u]);
  746. return 0;
  747. }
  748. /* --------------------------------------------------------------------- */
  749. static int yam_close(struct net_device *dev)
  750. {
  751. struct sk_buff *skb;
  752. struct yam_port *yp = (struct yam_port *) dev->priv;
  753. if (!dev || !yp)
  754. return -EINVAL;
  755. /*
  756.  * disable interrupts
  757.  */
  758. outb(0, IER(dev->base_addr));
  759. outb(1, MCR(dev->base_addr));
  760. /* Remove IRQ handler if last */
  761. free_irq(dev->irq,dev);
  762. release_region(dev->base_addr, YAM_EXTENT);
  763. netif_stop_queue(dev);
  764. while ((skb = skb_dequeue(&yp->send_queue)))
  765. dev_kfree_skb(skb);
  766. printk(KERN_INFO "%s: close yam at iobase 0x%lx irq %un",
  767.    yam_drvname, dev->base_addr, dev->irq);
  768. return 0;
  769. }
  770. /* --------------------------------------------------------------------- */
  771. static int yam_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
  772. {
  773. struct yam_port *yp = (struct yam_port *) dev->priv;
  774. struct yamdrv_ioctl_cfg yi;
  775. struct yamdrv_ioctl_mcs *ym;
  776. int ioctl_cmd;
  777. if (copy_from_user(&ioctl_cmd, ifr->ifr_data, sizeof(int)))
  778.  return -EFAULT;
  779. if (yp == NULL || yp->magic != YAM_MAGIC)
  780. return -EINVAL;
  781. if (!capable(CAP_NET_ADMIN))
  782. return -EPERM;
  783. if (cmd != SIOCDEVPRIVATE)
  784. return -EINVAL;
  785. switch (ioctl_cmd) {
  786. case SIOCYAMRESERVED:
  787. return -EINVAL; /* unused */
  788. case SIOCYAMSMCS:
  789. if (netif_running(dev))
  790. return -EINVAL; /* Cannot change this parameter when up */
  791. if ((ym = kmalloc(sizeof(struct yamdrv_ioctl_mcs), GFP_KERNEL)) == NULL)
  792. return -ENOBUFS;
  793. ym->bitrate = 9600;
  794. if (copy_from_user(ym, ifr->ifr_data, sizeof(struct yamdrv_ioctl_mcs))) {
  795. kfree(ym);
  796. return -EFAULT;
  797. }
  798. if (ym->bitrate > YAM_MAXBITRATE) {
  799. kfree(ym);
  800. return -EINVAL;
  801. }
  802. add_mcs(ym->bits, ym->bitrate);
  803. kfree(ym);
  804. break;
  805. case SIOCYAMSCFG:
  806. if (!capable(CAP_SYS_RAWIO))
  807. return -EPERM;
  808. if (copy_from_user(&yi, ifr->ifr_data, sizeof(struct yamdrv_ioctl_cfg)))
  809.  return -EFAULT;
  810. if ((yi.cfg.mask & YAM_IOBASE) && netif_running(dev))
  811. return -EINVAL; /* Cannot change this parameter when up */
  812. if ((yi.cfg.mask & YAM_IRQ) && netif_running(dev))
  813. return -EINVAL; /* Cannot change this parameter when up */
  814. if ((yi.cfg.mask & YAM_BITRATE) && netif_running(dev))
  815. return -EINVAL; /* Cannot change this parameter when up */
  816. if ((yi.cfg.mask & YAM_BAUDRATE) && netif_running(dev))
  817. return -EINVAL; /* Cannot change this parameter when up */
  818. if (yi.cfg.mask & YAM_IOBASE) {
  819. yp->iobase = yi.cfg.iobase;
  820. dev->base_addr = yi.cfg.iobase;
  821. }
  822. if (yi.cfg.mask & YAM_IRQ) {
  823. if (yi.cfg.irq > 15)
  824. return -EINVAL;
  825. yp->irq = yi.cfg.irq;
  826. dev->irq = yi.cfg.irq;
  827. }
  828. if (yi.cfg.mask & YAM_BITRATE) {
  829. if (yi.cfg.bitrate > YAM_MAXBITRATE)
  830. return -EINVAL;
  831. yp->bitrate = yi.cfg.bitrate;
  832. }
  833. if (yi.cfg.mask & YAM_BAUDRATE) {
  834. if (yi.cfg.baudrate > YAM_MAXBAUDRATE)
  835. return -EINVAL;
  836. yp->baudrate = yi.cfg.baudrate;
  837. }
  838. if (yi.cfg.mask & YAM_MODE) {
  839. if (yi.cfg.mode > YAM_MAXMODE)
  840. return -EINVAL;
  841. yp->dupmode = yi.cfg.mode;
  842. }
  843. if (yi.cfg.mask & YAM_HOLDDLY) {
  844. if (yi.cfg.holddly > YAM_MAXHOLDDLY)
  845. return -EINVAL;
  846. yp->holdd = yi.cfg.holddly;
  847. }
  848. if (yi.cfg.mask & YAM_TXDELAY) {
  849. if (yi.cfg.txdelay > YAM_MAXTXDELAY)
  850. return -EINVAL;
  851. yp->txd = yi.cfg.txdelay;
  852. }
  853. if (yi.cfg.mask & YAM_TXTAIL) {
  854. if (yi.cfg.txtail > YAM_MAXTXTAIL)
  855. return -EINVAL;
  856. yp->txtail = yi.cfg.txtail;
  857. }
  858. if (yi.cfg.mask & YAM_PERSIST) {
  859. if (yi.cfg.persist > YAM_MAXPERSIST)
  860. return -EINVAL;
  861. yp->pers = yi.cfg.persist;
  862. }
  863. if (yi.cfg.mask & YAM_SLOTTIME) {
  864. if (yi.cfg.slottime > YAM_MAXSLOTTIME)
  865. return -EINVAL;
  866. yp->slot = yi.cfg.slottime;
  867. yp->slotcnt = yp->slot / 10;
  868. }
  869. break;
  870. case SIOCYAMGCFG:
  871. yi.cfg.mask = 0xffffffff;
  872. yi.cfg.iobase = yp->iobase;
  873. yi.cfg.irq = yp->irq;
  874. yi.cfg.bitrate = yp->bitrate;
  875. yi.cfg.baudrate = yp->baudrate;
  876. yi.cfg.mode = yp->dupmode;
  877. yi.cfg.txdelay = yp->txd;
  878. yi.cfg.holddly = yp->holdd;
  879. yi.cfg.txtail = yp->txtail;
  880. yi.cfg.persist = yp->pers;
  881. yi.cfg.slottime = yp->slot;
  882. if (copy_to_user(ifr->ifr_data, &yi, sizeof(struct yamdrv_ioctl_cfg)))
  883.  return -EFAULT;
  884. break;
  885. default:
  886. return -EINVAL;
  887. }
  888. return 0;
  889. }
  890. /* --------------------------------------------------------------------- */
  891. static int yam_set_mac_address(struct net_device *dev, void *addr)
  892. {
  893. struct sockaddr *sa = (struct sockaddr *) addr;
  894. /* addr is an AX.25 shifted ASCII mac address */
  895. memcpy(dev->dev_addr, sa->sa_data, dev->addr_len);
  896. return 0;
  897. }
  898. /* --------------------------------------------------------------------- */
  899. static int yam_probe(struct net_device *dev)
  900. {
  901. struct yam_port *yp;
  902. if (!dev)
  903. return -ENXIO;
  904. yp = (struct yam_port *) dev->priv;
  905. dev->open = yam_open;
  906. dev->stop = yam_close;
  907. dev->do_ioctl = yam_ioctl;
  908. dev->hard_start_xmit = yam_send_packet;
  909. dev->get_stats = yam_get_stats;
  910. skb_queue_head_init(&yp->send_queue);
  911. #if defined(CONFIG_AX25) || defined(CONFIG_AX25_MODULE)
  912. dev->hard_header = ax25_encapsulate;
  913. dev->rebuild_header = ax25_rebuild_header;
  914. #else /* CONFIG_AX25 || CONFIG_AX25_MODULE */
  915. dev->hard_header = NULL;
  916. dev->rebuild_header = NULL;
  917. #endif /* CONFIG_AX25 || CONFIG_AX25_MODULE */
  918. dev->set_mac_address = yam_set_mac_address;
  919. dev->type = ARPHRD_AX25; /* AF_AX25 device */
  920. dev->hard_header_len = 73; /* We do digipeaters now */
  921. dev->mtu = 256; /* AX25 is the default */
  922. dev->addr_len = 7; /* sizeof an ax.25 address */
  923. memcpy(dev->broadcast, ax25_bcast, 7);
  924. memcpy(dev->dev_addr, ax25_test, 7);
  925. /* New style flags */
  926. dev->flags = 0;
  927. return 0;
  928. }
  929. /* --------------------------------------------------------------------- */
  930. static int __init yam_init_driver(void)
  931. {
  932. struct net_device *dev;
  933. int i;
  934. printk(yam_drvinfo);
  935. for (i = 0; i < NR_PORTS; i++) {
  936. sprintf(yam_ports[i].dev.name, "yam%d", i);
  937. yam_ports[i].magic = YAM_MAGIC;
  938. yam_ports[i].bitrate = DEFAULT_BITRATE;
  939. yam_ports[i].baudrate = DEFAULT_BITRATE * 2;
  940. yam_ports[i].iobase = 0;
  941. yam_ports[i].irq = 0;
  942. yam_ports[i].dupmode = 0;
  943. yam_ports[i].holdd = DEFAULT_HOLDD;
  944. yam_ports[i].txd = DEFAULT_TXD;
  945. yam_ports[i].txtail = DEFAULT_TXTAIL;
  946. yam_ports[i].slot = DEFAULT_SLOT;
  947. yam_ports[i].pers = DEFAULT_PERS;
  948. dev = &yam_ports[i].dev;
  949. dev->priv = &yam_ports[i];
  950. dev->base_addr = yam_ports[i].iobase;
  951. dev->irq = yam_ports[i].irq;
  952. dev->init = yam_probe;
  953. dev->if_port = 0;
  954. if (register_netdev(dev)) {
  955. printk(KERN_WARNING "yam: cannot register net device %sn", dev->name);
  956. dev->priv = NULL;
  957. return -ENXIO;
  958. }
  959. SET_MODULE_OWNER(dev);
  960. }
  961. yam_timer.function = yam_dotimer;
  962. yam_timer.expires = jiffies + HZ / 100;
  963. add_timer(&yam_timer);
  964. proc_net_create("yam", 0, yam_net_get_info);
  965. return 0;
  966. }
  967. /* --------------------------------------------------------------------- */
  968. static void __exit yam_cleanup_driver(void)
  969. {
  970. struct yam_mcs *p;
  971. int i;
  972. del_timer(&yam_timer);
  973. for (i = 0; i < NR_PORTS; i++) {
  974. struct net_device *dev = &yam_ports[i].dev;
  975. if (!dev->priv)
  976. continue;
  977. if (netif_running(dev))
  978. yam_close(dev);
  979. unregister_netdev(dev);
  980. }
  981. while (yam_data) {
  982. p = yam_data;
  983. yam_data = yam_data->next;
  984. kfree(p);
  985. }
  986. proc_net_remove("yam");
  987. }
  988. /* --------------------------------------------------------------------- */
  989. MODULE_AUTHOR("Frederic Rible F1OAT frible@teaser.fr");
  990. MODULE_DESCRIPTION("Yam amateur radio modem driver");
  991. MODULE_LICENSE("GPL");
  992. module_init(yam_init_driver);
  993. module_exit(yam_cleanup_driver);
  994. /* --------------------------------------------------------------------- */