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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * drivers/net/wan/dscc4/dscc4_main.c: a DSCC4 HDLC driver for Linux
  3.  *
  4.  * This software may be used and distributed according to the terms of the 
  5.  * GNU General Public License. 
  6.  *
  7.  * The author may be reached as romieu@cogenit.fr.
  8.  * Specific bug reports/asian food will be welcome.
  9.  *
  10.  * Special thanks to the nice people at CS-Telecom for the hardware and the
  11.  * access to the test/measure tools.
  12.  *
  13.  *
  14.  *                             Theory of Operation
  15.  *
  16.  * I. Board Compatibility
  17.  *
  18.  * This device driver is designed for the Siemens PEB20534 4 ports serial
  19.  * controller as found on Etinc PCISYNC cards. The documentation for the 
  20.  * chipset is available at http://www.infineon.com:
  21.  * - Data Sheet "DSCC4, DMA Supported Serial Communication Controller with
  22.  * 4 Channels, PEB 20534 Version 2.1, PEF 20534 Version 2.1";
  23.  * - Application Hint "Management of DSCC4 on-chip FIFO resources".
  24.  * Jens David has built an adapter based on the same chipset. Take a look
  25.  * at http://www.afthd.tu-darmstadt.de/~dg1kjd/pciscc4 for a specific
  26.  * driver.
  27.  * Sample code (2 revisions) is available at Infineon.
  28.  *
  29.  * II. Board-specific settings
  30.  *
  31.  * Pcisync can transmit some clock signal to the outside world on the
  32.  * *first two* ports provided you put a quartz and a line driver on it and
  33.  * remove the jumpers. The operation is described on Etinc web site. If you
  34.  * go DCE on these ports, don't forget to use an adequate cable.
  35.  *
  36.  * Sharing of the PCI interrupt line for this board is possible.
  37.  *
  38.  * III. Driver operation
  39.  *
  40.  * The rx/tx operations are based on a linked list of descriptor. I haven't
  41.  * tried the start/stop descriptor method as this one looks like the cheapest
  42.  * in terms of PCI manipulation.
  43.  *
  44.  * Tx direction
  45.  * Once the data section of the current descriptor processed, the next linked
  46.  * descriptor is loaded if the HOLD bit isn't set in the current descriptor.
  47.  * If HOLD is met, the transmission is stopped until the host unsets it and
  48.  * signals the change via TxPOLL.
  49.  * When the tx ring is full, the xmit routine issues a call to netdev_stop.
  50.  * The device is supposed to be enabled again during an ALLS irq (we could
  51.  * use HI but as it's easy to loose events, it's fscked).
  52.  *
  53.  * Rx direction
  54.  * The received frames aren't supposed to span over multiple receiving areas.
  55.  * I may implement it some day but it isn't the highest ranked item.
  56.  *
  57.  * IV. Notes
  58.  * The chipset is buggy. Typically, under some specific load patterns (I
  59.  * wouldn't call them "high"), the irq queues and the descriptors look like
  60.  * some event has been lost. Even assuming some fancy PCI feature, it won't 
  61.  * explain the reproductible missing "C" bit in the descriptors. Faking an 
  62.  * irq in the periodic timer isn't really elegant but at least it seems 
  63.  * reliable.
  64.  * The current error (XDU, RFO) recovery code is untested.
  65.  * So far, RDO takes his RX channel down and the right sequence to enable it
  66.  * again is still a mistery. If RDO happens, plan a reboot. More details
  67.  * in the code (NB: as this happens, TX still works).
  68.  * Don't mess the cables during operation, especially on DTE ports. I don't
  69.  * suggest it for DCE either but at least one can get some messages instead
  70.  * of a complete instant freeze.
  71.  * Tests are done on Rev. 20 of the silicium. The RDO handling changes with
  72.  * the documentation/chipset releases. An on-line errata would be welcome.
  73.  *
  74.  * TODO:
  75.  * - some trivial error lurk,
  76.  * - the stats are fscked,
  77.  * - use polling at high irq/s,
  78.  * - performance analysis,
  79.  * - endianness.
  80.  *
  81.  */
  82. #include <linux/version.h>
  83. #include <linux/module.h>
  84. #include <linux/types.h>
  85. #include <linux/errno.h>
  86. #include <linux/ioport.h>
  87. #include <linux/pci.h>
  88. #include <linux/kernel.h>
  89. #include <linux/mm.h>
  90. #include <asm/system.h>
  91. #include <asm/cache.h>
  92. #include <asm/byteorder.h>
  93. #include <asm/uaccess.h>
  94. #include <asm/io.h>
  95. #include <asm/irq.h>
  96. #include <linux/init.h>
  97. #include <linux/string.h>
  98. #include <linux/if_arp.h>
  99. #include <linux/netdevice.h>
  100. #include <linux/skbuff.h>
  101. #include <linux/delay.h>
  102. #include <net/syncppp.h>
  103. #include <linux/hdlc.h>
  104. /* Version */
  105. static const char version[] = "$Id: dscc4.c,v 1.130 2001/02/25 15:27:34 romieu Exp $n";
  106. static int debug;
  107. /* Module parameters */
  108. MODULE_AUTHOR("Maintainer: Francois Romieu <romieu@cogenit.fr>");
  109. MODULE_DESCRIPTION("Siemens PEB20534 PCI Controller");
  110. MODULE_LICENSE("GPL");
  111. MODULE_PARM(debug,"i");
  112. /* Structures */
  113. struct TxFD {
  114. u32 state;
  115. u32 next;
  116. u32 data;
  117. u32 complete;
  118. u32 jiffies; /* more hack to come :o) */
  119. };
  120. struct RxFD {
  121. u32 state1;
  122. u32 next;
  123. u32 data;
  124. u32 state2;
  125. u32 end;
  126. };
  127. #define DEBUG
  128. #define DEBUG_PARANOID
  129. #define TX_RING_SIZE    32
  130. #define RX_RING_SIZE    32
  131. #define IRQ_RING_SIZE   64 /* Keep it A multiple of 32 */
  132. #define TX_TIMEOUT      (HZ/10)
  133. #define BRR_DIVIDER_MAX 64*0x00008000
  134. #define dev_per_card 4
  135. #define SOURCE_ID(flags) ((flags >> 28 ) & 0x03)
  136. #define TO_SIZE(state) ((state >> 16) & 0x1fff)
  137. #define TO_STATE(len) cpu_to_le32((len & TxSizeMax) << 16)
  138. #define RX_MAX(len) ((((len) >> 5) + 1) << 5)
  139. #define SCC_REG_START(id) SCC_START+(id)*SCC_OFFSET
  140. #undef DEBUG
  141. struct dscc4_pci_priv {
  142.         u32 *iqcfg;
  143.         int cfg_cur;
  144.         spinlock_t lock;
  145.         struct pci_dev *pdev;
  146.         struct net_device *root;
  147.         dma_addr_t iqcfg_dma;
  148. u32 xtal_hz;
  149. };
  150. struct dscc4_dev_priv {
  151.         struct sk_buff *rx_skbuff[RX_RING_SIZE];
  152.         struct sk_buff *tx_skbuff[TX_RING_SIZE];
  153.         struct RxFD *rx_fd;
  154.         struct TxFD *tx_fd;
  155.         u32 *iqrx;
  156.         u32 *iqtx;
  157.         u32 rx_current;
  158.         u32 tx_current;
  159.         u32 iqrx_current;
  160.         u32 iqtx_current;
  161.         u32 tx_dirty;
  162. int bad_tx_frame;
  163. int bad_rx_frame;
  164. int rx_needs_refill;
  165.         dma_addr_t tx_fd_dma;
  166.         dma_addr_t rx_fd_dma;
  167.         dma_addr_t iqtx_dma;
  168.         dma_addr_t iqrx_dma;
  169.         struct net_device_stats stats;
  170. struct timer_list timer;
  171.         struct dscc4_pci_priv *pci_priv;
  172.         spinlock_t lock;
  173.         int dev_id;
  174. u32 flags;
  175. u32 timer_help;
  176. u32 hi_expected;
  177. struct hdlc_device_struct hdlc;
  178. int usecount;
  179. };
  180. /* GLOBAL registers definitions */
  181. #define GCMDR   0x00
  182. #define GSTAR   0x04
  183. #define GMODE   0x08
  184. #define IQLENR0 0x0C
  185. #define IQLENR1 0x10
  186. #define IQRX0   0x14
  187. #define IQTX0   0x24
  188. #define IQCFG   0x3c
  189. #define FIFOCR1 0x44
  190. #define FIFOCR2 0x48
  191. #define FIFOCR3 0x4c
  192. #define FIFOCR4 0x34
  193. #define CH0CFG  0x50
  194. #define CH0BRDA 0x54
  195. #define CH0BTDA 0x58
  196. /* SCC registers definitions */
  197. #define SCC_START 0x0100
  198. #define SCC_OFFSET      0x80
  199. #define CMDR    0x00
  200. #define STAR    0x04
  201. #define CCR0    0x08
  202. #define CCR1    0x0c
  203. #define CCR2    0x10
  204. #define BRR     0x2C
  205. #define RLCR    0x40
  206. #define IMR     0x54
  207. #define ISR     0x58
  208. /* Bit masks */
  209. #define IntRxScc0       0x10000000
  210. #define IntTxScc0       0x01000000
  211. #define TxPollCmd 0x00000400
  212. #define RxActivate 0x08000000
  213. #define MTFi 0x04000000
  214. #define Rdr 0x00400000
  215. #define Rdt 0x00200000
  216. #define Idr 0x00100000
  217. #define Idt 0x00080000
  218. #define TxSccRes       0x01000000
  219. #define RxSccRes       0x00010000
  220. #define TxSizeMax 0x1ffc
  221. #define RxSizeMax 0x1ffc
  222. #define Ccr0ClockMask 0x0000003f
  223. #define Ccr1LoopMask 0x00000200
  224. #define BrrExpMask 0x00000f00
  225. #define BrrMultMask 0x0000003f
  226. #define EncodingMask 0x00700000
  227. #define Hold 0x40000000
  228. #define SccBusy 0x10000000
  229. #define FrameOk (FrameVfr | FrameCrc)
  230. #define FrameVfr 0x80
  231. #define FrameRdo 0x40
  232. #define FrameCrc 0x20
  233. #define FrameAborted 0x00000200
  234. #define FrameEnd 0x80000000
  235. #define DataComplete 0x40000000
  236. #define LengthCheck 0x00008000
  237. #define SccEvt 0x02000000
  238. #define NoAck 0x00000200
  239. #define Action 0x00000001
  240. #define HiDesc 0x20000000
  241. /* SCC events */
  242. #define RxEvt 0xf0000000
  243. #define TxEvt 0x0f000000
  244. #define Alls 0x00040000
  245. #define Xdu 0x00010000
  246. #define Xmr 0x00002000
  247. #define Xpr 0x00001000
  248. #define Rdo 0x00000080
  249. #define Rfs 0x00000040
  250. #define Rfo 0x00000002
  251. #define Flex 0x00000001
  252. /* DMA core events */
  253. #define Cfg 0x00200000
  254. #define Hi 0x00040000
  255. #define Fi 0x00020000
  256. #define Err 0x00010000
  257. #define Arf 0x00000002
  258. #define ArAck 0x00000001
  259. /* Misc */
  260. #define NeedIDR 0x00000001
  261. #define NeedIDT 0x00000002
  262. #define RdoSet 0x00000004
  263. /* Functions prototypes */
  264. static __inline__ void dscc4_rx_irq(struct dscc4_pci_priv *, struct net_device *);
  265. static __inline__ void dscc4_tx_irq(struct dscc4_pci_priv *, struct net_device *);
  266. static int dscc4_found1(struct pci_dev *, unsigned long ioaddr);
  267. static int dscc4_init_one(struct pci_dev *, const struct pci_device_id *ent);
  268. static int dscc4_open(struct net_device *);
  269. static int dscc4_start_xmit(struct sk_buff *, struct net_device *);
  270. static int dscc4_close(struct net_device *);
  271. static int dscc4_ioctl(struct net_device *dev, struct ifreq *rq, int cmd);
  272. static int dscc4_change_mtu(struct net_device *dev, int mtu);
  273. static int dscc4_init_ring(struct net_device *);
  274. static void dscc4_release_ring(struct dscc4_dev_priv *);
  275. static void dscc4_timer(unsigned long);
  276. static void dscc4_tx_timeout(struct net_device *);
  277. static void dscc4_irq(int irq, void *dev_id, struct pt_regs *ptregs);
  278. static struct net_device_stats *dscc4_get_stats(struct net_device *);
  279. static int dscc4_attach_hdlc_device(struct net_device *);
  280. static void dscc4_unattach_hdlc_device(struct net_device *);
  281. static int dscc4_hdlc_open(struct hdlc_device_struct *);
  282. static void dscc4_hdlc_close(struct hdlc_device_struct *);
  283. static int dscc4_hdlc_ioctl(struct hdlc_device_struct *, struct ifreq *, int);
  284. static int dscc4_hdlc_xmit(hdlc_device *, struct sk_buff *);
  285. #ifdef EXPERIMENTAL_POLLING
  286. static int dscc4_tx_poll(struct dscc4_dev_priv *, struct net_device *);
  287. #endif
  288. void inline reset_TxFD(struct TxFD *tx_fd) {
  289. /* FIXME: test with the last arg (size specification) = 0 */
  290. tx_fd->state = FrameEnd | Hold | 0x00100000;
  291. tx_fd->complete = 0x00000000;
  292. }
  293. void inline dscc4_release_ring_skbuff(struct sk_buff **p, int n)
  294. {
  295. for(; n > 0; n--) {
  296. if (*p)
  297. dev_kfree_skb(*p);
  298. p++;
  299. }
  300. }
  301. static void dscc4_release_ring(struct dscc4_dev_priv *dpriv)
  302. {
  303. struct pci_dev *pdev = dpriv->pci_priv->pdev;
  304. pci_free_consistent(pdev, TX_RING_SIZE*sizeof(struct TxFD),
  305.     dpriv->tx_fd, dpriv->tx_fd_dma);
  306. pci_free_consistent(pdev, RX_RING_SIZE*sizeof(struct RxFD),
  307.     dpriv->rx_fd, dpriv->rx_fd_dma);
  308. dscc4_release_ring_skbuff(dpriv->tx_skbuff, TX_RING_SIZE);
  309. dscc4_release_ring_skbuff(dpriv->rx_skbuff, RX_RING_SIZE);
  310. }
  311. void inline try_get_rx_skb(struct dscc4_dev_priv *priv, int cur, struct net_device *dev)
  312. {
  313. struct sk_buff *skb;
  314. skb = dev_alloc_skb(RX_MAX(HDLC_MAX_MRU+2));
  315. priv->rx_skbuff[cur] = skb;
  316. if (!skb) {
  317. priv->rx_fd[cur--].data = (u32) NULL;
  318. priv->rx_fd[cur%RX_RING_SIZE].state1 |= Hold;
  319. priv->rx_needs_refill++;
  320. return;
  321. }
  322. skb->dev = dev;
  323. skb->protocol = htons(ETH_P_IP);
  324. skb->mac.raw = skb->data;
  325. priv->rx_fd[cur].data = pci_map_single(priv->pci_priv->pdev, skb->data,
  326.        skb->len, PCI_DMA_FROMDEVICE);
  327. }
  328. /*
  329.  * IRQ/thread/whatever safe
  330.  */
  331. static int dscc4_wait_ack_cec(u32 ioaddr, struct net_device *dev, char *msg)
  332. {
  333. s16 i = 0;
  334. while (readl(ioaddr + STAR) & SccBusy) {
  335. if (i++ < 0)  {
  336. printk(KERN_ERR "%s: %s timeoutn", dev->name, msg);
  337. return -1;
  338. }
  339. }
  340. printk(KERN_DEBUG "%s: %s ack (%d try)n", dev->name, msg, i);
  341. return 0;
  342. }
  343. static int dscc4_do_action(struct net_device *dev, char *msg)
  344. {
  345. unsigned long ioaddr = dev->base_addr;
  346. u32 state;
  347. s16 i;
  348. writel(Action, ioaddr + GCMDR);
  349. ioaddr += GSTAR;
  350. for (i = 0; i >= 0; i++) {
  351. state = readl(ioaddr);
  352. if (state & Arf) {
  353. printk(KERN_ERR "%s: %s failedn", dev->name, msg);
  354. writel(Arf, ioaddr);
  355. return -1;
  356. } else if (state & ArAck) {
  357. printk(KERN_DEBUG "%s: %s ack (%d try)n",
  358.        dev->name, msg, i);
  359. writel(ArAck, ioaddr);
  360. return 0;
  361. }
  362. }
  363. printk(KERN_ERR "%s: %s timeoutn", dev->name, msg);
  364. return -1;
  365. }
  366. static __inline__ int dscc4_xpr_ack(struct dscc4_dev_priv *dpriv)
  367. {
  368. int cur;
  369. s16 i;
  370. cur = dpriv->iqtx_current%IRQ_RING_SIZE;
  371. for (i = 0; i >= 0; i++) {
  372. if (!(dpriv->flags & (NeedIDR | NeedIDT)) ||
  373.     (dpriv->iqtx[cur] & Xpr))
  374. return 0;
  375. }
  376. printk(KERN_ERR "%s: %s timeoutn", "dscc4", "XPR");
  377. return -1;
  378. }
  379. static __inline__ void dscc4_rx_skb(struct dscc4_dev_priv *dpriv, int cur,
  380. struct RxFD *rx_fd, struct net_device *dev)
  381. {
  382. struct pci_dev *pdev = dpriv->pci_priv->pdev;
  383. struct sk_buff *skb;
  384. int pkt_len;
  385. skb = dpriv->rx_skbuff[cur];
  386. pkt_len = TO_SIZE(rx_fd->state2) - 1;
  387. pci_dma_sync_single(pdev, rx_fd->data, pkt_len + 1, PCI_DMA_FROMDEVICE);
  388. if((skb->data[pkt_len] & FrameOk) == FrameOk) {
  389. pci_unmap_single(pdev, rx_fd->data, skb->len, PCI_DMA_FROMDEVICE);
  390. dpriv->stats.rx_packets++;
  391. dpriv->stats.rx_bytes += pkt_len;
  392. skb->tail += pkt_len;
  393. skb->len = pkt_len;
  394.         if (netif_running(hdlc_to_dev(&dpriv->hdlc)))
  395. hdlc_netif_rx(&dpriv->hdlc, skb);
  396. else
  397. netif_rx(skb);
  398. try_get_rx_skb(dpriv, cur, dev);
  399. } else {
  400. if(skb->data[pkt_len] & FrameRdo)
  401. dpriv->stats.rx_fifo_errors++;
  402. else if(!(skb->data[pkt_len] | ~FrameCrc))
  403. dpriv->stats.rx_crc_errors++;
  404. else if(!(skb->data[pkt_len] | ~FrameVfr))
  405. dpriv->stats.rx_length_errors++;
  406. else
  407. dpriv->stats.rx_errors++;
  408. }
  409. rx_fd->state1 |= Hold;
  410. rx_fd->state2 = 0x00000000;
  411. rx_fd->end = 0xbabeface;
  412. if (!rx_fd->data)
  413. return;
  414. rx_fd--;
  415. if (!cur)
  416. rx_fd += RX_RING_SIZE;
  417. rx_fd->state1 &= ~Hold;
  418. }
  419. static int __init dscc4_init_one (struct pci_dev *pdev,
  420.   const struct pci_device_id *ent)
  421. {
  422. struct dscc4_pci_priv *priv;
  423. struct dscc4_dev_priv *dpriv;
  424. int i;
  425. static int cards_found = 0;
  426. unsigned long ioaddr;
  427. printk(KERN_DEBUG "%s", version);
  428. if (pci_enable_device(pdev))
  429. goto err_out;
  430. if (!request_mem_region(pci_resource_start(pdev, 0),
  431.                  pci_resource_len(pdev, 0), "registers")) {
  432.         printk (KERN_ERR "dscc4: can't reserve MMIO region (regs)n");
  433.         goto err_out;
  434. }
  435. if (!request_mem_region(pci_resource_start(pdev, 1),
  436.                         pci_resource_len(pdev, 1), "LBI interface")) {
  437.         printk (KERN_ERR "dscc4: can't reserve MMIO region (lbi)n");
  438.         goto err_out_free_mmio_region0;
  439. }
  440. ioaddr = (unsigned long)ioremap(pci_resource_start(pdev, 0),
  441. pci_resource_len(pdev, 0));
  442. if (!ioaddr) {
  443. printk(KERN_ERR "dscc4: cannot remap MMIO region %lx @ %lxn",
  444.                 pci_resource_len(pdev, 0), pci_resource_start(pdev, 0));
  445. goto err_out_free_mmio_region;
  446. }
  447. printk(KERN_DEBUG "Siemens DSCC4, MMIO at %#lx (regs), %#lx (lbi), IRQ %d.n",
  448.         pci_resource_start(pdev, 0),
  449.         pci_resource_start(pdev, 1), pdev->irq);
  450. /* High PCI latency useless. Cf app. note. */
  451. pci_write_config_byte(pdev, PCI_LATENCY_TIMER, 0x10);
  452. pci_set_master(pdev);
  453. if (dscc4_found1(pdev, ioaddr))
  454.         goto err_out_iounmap;
  455. priv = (struct dscc4_pci_priv *)pci_get_drvdata(pdev);
  456. if (request_irq(pdev->irq, &dscc4_irq, SA_SHIRQ, "dscc4", priv->root)) {
  457. printk(KERN_WARNING "dscc4: IRQ %d is busyn", pdev->irq);
  458. goto err_out_iounmap;
  459. }
  460. priv->pdev = pdev;
  461. /* power up/little endian/dma core controlled via hold bit */
  462. writel(0x00000000, ioaddr + GMODE);
  463. /* Shared interrupt queue */
  464. {
  465. u32 bits;
  466. bits = (IRQ_RING_SIZE >> 5) - 1;
  467. bits |= bits << 4;
  468. bits |= bits << 8;
  469. bits |= bits << 16;
  470. writel(bits, ioaddr + IQLENR0);
  471. }
  472. /* Global interrupt queue */
  473. writel((u32)(((IRQ_RING_SIZE >> 5) - 1) << 20), ioaddr + IQLENR1);
  474. priv->iqcfg = (u32 *) pci_alloc_consistent(pdev,
  475. IRQ_RING_SIZE*sizeof(u32), &priv->iqcfg_dma);
  476. if (!priv->iqcfg)
  477. goto err_out_free_irq;
  478. writel(priv->iqcfg_dma, ioaddr + IQCFG);
  479. /* 
  480.  * SCC 0-3 private rx/tx irq structures 
  481.  * IQRX/TXi needs to be set soon. Learned it the hard way...
  482.  */
  483. for(i = 0; i < dev_per_card; i++) {
  484. dpriv = (struct dscc4_dev_priv *)(priv->root + i)->priv;
  485. dpriv->iqtx = (u32 *) pci_alloc_consistent(pdev,
  486. IRQ_RING_SIZE*sizeof(u32), &dpriv->iqtx_dma);
  487. if (!dpriv->iqtx)
  488. goto err_out_free_iqtx;
  489. writel(dpriv->iqtx_dma, ioaddr + IQTX0 + i*4);
  490. }
  491. for(i = 0; i < dev_per_card; i++) {
  492. dpriv = (struct dscc4_dev_priv *)(priv->root + i)->priv;
  493. dpriv->iqrx = (u32 *) pci_alloc_consistent(pdev,
  494. IRQ_RING_SIZE*sizeof(u32), &dpriv->iqrx_dma);
  495. if (!dpriv->iqrx)
  496. goto err_out_free_iqrx;
  497. writel(dpriv->iqrx_dma, ioaddr + IQRX0 + i*4);
  498. }
  499. /* 
  500.  * Cf application hint. Beware of hard-lock condition on 
  501.  * threshold .
  502.  */
  503. writel(0x42104000, ioaddr + FIFOCR1);
  504. //writel(0x9ce69800, ioaddr + FIFOCR2);
  505. writel(0xdef6d800, ioaddr + FIFOCR2);
  506. //writel(0x11111111, ioaddr + FIFOCR4);
  507. writel(0x18181818, ioaddr + FIFOCR4);
  508. // FIXME: should depend on the chipset revision
  509. writel(0x0000000e, ioaddr + FIFOCR3);
  510. writel(0xff200001, ioaddr + GCMDR);
  511. cards_found++;
  512. return 0;
  513. err_out_free_iqrx:
  514. while (--i >= 0) {
  515. dpriv = (struct dscc4_dev_priv *)(priv->root + i)->priv;
  516. pci_free_consistent(pdev, IRQ_RING_SIZE*sizeof(u32), 
  517.     dpriv->iqrx, dpriv->iqrx_dma);
  518. }
  519. i = dev_per_card;
  520. err_out_free_iqtx:
  521. while (--i >= 0) {
  522. dpriv = (struct dscc4_dev_priv *)(priv->root + i)->priv;
  523. pci_free_consistent(pdev, IRQ_RING_SIZE*sizeof(u32), 
  524.     dpriv->iqtx, dpriv->iqtx_dma);
  525. }
  526. pci_free_consistent(pdev, IRQ_RING_SIZE*sizeof(u32), priv->iqcfg, 
  527.     priv->iqcfg_dma);
  528. err_out_free_irq:
  529. free_irq(pdev->irq, priv->root);
  530. err_out_iounmap:
  531. iounmap ((void *)ioaddr);
  532. err_out_free_mmio_region:
  533. release_mem_region(pci_resource_start(pdev, 1),
  534.    pci_resource_len(pdev, 1));
  535. err_out_free_mmio_region0:
  536. release_mem_region(pci_resource_start(pdev, 0),
  537.    pci_resource_len(pdev, 0));
  538. err_out:
  539. return -ENODEV;
  540. };
  541. static int dscc4_found1(struct pci_dev *pdev, unsigned long ioaddr)
  542. {
  543. struct dscc4_pci_priv *ppriv;
  544. struct dscc4_dev_priv *dpriv;
  545. struct net_device *dev;
  546. int i = 0;
  547. dpriv = (struct dscc4_dev_priv *)
  548. kmalloc(dev_per_card*sizeof(struct dscc4_dev_priv), GFP_KERNEL);
  549. if (!dpriv) {
  550. printk(KERN_ERR "dscc4: can't allocate datan");
  551. goto err_out;
  552. }
  553. memset(dpriv, 0, dev_per_card*sizeof(struct dscc4_dev_priv));
  554. dev = (struct net_device *)
  555.       kmalloc(dev_per_card*sizeof(struct net_device), GFP_KERNEL);
  556. if (!dev) {
  557. printk(KERN_ERR "dscc4: can't allocate net_devicen");
  558. goto err_dealloc_priv;
  559. }
  560. memset(dev, 0, dev_per_card*sizeof(struct net_device));
  561. ppriv = (struct dscc4_pci_priv *)
  562. kmalloc(sizeof(struct dscc4_pci_priv), GFP_KERNEL);
  563. if (!ppriv) {
  564. printk(KERN_ERR "dscc4: can't allocate pci private data.n");
  565. goto err_dealloc_dev;
  566. }
  567. memset(ppriv, 0, sizeof(struct dscc4_pci_priv));
  568. for (i = 0; i < dev_per_card; i++) {
  569. struct dscc4_dev_priv *p;
  570. struct net_device *d;
  571.         d = dev + i;
  572.         d->base_addr = ioaddr;
  573. d->init = NULL;
  574.         d->irq = pdev->irq;
  575. /* The card adds the crc */
  576. d->type = ARPHRD_RAWHDLC;
  577.         d->open = dscc4_open;
  578.         d->stop = dscc4_close;
  579.         d->hard_start_xmit = dscc4_start_xmit;
  580. d->set_multicast_list = NULL;
  581.         d->do_ioctl = dscc4_ioctl;
  582. d->get_stats = dscc4_get_stats;
  583. d->change_mtu = dscc4_change_mtu;
  584.         d->mtu = HDLC_MAX_MTU;
  585.         d->flags = IFF_MULTICAST|IFF_POINTOPOINT|IFF_NOARP;
  586. d->tx_timeout = dscc4_tx_timeout;
  587. d->watchdog_timeo = TX_TIMEOUT;
  588. p = dpriv + i;
  589. p->dev_id = i;
  590. p->pci_priv = ppriv;
  591. spin_lock_init(&p->lock);
  592. d->priv = p;
  593. if (dev_alloc_name(d, "scc%d")<0) {
  594. printk(KERN_ERR "dev_alloc_name failed for scc.n");
  595. goto err_dealloc_dev;
  596. }
  597.         if (register_netdev(d)) {
  598. printk(KERN_ERR "%s: register_netdev != 0.n", d->name);
  599. goto err_dealloc_dev;
  600.         }
  601. dscc4_attach_hdlc_device(d);
  602. SET_MODULE_OWNER(d);
  603. }
  604. ppriv->root = dev;
  605. ppriv->pdev = pdev;
  606. spin_lock_init(&ppriv->lock);
  607. pci_set_drvdata(pdev, ppriv);
  608. return 0;
  609. err_dealloc_dev:
  610. while (--i >= 0)
  611. unregister_netdev(dev + i);
  612. kfree(dev);
  613. err_dealloc_priv:
  614. kfree(dpriv);
  615. err_out:
  616. return -1;
  617. };
  618. static void dscc4_timer(unsigned long data)
  619. {
  620. struct net_device *dev = (struct net_device *)data;
  621. struct dscc4_dev_priv *dpriv;
  622. struct dscc4_pci_priv *ppriv;
  623. dpriv = dev->priv;
  624. if (netif_queue_stopped(dev) && 
  625.    ((jiffies - dev->trans_start) > TX_TIMEOUT)) {
  626. ppriv = dpriv->pci_priv;
  627. if (dpriv->iqtx[dpriv->iqtx_current%IRQ_RING_SIZE]) {
  628. u32 flags;
  629. printk(KERN_DEBUG "%s: pending eventsn", dev->name);
  630. dev->trans_start = jiffies;
  631. spin_lock_irqsave(&ppriv->lock, flags);
  632. dscc4_tx_irq(ppriv, dev);
  633. spin_unlock_irqrestore(&ppriv->lock, flags);
  634. } else {
  635. struct TxFD *tx_fd;
  636. struct sk_buff *skb;
  637. int i,j;
  638. printk(KERN_DEBUG "%s: missing eventsn", dev->name);
  639. i = dpriv->tx_dirty%TX_RING_SIZE; 
  640. j = dpriv->tx_current - dpriv->tx_dirty;
  641. dpriv->stats.tx_dropped += j;
  642. while(j--) {
  643. skb = dpriv->tx_skbuff[i];
  644. tx_fd = dpriv->tx_fd + i;
  645. if (skb) {
  646. dpriv->tx_skbuff[i] = NULL;
  647. pci_unmap_single(ppriv->pdev, tx_fd->data, skb->len,
  648.    PCI_DMA_TODEVICE);
  649. dev_kfree_skb_irq(skb);
  650. } else 
  651. printk(KERN_INFO "%s: hardware on drugs!n", dev->name);
  652. tx_fd->data = 0; /* DEBUG */
  653. tx_fd->complete &= ~DataComplete;
  654. i++;
  655. i %= TX_RING_SIZE; 
  656. }
  657. dpriv->tx_dirty = dpriv->tx_current;
  658. dev->trans_start = jiffies;
  659. netif_wake_queue(dev);
  660. printk(KERN_DEBUG "%s: re-enabledn", dev->name);
  661. }
  662. }
  663.         dpriv->timer.expires = jiffies + TX_TIMEOUT;
  664.         add_timer(&dpriv->timer);
  665. }
  666. static void dscc4_tx_timeout(struct net_device *dev)
  667. {
  668. /* FIXME: something is missing there */
  669. };
  670. static int dscc4_open(struct net_device *dev)
  671. {
  672. struct dscc4_dev_priv *dpriv = (struct dscc4_dev_priv *)dev->priv;
  673. struct dscc4_pci_priv *ppriv;
  674. u32 ioaddr = 0;
  675. MOD_INC_USE_COUNT;
  676. ppriv = dpriv->pci_priv;
  677. if (dscc4_init_ring(dev))
  678. goto err_out;
  679. ioaddr = dev->base_addr + SCC_REG_START(dpriv->dev_id);
  680. /* FIXME: VIS */
  681. writel(readl(ioaddr + CCR0) | 0x80001000, ioaddr + CCR0);
  682. writel(LengthCheck | (HDLC_MAX_MRU >> 5), ioaddr + RLCR);
  683. /* no address recognition/crc-CCITT/cts enabled */
  684. writel(readl(ioaddr + CCR1) | 0x021c8000, ioaddr + CCR1);
  685. /* Ccr2.Rac = 0 */
  686. writel(0x00050008 & ~RxActivate, ioaddr + CCR2);
  687. #ifdef EXPERIMENTAL_POLLING
  688. writel(0xfffeef7f, ioaddr + IMR); /* Interrupt mask */
  689. #else
  690. /* Don't mask RDO. Ever. */
  691. //writel(0xfffaef7f, ioaddr + IMR); /* Interrupt mask */
  692. writel(0xfffaef7e, ioaddr + IMR); /* Interrupt mask */
  693. #endif
  694. /* IDT+IDR during XPR */
  695. dpriv->flags = NeedIDR | NeedIDT;
  696. /*
  697.  * The following is a bit paranoid...
  698.  *
  699.  * NB: the datasheet "...CEC will stay active if the SCC is in
  700.  * power-down mode or..." and CCR2.RAC = 1 are two different
  701.  * situations.
  702.  */
  703. if (readl(ioaddr + STAR) & SccBusy) {
  704. printk(KERN_ERR "%s busy. Try latern", dev->name);
  705. goto err_free_ring;
  706. }
  707. writel(TxSccRes | RxSccRes, ioaddr + CMDR);
  708. /* ... the following isn't */
  709. if (dscc4_wait_ack_cec(ioaddr, dev, "Cec"))
  710. goto err_free_ring;
  711. /* 
  712.  * I would expect XPR near CE completion (before ? after ?).
  713.  * At worst, this code won't see a late XPR and people
  714.  * will have to re-issue an ifconfig (this is harmless). 
  715.  * WARNING, a really missing XPR usually means a hardware 
  716.  * reset is needed. Suggestions anyone ?
  717.  */
  718. if (dscc4_xpr_ack(dpriv))
  719. goto err_free_ring;
  720. netif_start_queue(dev);
  721.         init_timer(&dpriv->timer);
  722.         dpriv->timer.expires = jiffies + 10*HZ;
  723.         dpriv->timer.data = (unsigned long)dev;
  724.         dpriv->timer.function = &dscc4_timer;
  725.         add_timer(&dpriv->timer);
  726. netif_carrier_on(dev);
  727. return 0;
  728. err_free_ring:
  729. dscc4_release_ring(dpriv);
  730. err_out:
  731. MOD_DEC_USE_COUNT;
  732. return -EAGAIN;
  733. }
  734. #ifdef EXPERIMENTAL_POLLING
  735. static int dscc4_tx_poll(struct dscc4_dev_priv *dpriv, struct net_device *dev)
  736. {
  737. /* FIXME: it's gonna be easy (TM), for sure */
  738. }
  739. #endif /* EXPERIMENTAL_POLLING */
  740. static int dscc4_start_xmit(struct sk_buff *skb, struct net_device *dev)
  741. {
  742. struct dscc4_dev_priv *dpriv = dev->priv;
  743. struct dscc4_pci_priv *ppriv;
  744. struct TxFD *tx_fd;
  745. int cur, next;
  746. ppriv = dpriv->pci_priv;
  747. cur = dpriv->tx_current++%TX_RING_SIZE;
  748. next = dpriv->tx_current%TX_RING_SIZE;
  749. dpriv->tx_skbuff[next] = skb;
  750. tx_fd = dpriv->tx_fd + next;
  751. tx_fd->state = FrameEnd | Hold | TO_STATE(skb->len & TxSizeMax);
  752. tx_fd->data = pci_map_single(ppriv->pdev, skb->data, skb->len,
  753.      PCI_DMA_TODEVICE);
  754. tx_fd->complete = 0x00000000;
  755. mb(); // FIXME: suppress ?
  756. #ifdef EXPERIMENTAL_POLLING
  757. spin_lock(&dpriv->lock);
  758. while(dscc4_tx_poll(dpriv, dev));
  759. spin_unlock(&dpriv->lock);
  760. #endif
  761. /*
  762.  * I know there's a window for a race in the following lines but
  763.  * dscc4_timer will take good care of it. The chipset eats events
  764.  * (especially the net_dev re-enabling ones) thus there is no
  765.  * reason to try and be smart.
  766.  */
  767. if ((dpriv->tx_dirty + 16) < dpriv->tx_current) {
  768. netif_stop_queue(dev);
  769. dpriv->hi_expected = 2;
  770. }
  771. tx_fd = dpriv->tx_fd + cur;
  772. tx_fd->state &= ~Hold;
  773. mb(); // FIXME: suppress ?
  774. /* 
  775.  * One may avoid some pci transactions during intense TX periods.
  776.  * Not sure it's worth the pain...
  777.  */
  778. writel((TxPollCmd << dpriv->dev_id) | NoAck, dev->base_addr + GCMDR);
  779. dev->trans_start = jiffies;
  780. return 0;
  781. }
  782. static int dscc4_close(struct net_device *dev)
  783. {
  784. struct dscc4_dev_priv *dpriv = (struct dscc4_dev_priv *)dev->priv;
  785. u32 ioaddr = dev->base_addr;
  786. int dev_id;
  787. del_timer_sync(&dpriv->timer);
  788. netif_stop_queue(dev);
  789. dev_id = dpriv->dev_id;
  790. writel(0x00050000, ioaddr + SCC_REG_START(dev_id) + CCR2);
  791. writel(MTFi|Rdr|Rdt, ioaddr + CH0CFG + dev_id*0x0c); /* Reset Rx/Tx */
  792. writel(0x00000001, ioaddr + GCMDR);
  793. dscc4_release_ring(dpriv);
  794. MOD_DEC_USE_COUNT;
  795. return 0;
  796. }
  797. static int dscc4_set_clock(struct net_device *dev, u32 *bps, u32 *state)
  798. {
  799. struct dscc4_dev_priv *dpriv = (struct dscc4_dev_priv *)dev->priv;
  800. u32 brr;
  801. *state &= ~Ccr0ClockMask;
  802. if (*bps) { /* DCE */
  803. u32 n = 0, m = 0, divider;
  804. int xtal;
  805. xtal = dpriv->pci_priv->xtal_hz;
  806. if (!xtal)
  807. return -1;
  808. divider = xtal / *bps;
  809. if (divider > BRR_DIVIDER_MAX) {
  810. divider >>= 4;
  811. *state |= 0x00000036; /* Clock mode 6b (BRG/16) */
  812. } else
  813. *state |= 0x00000037; /* Clock mode 7b (BRG) */
  814. if (divider >> 22) {
  815. n = 63;
  816. m = 15;
  817. } else if (divider) {
  818. /* Extraction of the 6 highest weighted bits */
  819. m = 0;
  820. while (0xffffffc0 & divider) {
  821. m++;
  822. divider >>= 1;
  823. }
  824. n = divider;
  825. }
  826. brr = (m << 8) | n;
  827. divider = n << m;
  828. if (!(*state & 0x00000001)) /* Clock mode 6b */
  829. divider <<= 4;
  830. *bps = xtal / divider;
  831. } else { /* DTE */
  832. /* 
  833.  * "state" already reflects Clock mode 0a. 
  834.  * Nothing more to be done 
  835.  */
  836. brr = 0;
  837. }
  838. writel(brr, dev->base_addr + BRR + SCC_REG_START(dpriv->dev_id));
  839. return 0;
  840. }
  841. #ifdef LATER_PLEASE
  842. /*
  843.  * -*- [RFC] Configuring Synchronous Interfaces in Linux -*-
  844.  */
  845. // FIXME: MEDIA already defined in linux/hdlc.h
  846. #define HDLC_MEDIA_V35 0
  847. #define HDLC_MEDIA_RS232 1
  848. #define HDLC_MEDIA_X21 2
  849. #define HDLC_MEDIA_E1 3
  850. #define HDLC_MEDIA_HSSI 4
  851. #define HDLC_CODING_NRZ 0
  852. #define HDLC_CODING_NRZI 1
  853. #define HDLC_CODING_FM0 2
  854. #define HDLC_CODING_FM1 3
  855. #define HDLC_CODING_MANCHESTER 4
  856. #define HDLC_CRC_NONE 0
  857. #define HDLC_CRC_16 1
  858. #define HDLC_CRC_32 2
  859. #define HDLC_CRC_CCITT 3
  860. /* RFC: add the crc reset value ? */
  861. struct hdlc_physical {
  862. u8 media;
  863. u8 coding;
  864. u32 rate;
  865. u8 crc;
  866. u8 crc_siz; /* 2 or 4 bytes */
  867. u8 shared_flags; /* Discouraged on the DSCC4 */
  868. };
  869. // FIXME: PROTO already defined in linux/hdlc.h
  870. #define HDLC_PROTO_RAW 0
  871. #define HDLC_PROTO_FR 1
  872. #define HDLC_PROTO_X25 2
  873. #define HDLC_PROTO_PPP 3
  874. #define HDLC_PROTO_CHDLC 4
  875. struct hdlc_protocol {
  876. u8 proto; 
  877. union {
  878. } u;
  879. };
  880. struct screq {
  881. u16 media_group;
  882. union {
  883. struct hdlc_physical hdlc_phy;
  884. struct hdlc_protocol hdlc_proto;
  885. } u;
  886. };
  887. // FIXME: go sub-module 
  888. static struct {
  889. u16 coding;
  890. u16 bits;
  891. } map[] = {
  892. {HDLC_CODING_NRZ, 0x00},
  893. {HDLC_CODING_NRZI, 0x20},
  894. {HDLC_CODING_FM0, 0x40},
  895. {HDLC_CODING_FM1, 0x50},
  896. {HDLC_CODING_MANCHESTER, 0x60},
  897. {65535, 0x00}
  898. };
  899. #endif /* LATER_PLEASE */
  900. static int dscc4_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
  901. {
  902. struct dscc4_dev_priv *dpriv = dev->priv;
  903. u32 state, ioaddr;
  904.         if (dev->flags & IFF_UP)
  905.                 return -EBUSY;
  906. switch (cmd) {
  907. /* Set built-in quartz frequency */
  908. case SIOCDEVPRIVATE: {
  909. u32 hz;
  910. hz = ifr->ifr_ifru.ifru_ivalue;
  911. if (hz >= 33000000) /* 33 MHz */
  912. return -EOPNOTSUPP;
  913. dpriv->pci_priv->xtal_hz = hz;
  914. return 0;
  915. }
  916. /* Set/unset loopback */
  917. case SIOCDEVPRIVATE+1: {
  918. u32 flags;
  919. ioaddr = dev->base_addr + CCR1 +
  920.  SCC_REG_START(dpriv->dev_id);
  921. state = readl(ioaddr);
  922. flags = ifr->ifr_ifru.ifru_ivalue;
  923. if (flags & 0x00000001) {
  924. printk(KERN_DEBUG "%s: loopbackn", dev->name);
  925. state |= 0x00000100;
  926. } else {
  927. printk(KERN_DEBUG "%s: normaln", dev->name);
  928. state &= ~0x00000100;
  929. }
  930. writel(state, ioaddr);
  931. return 0;
  932. }
  933. #ifdef LATER_PLEASE
  934. case SIOCDEVPRIVATE+2: {
  935. {
  936. struct screq scr;
  937. err = copy_from_user(&scr, ifr->ifr_ifru.ifru_data, sizeof(struct screq));
  938. if (err)
  939. return err;
  940. do {
  941. if (scr.u.hdlc_phy.coding == map[i].coding)
  942. break;
  943. } while (map[++i].coding != 65535);
  944. if (!map[i].coding)
  945. return -EOPNOTSUPP;
  946. ioaddr = dev->base_addr + CCR0 +
  947.  SCC_REG_START(dpriv->dev_id);
  948. state = readl(ioaddr) & ~EncodingMask;
  949. state |= (u32)map[i].bits << 16;
  950. writel(state, ioaddr);
  951. printk("state: %08xn", state); /* DEBUG */
  952. return 0;
  953. }
  954. case SIOCDEVPRIVATE+3: {
  955. struct screq *scr = (struct screq *)ifr->ifr_ifru.ifru_data;
  956. ioaddr = dev->base_addr + CCR0 +
  957.  SCC_REG_START(dpriv->dev_id);
  958. state = (readl(ioaddr) & EncodingMask) >> 16;
  959. do {
  960. if (state == map[i].bits)
  961. break;
  962. } while (map[++i].coding);
  963. return put_user(map[i].coding, (u16 *)scr->u.hdlc_phy.coding);
  964. }
  965. #endif /* LATER_PLEASE */
  966. case HDLCSCLOCKRATE:
  967. {
  968. u32 state, bps;
  969.  
  970. bps = ifr->ifr_ifru.ifru_ivalue;
  971. ioaddr = dev->base_addr + CCR0 +
  972.  SCC_REG_START(dpriv->dev_id);
  973. state = readl(ioaddr);
  974. if(dscc4_set_clock(dev, &bps, &state) < 0)
  975. return -EOPNOTSUPP;
  976. if (bps) { /* DCE */
  977. printk(KERN_DEBUG "%s: generated RxClk (DCE)n",
  978.        dev->name);
  979. ifr->ifr_ifru.ifru_ivalue = bps;
  980. } else { /* DTE */
  981. state = 0x80001000;
  982. printk(KERN_DEBUG "%s: external RxClk (DTE)n",
  983.        dev->name);
  984. }
  985. writel(state, ioaddr);
  986. return 0;
  987. }
  988. case HDLCGCLOCKRATE: {
  989. u32 brr;
  990. int bps;
  991. brr = readl(dev->base_addr + BRR + 
  992.     SCC_REG_START(dpriv->dev_id));
  993. bps = dpriv->pci_priv->xtal_hz >> (brr >> 8);
  994. bps /= (brr & 0x3f) + 1;
  995. ifr->ifr_ifru.ifru_ivalue = bps;
  996. return 0;
  997. }
  998. default:
  999. return -EOPNOTSUPP;
  1000. }
  1001. }
  1002. static int dscc4_change_mtu(struct net_device *dev, int mtu)
  1003. {
  1004. /* FIXME: chainsaw coded... */
  1005. if ((mtu <= 3) || (mtu > 65531))
  1006. return -EINVAL;
  1007.         if(dev->flags & IFF_UP)
  1008.                 return -EBUSY;
  1009. dev->mtu = mtu;
  1010.         return(0);
  1011. }
  1012. static void dscc4_irq(int irq, void *dev_instance, struct pt_regs *ptregs)
  1013. {
  1014. struct net_device *dev = dev_instance;
  1015. struct dscc4_pci_priv *priv;
  1016. u32 ioaddr, state;
  1017. unsigned long flags;
  1018. int i;
  1019. priv = ((struct dscc4_dev_priv *)dev->priv)->pci_priv;
  1020. /* 
  1021.  * FIXME: shorten the protected area (set some bit telling we're
  1022.  * in an interrupt or increment some work-to-do counter etc...)
  1023.  */
  1024. spin_lock_irqsave(&priv->lock, flags);
  1025. ioaddr = dev->base_addr;
  1026. state = readl(ioaddr + GSTAR);
  1027. if (!state)
  1028. goto out;
  1029. writel(state, ioaddr + GSTAR);
  1030. if (state & Arf) { 
  1031. printk(KERN_ERR "%s: failure (Arf). Harass the maintenern",
  1032.        dev->name);
  1033. goto out;
  1034. }
  1035. state &= ~ArAck;
  1036. if (state & Cfg) {
  1037. if (debug)
  1038. printk(KERN_DEBUG "CfgIVn");
  1039. if (priv->iqcfg[priv->cfg_cur++%IRQ_RING_SIZE] & Arf)
  1040. printk(KERN_ERR "%s: %s failedn", dev->name, "CFG");
  1041. if (!(state &= ~Cfg))
  1042. goto out;
  1043. }
  1044. if (state & RxEvt) {
  1045. i = dev_per_card - 1;
  1046. do {
  1047. dscc4_rx_irq(priv, dev + i);
  1048. } while (--i >= 0);
  1049. state &= ~RxEvt;
  1050. }
  1051. if (state & TxEvt) {
  1052. i = dev_per_card - 1;
  1053. do {
  1054. dscc4_tx_irq(priv, dev + i);
  1055. } while (--i >= 0);
  1056. state &= ~TxEvt;
  1057. }
  1058. out:
  1059. spin_unlock_irqrestore(&priv->lock, flags);
  1060. }
  1061. static __inline__ void dscc4_tx_irq(struct dscc4_pci_priv *ppriv, 
  1062.     struct net_device *dev)
  1063. {
  1064. struct dscc4_dev_priv *dpriv = dev->priv;
  1065. u32 state;
  1066. int cur, loop = 0;
  1067. try:
  1068. cur = dpriv->iqtx_current%IRQ_RING_SIZE;
  1069. state = dpriv->iqtx[cur];
  1070. if (!state) {
  1071. #ifdef DEBUG
  1072. if (loop > 1)
  1073. printk(KERN_DEBUG "%s: Tx irq loop=%dn", dev->name, loop);
  1074. #endif
  1075. if (loop && netif_queue_stopped(dev))
  1076. if ((dpriv->tx_dirty + 8) >= dpriv->tx_current)
  1077. netif_wake_queue(dev);
  1078. return;
  1079. }
  1080. loop++;
  1081. dpriv->iqtx[cur] = 0;
  1082. dpriv->iqtx_current++;
  1083. #ifdef DEBUG_PARANOID
  1084. if (SOURCE_ID(state) != dpriv->dev_id) {
  1085. printk(KERN_DEBUG "%s (Tx): Source Id=%d, state=%08xn",
  1086.        dev->name, SOURCE_ID(state), state );
  1087. return;
  1088. }
  1089. if (state & 0x0df80c00) {
  1090. printk(KERN_DEBUG "%s (Tx): state=%08x (UFO alert)n",
  1091.        dev->name, state);
  1092. return;
  1093. }
  1094. #endif
  1095. // state &= 0x0fffffff; /* Tracking the analyzed bits */
  1096. if (state & SccEvt) {
  1097. if (state & Alls) {
  1098. struct TxFD *tx_fd;
  1099. struct sk_buff *skb;
  1100. cur = dpriv->tx_dirty%TX_RING_SIZE;
  1101. tx_fd = dpriv->tx_fd + cur;
  1102. skb = dpriv->tx_skbuff[cur];
  1103. /* XXX: hideous kludge - to be removed "later" */
  1104. if (!skb) {
  1105. printk(KERN_ERR "%s: NULL skb in tx_irq at index %dn", dev->name, cur);
  1106. goto try;
  1107. }
  1108. dpriv->tx_dirty++; // MUST be after skb test
  1109. /* Happens sometime. Don't know what triggers it */
  1110. if (!(tx_fd->complete & DataComplete)) {
  1111. u32 ioaddr, isr;
  1112. ioaddr = dev->base_addr + 
  1113.  SCC_REG_START(dpriv->dev_id) + ISR;
  1114. isr = readl(ioaddr);
  1115. printk(KERN_DEBUG 
  1116.        "%s: DataComplete=0 cur=%d isr=%08x state=%08xn",
  1117.        dev->name, cur, isr, state);
  1118. writel(isr, ioaddr);
  1119. dpriv->stats.tx_dropped++;
  1120. } else {
  1121. tx_fd->complete &= ~DataComplete;
  1122. if (tx_fd->state & FrameEnd) {
  1123. dpriv->stats.tx_packets++;
  1124. dpriv->stats.tx_bytes += skb->len;
  1125. }
  1126. }
  1127. dpriv->tx_skbuff[cur] = NULL;
  1128. pci_unmap_single(ppriv->pdev, tx_fd->data, skb->len,
  1129.  PCI_DMA_TODEVICE);
  1130. tx_fd->data = 0; /* DEBUG */
  1131. dev_kfree_skb_irq(skb);
  1132. { // DEBUG
  1133. cur = (dpriv->tx_dirty-1)%TX_RING_SIZE;
  1134. tx_fd = dpriv->tx_fd + cur;
  1135. tx_fd->state |= Hold;
  1136. }
  1137. if (!(state &= ~Alls))
  1138. goto try;
  1139. }
  1140. /* 
  1141.  * Transmit Data Underrun
  1142.  */
  1143. if (state & Xdu) {
  1144. printk(KERN_ERR "dscc4: XDU. Contact maintainern");
  1145. dpriv->flags = NeedIDT; 
  1146. /* Tx reset */
  1147. writel(MTFi | Rdt, 
  1148.        dev->base_addr + 0x0c*dpriv->dev_id + CH0CFG);
  1149. writel(0x00000001, dev->base_addr + GCMDR);
  1150. return;
  1151. }
  1152. if (state & Xmr) {
  1153. /* Frame needs to be sent again - FIXME */
  1154. //dscc4_start_xmit(dpriv->tx_skbuff[dpriv->tx_dirty], dev);
  1155. if (!(state &= ~0x00002000)) /* DEBUG */
  1156. goto try;
  1157. }
  1158. if (state & Xpr) {
  1159. unsigned long ioaddr = dev->base_addr;
  1160. unsigned long scc_offset;
  1161. u32 scc_addr;
  1162. scc_offset = ioaddr + SCC_REG_START(dpriv->dev_id);
  1163. scc_addr = ioaddr + 0x0c*dpriv->dev_id;
  1164. if (readl(scc_offset + STAR) & SccBusy)
  1165. printk(KERN_DEBUG "%s busy. Fataln", 
  1166.        dev->name);
  1167. /*
  1168.  * Keep this order: IDT before IDR
  1169.  */
  1170. if (dpriv->flags & NeedIDT) {
  1171. writel(MTFi | Idt, scc_addr + CH0CFG);
  1172. writel(dpriv->tx_fd_dma + 
  1173.        (dpriv->tx_dirty%TX_RING_SIZE)*
  1174.        sizeof(struct TxFD), scc_addr + CH0BTDA);
  1175. if(dscc4_do_action(dev, "IDT"))
  1176. goto err_xpr;
  1177. dpriv->flags &= ~NeedIDT;
  1178. mb();
  1179. }
  1180. if (dpriv->flags & NeedIDR) {
  1181. writel(MTFi | Idr, scc_addr + CH0CFG);
  1182. writel(dpriv->rx_fd_dma + 
  1183.        (dpriv->rx_current%RX_RING_SIZE)*
  1184.        sizeof(struct RxFD), scc_addr + CH0BRDA);
  1185. if(dscc4_do_action(dev, "IDR"))
  1186. goto err_xpr;
  1187. dpriv->flags &= ~NeedIDR;
  1188. mb();
  1189. /* Activate receiver and misc */
  1190. writel(0x08050008, scc_offset + CCR2);
  1191. }
  1192. err_xpr:
  1193. if (!(state &= ~Xpr))
  1194. goto try;
  1195. }
  1196. } else { /* ! SccEvt */
  1197. if (state & Hi) {
  1198. #ifdef EXPERIMENTAL_POLLING
  1199. while(!dscc4_tx_poll(dpriv, dev));
  1200. #endif
  1201. state &= ~Hi;
  1202. }
  1203. /*
  1204.  * FIXME: it may be avoided. Re-re-re-read the manual.
  1205.  */
  1206. if (state & Err) {
  1207. printk(KERN_ERR "%s: Tx ERRn", dev->name);
  1208. dpriv->stats.tx_errors++;
  1209. state &= ~Err;
  1210. }
  1211. }
  1212. goto try;
  1213. }
  1214. static __inline__ void dscc4_rx_irq(struct dscc4_pci_priv *priv, struct net_device *dev)
  1215. {
  1216. struct dscc4_dev_priv *dpriv = dev->priv;
  1217. u32 state;
  1218. int cur;
  1219. try:
  1220. cur = dpriv->iqrx_current%IRQ_RING_SIZE;
  1221. state = dpriv->iqrx[cur];
  1222. if (!state)
  1223. return;
  1224. dpriv->iqrx[cur] = 0;
  1225. dpriv->iqrx_current++;
  1226. #ifdef DEBUG_PARANOID
  1227. if (SOURCE_ID(state) != dpriv->dev_id) {
  1228. printk(KERN_DEBUG "%s (Rx): Source Id=%d, state=%08xn",
  1229.        dev->name, SOURCE_ID(state), state);
  1230. goto try;
  1231. }
  1232. if (state & 0x0df80c00) {
  1233. printk(KERN_DEBUG "%s (Rx): state=%08x (UFO alert)n",
  1234.        dev->name, state);
  1235. goto try;
  1236. }
  1237. #endif
  1238. if (!(state & SccEvt)){
  1239. struct RxFD *rx_fd;
  1240. state &= 0x00ffffff;
  1241. if (state & Err) { /* Hold or reset */
  1242. printk(KERN_DEBUG "%s (Rx): ERRn", dev->name);
  1243. cur = dpriv->rx_current;
  1244. rx_fd = dpriv->rx_fd + cur;
  1245. /*
  1246.  * Presume we're not facing a DMAC receiver reset. 
  1247.  * As We use the rx size-filtering feature of the 
  1248.  * DSCC4, the beginning of a new frame is waiting in 
  1249.  * the rx fifo. I bet a Receive Data Overflow will 
  1250.  * happen most of time but let's try and avoid it.
  1251.  * Btw (as for RDO) if one experiences ERR whereas
  1252.  * the system looks rather idle, there may be a 
  1253.  * problem with latency. In this case, increasing
  1254.  * RX_RING_SIZE may help.
  1255.  */
  1256. while (dpriv->rx_needs_refill) {
  1257. while(!(rx_fd->state1 & Hold)) {
  1258. rx_fd++;
  1259. cur++;
  1260. if (!(cur = cur%RX_RING_SIZE))
  1261. rx_fd = dpriv->rx_fd;
  1262. }
  1263. dpriv->rx_needs_refill--;
  1264. try_get_rx_skb(dpriv, cur, dev);
  1265. if (!rx_fd->data)
  1266. goto try;
  1267. rx_fd->state1 &= ~Hold;
  1268. rx_fd->state2 = 0x00000000;
  1269. rx_fd->end = 0xbabeface;
  1270. }
  1271. goto try;
  1272. }
  1273. if (state & Fi) {
  1274. cur = dpriv->rx_current%RX_RING_SIZE;
  1275. rx_fd = dpriv->rx_fd + cur;
  1276. dscc4_rx_skb(dpriv, cur, rx_fd, dev);
  1277. dpriv->rx_current++;
  1278. goto try;
  1279. }
  1280. if (state & Hi ) { /* HI bit */
  1281. state &= ~Hi;
  1282. goto try;
  1283. }
  1284. } else { /* ! SccEvt */
  1285. #ifdef DEBUG_PARANOIA
  1286. int i;
  1287. static struct {
  1288. u32 mask;
  1289. const char *irq_name;
  1290. } evts[] = {
  1291. { 0x00008000, "TIN"},
  1292. { 0x00004000, "CSC"},
  1293. { 0x00000020, "RSC"},
  1294. { 0x00000010, "PCE"},
  1295. { 0x00000008, "PLLA"},
  1296. { 0x00000004, "CDSC"},
  1297. { 0, NULL}
  1298. };
  1299. #endif /* DEBUG_PARANOIA */
  1300. state &= 0x00ffffff;
  1301. #ifdef DEBUG_PARANOIA
  1302. for (i = 0; evts[i].irq_name; i++) {
  1303. if (state & evts[i].mask) {
  1304. printk(KERN_DEBUG "dscc4(%s): %sn",
  1305. dev->name, evts[i].irq_name);
  1306. if (!(state &= ~evts[i].mask))
  1307. goto try;
  1308. }
  1309. }
  1310. #endif /* DEBUG_PARANOIA */
  1311. /*
  1312.  * Receive Data Overflow (FIXME: untested)
  1313.  */
  1314. if (state & Rdo) {
  1315. u32 ioaddr, scc_offset, scc_addr;
  1316. struct RxFD *rx_fd;
  1317. int cur;
  1318. //if (debug)
  1319. // dscc4_rx_dump(dpriv);
  1320. ioaddr = dev->base_addr;
  1321. scc_addr = ioaddr + 0x0c*dpriv->dev_id;
  1322. scc_offset = ioaddr + SCC_REG_START(dpriv->dev_id);
  1323. writel(readl(scc_offset + CCR2) & ~RxActivate, 
  1324.        scc_offset + CCR2);
  1325. /*
  1326.  * This has no effect. Why ?
  1327.  * ORed with TxSccRes, one sees the CFG ack (for
  1328.  * the TX part only).
  1329.  */
  1330. writel(RxSccRes, scc_offset + CMDR);
  1331. dpriv->flags |= RdoSet;
  1332. /* 
  1333.  * Let's try and save something in the received data.
  1334.  * rx_current must be incremented at least once to
  1335.  * avoid HOLD in the BRDA-to-be-pointed desc.
  1336.  */
  1337. do {
  1338. cur = dpriv->rx_current++%RX_RING_SIZE;
  1339. rx_fd = dpriv->rx_fd + cur;
  1340. if (!(rx_fd->state2 & DataComplete))
  1341. break;
  1342. if (rx_fd->state2 & FrameAborted) {
  1343. dpriv->stats.rx_over_errors++;
  1344. rx_fd->state1 |= Hold;
  1345. rx_fd->state2 = 0x00000000;
  1346. rx_fd->end = 0xbabeface;
  1347. } else 
  1348. dscc4_rx_skb(dpriv, cur, rx_fd, dev);
  1349. } while (1);
  1350. if (debug) {
  1351. if (dpriv->flags & RdoSet)
  1352. printk(KERN_DEBUG 
  1353.        "dscc4: no RDO in Rx datan");
  1354. }
  1355. #ifdef DSCC4_RDO_EXPERIMENTAL_RECOVERY
  1356. /*
  1357.  * FIXME: must the reset be this violent ?
  1358.  */
  1359. writel(dpriv->rx_fd_dma + 
  1360.        (dpriv->rx_current%RX_RING_SIZE)*
  1361.        sizeof(struct RxFD), scc_addr + CH0BRDA);
  1362. writel(MTFi|Rdr|Idr, scc_addr + CH0CFG);
  1363. if(dscc4_do_action(dev, "RDR")) {
  1364. printk(KERN_ERR "%s: RDO recovery failed(%s)n",
  1365.        dev->name, "RDR");
  1366. goto rdo_end;
  1367. }
  1368. writel(MTFi|Idr, scc_addr + CH0CFG);
  1369. if(dscc4_do_action(dev, "IDR")) {
  1370. printk(KERN_ERR "%s: RDO recovery failed(%s)n",
  1371.        dev->name, "IDR");
  1372. goto rdo_end;
  1373. }
  1374. rdo_end:
  1375. #endif
  1376. writel(readl(scc_offset + CCR2) | RxActivate, 
  1377.        scc_offset + CCR2);
  1378. goto try;
  1379. }
  1380. /* These will be used later */
  1381. if (state & Rfs) {
  1382. if (!(state &= ~Rfs))
  1383. goto try;
  1384. }
  1385. if (state & Rfo) {
  1386. if (!(state &= ~Rfo))
  1387. goto try;
  1388. }
  1389. if (state & Flex) {
  1390. if (!(state &= ~Flex))
  1391. goto try;
  1392. }
  1393. }
  1394. }
  1395. static int dscc4_init_ring(struct net_device *dev)
  1396. {
  1397. struct dscc4_dev_priv *dpriv = (struct dscc4_dev_priv *)dev->priv;
  1398. struct TxFD *tx_fd;
  1399. struct RxFD *rx_fd;
  1400. int i;
  1401. tx_fd = (struct TxFD *) pci_alloc_consistent(dpriv->pci_priv->pdev,
  1402. TX_RING_SIZE*sizeof(struct TxFD), &dpriv->tx_fd_dma);
  1403. if (!tx_fd)
  1404. goto err_out;
  1405. rx_fd = (struct RxFD *) pci_alloc_consistent(dpriv->pci_priv->pdev,
  1406. RX_RING_SIZE*sizeof(struct RxFD), &dpriv->rx_fd_dma);
  1407. if (!rx_fd)
  1408. goto err_free_dma_tx;
  1409. dpriv->tx_fd = tx_fd;
  1410. dpriv->rx_fd = rx_fd;
  1411. dpriv->rx_current = 0;
  1412. dpriv->tx_current = 0;
  1413. dpriv->tx_dirty = 0;
  1414. /* the dma core of the dscc4 will be locked on the first desc */
  1415. for(i = 0; i < TX_RING_SIZE; ) {
  1416. reset_TxFD(tx_fd);
  1417.         /* FIXME: NULL should be ok - to be tried */
  1418.         tx_fd->data = dpriv->tx_fd_dma;
  1419.         dpriv->tx_skbuff[i] = NULL;
  1420. i++;
  1421. tx_fd->next = (u32)(dpriv->tx_fd_dma + i*sizeof(struct TxFD));
  1422. tx_fd++;
  1423. }
  1424. (--tx_fd)->next = (u32)dpriv->tx_fd_dma;
  1425. {
  1426. /*
  1427.  * XXX: I would expect the following to work for the first descriptor
  1428.  * (tx_fd->state = 0xc0000000)
  1429.  * - Hold=1 (don't try and branch to the next descripto);
  1430.  * - No=0 (I want an empty data section, i.e. size=0);
  1431.  * - Fe=1 (required by No=0 or we got an Err irq and must reset).
  1432.  * Alas, it fails (and locks solid). Thus the introduction of a dummy
  1433.  * skb to avoid No=0 (choose one: Ugly [ ] Tasteless [ ] VMS [ ]).
  1434.  * TODO: fiddle the tx threshold when time permits.
  1435.  */
  1436. struct sk_buff *skb;
  1437. skb = dev_alloc_skb(32);
  1438. if (!skb)
  1439. goto err_free_dma_tx;
  1440. skb->len = 32;
  1441. memset(skb->data, 0xaa, 16);
  1442. tx_fd -= (TX_RING_SIZE - 1);
  1443. tx_fd->state = 0xc0000000;
  1444. tx_fd->state |= ((u32)(skb->len & TxSizeMax)) << 16;
  1445. tx_fd->data = pci_map_single(dpriv->pci_priv->pdev, skb->data, 
  1446.      skb->len, PCI_DMA_TODEVICE);
  1447. dpriv->tx_skbuff[0] = skb;
  1448. }
  1449. for (i = 0; i < RX_RING_SIZE;) {
  1450. /* size set by the host. Multiple of 4 bytes please */
  1451.         rx_fd->state1 = HiDesc; /* Hi, no Hold */
  1452.         rx_fd->state2 = 0x00000000;
  1453.         rx_fd->end = 0xbabeface;
  1454.         rx_fd->state1 |= ((u32)(HDLC_MAX_MRU & RxSizeMax)) << 16;
  1455. try_get_rx_skb(dpriv, i, dev);
  1456. i++;
  1457. rx_fd->next = (u32)(dpriv->rx_fd_dma + i*sizeof(struct RxFD));
  1458. rx_fd++;
  1459. }
  1460. (--rx_fd)->next = (u32)dpriv->rx_fd_dma;
  1461. rx_fd->state1 |= 0x40000000; /* Hold */
  1462. return 0;
  1463. err_free_dma_tx:
  1464. pci_free_consistent(dpriv->pci_priv->pdev, TX_RING_SIZE*sizeof(*tx_fd),
  1465.     tx_fd, dpriv->tx_fd_dma);
  1466. err_out:
  1467. return -1;
  1468. }
  1469. static struct net_device_stats *dscc4_get_stats(struct net_device *dev)
  1470. {
  1471. struct dscc4_dev_priv *priv = (struct dscc4_dev_priv *)dev->priv;
  1472. return &priv->stats;
  1473. }
  1474. static void __exit dscc4_remove_one(struct pci_dev *pdev)
  1475. {
  1476. struct dscc4_pci_priv *ppriv;
  1477. struct net_device *root;
  1478. int i;
  1479. ppriv = pci_get_drvdata(pdev);
  1480. root = ppriv->root;
  1481. free_irq(pdev->irq, root);
  1482. pci_free_consistent(pdev, IRQ_RING_SIZE*sizeof(u32), ppriv->iqcfg, 
  1483.     ppriv->iqcfg_dma);
  1484. for (i=0; i < dev_per_card; i++) {
  1485. struct dscc4_dev_priv *dpriv;
  1486. struct net_device *dev;
  1487. dev = ppriv->root + i;
  1488. dscc4_unattach_hdlc_device(dev);
  1489. dpriv = (struct dscc4_dev_priv *)dev->priv;
  1490. pci_free_consistent(pdev, IRQ_RING_SIZE*sizeof(u32), 
  1491.     dpriv->iqrx, dpriv->iqrx_dma);
  1492. pci_free_consistent(pdev, IRQ_RING_SIZE*sizeof(u32), 
  1493.     dpriv->iqtx, dpriv->iqtx_dma);
  1494. unregister_netdev(dev);
  1495. }
  1496. kfree(root->priv);
  1497. iounmap((void *)root->base_addr);
  1498. kfree(root);
  1499. kfree(ppriv);
  1500. release_mem_region(pci_resource_start(pdev, 1),
  1501.    pci_resource_len(pdev, 1));
  1502. release_mem_region(pci_resource_start(pdev, 0),
  1503.    pci_resource_len(pdev, 0));
  1504. }
  1505. static int dscc4_hdlc_ioctl(struct hdlc_device_struct *hdlc, struct ifreq *ifr, int cmd)
  1506. {
  1507. struct net_device *dev = (struct net_device *)hdlc->netdev.base_addr;
  1508. int result;
  1509. /* FIXME: locking ? */
  1510. result = dscc4_ioctl(dev, ifr, cmd);
  1511. return result;
  1512. }
  1513. static int dscc4_hdlc_open(struct hdlc_device_struct *hdlc)
  1514. {
  1515. struct net_device *dev = (struct net_device *)(hdlc->netdev.base_addr);
  1516.         if (netif_running(dev)) {
  1517. printk(KERN_DEBUG "%s: already runningn", dev->name); // DEBUG
  1518. return 0;
  1519. }
  1520. return dscc4_open(dev);
  1521. }
  1522. static int dscc4_hdlc_xmit(hdlc_device *hdlc, struct sk_buff *skb)
  1523. {
  1524. struct net_device *dev = (struct net_device *)hdlc->netdev.base_addr;
  1525. return dscc4_start_xmit(skb, dev);
  1526. }
  1527. static void dscc4_hdlc_close(struct hdlc_device_struct *hdlc)
  1528. {
  1529. struct net_device *dev = (struct net_device *)hdlc->netdev.base_addr;
  1530. struct dscc4_dev_priv *dpriv;
  1531. dpriv = dev->priv;
  1532. --dpriv->usecount;
  1533. }
  1534. /* Operated under dev lock */
  1535. static int dscc4_attach_hdlc_device(struct net_device *dev) 
  1536. {
  1537. struct dscc4_dev_priv *dpriv = dev->priv;
  1538. struct hdlc_device_struct *hdlc;
  1539. int result;
  1540. hdlc = &dpriv->hdlc;
  1541. /* XXX: Don't look at the next line */
  1542. hdlc->netdev.base_addr = (unsigned long)dev;
  1543. hdlc->set_mode = NULL;
  1544. hdlc->open = dscc4_hdlc_open;
  1545. hdlc->close = dscc4_hdlc_close;
  1546. hdlc->ioctl = dscc4_hdlc_ioctl;
  1547. hdlc->xmit = dscc4_hdlc_xmit;
  1548. result = register_hdlc_device(hdlc);
  1549. if (!result)
  1550. dpriv->usecount++;
  1551. return result;
  1552. }
  1553. /* Operated under dev lock */
  1554. static void dscc4_unattach_hdlc_device(struct net_device *dev) 
  1555. {
  1556. struct dscc4_dev_priv *dpriv = dev->priv;
  1557. unregister_hdlc_device(&dpriv->hdlc);
  1558. dpriv->usecount--;
  1559. }
  1560. static struct pci_device_id dscc4_pci_tbl[] __devinitdata = {
  1561. { PCI_VENDOR_ID_SIEMENS, PCI_DEVICE_ID_SIEMENS_DSCC4,
  1562.         PCI_ANY_ID, PCI_ANY_ID, },
  1563. { 0,}
  1564. };
  1565. MODULE_DEVICE_TABLE(pci, dscc4_pci_tbl);
  1566. static struct pci_driver dscc4_driver = {
  1567. name:           "dscc4",
  1568. id_table:       dscc4_pci_tbl,
  1569. probe:          dscc4_init_one,
  1570. remove:         dscc4_remove_one,
  1571. };
  1572. static int __init dscc4_init_module(void)
  1573. {
  1574. return pci_module_init(&dscc4_driver);
  1575. }
  1576. static void __exit dscc4_cleanup_module(void)
  1577. {
  1578. pci_unregister_driver(&dscc4_driver);
  1579. }
  1580. module_init(dscc4_init_module);
  1581. module_exit(dscc4_cleanup_module);