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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* drivers/atm/eni.c - Efficient Networks ENI155P device driver */
  2.  
  3. /* Written 1995-2000 by Werner Almesberger, EPFL LRC/ICA */
  4.  
  5. #include <linux/module.h>
  6. #include <linux/config.h>
  7. #include <linux/kernel.h>
  8. #include <linux/mm.h>
  9. #include <linux/pci.h>
  10. #include <linux/errno.h>
  11. #include <linux/atm.h>
  12. #include <linux/atmdev.h>
  13. #include <linux/sonet.h>
  14. #include <linux/skbuff.h>
  15. #include <linux/time.h>
  16. #include <linux/sched.h> /* for xtime */
  17. #include <linux/delay.h>
  18. #include <linux/uio.h>
  19. #include <linux/init.h>
  20. #include <linux/atm_eni.h>
  21. #include <linux/bitops.h>
  22. #include <asm/system.h>
  23. #include <asm/io.h>
  24. #include <asm/atomic.h>
  25. #include <asm/uaccess.h>
  26. #include <asm/string.h>
  27. #include <asm/byteorder.h>
  28. #include "tonga.h"
  29. #include "midway.h"
  30. #include "suni.h"
  31. #include "eni.h"
  32. #if !defined(__i386__) && !defined(__x86_64__)
  33. #ifndef ioremap_nocache
  34. #define ioremap_nocache(X,Y) ioremap(X,Y)
  35. #endif 
  36. #endif
  37. /*
  38.  * TODO:
  39.  *
  40.  * Show stoppers
  41.  *  none
  42.  *
  43.  * Minor
  44.  *  - OAM support
  45.  *  - fix bugs listed below
  46.  */
  47. /*
  48.  * KNOWN BUGS:
  49.  *
  50.  * - may run into JK-JK bug and deadlock
  51.  * - should allocate UBR channel first
  52.  * - buffer space allocation algorithm is stupid
  53.  *   (RX: should be maxSDU+maxdelay*rate
  54.  *    TX: should be maxSDU+min(maxSDU,maxdelay*rate) )
  55.  * - doesn't support OAM cells
  56.  * - eni_put_free may hang if not putting memory fragments that _complete_
  57.  *   2^n block (never happens in real life, though)
  58.  * - keeps IRQ even if initialization fails
  59.  */
  60. #if 0
  61. #define DPRINTK(format,args...) printk(KERN_DEBUG format,##args)
  62. #else
  63. #define DPRINTK(format,args...)
  64. #endif
  65. #ifndef CONFIG_ATM_ENI_TUNE_BURST
  66. #define CONFIG_ATM_ENI_BURST_TX_8W
  67. #define CONFIG_ATM_ENI_BURST_RX_4W
  68. #endif
  69. #ifndef CONFIG_ATM_ENI_DEBUG
  70. #define NULLCHECK(x)
  71. #define EVENT(s,a,b)
  72. static void event_dump(void)
  73. {
  74. }
  75. #else
  76. /* 
  77.  * NULL pointer checking
  78.  */
  79. #define NULLCHECK(x) 
  80. if ((unsigned long) (x) < 0x30) 
  81. printk(KERN_CRIT #x "==0x%lxn",(unsigned long) (x))
  82. /*
  83.  * Very extensive activity logging. Greatly improves bug detection speed but
  84.  * costs a few Mbps if enabled.
  85.  */
  86. #define EV 64
  87. static const char *ev[EV];
  88. static unsigned long ev_a[EV],ev_b[EV];
  89. static int ec = 0;
  90. static void EVENT(const char *s,unsigned long a,unsigned long b)
  91. {
  92. ev[ec] = s; 
  93. ev_a[ec] = a;
  94. ev_b[ec] = b;
  95. ec = (ec+1) % EV;
  96. }
  97. static void event_dump(void)
  98. {
  99. int n,i;
  100. for (n = 0; n < EV; n++) {
  101. i = (ec+n) % EV;
  102. printk(KERN_NOTICE);
  103. printk(ev[i] ? ev[i] : "(null)",ev_a[i],ev_b[i]);
  104. }
  105. }
  106. #endif /* CONFIG_ATM_ENI_DEBUG */
  107. /*
  108.  * NExx   must not be equal at end
  109.  * EExx   may be equal at end
  110.  * xxPJOK verify validity of pointer jumps
  111.  * xxPMOK operating on a circular buffer of "c" words
  112.  */
  113. #define NEPJOK(a0,a1,b) 
  114.     ((a0) < (a1) ? (b) <= (a0) || (b) > (a1) : (b) <= (a0) && (b) > (a1))
  115. #define EEPJOK(a0,a1,b) 
  116.     ((a0) < (a1) ? (b) < (a0) || (b) >= (a1) : (b) < (a0) && (b) >= (a1))
  117. #define NEPMOK(a0,d,b,c) NEPJOK(a0,(a0+d) & (c-1),b)
  118. #define EEPMOK(a0,d,b,c) EEPJOK(a0,(a0+d) & (c-1),b)
  119. static int tx_complete = 0,dma_complete = 0,queued = 0,requeued = 0,
  120.   backlogged = 0,rx_enqueued = 0,rx_dequeued = 0,pushed = 0,submitted = 0,
  121.   putting = 0;
  122. static struct atm_dev *eni_boards = NULL;
  123. static u32 *cpu_zeroes = NULL; /* aligned "magic" zeroes */
  124. static dma_addr_t zeroes;
  125. /* Read/write registers on card */
  126. #define eni_in(r) readl(eni_dev->reg+(r)*4)
  127. #define eni_out(v,r) writel((v),eni_dev->reg+(r)*4)
  128. /*-------------------------------- utilities --------------------------------*/
  129. static void dump_mem(struct eni_dev *eni_dev)
  130. {
  131. int i;
  132. for (i = 0; i < eni_dev->free_len; i++)
  133. printk(KERN_DEBUG "  %d: 0x%lx %dn",i,
  134.     eni_dev->free_list[i].start,
  135.     1 << eni_dev->free_list[i].order);
  136. }
  137. static void dump(struct atm_dev *dev)
  138. {
  139. struct eni_dev *eni_dev;
  140. int i;
  141. eni_dev = ENI_DEV(dev);
  142. printk(KERN_NOTICE "Free memoryn");
  143. dump_mem(eni_dev);
  144. printk(KERN_NOTICE "TX buffersn");
  145. for (i = 0; i < NR_CHAN; i++)
  146. if (eni_dev->tx[i].send)
  147. printk(KERN_NOTICE "  TX %d @ 0x%lx: %ldn",i,
  148.     eni_dev->tx[i].send,eni_dev->tx[i].words*4);
  149. printk(KERN_NOTICE "RX buffersn");
  150. for (i = 0; i < 1024; i++)
  151. if (eni_dev->rx_map[i] && ENI_VCC(eni_dev->rx_map[i])->rx)
  152. printk(KERN_NOTICE "  RX %d @ 0x%lx: %ldn",i,
  153.     ENI_VCC(eni_dev->rx_map[i])->recv,
  154.     ENI_VCC(eni_dev->rx_map[i])->words*4);
  155. printk(KERN_NOTICE "----n");
  156. }
  157. static void eni_put_free(struct eni_dev *eni_dev,unsigned long start,
  158.     unsigned long size)
  159. {
  160. struct eni_free *list;
  161. int len,order;
  162. DPRINTK("init 0x%lx+%ld(0x%lx)n",start,size,size);
  163. start += eni_dev->base_diff;
  164. list = eni_dev->free_list;
  165. len = eni_dev->free_len;
  166. while (size) {
  167. if (len >= eni_dev->free_list_size) {
  168. printk(KERN_CRIT "eni_put_free overflow (0x%lx,%ld)n",
  169.     start,size);
  170. break;
  171. }
  172. for (order = 0; !((start | size) & (1 << order)); order++);
  173. if (MID_MIN_BUF_SIZE > (1 << order)) {
  174. printk(KERN_CRIT "eni_put_free: order %d too smalln",
  175.     order);
  176. break;
  177. }
  178. list[len].start = start;
  179. list[len].order = order;
  180. len++;
  181. start += 1 << order;
  182. size -= 1 << order;
  183. }
  184. eni_dev->free_len = len;
  185. /*dump_mem(eni_dev);*/
  186. }
  187. static unsigned long eni_alloc_mem(struct eni_dev *eni_dev,unsigned long *size)
  188. {
  189. struct eni_free *list;
  190. unsigned long start;
  191. int len,i,order,best_order,index;
  192. list = eni_dev->free_list;
  193. len = eni_dev->free_len;
  194. if (*size < MID_MIN_BUF_SIZE) *size = MID_MIN_BUF_SIZE;
  195. if (*size > MID_MAX_BUF_SIZE) return 0;
  196. for (order = 0; (1 << order) < *size; order++);
  197. DPRINTK("trying: %ld->%dn",*size,order);
  198. best_order = 65; /* we don't have more than 2^64 of anything ... */
  199. index = 0; /* silence GCC */
  200. for (i = 0; i < len; i++)
  201. if (list[i].order == order) {
  202. best_order = order;
  203. index = i;
  204. break;
  205. }
  206. else if (best_order > list[i].order && list[i].order > order) {
  207. best_order = list[i].order;
  208. index = i;
  209. }
  210. if (best_order == 65) return 0;
  211. start = list[index].start-eni_dev->base_diff;
  212. list[index] = list[--len];
  213. eni_dev->free_len = len;
  214. *size = 1 << order;
  215. eni_put_free(eni_dev,start+*size,(1 << best_order)-*size);
  216. DPRINTK("%ld bytes (order %d) at 0x%lxn",*size,order,start);
  217. memset_io(start,0,*size);       /* never leak data */
  218. /*dump_mem(eni_dev);*/
  219. return start;
  220. }
  221. static void eni_free_mem(struct eni_dev *eni_dev,unsigned long start,
  222.     unsigned long size)
  223. {
  224. struct eni_free *list;
  225. int len,i,order;
  226. start += eni_dev->base_diff;
  227. list = eni_dev->free_list;
  228. len = eni_dev->free_len;
  229. for (order = -1; size; order++) size >>= 1;
  230. DPRINTK("eni_free_mem: 0x%lx+0x%lx (order %d)n",start,size,order);
  231. for (i = 0; i < len; i++)
  232. if (list[i].start == (start^(1 << order)) &&
  233.     list[i].order == order) {
  234. DPRINTK("match[%d]: 0x%lx/0x%lx(0x%x), %d/%dn",i,
  235.     list[i].start,start,1 << order,list[i].order,order);
  236. list[i] = list[--len];
  237. start &= ~(unsigned long) (1 << order);
  238. order++;
  239. i = -1;
  240. continue;
  241. }
  242. if (len >= eni_dev->free_list_size) {
  243. printk(KERN_ALERT "eni_free_mem overflow (0x%lx,%d)n",start,
  244.     order);
  245. return;
  246. }
  247. list[len].start = start;
  248. list[len].order = order;
  249. eni_dev->free_len = len+1;
  250. /*dump_mem(eni_dev);*/
  251. }
  252. /*----------------------------------- RX ------------------------------------*/
  253. #define ENI_VCC_NOS ((struct atm_vcc *) 1)
  254. static void rx_ident_err(struct atm_vcc *vcc)
  255. {
  256. struct atm_dev *dev;
  257. struct eni_dev *eni_dev;
  258. struct eni_vcc *eni_vcc;
  259. dev = vcc->dev;
  260. eni_dev = ENI_DEV(dev);
  261. /* immediately halt adapter */
  262. eni_out(eni_in(MID_MC_S) &
  263.     ~(MID_DMA_ENABLE | MID_TX_ENABLE | MID_RX_ENABLE),MID_MC_S);
  264. /* dump useful information */
  265. eni_vcc = ENI_VCC(vcc);
  266. printk(KERN_ALERT DEV_LABEL "(itf %d): driver error - RX ident "
  267.     "mismatchn",dev->number);
  268. printk(KERN_ALERT "  VCI %d, rxing %d, words %ldn",vcc->vci,
  269.     eni_vcc->rxing,eni_vcc->words);
  270. printk(KERN_ALERT "  host descr 0x%lx, rx pos 0x%lx, descr value "
  271.     "0x%xn",eni_vcc->descr,eni_vcc->rx_pos,
  272.     (unsigned) readl(eni_vcc->recv+eni_vcc->descr*4));
  273. printk(KERN_ALERT "  last 0x%p, servicing %dn",eni_vcc->last,
  274.     eni_vcc->servicing);
  275. EVENT("---dump ends here---n",0,0);
  276. printk(KERN_NOTICE "---recent events---n");
  277. event_dump();
  278. ENI_DEV(dev)->fast = NULL; /* really stop it */
  279. ENI_DEV(dev)->slow = NULL;
  280. skb_queue_head_init(&ENI_DEV(dev)->rx_queue);
  281. }
  282. static int do_rx_dma(struct atm_vcc *vcc,struct sk_buff *skb,
  283.     unsigned long skip,unsigned long size,unsigned long eff)
  284. {
  285. struct eni_dev *eni_dev;
  286. struct eni_vcc *eni_vcc;
  287. u32 dma_rd,dma_wr;
  288. u32 dma[RX_DMA_BUF*2];
  289. dma_addr_t paddr;
  290. unsigned long here;
  291. int i,j;
  292. eni_dev = ENI_DEV(vcc->dev);
  293. eni_vcc = ENI_VCC(vcc);
  294. paddr = 0; /* GCC, shut up */
  295. if (skb) {
  296. paddr = pci_map_single(eni_dev->pci_dev,skb->data,skb->len,
  297.     PCI_DMA_FROMDEVICE);
  298. ENI_PRV_PADDR(skb) = paddr;
  299. if (paddr & 3)
  300. printk(KERN_CRIT DEV_LABEL "(itf %d): VCI %d has "
  301.     "mis-aligned RX data (0x%lx)n",vcc->dev->number,
  302.     vcc->vci,(unsigned long) paddr);
  303. ENI_PRV_SIZE(skb) = size+skip;
  304.     /* PDU plus descriptor */
  305. ATM_SKB(skb)->vcc = vcc;
  306. }
  307. j = 0;
  308. if ((eff && skip) || 1) { /* @@@ actually, skip is always == 1 ... */
  309. here = (eni_vcc->descr+skip) & (eni_vcc->words-1);
  310. dma[j++] = (here << MID_DMA_COUNT_SHIFT) | (vcc->vci
  311.     << MID_DMA_VCI_SHIFT) | MID_DT_JK;
  312. j++;
  313. }
  314. here = (eni_vcc->descr+size+skip) & (eni_vcc->words-1);
  315. if (!eff) size += skip;
  316. else {
  317. unsigned long words;
  318. if (!size) {
  319. DPRINTK("strange things happen ...n");
  320. EVENT("strange things happen ... (skip=%ld,eff=%ld)n",
  321.     size,eff);
  322. }
  323. words = eff;
  324. if (paddr & 15) {
  325. unsigned long init;
  326. init = 4-((paddr & 15) >> 2);
  327. if (init > words) init = words;
  328. dma[j++] = MID_DT_WORD | (init << MID_DMA_COUNT_SHIFT) |
  329.     (vcc->vci << MID_DMA_VCI_SHIFT);
  330. dma[j++] = paddr;
  331. paddr += init << 2;
  332. words -= init;
  333. }
  334. #ifdef CONFIG_ATM_ENI_BURST_RX_16W /* may work with some PCI chipsets ... */
  335. if (words & ~15) {
  336. dma[j++] = MID_DT_16W | ((words >> 4) <<
  337.     MID_DMA_COUNT_SHIFT) | (vcc->vci <<
  338.     MID_DMA_VCI_SHIFT);
  339. dma[j++] = paddr;
  340. paddr += (words & ~15) << 2;
  341. words &= 15;
  342. }
  343. #endif
  344. #ifdef CONFIG_ATM_ENI_BURST_RX_8W  /* works only with *some* PCI chipsets ... */
  345. if (words & ~7) {
  346. dma[j++] = MID_DT_8W | ((words >> 3) <<
  347.     MID_DMA_COUNT_SHIFT) | (vcc->vci <<
  348.     MID_DMA_VCI_SHIFT);
  349. dma[j++] = paddr;
  350. paddr += (words & ~7) << 2;
  351. words &= 7;
  352. }
  353. #endif
  354. #ifdef CONFIG_ATM_ENI_BURST_RX_4W /* recommended */
  355. if (words & ~3) {
  356. dma[j++] = MID_DT_4W | ((words >> 2) <<
  357.     MID_DMA_COUNT_SHIFT) | (vcc->vci <<
  358.     MID_DMA_VCI_SHIFT);
  359. dma[j++] = paddr;
  360. paddr += (words & ~3) << 2;
  361. words &= 3;
  362. }
  363. #endif
  364. #ifdef CONFIG_ATM_ENI_BURST_RX_2W /* probably useless if RX_4W, RX_8W, ... */
  365. if (words & ~1) {
  366. dma[j++] = MID_DT_2W | ((words >> 1) <<
  367.     MID_DMA_COUNT_SHIFT) | (vcc->vci <<
  368.     MID_DMA_VCI_SHIFT);
  369. dma[j++] = paddr;
  370. paddr += (words & ~1) << 2;
  371. words &= 1;
  372. }
  373. #endif
  374. if (words) {
  375. dma[j++] = MID_DT_WORD | (words << MID_DMA_COUNT_SHIFT)
  376.     | (vcc->vci << MID_DMA_VCI_SHIFT);
  377. dma[j++] = paddr;
  378. }
  379. }
  380. if (size != eff) {
  381. dma[j++] = (here << MID_DMA_COUNT_SHIFT) |
  382.     (vcc->vci << MID_DMA_VCI_SHIFT) | MID_DT_JK;
  383. j++;
  384. }
  385. if (!j || j > 2*RX_DMA_BUF) {
  386. printk(KERN_CRIT DEV_LABEL "!j or j too big!!!n");
  387. goto trouble;
  388. }
  389. dma[j-2] |= MID_DMA_END;
  390. j = j >> 1;
  391. dma_wr = eni_in(MID_DMA_WR_RX);
  392. dma_rd = eni_in(MID_DMA_RD_RX);
  393. /*
  394.  * Can I move the dma_wr pointer by 2j+1 positions without overwriting
  395.  * data that hasn't been read (position of dma_rd) yet ?
  396.  */
  397. if (!NEPMOK(dma_wr,j+j+1,dma_rd,NR_DMA_RX)) { /* @@@ +1 is ugly */
  398. printk(KERN_WARNING DEV_LABEL "(itf %d): RX DMA fulln",
  399.     vcc->dev->number);
  400. goto trouble;
  401. }
  402.         for (i = 0; i < j; i++) {
  403. writel(dma[i*2],eni_dev->rx_dma+dma_wr*8);
  404. writel(dma[i*2+1],eni_dev->rx_dma+dma_wr*8+4);
  405. dma_wr = (dma_wr+1) & (NR_DMA_RX-1);
  406.         }
  407. if (skb) {
  408. ENI_PRV_POS(skb) = eni_vcc->descr+size+1;
  409. skb_queue_tail(&eni_dev->rx_queue,skb);
  410. eni_vcc->last = skb;
  411. rx_enqueued++;
  412. }
  413. eni_vcc->descr = here;
  414. eni_out(dma_wr,MID_DMA_WR_RX);
  415. return 0;
  416. trouble:
  417. if (paddr)
  418. pci_unmap_single(eni_dev->pci_dev,paddr,skb->len,
  419.     PCI_DMA_FROMDEVICE);
  420. if (skb) dev_kfree_skb_irq(skb);
  421. return -1;
  422. }
  423. static void discard(struct atm_vcc *vcc,unsigned long size)
  424. {
  425. struct eni_vcc *eni_vcc;
  426. eni_vcc = ENI_VCC(vcc);
  427. EVENT("discard (size=%ld)n",size,0);
  428. while (do_rx_dma(vcc,NULL,1,size,0)) EVENT("BUSY LOOP",0,0);
  429.     /* could do a full fallback, but that might be more expensive */
  430. if (eni_vcc->rxing) ENI_PRV_POS(eni_vcc->last) += size+1;
  431. else eni_vcc->rx_pos = (eni_vcc->rx_pos+size+1) & (eni_vcc->words-1);
  432. }
  433. /*
  434.  * TODO: should check whether direct copies (without DMA setup, dequeuing on
  435.  * interrupt, etc.) aren't much faster for AAL0
  436.  */
  437. static int rx_aal0(struct atm_vcc *vcc)
  438. {
  439. struct eni_vcc *eni_vcc;
  440. unsigned long descr;
  441. unsigned long length;
  442. struct sk_buff *skb;
  443. DPRINTK(">rx_aal0n");
  444. eni_vcc = ENI_VCC(vcc);
  445. descr = readl(eni_vcc->recv+eni_vcc->descr*4);
  446. if ((descr & MID_RED_IDEN) != (MID_RED_RX_ID << MID_RED_SHIFT)) {
  447. rx_ident_err(vcc);
  448. return 1;
  449. }
  450. if (descr & MID_RED_T) {
  451. DPRINTK(DEV_LABEL "(itf %d): trashing empty celln",
  452.     vcc->dev->number);
  453. length = 0;
  454. atomic_inc(&vcc->stats->rx_err);
  455. }
  456. else {
  457. length = ATM_CELL_SIZE-1; /* no HEC */
  458. }
  459. skb = length ? atm_alloc_charge(vcc,length,GFP_ATOMIC) : NULL;
  460. if (!skb) {
  461. discard(vcc,length >> 2);
  462. return 0;
  463. }
  464. skb_put(skb,length);
  465. skb->stamp = eni_vcc->timestamp;
  466. DPRINTK("got len %ldn",length);
  467. if (do_rx_dma(vcc,skb,1,length >> 2,length >> 2)) return 1;
  468. eni_vcc->rxing++;
  469. return 0;
  470. }
  471. static int rx_aal5(struct atm_vcc *vcc)
  472. {
  473. struct eni_vcc *eni_vcc;
  474. unsigned long descr;
  475. unsigned long size,eff,length;
  476. struct sk_buff *skb;
  477. EVENT("rx_aal5n",0,0);
  478. DPRINTK(">rx_aal5n");
  479. eni_vcc = ENI_VCC(vcc);
  480. descr = readl(eni_vcc->recv+eni_vcc->descr*4);
  481. if ((descr & MID_RED_IDEN) != (MID_RED_RX_ID << MID_RED_SHIFT)) {
  482. rx_ident_err(vcc);
  483. return 1;
  484. }
  485. if (descr & (MID_RED_T | MID_RED_CRC_ERR)) {
  486. if (descr & MID_RED_T) {
  487. EVENT("empty cell (descr=0x%lx)n",descr,0);
  488. DPRINTK(DEV_LABEL "(itf %d): trashing empty celln",
  489.     vcc->dev->number);
  490. size = 0;
  491. }
  492. else {
  493. static unsigned long silence = 0;
  494. if (time_after(jiffies, silence) || silence == 0) {
  495. printk(KERN_WARNING DEV_LABEL "(itf %d): "
  496.     "discarding PDU(s) with CRC errorn",
  497.     vcc->dev->number);
  498. silence = (jiffies+2*HZ)|1;
  499. }
  500. size = (descr & MID_RED_COUNT)*(ATM_CELL_PAYLOAD >> 2);
  501. EVENT("CRC error (descr=0x%lx,size=%ld)n",descr,
  502.     size);
  503. }
  504. eff = length = 0;
  505. atomic_inc(&vcc->stats->rx_err);
  506. }
  507. else {
  508. size = (descr & MID_RED_COUNT)*(ATM_CELL_PAYLOAD >> 2);
  509. DPRINTK("size=%ldn",size);
  510. length = readl(eni_vcc->recv+(((eni_vcc->descr+size-1) &
  511.     (eni_vcc->words-1)))*4) & 0xffff;
  512. /* -trailer(2)+header(1) */
  513. if (length && length <= (size << 2)-8 && length <=
  514.   ATM_MAX_AAL5_PDU) eff = (length+3) >> 2;
  515. else {  /* ^ trailer length (8) */
  516. EVENT("bad PDU (descr=0x08%lx,length=%ld)n",descr,
  517.     length);
  518. printk(KERN_ERR DEV_LABEL "(itf %d): bad AAL5 PDU "
  519.     "(VCI=%d,length=%ld,size=%ld (descr 0x%lx))n",
  520.     vcc->dev->number,vcc->vci,length,size << 2,descr);
  521. length = eff = 0;
  522. atomic_inc(&vcc->stats->rx_err);
  523. }
  524. }
  525. skb = eff ? atm_alloc_charge(vcc,eff << 2,GFP_ATOMIC) : NULL;
  526. if (!skb) {
  527. discard(vcc,size);
  528. return 0;
  529. }
  530. skb_put(skb,length);
  531. DPRINTK("got len %ldn",length);
  532. if (do_rx_dma(vcc,skb,1,size,eff)) return 1;
  533. eni_vcc->rxing++;
  534. return 0;
  535. }
  536. static inline int rx_vcc(struct atm_vcc *vcc)
  537. {
  538. unsigned long vci_dsc,tmp;
  539. struct eni_vcc *eni_vcc;
  540. eni_vcc = ENI_VCC(vcc);
  541. vci_dsc = ENI_DEV(vcc->dev)->vci+vcc->vci*16;
  542. EVENT("rx_vcc(1)n",0,0);
  543. while (eni_vcc->descr != (tmp = (readl(vci_dsc+4) & MID_VCI_DESCR) >>
  544.     MID_VCI_DESCR_SHIFT)) {
  545. EVENT("rx_vcc(2: host dsc=0x%lx, nic dsc=0x%lx)n",
  546.     eni_vcc->descr,tmp);
  547. DPRINTK("CB_DESCR %ld REG_DESCR %dn",ENI_VCC(vcc)->descr,
  548.     (((unsigned) readl(vci_dsc+4) & MID_VCI_DESCR) >>
  549.     MID_VCI_DESCR_SHIFT));
  550. if (ENI_VCC(vcc)->rx(vcc)) return 1;
  551. }
  552. /* clear IN_SERVICE flag */
  553. writel(readl(vci_dsc) & ~MID_VCI_IN_SERVICE,vci_dsc);
  554. /*
  555.  * If new data has arrived between evaluating the while condition and
  556.  * clearing IN_SERVICE, we wouldn't be notified until additional data
  557.  * follows. So we have to loop again to be sure.
  558.  */
  559. EVENT("rx_vcc(3)n",0,0);
  560. while (ENI_VCC(vcc)->descr != (tmp = (readl(vci_dsc+4) & MID_VCI_DESCR)
  561.     >> MID_VCI_DESCR_SHIFT)) {
  562. EVENT("rx_vcc(4: host dsc=0x%lx, nic dsc=0x%lx)n",
  563.     eni_vcc->descr,tmp);
  564. DPRINTK("CB_DESCR %ld REG_DESCR %dn",ENI_VCC(vcc)->descr,
  565.     (((unsigned) readl(vci_dsc+4) & MID_VCI_DESCR) >>
  566.     MID_VCI_DESCR_SHIFT));
  567. if (ENI_VCC(vcc)->rx(vcc)) return 1;
  568. }
  569. return 0;
  570. }
  571. static void poll_rx(struct atm_dev *dev)
  572. {
  573. struct eni_dev *eni_dev;
  574. struct atm_vcc *curr;
  575. eni_dev = ENI_DEV(dev);
  576. while ((curr = eni_dev->fast)) {
  577. EVENT("poll_rx.fastn",0,0);
  578. if (rx_vcc(curr)) return;
  579. eni_dev->fast = ENI_VCC(curr)->next;
  580. ENI_VCC(curr)->next = ENI_VCC_NOS;
  581. barrier();
  582. ENI_VCC(curr)->servicing--;
  583. }
  584. while ((curr = eni_dev->slow)) {
  585. EVENT("poll_rx.slown",0,0);
  586. if (rx_vcc(curr)) return;
  587. eni_dev->slow = ENI_VCC(curr)->next;
  588. ENI_VCC(curr)->next = ENI_VCC_NOS;
  589. barrier();
  590. ENI_VCC(curr)->servicing--;
  591. }
  592. }
  593. static void get_service(struct atm_dev *dev)
  594. {
  595. struct eni_dev *eni_dev;
  596. struct atm_vcc *vcc;
  597. unsigned long vci;
  598. DPRINTK(">get_servicen");
  599. eni_dev = ENI_DEV(dev);
  600. while (eni_in(MID_SERV_WRITE) != eni_dev->serv_read) {
  601. vci = readl(eni_dev->service+eni_dev->serv_read*4);
  602. eni_dev->serv_read = (eni_dev->serv_read+1) & (NR_SERVICE-1);
  603. vcc = eni_dev->rx_map[vci & 1023];
  604. if (!vcc) {
  605. printk(KERN_CRIT DEV_LABEL "(itf %d): VCI %ld not "
  606.     "foundn",dev->number,vci);
  607. continue; /* nasty but we try to go on anyway */
  608. /* @@@ nope, doesn't work */
  609. }
  610. EVENT("getting from servicen",0,0);
  611. if (ENI_VCC(vcc)->next != ENI_VCC_NOS) {
  612. EVENT("double servicen",0,0);
  613. DPRINTK("Grr, servicing VCC %ld twicen",vci);
  614. continue;
  615. }
  616. ENI_VCC(vcc)->timestamp = xtime;
  617. ENI_VCC(vcc)->next = NULL;
  618. if (vcc->qos.rxtp.traffic_class == ATM_CBR) {
  619. if (eni_dev->fast)
  620. ENI_VCC(eni_dev->last_fast)->next = vcc;
  621. else eni_dev->fast = vcc;
  622. eni_dev->last_fast = vcc;
  623. }
  624. else {
  625. if (eni_dev->slow)
  626. ENI_VCC(eni_dev->last_slow)->next = vcc;
  627. else eni_dev->slow = vcc;
  628. eni_dev->last_slow = vcc;
  629. }
  630. putting++;
  631. ENI_VCC(vcc)->servicing++;
  632. }
  633. }
  634. static void dequeue_rx(struct atm_dev *dev)
  635. {
  636. struct eni_dev *eni_dev;
  637. struct eni_vcc *eni_vcc;
  638. struct atm_vcc *vcc;
  639. struct sk_buff *skb;
  640. unsigned long vci_dsc;
  641. int first;
  642. eni_dev = ENI_DEV(dev);
  643. first = 1;
  644. while (1) {
  645. skb = skb_dequeue(&eni_dev->rx_queue);
  646. if (!skb) {
  647. if (first) {
  648. DPRINTK(DEV_LABEL "(itf %d): RX but not "
  649.     "rxingn",dev->number);
  650. EVENT("nothing to dequeuen",0,0);
  651. }
  652. break;
  653. }
  654. EVENT("dequeued (size=%ld,pos=0x%lx)n",ENI_PRV_SIZE(skb),
  655.     ENI_PRV_POS(skb));
  656. rx_dequeued++;
  657. vcc = ATM_SKB(skb)->vcc;
  658. eni_vcc = ENI_VCC(vcc);
  659. first = 0;
  660. vci_dsc = eni_dev->vci+vcc->vci*16;
  661. if (!EEPMOK(eni_vcc->rx_pos,ENI_PRV_SIZE(skb),
  662.     (readl(vci_dsc+4) & MID_VCI_READ) >> MID_VCI_READ_SHIFT,
  663.     eni_vcc->words)) {
  664. EVENT("requeuingn",0,0);
  665. skb_queue_head(&eni_dev->rx_queue,skb);
  666. break;
  667. }
  668. eni_vcc->rxing--;
  669. eni_vcc->rx_pos = ENI_PRV_POS(skb) & (eni_vcc->words-1);
  670. pci_unmap_single(eni_dev->pci_dev,ENI_PRV_PADDR(skb),skb->len,
  671.     PCI_DMA_TODEVICE);
  672. if (!skb->len) dev_kfree_skb_irq(skb);
  673. else {
  674. EVENT("pushing (len=%ld)n",skb->len,0);
  675. if (vcc->qos.aal == ATM_AAL0)
  676. *(unsigned long *) skb->data =
  677.     ntohl(*(unsigned long *) skb->data);
  678. memset(skb->cb,0,sizeof(struct eni_skb_prv));
  679. vcc->push(vcc,skb);
  680. pushed++;
  681. }
  682. atomic_inc(&vcc->stats->rx);
  683. }
  684. wake_up(&eni_dev->rx_wait);
  685. }
  686. static int open_rx_first(struct atm_vcc *vcc)
  687. {
  688. struct eni_dev *eni_dev;
  689. struct eni_vcc *eni_vcc;
  690. unsigned long size;
  691. DPRINTK("open_rx_firstn");
  692. eni_dev = ENI_DEV(vcc->dev);
  693. eni_vcc = ENI_VCC(vcc);
  694. eni_vcc->rx = NULL;
  695. if (vcc->qos.rxtp.traffic_class == ATM_NONE) return 0;
  696. size = vcc->qos.rxtp.max_sdu*eni_dev->rx_mult/100;
  697. if (size > MID_MAX_BUF_SIZE && vcc->qos.rxtp.max_sdu <=
  698.     MID_MAX_BUF_SIZE)
  699. size = MID_MAX_BUF_SIZE;
  700. eni_vcc->recv = eni_alloc_mem(eni_dev,&size);
  701. DPRINTK("rx at 0x%lxn",eni_vcc->recv);
  702. eni_vcc->words = size >> 2;
  703. if (!eni_vcc->recv) return -ENOBUFS;
  704. eni_vcc->rx = vcc->qos.aal == ATM_AAL5 ? rx_aal5 : rx_aal0;
  705. eni_vcc->descr = 0;
  706. eni_vcc->rx_pos = 0;
  707. eni_vcc->rxing = 0;
  708. eni_vcc->servicing = 0;
  709. eni_vcc->next = ENI_VCC_NOS;
  710. return 0;
  711. }
  712. static int open_rx_second(struct atm_vcc *vcc)
  713. {
  714. unsigned long here;
  715. struct eni_dev *eni_dev;
  716. struct eni_vcc *eni_vcc;
  717. unsigned long size;
  718. int order;
  719. DPRINTK("open_rx_secondn");
  720. eni_dev = ENI_DEV(vcc->dev);
  721. eni_vcc = ENI_VCC(vcc);
  722. if (!eni_vcc->rx) return 0;
  723. /* set up VCI descriptor */
  724. here = eni_dev->vci+vcc->vci*16;
  725. DPRINTK("loc 0x%xn",(unsigned) (eni_vcc->recv-eni_dev->ram)/4);
  726. size = eni_vcc->words >> 8;
  727. for (order = -1; size; order++) size >>= 1;
  728. writel(0,here+4); /* descr, read = 0 */
  729. writel(0,here+8); /* write, state, count = 0 */
  730. if (eni_dev->rx_map[vcc->vci])
  731. printk(KERN_CRIT DEV_LABEL "(itf %d): BUG - VCI %d already "
  732.     "in usen",vcc->dev->number,vcc->vci);
  733. eni_dev->rx_map[vcc->vci] = vcc; /* now it counts */
  734. writel(((vcc->qos.aal != ATM_AAL5 ? MID_MODE_RAW : MID_MODE_AAL5) <<
  735.     MID_VCI_MODE_SHIFT) | MID_VCI_PTI_MODE |
  736.     (((eni_vcc->recv-eni_dev->ram) >> (MID_LOC_SKIP+2)) <<
  737.     MID_VCI_LOCATION_SHIFT) | (order << MID_VCI_SIZE_SHIFT),here);
  738. return 0;
  739. }
  740. static void close_rx(struct atm_vcc *vcc)
  741. {
  742. DECLARE_WAITQUEUE(wait,current);
  743. unsigned long here;
  744. struct eni_dev *eni_dev;
  745. struct eni_vcc *eni_vcc;
  746. eni_vcc = ENI_VCC(vcc);
  747. if (!eni_vcc->rx) return;
  748. eni_dev = ENI_DEV(vcc->dev);
  749. if (vcc->vpi != ATM_VPI_UNSPEC && vcc->vci != ATM_VCI_UNSPEC) {
  750. here = eni_dev->vci+vcc->vci*16;
  751. /* block receiver */
  752. writel((readl(here) & ~MID_VCI_MODE) | (MID_MODE_TRASH <<
  753.     MID_VCI_MODE_SHIFT),here);
  754. /* wait for receiver to become idle */
  755. udelay(27);
  756. /* discard pending cell */
  757. writel(readl(here) & ~MID_VCI_IN_SERVICE,here);
  758. /* don't accept any new ones */
  759. eni_dev->rx_map[vcc->vci] = NULL;
  760. /* wait for RX queue to drain */
  761. DPRINTK("eni_close: waiting for RX ...n");
  762. EVENT("RX closingn",0,0);
  763. add_wait_queue(&eni_dev->rx_wait,&wait);
  764. set_current_state(TASK_UNINTERRUPTIBLE);
  765. barrier();
  766. for (;;) {
  767. /* transition service->rx: rxing++, servicing-- */
  768. if (!eni_vcc->servicing) {
  769. barrier();
  770. if (!eni_vcc->rxing) break;
  771. }
  772. EVENT("drain PDUs (rx %ld, serv %ld)n",eni_vcc->rxing,
  773.     eni_vcc->servicing);
  774. printk(KERN_INFO "%d+%d RX leftn",eni_vcc->servicing,
  775.     eni_vcc->rxing);
  776. schedule();
  777. set_current_state(TASK_UNINTERRUPTIBLE);
  778. }
  779. for (;;) {
  780. int at_end;
  781. u32 tmp;
  782. tasklet_disable(&eni_dev->task);
  783. tmp = readl(eni_dev->vci+vcc->vci*16+4) & MID_VCI_READ;
  784. at_end = eni_vcc->rx_pos == tmp >> MID_VCI_READ_SHIFT;
  785. tasklet_enable(&eni_dev->task);
  786. if (at_end) break;
  787. EVENT("drain discard (host 0x%lx, nic 0x%lx)n",
  788.     eni_vcc->rx_pos,tmp);
  789. printk(KERN_INFO "draining RX: host 0x%lx, nic 0x%xn",
  790.     eni_vcc->rx_pos,tmp);
  791. schedule();
  792. set_current_state(TASK_UNINTERRUPTIBLE);
  793. }
  794. set_current_state(TASK_RUNNING);
  795. remove_wait_queue(&eni_dev->rx_wait,&wait);
  796. }
  797. eni_free_mem(eni_dev,eni_vcc->recv,eni_vcc->words << 2);
  798. eni_vcc->rx = NULL;
  799. }
  800. static int start_rx(struct atm_dev *dev)
  801. {
  802. struct eni_dev *eni_dev;
  803. eni_dev = ENI_DEV(dev);
  804. eni_dev->rx_map = (struct atm_vcc **) get_free_page(GFP_KERNEL);
  805. if (!eni_dev->rx_map) {
  806. printk(KERN_ERR DEV_LABEL "(itf %d): couldn't get free pagen",
  807.     dev->number);
  808. free_page((unsigned long) eni_dev->free_list);
  809. return -ENOMEM;
  810. }
  811. memset(eni_dev->rx_map,0,PAGE_SIZE);
  812. eni_dev->rx_mult = DEFAULT_RX_MULT;
  813. eni_dev->fast = eni_dev->last_fast = NULL;
  814. eni_dev->slow = eni_dev->last_slow = NULL;
  815. init_waitqueue_head(&eni_dev->rx_wait);
  816. skb_queue_head_init(&eni_dev->rx_queue);
  817. eni_dev->serv_read = eni_in(MID_SERV_WRITE);
  818. eni_out(0,MID_DMA_WR_RX);
  819. return 0;
  820. }
  821. /*----------------------------------- TX ------------------------------------*/
  822. enum enq_res { enq_ok,enq_next,enq_jam };
  823. static inline void put_dma(int chan,u32 *dma,int *j,dma_addr_t paddr,
  824.     u32 size)
  825. {
  826. u32 init,words;
  827. DPRINTK("put_dma: 0x%lx+0x%xn",(unsigned long) paddr,size);
  828. EVENT("put_dma: 0x%lx+0x%lxn",(unsigned long) paddr,size);
  829. #if 0 /* don't complain anymore */
  830. if (paddr & 3)
  831. printk(KERN_ERR "put_dma: unaligned addr (0x%lx)n",paddr);
  832. if (size & 3)
  833. printk(KERN_ERR "put_dma: unaligned size (0x%lx)n",size);
  834. #endif
  835. if (paddr & 3) {
  836. init = 4-(paddr & 3);
  837. if (init > size || size < 7) init = size;
  838. DPRINTK("put_dma: %lx DMA: %d/%d bytesn",
  839.     (unsigned long) paddr,init,size);
  840. dma[(*j)++] = MID_DT_BYTE | (init << MID_DMA_COUNT_SHIFT) |
  841.     (chan << MID_DMA_CHAN_SHIFT);
  842. dma[(*j)++] = paddr;
  843. paddr += init;
  844. size -= init;
  845. }
  846. words = size >> 2;
  847. size &= 3;
  848. if (words && (paddr & 31)) {
  849. init = 8-((paddr & 31) >> 2);
  850. if (init > words) init = words;
  851. DPRINTK("put_dma: %lx DMA: %d/%d wordsn",
  852.     (unsigned long) paddr,init,words);
  853. dma[(*j)++] = MID_DT_WORD | (init << MID_DMA_COUNT_SHIFT) |
  854.     (chan << MID_DMA_CHAN_SHIFT);
  855. dma[(*j)++] = paddr;
  856. paddr += init << 2;
  857. words -= init;
  858. }
  859. #ifdef CONFIG_ATM_ENI_BURST_TX_16W /* may work with some PCI chipsets ... */
  860. if (words & ~15) {
  861. DPRINTK("put_dma: %lx DMA: %d*16/%d wordsn",
  862.     (unsigned long) paddr,words >> 4,words);
  863. dma[(*j)++] = MID_DT_16W | ((words >> 4) << MID_DMA_COUNT_SHIFT)
  864.     | (chan << MID_DMA_CHAN_SHIFT);
  865. dma[(*j)++] = paddr;
  866. paddr += (words & ~15) << 2;
  867. words &= 15;
  868. }
  869. #endif
  870. #ifdef CONFIG_ATM_ENI_BURST_TX_8W /* recommended */
  871. if (words & ~7) {
  872. DPRINTK("put_dma: %lx DMA: %d*8/%d wordsn",
  873.     (unsigned long) paddr,words >> 3,words);
  874. dma[(*j)++] = MID_DT_8W | ((words >> 3) << MID_DMA_COUNT_SHIFT)
  875.     | (chan << MID_DMA_CHAN_SHIFT);
  876. dma[(*j)++] = paddr;
  877. paddr += (words & ~7) << 2;
  878. words &= 7;
  879. }
  880. #endif
  881. #ifdef CONFIG_ATM_ENI_BURST_TX_4W /* probably useless if TX_8W or TX_16W */
  882. if (words & ~3) {
  883. DPRINTK("put_dma: %lx DMA: %d*4/%d wordsn",
  884.     (unsigned long) paddr,words >> 2,words);
  885. dma[(*j)++] = MID_DT_4W | ((words >> 2) << MID_DMA_COUNT_SHIFT)
  886.     | (chan << MID_DMA_CHAN_SHIFT);
  887. dma[(*j)++] = paddr;
  888. paddr += (words & ~3) << 2;
  889. words &= 3;
  890. }
  891. #endif
  892. #ifdef CONFIG_ATM_ENI_BURST_TX_2W /* probably useless if TX_4W, TX_8W, ... */
  893. if (words & ~1) {
  894. DPRINTK("put_dma: %lx DMA: %d*2/%d wordsn",
  895.     (unsigned long) paddr,words >> 1,words);
  896. dma[(*j)++] = MID_DT_2W | ((words >> 1) << MID_DMA_COUNT_SHIFT)
  897.     | (chan << MID_DMA_CHAN_SHIFT);
  898. dma[(*j)++] = paddr;
  899. paddr += (words & ~1) << 2;
  900. words &= 1;
  901. }
  902. #endif
  903. if (words) {
  904. DPRINTK("put_dma: %lx DMA: %d wordsn",(unsigned long) paddr,
  905.     words);
  906. dma[(*j)++] = MID_DT_WORD | (words << MID_DMA_COUNT_SHIFT) |
  907.     (chan << MID_DMA_CHAN_SHIFT);
  908. dma[(*j)++] = paddr;
  909. paddr += words << 2;
  910. }
  911. if (size) {
  912. DPRINTK("put_dma: %lx DMA: %d bytesn",(unsigned long) paddr,
  913.     size);
  914. dma[(*j)++] = MID_DT_BYTE | (size << MID_DMA_COUNT_SHIFT) |
  915.     (chan << MID_DMA_CHAN_SHIFT);
  916. dma[(*j)++] = paddr;
  917. }
  918. }
  919. static enum enq_res do_tx(struct sk_buff *skb)
  920. {
  921. struct atm_vcc *vcc;
  922. struct eni_dev *eni_dev;
  923. struct eni_vcc *eni_vcc;
  924. struct eni_tx *tx;
  925. dma_addr_t paddr;
  926. u32 dma_rd,dma_wr;
  927. u32 size; /* in words */
  928. int aal5,dma_size,i,j;
  929. DPRINTK(">do_txn");
  930. NULLCHECK(skb);
  931. EVENT("do_tx: skb=0x%lx, %ld bytesn",(unsigned long) skb,skb->len);
  932. vcc = ATM_SKB(skb)->vcc;
  933. NULLCHECK(vcc);
  934. eni_dev = ENI_DEV(vcc->dev);
  935. NULLCHECK(eni_dev);
  936. eni_vcc = ENI_VCC(vcc);
  937. tx = eni_vcc->tx;
  938. NULLCHECK(tx);
  939. #if 0 /* Enable this for testing with the "align" program */
  940. {
  941. unsigned int hack = *((char *) skb->data)-'0';
  942. if (hack < 8) {
  943. skb->data += hack;
  944. skb->len -= hack;
  945. }
  946. }
  947. #endif
  948. #if 0 /* should work now */
  949. if ((unsigned long) skb->data & 3)
  950. printk(KERN_ERR DEV_LABEL "(itf %d): VCI %d has mis-aligned "
  951.     "TX datan",vcc->dev->number,vcc->vci);
  952. #endif
  953. /*
  954.  * Potential future IP speedup: make hard_header big enough to put
  955.  * segmentation descriptor directly into PDU. Saves: 4 slave writes,
  956.  * 1 DMA xfer & 2 DMA'ed bytes (protocol layering is for wimps :-)
  957.  */
  958. aal5 = vcc->qos.aal == ATM_AAL5;
  959. /* check space in buffer */
  960. if (!aal5)
  961. size = (ATM_CELL_PAYLOAD >> 2)+TX_DESCR_SIZE;
  962. /* cell without HEC plus segmentation header (includes
  963.    four-byte cell header) */
  964. else {
  965. size = skb->len+4*AAL5_TRAILER+ATM_CELL_PAYLOAD-1;
  966. /* add AAL5 trailer */
  967. size = ((size-(size % ATM_CELL_PAYLOAD)) >> 2)+TX_DESCR_SIZE;
  968. /* add segmentation header */
  969. }
  970. /*
  971.  * Can I move tx_pos by size bytes without getting closer than TX_GAP
  972.  * to the read pointer ? TX_GAP means to leave some space for what
  973.  * the manual calls "too close".
  974.  */
  975. if (!NEPMOK(tx->tx_pos,size+TX_GAP,
  976.     eni_in(MID_TX_RDPTR(tx->index)),tx->words)) {
  977. DPRINTK(DEV_LABEL "(itf %d): TX full (size %d)n",
  978.     vcc->dev->number,size);
  979. return enq_next;
  980. }
  981. /* check DMA */
  982. dma_wr = eni_in(MID_DMA_WR_TX);
  983. dma_rd = eni_in(MID_DMA_RD_TX);
  984. dma_size = 3; /* JK for descriptor and final fill, plus final size
  985.  mis-alignment fix */
  986. DPRINTK("iovcnt = %dn",ATM_SKB(skb)->iovcnt);
  987. if (!ATM_SKB(skb)->iovcnt) dma_size += 5;
  988. else dma_size += 5*ATM_SKB(skb)->iovcnt;
  989. if (dma_size > TX_DMA_BUF) {
  990. printk(KERN_CRIT DEV_LABEL "(itf %d): needs %d DMA entries "
  991.     "(got only %d)n",vcc->dev->number,dma_size,TX_DMA_BUF);
  992. }
  993. DPRINTK("dma_wr is %d, tx_pos is %ldn",dma_wr,tx->tx_pos);
  994. if (dma_wr != dma_rd && ((dma_rd+NR_DMA_TX-dma_wr) & (NR_DMA_TX-1)) <
  995.      dma_size) {
  996. printk(KERN_WARNING DEV_LABEL "(itf %d): TX DMA fulln",
  997.     vcc->dev->number);
  998. return enq_jam;
  999. }
  1000. paddr = pci_map_single(eni_dev->pci_dev,skb->data,skb->len,
  1001.     PCI_DMA_TODEVICE);
  1002. ENI_PRV_PADDR(skb) = paddr;
  1003. /* prepare DMA queue entries */
  1004. j = 0;
  1005. eni_dev->dma[j++] = (((tx->tx_pos+TX_DESCR_SIZE) & (tx->words-1)) <<
  1006.      MID_DMA_COUNT_SHIFT) | (tx->index << MID_DMA_CHAN_SHIFT) |
  1007.      MID_DT_JK;
  1008. j++;
  1009. if (!ATM_SKB(skb)->iovcnt)
  1010. if (aal5) put_dma(tx->index,eni_dev->dma,&j,paddr,skb->len);
  1011. else put_dma(tx->index,eni_dev->dma,&j,paddr+4,skb->len-4);
  1012. else {
  1013. DPRINTK("doing direct sendn"); /* @@@ well, this doesn't work anyway */
  1014. for (i = 0; i < ATM_SKB(skb)->iovcnt; i++)
  1015. put_dma(tx->index,eni_dev->dma,&j,(unsigned long)
  1016.     ((struct iovec *) skb->data)[i].iov_base,
  1017.     ((struct iovec *) skb->data)[i].iov_len);
  1018. }
  1019. if (skb->len & 3)
  1020. put_dma(tx->index,eni_dev->dma,&j,zeroes,4-(skb->len & 3));
  1021. /* JK for AAL5 trailer - AAL0 doesn't need it, but who cares ... */
  1022. eni_dev->dma[j++] = (((tx->tx_pos+size) & (tx->words-1)) <<
  1023.      MID_DMA_COUNT_SHIFT) | (tx->index << MID_DMA_CHAN_SHIFT) |
  1024.      MID_DMA_END | MID_DT_JK;
  1025. j++;
  1026. DPRINTK("DMA at end: %dn",j);
  1027. /* store frame */
  1028. writel((MID_SEG_TX_ID << MID_SEG_ID_SHIFT) |
  1029.     (aal5 ? MID_SEG_AAL5 : 0) | (tx->prescaler << MID_SEG_PR_SHIFT) |
  1030.     (tx->resolution << MID_SEG_RATE_SHIFT) |
  1031.     (size/(ATM_CELL_PAYLOAD/4)),tx->send+tx->tx_pos*4);
  1032. /*printk("dsc = 0x%08lxn",(unsigned long) readl(tx->send+tx->tx_pos*4));*/
  1033. writel((vcc->vci << MID_SEG_VCI_SHIFT) |
  1034.             (aal5 ? 0 : (skb->data[3] & 0xf)) |
  1035.     (ATM_SKB(skb)->atm_options & ATM_ATMOPT_CLP ? MID_SEG_CLP : 0),
  1036.     tx->send+((tx->tx_pos+1) & (tx->words-1))*4);
  1037. DPRINTK("size: %d, len:%dn",size,skb->len);
  1038. if (aal5)
  1039. writel(skb->len,tx->send+
  1040.                     ((tx->tx_pos+size-AAL5_TRAILER) & (tx->words-1))*4);
  1041. j = j >> 1;
  1042. for (i = 0; i < j; i++) {
  1043. writel(eni_dev->dma[i*2],eni_dev->tx_dma+dma_wr*8);
  1044. writel(eni_dev->dma[i*2+1],eni_dev->tx_dma+dma_wr*8+4);
  1045. dma_wr = (dma_wr+1) & (NR_DMA_TX-1);
  1046. }
  1047. ENI_PRV_POS(skb) = tx->tx_pos;
  1048. ENI_PRV_SIZE(skb) = size;
  1049. ENI_VCC(vcc)->txing += size;
  1050. tx->tx_pos = (tx->tx_pos+size) & (tx->words-1);
  1051. DPRINTK("dma_wr set to %d, tx_pos is now %ldn",dma_wr,tx->tx_pos);
  1052. eni_out(dma_wr,MID_DMA_WR_TX);
  1053. skb_queue_tail(&eni_dev->tx_queue,skb);
  1054. queued++;
  1055. return enq_ok;
  1056. }
  1057. static void poll_tx(struct atm_dev *dev)
  1058. {
  1059. struct eni_tx *tx;
  1060. struct sk_buff *skb;
  1061. enum enq_res res;
  1062. int i;
  1063. DPRINTK(">poll_txn");
  1064. for (i = NR_CHAN-1; i >= 0; i--) {
  1065. tx = &ENI_DEV(dev)->tx[i];
  1066. if (tx->send)
  1067. while ((skb = skb_dequeue(&tx->backlog))) {
  1068. res = do_tx(skb);
  1069. if (res == enq_ok) continue;
  1070. DPRINTK("re-queuing TX PDUn");
  1071. skb_queue_head(&tx->backlog,skb);
  1072. requeued++;
  1073. if (res == enq_jam) return;
  1074. break;
  1075. }
  1076. }
  1077. }
  1078. static void dequeue_tx(struct atm_dev *dev)
  1079. {
  1080. struct eni_dev *eni_dev;
  1081. struct atm_vcc *vcc;
  1082. struct sk_buff *skb;
  1083. struct eni_tx *tx;
  1084. NULLCHECK(dev);
  1085. eni_dev = ENI_DEV(dev);
  1086. NULLCHECK(eni_dev);
  1087. while ((skb = skb_dequeue(&eni_dev->tx_queue))) {
  1088. vcc = ATM_SKB(skb)->vcc;
  1089. NULLCHECK(vcc);
  1090. tx = ENI_VCC(vcc)->tx;
  1091. NULLCHECK(ENI_VCC(vcc)->tx);
  1092. DPRINTK("dequeue_tx: next 0x%lx curr 0x%xn",ENI_PRV_POS(skb),
  1093.     (unsigned) eni_in(MID_TX_DESCRSTART(tx->index)));
  1094. if (ENI_VCC(vcc)->txing < tx->words && ENI_PRV_POS(skb) ==
  1095.     eni_in(MID_TX_DESCRSTART(tx->index))) {
  1096. skb_queue_head(&eni_dev->tx_queue,skb);
  1097. break;
  1098. }
  1099. ENI_VCC(vcc)->txing -= ENI_PRV_SIZE(skb);
  1100. pci_unmap_single(eni_dev->pci_dev,ENI_PRV_PADDR(skb),skb->len,
  1101.     PCI_DMA_TODEVICE);
  1102. if (vcc->pop) vcc->pop(vcc,skb);
  1103. else dev_kfree_skb_irq(skb);
  1104. atomic_inc(&vcc->stats->tx);
  1105. wake_up(&eni_dev->tx_wait);
  1106. dma_complete++;
  1107. }
  1108. }
  1109. static struct eni_tx *alloc_tx(struct eni_dev *eni_dev,int ubr)
  1110. {
  1111. int i;
  1112. for (i = !ubr; i < NR_CHAN; i++)
  1113. if (!eni_dev->tx[i].send) return eni_dev->tx+i;
  1114. return NULL;
  1115. }
  1116. static int comp_tx(struct eni_dev *eni_dev,int *pcr,int reserved,int *pre,
  1117.     int *res,int unlimited)
  1118. {
  1119. static const int pre_div[] = { 4,16,128,2048 };
  1120.     /* 2^(((x+2)^2-(x+2))/2+1) */
  1121. if (unlimited) *pre = *res = 0;
  1122. else {
  1123. if (*pcr > 0) {
  1124. int div;
  1125. for (*pre = 0; *pre < 3; (*pre)++)
  1126. if (TS_CLOCK/pre_div[*pre]/64 <= *pcr) break;
  1127. div = pre_div[*pre]**pcr;
  1128. DPRINTK("min div %dn",div);
  1129. *res = TS_CLOCK/div-1;
  1130. }
  1131. else {
  1132. int div;
  1133. if (!*pcr) *pcr = eni_dev->tx_bw+reserved;
  1134. for (*pre = 3; *pre >= 0; (*pre)--)
  1135. if (TS_CLOCK/pre_div[*pre]/64 > -*pcr) break;
  1136. if (*pre < 3) (*pre)++; /* else fail later */
  1137. div = pre_div[*pre]*-*pcr;
  1138. DPRINTK("max div %dn",div);
  1139. *res = (TS_CLOCK+div-1)/div-1;
  1140. }
  1141. if (*res < 0) *res = 0;
  1142. if (*res > MID_SEG_MAX_RATE) *res = MID_SEG_MAX_RATE;
  1143. }
  1144. *pcr = TS_CLOCK/pre_div[*pre]/(*res+1);
  1145. DPRINTK("out pcr: %d (%d:%d)n",*pcr,*pre,*res);
  1146. return 0;
  1147. }
  1148. static int reserve_or_set_tx(struct atm_vcc *vcc,struct atm_trafprm *txtp,
  1149.     int set_rsv,int set_shp)
  1150. {
  1151. struct eni_dev *eni_dev = ENI_DEV(vcc->dev);
  1152. struct eni_vcc *eni_vcc = ENI_VCC(vcc);
  1153. struct eni_tx *tx;
  1154. unsigned long size,mem;
  1155. int rate,ubr,unlimited,new_tx;
  1156. int pre,res,order;
  1157. int error;
  1158. rate = atm_pcr_goal(txtp);
  1159. ubr = txtp->traffic_class == ATM_UBR;
  1160. unlimited = ubr && (!rate || rate <= -ATM_OC3_PCR ||
  1161.     rate >= ATM_OC3_PCR);
  1162. if (!unlimited) {
  1163. size = txtp->max_sdu*eni_dev->tx_mult/100;
  1164. if (size > MID_MAX_BUF_SIZE && txtp->max_sdu <=
  1165.     MID_MAX_BUF_SIZE)
  1166. size = MID_MAX_BUF_SIZE;
  1167. }
  1168. else {
  1169. if (eni_dev->ubr) {
  1170. eni_vcc->tx = eni_dev->ubr;
  1171. txtp->pcr = ATM_OC3_PCR;
  1172. return 0;
  1173. }
  1174. size = UBR_BUFFER;
  1175. }
  1176. new_tx = !eni_vcc->tx;
  1177. mem = 0; /* for gcc */
  1178. if (!new_tx) tx = eni_vcc->tx;
  1179. else {
  1180. mem = eni_alloc_mem(eni_dev,&size);
  1181. if (!mem) return -ENOBUFS;
  1182. tx = alloc_tx(eni_dev,unlimited);
  1183. if (!tx) {
  1184. eni_free_mem(eni_dev,mem,size);
  1185. return -EBUSY;
  1186. }
  1187. DPRINTK("got chan %dn",tx->index);
  1188. tx->reserved = tx->shaping = 0;
  1189. tx->send = mem;
  1190. tx->words = size >> 2;
  1191. skb_queue_head_init(&tx->backlog);
  1192. for (order = 0; size > (1 << (order+10)); order++);
  1193. eni_out((order << MID_SIZE_SHIFT) |
  1194.     ((tx->send-eni_dev->ram) >> (MID_LOC_SKIP+2)),
  1195.     MID_TX_PLACE(tx->index));
  1196. tx->tx_pos = eni_in(MID_TX_DESCRSTART(tx->index)) &
  1197.     MID_DESCR_START;
  1198. }
  1199. error = comp_tx(eni_dev,&rate,tx->reserved,&pre,&res,unlimited);
  1200. if (!error  && txtp->min_pcr > rate) error = -EINVAL;
  1201. if (!error && txtp->max_pcr && txtp->max_pcr != ATM_MAX_PCR &&
  1202.     txtp->max_pcr < rate) error = -EINVAL;
  1203. if (!error && !ubr && rate > eni_dev->tx_bw+tx->reserved)
  1204. error = -EINVAL;
  1205. if (!error && set_rsv && !set_shp && rate < tx->shaping)
  1206. error = -EINVAL;
  1207. if (!error && !set_rsv && rate > tx->reserved && !ubr)
  1208. error = -EINVAL;
  1209. if (error) {
  1210. if (new_tx) {
  1211. tx->send = 0;
  1212. eni_free_mem(eni_dev,mem,size);
  1213. }
  1214. return error;
  1215. }
  1216. txtp->pcr = rate;
  1217. if (set_rsv && !ubr) {
  1218. eni_dev->tx_bw += tx->reserved;
  1219. tx->reserved = rate;
  1220. eni_dev->tx_bw -= rate;
  1221. }
  1222. if (set_shp || (unlimited && new_tx)) {
  1223. if (unlimited && new_tx) eni_dev->ubr = tx;
  1224. tx->prescaler = pre;
  1225. tx->resolution = res;
  1226. tx->shaping = rate;
  1227. }
  1228. if (set_shp) eni_vcc->tx = tx;
  1229. DPRINTK("rsv %d shp %dn",tx->reserved,tx->shaping);
  1230. return 0;
  1231. }
  1232. static int open_tx_first(struct atm_vcc *vcc)
  1233. {
  1234. ENI_VCC(vcc)->tx = NULL;
  1235. if (vcc->qos.txtp.traffic_class == ATM_NONE) return 0;
  1236. ENI_VCC(vcc)->txing = 0;
  1237. return reserve_or_set_tx(vcc,&vcc->qos.txtp,1,1);
  1238. }
  1239. static int open_tx_second(struct atm_vcc *vcc)
  1240. {
  1241. return 0; /* nothing to do */
  1242. }
  1243. static void close_tx(struct atm_vcc *vcc)
  1244. {
  1245. DECLARE_WAITQUEUE(wait,current);
  1246. struct eni_dev *eni_dev;
  1247. struct eni_vcc *eni_vcc;
  1248. eni_vcc = ENI_VCC(vcc);
  1249. if (!eni_vcc->tx) return;
  1250. eni_dev = ENI_DEV(vcc->dev);
  1251. /* wait for TX queue to drain */
  1252. DPRINTK("eni_close: waiting for TX ...n");
  1253. add_wait_queue(&eni_dev->tx_wait,&wait);
  1254. set_current_state(TASK_UNINTERRUPTIBLE);
  1255. for (;;) {
  1256. int txing;
  1257. tasklet_disable(&eni_dev->task);
  1258. txing = skb_peek(&eni_vcc->tx->backlog) || eni_vcc->txing;
  1259. tasklet_enable(&eni_dev->task);
  1260. if (!txing) break;
  1261. DPRINTK("%d TX leftn",eni_vcc->txing);
  1262. schedule();
  1263. set_current_state(TASK_UNINTERRUPTIBLE);
  1264. }
  1265. set_current_state(TASK_RUNNING);
  1266. remove_wait_queue(&eni_dev->tx_wait,&wait);
  1267. if (eni_vcc->tx != eni_dev->ubr) {
  1268. /*
  1269.  * Looping a few times in here is probably far cheaper than
  1270.  * keeping track of TX completions all the time, so let's poll
  1271.  * a bit ...
  1272.  */
  1273. while (eni_in(MID_TX_RDPTR(eni_vcc->tx->index)) !=
  1274.     eni_in(MID_TX_DESCRSTART(eni_vcc->tx->index)))
  1275. schedule();
  1276. eni_free_mem(eni_dev,eni_vcc->tx->send,eni_vcc->tx->words << 2);
  1277. eni_vcc->tx->send = 0;
  1278. eni_dev->tx_bw += eni_vcc->tx->reserved;
  1279. }
  1280. eni_vcc->tx = NULL;
  1281. }
  1282. static int start_tx(struct atm_dev *dev)
  1283. {
  1284. struct eni_dev *eni_dev;
  1285. int i;
  1286. eni_dev = ENI_DEV(dev);
  1287. eni_dev->lost = 0;
  1288. eni_dev->tx_bw = ATM_OC3_PCR;
  1289. eni_dev->tx_mult = DEFAULT_TX_MULT;
  1290. init_waitqueue_head(&eni_dev->tx_wait);
  1291. eni_dev->ubr = NULL;
  1292. skb_queue_head_init(&eni_dev->tx_queue);
  1293. eni_out(0,MID_DMA_WR_TX);
  1294. for (i = 0; i < NR_CHAN; i++) {
  1295. eni_dev->tx[i].send = 0;
  1296. eni_dev->tx[i].index = i;
  1297. }
  1298. return 0;
  1299. }
  1300. /*--------------------------------- common ----------------------------------*/
  1301. #if 0 /* may become useful again when tuning things */
  1302. static void foo(void)
  1303. {
  1304. printk(KERN_INFO
  1305.   "tx_complete=%d,dma_complete=%d,queued=%d,requeued=%d,sub=%d,n"
  1306.   "backlogged=%d,rx_enqueued=%d,rx_dequeued=%d,putting=%d,pushed=%dn",
  1307.   tx_complete,dma_complete,queued,requeued,submitted,backlogged,
  1308.   rx_enqueued,rx_dequeued,putting,pushed);
  1309. if (eni_boards) printk(KERN_INFO "loss: %ldn",ENI_DEV(eni_boards)->lost);
  1310. }
  1311. #endif
  1312. static void bug_int(struct atm_dev *dev,unsigned long reason)
  1313. {
  1314. struct eni_dev *eni_dev;
  1315. DPRINTK(">bug_intn");
  1316. eni_dev = ENI_DEV(dev);
  1317. if (reason & MID_DMA_ERR_ACK)
  1318. printk(KERN_CRIT DEV_LABEL "(itf %d): driver error - DMA "
  1319.     "errorn",dev->number);
  1320. if (reason & MID_TX_IDENT_MISM)
  1321. printk(KERN_CRIT DEV_LABEL "(itf %d): driver error - ident "
  1322.     "mismatchn",dev->number);
  1323. if (reason & MID_TX_DMA_OVFL)
  1324. printk(KERN_CRIT DEV_LABEL "(itf %d): driver error - DMA "
  1325.     "overflown",dev->number);
  1326. EVENT("---dump ends here---n",0,0);
  1327. printk(KERN_NOTICE "---recent events---n");
  1328. event_dump();
  1329. }
  1330. static void eni_int(int irq,void *dev_id,struct pt_regs *regs)
  1331. {
  1332. struct atm_dev *dev;
  1333. struct eni_dev *eni_dev;
  1334. u32 reason;
  1335. DPRINTK(">eni_intn");
  1336. dev = dev_id;
  1337. eni_dev = ENI_DEV(dev);
  1338. reason = eni_in(MID_ISA);
  1339. DPRINTK(DEV_LABEL ": int 0x%lxn",(unsigned long) reason);
  1340. /*
  1341.  * Must handle these two right now, because reading ISA doesn't clear
  1342.  * them, so they re-occur and we never make it to the tasklet. Since
  1343.  * they're rare, we don't mind the occasional invocation of eni_tasklet
  1344.  * with eni_dev->events == 0.
  1345.  */
  1346. if (reason & MID_STAT_OVFL) {
  1347. EVENT("stat overflown",0,0);
  1348. eni_dev->lost += eni_in(MID_STAT) & MID_OVFL_TRASH;
  1349. }
  1350. if (reason & MID_SUNI_INT) {
  1351. EVENT("SUNI intn",0,0);
  1352. dev->phy->interrupt(dev);
  1353. #if 0
  1354. foo();
  1355. #endif
  1356. }
  1357. spin_lock(&eni_dev->lock);
  1358. eni_dev->events |= reason;
  1359. spin_unlock(&eni_dev->lock);
  1360. tasklet_schedule(&eni_dev->task);
  1361. }
  1362. static void eni_tasklet(unsigned long data)
  1363. {
  1364. struct atm_dev *dev = (struct atm_dev *) data;
  1365. struct eni_dev *eni_dev = ENI_DEV(dev);
  1366. unsigned long flags;
  1367. u32 events;
  1368. DPRINTK("eni_tasklet (dev %p)n",dev);
  1369. spin_lock_irqsave(&eni_dev->lock,flags);
  1370. events = xchg(&eni_dev->events,0);
  1371. spin_unlock_irqrestore(&eni_dev->lock,flags);
  1372. if (events & MID_RX_DMA_COMPLETE) {
  1373. EVENT("INT: RX DMA complete, starting dequeue_rxn",0,0);
  1374. dequeue_rx(dev);
  1375. EVENT("dequeue_rx done, starting poll_rxn",0,0);
  1376. poll_rx(dev);
  1377. EVENT("poll_rx donen",0,0);
  1378. /* poll_tx ? */
  1379. }
  1380. if (events & MID_SERVICE) {
  1381. EVENT("INT: service, starting get_servicen",0,0);
  1382. get_service(dev);
  1383. EVENT("get_service done, starting poll_rxn",0,0);
  1384. poll_rx(dev);
  1385. EVENT("poll_rx donen",0,0);
  1386. }
  1387.   if (events & MID_TX_DMA_COMPLETE) {
  1388. EVENT("INT: TX DMA COMPLETEn",0,0);
  1389. dequeue_tx(dev);
  1390. }
  1391. if (events & MID_TX_COMPLETE) {
  1392. EVENT("INT: TX COMPLETEn",0,0);
  1393. tx_complete++;
  1394. wake_up(&eni_dev->tx_wait);
  1395. /* poll_rx ? */
  1396. }
  1397. if (events & (MID_DMA_ERR_ACK | MID_TX_IDENT_MISM | MID_TX_DMA_OVFL)) {
  1398. EVENT("bug interruptn",0,0);
  1399. bug_int(dev,events);
  1400. }
  1401. poll_tx(dev);
  1402. }
  1403. /*--------------------------------- entries ---------------------------------*/
  1404. static const char *media_name[] __devinitdata = {
  1405.     "MMF", "SMF", "MMF", "03?", /*  0- 3 */
  1406.     "UTP", "05?", "06?", "07?", /*  4- 7 */
  1407.     "TAXI","09?", "10?", "11?", /*  8-11 */
  1408.     "12?", "13?", "14?", "15?", /* 12-15 */
  1409.     "MMF", "SMF", "18?", "19?", /* 16-19 */
  1410.     "UTP", "21?", "22?", "23?", /* 20-23 */
  1411.     "24?", "25?", "26?", "27?", /* 24-27 */
  1412.     "28?", "29?", "30?", "31?"  /* 28-31 */
  1413. };
  1414. #define SET_SEPROM 
  1415.   ({ if (!error && !pci_error) { 
  1416.     pci_error = pci_write_config_byte(eni_dev->pci_dev,PCI_TONGA_CTRL,tonga); 
  1417.     udelay(10); /* 10 usecs */ 
  1418.   } })
  1419. #define GET_SEPROM 
  1420.   ({ if (!error && !pci_error) { 
  1421.     pci_error = pci_read_config_byte(eni_dev->pci_dev,PCI_TONGA_CTRL,&tonga); 
  1422.     udelay(10); /* 10 usecs */ 
  1423.   } })
  1424. static int __devinit get_esi_asic(struct atm_dev *dev)
  1425. {
  1426. struct eni_dev *eni_dev;
  1427. unsigned char tonga;
  1428. int error,failed,pci_error;
  1429. int address,i,j;
  1430. eni_dev = ENI_DEV(dev);
  1431. error = pci_error = 0;
  1432. tonga = SEPROM_MAGIC | SEPROM_DATA | SEPROM_CLK;
  1433. SET_SEPROM;
  1434. for (i = 0; i < ESI_LEN && !error && !pci_error; i++) {
  1435. /* start operation */
  1436. tonga |= SEPROM_DATA;
  1437. SET_SEPROM;
  1438. tonga |= SEPROM_CLK;
  1439. SET_SEPROM;
  1440. tonga &= ~SEPROM_DATA;
  1441. SET_SEPROM;
  1442. tonga &= ~SEPROM_CLK;
  1443. SET_SEPROM;
  1444. /* send address */
  1445. address = ((i+SEPROM_ESI_BASE) << 1)+1;
  1446. for (j = 7; j >= 0; j--) {
  1447. tonga = (address >> j) & 1 ? tonga | SEPROM_DATA :
  1448.     tonga & ~SEPROM_DATA;
  1449. SET_SEPROM;
  1450. tonga |= SEPROM_CLK;
  1451. SET_SEPROM;
  1452. tonga &= ~SEPROM_CLK;
  1453. SET_SEPROM;
  1454. }
  1455. /* get ack */
  1456. tonga |= SEPROM_DATA;
  1457. SET_SEPROM;
  1458. tonga |= SEPROM_CLK;
  1459. SET_SEPROM;
  1460. GET_SEPROM;
  1461. failed = tonga & SEPROM_DATA;
  1462. tonga &= ~SEPROM_CLK;
  1463. SET_SEPROM;
  1464. tonga |= SEPROM_DATA;
  1465. SET_SEPROM;
  1466. if (failed) error = -EIO;
  1467. else {
  1468. dev->esi[i] = 0;
  1469. for (j = 7; j >= 0; j--) {
  1470. dev->esi[i] <<= 1;
  1471. tonga |= SEPROM_DATA;
  1472. SET_SEPROM;
  1473. tonga |= SEPROM_CLK;
  1474. SET_SEPROM;
  1475. GET_SEPROM;
  1476. if (tonga & SEPROM_DATA) dev->esi[i] |= 1;
  1477. tonga &= ~SEPROM_CLK;
  1478. SET_SEPROM;
  1479. tonga |= SEPROM_DATA;
  1480. SET_SEPROM;
  1481. }
  1482. /* get ack */
  1483. tonga |= SEPROM_DATA;
  1484. SET_SEPROM;
  1485. tonga |= SEPROM_CLK;
  1486. SET_SEPROM;
  1487. GET_SEPROM;
  1488. if (!(tonga & SEPROM_DATA)) error = -EIO;
  1489. tonga &= ~SEPROM_CLK;
  1490. SET_SEPROM;
  1491. tonga |= SEPROM_DATA;
  1492. SET_SEPROM;
  1493. }
  1494. /* stop operation */
  1495. tonga &= ~SEPROM_DATA;
  1496. SET_SEPROM;
  1497. tonga |= SEPROM_CLK;
  1498. SET_SEPROM;
  1499. tonga |= SEPROM_DATA;
  1500. SET_SEPROM;
  1501. }
  1502. if (pci_error) {
  1503. printk(KERN_ERR DEV_LABEL "(itf %d): error reading ESI "
  1504.     "(0x%02x)n",dev->number,pci_error);
  1505. error = -EIO;
  1506. }
  1507. return error;
  1508. }
  1509. #undef SET_SEPROM
  1510. #undef GET_SEPROM
  1511. static int __devinit get_esi_fpga(struct atm_dev *dev,unsigned long base)
  1512. {
  1513. unsigned long mac_base;
  1514. int i;
  1515. mac_base = base+EPROM_SIZE-sizeof(struct midway_eprom);
  1516. for (i = 0; i < ESI_LEN; i++) dev->esi[i] = readb(mac_base+(i^3));
  1517. return 0;
  1518. }
  1519. static int __devinit eni_do_init(struct atm_dev *dev)
  1520. {
  1521. struct midway_eprom *eprom;
  1522. struct eni_dev *eni_dev;
  1523. struct pci_dev *pci_dev;
  1524. unsigned long real_base,base;
  1525. unsigned char revision;
  1526. int error,i,last;
  1527. DPRINTK(">eni_initn");
  1528. dev->ci_range.vpi_bits = 0;
  1529. dev->ci_range.vci_bits = NR_VCI_LD;
  1530. dev->link_rate = ATM_OC3_PCR;
  1531. eni_dev = ENI_DEV(dev);
  1532. pci_dev = eni_dev->pci_dev;
  1533. real_base = pci_resource_start(pci_dev, 0);
  1534. eni_dev->irq = pci_dev->irq;
  1535. error = pci_read_config_byte(pci_dev,PCI_REVISION_ID,&revision);
  1536. if (error) {
  1537. printk(KERN_ERR DEV_LABEL "(itf %d): init error 0x%02xn",
  1538.     dev->number,error);
  1539. return -EINVAL;
  1540. }
  1541. if ((error = pci_write_config_word(pci_dev,PCI_COMMAND,
  1542.     PCI_COMMAND_MEMORY |
  1543.     (eni_dev->asic ? PCI_COMMAND_PARITY | PCI_COMMAND_SERR : 0)))) {
  1544. printk(KERN_ERR DEV_LABEL "(itf %d): can't enable memory "
  1545.     "(0x%02x)n",dev->number,error);
  1546. return -EIO;
  1547. }
  1548. printk(KERN_NOTICE DEV_LABEL "(itf %d): rev.%d,base=0x%lx,irq=%d,",
  1549.     dev->number,revision,real_base,eni_dev->irq);
  1550. if (!(base = (unsigned long) ioremap_nocache(real_base,MAP_MAX_SIZE))) {
  1551. printk("n");
  1552. printk(KERN_ERR DEV_LABEL "(itf %d): can't set up page "
  1553.     "mappingn",dev->number);
  1554. return error;
  1555. }
  1556. eni_dev->base_diff = real_base-base;
  1557. /* id may not be present in ASIC Tonga boards - check this @@@ */
  1558. if (!eni_dev->asic) {
  1559. eprom = (struct midway_eprom *) (base+EPROM_SIZE-sizeof(struct
  1560.     midway_eprom));
  1561. if (readl(&eprom->magic) != ENI155_MAGIC) {
  1562. printk("n");
  1563. printk(KERN_ERR KERN_ERR DEV_LABEL "(itf %d): bad "
  1564.     "magic - expected 0x%x, got 0x%xn",dev->number,
  1565.     ENI155_MAGIC,(unsigned) readl(&eprom->magic));
  1566. return -EINVAL;
  1567. }
  1568. }
  1569. eni_dev->phy = base+PHY_BASE;
  1570. eni_dev->reg = base+REG_BASE;
  1571. eni_dev->ram = base+RAM_BASE;
  1572. last = MAP_MAX_SIZE-RAM_BASE;
  1573. for (i = last-RAM_INCREMENT; i >= 0; i -= RAM_INCREMENT) {
  1574. writel(0x55555555,eni_dev->ram+i);
  1575. if (readl(eni_dev->ram+i) != 0x55555555) last = i;
  1576. else {
  1577. writel(0xAAAAAAAA,eni_dev->ram+i);
  1578. if (readl(eni_dev->ram+i) != 0xAAAAAAAA) last = i;
  1579. else writel(i,eni_dev->ram+i);
  1580. }
  1581. }
  1582. for (i = 0; i < last; i += RAM_INCREMENT)
  1583. if (readl(eni_dev->ram+i) != i) break;
  1584. eni_dev->mem = i;
  1585. memset_io(eni_dev->ram,0,eni_dev->mem);
  1586. /* TODO: should shrink allocation now */
  1587. printk("mem=%dkB (",eni_dev->mem >> 10);
  1588. /* TODO: check for non-SUNI, check for TAXI ? */
  1589. if (!(eni_in(MID_RES_ID_MCON) & 0x200) != !eni_dev->asic) {
  1590. printk(")n");
  1591. printk(KERN_ERR DEV_LABEL "(itf %d): ERROR - wrong id 0x%xn",
  1592.     dev->number,(unsigned) eni_in(MID_RES_ID_MCON));
  1593. return -EINVAL;
  1594. }
  1595. error = eni_dev->asic ? get_esi_asic(dev) : get_esi_fpga(dev,base);
  1596. if (error) return error;
  1597. for (i = 0; i < ESI_LEN; i++)
  1598. printk("%s%02X",i ? "-" : "",dev->esi[i]);
  1599. printk(")n");
  1600. printk(KERN_NOTICE DEV_LABEL "(itf %d): %s,%sn",dev->number,
  1601.     eni_in(MID_RES_ID_MCON) & 0x200 ? "ASIC" : "FPGA",
  1602.     media_name[eni_in(MID_RES_ID_MCON) & DAUGTHER_ID]);
  1603. return suni_init(dev);
  1604. }
  1605. static int __devinit eni_start(struct atm_dev *dev)
  1606. {
  1607. struct eni_dev *eni_dev;
  1608. unsigned long buf,buffer_mem;
  1609. int error;
  1610. DPRINTK(">eni_startn");
  1611. eni_dev = ENI_DEV(dev);
  1612. if (request_irq(eni_dev->irq,&eni_int,SA_SHIRQ,DEV_LABEL,dev)) {
  1613. printk(KERN_ERR DEV_LABEL "(itf %d): IRQ%d is already in usen",
  1614.     dev->number,eni_dev->irq);
  1615. return -EAGAIN;
  1616. }
  1617. /* @@@ should release IRQ on error */
  1618. pci_set_master(eni_dev->pci_dev);
  1619. if ((error = pci_write_config_word(eni_dev->pci_dev,PCI_COMMAND,
  1620.     PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER |
  1621.     (eni_dev->asic ? PCI_COMMAND_PARITY | PCI_COMMAND_SERR : 0)))) {
  1622. printk(KERN_ERR DEV_LABEL "(itf %d): can't enable memory+"
  1623.     "master (0x%02x)n",dev->number,error);
  1624. return error;
  1625. }
  1626. #ifdef __sparc_v9__ /* copied from drivers/net/sunhme.c */
  1627. /* NOTE: Cache line size is in 32-bit word units. */
  1628. pci_write_config_byte(eni_dev->pci_dev, PCI_CACHE_LINE_SIZE, 0x10);
  1629. #endif
  1630. if ((error = pci_write_config_byte(eni_dev->pci_dev,PCI_TONGA_CTRL,
  1631.     END_SWAP_DMA))) {
  1632. printk(KERN_ERR DEV_LABEL "(itf %d): can't set endian swap "
  1633.     "(0x%02x)n",dev->number,error);
  1634. return error;
  1635. }
  1636. /* determine addresses of internal tables */
  1637. eni_dev->vci = eni_dev->ram;
  1638. eni_dev->rx_dma = eni_dev->ram+NR_VCI*16;
  1639. eni_dev->tx_dma = eni_dev->rx_dma+NR_DMA_RX*8;
  1640. eni_dev->service = eni_dev->tx_dma+NR_DMA_TX*8;
  1641. buf = eni_dev->service+NR_SERVICE*4;
  1642. DPRINTK("vci 0x%lx,rx 0x%lx, tx 0x%lx,srv 0x%lx,buf 0x%lxn",
  1643.      eni_dev->vci,eni_dev->rx_dma,eni_dev->tx_dma,
  1644.      eni_dev->service,buf);
  1645. spin_lock_init(&eni_dev->lock);
  1646. tasklet_init(&eni_dev->task,eni_tasklet,(unsigned long) dev);
  1647. eni_dev->events = 0;
  1648. /* initialize memory management */
  1649. buffer_mem = eni_dev->mem-(buf-eni_dev->ram);
  1650. eni_dev->free_list_size = buffer_mem/MID_MIN_BUF_SIZE/2;
  1651. eni_dev->free_list = (struct eni_free *) kmalloc(
  1652.     sizeof(struct eni_free)*(eni_dev->free_list_size+1),GFP_KERNEL);
  1653. if (!eni_dev->free_list) {
  1654. printk(KERN_ERR DEV_LABEL "(itf %d): couldn't get free pagen",
  1655.     dev->number);
  1656. return -ENOMEM;
  1657. }
  1658. eni_dev->free_len = 0;
  1659. eni_put_free(eni_dev,buf,buffer_mem);
  1660. memset_io(eni_dev->vci,0,16*NR_VCI); /* clear VCI table */
  1661. /*
  1662.  * byte_addr  free (k)
  1663.  * 0x00000000     512  VCI table
  1664.  * 0x00004000   496  RX DMA
  1665.  * 0x00005000   492  TX DMA
  1666.  * 0x00006000   488  service list
  1667.  * 0x00007000   484  buffers
  1668.  * 0x00080000     0  end (512kB)
  1669.  */
  1670. eni_out(0xffffffff,MID_IE);
  1671. error = start_tx(dev);
  1672. if (error) return error;
  1673. error = start_rx(dev);
  1674. if (error) return error;
  1675. error = dev->phy->start(dev);
  1676. if (error) return error;
  1677. eni_out(eni_in(MID_MC_S) | (1 << MID_INT_SEL_SHIFT) |
  1678.     MID_TX_LOCK_MODE | MID_DMA_ENABLE | MID_TX_ENABLE | MID_RX_ENABLE,
  1679.     MID_MC_S);
  1680.     /* Tonga uses SBus INTReq1 */
  1681. (void) eni_in(MID_ISA); /* clear Midway interrupts */
  1682. return 0;
  1683. }
  1684. static void eni_close(struct atm_vcc *vcc)
  1685. {
  1686. DPRINTK(">eni_closen");
  1687. if (!ENI_VCC(vcc)) return;
  1688. clear_bit(ATM_VF_READY,&vcc->flags);
  1689. close_rx(vcc);
  1690. close_tx(vcc);
  1691. DPRINTK("eni_close: done waitingn");
  1692. /* deallocate memory */
  1693. kfree(ENI_VCC(vcc));
  1694. ENI_VCC(vcc) = NULL;
  1695. clear_bit(ATM_VF_ADDR,&vcc->flags);
  1696. /*foo();*/
  1697. }
  1698. static int get_ci(struct atm_vcc *vcc,short *vpi,int *vci)
  1699. {
  1700. struct atm_vcc *walk;
  1701. if (*vpi == ATM_VPI_ANY) *vpi = 0;
  1702. if (*vci == ATM_VCI_ANY) {
  1703. for (*vci = ATM_NOT_RSV_VCI; *vci < NR_VCI; (*vci)++) {
  1704. if (vcc->qos.rxtp.traffic_class != ATM_NONE &&
  1705.     ENI_DEV(vcc->dev)->rx_map[*vci])
  1706. continue;
  1707. if (vcc->qos.txtp.traffic_class != ATM_NONE) {
  1708. for (walk = vcc->dev->vccs; walk;
  1709.     walk = walk->next)
  1710. if (test_bit(ATM_VF_ADDR,&walk->flags)
  1711.     && walk->vci == *vci &&
  1712.     walk->qos.txtp.traffic_class !=
  1713.     ATM_NONE)
  1714. break;
  1715. if (walk) continue;
  1716. }
  1717. break;
  1718. }
  1719. return *vci == NR_VCI ? -EADDRINUSE : 0;
  1720. }
  1721. if (*vci == ATM_VCI_UNSPEC) return 0;
  1722. if (vcc->qos.rxtp.traffic_class != ATM_NONE &&
  1723.     ENI_DEV(vcc->dev)->rx_map[*vci])
  1724. return -EADDRINUSE;
  1725. if (vcc->qos.txtp.traffic_class == ATM_NONE) return 0;
  1726. for (walk = vcc->dev->vccs; walk; walk = walk->next)
  1727. if (test_bit(ATM_VF_ADDR,&walk->flags) && walk->vci == *vci &&
  1728.     walk->qos.txtp.traffic_class != ATM_NONE)
  1729. return -EADDRINUSE;
  1730. return 0;
  1731. }
  1732. static int eni_open(struct atm_vcc *vcc,short vpi,int vci)
  1733. {
  1734. struct eni_dev *eni_dev;
  1735. struct eni_vcc *eni_vcc;
  1736. int error;
  1737. DPRINTK(">eni_openn");
  1738. EVENT("eni_openn",0,0);
  1739. if (!test_bit(ATM_VF_PARTIAL,&vcc->flags)) ENI_VCC(vcc) = NULL;
  1740. eni_dev = ENI_DEV(vcc->dev);
  1741. error = get_ci(vcc,&vpi,&vci);
  1742. if (error) return error;
  1743. vcc->vpi = vpi;
  1744. vcc->vci = vci;
  1745. if (vci != ATM_VPI_UNSPEC && vpi != ATM_VCI_UNSPEC)
  1746. set_bit(ATM_VF_ADDR,&vcc->flags);
  1747. if (vcc->qos.aal != ATM_AAL0 && vcc->qos.aal != ATM_AAL5)
  1748. return -EINVAL;
  1749. DPRINTK(DEV_LABEL "(itf %d): open %d.%dn",vcc->dev->number,vcc->vpi,
  1750.     vcc->vci);
  1751. if (!test_bit(ATM_VF_PARTIAL,&vcc->flags)) {
  1752. eni_vcc = kmalloc(sizeof(struct eni_vcc),GFP_KERNEL);
  1753. if (!eni_vcc) return -ENOMEM;
  1754. ENI_VCC(vcc) = eni_vcc;
  1755. eni_vcc->tx = NULL; /* for eni_close after open_rx */
  1756. if ((error = open_rx_first(vcc))) {
  1757. eni_close(vcc);
  1758. return error;
  1759. }
  1760. if ((error = open_tx_first(vcc))) {
  1761. eni_close(vcc);
  1762. return error;
  1763. }
  1764. }
  1765. if (vci == ATM_VPI_UNSPEC || vpi == ATM_VCI_UNSPEC) return 0;
  1766. if ((error = open_rx_second(vcc))) {
  1767. eni_close(vcc);
  1768. return error;
  1769. }
  1770. if ((error = open_tx_second(vcc))) {
  1771. eni_close(vcc);
  1772. return error;
  1773. }
  1774. set_bit(ATM_VF_READY,&vcc->flags);
  1775. /* should power down SUNI while !ref_count @@@ */
  1776. return 0;
  1777. }
  1778. static int eni_change_qos(struct atm_vcc *vcc,struct atm_qos *qos,int flgs)
  1779. {
  1780. struct eni_dev *eni_dev = ENI_DEV(vcc->dev);
  1781. struct eni_tx *tx = ENI_VCC(vcc)->tx;
  1782. struct sk_buff *skb;
  1783. int error,rate,rsv,shp;
  1784. if (qos->txtp.traffic_class == ATM_NONE) return 0;
  1785. if (tx == eni_dev->ubr) return -EBADFD;
  1786. rate = atm_pcr_goal(&qos->txtp);
  1787. if (rate < 0) rate = -rate;
  1788. rsv = shp = 0;
  1789. if ((flgs & ATM_MF_DEC_RSV) && rate && rate < tx->reserved) rsv = 1;
  1790. if ((flgs & ATM_MF_INC_RSV) && (!rate || rate > tx->reserved)) rsv = 1;
  1791. if ((flgs & ATM_MF_DEC_SHP) && rate && rate < tx->shaping) shp = 1;
  1792. if ((flgs & ATM_MF_INC_SHP) && (!rate || rate > tx->shaping)) shp = 1;
  1793. if (!rsv && !shp) return 0;
  1794. error = reserve_or_set_tx(vcc,&qos->txtp,rsv,shp);
  1795. if (error) return error;
  1796. if (shp && !(flgs & ATM_MF_IMMED)) return 0;
  1797. /*
  1798.  * Walk through the send buffer and patch the rate information in all
  1799.  * segmentation buffer descriptors of this VCC.
  1800.  */
  1801. tasklet_disable(&eni_dev->task);
  1802. for (skb = eni_dev->tx_queue.next; skb !=
  1803.     (struct sk_buff *) &eni_dev->tx_queue; skb = skb->next) {
  1804. unsigned long dsc;
  1805. if (ATM_SKB(skb)->vcc != vcc) continue;
  1806. dsc = tx->send+ENI_PRV_POS(skb)*4;
  1807. writel((readl(dsc) & ~(MID_SEG_RATE | MID_SEG_PR)) |
  1808.     (tx->prescaler << MID_SEG_PR_SHIFT) |
  1809.     (tx->resolution << MID_SEG_RATE_SHIFT), dsc);
  1810. }
  1811. tasklet_enable(&eni_dev->task);
  1812. return 0;
  1813. }
  1814. static int eni_ioctl(struct atm_dev *dev,unsigned int cmd,void *arg)
  1815. {
  1816. struct eni_dev *eni_dev = ENI_DEV(dev);
  1817. if (cmd == ENI_MEMDUMP) {
  1818. if (!capable(CAP_NET_ADMIN)) return -EPERM;
  1819. printk(KERN_WARNING "Please use /proc/atm/" DEV_LABEL ":%d "
  1820.     "instead of obsolete ioctl ENI_MEMDUMPn",dev->number);
  1821. dump(dev);
  1822. return 0;
  1823. }
  1824. if (cmd == ENI_SETMULT) {
  1825. struct eni_multipliers mult;
  1826. if (!capable(CAP_NET_ADMIN)) return -EPERM;
  1827. if (copy_from_user(&mult,(void *) arg,
  1828.     sizeof(struct eni_multipliers)))
  1829. return -EFAULT;
  1830. if ((mult.tx && mult.tx <= 100) || (mult.rx &&mult.rx <= 100) ||
  1831.     mult.tx > 65536 || mult.rx > 65536)
  1832. return -EINVAL;
  1833. if (mult.tx) eni_dev->tx_mult = mult.tx;
  1834. if (mult.rx) eni_dev->rx_mult = mult.rx;
  1835. return 0;
  1836. }
  1837. if (cmd == ATM_SETCIRANGE) {
  1838. struct atm_cirange ci;
  1839. if (copy_from_user(&ci,(void *) arg,sizeof(struct atm_cirange)))
  1840. return -EFAULT;
  1841. if ((ci.vpi_bits == 0 || ci.vpi_bits == ATM_CI_MAX) &&
  1842.     (ci.vci_bits == NR_VCI_LD || ci.vpi_bits == ATM_CI_MAX))
  1843.     return 0;
  1844. return -EINVAL;
  1845. }
  1846. if (!dev->phy->ioctl) return -ENOIOCTLCMD;
  1847. return dev->phy->ioctl(dev,cmd,arg);
  1848. }
  1849. static int eni_getsockopt(struct atm_vcc *vcc,int level,int optname,
  1850.     void *optval,int optlen)
  1851. {
  1852. return -EINVAL;
  1853. }
  1854. static int eni_setsockopt(struct atm_vcc *vcc,int level,int optname,
  1855.     void *optval,int optlen)
  1856. {
  1857. return -EINVAL;
  1858. }
  1859. static int eni_send(struct atm_vcc *vcc,struct sk_buff *skb)
  1860. {
  1861. enum enq_res res;
  1862. DPRINTK(">eni_sendn");
  1863. if (!ENI_VCC(vcc)->tx) {
  1864. if (vcc->pop) vcc->pop(vcc,skb);
  1865. else dev_kfree_skb(skb);
  1866. return -EINVAL;
  1867. }
  1868. if (!skb) {
  1869. printk(KERN_CRIT "!skb in eni_send ?n");
  1870. if (vcc->pop) vcc->pop(vcc,skb);
  1871. return -EINVAL;
  1872. }
  1873. if (vcc->qos.aal == ATM_AAL0) {
  1874. if (skb->len != ATM_CELL_SIZE-1) {
  1875. if (vcc->pop) vcc->pop(vcc,skb);
  1876. else dev_kfree_skb(skb);
  1877. return -EINVAL;
  1878. }
  1879. *(u32 *) skb->data = htonl(*(u32 *) skb->data);
  1880. }
  1881. submitted++;
  1882. ATM_SKB(skb)->vcc = vcc;
  1883. tasklet_disable(&ENI_DEV(vcc->dev)->task);
  1884. res = do_tx(skb);
  1885. tasklet_enable(&ENI_DEV(vcc->dev)->task);
  1886. if (res == enq_ok) return 0;
  1887. skb_queue_tail(&ENI_VCC(vcc)->tx->backlog,skb);
  1888. backlogged++;
  1889. tasklet_schedule(&ENI_DEV(vcc->dev)->task);
  1890. return 0;
  1891. }
  1892. static int eni_sg_send(struct atm_vcc *vcc,unsigned long start,
  1893.     unsigned long size)
  1894. {
  1895. return vcc->qos.aal == ATM_AAL5 && !((start | size) & 3);
  1896. /* don't tolerate misalignment */
  1897. }
  1898. static void eni_phy_put(struct atm_dev *dev,unsigned char value,
  1899.     unsigned long addr)
  1900. {
  1901. writel(value,ENI_DEV(dev)->phy+addr*4);
  1902. }
  1903. static unsigned char eni_phy_get(struct atm_dev *dev,unsigned long addr)
  1904. {
  1905. return readl(ENI_DEV(dev)->phy+addr*4);
  1906. }
  1907. static int eni_proc_read(struct atm_dev *dev,loff_t *pos,char *page)
  1908. {
  1909. static const char *signal[] = { "LOST","unknown","okay" };
  1910. struct eni_dev *eni_dev = ENI_DEV(dev);
  1911. struct atm_vcc *vcc;
  1912. int left,i;
  1913. left = *pos;
  1914. if (!left)
  1915. return sprintf(page,DEV_LABEL "(itf %d) signal %s, %dkB, "
  1916.     "%d cps remainingn",dev->number,signal[(int) dev->signal],
  1917.     eni_dev->mem >> 10,eni_dev->tx_bw);
  1918. if (!--left)
  1919. return sprintf(page,"%4sBursts: TX"
  1920. #if !defined(CONFIG_ATM_ENI_BURST_TX_16W) && 
  1921.     !defined(CONFIG_ATM_ENI_BURST_TX_8W) && 
  1922.     !defined(CONFIG_ATM_ENI_BURST_TX_4W) && 
  1923.     !defined(CONFIG_ATM_ENI_BURST_TX_2W)
  1924.     " none"
  1925. #endif
  1926. #ifdef CONFIG_ATM_ENI_BURST_TX_16W
  1927.     " 16W"
  1928. #endif
  1929. #ifdef CONFIG_ATM_ENI_BURST_TX_8W
  1930.     " 8W"
  1931. #endif
  1932. #ifdef CONFIG_ATM_ENI_BURST_TX_4W
  1933.     " 4W"
  1934. #endif
  1935. #ifdef CONFIG_ATM_ENI_BURST_TX_2W
  1936.     " 2W"
  1937. #endif
  1938.     ", RX"
  1939. #if !defined(CONFIG_ATM_ENI_BURST_RX_16W) && 
  1940.     !defined(CONFIG_ATM_ENI_BURST_RX_8W) && 
  1941.     !defined(CONFIG_ATM_ENI_BURST_RX_4W) && 
  1942.     !defined(CONFIG_ATM_ENI_BURST_RX_2W)
  1943.     " none"
  1944. #endif
  1945. #ifdef CONFIG_ATM_ENI_BURST_RX_16W
  1946.     " 16W"
  1947. #endif
  1948. #ifdef CONFIG_ATM_ENI_BURST_RX_8W
  1949.     " 8W"
  1950. #endif
  1951. #ifdef CONFIG_ATM_ENI_BURST_RX_4W
  1952.     " 4W"
  1953. #endif
  1954. #ifdef CONFIG_ATM_ENI_BURST_RX_2W
  1955.     " 2W"
  1956. #endif
  1957. #ifndef CONFIG_ATM_ENI_TUNE_BURST
  1958.     " (default)"
  1959. #endif
  1960.     "n","");
  1961. if (!--left) 
  1962. return sprintf(page,"%4sBuffer multipliers: tx %d%%, rx %d%%n",
  1963.     "",eni_dev->tx_mult,eni_dev->rx_mult);
  1964. for (i = 0; i < NR_CHAN; i++) {
  1965. struct eni_tx *tx = eni_dev->tx+i;
  1966. if (!tx->send) continue;
  1967. if (!--left) {
  1968. return sprintf(page,"tx[%d]:    0x%06lx-0x%06lx "
  1969.     "(%6ld bytes), rsv %d cps, shp %d cps%sn",i,
  1970.     tx->send-eni_dev->ram,
  1971.     tx->send-eni_dev->ram+tx->words*4-1,tx->words*4,
  1972.     tx->reserved,tx->shaping,
  1973.     tx == eni_dev->ubr ? " (UBR)" : "");
  1974. }
  1975. if (--left) continue;
  1976. return sprintf(page,"%10sbacklog %u packetsn","",
  1977.     skb_queue_len(&tx->backlog));
  1978. }
  1979. for (vcc = dev->vccs; vcc; vcc = vcc->next) {
  1980. struct eni_vcc *eni_vcc = ENI_VCC(vcc);
  1981. int length;
  1982. if (--left) continue;
  1983. length = sprintf(page,"vcc %4d: ",vcc->vci);
  1984. if (eni_vcc->rx) {
  1985. length += sprintf(page+length,"0x%06lx-0x%06lx "
  1986.     "(%6ld bytes)",
  1987.     eni_vcc->recv-eni_dev->ram,
  1988.     eni_vcc->recv-eni_dev->ram+eni_vcc->words*4-1,
  1989.     eni_vcc->words*4);
  1990. if (eni_vcc->tx) length += sprintf(page+length,", ");
  1991. }
  1992. if (eni_vcc->tx)
  1993. length += sprintf(page+length,"tx[%d], txing %d bytes",
  1994.     eni_vcc->tx->index,eni_vcc->txing);
  1995. page[length] = 'n';
  1996. return length+1;
  1997. }
  1998. for (i = 0; i < eni_dev->free_len; i++) {
  1999. struct eni_free *fe = eni_dev->free_list+i;
  2000. unsigned long offset;
  2001. if (--left) continue;
  2002. offset = eni_dev->ram+eni_dev->base_diff;
  2003. return sprintf(page,"free      0x%06lx-0x%06lx (%6d bytes)n",
  2004.     fe->start-offset,fe->start-offset+(1 << fe->order)-1,
  2005.     1 << fe->order);
  2006. }
  2007. return 0;
  2008. }
  2009. static const struct atmdev_ops ops = {
  2010. open: eni_open,
  2011. close: eni_close,
  2012. ioctl: eni_ioctl,
  2013. getsockopt: eni_getsockopt,
  2014. setsockopt: eni_setsockopt,
  2015. send: eni_send,
  2016. sg_send: eni_sg_send,
  2017. phy_put: eni_phy_put,
  2018. phy_get: eni_phy_get,
  2019. change_qos: eni_change_qos,
  2020. proc_read: eni_proc_read
  2021. };
  2022. static int __devinit eni_init_one(struct pci_dev *pci_dev,
  2023.     const struct pci_device_id *ent)
  2024. {
  2025. struct atm_dev *dev;
  2026. struct eni_dev *eni_dev;
  2027. int error = -ENOMEM;
  2028. DPRINTK("eni_init_onen");
  2029. MOD_INC_USE_COUNT; /* @@@ we don't support unloading yet */
  2030. if (pci_enable_device(pci_dev)) {
  2031. error = -EIO;
  2032. goto out0;
  2033. }
  2034. eni_dev = (struct eni_dev *) kmalloc(sizeof(struct eni_dev),GFP_KERNEL);
  2035. if (!eni_dev) goto out0;
  2036. if (!cpu_zeroes) {
  2037. cpu_zeroes = pci_alloc_consistent(pci_dev,ENI_ZEROES_SIZE,
  2038.     &zeroes);
  2039. if (!cpu_zeroes) goto out1;
  2040. }
  2041. dev = atm_dev_register(DEV_LABEL,&ops,-1,NULL);
  2042. if (!dev) goto out2;
  2043. pci_set_drvdata(pci_dev, dev);
  2044. eni_dev->pci_dev = pci_dev;
  2045. ENI_DEV(dev) = eni_dev;
  2046. eni_dev->asic = ent->driver_data;
  2047. error = eni_do_init(dev);
  2048. if (error) goto out3;
  2049. error = eni_start(dev);
  2050. if (error) goto out3;
  2051. eni_dev->more = eni_boards;
  2052. eni_boards = dev;
  2053. return 0;
  2054. out3:
  2055. atm_dev_deregister(dev);
  2056. out2:
  2057. pci_free_consistent(eni_dev->pci_dev,ENI_ZEROES_SIZE,cpu_zeroes,zeroes);
  2058. cpu_zeroes = NULL;
  2059. out1:
  2060. kfree(eni_dev);
  2061. out0:
  2062. MOD_DEC_USE_COUNT; /* @@@ we don't support unloading yet */
  2063. return error;
  2064. }
  2065. static struct pci_device_id eni_pci_tbl[] __devinitdata = {
  2066. { PCI_VENDOR_ID_EF, PCI_DEVICE_ID_EF_ATM_FPGA, PCI_ANY_ID, PCI_ANY_ID,
  2067.   0, 0, 0 /* FPGA */ },
  2068. { PCI_VENDOR_ID_EF, PCI_DEVICE_ID_EF_ATM_ASIC, PCI_ANY_ID, PCI_ANY_ID,
  2069.   0, 0, 1 /* ASIC */ },
  2070. { 0, }
  2071. };
  2072. MODULE_DEVICE_TABLE(pci,eni_pci_tbl);
  2073. static void __devexit eni_remove_one(struct pci_dev *pci_dev)
  2074. {
  2075. /* grrr */
  2076. }
  2077. static struct pci_driver eni_driver = {
  2078. name: DEV_LABEL,
  2079. id_table: eni_pci_tbl,
  2080. probe: eni_init_one,
  2081. remove: __devexit_p(eni_remove_one),
  2082. };
  2083. static int __init eni_init(void)
  2084. {
  2085. struct sk_buff *skb; /* dummy for sizeof */
  2086. if (sizeof(skb->cb) < sizeof(struct eni_skb_prv)) {
  2087. printk(KERN_ERR "eni_detect: skb->cb is too small (%d < %d)n",
  2088.     sizeof(skb->cb),sizeof(struct eni_skb_prv));
  2089. return -EIO;
  2090. }
  2091. if (pci_register_driver(&eni_driver) > 0) return 0;
  2092. pci_unregister_driver (&eni_driver);
  2093. return -ENODEV;
  2094. }
  2095. static void __exit eni_cleanup(void)
  2096. {
  2097. /*
  2098.  * Well, there's no way to get rid of the driver yet, so we don't
  2099.  * have to clean up, right ? :-)
  2100.  */
  2101. }
  2102. module_init(eni_init);
  2103. module_exit(eni_cleanup);
  2104. EXPORT_NO_SYMBOLS;
  2105. MODULE_LICENSE("GPL");