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

嵌入式Linux

开发平台:

Unix_Linux

  1. /******************************************************************************
  2.  *
  3.  * nicstar.h
  4.  *
  5.  * Header file for the nicstar device driver.
  6.  *
  7.  * Author: Rui Prior (rprior@inescn.pt)
  8.  * PowerPC support by Jay Talbott (jay_talbott@mcg.mot.com) April 1999
  9.  *
  10.  * (C) INESC 1998
  11.  *
  12.  ******************************************************************************/
  13. #ifndef _LINUX_NICSTAR_H_
  14. #define _LINUX_NICSTAR_H_
  15. /* Includes *******************************************************************/
  16. #include <linux/types.h>
  17. #include <linux/pci.h>
  18. #include <linux/uio.h>
  19. #include <linux/skbuff.h>
  20. #include <linux/atmdev.h>
  21. #include <linux/atm_nicstar.h>
  22. /* Options ********************************************************************/
  23. #undef NS_DEBUG_SPINLOCKS
  24. #define NS_MAX_CARDS 4 /* Maximum number of NICStAR based cards
  25.    controlled by the device driver. Must
  26.                                    be <= 5 */
  27. #undef RCQ_SUPPORT /* Do not define this for now */
  28. #define NS_TST_NUM_ENTRIES 2340 /* + 1 for return */
  29. #define NS_TST_RESERVED 340 /* N. entries reserved for UBR/ABR/VBR */
  30. #define NS_SMBUFSIZE 48 /* 48, 96, 240 or 2048 */
  31. #define NS_LGBUFSIZE 16384 /* 2048, 4096, 8192 or 16384 */
  32. #define NS_RSQSIZE 8192 /* 2048, 4096 or 8192 */
  33. #define NS_VPIBITS 2 /* 0, 1, 2, or 8 */
  34. #define NS_MAX_RCTSIZE 4096 /* Number of entries. 4096 or 16384.
  35.                                    Define 4096 only if (all) your card(s)
  36.    have 32K x 32bit SRAM, in which case
  37.    setting this to 16384 will just waste a
  38.    lot of memory.
  39.    Setting this to 4096 for a card with
  40.    128K x 32bit SRAM will limit the maximum
  41.    VCI. */
  42. /*#define NS_PCI_LATENCY 64*/ /* Must be a multiple of 32 */
  43. /* Number of buffers initially allocated */
  44. #define NUM_SB 32 /* Must be even */
  45. #define NUM_LB 24 /* Must be even */
  46. #define NUM_HB 8 /* Pre-allocated huge buffers */
  47. #define NUM_IOVB 48 /* Iovec buffers */
  48. /* Lower level for count of buffers */
  49. #define MIN_SB 8 /* Must be even */
  50. #define MIN_LB 8 /* Must be even */
  51. #define MIN_HB 6
  52. #define MIN_IOVB 8
  53. /* Upper level for count of buffers */
  54. #define MAX_SB 64 /* Must be even, <= 508 */
  55. #define MAX_LB 48 /* Must be even, <= 508 */
  56. #define MAX_HB 10
  57. #define MAX_IOVB 80
  58. /* These are the absolute maximum allowed for the ioctl() */
  59. #define TOP_SB 256 /* Must be even, <= 508 */
  60. #define TOP_LB 128 /* Must be even, <= 508 */
  61. #define TOP_HB 64
  62. #define TOP_IOVB 256
  63. #define MAX_TBD_PER_VC 1 /* Number of TBDs before a TSR */
  64. #define MAX_TBD_PER_SCQ 10 /* Only meaningful for variable rate SCQs */
  65. #undef ENABLE_TSQFIE
  66. #define SCQFULL_TIMEOUT (5 * HZ)
  67. #define NS_POLL_PERIOD (HZ)
  68. #define PCR_TOLERANCE (1.0001)
  69. /* ESI stuff ******************************************************************/
  70. #define NICSTAR_EPROM_MAC_ADDR_OFFSET 0x6C
  71. /* #defines *******************************************************************/
  72. #define NS_IOREMAP_SIZE 4096
  73. #define BUF_SM 0x00000000 /* These two are used for push_rxbufs() */
  74. #define BUF_LG 0x00000001       /* CMD, Write_FreeBufQ, LBUF bit */
  75. #define NS_HBUFSIZE 65568 /* Size of max. AAL5 PDU */
  76. #define NS_MAX_IOVECS (2 + (65568 - NS_SMBUFSIZE) / 
  77.                        (NS_LGBUFSIZE - (NS_LGBUFSIZE % 48)))
  78. #define NS_IOVBUFSIZE (NS_MAX_IOVECS * (sizeof(struct iovec)))
  79. #define NS_SMBUFSIZE_USABLE (NS_SMBUFSIZE - NS_SMBUFSIZE % 48)
  80. #define NS_LGBUFSIZE_USABLE (NS_LGBUFSIZE - NS_LGBUFSIZE % 48)
  81. #define NS_AAL0_HEADER (ATM_AAL0_SDU - ATM_CELL_PAYLOAD) /* 4 bytes */
  82. #define NS_SMSKBSIZE (NS_SMBUFSIZE + NS_AAL0_HEADER)
  83. #define NS_LGSKBSIZE (NS_SMBUFSIZE + NS_LGBUFSIZE)
  84. /* NICStAR structures located in host memory **********************************/
  85. /* RSQ - Receive Status Queue 
  86.  *
  87.  * Written by the NICStAR, read by the device driver.
  88.  */
  89. typedef struct ns_rsqe
  90. {
  91.    u32 word_1;
  92.    u32 buffer_handle;
  93.    u32 final_aal5_crc32;
  94.    u32 word_4;
  95. } ns_rsqe;
  96. #define ns_rsqe_vpi(ns_rsqep) 
  97.         ((le32_to_cpu((ns_rsqep)->word_1) & 0x00FF0000) >> 16)
  98. #define ns_rsqe_vci(ns_rsqep) 
  99.         (le32_to_cpu((ns_rsqep)->word_1) & 0x0000FFFF)
  100. #define NS_RSQE_VALID      0x80000000
  101. #define NS_RSQE_NZGFC      0x00004000
  102. #define NS_RSQE_EOPDU      0x00002000
  103. #define NS_RSQE_BUFSIZE    0x00001000
  104. #define NS_RSQE_CONGESTION 0x00000800
  105. #define NS_RSQE_CLP        0x00000400
  106. #define NS_RSQE_CRCERR     0x00000200
  107. #define NS_RSQE_BUFSIZE_SM 0x00000000
  108. #define NS_RSQE_BUFSIZE_LG 0x00001000
  109. #define ns_rsqe_valid(ns_rsqep) 
  110.         (le32_to_cpu((ns_rsqep)->word_4) & NS_RSQE_VALID)
  111. #define ns_rsqe_nzgfc(ns_rsqep) 
  112.         (le32_to_cpu((ns_rsqep)->word_4) & NS_RSQE_NZGFC)
  113. #define ns_rsqe_eopdu(ns_rsqep) 
  114.         (le32_to_cpu((ns_rsqep)->word_4) & NS_RSQE_EOPDU)
  115. #define ns_rsqe_bufsize(ns_rsqep) 
  116.         (le32_to_cpu((ns_rsqep)->word_4) & NS_RSQE_BUFSIZE)
  117. #define ns_rsqe_congestion(ns_rsqep) 
  118.         (le32_to_cpu((ns_rsqep)->word_4) & NS_RSQE_CONGESTION)
  119. #define ns_rsqe_clp(ns_rsqep) 
  120.         (le32_to_cpu((ns_rsqep)->word_4) & NS_RSQE_CLP)
  121. #define ns_rsqe_crcerr(ns_rsqep) 
  122.         (le32_to_cpu((ns_rsqep)->word_4) & NS_RSQE_CRCERR)
  123. #define ns_rsqe_cellcount(ns_rsqep) 
  124.         (le32_to_cpu((ns_rsqep)->word_4) & 0x000001FF)
  125. #define ns_rsqe_init(ns_rsqep) 
  126.         ((ns_rsqep)->word_4 = cpu_to_le32(0x00000000)) 
  127. #define NS_RSQ_NUM_ENTRIES (NS_RSQSIZE / 16)
  128. #define NS_RSQ_ALIGNMENT NS_RSQSIZE
  129. /* RCQ - Raw Cell Queue
  130.  *
  131.  * Written by the NICStAR, read by the device driver.
  132.  */
  133. typedef struct cell_payload
  134. {
  135.    u32 word[12];
  136. } cell_payload;
  137. typedef struct ns_rcqe
  138. {
  139.    u32 word_1;
  140.    u32 word_2;
  141.    u32 word_3;
  142.    u32 word_4;
  143.    cell_payload payload;
  144. } ns_rcqe;
  145. #define NS_RCQE_SIZE 64 /* bytes */
  146. #define ns_rcqe_islast(ns_rcqep) 
  147.         (le32_to_cpu((ns_rcqep)->word_2) != 0x00000000)
  148. #define ns_rcqe_cellheader(ns_rcqep) 
  149.         (le32_to_cpu((ns_rcqep)->word_1))
  150. #define ns_rcqe_nextbufhandle(ns_rcqep) 
  151.         (le32_to_cpu((ns_rcqep)->word_2))
  152. /* SCQ - Segmentation Channel Queue 
  153.  *
  154.  * Written by the device driver, read by the NICStAR.
  155.  */
  156. typedef struct ns_scqe
  157. {
  158.    u32 word_1;
  159.    u32 word_2;
  160.    u32 word_3;
  161.    u32 word_4;
  162. } ns_scqe;
  163.    /* NOTE: SCQ entries can be either a TBD (Transmit Buffer Descriptors)
  164.             or TSR (Transmit Status Requests) */
  165. #define NS_SCQE_TYPE_TBD 0x00000000
  166. #define NS_SCQE_TYPE_TSR 0x80000000
  167. #define NS_TBD_EOPDU 0x40000000
  168. #define NS_TBD_AAL0  0x00000000
  169. #define NS_TBD_AAL34 0x04000000
  170. #define NS_TBD_AAL5  0x08000000
  171. #define NS_TBD_VPI_MASK 0x0FF00000
  172. #define NS_TBD_VCI_MASK 0x000FFFF0
  173. #define NS_TBD_VC_MASK (NS_TBD_VPI_MASK | NS_TBD_VCI_MASK)
  174. #define NS_TBD_VPI_SHIFT 20
  175. #define NS_TBD_VCI_SHIFT 4
  176. #define ns_tbd_mkword_1(flags, m, n, buflen) 
  177.       (cpu_to_le32((flags) | (m) << 23 | (n) << 16 | (buflen)))
  178. #define ns_tbd_mkword_1_novbr(flags, buflen) 
  179.       (cpu_to_le32((flags) | (buflen) | 0x00810000))
  180. #define ns_tbd_mkword_3(control, pdulen) 
  181.       (cpu_to_le32((control) << 16 | (pdulen)))
  182. #define ns_tbd_mkword_4(gfc, vpi, vci, pt, clp) 
  183.       (cpu_to_le32((gfc) << 28 | (vpi) << 20 | (vci) << 4 | (pt) << 1 | (clp)))
  184. #define NS_TSR_INTENABLE 0x20000000
  185. #define NS_TSR_SCDISVBR 0xFFFF /* Use as scdi for VBR SCD */
  186. #define ns_tsr_mkword_1(flags) 
  187.         (cpu_to_le32(NS_SCQE_TYPE_TSR | (flags)))
  188. #define ns_tsr_mkword_2(scdi, scqi) 
  189.         (cpu_to_le32((scdi) << 16 | 0x00008000 | (scqi)))
  190. #define ns_scqe_is_tsr(ns_scqep) 
  191.         (le32_to_cpu((ns_scqep)->word_1) & NS_SCQE_TYPE_TSR)
  192. #define VBR_SCQ_NUM_ENTRIES 512
  193. #define VBR_SCQSIZE 8192
  194. #define CBR_SCQ_NUM_ENTRIES 64
  195. #define CBR_SCQSIZE 1024
  196. #define NS_SCQE_SIZE 16
  197. /* TSQ - Transmit Status Queue
  198.  *
  199.  * Written by the NICStAR, read by the device driver.
  200.  */
  201. typedef struct ns_tsi
  202. {
  203.    u32 word_1;
  204.    u32 word_2;
  205. } ns_tsi;
  206.    /* NOTE: The first word can be a status word copied from the TSR which
  207.             originated the TSI, or a timer overflow indicator. In this last
  208.     case, the value of the first word is all zeroes. */
  209. #define NS_TSI_EMPTY          0x80000000
  210. #define NS_TSI_TIMESTAMP_MASK 0x00FFFFFF
  211. #define ns_tsi_isempty(ns_tsip) 
  212.         (le32_to_cpu((ns_tsip)->word_2) & NS_TSI_EMPTY)
  213. #define ns_tsi_gettimestamp(ns_tsip) 
  214.         (le32_to_cpu((ns_tsip)->word_2) & NS_TSI_TIMESTAMP_MASK)
  215. #define ns_tsi_init(ns_tsip) 
  216.         ((ns_tsip)->word_2 = cpu_to_le32(NS_TSI_EMPTY))
  217. #define NS_TSQSIZE 8192
  218. #define NS_TSQ_NUM_ENTRIES 1024
  219. #define NS_TSQ_ALIGNMENT 8192
  220. #define NS_TSI_SCDISVBR NS_TSR_SCDISVBR
  221. #define ns_tsi_tmrof(ns_tsip) 
  222.         (le32_to_cpu((ns_tsip)->word_1) == 0x00000000)
  223. #define ns_tsi_getscdindex(ns_tsip) 
  224.         ((le32_to_cpu((ns_tsip)->word_1) & 0xFFFF0000) >> 16)
  225. #define ns_tsi_getscqpos(ns_tsip) 
  226.         (le32_to_cpu((ns_tsip)->word_1) & 0x00007FFF)
  227. /* NICStAR structures located in local SRAM ***********************************/
  228. /* RCT - Receive Connection Table
  229.  *
  230.  * Written by both the NICStAR and the device driver.
  231.  */
  232. typedef struct ns_rcte
  233. {
  234.    u32 word_1;
  235.    u32 buffer_handle;
  236.    u32 dma_address;
  237.    u32 aal5_crc32;
  238. } ns_rcte;
  239. #define NS_RCTE_BSFB            0x00200000  /* Rev. D only */
  240. #define NS_RCTE_NZGFC           0x00100000
  241. #define NS_RCTE_CONNECTOPEN     0x00080000
  242. #define NS_RCTE_AALMASK         0x00070000
  243. #define NS_RCTE_AAL0            0x00000000
  244. #define NS_RCTE_AAL34           0x00010000
  245. #define NS_RCTE_AAL5            0x00020000
  246. #define NS_RCTE_RCQ             0x00030000
  247. #define NS_RCTE_RAWCELLINTEN    0x00008000
  248. #define NS_RCTE_RXCONSTCELLADDR 0x00004000
  249. #define NS_RCTE_BUFFVALID       0x00002000
  250. #define NS_RCTE_FBDSIZE         0x00001000
  251. #define NS_RCTE_EFCI            0x00000800
  252. #define NS_RCTE_CLP             0x00000400
  253. #define NS_RCTE_CRCERROR        0x00000200
  254. #define NS_RCTE_CELLCOUNT_MASK  0x000001FF
  255. #define NS_RCTE_FBDSIZE_SM 0x00000000
  256. #define NS_RCTE_FBDSIZE_LG 0x00001000
  257. #define NS_RCT_ENTRY_SIZE 4 /* Number of dwords */
  258.    /* NOTE: We could make macros to contruct the first word of the RCTE,
  259.             but that doesn't seem to make much sense... */
  260. /* FBD - Free Buffer Descriptor
  261.  *
  262.  * Written by the device driver using via the command register.
  263.  */
  264. typedef struct ns_fbd
  265. {
  266.    u32 buffer_handle;
  267.    u32 dma_address;
  268. } ns_fbd;
  269. /* TST - Transmit Schedule Table
  270.  *
  271.  * Written by the device driver.
  272.  */
  273. typedef u32 ns_tste;
  274. #define NS_TST_OPCODE_MASK 0x60000000
  275. #define NS_TST_OPCODE_NULL     0x00000000 /* Insert null cell */
  276. #define NS_TST_OPCODE_FIXED    0x20000000 /* Cell from a fixed rate channel */
  277. #define NS_TST_OPCODE_VARIABLE 0x40000000
  278. #define NS_TST_OPCODE_END      0x60000000 /* Jump */
  279. #define ns_tste_make(opcode, sramad) (opcode | sramad)
  280.    /* NOTE:
  281.       - When the opcode is FIXED, sramad specifies the SRAM address of the
  282.         SCD for that fixed rate channel.
  283.       - When the opcode is END, sramad specifies the SRAM address of the
  284.         location of the next TST entry to read.
  285.     */
  286. /* SCD - Segmentation Channel Descriptor
  287.  *
  288.  * Written by both the device driver and the NICStAR
  289.  */
  290. typedef struct ns_scd
  291. {
  292.    u32 word_1;
  293.    u32 word_2;
  294.    u32 partial_aal5_crc;
  295.    u32 reserved;
  296.    ns_scqe cache_a;
  297.    ns_scqe cache_b;
  298. } ns_scd;
  299. #define NS_SCD_BASE_MASK_VAR 0xFFFFE000 /* Variable rate */
  300. #define NS_SCD_BASE_MASK_FIX 0xFFFFFC00 /* Fixed rate */
  301. #define NS_SCD_TAIL_MASK_VAR 0x00001FF0
  302. #define NS_SCD_TAIL_MASK_FIX 0x000003F0
  303. #define NS_SCD_HEAD_MASK_VAR 0x00001FF0
  304. #define NS_SCD_HEAD_MASK_FIX 0x000003F0
  305. #define NS_SCD_XMITFOREVER   0x02000000
  306.    /* NOTE: There are other fields in word 2 of the SCD, but as they should
  307.             not be needed in the device driver they are not defined here. */
  308. /* NICStAR local SRAM memory map **********************************************/
  309. #define NS_RCT           0x00000
  310. #define NS_RCT_32_END    0x03FFF
  311. #define NS_RCT_128_END   0x0FFFF
  312. #define NS_UNUSED_32     0x04000
  313. #define NS_UNUSED_128    0x10000
  314. #define NS_UNUSED_END    0x1BFFF
  315. #define NS_TST_FRSCD     0x1C000
  316. #define NS_TST_FRSCD_END 0x1E7DB
  317. #define NS_VRSCD2        0x1E7DC
  318. #define NS_VRSCD2_END    0x1E7E7
  319. #define NS_VRSCD1        0x1E7E8
  320. #define NS_VRSCD1_END    0x1E7F3
  321. #define NS_VRSCD0        0x1E7F4
  322. #define NS_VRSCD0_END    0x1E7FF
  323. #define NS_RXFIFO        0x1E800
  324. #define NS_RXFIFO_END    0x1F7FF
  325. #define NS_SMFBQ         0x1F800
  326. #define NS_SMFBQ_END     0x1FBFF
  327. #define NS_LGFBQ         0x1FC00
  328. #define NS_LGFBQ_END     0x1FFFF
  329. /* NISCtAR operation registers ************************************************/
  330. /* See Section 3.4 of `IDT77211 NICStAR User Manual' from www.idt.com */
  331. enum ns_regs
  332. {
  333.    DR0   = 0x00,      /* Data Register 0 R/W*/
  334.    DR1   = 0x04,      /* Data Register 1 W */
  335.    DR2   = 0x08,      /* Data Register 2 W */
  336.    DR3   = 0x0C,      /* Data Register 3 W */
  337.    CMD   = 0x10,      /* Command W */
  338.    CFG   = 0x14,      /* Configuration R/W */
  339.    STAT  = 0x18,      /* Status R/W */
  340.    RSQB  = 0x1C,      /* Receive Status Queue Base W */
  341.    RSQT  = 0x20,      /* Receive Status Queue Tail R */
  342.    RSQH  = 0x24,      /* Receive Status Queue Head W */
  343.    CDC   = 0x28,      /* Cell Drop Counter R/clear */
  344.    VPEC  = 0x2C,      /* VPI/VCI Lookup Error Count R/clear */
  345.    ICC   = 0x30,      /* Invalid Cell Count R/clear */
  346.    RAWCT = 0x34,      /* Raw Cell Tail R */
  347.    TMR   = 0x38,      /* Timer R */
  348.    TSTB  = 0x3C,      /* Transmit Schedule Table Base R/W */
  349.    TSQB  = 0x40,      /* Transmit Status Queue Base W */
  350.    TSQT  = 0x44,      /* Transmit Status Queue Tail R */
  351.    TSQH  = 0x48,      /* Transmit Status Queue Head W */
  352.    GP    = 0x4C,      /* General Purpose R/W */
  353.    VPM   = 0x50       /* VPI/VCI Mask W */
  354. };
  355. /* NICStAR commands issued to the CMD register ********************************/
  356. /* Top 4 bits are command opcode, lower 28 are parameters. */
  357. #define NS_CMD_NO_OPERATION         0x00000000
  358.         /* params always 0 */
  359. #define NS_CMD_OPENCLOSE_CONNECTION 0x20000000
  360.         /* b19{1=open,0=close} b18-2{SRAM addr} */
  361. #define NS_CMD_WRITE_SRAM           0x40000000
  362.         /* b18-2{SRAM addr} b1-0{burst size} */
  363. #define NS_CMD_READ_SRAM            0x50000000
  364.         /* b18-2{SRAM addr} */
  365. #define NS_CMD_WRITE_FREEBUFQ       0x60000000
  366.         /* b0{large buf indicator} */
  367. #define NS_CMD_READ_UTILITY         0x80000000
  368.         /* b8{1=select UTL_CS1} b9{1=select UTL_CS0} b7-0{bus addr} */
  369. #define NS_CMD_WRITE_UTILITY        0x90000000
  370.         /* b8{1=select UTL_CS1} b9{1=select UTL_CS0} b7-0{bus addr} */
  371. #define NS_CMD_OPEN_CONNECTION (NS_CMD_OPENCLOSE_CONNECTION | 0x00080000)
  372. #define NS_CMD_CLOSE_CONNECTION NS_CMD_OPENCLOSE_CONNECTION
  373. /* NICStAR configuration bits *************************************************/
  374. #define NS_CFG_SWRST          0x80000000    /* Software Reset */
  375. #define NS_CFG_RXPATH         0x20000000    /* Receive Path Enable */
  376. #define NS_CFG_SMBUFSIZE_MASK 0x18000000    /* Small Receive Buffer Size */
  377. #define NS_CFG_LGBUFSIZE_MASK 0x06000000    /* Large Receive Buffer Size */
  378. #define NS_CFG_EFBIE          0x01000000    /* Empty Free Buffer Queue
  379.                                                Interrupt Enable */
  380. #define NS_CFG_RSQSIZE_MASK   0x00C00000    /* Receive Status Queue Size */
  381. #define NS_CFG_ICACCEPT       0x00200000    /* Invalid Cell Accept */
  382. #define NS_CFG_IGNOREGFC      0x00100000    /* Ignore General Flow Control */
  383. #define NS_CFG_VPIBITS_MASK   0x000C0000    /* VPI/VCI Bits Size Select */
  384. #define NS_CFG_RCTSIZE_MASK   0x00030000    /* Receive Connection Table Size */
  385. #define NS_CFG_VCERRACCEPT    0x00008000    /* VPI/VCI Error Cell Accept */
  386. #define NS_CFG_RXINT_MASK     0x00007000    /* End of Receive PDU Interrupt
  387.                                                Handling */
  388. #define NS_CFG_RAWIE          0x00000800    /* Raw Cell Qu' Interrupt Enable */
  389. #define NS_CFG_RSQAFIE        0x00000400    /* Receive Queue Almost Full
  390.                                                Interrupt Enable */
  391. #define NS_CFG_RXRM           0x00000200    /* Receive RM Cells */
  392. #define NS_CFG_TMRROIE        0x00000080    /* Timer Roll Over Interrupt
  393.                                                Enable */
  394. #define NS_CFG_TXEN           0x00000020    /* Transmit Operation Enable */
  395. #define NS_CFG_TXIE           0x00000010    /* Transmit Status Interrupt
  396.                                                Enable */
  397. #define NS_CFG_TXURIE         0x00000008    /* Transmit Under-run Interrupt
  398.                                                Enable */
  399. #define NS_CFG_UMODE          0x00000004    /* Utopia Mode (cell/byte) Select */
  400. #define NS_CFG_TSQFIE         0x00000002    /* Transmit Status Queue Full
  401.                                                Interrupt Enable */
  402. #define NS_CFG_PHYIE          0x00000001    /* PHY Interrupt Enable */
  403. #define NS_CFG_SMBUFSIZE_48    0x00000000
  404. #define NS_CFG_SMBUFSIZE_96    0x08000000
  405. #define NS_CFG_SMBUFSIZE_240   0x10000000
  406. #define NS_CFG_SMBUFSIZE_2048  0x18000000
  407. #define NS_CFG_LGBUFSIZE_2048  0x00000000
  408. #define NS_CFG_LGBUFSIZE_4096  0x02000000
  409. #define NS_CFG_LGBUFSIZE_8192  0x04000000
  410. #define NS_CFG_LGBUFSIZE_16384 0x06000000
  411. #define NS_CFG_RSQSIZE_2048 0x00000000
  412. #define NS_CFG_RSQSIZE_4096 0x00400000
  413. #define NS_CFG_RSQSIZE_8192 0x00800000
  414. #define NS_CFG_VPIBITS_0 0x00000000
  415. #define NS_CFG_VPIBITS_1 0x00040000
  416. #define NS_CFG_VPIBITS_2 0x00080000
  417. #define NS_CFG_VPIBITS_8 0x000C0000
  418. #define NS_CFG_RCTSIZE_4096_ENTRIES  0x00000000
  419. #define NS_CFG_RCTSIZE_8192_ENTRIES  0x00010000
  420. #define NS_CFG_RCTSIZE_16384_ENTRIES 0x00020000
  421. #define NS_CFG_RXINT_NOINT   0x00000000
  422. #define NS_CFG_RXINT_NODELAY 0x00001000
  423. #define NS_CFG_RXINT_314US   0x00002000
  424. #define NS_CFG_RXINT_624US   0x00003000
  425. #define NS_CFG_RXINT_899US   0x00004000
  426. /* NICStAR STATus bits ********************************************************/
  427. #define NS_STAT_SFBQC_MASK 0xFF000000   /* hi 8 bits Small Buffer Queue Count */
  428. #define NS_STAT_LFBQC_MASK 0x00FF0000   /* hi 8 bits Large Buffer Queue Count */
  429. #define NS_STAT_TSIF       0x00008000   /* Transmit Status Queue Indicator */
  430. #define NS_STAT_TXICP      0x00004000   /* Transmit Incomplete PDU */
  431. #define NS_STAT_TSQF       0x00001000   /* Transmit Status Queue Full */
  432. #define NS_STAT_TMROF      0x00000800   /* Timer Overflow */
  433. #define NS_STAT_PHYI       0x00000400   /* PHY Device Interrupt */
  434. #define NS_STAT_CMDBZ      0x00000200   /* Command Busy */
  435. #define NS_STAT_SFBQF      0x00000100   /* Small Buffer Queue Full */
  436. #define NS_STAT_LFBQF      0x00000080   /* Large Buffer Queue Full */
  437. #define NS_STAT_RSQF       0x00000040   /* Receive Status Queue Full */
  438. #define NS_STAT_EOPDU      0x00000020   /* End of PDU */
  439. #define NS_STAT_RAWCF      0x00000010   /* Raw Cell Flag */
  440. #define NS_STAT_SFBQE      0x00000008   /* Small Buffer Queue Empty */
  441. #define NS_STAT_LFBQE      0x00000004   /* Large Buffer Queue Empty */
  442. #define NS_STAT_RSQAF      0x00000002   /* Receive Status Queue Almost Full */
  443. #define ns_stat_sfbqc_get(stat) (((stat) & NS_STAT_SFBQC_MASK) >> 23)
  444. #define ns_stat_lfbqc_get(stat) (((stat) & NS_STAT_LFBQC_MASK) >> 15)
  445. /* #defines which depend on other #defines ************************************/
  446. #define NS_TST0 NS_TST_FRSCD
  447. #define NS_TST1 (NS_TST_FRSCD + NS_TST_NUM_ENTRIES + 1)
  448. #define NS_FRSCD (NS_TST1 + NS_TST_NUM_ENTRIES + 1)
  449. #define NS_FRSCD_SIZE 12 /* 12 dwords */
  450. #define NS_FRSCD_NUM ((NS_TST_FRSCD_END + 1 - NS_FRSCD) / NS_FRSCD_SIZE)
  451. #if (NS_SMBUFSIZE == 48)
  452. #define NS_CFG_SMBUFSIZE NS_CFG_SMBUFSIZE_48
  453. #elif (NS_SMBUFSIZE == 96)
  454. #define NS_CFG_SMBUFSIZE NS_CFG_SMBUFSIZE_96
  455. #elif (NS_SMBUFSIZE == 240)
  456. #define NS_CFG_SMBUFSIZE NS_CFG_SMBUFSIZE_240
  457. #elif (NS_SMBUFSIZE == 2048)
  458. #define NS_CFG_SMBUFSIZE NS_CFG_SMBUFSIZE_2048
  459. #else
  460. #error NS_SMBUFSIZE is incorrect in nicstar.h
  461. #endif /* NS_SMBUFSIZE */
  462. #if (NS_LGBUFSIZE == 2048)
  463. #define NS_CFG_LGBUFSIZE NS_CFG_LGBUFSIZE_2048
  464. #elif (NS_LGBUFSIZE == 4096)
  465. #define NS_CFG_LGBUFSIZE NS_CFG_LGBUFSIZE_4096
  466. #elif (NS_LGBUFSIZE == 8192)
  467. #define NS_CFG_LGBUFSIZE NS_CFG_LGBUFSIZE_8192
  468. #elif (NS_LGBUFSIZE == 16384)
  469. #define NS_CFG_LGBUFSIZE NS_CFG_LGBUFSIZE_16384
  470. #else
  471. #error NS_LGBUFSIZE is incorrect in nicstar.h
  472. #endif /* NS_LGBUFSIZE */
  473. #if (NS_RSQSIZE == 2048)
  474. #define NS_CFG_RSQSIZE NS_CFG_RSQSIZE_2048
  475. #elif (NS_RSQSIZE == 4096)
  476. #define NS_CFG_RSQSIZE NS_CFG_RSQSIZE_4096
  477. #elif (NS_RSQSIZE == 8192)
  478. #define NS_CFG_RSQSIZE NS_CFG_RSQSIZE_8192
  479. #else
  480. #error NS_RSQSIZE is incorrect in nicstar.h
  481. #endif /* NS_RSQSIZE */
  482. #if (NS_VPIBITS == 0)
  483. #define NS_CFG_VPIBITS NS_CFG_VPIBITS_0
  484. #elif (NS_VPIBITS == 1)
  485. #define NS_CFG_VPIBITS NS_CFG_VPIBITS_1
  486. #elif (NS_VPIBITS == 2)
  487. #define NS_CFG_VPIBITS NS_CFG_VPIBITS_2
  488. #elif (NS_VPIBITS == 8)
  489. #define NS_CFG_VPIBITS NS_CFG_VPIBITS_8
  490. #else
  491. #error NS_VPIBITS is incorrect in nicstar.h
  492. #endif /* NS_VPIBITS */
  493. #ifdef RCQ_SUPPORT
  494. #define NS_CFG_RAWIE_OPT NS_CFG_RAWIE
  495. #else
  496. #define NS_CFG_RAWIE_OPT 0x00000000
  497. #endif /* RCQ_SUPPORT */
  498. #ifdef ENABLE_TSQFIE
  499. #define NS_CFG_TSQFIE_OPT NS_CFG_TSQFIE
  500. #else
  501. #define NS_CFG_TSQFIE_OPT 0x00000000
  502. #endif /* ENABLE_TSQFIE */
  503. /* PCI stuff ******************************************************************/
  504. #ifndef PCI_VENDOR_ID_IDT
  505. #define PCI_VENDOR_ID_IDT 0x111D
  506. #endif /* PCI_VENDOR_ID_IDT */
  507. #ifndef PCI_DEVICE_ID_IDT_IDT77201
  508. #define PCI_DEVICE_ID_IDT_IDT77201 0x0001
  509. #endif /* PCI_DEVICE_ID_IDT_IDT77201 */
  510. /* Device driver structures ***************************************************/
  511. typedef struct tsq_info
  512. {
  513.    void *org;
  514.    ns_tsi *base;
  515.    ns_tsi *next;
  516.    ns_tsi *last;
  517. } tsq_info;
  518. typedef struct scq_info
  519. {
  520.    void *org;
  521.    ns_scqe *base;
  522.    ns_scqe *last;
  523.    ns_scqe *next;
  524.    volatile ns_scqe *tail; /* Not related to the nicstar register */
  525.    unsigned num_entries;
  526.    struct sk_buff **skb; /* Pointer to an array of pointers
  527.                                            to the sk_buffs used for tx */
  528.    u32 scd; /* SRAM address of the corresponding
  529.                                            SCD */
  530.    int tbd_count; /* Only meaningful on variable rate */
  531.    wait_queue_head_t scqfull_waitq;
  532.    volatile char full; /* SCQ full indicator */
  533.    spinlock_t lock; /* SCQ spinlock */
  534. #ifdef NS_DEBUG_SPINLOCKS
  535.    volatile long has_lock;
  536.    volatile int cpu_lock;
  537. #endif /* NS_DEBUG_SPINLOCKS */
  538. } scq_info;
  539. typedef struct rsq_info
  540. {
  541.    void *org;
  542.    ns_rsqe *base;
  543.    ns_rsqe *next;
  544.    ns_rsqe *last;
  545. } rsq_info;
  546. typedef struct skb_pool
  547. {
  548.    volatile int count; /* number of buffers in the queue */
  549.    struct sk_buff_head queue;
  550. } skb_pool;
  551. /* NOTE: for small and large buffer pools, the count is not used, as the
  552.          actual value used for buffer management is the one read from the
  553.  card. */
  554. typedef struct vc_map
  555. {
  556.    volatile int tx:1; /* TX vc? */
  557.    volatile int rx:1; /* RX vc? */
  558.    struct atm_vcc *tx_vcc, *rx_vcc;
  559.    struct sk_buff *rx_iov; /* RX iovector skb */
  560.    scq_info *scq; /* To keep track of the SCQ */
  561.    u32 cbr_scd; /* SRAM address of the corresponding
  562.                    SCD. 0x00000000 for UBR/VBR/ABR */
  563.    int tbd_count;
  564. } vc_map;
  565. typedef struct ns_dev
  566. {
  567.    int index; /* Card ID to the device driver */
  568.    int sram_size; /* In k x 32bit words. 32 or 128 */
  569.    unsigned long membase; /* Card's memory base address */
  570.    unsigned long max_pcr;
  571.    int rct_size; /* Number of entries */
  572.    int vpibits;
  573.    int vcibits;
  574.    struct pci_dev *pcidev;
  575.    struct atm_dev *atmdev;
  576.    tsq_info tsq;
  577.    rsq_info rsq;
  578.    scq_info *scq0, *scq1, *scq2; /* VBR SCQs */
  579.    skb_pool sbpool; /* Small buffers */
  580.    skb_pool lbpool; /* Large buffers */
  581.    skb_pool hbpool; /* Pre-allocated huge buffers */
  582.    skb_pool iovpool; /* iovector buffers */
  583.    volatile int efbie; /* Empty free buf. queue int. enabled */
  584.    volatile u32 tst_addr; /* SRAM address of the TST in use */
  585.    volatile int tst_free_entries;
  586.    vc_map vcmap[NS_MAX_RCTSIZE];
  587.    vc_map *tste2vc[NS_TST_NUM_ENTRIES];
  588.    vc_map *scd2vc[NS_FRSCD_NUM];
  589.    buf_nr sbnr;
  590.    buf_nr lbnr;
  591.    buf_nr hbnr;
  592.    buf_nr iovnr;
  593.    int sbfqc;
  594.    int lbfqc;
  595.    u32 sm_handle;
  596.    u32 sm_addr;
  597.    u32 lg_handle;
  598.    u32 lg_addr;
  599.    struct sk_buff *rcbuf; /* Current raw cell buffer */
  600.    u32 rawch; /* Raw cell queue head */
  601.    unsigned intcnt; /* Interrupt counter */
  602.    spinlock_t int_lock; /* Interrupt lock */
  603.    spinlock_t res_lock; /* Card resource lock */
  604. #ifdef NS_DEBUG_SPINLOCKS
  605.    volatile long has_int_lock;
  606.    volatile int cpu_int;
  607.    volatile long has_res_lock;
  608.    volatile int cpu_res;
  609. #endif /* NS_DEBUG_SPINLOCKS */
  610. } ns_dev;
  611.    /* NOTE: Each tste2vc entry relates a given TST entry to the corresponding
  612.             CBR vc. If the entry is not allocated, it must be NULL.
  613.     
  614.     There are two TSTs so the driver can modify them on the fly
  615.     without stopping the transmission.
  616.     
  617.     scd2vc allows us to find out unused fixed rate SCDs, because
  618.     they must have a NULL pointer here. */
  619. #endif /* _LINUX_NICSTAR_H_ */