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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*****************************************************************************/
  2. /*
  3.  * baycom_ser_fdx.c  -- baycom ser12 fullduplex radio modem 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.  *
  26.  *  Supported modems
  27.  *
  28.  *  ser12:  This is a very simple 1200 baud AFSK modem. The modem consists only
  29.  *          of a modulator/demodulator chip, usually a TI TCM3105. The computer
  30.  *          is responsible for regenerating the receiver bit clock, as well as
  31.  *          for handling the HDLC protocol. The modem connects to a serial port,
  32.  *          hence the name. Since the serial port is not used as an async serial
  33.  *          port, the kernel driver for serial ports cannot be used, and this
  34.  *          driver only supports standard serial hardware (8250, 16450, 16550A)
  35.  *
  36.  *          This modem usually draws its supply current out of the otherwise unused
  37.  *          TXD pin of the serial port. Thus a contignuous stream of 0x00-bytes
  38.  *          is transmitted to achieve a positive supply voltage.
  39.  *
  40.  *  hsk:    This is a 4800 baud FSK modem, designed for TNC use. It works fine
  41.  *          in 'baycom-mode' :-)  In contrast to the TCM3105 modem, power is
  42.  *          externally supplied. So there's no need to provide the 0x00-byte-stream
  43.  *          when receiving or idle, which drastically reduces interrupt load.
  44.  *
  45.  *  Command line options (insmod command line)
  46.  *
  47.  *  mode     ser#    hardware DCD
  48.  *           ser#*   software DCD
  49.  *           ser#+   hardware DCD, inverted signal at DCD pin
  50.  *           '#' denotes the baud rate / 100, eg. ser12* is '1200 baud, soft DCD'
  51.  *  iobase   base address of the port; common values are 0x3f8, 0x2f8, 0x3e8, 0x2e8
  52.  *  baud     baud rate (between 300 and 4800)
  53.  *  irq      interrupt line of the port; common values are 4,3
  54.  *
  55.  *
  56.  *  History:
  57.  *   0.1  26.06.1996  Adapted from baycom.c and made network driver interface
  58.  *        18.10.1996  Changed to new user space access routines (copy_{to,from}_user)
  59.  *   0.3  26.04.1997  init code/data tagged
  60.  *   0.4  08.07.1997  alternative ser12 decoding algorithm (uses delta CTS ints)
  61.  *   0.5  11.11.1997  ser12/par96 split into separate files
  62.  *   0.6  24.01.1998  Thorsten Kranzkowski, dl8bcu and Thomas Sailer:
  63.  *                    reduced interrupt load in transmit case
  64.  *                    reworked receiver
  65.  *   0.7  03.08.1999  adapt to Linus' new __setup/__initcall
  66.  *   0.8  10.08.1999  use module_init/module_exit
  67.  *   0.9  12.02.2000  adapted to softnet driver interface
  68.  *   0.10 03.07.2000  fix interface name handling
  69.  */
  70. /*****************************************************************************/
  71. #include <linux/version.h>
  72. #include <linux/module.h>
  73. #include <linux/ioport.h>
  74. #include <linux/string.h>
  75. #include <linux/init.h>
  76. #include <asm/uaccess.h>
  77. #include <asm/io.h>
  78. #include <linux/hdlcdrv.h>
  79. #include <linux/baycom.h>
  80. /* --------------------------------------------------------------------- */
  81. #define BAYCOM_DEBUG
  82. /* --------------------------------------------------------------------- */
  83. static const char bc_drvname[] = "baycom_ser_fdx";
  84. static const char bc_drvinfo[] = KERN_INFO "baycom_ser_fdx: (C) 1996-2000 Thomas Sailer, HB9JNX/AE4WAn"
  85. KERN_INFO "baycom_ser_fdx: version 0.10 compiled " __TIME__ " " __DATE__ "n";
  86. /* --------------------------------------------------------------------- */
  87. #define NR_PORTS 4
  88. static struct net_device baycom_device[NR_PORTS];
  89. /* --------------------------------------------------------------------- */
  90. #define RBR(iobase) (iobase+0)
  91. #define THR(iobase) (iobase+0)
  92. #define IER(iobase) (iobase+1)
  93. #define IIR(iobase) (iobase+2)
  94. #define FCR(iobase) (iobase+2)
  95. #define LCR(iobase) (iobase+3)
  96. #define MCR(iobase) (iobase+4)
  97. #define LSR(iobase) (iobase+5)
  98. #define MSR(iobase) (iobase+6)
  99. #define SCR(iobase) (iobase+7)
  100. #define DLL(iobase) (iobase+0)
  101. #define DLM(iobase) (iobase+1)
  102. #define SER12_EXTENT 8
  103. /* ---------------------------------------------------------------------- */
  104. /*
  105.  * Information that need to be kept for each board.
  106.  */
  107. struct baycom_state {
  108. struct hdlcdrv_state hdrv;
  109. unsigned int baud, baud_us, baud_arbdiv, baud_uartdiv, baud_dcdtimeout;
  110. int opt_dcd;
  111. struct modem_state {
  112. unsigned char flags;
  113. unsigned char ptt;
  114. unsigned int shreg;
  115. struct modem_state_ser12 {
  116. unsigned char tx_bit;
  117. unsigned char last_rxbit;
  118. int dcd_sum0, dcd_sum1, dcd_sum2;
  119. int dcd_time;
  120. unsigned int pll_time;
  121. unsigned int txshreg;
  122. } ser12;
  123. } modem;
  124. #ifdef BAYCOM_DEBUG
  125. struct debug_vals {
  126. unsigned long last_jiffies;
  127. unsigned cur_intcnt;
  128. unsigned last_intcnt;
  129. int cur_pllcorr;
  130. int last_pllcorr;
  131. } debug_vals;
  132. #endif /* BAYCOM_DEBUG */
  133. };
  134. /* --------------------------------------------------------------------- */
  135. static void inline baycom_int_freq(struct baycom_state *bc)
  136. {
  137. #ifdef BAYCOM_DEBUG
  138. unsigned long cur_jiffies = jiffies;
  139. /*
  140.  * measure the interrupt frequency
  141.  */
  142. bc->debug_vals.cur_intcnt++;
  143. if ((cur_jiffies - bc->debug_vals.last_jiffies) >= HZ) {
  144. bc->debug_vals.last_jiffies = cur_jiffies;
  145. bc->debug_vals.last_intcnt = bc->debug_vals.cur_intcnt;
  146. bc->debug_vals.cur_intcnt = 0;
  147. bc->debug_vals.last_pllcorr = bc->debug_vals.cur_pllcorr;
  148. bc->debug_vals.cur_pllcorr = 0;
  149. }
  150. #endif /* BAYCOM_DEBUG */
  151. }
  152. /* --------------------------------------------------------------------- */
  153. /*
  154.  * ===================== SER12 specific routines =========================
  155.  */
  156. /* --------------------------------------------------------------------- */
  157. static inline void ser12_set_divisor(struct net_device *dev,
  158.                                      unsigned int divisor)
  159. {
  160.         outb(0x81, LCR(dev->base_addr));        /* DLAB = 1 */
  161.         outb(divisor, DLL(dev->base_addr));
  162.         outb(divisor >> 8, DLM(dev->base_addr));
  163.         outb(0x01, LCR(dev->base_addr));        /* word length = 6 */
  164.         /*
  165.          * make sure the next interrupt is generated;
  166.          * 0 must be used to power the modem; the modem draws its
  167.          * power from the TxD line
  168.          */
  169.         outb(0x00, THR(dev->base_addr));
  170.         /*
  171.          * it is important not to set the divider while transmitting;
  172.          * this reportedly makes some UARTs generating interrupts
  173.          * in the hundredthousands per second region
  174.          * Reported by: Ignacio.Arenaza@studi.epfl.ch (Ignacio Arenaza Nuno)
  175.          */
  176. }
  177. /* --------------------------------------------------------------------- */
  178. #if 0
  179. extern inline unsigned int hweight16(unsigned int w)
  180.         __attribute__ ((unused));
  181. extern inline unsigned int hweight8(unsigned int w)
  182.         __attribute__ ((unused));
  183. extern inline unsigned int hweight16(unsigned int w)
  184. {
  185.         unsigned short res = (w & 0x5555) + ((w >> 1) & 0x5555);
  186.         res = (res & 0x3333) + ((res >> 2) & 0x3333);
  187.         res = (res & 0x0F0F) + ((res >> 4) & 0x0F0F);
  188.         return (res & 0x00FF) + ((res >> 8) & 0x00FF);
  189. }
  190. extern inline unsigned int hweight8(unsigned int w)
  191. {
  192.         unsigned short res = (w & 0x55) + ((w >> 1) & 0x55);
  193.         res = (res & 0x33) + ((res >> 2) & 0x33);
  194.         return (res & 0x0F) + ((res >> 4) & 0x0F);
  195. }
  196. #endif
  197. /* --------------------------------------------------------------------- */
  198. static __inline__ void ser12_rx(struct net_device *dev, struct baycom_state *bc, struct timeval *tv, unsigned char curs)
  199. {
  200. int timediff;
  201. int bdus8 = bc->baud_us >> 3;
  202. int bdus4 = bc->baud_us >> 2;
  203. int bdus2 = bc->baud_us >> 1;
  204. timediff = 1000000 + tv->tv_usec - bc->modem.ser12.pll_time;
  205. while (timediff >= 500000)
  206. timediff -= 1000000;
  207. while (timediff >= bdus2) {
  208. timediff -= bc->baud_us;
  209. bc->modem.ser12.pll_time += bc->baud_us;
  210. bc->modem.ser12.dcd_time--;
  211. /* first check if there is room to add a bit */
  212. if (bc->modem.shreg & 1) {
  213. hdlcdrv_putbits(&bc->hdrv, (bc->modem.shreg >> 1) ^ 0xffff);
  214. bc->modem.shreg = 0x10000;
  215. }
  216. /* add a one bit */
  217. bc->modem.shreg >>= 1;
  218. }
  219. if (bc->modem.ser12.dcd_time <= 0) {
  220. if (!bc->opt_dcd)
  221. hdlcdrv_setdcd(&bc->hdrv, (bc->modem.ser12.dcd_sum0 + 
  222.    bc->modem.ser12.dcd_sum1 + 
  223.    bc->modem.ser12.dcd_sum2) < 0);
  224. bc->modem.ser12.dcd_sum2 = bc->modem.ser12.dcd_sum1;
  225. bc->modem.ser12.dcd_sum1 = bc->modem.ser12.dcd_sum0;
  226. bc->modem.ser12.dcd_sum0 = 2; /* slight bias */
  227. bc->modem.ser12.dcd_time += 120;
  228. }
  229. if (bc->modem.ser12.last_rxbit != curs) {
  230. bc->modem.ser12.last_rxbit = curs;
  231. bc->modem.shreg |= 0x10000;
  232. /* adjust the PLL */
  233. if (timediff > 0)
  234. bc->modem.ser12.pll_time += bdus8;
  235. else
  236. bc->modem.ser12.pll_time += 1000000 - bdus8;
  237. /* update DCD */
  238. if (abs(timediff) > bdus4)
  239. bc->modem.ser12.dcd_sum0 += 4;
  240. else
  241. bc->modem.ser12.dcd_sum0--;
  242. #ifdef BAYCOM_DEBUG
  243. bc->debug_vals.cur_pllcorr = timediff;
  244. #endif /* BAYCOM_DEBUG */
  245. }
  246. while (bc->modem.ser12.pll_time >= 1000000)
  247. bc->modem.ser12.pll_time -= 1000000;
  248. }
  249. /* --------------------------------------------------------------------- */
  250. static void ser12_interrupt(int irq, void *dev_id, struct pt_regs *regs)
  251. {
  252. struct net_device *dev = (struct net_device *)dev_id;
  253. struct baycom_state *bc = (struct baycom_state *)dev->priv;
  254. struct timeval tv;
  255. unsigned char iir, msr;
  256. unsigned int txcount = 0;
  257. if (!bc || bc->hdrv.magic != HDLCDRV_MAGIC)
  258. return;
  259. /* fast way out for shared irq */
  260. if ((iir = inb(IIR(dev->base_addr))) & 1) 
  261. return;
  262. /* get current time */
  263. do_gettimeofday(&tv);
  264. msr = inb(MSR(dev->base_addr));
  265. /* delta DCD */
  266. if ((msr & 8) && bc->opt_dcd)
  267. hdlcdrv_setdcd(&bc->hdrv, !((msr ^ bc->opt_dcd) & 0x80));
  268. do {
  269. switch (iir & 6) {
  270. case 6:
  271. inb(LSR(dev->base_addr));
  272. break;
  273. case 4:
  274. inb(RBR(dev->base_addr));
  275. break;
  276. case 2:
  277. /*
  278.  * make sure the next interrupt is generated;
  279.  * 0 must be used to power the modem; the modem draws its
  280.  * power from the TxD line
  281.  */
  282. outb(0x00, THR(dev->base_addr));
  283. baycom_int_freq(bc);
  284. txcount++;
  285. /*
  286.  * first output the last bit (!) then call HDLC transmitter,
  287.  * since this may take quite long
  288.  */
  289. if (bc->modem.ptt)
  290. outb(0x0e | (!!bc->modem.ser12.tx_bit), MCR(dev->base_addr));
  291. else
  292. outb(0x0d, MCR(dev->base_addr));       /* transmitter off */
  293. break;
  294. default:
  295. msr = inb(MSR(dev->base_addr));
  296. /* delta DCD */
  297. if ((msr & 8) && bc->opt_dcd) 
  298. hdlcdrv_setdcd(&bc->hdrv, !((msr ^ bc->opt_dcd) & 0x80));
  299. break;
  300. }
  301. iir = inb(IIR(dev->base_addr));
  302. } while (!(iir & 1));
  303. ser12_rx(dev, bc, &tv, msr & 0x10); /* CTS */
  304. if (bc->modem.ptt && txcount) {
  305. if (bc->modem.ser12.txshreg <= 1) {
  306. bc->modem.ser12.txshreg = 0x10000 | hdlcdrv_getbits(&bc->hdrv);
  307. if (!hdlcdrv_ptt(&bc->hdrv)) {
  308. ser12_set_divisor(dev, 115200/100/8);
  309. bc->modem.ptt = 0;
  310. goto end_transmit;
  311. }
  312. }
  313. bc->modem.ser12.tx_bit = !(bc->modem.ser12.tx_bit ^ (bc->modem.ser12.txshreg & 1));
  314. bc->modem.ser12.txshreg >>= 1;
  315. }
  316.  end_transmit:
  317. __sti();
  318. if (!bc->modem.ptt && txcount) {
  319. hdlcdrv_arbitrate(dev, &bc->hdrv);
  320. if (hdlcdrv_ptt(&bc->hdrv)) {
  321. ser12_set_divisor(dev, bc->baud_uartdiv);
  322. bc->modem.ser12.txshreg = 1;
  323. bc->modem.ptt = 1;
  324. }
  325. }
  326. hdlcdrv_transmitter(dev, &bc->hdrv);
  327. hdlcdrv_receiver(dev, &bc->hdrv);
  328. __cli();
  329. }
  330. /* --------------------------------------------------------------------- */
  331. enum uart { c_uart_unknown, c_uart_8250,
  332.     c_uart_16450, c_uart_16550, c_uart_16550A};
  333. static const char *uart_str[] = { 
  334. "unknown", "8250", "16450", "16550", "16550A" 
  335. };
  336. static enum uart ser12_check_uart(unsigned int iobase)
  337. {
  338. unsigned char b1,b2,b3;
  339. enum uart u;
  340. enum uart uart_tab[] =
  341. { c_uart_16450, c_uart_unknown, c_uart_16550, c_uart_16550A };
  342. b1 = inb(MCR(iobase));
  343. outb(b1 | 0x10, MCR(iobase)); /* loopback mode */
  344. b2 = inb(MSR(iobase));
  345. outb(0x1a, MCR(iobase));
  346. b3 = inb(MSR(iobase)) & 0xf0;
  347. outb(b1, MCR(iobase)); /* restore old values */
  348. outb(b2, MSR(iobase));
  349. if (b3 != 0x90)
  350. return c_uart_unknown;
  351. inb(RBR(iobase));
  352. inb(RBR(iobase));
  353. outb(0x01, FCR(iobase)); /* enable FIFOs */
  354. u = uart_tab[(inb(IIR(iobase)) >> 6) & 3];
  355. if (u == c_uart_16450) {
  356. outb(0x5a, SCR(iobase));
  357. b1 = inb(SCR(iobase));
  358. outb(0xa5, SCR(iobase));
  359. b2 = inb(SCR(iobase));
  360. if ((b1 != 0x5a) || (b2 != 0xa5))
  361. u = c_uart_8250;
  362. }
  363. return u;
  364. }
  365. /* --------------------------------------------------------------------- */
  366. static int ser12_open(struct net_device *dev)
  367. {
  368. struct baycom_state *bc = (struct baycom_state *)dev->priv;
  369. enum uart u;
  370. if (!dev || !bc)
  371. return -ENXIO;
  372. if (!dev->base_addr || dev->base_addr > 0x1000-SER12_EXTENT ||
  373.     dev->irq < 2 || dev->irq > 15)
  374. return -ENXIO;
  375. if (bc->baud < 300 || bc->baud > 4800)
  376. return -EINVAL;
  377. if (check_region(dev->base_addr, SER12_EXTENT))
  378. return -EACCES;
  379. memset(&bc->modem, 0, sizeof(bc->modem));
  380. bc->hdrv.par.bitrate = bc->baud;
  381. bc->baud_us = 1000000/bc->baud;
  382. bc->baud_uartdiv = (115200/8)/bc->baud;
  383. if ((u = ser12_check_uart(dev->base_addr)) == c_uart_unknown)
  384. return -EIO;
  385. outb(0, FCR(dev->base_addr));  /* disable FIFOs */
  386. outb(0x0d, MCR(dev->base_addr));
  387. outb(0, IER(dev->base_addr));
  388. if (request_irq(dev->irq, ser12_interrupt, SA_INTERRUPT | SA_SHIRQ,
  389. "baycom_ser_fdx", dev))
  390. return -EBUSY;
  391. request_region(dev->base_addr, SER12_EXTENT, "baycom_ser_fdx");
  392. /*
  393.  * set the SIO to 6 Bits/character; during receive,
  394.  * the baud rate is set to produce 100 ints/sec
  395.  * to feed the channel arbitration process,
  396.  * during transmit to baud ints/sec to run
  397.  * the transmitter
  398.  */
  399. ser12_set_divisor(dev, 115200/100/8);
  400. /*
  401.  * enable transmitter empty interrupt and modem status interrupt
  402.  */
  403. outb(0x0a, IER(dev->base_addr));
  404. /*
  405.  * make sure the next interrupt is generated;
  406.  * 0 must be used to power the modem; the modem draws its
  407.  * power from the TxD line
  408.  */
  409. outb(0x00, THR(dev->base_addr));
  410. hdlcdrv_setdcd(&bc->hdrv, 0);
  411. printk(KERN_INFO "%s: ser_fdx at iobase 0x%lx irq %u baud %u uart %sn",
  412.        bc_drvname, dev->base_addr, dev->irq, bc->baud, uart_str[u]);
  413. MOD_INC_USE_COUNT;
  414. return 0;
  415. }
  416. /* --------------------------------------------------------------------- */
  417. static int ser12_close(struct net_device *dev)
  418. {
  419. struct baycom_state *bc = (struct baycom_state *)dev->priv;
  420. if (!dev || !bc)
  421. return -EINVAL;
  422. /*
  423.  * disable interrupts
  424.  */
  425. outb(0, IER(dev->base_addr));
  426. outb(1, MCR(dev->base_addr));
  427. free_irq(dev->irq, dev);
  428. release_region(dev->base_addr, SER12_EXTENT);
  429. printk(KERN_INFO "%s: close ser_fdx at iobase 0x%lx irq %un",
  430.        bc_drvname, dev->base_addr, dev->irq);
  431. MOD_DEC_USE_COUNT;
  432. return 0;
  433. }
  434. /* --------------------------------------------------------------------- */
  435. /*
  436.  * ===================== hdlcdrv driver interface =========================
  437.  */
  438. /* --------------------------------------------------------------------- */
  439. static int baycom_ioctl(struct net_device *dev, struct ifreq *ifr,
  440. struct hdlcdrv_ioctl *hi, int cmd);
  441. /* --------------------------------------------------------------------- */
  442. static struct hdlcdrv_ops ser12_ops = {
  443. bc_drvname,
  444. bc_drvinfo,
  445. ser12_open,
  446. ser12_close,
  447. baycom_ioctl
  448. };
  449. /* --------------------------------------------------------------------- */
  450. static int baycom_setmode(struct baycom_state *bc, const char *modestr)
  451. {
  452. unsigned int baud;
  453. if (!strncmp(modestr, "ser", 3)) {
  454. baud = simple_strtoul(modestr+3, NULL, 10);
  455. if (baud >= 3 && baud <= 48)
  456. bc->baud = baud*100;
  457. }
  458. if (strchr(modestr, '*'))
  459. bc->opt_dcd = 0;
  460. else if (strchr(modestr, '+'))
  461. bc->opt_dcd = -1;
  462. else
  463. bc->opt_dcd = 1;
  464. return 0;
  465. }
  466. /* --------------------------------------------------------------------- */
  467. static int baycom_ioctl(struct net_device *dev, struct ifreq *ifr,
  468. struct hdlcdrv_ioctl *hi, int cmd)
  469. {
  470. struct baycom_state *bc;
  471. struct baycom_ioctl bi;
  472. int cmd2;
  473. if (!dev || !dev->priv ||
  474.     ((struct baycom_state *)dev->priv)->hdrv.magic != HDLCDRV_MAGIC) {
  475. printk(KERN_ERR "bc_ioctl: invalid device structn");
  476. return -EINVAL;
  477. }
  478. bc = (struct baycom_state *)dev->priv;
  479. if (cmd != SIOCDEVPRIVATE)
  480. return -ENOIOCTLCMD;
  481. if (get_user(cmd2, (int *)ifr->ifr_data))
  482. return -EFAULT;
  483. switch (hi->cmd) {
  484. default:
  485. break;
  486. case HDLCDRVCTL_GETMODE:
  487. sprintf(hi->data.modename, "ser%u", bc->baud / 100);
  488. if (bc->opt_dcd <= 0)
  489. strcat(hi->data.modename, (!bc->opt_dcd) ? "*" : "+");
  490. if (copy_to_user(ifr->ifr_data, hi, sizeof(struct hdlcdrv_ioctl)))
  491. return -EFAULT;
  492. return 0;
  493. case HDLCDRVCTL_SETMODE:
  494. if (netif_running(dev) || !capable(CAP_NET_ADMIN))
  495. return -EACCES;
  496. hi->data.modename[sizeof(hi->data.modename)-1] = '';
  497. return baycom_setmode(bc, hi->data.modename);
  498. case HDLCDRVCTL_MODELIST:
  499. strcpy(hi->data.modename, "ser12,ser3,ser24");
  500. if (copy_to_user(ifr->ifr_data, hi, sizeof(struct hdlcdrv_ioctl)))
  501. return -EFAULT;
  502. return 0;
  503. case HDLCDRVCTL_MODEMPARMASK:
  504. return HDLCDRV_PARMASK_IOBASE | HDLCDRV_PARMASK_IRQ;
  505. }
  506. if (copy_from_user(&bi, ifr->ifr_data, sizeof(bi)))
  507. return -EFAULT;
  508. switch (bi.cmd) {
  509. default:
  510. return -ENOIOCTLCMD;
  511. #ifdef BAYCOM_DEBUG
  512. case BAYCOMCTL_GETDEBUG:
  513. bi.data.dbg.debug1 = bc->hdrv.ptt_keyed;
  514. bi.data.dbg.debug2 = bc->debug_vals.last_intcnt;
  515. bi.data.dbg.debug3 = bc->debug_vals.last_pllcorr;
  516. break;
  517. #endif /* BAYCOM_DEBUG */
  518. }
  519. if (copy_to_user(ifr->ifr_data, &bi, sizeof(bi)))
  520. return -EFAULT;
  521. return 0;
  522. }
  523. /* --------------------------------------------------------------------- */
  524. /*
  525.  * command line settable parameters
  526.  */
  527. static char *mode[NR_PORTS] = { "ser12*", };
  528. static int iobase[NR_PORTS] = { 0x3f8, };
  529. static int irq[NR_PORTS] = { 4, };
  530. static int baud[NR_PORTS] = { [0 ... NR_PORTS-1] = 1200 };
  531. MODULE_PARM(mode, "1-" __MODULE_STRING(NR_PORTS) "s");
  532. MODULE_PARM_DESC(mode, "baycom operating mode; * for software DCD");
  533. MODULE_PARM(iobase, "1-" __MODULE_STRING(NR_PORTS) "i");
  534. MODULE_PARM_DESC(iobase, "baycom io base address");
  535. MODULE_PARM(irq, "1-" __MODULE_STRING(NR_PORTS) "i");
  536. MODULE_PARM_DESC(irq, "baycom irq number");
  537. MODULE_PARM(baud, "1-" __MODULE_STRING(NR_PORTS) "i");
  538. MODULE_PARM_DESC(baud, "baycom baud rate (300 to 4800)");
  539. MODULE_AUTHOR("Thomas M. Sailer, sailer@ife.ee.ethz.ch, hb9jnx@hb9w.che.eu");
  540. MODULE_DESCRIPTION("Baycom ser12 full duplex amateur radio modem driver");
  541. MODULE_LICENSE("GPL");
  542. /* --------------------------------------------------------------------- */
  543. static int __init init_baycomserfdx(void)
  544. {
  545. int i, j, found = 0;
  546. char set_hw = 1;
  547. struct baycom_state *bc;
  548. printk(bc_drvinfo);
  549. /*
  550.  * register net devices
  551.  */
  552. for (i = 0; i < NR_PORTS; i++) {
  553. struct net_device *dev = baycom_device+i;
  554. char ifname[IFNAMSIZ];
  555. sprintf(ifname, "bcsf%d", i);
  556. if (!mode[i])
  557. set_hw = 0;
  558. if (!set_hw)
  559. iobase[i] = irq[i] = 0;
  560. j = hdlcdrv_register_hdlcdrv(dev, &ser12_ops, sizeof(struct baycom_state),
  561.      ifname, iobase[i], irq[i], 0);
  562. if (!j) {
  563. bc = (struct baycom_state *)dev->priv;
  564. if (set_hw && baycom_setmode(bc, mode[i]))
  565. set_hw = 0;
  566. bc->baud = baud[i];
  567. found++;
  568. } else {
  569. printk(KERN_WARNING "%s: cannot register net devicen",
  570.        bc_drvname);
  571. }
  572. }
  573. if (!found)
  574. return -ENXIO;
  575. return 0;
  576. }
  577. static void __exit cleanup_baycomserfdx(void)
  578. {
  579. int i;
  580. for(i = 0; i < NR_PORTS; i++) {
  581. struct net_device *dev = baycom_device+i;
  582. struct baycom_state *bc = (struct baycom_state *)dev->priv;
  583. if (bc) {
  584. if (bc->hdrv.magic != HDLCDRV_MAGIC)
  585. printk(KERN_ERR "baycom: invalid magic in "
  586.        "cleanup_modulen");
  587. else
  588. hdlcdrv_unregister_hdlcdrv(dev);
  589. }
  590. }
  591. }
  592. module_init(init_baycomserfdx);
  593. module_exit(cleanup_baycomserfdx);
  594. /* --------------------------------------------------------------------- */
  595. #ifndef MODULE
  596. /*
  597.  * format: baycom_ser_fdx=io,irq,mode
  598.  * mode: ser#    hardware DCD
  599.  *       ser#*   software DCD
  600.  *       ser#+   hardware DCD, inverted signal at DCD pin
  601.  * '#' denotes the baud rate / 100, eg. ser12* is '1200 baud, soft DCD'
  602.  */
  603. static int __init baycom_ser_fdx_setup(char *str)
  604. {
  605.         static unsigned nr_dev;
  606.         int ints[4];
  607.         if (nr_dev >= NR_PORTS)
  608.                 return 0;
  609.         str = get_options(str, 4, ints);
  610.         if (ints[0] < 2)
  611.                 return 0;
  612.         mode[nr_dev] = str;
  613.         iobase[nr_dev] = ints[1];
  614.         irq[nr_dev] = ints[2];
  615. if (ints[0] >= 3)
  616. baud[nr_dev] = ints[3];
  617. nr_dev++;
  618. return 1;
  619. }
  620. __setup("baycom_ser_fdx=", baycom_ser_fdx_setup);
  621. #endif /* MODULE */
  622. /* --------------------------------------------------------------------- */