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

Linux/Unix编程

开发平台:

Unix_Linux

  1. #define RCS_ID "$Id: scc.c,v 1.75 1998/11/04 15:15:01 jreuter Exp jreuter $"
  2. #define VERSION "3.0"
  3. /*
  4.  * Please use z8530drv-utils-3.0 with this version.
  5.  *            ------------------
  6.  *
  7.  * You can find a subset of the documentation in 
  8.  * linux/Documentation/networking/z8530drv.txt.
  9.  */
  10. /*
  11.    ********************************************************************
  12.    *   SCC.C - Linux driver for Z8530 based HDLC cards for AX.25      *
  13.    ********************************************************************
  14.    ********************************************************************
  15. Copyright (c) 1993, 2000 Joerg Reuter DL1BKE
  16. portions (c) 1993 Guido ten Dolle PE1NNZ
  17.    ********************************************************************
  18.    
  19.    The driver and the programs in the archive are UNDER CONSTRUCTION.
  20.    The code is likely to fail, and so your kernel could --- even 
  21.    a whole network. 
  22.    This driver is intended for Amateur Radio use. If you are running it
  23.    for commercial purposes, please drop me a note. I am nosy...
  24.    ...BUT:
  25.  
  26.    ! You  m u s t  recognize the appropriate legislations of your country !
  27.    ! before you connect a radio to the SCC board and start to transmit or !
  28.    ! receive. The GPL allows you to use the  d r i v e r,  NOT the RADIO! !
  29.    For non-Amateur-Radio use please note that you might need a special
  30.    allowance/licence from the designer of the SCC Board and/or the
  31.    MODEM. 
  32.    This program is free software; you can redistribute it and/or modify 
  33.    it under the terms of the (modified) GNU General Public License 
  34.    delivered with the Linux kernel source.
  35.    
  36.    This program is distributed in the hope that it will be useful,
  37.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  38.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  39.    GNU General Public License for more details.
  40.    You should find a copy of the GNU General Public License in 
  41.    /usr/src/linux/COPYING; 
  42.    
  43.    ******************************************************************** 
  44.    Incomplete history of z8530drv:
  45.    -------------------------------
  46.    1994-09-13 started to write the driver, rescued most of my own
  47. code (and Hans Alblas' memory buffer pool concept) from 
  48. an earlier project "sccdrv" which was initiated by 
  49. Guido ten Dolle. Not much of the old driver survived, 
  50. though. The first version I put my hands on was sccdrv1.3
  51. from August 1993. The memory buffer pool concept
  52. appeared in an unauthorized sccdrv version (1.5) from
  53. August 1994.
  54.    1995-01-31 changed copyright notice to GPL without limitations.
  55.    
  56.      .
  57.      . <SNIP>
  58.      .
  59.       
  60.    1996-10-05 New semester, new driver... 
  61.       * KISS TNC emulator removed (TTY driver)
  62.       * Source moved to drivers/net/
  63.       * Includes Z8530 defines from drivers/net/z8530.h
  64.       * Uses sk_buffer memory management
  65.       * Reduced overhead of /proc/net/z8530drv output
  66.       * Streamlined quite a lot things
  67.       * Invents brand new bugs... ;-)
  68.       The move to version number 3.0 reflects theses changes.
  69.       You can use 'kissbridge' if you need a KISS TNC emulator.
  70.    1996-12-13 Fixed for Linux networking changes. (G4KLX)
  71.    1997-01-08 Fixed the remaining problems.
  72.    1997-04-02 Hopefully fixed the problems with the new *_timer()
  73.     routines, added calibration code.
  74.    1997-10-12 Made SCC_DELAY a CONFIG option, added CONFIG_SCC_TRXECHO
  75.    1998-01-29 Small fix to avoid lock-up on initialization
  76.    1998-09-29 Fixed the "grouping" bugs, tx_inhibit works again,
  77.     using dev->tx_queue_len now instead of MAXQUEUE now.
  78.    1998-10-21 Postponed the spinlock changes, would need a lot of
  79.     testing I currently don't have the time to. Softdcd doesn't
  80.     work.
  81.    1998-11-04 Softdcd does not work correctly in DPLL mode, in fact it 
  82.     never did. The DPLL locks on noise, the SYNC unit sees
  83.     flags that aren't... Restarting the DPLL does not help
  84.     either, it resynchronizes too slow and the first received
  85.     frame gets lost.
  86.    2000-02-13 Fixed for new network driver interface changes, still
  87.     does TX timeouts itself since it uses its own queue
  88.     scheme.
  89.    Thanks to all who contributed to this driver with ideas and bug
  90.    reports!
  91.    
  92.    NB -- if you find errors, change something, please let me know
  93.         first before you distribute it... And please don't touch
  94.      the version number. Just replace my callsign in
  95.      "v3.0.dl1bke" with your own. Just to avoid confusion...
  96.    If you want to add your modification to the linux distribution
  97.    please (!) contact me first.
  98.    
  99.    New versions of the driver will be announced on the linux-hams
  100.    mailing list on vger.kernel.org. To subscribe send an e-mail
  101.    to majordomo@vger.kernel.org with the following line in
  102.    the body of the mail:
  103.    
  104.    subscribe linux-hams
  105.    
  106.    The content of the "Subject" field will be ignored.
  107.    vy 73,
  108.    Joerg Reuter ampr-net: dl1bke@db0pra.ampr.org
  109. AX-25   : DL1BKE @ DB0ABH.#BAY.DEU.EU
  110. Internet: jreuter@yaina.de
  111. www     : http://yaina.de/jreuter
  112. */
  113. /* ----------------------------------------------------------------------- */
  114. #undef  SCC_LDELAY /* slow it even a bit more down */
  115. #undef  SCC_DONT_CHECK /* don't look if the SCCs you specified are available */
  116. #define SCC_MAXCHIPS 4       /* number of max. supported chips */
  117. #define SCC_BUFSIZE 384     /* must not exceed 4096 */
  118. #undef SCC_DEBUG
  119. #define SCC_DEFAULT_CLOCK 4915200 
  120. /* default pclock if nothing is specified */
  121. /* ----------------------------------------------------------------------- */
  122. #include <linux/config.h>
  123. #include <linux/module.h>
  124. #include <linux/errno.h>
  125. #include <linux/signal.h>
  126. #include <linux/sched.h>
  127. #include <linux/timer.h>
  128. #include <linux/interrupt.h>
  129. #include <linux/ioport.h>
  130. #include <linux/string.h>
  131. #include <linux/in.h>
  132. #include <linux/fcntl.h>
  133. #include <linux/ptrace.h>
  134. #include <linux/slab.h>
  135. #include <linux/delay.h>
  136. #include <linux/skbuff.h>
  137. #include <linux/netdevice.h>
  138. #include <linux/if_ether.h>
  139. #include <linux/if_arp.h>
  140. #include <linux/socket.h>
  141. #include <linux/init.h>
  142. #include <linux/scc.h>
  143. #include "z8530.h"
  144. #include <net/ax25.h>
  145. #include <asm/irq.h>
  146. #include <asm/system.h>
  147. #include <asm/io.h>
  148. #include <asm/uaccess.h>
  149. #include <asm/bitops.h>
  150. #include <linux/ctype.h>
  151. #include <linux/kernel.h>
  152. #include <linux/proc_fs.h>
  153. static char banner[] __initdata = KERN_INFO "AX.25: Z8530 SCC driver version "VERSION".dl1bken";
  154. static void t_dwait(unsigned long);
  155. static void t_txdelay(unsigned long);
  156. static void t_tail(unsigned long);
  157. static void t_busy(unsigned long);
  158. static void t_maxkeyup(unsigned long);
  159. static void t_idle(unsigned long);
  160. static void scc_tx_done(struct scc_channel *);
  161. static void scc_start_tx_timer(struct scc_channel *, void (*)(unsigned long), unsigned long);
  162. static void scc_start_maxkeyup(struct scc_channel *);
  163. static void scc_start_defer(struct scc_channel *);
  164. static void z8530_init(void);
  165. static void init_channel(struct scc_channel *scc);
  166. static void scc_key_trx (struct scc_channel *scc, char tx);
  167. static void scc_isr(int irq, void *dev_id, struct pt_regs *regs);
  168. static void scc_init_timer(struct scc_channel *scc);
  169. static int scc_net_setup(struct scc_channel *scc, unsigned char *name, int addev);
  170. static int scc_net_init(struct net_device *dev);
  171. static int scc_net_open(struct net_device *dev);
  172. static int scc_net_close(struct net_device *dev);
  173. static void scc_net_rx(struct scc_channel *scc, struct sk_buff *skb);
  174. static int scc_net_tx(struct sk_buff *skb, struct net_device *dev);
  175. static int scc_net_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd);
  176. static int scc_net_set_mac_address(struct net_device *dev, void *addr);
  177. static struct net_device_stats * scc_net_get_stats(struct net_device *dev);
  178. static unsigned char SCC_DriverName[] = "scc";
  179. static struct irqflags { unsigned char used : 1; } Ivec[NR_IRQS];
  180. static struct scc_channel SCC_Info[2 * SCC_MAXCHIPS]; /* information per channel */
  181. static struct scc_ctrl {
  182. io_port chan_A;
  183. io_port chan_B;
  184. int irq;
  185. } SCC_ctrl[SCC_MAXCHIPS+1];
  186. static unsigned char Driver_Initialized;
  187. static int Nchips;
  188. static io_port Vector_Latch;
  189. /* ******************************************************************** */
  190. /* * Port Access Functions       * */
  191. /* ******************************************************************** */
  192. /* These provide interrupt save 2-step access to the Z8530 registers */
  193. static inline unsigned char InReg(io_port port, unsigned char reg)
  194. {
  195. unsigned long flags;
  196. unsigned char r;
  197. save_flags(flags);
  198. cli();
  199. #ifdef SCC_LDELAY
  200. Outb(port, reg);
  201. udelay(SCC_LDELAY);
  202. r=Inb(port);
  203. udelay(SCC_LDELAY);
  204. #else
  205. Outb(port, reg);
  206. r=Inb(port);
  207. #endif
  208. restore_flags(flags);
  209. return r;
  210. }
  211. static inline void OutReg(io_port port, unsigned char reg, unsigned char val)
  212. {
  213. unsigned long flags;
  214. save_flags(flags);
  215. cli();
  216. #ifdef SCC_LDELAY
  217. Outb(port, reg); udelay(SCC_LDELAY);
  218. Outb(port, val); udelay(SCC_LDELAY);
  219. #else
  220. Outb(port, reg);
  221. Outb(port, val);
  222. #endif
  223. restore_flags(flags);
  224. }
  225. static inline void wr(struct scc_channel *scc, unsigned char reg,
  226. unsigned char val)
  227. {
  228. OutReg(scc->ctrl, reg, (scc->wreg[reg] = val));
  229. }
  230. static inline void or(struct scc_channel *scc, unsigned char reg, unsigned char val)
  231. {
  232. OutReg(scc->ctrl, reg, (scc->wreg[reg] |= val));
  233. }
  234. static inline void cl(struct scc_channel *scc, unsigned char reg, unsigned char val)
  235. {
  236. OutReg(scc->ctrl, reg, (scc->wreg[reg] &= ~val));
  237. }
  238. /* ******************************************************************** */
  239. /* * Some useful macros       * */
  240. /* ******************************************************************** */
  241. static inline void scc_discard_buffers(struct scc_channel *scc)
  242. {
  243. unsigned long flags;
  244. save_flags(flags);
  245. cli();
  246. if (scc->tx_buff != NULL)
  247. {
  248. dev_kfree_skb(scc->tx_buff);
  249. scc->tx_buff = NULL;
  250. }
  251. while (skb_queue_len(&scc->tx_queue))
  252. dev_kfree_skb(skb_dequeue(&scc->tx_queue));
  253. restore_flags(flags);
  254. }
  255. /* ******************************************************************** */
  256. /* * Interrupt Service Routines       * */
  257. /* ******************************************************************** */
  258. /* ----> subroutines for the interrupt handlers <---- */
  259. static inline void scc_notify(struct scc_channel *scc, int event)
  260. {
  261. struct sk_buff *skb;
  262. char *bp;
  263.         if (scc->kiss.fulldup != KISS_DUPLEX_OPTIMA)
  264. return;
  265. skb = dev_alloc_skb(2);
  266. if (skb != NULL)
  267. {
  268. bp = skb_put(skb, 2);
  269. *bp++ = PARAM_HWEVENT;
  270. *bp++ = event;
  271. scc_net_rx(scc, skb);
  272. } else
  273. scc->stat.nospace++;
  274. }
  275. static inline void flush_rx_FIFO(struct scc_channel *scc)
  276. {
  277. int k;
  278. for (k=0; k<3; k++)
  279. Inb(scc->data);
  280. if(scc->rx_buff != NULL) /* did we receive something? */
  281. {
  282. scc->stat.rxerrs++;  /* then count it as an error */
  283. dev_kfree_skb_irq(scc->rx_buff);
  284. scc->rx_buff = NULL;
  285. }
  286. }
  287. static void start_hunt(struct scc_channel *scc)
  288. {
  289. if ((scc->modem.clocksrc != CLK_EXTERNAL))
  290. OutReg(scc->ctrl,R14,SEARCH|scc->wreg[R14]); /* DPLL: enter search mode */
  291. or(scc,R3,ENT_HM|RxENABLE);  /* enable the receiver, hunt mode */
  292. }
  293. /* ----> four different interrupt handlers for Tx, Rx, changing of */
  294. /*       DCD/CTS and Rx/Tx errors */
  295. /* Transmitter interrupt handler */
  296. static inline void scc_txint(struct scc_channel *scc)
  297. {
  298. struct sk_buff *skb;
  299. scc->stat.txints++;
  300. skb = scc->tx_buff;
  301. /* send first octet */
  302. if (skb == NULL)
  303. {
  304. skb = skb_dequeue(&scc->tx_queue);
  305. scc->tx_buff = skb;
  306. netif_wake_queue(scc->dev);
  307. if (skb == NULL)
  308. {
  309. scc_tx_done(scc);
  310. Outb(scc->ctrl, RES_Tx_P);
  311. return;
  312. }
  313. if (skb->len == 0) /* Paranoia... */
  314. {
  315. dev_kfree_skb_irq(skb);
  316. scc->tx_buff = NULL;
  317. scc_tx_done(scc);
  318. Outb(scc->ctrl, RES_Tx_P);
  319. return;
  320. }
  321. scc->stat.tx_state = TXS_ACTIVE;
  322. OutReg(scc->ctrl, R0, RES_Tx_CRC);
  323. /* reset CRC generator */
  324. or(scc,R10,ABUNDER); /* re-install underrun protection */
  325. Outb(scc->data,*skb->data); /* send byte */
  326. skb_pull(skb, 1);
  327. if (!scc->enhanced) /* reset EOM latch */
  328. Outb(scc->ctrl,RES_EOM_L);
  329. return;
  330. }
  331. /* End Of Frame... */
  332. if (skb->len == 0)
  333. {
  334. Outb(scc->ctrl, RES_Tx_P); /* reset pending int */
  335. cl(scc, R10, ABUNDER); /* send CRC */
  336. dev_kfree_skb_irq(skb);
  337. scc->tx_buff = NULL;
  338. scc->stat.tx_state = TXS_NEWFRAME; /* next frame... */
  339. return;
  340. /* send octet */
  341. Outb(scc->data,*skb->data);
  342. skb_pull(skb, 1);
  343. }
  344. /* External/Status interrupt handler */
  345. static inline void scc_exint(struct scc_channel *scc)
  346. {
  347. unsigned char status,changes,chg_and_stat;
  348. scc->stat.exints++;
  349. status = InReg(scc->ctrl,R0);
  350. changes = status ^ scc->status;
  351. chg_and_stat = changes & status;
  352. /* ABORT: generated whenever DCD drops while receiving */
  353. if (chg_and_stat & BRK_ABRT) /* Received an ABORT */
  354. flush_rx_FIFO(scc);
  355. /* HUNT: software DCD; on = waiting for SYNC, off = receiving frame */
  356. if ((changes & SYNC_HUNT) && scc->kiss.softdcd)
  357. {
  358. if (status & SYNC_HUNT)
  359. {
  360. scc->dcd = 0;
  361. flush_rx_FIFO(scc);
  362. if ((scc->modem.clocksrc != CLK_EXTERNAL))
  363. OutReg(scc->ctrl,R14,SEARCH|scc->wreg[R14]); /* DPLL: enter search mode */
  364. } else {
  365. scc->dcd = 1;
  366. }
  367. scc_notify(scc, scc->dcd? HWEV_DCD_OFF:HWEV_DCD_ON);
  368. }
  369. /* DCD: on = start to receive packet, off = ABORT condition */
  370. /* (a successfully received packet generates a special condition int) */
  371. if((changes & DCD) && !scc->kiss.softdcd) /* DCD input changed state */
  372. {
  373. if(status & DCD)                /* DCD is now ON */
  374. {
  375. start_hunt(scc);
  376. scc->dcd = 1;
  377. } else {                        /* DCD is now OFF */
  378. cl(scc,R3,ENT_HM|RxENABLE); /* disable the receiver */
  379. flush_rx_FIFO(scc);
  380. scc->dcd = 0;
  381. }
  382. scc_notify(scc, scc->dcd? HWEV_DCD_ON:HWEV_DCD_OFF);
  383. }
  384. #ifdef notdef
  385. /* CTS: use external TxDelay (what's that good for?!)
  386.  * Anyway: If we _could_ use it (BayCom USCC uses CTS for
  387.  * own purposes) we _should_ use the "autoenable" feature
  388.  * of the Z8530 and not this interrupt...
  389.  */
  390.  
  391. if (chg_and_stat & CTS) /* CTS is now ON */
  392. {
  393. if (scc->kiss.txdelay == 0) /* zero TXDELAY = wait for CTS */
  394. scc_start_tx_timer(scc, t_txdelay, 0);
  395. }
  396. #endif
  397. if (scc->stat.tx_state == TXS_ACTIVE && (status & TxEOM))
  398. {
  399. scc->stat.tx_under++;   /* oops, an underrun! count 'em */
  400. Outb(scc->ctrl, RES_EXT_INT); /* reset ext/status interrupts */
  401. if (scc->tx_buff != NULL)
  402. {
  403. dev_kfree_skb_irq(scc->tx_buff);
  404. scc->tx_buff = NULL;
  405. }
  406. or(scc,R10,ABUNDER);
  407. scc_start_tx_timer(scc, t_txdelay, 0); /* restart transmission */
  408. }
  409. scc->status = status;
  410. Outb(scc->ctrl,RES_EXT_INT);
  411. }
  412. /* Receiver interrupt handler */
  413. static inline void scc_rxint(struct scc_channel *scc)
  414. {
  415. struct sk_buff *skb;
  416. scc->stat.rxints++;
  417. if((scc->wreg[5] & RTS) && scc->kiss.fulldup == KISS_DUPLEX_HALF)
  418. {
  419. Inb(scc->data); /* discard char */
  420. or(scc,R3,ENT_HM); /* enter hunt mode for next flag */
  421. return;
  422. }
  423. skb = scc->rx_buff;
  424. if (skb == NULL)
  425. {
  426. skb = dev_alloc_skb(scc->stat.bufsize);
  427. if (skb == NULL)
  428. {
  429. scc->dev_stat.rx_dropped++;
  430. scc->stat.nospace++;
  431. Inb(scc->data);
  432. or(scc, R3, ENT_HM);
  433. return;
  434. }
  435. scc->rx_buff = skb;
  436. *(skb_put(skb, 1)) = 0; /* KISS data */
  437. }
  438. if (skb->len >= scc->stat.bufsize)
  439. {
  440. #ifdef notdef
  441. printk(KERN_DEBUG "z8530drv: oops, scc_rxint() received huge frame...n");
  442. #endif
  443. dev_kfree_skb_irq(skb);
  444. scc->rx_buff = NULL;
  445. Inb(scc->data);
  446. or(scc, R3, ENT_HM);
  447. return;
  448. }
  449. *(skb_put(skb, 1)) = Inb(scc->data);
  450. }
  451. /* Receive Special Condition interrupt handler */
  452. static inline void scc_spint(struct scc_channel *scc)
  453. {
  454. unsigned char status;
  455. struct sk_buff *skb;
  456. scc->stat.spints++;
  457. status = InReg(scc->ctrl,R1); /* read receiver status */
  458. Inb(scc->data); /* throw away Rx byte */
  459. skb = scc->rx_buff;
  460. if(status & Rx_OVR) /* receiver overrun */
  461. {
  462. scc->stat.rx_over++;             /* count them */
  463. or(scc,R3,ENT_HM);               /* enter hunt mode for next flag */
  464. if (skb != NULL) 
  465. dev_kfree_skb_irq(skb);
  466. scc->rx_buff = skb = NULL;
  467. }
  468. if(status & END_FR && skb != NULL) /* end of frame */
  469. {
  470. /* CRC okay, frame ends on 8 bit boundary and received something ? */
  471. if (!(status & CRC_ERR) && (status & 0xe) == RES8 && skb->len > 0)
  472. {
  473. /* ignore last received byte (first of the CRC bytes) */
  474. skb_trim(skb, skb->len-1);
  475. scc_net_rx(scc, skb);
  476. scc->rx_buff = NULL;
  477. scc->stat.rxframes++;
  478. } else { /* a bad frame */
  479. dev_kfree_skb_irq(skb);
  480. scc->rx_buff = NULL;
  481. scc->stat.rxerrs++;
  482. }
  483. Outb(scc->ctrl,ERR_RES);
  484. }
  485. /* ----> interrupt service routine for the Z8530 <---- */
  486. static void scc_isr_dispatch(struct scc_channel *scc, int vector)
  487. {
  488. switch (vector & VECTOR_MASK)
  489. {
  490. case TXINT: scc_txint(scc); break;
  491. case EXINT: scc_exint(scc); break;
  492. case RXINT: scc_rxint(scc); break;
  493. case SPINT: scc_spint(scc); break;
  494. }
  495. }
  496. /* If the card has a latch for the interrupt vector (like the PA0HZP card)
  497.    use it to get the number of the chip that generated the int.
  498.    If not: poll all defined chips.
  499.  */
  500. #define SCC_IRQTIMEOUT 30000
  501. static void scc_isr(int irq, void *dev_id, struct pt_regs *regs)
  502. {
  503. unsigned char vector;
  504. struct scc_channel *scc;
  505. struct scc_ctrl *ctrl;
  506. int k;
  507. if (Vector_Latch)
  508. {
  509.      for(k=0; k < SCC_IRQTIMEOUT; k++)
  510.      {
  511. Outb(Vector_Latch, 0);      /* Generate INTACK */
  512.         
  513. /* Read the vector */
  514. if((vector=Inb(Vector_Latch)) >= 16 * Nchips) break; 
  515. if (vector & 0x01) break;
  516.           
  517.         scc=&SCC_Info[vector >> 3 ^ 0x01];
  518. if (!scc->dev) break;
  519. scc_isr_dispatch(scc, vector);
  520. OutReg(scc->ctrl,R0,RES_H_IUS);              /* Reset Highest IUS */
  521. }  
  522. if (k == SCC_IRQTIMEOUT)
  523. printk(KERN_WARNING "z8530drv: endless loop in scc_isr()?n");
  524. return;
  525. }
  526. /* Find the SCC generating the interrupt by polling all attached SCCs
  527.  * reading RR3A (the interrupt pending register)
  528.  */
  529. ctrl = SCC_ctrl;
  530. while (ctrl->chan_A)
  531. {
  532. if (ctrl->irq != irq)
  533. {
  534. ctrl++;
  535. continue;
  536. }
  537. scc = NULL;
  538. for (k = 0; InReg(ctrl->chan_A,R3) && k < SCC_IRQTIMEOUT; k++)
  539. {
  540. vector=InReg(ctrl->chan_B,R2); /* Read the vector */
  541. if (vector & 0x01) break; 
  542. scc = &SCC_Info[vector >> 3 ^ 0x01];
  543.         if (!scc->dev) break;
  544. scc_isr_dispatch(scc, vector);
  545. }
  546. if (k == SCC_IRQTIMEOUT)
  547. {
  548. printk(KERN_WARNING "z8530drv: endless loop in scc_isr()?!n");
  549. break;
  550. }
  551. /* This looks weird and it is. At least the BayCom USCC doesn't
  552.  * use the Interrupt Daisy Chain, thus we'll have to start
  553.  * all over again to be sure not to miss an interrupt from 
  554.  * (any of) the other chip(s)...
  555.  * Honestly, the situation *is* braindamaged...
  556.  */
  557. if (scc != NULL)
  558. {
  559. OutReg(scc->ctrl,R0,RES_H_IUS);
  560. ctrl = SCC_ctrl; 
  561. } else
  562. ctrl++;
  563. }
  564. }
  565. /* ******************************************************************** */
  566. /* * Init Channel */
  567. /* ******************************************************************** */
  568. /* ----> set SCC channel speed <---- */
  569. static inline void set_brg(struct scc_channel *scc, unsigned int tc)
  570. {
  571. cl(scc,R14,BRENABL); /* disable baudrate generator */
  572. wr(scc,R12,tc & 255); /* brg rate LOW */
  573. wr(scc,R13,tc >> 8);    /* brg rate HIGH */
  574. or(scc,R14,BRENABL); /* enable baudrate generator */
  575. }
  576. static inline void set_speed(struct scc_channel *scc)
  577. {
  578. disable_irq(scc->irq);
  579. if (scc->modem.speed > 0) /* paranoia... */
  580. set_brg(scc, (unsigned) (scc->clock / (scc->modem.speed * 64)) - 2);
  581. enable_irq(scc->irq);
  582. }
  583. /* ----> initialize a SCC channel <---- */
  584. static inline void init_brg(struct scc_channel *scc)
  585. {
  586. wr(scc, R14, BRSRC); /* BRG source = PCLK */
  587. OutReg(scc->ctrl, R14, SSBR|scc->wreg[R14]); /* DPLL source = BRG */
  588. OutReg(scc->ctrl, R14, SNRZI|scc->wreg[R14]); /* DPLL NRZI mode */
  589. }
  590. /*
  591.  * Initialization according to the Z8530 manual (SGS-Thomson's version):
  592.  *
  593.  * 1. Modes and constants
  594.  *
  595.  * WR9 11000000 chip reset
  596.  * WR4 XXXXXXXX Tx/Rx control, async or sync mode
  597.  * WR1 0XX00X00 select W/REQ (optional)
  598.  * WR2 XXXXXXXX program interrupt vector
  599.  * WR3 XXXXXXX0 select Rx control
  600.  * WR5 XXXX0XXX select Tx control
  601.  * WR6 XXXXXXXX sync character
  602.  * WR7 XXXXXXXX sync character
  603.  * WR9 000X0XXX select interrupt control
  604.  * WR10 XXXXXXXX miscellaneous control (optional)
  605.  * WR11 XXXXXXXX clock control
  606.  * WR12 XXXXXXXX time constant lower byte (optional)
  607.  * WR13 XXXXXXXX time constant upper byte (optional)
  608.  * WR14 XXXXXXX0 miscellaneous control
  609.  * WR14 XXXSSSSS commands (optional)
  610.  *
  611.  * 2. Enables
  612.  *
  613.  * WR14 000SSSS1 baud rate enable
  614.  * WR3 SSSSSSS1 Rx enable
  615.  * WR5 SSSS1SSS Tx enable
  616.  * WR0 10000000 reset Tx CRG (optional)
  617.  * WR1 XSS00S00 DMA enable (optional)
  618.  *
  619.  * 3. Interrupt status
  620.  *
  621.  * WR15 XXXXXXXX enable external/status
  622.  * WR0 00010000 reset external status
  623.  * WR0 00010000 reset external status twice
  624.  * WR1 SSSXXSXX enable Rx, Tx and Ext/status
  625.  * WR9 000SXSSS enable master interrupt enable
  626.  *
  627.  * 1 = set to one, 0 = reset to zero
  628.  * X = user defined, S = same as previous init
  629.  *
  630.  *
  631.  * Note that the implementation differs in some points from above scheme.
  632.  *
  633.  */
  634.  
  635. static void init_channel(struct scc_channel *scc)
  636. {
  637. del_timer(&scc->tx_t);
  638. del_timer(&scc->tx_wdog);
  639. disable_irq(scc->irq);
  640. wr(scc,R4,X1CLK|SDLC); /* *1 clock, SDLC mode */
  641. wr(scc,R1,0); /* no W/REQ operation */
  642. wr(scc,R3,Rx8|RxCRC_ENAB); /* RX 8 bits/char, CRC, disabled */
  643. wr(scc,R5,Tx8|DTR|TxCRC_ENAB); /* TX 8 bits/char, disabled, DTR */
  644. wr(scc,R6,0); /* SDLC address zero (not used) */
  645. wr(scc,R7,FLAG); /* SDLC flag value */
  646. wr(scc,R9,VIS); /* vector includes status */
  647. wr(scc,R10,(scc->modem.nrz? NRZ : NRZI)|CRCPS|ABUNDER); /* abort on underrun, preset CRC generator, NRZ(I) */
  648. wr(scc,R14, 0);
  649. /* set clock sources:
  650.    CLK_DPLL: normal halfduplex operation
  651.    
  652. RxClk: use DPLL
  653. TxClk: use DPLL
  654. TRxC mode DPLL output
  655.    CLK_EXTERNAL: external clocking (G3RUH or DF9IC modem)
  656.    
  657.            BayCom:  others:
  658.            
  659.            TxClk = pin RTxC TxClk = pin TRxC
  660.            RxClk = pin TRxC  RxClk = pin RTxC
  661.         
  662.    CLK_DIVIDER:
  663.     RxClk = use DPLL
  664.     TxClk = pin RTxC
  665.    
  666.     BayCom: others:
  667.     pin TRxC = DPLL pin TRxC = BRG
  668.     (RxClk * 1) (RxClk * 32)
  669. */  
  670.    
  671. switch(scc->modem.clocksrc)
  672. {
  673. case CLK_DPLL:
  674. wr(scc, R11, RCDPLL|TCDPLL|TRxCOI|TRxCDP);
  675. init_brg(scc);
  676. break;
  677. case CLK_DIVIDER:
  678. wr(scc, R11, ((scc->brand & BAYCOM)? TRxCDP : TRxCBR) | RCDPLL|TCRTxCP|TRxCOI);
  679. init_brg(scc);
  680. break;
  681. case CLK_EXTERNAL:
  682. wr(scc, R11, (scc->brand & BAYCOM)? RCTRxCP|TCRTxCP : RCRTxCP|TCTRxCP);
  683. OutReg(scc->ctrl, R14, DISDPLL);
  684. break;
  685. }
  686. set_speed(scc); /* set baudrate */
  687. if(scc->enhanced)
  688. {
  689. or(scc,R15,SHDLCE|FIFOE); /* enable FIFO, SDLC/HDLC Enhancements (From now R7 is R7') */
  690. wr(scc,R7,AUTOEOM);
  691. }
  692. if(scc->kiss.softdcd || (InReg(scc->ctrl,R0) & DCD))
  693. /* DCD is now ON */
  694. {
  695. start_hunt(scc);
  696. }
  697. /* enable ABORT, DCD & SYNC/HUNT interrupts */
  698. wr(scc,R15, BRKIE|TxUIE|(scc->kiss.softdcd? SYNCIE:DCDIE));
  699. Outb(scc->ctrl,RES_EXT_INT); /* reset ext/status interrupts */
  700. Outb(scc->ctrl,RES_EXT_INT); /* must be done twice */
  701. or(scc,R1,INT_ALL_Rx|TxINT_ENAB|EXT_INT_ENAB); /* enable interrupts */
  702. scc->status = InReg(scc->ctrl,R0); /* read initial status */
  703. or(scc,R9,MIE); /* master interrupt enable */
  704. scc_init_timer(scc);
  705. enable_irq(scc->irq);
  706. }
  707. /* ******************************************************************** */
  708. /* * SCC timer functions       * */
  709. /* ******************************************************************** */
  710. /* ----> scc_key_trx sets the time constant for the baudrate 
  711.          generator and keys the transmitter      <---- */
  712. static void scc_key_trx(struct scc_channel *scc, char tx)
  713. {
  714. unsigned int time_const;
  715. if (scc->brand & PRIMUS)
  716. Outb(scc->ctrl + 4, scc->option | (tx? 0x80 : 0));
  717. if (scc->modem.speed < 300) 
  718. scc->modem.speed = 1200;
  719. time_const = (unsigned) (scc->clock / (scc->modem.speed * (tx? 2:64))) - 2;
  720. disable_irq(scc->irq);
  721. if (tx)
  722. {
  723. or(scc, R1, TxINT_ENAB); /* t_maxkeyup may have reset these */
  724. or(scc, R15, TxUIE);
  725. }
  726. if (scc->modem.clocksrc == CLK_DPLL)
  727. { /* force simplex operation */
  728. if (tx)
  729. {
  730. #ifdef CONFIG_SCC_TRXECHO
  731. cl(scc, R3, RxENABLE|ENT_HM); /* switch off receiver */
  732. cl(scc, R15, DCDIE|SYNCIE); /* No DCD changes, please */
  733. #endif
  734. set_brg(scc, time_const); /* reprogram baudrate generator */
  735. /* DPLL -> Rx clk, BRG -> Tx CLK, TRxC mode output, TRxC = BRG */
  736. wr(scc, R11, RCDPLL|TCBR|TRxCOI|TRxCBR);
  737. /* By popular demand: tx_inhibit */
  738. if (scc->kiss.tx_inhibit)
  739. {
  740. or(scc,R5, TxENAB);
  741. scc->wreg[R5] |= RTS;
  742. } else {
  743. or(scc,R5,RTS|TxENAB); /* set the RTS line and enable TX */
  744. }
  745. } else {
  746. cl(scc,R5,RTS|TxENAB);
  747. set_brg(scc, time_const); /* reprogram baudrate generator */
  748. /* DPLL -> Rx clk, DPLL -> Tx CLK, TRxC mode output, TRxC = DPLL */
  749. wr(scc, R11, RCDPLL|TCDPLL|TRxCOI|TRxCDP);
  750. #ifndef CONFIG_SCC_TRXECHO
  751. if (scc->kiss.softdcd)
  752. #endif
  753. {
  754. or(scc,R15, scc->kiss.softdcd? SYNCIE:DCDIE);
  755. start_hunt(scc);
  756. }
  757. }
  758. } else {
  759. if (tx)
  760. {
  761. #ifdef CONFIG_SCC_TRXECHO
  762. if (scc->kiss.fulldup == KISS_DUPLEX_HALF)
  763. {
  764. cl(scc, R3, RxENABLE);
  765. cl(scc, R15, DCDIE|SYNCIE);
  766. }
  767. #endif
  768. if (scc->kiss.tx_inhibit)
  769. {
  770. or(scc,R5, TxENAB);
  771. scc->wreg[R5] |= RTS;
  772. } else {
  773. or(scc,R5,RTS|TxENAB); /* enable tx */
  774. }
  775. } else {
  776. cl(scc,R5,RTS|TxENAB); /* disable tx */
  777. if ((scc->kiss.fulldup == KISS_DUPLEX_HALF) &&
  778. #ifndef CONFIG_SCC_TRXECHO
  779.     scc->kiss.softdcd)
  780. #else
  781.     1)
  782. #endif
  783. {
  784. or(scc, R15, scc->kiss.softdcd? SYNCIE:DCDIE);
  785. start_hunt(scc);
  786. }
  787. }
  788. }
  789. enable_irq(scc->irq);
  790. }
  791. /* ----> SCC timer interrupt handler and friends. <---- */
  792. static void scc_start_tx_timer(struct scc_channel *scc, void (*handler)(unsigned long), unsigned long when)
  793. {
  794. unsigned long flags;
  795. save_flags(flags);
  796. cli();
  797. del_timer(&scc->tx_t);
  798. if (when == 0)
  799. {
  800. handler((unsigned long) scc);
  801. } else 
  802. if (when != TIMER_OFF)
  803. {
  804. scc->tx_t.data = (unsigned long) scc;
  805. scc->tx_t.function = handler;
  806. scc->tx_t.expires = jiffies + (when*HZ)/100;
  807. add_timer(&scc->tx_t);
  808. }
  809. restore_flags(flags);
  810. }
  811. static void scc_start_defer(struct scc_channel *scc)
  812. {
  813. unsigned long flags;
  814. save_flags(flags);
  815. cli();
  816. del_timer(&scc->tx_wdog);
  817. if (scc->kiss.maxdefer != 0 && scc->kiss.maxdefer != TIMER_OFF)
  818. {
  819. scc->tx_wdog.data = (unsigned long) scc;
  820. scc->tx_wdog.function = t_busy;
  821. scc->tx_wdog.expires = jiffies + HZ*scc->kiss.maxdefer;
  822. add_timer(&scc->tx_wdog);
  823. }
  824. restore_flags(flags);
  825. }
  826. static void scc_start_maxkeyup(struct scc_channel *scc)
  827. {
  828. unsigned long flags;
  829. save_flags(flags);
  830. cli();
  831. del_timer(&scc->tx_wdog);
  832. if (scc->kiss.maxkeyup != 0 && scc->kiss.maxkeyup != TIMER_OFF)
  833. {
  834. scc->tx_wdog.data = (unsigned long) scc;
  835. scc->tx_wdog.function = t_maxkeyup;
  836. scc->tx_wdog.expires = jiffies + HZ*scc->kiss.maxkeyup;
  837. add_timer(&scc->tx_wdog);
  838. }
  839. restore_flags(flags);
  840. }
  841. /* 
  842.  * This is called from scc_txint() when there are no more frames to send.
  843.  * Not exactly a timer function, but it is a close friend of the family...
  844.  */
  845. static void scc_tx_done(struct scc_channel *scc)
  846. {
  847. /* 
  848.  * trx remains keyed in fulldup mode 2 until t_idle expires.
  849.  */
  850.  
  851. switch (scc->kiss.fulldup)
  852. {
  853. case KISS_DUPLEX_LINK:
  854. scc->stat.tx_state = TXS_IDLE2;
  855. if (scc->kiss.idletime != TIMER_OFF)
  856. scc_start_tx_timer(scc, t_idle, scc->kiss.idletime*100);
  857. break;
  858. case KISS_DUPLEX_OPTIMA:
  859. scc_notify(scc, HWEV_ALL_SENT);
  860. break;
  861. default:
  862. scc->stat.tx_state = TXS_BUSY;
  863. scc_start_tx_timer(scc, t_tail, scc->kiss.tailtime);
  864. }
  865. netif_wake_queue(scc->dev);
  866. }
  867. static unsigned char Rand = 17;
  868. static inline int is_grouped(struct scc_channel *scc)
  869. {
  870. int k;
  871. struct scc_channel *scc2;
  872. unsigned char grp1, grp2;
  873. grp1 = scc->kiss.group;
  874. for (k = 0; k < (Nchips * 2); k++)
  875. {
  876. scc2 = &SCC_Info[k];
  877. grp2 = scc2->kiss.group;
  878. if (scc2 == scc || !(scc2->dev && grp2))
  879. continue;
  880. if ((grp1 & 0x3f) == (grp2 & 0x3f))
  881. {
  882. if ( (grp1 & TXGROUP) && (scc2->wreg[R5] & RTS) )
  883. return 1;
  884. if ( (grp1 & RXGROUP) && scc2->dcd )
  885. return 1;
  886. }
  887. }
  888. return 0;
  889. }
  890. /* DWAIT and SLOTTIME expired
  891.  *
  892.  * fulldup == 0:  DCD is active or Rand > P-persistence: start t_busy timer
  893.  *                else key trx and start txdelay
  894.  * fulldup == 1:  key trx and start txdelay
  895.  * fulldup == 2:  mintime expired, reset status or key trx and start txdelay
  896.  */
  897. static void t_dwait(unsigned long channel)
  898. {
  899. struct scc_channel *scc = (struct scc_channel *) channel;
  900. if (scc->stat.tx_state == TXS_WAIT) /* maxkeyup or idle timeout */
  901. {
  902. if (skb_queue_len(&scc->tx_queue) == 0) /* nothing to send */
  903. {
  904. scc->stat.tx_state = TXS_IDLE;
  905. netif_wake_queue(scc->dev); /* t_maxkeyup locked it. */
  906. return;
  907. }
  908. scc->stat.tx_state = TXS_BUSY;
  909. }
  910. if (scc->kiss.fulldup == KISS_DUPLEX_HALF)
  911. {
  912. Rand = Rand * 17 + 31;
  913. if (scc->dcd || (scc->kiss.persist) < Rand || (scc->kiss.group && is_grouped(scc)) )
  914. {
  915. scc_start_defer(scc);
  916. scc_start_tx_timer(scc, t_dwait, scc->kiss.slottime);
  917. return ;
  918. }
  919. }
  920. if ( !(scc->wreg[R5] & RTS) )
  921. {
  922. scc_key_trx(scc, TX_ON);
  923. scc_start_tx_timer(scc, t_txdelay, scc->kiss.txdelay);
  924. } else {
  925. scc_start_tx_timer(scc, t_txdelay, 0);
  926. }
  927. }
  928. /* TXDELAY expired
  929.  *
  930.  * kick transmission by a fake scc_txint(scc), start 'maxkeyup' watchdog.
  931.  */
  932. static void t_txdelay(unsigned long channel)
  933. {
  934. struct scc_channel *scc = (struct scc_channel *) channel;
  935. scc_start_maxkeyup(scc);
  936. if (scc->tx_buff == NULL)
  937. {
  938. disable_irq(scc->irq);
  939. scc_txint(scc);
  940. enable_irq(scc->irq);
  941. }
  942. }
  943. /* TAILTIME expired
  944.  *
  945.  * switch off transmitter. If we were stopped by Maxkeyup restart
  946.  * transmission after 'mintime' seconds
  947.  */
  948. static void t_tail(unsigned long channel)
  949. {
  950. struct scc_channel *scc = (struct scc_channel *) channel;
  951. unsigned long flags;
  952.   save_flags(flags);
  953.   cli();
  954.  
  955.   del_timer(&scc->tx_wdog);
  956.   scc_key_trx(scc, TX_OFF);
  957.   restore_flags(flags);
  958.   if (scc->stat.tx_state == TXS_TIMEOUT) /* we had a timeout? */
  959.   {
  960.   scc->stat.tx_state = TXS_WAIT;
  961.   if (scc->kiss.mintime != TIMER_OFF) /* try it again */
  962.   scc_start_tx_timer(scc, t_dwait, scc->kiss.mintime*100);
  963.   else
  964.   scc_start_tx_timer(scc, t_dwait, 0);
  965.   return;
  966.   }
  967.  
  968.   scc->stat.tx_state = TXS_IDLE;
  969. netif_wake_queue(scc->dev);
  970. }
  971. /* BUSY timeout
  972.  *
  973.  * throw away send buffers if DCD remains active too long.
  974.  */
  975. static void t_busy(unsigned long channel)
  976. {
  977. struct scc_channel *scc = (struct scc_channel *) channel;
  978. del_timer(&scc->tx_t);
  979. netif_stop_queue(scc->dev); /* don't pile on the wabbit! */
  980. scc_discard_buffers(scc);
  981. scc->stat.txerrs++;
  982. scc->stat.tx_state = TXS_IDLE;
  983. netif_wake_queue(scc->dev);
  984. }
  985. /* MAXKEYUP timeout
  986.  *
  987.  * this is our watchdog.
  988.  */
  989. static void t_maxkeyup(unsigned long channel)
  990. {
  991. struct scc_channel *scc = (struct scc_channel *) channel;
  992. unsigned long flags;
  993. save_flags(flags);
  994. cli();
  995. /* 
  996.  * let things settle down before we start to
  997.  * accept new data.
  998.  */
  999. netif_stop_queue(scc->dev);
  1000. scc_discard_buffers(scc);
  1001. del_timer(&scc->tx_t);
  1002. cl(scc, R1, TxINT_ENAB); /* force an ABORT, but don't */
  1003. cl(scc, R15, TxUIE); /* count it. */
  1004. OutReg(scc->ctrl, R0, RES_Tx_P);
  1005. restore_flags(flags);
  1006. scc->stat.txerrs++;
  1007. scc->stat.tx_state = TXS_TIMEOUT;
  1008. scc_start_tx_timer(scc, t_tail, scc->kiss.tailtime);
  1009. }
  1010. /* IDLE timeout
  1011.  *
  1012.  * in fulldup mode 2 it keys down the transmitter after 'idle' seconds
  1013.  * of inactivity. We will not restart transmission before 'mintime'
  1014.  * expires.
  1015.  */
  1016. static void t_idle(unsigned long channel)
  1017. {
  1018. struct scc_channel *scc = (struct scc_channel *) channel;
  1019. del_timer(&scc->tx_wdog);
  1020. scc_key_trx(scc, TX_OFF);
  1021. if (scc->kiss.mintime != TIMER_OFF)
  1022. scc_start_tx_timer(scc, t_dwait, scc->kiss.mintime*100);
  1023. scc->stat.tx_state = TXS_WAIT;
  1024. }
  1025. static void scc_init_timer(struct scc_channel *scc)
  1026. {
  1027. unsigned long flags;
  1028. save_flags(flags); 
  1029. cli();
  1030. scc->stat.tx_state = TXS_IDLE;
  1031. restore_flags(flags);
  1032. }
  1033. /* ******************************************************************** */
  1034. /* * Set/get L1 parameters       * */
  1035. /* ******************************************************************** */
  1036. /*
  1037.  * this will set the "hardware" parameters through KISS commands or ioctl()
  1038.  */
  1039. #define CAST(x) (unsigned long)(x)
  1040. static unsigned int scc_set_param(struct scc_channel *scc, unsigned int cmd, unsigned int arg)
  1041. {
  1042. switch (cmd)
  1043. {
  1044. case PARAM_TXDELAY: scc->kiss.txdelay=arg; break;
  1045. case PARAM_PERSIST: scc->kiss.persist=arg; break;
  1046. case PARAM_SLOTTIME: scc->kiss.slottime=arg; break;
  1047. case PARAM_TXTAIL: scc->kiss.tailtime=arg; break;
  1048. case PARAM_FULLDUP: scc->kiss.fulldup=arg; break;
  1049. case PARAM_DTR: break; /* does someone need this? */
  1050. case PARAM_GROUP: scc->kiss.group=arg; break;
  1051. case PARAM_IDLE: scc->kiss.idletime=arg; break;
  1052. case PARAM_MIN: scc->kiss.mintime=arg; break;
  1053. case PARAM_MAXKEY: scc->kiss.maxkeyup=arg; break;
  1054. case PARAM_WAIT: scc->kiss.waittime=arg; break;
  1055. case PARAM_MAXDEFER: scc->kiss.maxdefer=arg; break;
  1056. case PARAM_TX: scc->kiss.tx_inhibit=arg; break;
  1057. case PARAM_SOFTDCD:
  1058. scc->kiss.softdcd=arg;
  1059. if (arg)
  1060. {
  1061. or(scc, R15, SYNCIE);
  1062. cl(scc, R15, DCDIE);
  1063. start_hunt(scc);
  1064. } else {
  1065. or(scc, R15, DCDIE);
  1066. cl(scc, R15, SYNCIE);
  1067. }
  1068. break;
  1069. case PARAM_SPEED:
  1070. if (arg < 256)
  1071. scc->modem.speed=arg*100;
  1072. else
  1073. scc->modem.speed=arg;
  1074. if (scc->stat.tx_state == 0) /* only switch baudrate on rx... ;-) */
  1075. set_speed(scc);
  1076. break;
  1077. case PARAM_RTS:
  1078. if ( !(scc->wreg[R5] & RTS) )
  1079. {
  1080. if (arg != TX_OFF)
  1081. scc_key_trx(scc, TX_ON);
  1082. scc_start_tx_timer(scc, t_txdelay, scc->kiss.txdelay);
  1083. } else {
  1084. if (arg == TX_OFF)
  1085. {
  1086. scc->stat.tx_state = TXS_BUSY;
  1087. scc_start_tx_timer(scc, t_tail, scc->kiss.tailtime);
  1088. }
  1089. }
  1090. break;
  1091. case PARAM_HWEVENT:
  1092. scc_notify(scc, scc->dcd? HWEV_DCD_ON:HWEV_DCD_OFF);
  1093. break;
  1094. default: return -EINVAL;
  1095. }
  1096. return 0;
  1097. }
  1098.  
  1099. static unsigned long scc_get_param(struct scc_channel *scc, unsigned int cmd)
  1100. {
  1101. switch (cmd)
  1102. {
  1103. case PARAM_TXDELAY: return CAST(scc->kiss.txdelay);
  1104. case PARAM_PERSIST: return CAST(scc->kiss.persist);
  1105. case PARAM_SLOTTIME: return CAST(scc->kiss.slottime);
  1106. case PARAM_TXTAIL: return CAST(scc->kiss.tailtime);
  1107. case PARAM_FULLDUP: return CAST(scc->kiss.fulldup);
  1108. case PARAM_SOFTDCD: return CAST(scc->kiss.softdcd);
  1109. case PARAM_DTR: return CAST((scc->wreg[R5] & DTR)? 1:0);
  1110. case PARAM_RTS: return CAST((scc->wreg[R5] & RTS)? 1:0);
  1111. case PARAM_SPEED: return CAST(scc->modem.speed);
  1112. case PARAM_GROUP: return CAST(scc->kiss.group);
  1113. case PARAM_IDLE: return CAST(scc->kiss.idletime);
  1114. case PARAM_MIN: return CAST(scc->kiss.mintime);
  1115. case PARAM_MAXKEY: return CAST(scc->kiss.maxkeyup);
  1116. case PARAM_WAIT: return CAST(scc->kiss.waittime);
  1117. case PARAM_MAXDEFER: return CAST(scc->kiss.maxdefer);
  1118. case PARAM_TX: return CAST(scc->kiss.tx_inhibit);
  1119. default: return NO_SUCH_PARAM;
  1120. }
  1121. }
  1122. #undef CAST
  1123. /* ******************************************************************* */
  1124. /* * Send calibration pattern      * */
  1125. /* ******************************************************************* */
  1126. static void scc_stop_calibrate(unsigned long channel)
  1127. {
  1128. struct scc_channel *scc = (struct scc_channel *) channel;
  1129. unsigned long flags;
  1130. save_flags(flags);
  1131. cli();
  1132. del_timer(&scc->tx_wdog);
  1133. scc_key_trx(scc, TX_OFF);
  1134. wr(scc, R6, 0);
  1135. wr(scc, R7, FLAG);
  1136. Outb(scc->ctrl,RES_EXT_INT); /* reset ext/status interrupts */
  1137. Outb(scc->ctrl,RES_EXT_INT);
  1138. netif_wake_queue(scc->dev);
  1139. restore_flags(flags);
  1140. }
  1141. static void
  1142. scc_start_calibrate(struct scc_channel *scc, int duration, unsigned char pattern)
  1143. {
  1144. unsigned long flags;
  1145. save_flags(flags);
  1146. cli();
  1147. netif_stop_queue(scc->dev);
  1148. scc_discard_buffers(scc);
  1149. del_timer(&scc->tx_wdog);
  1150. scc->tx_wdog.data = (unsigned long) scc;
  1151. scc->tx_wdog.function = scc_stop_calibrate;
  1152. scc->tx_wdog.expires = jiffies + HZ*duration;
  1153. add_timer(&scc->tx_wdog);
  1154. /* This doesn't seem to work. Why not? */
  1155. wr(scc, R6, 0);
  1156. wr(scc, R7, pattern);
  1157. /* 
  1158.  * Don't know if this works. 
  1159.  * Damn, where is my Z8530 programming manual...? 
  1160.  */
  1161. Outb(scc->ctrl,RES_EXT_INT); /* reset ext/status interrupts */
  1162. Outb(scc->ctrl,RES_EXT_INT);
  1163. scc_key_trx(scc, TX_ON);
  1164. restore_flags(flags);
  1165. }
  1166. /* ******************************************************************* */
  1167. /* * Init channel structures, special HW, etc...      * */
  1168. /* ******************************************************************* */
  1169. /*
  1170.  * Reset the Z8530s and setup special hardware
  1171.  */
  1172. static void z8530_init(void)
  1173. {
  1174. struct scc_channel *scc;
  1175. int chip, k;
  1176. unsigned long flags;
  1177. char *flag;
  1178. printk(KERN_INFO "Init Z8530 driver: %u channels, IRQ", Nchips*2);
  1179. flag=" ";
  1180. for (k = 0; k < NR_IRQS; k++)
  1181. if (Ivec[k].used) 
  1182. {
  1183. printk("%s%d", flag, k);
  1184. flag=",";
  1185. }
  1186. printk("n");
  1187. /* reset and pre-init all chips in the system */
  1188. for (chip = 0; chip < Nchips; chip++)
  1189. {
  1190. scc=&SCC_Info[2*chip];
  1191. if (!scc->ctrl) continue;
  1192. /* Special SCC cards */
  1193. if(scc->brand & EAGLE) /* this is an EAGLE card */
  1194. Outb(scc->special,0x08); /* enable interrupt on the board */
  1195. if(scc->brand & (PC100 | PRIMUS)) /* this is a PC100/PRIMUS card */
  1196. Outb(scc->special,scc->option); /* set the MODEM mode (0x22) */
  1197. /* Reset and pre-init Z8530 */
  1198. save_flags(flags);
  1199. cli();
  1200. Outb(scc->ctrl, 0);
  1201. OutReg(scc->ctrl,R9,FHWRES); /* force hardware reset */
  1202. udelay(100); /* give it 'a bit' more time than required */
  1203. wr(scc, R2, chip*16); /* interrupt vector */
  1204. wr(scc, R9, VIS); /* vector includes status */
  1205.          restore_flags(flags);
  1206.         }
  1207.  
  1208. Driver_Initialized = 1;
  1209. }
  1210. /*
  1211.  * Allocate device structure, err, instance, and register driver
  1212.  */
  1213. static int scc_net_setup(struct scc_channel *scc, unsigned char *name, int addev)
  1214. {
  1215. struct net_device *dev;
  1216. if (dev_get(name))
  1217. {
  1218. printk(KERN_INFO "Z8530drv: device %s already exists.n", name);
  1219. return -EEXIST;
  1220. }
  1221. if ((scc->dev = (struct net_device *) kmalloc(sizeof(struct net_device), GFP_KERNEL)) == NULL)
  1222. return -ENOMEM;
  1223. dev = scc->dev;
  1224. memset(dev, 0, sizeof(struct net_device));
  1225. strcpy(dev->name, name);
  1226. dev->priv = (void *) scc;
  1227. dev->init = scc_net_init;
  1228. if ((addev? register_netdevice(dev) : register_netdev(dev)) != 0) {
  1229. kfree(dev);
  1230.                 return -EIO;
  1231.         }
  1232. SET_MODULE_OWNER(dev);
  1233. return 0;
  1234. }
  1235. /* ******************************************************************** */
  1236. /* *     Network driver methods       * */
  1237. /* ******************************************************************** */
  1238. static unsigned char ax25_bcast[AX25_ADDR_LEN] =
  1239. {'Q' << 1, 'S' << 1, 'T' << 1, ' ' << 1, ' ' << 1, ' ' << 1, '0' << 1};
  1240. static unsigned char ax25_nocall[AX25_ADDR_LEN] =
  1241. {'L' << 1, 'I' << 1, 'N' << 1, 'U' << 1, 'X' << 1, ' ' << 1, '1' << 1};
  1242. /* ----> Initialize device <----- */
  1243. static int scc_net_init(struct net_device *dev)
  1244. {
  1245. dev->tx_queue_len    = 16; /* should be enough... */
  1246. dev->open            = scc_net_open;
  1247. dev->stop      = scc_net_close;
  1248. dev->hard_start_xmit = scc_net_tx;
  1249. dev->hard_header     = ax25_encapsulate;
  1250. dev->rebuild_header  = ax25_rebuild_header;
  1251. dev->set_mac_address = scc_net_set_mac_address;
  1252. dev->get_stats       = scc_net_get_stats;
  1253. dev->do_ioctl        = scc_net_ioctl;
  1254. dev->tx_timeout      = NULL;
  1255. memcpy(dev->broadcast, ax25_bcast,  AX25_ADDR_LEN);
  1256. memcpy(dev->dev_addr,  ax25_nocall, AX25_ADDR_LEN);
  1257.  
  1258. dev->flags      = 0;
  1259. dev->type = ARPHRD_AX25;
  1260. dev->hard_header_len = AX25_MAX_HEADER_LEN + AX25_BPQ_HEADER_LEN;
  1261. dev->mtu = AX25_DEF_PACLEN;
  1262. dev->addr_len = AX25_ADDR_LEN;
  1263. return 0;
  1264. }
  1265. /* ----> open network device <---- */
  1266. static int scc_net_open(struct net_device *dev)
  1267. {
  1268. struct scc_channel *scc = (struct scc_channel *) dev->priv;
  1269.   if (!scc->init)
  1270. return -EINVAL;
  1271. scc->tx_buff = NULL;
  1272. skb_queue_head_init(&scc->tx_queue);
  1273.  
  1274. init_channel(scc);
  1275. netif_start_queue(dev);
  1276. return 0;
  1277. }
  1278. /* ----> close network device <---- */
  1279. static int scc_net_close(struct net_device *dev)
  1280. {
  1281. struct scc_channel *scc = (struct scc_channel *) dev->priv;
  1282. unsigned long flags;
  1283. netif_stop_queue(dev);
  1284. save_flags(flags); 
  1285. cli();
  1286. Outb(scc->ctrl,0); /* Make sure pointer is written */
  1287. wr(scc,R1,0); /* disable interrupts */
  1288. wr(scc,R3,0);
  1289. del_timer(&scc->tx_t);
  1290. del_timer(&scc->tx_wdog);
  1291. restore_flags(flags);
  1292. scc_discard_buffers(scc);
  1293. return 0;
  1294. }
  1295. /* ----> receive frame, called from scc_rxint() <---- */
  1296. static void scc_net_rx(struct scc_channel *scc, struct sk_buff *skb)
  1297. {
  1298. if (skb->len == 0) {
  1299. dev_kfree_skb_irq(skb);
  1300. return;
  1301. }
  1302. scc->dev_stat.rx_packets++;
  1303. skb->dev      = scc->dev;
  1304. skb->protocol = htons(ETH_P_AX25);
  1305. skb->mac.raw  = skb->data;
  1306. skb->pkt_type = PACKET_HOST;
  1307. netif_rx(skb);
  1308. return;
  1309. }
  1310. /* ----> transmit frame <---- */
  1311. static int scc_net_tx(struct sk_buff *skb, struct net_device *dev)
  1312. {
  1313. struct scc_channel *scc = (struct scc_channel *) dev->priv;
  1314. unsigned long flags;
  1315. char kisscmd;
  1316. if (skb->len > scc->stat.bufsize || skb->len < 2) {
  1317. scc->dev_stat.tx_dropped++; /* bogus frame */
  1318. dev_kfree_skb(skb);
  1319. return 0;
  1320. }
  1321. scc->dev_stat.tx_packets++;
  1322. scc->stat.txframes++;
  1323. kisscmd = *skb->data & 0x1f;
  1324. skb_pull(skb, 1);
  1325. if (kisscmd) {
  1326. scc_set_param(scc, kisscmd, *skb->data);
  1327. dev_kfree_skb(skb);
  1328. return 0;
  1329. }
  1330. save_flags(flags);
  1331. cli();
  1332. if (skb_queue_len(&scc->tx_queue) > scc->dev->tx_queue_len) {
  1333. struct sk_buff *skb_del;
  1334. skb_del = skb_dequeue(&scc->tx_queue);
  1335. dev_kfree_skb(skb_del);
  1336. }
  1337. skb_queue_tail(&scc->tx_queue, skb);
  1338. dev->trans_start = jiffies;
  1339. /*
  1340.  * Start transmission if the trx state is idle or
  1341.  * t_idle hasn't expired yet. Use dwait/persistance/slottime
  1342.  * algorithm for normal halfduplex operation.
  1343.  */
  1344. if(scc->stat.tx_state == TXS_IDLE || scc->stat.tx_state == TXS_IDLE2) {
  1345. scc->stat.tx_state = TXS_BUSY;
  1346. if (scc->kiss.fulldup == KISS_DUPLEX_HALF)
  1347. scc_start_tx_timer(scc, t_dwait, scc->kiss.waittime);
  1348. else
  1349. scc_start_tx_timer(scc, t_dwait, 0);
  1350. }
  1351. restore_flags(flags);
  1352. return 0;
  1353. }
  1354. /* ----> ioctl functions <---- */
  1355. /*
  1356.  * SIOCSCCCFG - configure driver arg: (struct scc_hw_config *) arg
  1357.  * SIOCSCCINI - initialize driver arg: ---
  1358.  * SIOCSCCCHANINI - initialize channel arg: (struct scc_modem *) arg
  1359.  * SIOCSCCSMEM - set memory arg: (struct scc_mem_config *) arg
  1360.  * SIOCSCCGKISS - get level 1 parameter arg: (struct scc_kiss_cmd *) arg
  1361.  * SIOCSCCSKISS - set level 1 parameter arg: (struct scc_kiss_cmd *) arg
  1362.  * SIOCSCCGSTAT - get driver status arg: (struct scc_stat *) arg
  1363.  * SIOCSCCCAL - send calib. pattern arg: (struct scc_calibrate *) arg
  1364.  */
  1365. static int scc_net_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
  1366. {
  1367. struct scc_kiss_cmd kiss_cmd;
  1368. struct scc_mem_config memcfg;
  1369. struct scc_hw_config hwcfg;
  1370. struct scc_calibrate cal;
  1371. int chan;
  1372. unsigned char device_name[10];
  1373. void *arg;
  1374. struct scc_channel *scc;
  1375. scc = (struct scc_channel *) dev->priv;
  1376. arg = (void *) ifr->ifr_data;
  1377. if (!Driver_Initialized)
  1378. {
  1379. if (cmd == SIOCSCCCFG)
  1380. {
  1381. int found = 1;
  1382. if (!capable(CAP_SYS_RAWIO)) return -EPERM;
  1383. if (!arg) return -EFAULT;
  1384. if (Nchips >= SCC_MAXCHIPS) 
  1385. return -EINVAL;
  1386. if (copy_from_user(&hwcfg, arg, sizeof(hwcfg)))
  1387. return -EFAULT;
  1388. if (hwcfg.irq == 2) hwcfg.irq = 9;
  1389. if (hwcfg.irq <0 || hwcfg.irq > NR_IRQS)
  1390. return -EINVAL;
  1391. if (!Ivec[hwcfg.irq].used && hwcfg.irq)
  1392. {
  1393. if (request_irq(hwcfg.irq, scc_isr, SA_INTERRUPT, "AX.25 SCC", NULL))
  1394. printk(KERN_WARNING "z8530drv: warning, cannot get IRQ %dn", hwcfg.irq);
  1395. else
  1396. Ivec[hwcfg.irq].used = 1;
  1397. }
  1398. if (hwcfg.vector_latch && !Vector_Latch) {
  1399. if (!request_region(hwcfg.vector_latch, 1, "scc vector latch"))
  1400. printk(KERN_WARNING "z8530drv: warning, cannot reserve vector latch port 0x%lxn, disabled.", hwcfg.vector_latch);
  1401. else
  1402. Vector_Latch = hwcfg.vector_latch;
  1403. }
  1404. if (hwcfg.clock == 0)
  1405. hwcfg.clock = SCC_DEFAULT_CLOCK;
  1406. #ifndef SCC_DONT_CHECK
  1407. disable_irq(hwcfg.irq);
  1408. check_region(scc->ctrl, 1);
  1409. Outb(hwcfg.ctrl_a, 0);
  1410. OutReg(hwcfg.ctrl_a, R9, FHWRES);
  1411. udelay(100);
  1412. OutReg(hwcfg.ctrl_a,R13,0x55); /* is this chip really there? */
  1413. udelay(5);
  1414. if (InReg(hwcfg.ctrl_a,R13) != 0x55)
  1415. found = 0;
  1416. enable_irq(hwcfg.irq);
  1417. #endif
  1418. if (found)
  1419. {
  1420. SCC_Info[2*Nchips  ].ctrl = hwcfg.ctrl_a;
  1421. SCC_Info[2*Nchips  ].data = hwcfg.data_a;
  1422. SCC_Info[2*Nchips  ].irq  = hwcfg.irq;
  1423. SCC_Info[2*Nchips+1].ctrl = hwcfg.ctrl_b;
  1424. SCC_Info[2*Nchips+1].data = hwcfg.data_b;
  1425. SCC_Info[2*Nchips+1].irq  = hwcfg.irq;
  1426. SCC_ctrl[Nchips].chan_A = hwcfg.ctrl_a;
  1427. SCC_ctrl[Nchips].chan_B = hwcfg.ctrl_b;
  1428. SCC_ctrl[Nchips].irq    = hwcfg.irq;
  1429. }
  1430. for (chan = 0; chan < 2; chan++)
  1431. {
  1432. sprintf(device_name, "%s%i", SCC_DriverName, 2*Nchips+chan);
  1433. SCC_Info[2*Nchips+chan].special = hwcfg.special;
  1434. SCC_Info[2*Nchips+chan].clock = hwcfg.clock;
  1435. SCC_Info[2*Nchips+chan].brand = hwcfg.brand;
  1436. SCC_Info[2*Nchips+chan].option = hwcfg.option;
  1437. SCC_Info[2*Nchips+chan].enhanced = hwcfg.escc;
  1438. #ifdef SCC_DONT_CHECK
  1439. printk(KERN_INFO "%s: data port = 0x%3.3x  control port = 0x%3.3xn",
  1440. device_name, 
  1441. SCC_Info[2*Nchips+chan].data, 
  1442. SCC_Info[2*Nchips+chan].ctrl);
  1443. #else
  1444. printk(KERN_INFO "%s: data port = 0x%3.3lx  control port = 0x%3.3lx -- %sn",
  1445. device_name,
  1446. chan? hwcfg.data_b : hwcfg.data_a, 
  1447. chan? hwcfg.ctrl_b : hwcfg.ctrl_a,
  1448. found? "found" : "missing");
  1449. #endif
  1450. if (found)
  1451. {
  1452. request_region(SCC_Info[2*Nchips+chan].ctrl, 1, "scc ctrl");
  1453. request_region(SCC_Info[2*Nchips+chan].data, 1, "scc data");
  1454. if (Nchips+chan != 0)
  1455. scc_net_setup(&SCC_Info[2*Nchips+chan], device_name, 1);
  1456. }
  1457. }
  1458. if (found) Nchips++;
  1459. return 0;
  1460. }
  1461. if (cmd == SIOCSCCINI)
  1462. {
  1463. if (!capable(CAP_SYS_RAWIO))
  1464. return -EPERM;
  1465. if (Nchips == 0)
  1466. return -EINVAL;
  1467. z8530_init();
  1468. return 0;
  1469. }
  1470. return -EINVAL; /* confuse the user */
  1471. }
  1472. if (!scc->init)
  1473. {
  1474. if (cmd == SIOCSCCCHANINI)
  1475. {
  1476. if (!capable(CAP_NET_ADMIN)) return -EPERM;
  1477. if (!arg) return -EINVAL;
  1478. scc->stat.bufsize   = SCC_BUFSIZE;
  1479. if (copy_from_user(&scc->modem, arg, sizeof(struct scc_modem)))
  1480. return -EINVAL;
  1481. /* default KISS Params */
  1482. if (scc->modem.speed < 4800)
  1483. {
  1484. scc->kiss.txdelay = 36; /* 360 ms */
  1485. scc->kiss.persist = 42; /* 25% persistence */ /* was 25 */
  1486. scc->kiss.slottime = 16; /* 160 ms */
  1487. scc->kiss.tailtime = 4; /* minimal reasonable value */
  1488. scc->kiss.fulldup = 0; /* CSMA */
  1489. scc->kiss.waittime = 50; /* 500 ms */
  1490. scc->kiss.maxkeyup = 10; /* 10 s */
  1491. scc->kiss.mintime = 3; /* 3 s */
  1492. scc->kiss.idletime = 30; /* 30 s */
  1493. scc->kiss.maxdefer = 120; /* 2 min */
  1494. scc->kiss.softdcd = 0; /* hardware dcd */
  1495. } else {
  1496. scc->kiss.txdelay = 10; /* 100 ms */
  1497. scc->kiss.persist = 64; /* 25% persistence */ /* was 25 */
  1498. scc->kiss.slottime = 8; /* 160 ms */
  1499. scc->kiss.tailtime = 1; /* minimal reasonable value */
  1500. scc->kiss.fulldup = 0; /* CSMA */
  1501. scc->kiss.waittime = 50; /* 500 ms */
  1502. scc->kiss.maxkeyup = 7; /* 7 s */
  1503. scc->kiss.mintime = 3; /* 3 s */
  1504. scc->kiss.idletime = 30; /* 30 s */
  1505. scc->kiss.maxdefer = 120; /* 2 min */
  1506. scc->kiss.softdcd = 0; /* hardware dcd */
  1507. }
  1508. scc->tx_buff = NULL;
  1509. skb_queue_head_init(&scc->tx_queue);
  1510. scc->init = 1;
  1511. return 0;
  1512. }
  1513. return -EINVAL;
  1514. }
  1515. switch(cmd)
  1516. {
  1517. case SIOCSCCRESERVED:
  1518. return -ENOIOCTLCMD;
  1519. case SIOCSCCSMEM:
  1520. if (!capable(CAP_SYS_RAWIO)) return -EPERM;
  1521. if (!arg || copy_from_user(&memcfg, arg, sizeof(memcfg)))
  1522. return -EINVAL;
  1523. scc->stat.bufsize   = memcfg.bufsize;
  1524. return 0;
  1525. case SIOCSCCGSTAT:
  1526. if (!arg || copy_to_user(arg, &scc->stat, sizeof(scc->stat)))
  1527. return -EINVAL;
  1528. return 0;
  1529. case SIOCSCCGKISS:
  1530. if (!arg || copy_from_user(&kiss_cmd, arg, sizeof(kiss_cmd)))
  1531. return -EINVAL;
  1532. kiss_cmd.param = scc_get_param(scc, kiss_cmd.command);
  1533. if (copy_to_user(arg, &kiss_cmd, sizeof(kiss_cmd)))
  1534. return -EINVAL;
  1535. return 0;
  1536. case SIOCSCCSKISS:
  1537. if (!capable(CAP_NET_ADMIN)) return -EPERM;
  1538. if (!arg || copy_from_user(&kiss_cmd, arg, sizeof(kiss_cmd)))
  1539. return -EINVAL;
  1540. return scc_set_param(scc, kiss_cmd.command, kiss_cmd.param);
  1541. case SIOCSCCCAL:
  1542. if (!capable(CAP_SYS_RAWIO)) return -EPERM;
  1543. if (!arg || copy_from_user(&cal, arg, sizeof(cal)) || cal.time == 0)
  1544. return -EINVAL;
  1545. scc_start_calibrate(scc, cal.time, cal.pattern);
  1546. return 0;
  1547. default:
  1548. return -ENOIOCTLCMD;
  1549. }
  1550. return -EINVAL;
  1551. }
  1552. /* ----> set interface callsign <---- */
  1553. static int scc_net_set_mac_address(struct net_device *dev, void *addr)
  1554. {
  1555. struct sockaddr *sa = (struct sockaddr *) addr;
  1556. memcpy(dev->dev_addr, sa->sa_data, dev->addr_len);
  1557. return 0;
  1558. }
  1559. /* ----> get statistics <---- */
  1560. static struct net_device_stats *scc_net_get_stats(struct net_device *dev)
  1561. {
  1562. struct scc_channel *scc = (struct scc_channel *) dev->priv;
  1563. scc->dev_stat.rx_errors = scc->stat.rxerrs + scc->stat.rx_over;
  1564. scc->dev_stat.tx_errors = scc->stat.txerrs + scc->stat.tx_under;
  1565. scc->dev_stat.rx_fifo_errors = scc->stat.rx_over;
  1566. scc->dev_stat.tx_fifo_errors = scc->stat.tx_under;
  1567. return &scc->dev_stat;
  1568. }
  1569. /* ******************************************************************** */
  1570. /* * dump statistics to /proc/net/z8530drv       * */
  1571. /* ******************************************************************** */
  1572. static int scc_net_get_info(char *buffer, char **start, off_t offset, int length)
  1573. {
  1574. struct scc_channel *scc;
  1575. struct scc_kiss *kiss;
  1576. struct scc_stat *stat;
  1577. int len = 0;
  1578. off_t pos = 0;
  1579. off_t begin = 0;
  1580. int k;
  1581. len += sprintf(buffer, "z8530drv-"VERSION"n");
  1582. if (!Driver_Initialized)
  1583. {
  1584. len += sprintf(buffer+len, "not initializedn");
  1585. goto done;
  1586. }
  1587. if (!Nchips)
  1588. {
  1589. len += sprintf(buffer+len, "chips missingn");
  1590. goto done;
  1591. }
  1592. for (k = 0; k < Nchips*2; k++)
  1593. {
  1594. scc = &SCC_Info[k];
  1595. stat = &scc->stat;
  1596. kiss = &scc->kiss;
  1597. if (!scc->init)
  1598. continue;
  1599. /* dev data ctrl irq clock brand enh vector special option 
  1600.  * baud nrz clocksrc softdcd bufsize
  1601.  * rxints txints exints spints
  1602.  * rcvd rxerrs over / xmit txerrs under / nospace bufsize
  1603.  * txd pers slot tail ful wait min maxk idl defr txof grp
  1604.  * W ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ##
  1605.  * R ## ## XX ## ## ## ## ## XX ## ## ## ## ## ## ##
  1606.  */
  1607. len += sprintf(buffer+len, "%st%3.3lx %3.3lx %d %lu %2.2x %d %3.3lx %3.3lx %dn",
  1608. scc->dev->name,
  1609. scc->data, scc->ctrl, scc->irq, scc->clock, scc->brand,
  1610. scc->enhanced, Vector_Latch, scc->special,
  1611. scc->option);
  1612. len += sprintf(buffer+len, "t%lu %d %d %d %dn",
  1613. scc->modem.speed, scc->modem.nrz,
  1614. scc->modem.clocksrc, kiss->softdcd,
  1615. stat->bufsize);
  1616. len += sprintf(buffer+len, "t%lu %lu %lu %lun",
  1617. stat->rxints, stat->txints, stat->exints, stat->spints);
  1618. len += sprintf(buffer+len, "t%lu %lu %d / %lu %lu %d / %d %dn",
  1619. stat->rxframes, stat->rxerrs, stat->rx_over,
  1620. stat->txframes, stat->txerrs, stat->tx_under,
  1621. stat->nospace,  stat->tx_state);
  1622. #define K(x) kiss->x
  1623. len += sprintf(buffer+len, "t%d %d %d %d %d %d %d %d %d %d %d %dn",
  1624. K(txdelay), K(persist), K(slottime), K(tailtime),
  1625. K(fulldup), K(waittime), K(mintime), K(maxkeyup),
  1626. K(idletime), K(maxdefer), K(tx_inhibit), K(group));
  1627. #undef K
  1628. #ifdef SCC_DEBUG
  1629. {
  1630. int reg;
  1631. len += sprintf(buffer+len, "tW ");
  1632. for (reg = 0; reg < 16; reg++)
  1633. len += sprintf(buffer+len, "%2.2x ", scc->wreg[reg]);
  1634. len += sprintf(buffer+len, "n");
  1635. len += sprintf(buffer+len, "tR %2.2x %2.2x XX ", InReg(scc->ctrl,R0), InReg(scc->ctrl,R1));
  1636. for (reg = 3; reg < 8; reg++)
  1637. len += sprintf(buffer+len, "%2.2x ", InReg(scc->ctrl, reg));
  1638. len += sprintf(buffer+len, "XX ");
  1639. for (reg = 9; reg < 16; reg++)
  1640. len += sprintf(buffer+len, "%2.2x ", InReg(scc->ctrl, reg));
  1641. len += sprintf(buffer+len, "n");
  1642. }
  1643. #endif
  1644. len += sprintf(buffer+len, "n");
  1645.                 pos = begin + len;
  1646.                 if (pos < offset) {
  1647.                         len   = 0;
  1648.                         begin = pos;
  1649.                 }
  1650.                 if (pos > offset + length)
  1651.                         break;
  1652. }
  1653. done:
  1654.         *start = buffer + (offset - begin);
  1655.         len   -= (offset - begin);
  1656.         if (len > length) len = length;
  1657.         return len;
  1658. }
  1659.  
  1660. /* ******************************************************************** */
  1661. /* *  Init SCC driver        * */
  1662. /* ******************************************************************** */
  1663. static int __init scc_init_driver (void)
  1664. {
  1665. int result;
  1666. char devname[10];
  1667. printk(banner);
  1668. sprintf(devname,"%s0", SCC_DriverName);
  1669. result = scc_net_setup(SCC_Info, devname, 0);
  1670. if (result)
  1671. {
  1672. printk(KERN_ERR "z8530drv: cannot initialize modulen");
  1673. return result;
  1674. }
  1675. proc_net_create("z8530drv", 0, scc_net_get_info);
  1676. return 0;
  1677. }
  1678. static void __exit scc_cleanup_driver(void)
  1679. {
  1680. unsigned long flags;
  1681. io_port ctrl;
  1682. int k;
  1683. struct scc_channel *scc;
  1684. save_flags(flags); 
  1685. cli();
  1686. if (Nchips == 0)
  1687. {
  1688. unregister_netdev(SCC_Info[0].dev);
  1689. kfree(SCC_Info[0].dev);
  1690. }
  1691. for (k = 0; k < Nchips; k++)
  1692. if ( (ctrl = SCC_ctrl[k].chan_A) )
  1693. {
  1694. Outb(ctrl, 0);
  1695. OutReg(ctrl,R9,FHWRES); /* force hardware reset */
  1696. udelay(50);
  1697. }
  1698. for (k = 0; k < Nchips*2; k++)
  1699. {
  1700. scc = &SCC_Info[k];
  1701. if (scc->ctrl)
  1702. {
  1703. release_region(scc->ctrl, 1);
  1704. release_region(scc->data, 1);
  1705. }
  1706. if (scc->dev)
  1707. {
  1708. unregister_netdev(scc->dev);
  1709. kfree(scc->dev);
  1710. }
  1711. }
  1712. for (k=0; k < NR_IRQS ; k++)
  1713. if (Ivec[k].used) free_irq(k, NULL);
  1714. if (Vector_Latch)
  1715. release_region(Vector_Latch, 1);
  1716. restore_flags(flags);
  1717. proc_net_remove("z8530drv");
  1718. }
  1719. MODULE_AUTHOR("Joerg Reuter <jreuter@yaina.de>");
  1720. MODULE_DESCRIPTION("AX.25 Device Driver for Z8530 based HDLC cards");
  1721. MODULE_SUPPORTED_DEVICE("Z8530 based SCC cards for Amateur Radio");
  1722. MODULE_LICENSE("GPL");
  1723. module_init(scc_init_driver);
  1724. module_exit(scc_cleanup_driver);