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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* drivers/atm/eni.h - Efficient Networks ENI155P device driver declarations */
  2.  
  3. /* Written 1995-2000 by Werner Almesberger, EPFL LRC/ICA */
  4.  
  5.  
  6. #ifndef DRIVER_ATM_ENI_H
  7. #define DRIVER_ATM_ENI_H
  8. #include <linux/atm.h>
  9. #include <linux/atmdev.h>
  10. #include <linux/sonet.h>
  11. #include <linux/skbuff.h>
  12. #include <linux/time.h>
  13. #include <linux/pci.h>
  14. #include <linux/spinlock.h>
  15. #include <asm/atomic.h>
  16. #include "midway.h"
  17. #define KERNEL_OFFSET 0xC0000000 /* kernel 0x0 is at phys 0xC0000000 */
  18. #define DEV_LABEL "eni"
  19. #define UBR_BUFFER (128*1024) /* UBR buffer size */
  20. #define RX_DMA_BUF   8 /* burst and skip a few things */
  21. #define TX_DMA_BUF 100 /* should be enough for 64 kB */
  22. #define DEFAULT_RX_MULT 300 /* max_sdu*3 */
  23. #define DEFAULT_TX_MULT 300 /* max_sdu*3 */
  24. #define ENI_ZEROES_SIZE   4 /* need that many DMA-able zero bytes */
  25. struct eni_free {
  26. unsigned long start; /* counting in bytes */
  27. int order;
  28. };
  29. struct eni_tx {
  30. unsigned long send; /* base, 0 if unused */
  31. int prescaler; /* shaping prescaler */
  32. int resolution; /* shaping divider */
  33. unsigned long tx_pos; /* current TX write position */
  34. unsigned long words; /* size of TX queue */
  35. int index; /* TX channel number */
  36. int reserved; /* reserved peak cell rate */
  37. int shaping; /* shaped peak cell rate */
  38. struct sk_buff_head backlog; /* queue of waiting TX buffers */
  39. };
  40. struct eni_vcc {
  41. int (*rx)(struct atm_vcc *vcc); /* RX function, NULL if none */
  42. unsigned long recv; /* receive buffer */
  43. unsigned long words; /* its size in words */
  44. unsigned long descr; /* next descriptor (RX) */
  45. unsigned long rx_pos; /* current RX descriptor pos */
  46. struct eni_tx *tx; /* TXer, NULL if none */
  47. int rxing; /* number of pending PDUs */
  48. int servicing; /* number of waiting VCs (0 or 1) */
  49. int txing; /* number of pending TX bytes */
  50. struct timeval timestamp; /* for RX timing */
  51. struct atm_vcc *next; /* next pending RX */
  52. struct sk_buff *last; /* last PDU being DMAed (used to carry
  53.    discard information) */
  54. };
  55. struct eni_dev {
  56. /*-------------------------------- spinlock */
  57. spinlock_t lock; /* sync with interrupt */
  58. struct tasklet_struct task; /* tasklet for interrupt work */
  59. u32 events; /* pending events */
  60. /*-------------------------------- base pointers into Midway address
  61.    space */
  62. unsigned long phy; /* PHY interface chip registers */
  63. unsigned long reg; /* register base */
  64. unsigned long ram; /* RAM base */
  65. unsigned long vci; /* VCI table */
  66. unsigned long rx_dma; /* RX DMA queue */
  67. unsigned long tx_dma; /* TX DMA queue */
  68. unsigned long service; /* service list */
  69. /*-------------------------------- TX part */
  70. struct eni_tx tx[NR_CHAN]; /* TX channels */
  71. struct eni_tx *ubr; /* UBR channel */
  72. struct sk_buff_head tx_queue; /* PDUs currently being TX DMAed*/
  73. wait_queue_head_t tx_wait; /* for close */
  74. int tx_bw; /* remaining bandwidth */
  75. u32 dma[TX_DMA_BUF*2]; /* DMA request scratch area */
  76. int tx_mult; /* buffer size multiplier (percent) */
  77. /*-------------------------------- RX part */
  78. u32 serv_read; /* host service read index */
  79. struct atm_vcc *fast,*last_fast;/* queues of VCCs with pending PDUs */
  80. struct atm_vcc *slow,*last_slow;
  81. struct atm_vcc **rx_map; /* for fast lookups */
  82. struct sk_buff_head rx_queue; /* PDUs currently being RX-DMAed */
  83. wait_queue_head_t rx_wait; /* for close */
  84. int rx_mult; /* buffer size multiplier (percent) */
  85. /*-------------------------------- statistics */
  86. unsigned long lost; /* number of lost cells (RX) */
  87. /*-------------------------------- memory management */
  88. unsigned long base_diff; /* virtual-real base address */
  89. int free_len; /* free list length */
  90. struct eni_free *free_list; /* free list */
  91. int free_list_size; /* maximum size of free list */
  92. /*-------------------------------- ENI links */
  93. struct atm_dev *more; /* other ENI devices */
  94. /*-------------------------------- general information */
  95. int mem; /* RAM on board (in bytes) */
  96. int asic; /* PCI interface type, 0 for FPGA */
  97. unsigned int irq; /* IRQ */
  98. struct pci_dev *pci_dev; /* PCI stuff */
  99. };
  100. #define ENI_DEV(d) ((struct eni_dev *) (d)->dev_data)
  101. #define ENI_VCC(d) ((struct eni_vcc *) (d)->dev_data)
  102. struct eni_skb_prv {
  103. struct atm_skb_data _; /* reserved */
  104. unsigned long pos; /* position of next descriptor */
  105. int size; /* PDU size in reassembly buffer */
  106. dma_addr_t paddr; /* DMA handle */
  107. };
  108. #define ENI_PRV_SIZE(skb) (((struct eni_skb_prv *) (skb)->cb)->size)
  109. #define ENI_PRV_POS(skb) (((struct eni_skb_prv *) (skb)->cb)->pos)
  110. #define ENI_PRV_PADDR(skb) (((struct eni_skb_prv *) (skb)->cb)->paddr)
  111. #endif