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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* $Id: fore200e.h,v 1.4 2000/04/14 10:10:34 davem Exp $ */
  2. #ifndef _FORE200E_H
  3. #define _FORE200E_H
  4. #ifdef __KERNEL__
  5. #include <linux/config.h>
  6. /* rx buffer sizes */
  7. #define SMALL_BUFFER_SIZE    384     /* size of small buffers (multiple of 48 (PCA) and 64 (SBA) bytes) */
  8. #define LARGE_BUFFER_SIZE    4032    /* size of large buffers (multiple of 48 (PCA) and 64 (SBA) bytes) */
  9. #define RBD_BLK_SIZE      32      /* nbr of supplied rx buffers per rbd */
  10. #define MAX_PDU_SIZE      65535   /* maximum PDU size supported by AALs */
  11. #define BUFFER_S1_SIZE       SMALL_BUFFER_SIZE    /* size of small buffers, scheme 1 */
  12. #define BUFFER_L1_SIZE       LARGE_BUFFER_SIZE    /* size of large buffers, scheme 1 */
  13. #define BUFFER_S2_SIZE       SMALL_BUFFER_SIZE    /* size of small buffers, scheme 2 */
  14. #define BUFFER_L2_SIZE       LARGE_BUFFER_SIZE    /* size of large buffers, scheme 2 */
  15. #define BUFFER_S1_NBR        (RBD_BLK_SIZE * 2)
  16. #define BUFFER_L1_NBR        (RBD_BLK_SIZE * 2)
  17. #define BUFFER_S2_NBR        (RBD_BLK_SIZE * 2)
  18. #define BUFFER_L2_NBR        (RBD_BLK_SIZE * 2)
  19. #define QUEUE_SIZE_CMD       16      /* command queue capacity       */
  20. #define QUEUE_SIZE_RX      64      /* receive queue capacity       */
  21. #define QUEUE_SIZE_TX      256     /* transmit queue capacity      */
  22. #define QUEUE_SIZE_BS        16      /* buffer supply queue capacity */
  23. #define NBR_CONNECT          1024    /* number of ATM connections     */
  24. #define TSD_FIXED            2
  25. #define TSD_EXTENSION        0
  26. #define TSD_NBR              (TSD_FIXED + TSD_EXTENSION)
  27. /* the cp starts putting a received PDU into one *small* buffer,
  28.    then it uses a number of *large* buffers for the trailing data. 
  29.    we compute here the total number of receive segment descriptors 
  30.    required to hold the largest possible PDU */
  31. #define RSD_REQUIRED  (((MAX_PDU_SIZE - SMALL_BUFFER_SIZE + LARGE_BUFFER_SIZE) / LARGE_BUFFER_SIZE) + 1)
  32. #define RSD_FIXED     3
  33. /* RSD_REQUIRED receive segment descriptors are enough to describe a max-sized PDU,
  34.    but we have to keep the size of the receive PDU descriptor multiple of 32 bytes,
  35.    so we add one extra RSD to RSD_EXTENSION 
  36.    (WARNING: THIS MAY CHANGE IF BUFFER SIZES ARE MODIFIED) */
  37. #define RSD_EXTENSION  ((RSD_REQUIRED - RSD_FIXED) + 1)
  38. #define RSD_NBR         (RSD_FIXED + RSD_EXTENSION)
  39. #define FORE200E_DEV(d)          ((struct fore200e*)((d)->dev_data))
  40. #define FORE200E_VCC(d)          ((struct fore200e_vcc*)((d)->dev_data))
  41. /* bitfields endian games */
  42. #if defined(__LITTLE_ENDIAN_BITFIELD)
  43. #define BITFIELD2(b1, b2)                    b1; b2;
  44. #define BITFIELD3(b1, b2, b3)                b1; b2; b3;
  45. #define BITFIELD4(b1, b2, b3, b4)            b1; b2; b3; b4;
  46. #define BITFIELD5(b1, b2, b3, b4, b5)        b1; b2; b3; b4; b5;
  47. #define BITFIELD6(b1, b2, b3, b4, b5, b6)    b1; b2; b3; b4; b5; b6;
  48. #elif defined(__BIG_ENDIAN_BITFIELD)
  49. #define BITFIELD2(b1, b2)                                    b2; b1;
  50. #define BITFIELD3(b1, b2, b3)                            b3; b2; b1;
  51. #define BITFIELD4(b1, b2, b3, b4)                    b4; b3; b2; b1;
  52. #define BITFIELD5(b1, b2, b3, b4, b5)            b5; b4; b3; b2; b1;
  53. #define BITFIELD6(b1, b2, b3, b4, b5, b6)    b6; b5; b4; b3; b2; b1;
  54. #else
  55. #error unknown bitfield endianess
  56. #endif
  57.  
  58. /* ATM cell header (minus HEC byte) */
  59. typedef struct atm_header {
  60.     BITFIELD5( 
  61.         u32 clp :  1,    /* cell loss priority         */
  62.         u32 plt :  3,    /* payload type               */
  63.         u32 vci : 16,    /* virtual channel identifier */
  64.         u32 vpi :  8,    /* virtual path identifier    */
  65.         u32 gfc :  4     /* generic flow control       */
  66.    )
  67. } atm_header_t;
  68. /* ATM adaptation layer id */
  69. typedef enum fore200e_aal {
  70.     FORE200E_AAL0  = 0,
  71.     FORE200E_AAL34 = 4,
  72.     FORE200E_AAL5  = 5,
  73. } fore200e_aal_t;
  74. /* transmit PDU descriptor specification */
  75. typedef struct tpd_spec {
  76.     BITFIELD4(
  77.         u32               length : 16,    /* total PDU length            */
  78.         u32               nseg   :  8,    /* number of transmit segments */
  79.         enum fore200e_aal aal    :  4,    /* adaptation layer            */
  80.         u32               intr   :  4     /* interrupt requested         */
  81.     )
  82. } tpd_spec_t;
  83. /* transmit PDU rate control */
  84. typedef struct tpd_rate
  85. {
  86.     BITFIELD2( 
  87.         u32 idle_cells : 16,    /* number of idle cells to insert   */
  88.         u32 data_cells : 16     /* number of data cells to transmit */
  89.     )
  90. } tpd_rate_t;
  91. /* transmit segment descriptor */
  92. typedef struct tsd {
  93.     u32 buffer;    /* transmit buffer DMA address */
  94.     u32 length;    /* number of bytes in buffer   */
  95. } tsd_t;
  96. /* transmit PDU descriptor */
  97. typedef struct tpd {
  98.     struct atm_header atm_header;        /* ATM header minus HEC byte    */
  99.     struct tpd_spec   spec;              /* tpd specification            */
  100.     struct tpd_rate   rate;              /* tpd rate control             */
  101.     u32               pad;               /* reserved                     */
  102.     struct tsd        tsd[ TSD_NBR ];    /* transmit segment descriptors */
  103. } tpd_t;
  104. /* receive segment descriptor */
  105. typedef struct rsd {
  106.     u32 handle;    /* host supplied receive buffer handle */
  107.     u32 length;    /* number of bytes in buffer           */
  108. } rsd_t;
  109. /* receive PDU descriptor */
  110. typedef struct rpd {
  111.     struct atm_header atm_header;        /* ATM header minus HEC byte   */
  112.     u32               nseg;              /* number of receive segments  */
  113.     struct rsd        rsd[ RSD_NBR ];    /* receive segment descriptors */
  114. } rpd_t;
  115. /* buffer scheme */
  116. typedef enum buffer_scheme {
  117.     BUFFER_SCHEME_ONE,
  118.     BUFFER_SCHEME_TWO,
  119.     BUFFER_SCHEME_NBR    /* always last */
  120. } buffer_scheme_t;
  121. /* buffer magnitude */
  122. typedef enum buffer_magn {
  123.     BUFFER_MAGN_SMALL,
  124.     BUFFER_MAGN_LARGE,
  125.     BUFFER_MAGN_NBR    /* always last */
  126. } buffer_magn_t;
  127. /* receive buffer descriptor */
  128. typedef struct rbd {
  129.     u32 handle;          /* host supplied handle            */
  130.     u32 buffer_haddr;    /* host DMA address of host buffer */
  131. } rbd_t;
  132. /* receive buffer descriptor block */
  133. typedef struct rbd_block {
  134.     struct rbd rbd[ RBD_BLK_SIZE ];    /* receive buffer descriptor */
  135. } rbd_block_t;
  136. /* tpd DMA address */
  137. typedef struct tpd_haddr {
  138.     BITFIELD3( 
  139.         u32 size  :  4,    /* tpd size expressed in 32 byte blocks     */
  140.         u32 pad   :  1,    /* reserved                                 */
  141.         u32 haddr : 27     /* tpd DMA addr aligned on 32 byte boundary */
  142.     )
  143. } tpd_haddr_t;
  144. /* cp resident transmit queue entry */
  145. typedef struct cp_txq_entry {
  146.     struct tpd_haddr tpd_haddr;       /* host DMA address of tpd                */
  147.     u32              status_haddr;    /* host DMA address of completion status  */
  148. } cp_txq_entry_t;
  149. /* cp resident receive queue entry */
  150. typedef struct cp_rxq_entry {
  151.     u32 rpd_haddr;       /* host DMA address of rpd                */
  152.     u32 status_haddr;    /* host DMA address of completion status  */
  153. } cp_rxq_entry_t;
  154. /* cp resident buffer supply queue entry */
  155. typedef struct cp_bsq_entry {
  156.     u32 rbd_block_haddr;    /* host DMA address of rbd block          */
  157.     u32 status_haddr;       /* host DMA address of completion status  */
  158. } cp_bsq_entry_t;
  159. /* completion status */
  160. typedef volatile enum status {
  161.     STATUS_PENDING  = (1<<0),    /* initial status (written by host)  */
  162.     STATUS_COMPLETE = (1<<1),    /* completion status (written by cp) */
  163.     STATUS_FREE     = (1<<2),    /* initial status (written by host)  */
  164.     STATUS_ERROR    = (1<<3)     /* completion status (written by cp) */
  165. } status_t;
  166. /* cp operation code */
  167. typedef enum opcode {
  168.     OPCODE_INITIALIZE = 1,          /* initialize board                       */
  169.     OPCODE_ACTIVATE_VCIN,           /* activate incoming VCI                  */
  170.     OPCODE_ACTIVATE_VCOUT,          /* activate outgoing VCI                  */
  171.     OPCODE_DEACTIVATE_VCIN,         /* deactivate incoming VCI                */
  172.     OPCODE_DEACTIVATE_VCOUT,        /* deactivate incoing VCI                 */
  173.     OPCODE_GET_STATS,               /* get board statistics                   */
  174.     OPCODE_SET_OC3,                 /* set OC-3 registers                     */
  175.     OPCODE_GET_OC3,                 /* get OC-3 registers                     */
  176.     OPCODE_RESET_STATS,             /* reset board statistics                 */
  177.     OPCODE_GET_PROM,                /* get expansion PROM data (PCI specific) */
  178.     OPCODE_SET_VPI_BITS,            /* set x bits of those decoded by the
  179.        firmware to be low order bits from
  180.        the VPI field of the ATM cell header   */
  181.     OPCODE_REQUEST_INTR = (1<<7)    /* request interrupt                      */
  182. } opcode_t;
  183. /* virtual path / virtual channel identifers */
  184. typedef struct vpvc {
  185.     BITFIELD3(
  186.         u32 vci : 16,    /* virtual channel identifier */
  187.         u32 vpi :  8,    /* virtual path identifier    */
  188.         u32 pad :  8     /* reserved                   */
  189.     )
  190. } vpvc_t;
  191. /* activate VC command opcode */
  192. typedef struct activate_opcode {
  193.     BITFIELD4( 
  194.         enum opcode        opcode : 8,    /* cp opcode        */
  195.         enum fore200e_aal  aal    : 8,    /* adaptation layer */
  196.         enum buffer_scheme scheme : 8,    /* buffer scheme    */
  197.         u32  pad                  : 8     /* reserved         */
  198.    )
  199. } activate_opcode_t;
  200. /* activate VC command block */
  201. typedef struct activate_block {
  202.     struct activate_opcode  opcode;    /* activate VC command opcode */
  203.     struct vpvc             vpvc;      /* VPI/VCI                    */
  204.     u32                     mtu;       /* for AAL0 only              */
  205. } activate_block_t;
  206. /* deactivate VC command opcode */
  207. typedef struct deactivate_opcode {
  208.     BITFIELD2(
  209.         enum opcode opcode :  8,    /* cp opcode */
  210.         u32         pad    : 24     /* reserved  */
  211.     )
  212. } deactivate_opcode_t;
  213. /* deactivate VC command block */
  214. typedef struct deactivate_block {
  215.     struct deactivate_opcode opcode;    /* deactivate VC command opcode */
  216.     struct vpvc              vpvc;      /* VPI/VCI                      */
  217. } deactivate_block_t;
  218. /* OC-3 registers */
  219. typedef struct oc3_regs {
  220.     u32 reg[ 128 ];    /* see the PMC Sierra PC5346 S/UNI-155-Lite
  221.   Saturn User Network Interface documentation
  222.   for a description of the OC-3 chip registers */
  223. } oc3_regs_t;
  224. /* set/get OC-3 regs command opcode */
  225. typedef struct oc3_opcode {
  226.     BITFIELD4(
  227.         enum opcode opcode : 8,    /* cp opcode                           */
  228. u32         reg    : 8,    /* register index                      */
  229. u32         value  : 8,    /* register value                      */
  230. u32         mask   : 8     /* register mask that specifies which
  231.       bits of the register value field
  232.       are significant                     */
  233.     )
  234. } oc3_opcode_t;
  235. /* set/get OC-3 regs command block */
  236. typedef struct oc3_block {
  237.     struct oc3_opcode opcode;        /* set/get OC-3 regs command opcode     */
  238.     u32               regs_haddr;    /* host DMA address of OC-3 regs buffer */
  239. } oc3_block_t;
  240. /* physical encoding statistics */
  241. typedef struct stats_phy {
  242.     u32 crc_header_errors;    /* cells received with bad header CRC */
  243.     u32 framing_errors;       /* cells received with bad framing    */
  244.     u32 pad[ 2 ];             /* i960 padding                       */
  245. } stats_phy_t;
  246. /* OC-3 statistics */
  247. typedef struct stats_oc3 {
  248.     u32 section_bip8_errors;    /* section 8 bit interleaved parity    */
  249.     u32 path_bip8_errors;       /* path 8 bit interleaved parity       */
  250.     u32 line_bip24_errors;      /* line 24 bit interleaved parity      */
  251.     u32 line_febe_errors;       /* line far end block errors           */
  252.     u32 path_febe_errors;       /* path far end block errors           */
  253.     u32 corr_hcs_errors;        /* correctable header check sequence   */
  254.     u32 ucorr_hcs_errors;       /* uncorrectable header check sequence */
  255.     u32 pad[ 1 ];               /* i960 padding                        */
  256. } stats_oc3_t;
  257. /* ATM statistics */
  258. typedef struct stats_atm {
  259.     u32 cells_transmitted;    /* cells transmitted                 */
  260.     u32 cells_received;       /* cells received                    */
  261.     u32 vpi_bad_range;        /* cell drops: VPI out of range      */
  262.     u32 vpi_no_conn;          /* cell drops: no connection for VPI */
  263.     u32 vci_bad_range;        /* cell drops: VCI out of range      */
  264.     u32 vci_no_conn;          /* cell drops: no connection for VCI */
  265.     u32 pad[ 2 ];             /* i960 padding                      */
  266. } stats_atm_t;
  267. /* AAL0 statistics */
  268. typedef struct stats_aal0 {
  269.     u32 cells_transmitted;    /* cells transmitted */
  270.     u32 cells_received;       /* cells received    */
  271.     u32 cells_dropped;        /* cells dropped     */
  272.     u32 pad[ 1 ];             /* i960 padding      */
  273. } stats_aal0_t;
  274. /* AAL3/4 statistics */
  275. typedef struct stats_aal34 {
  276.     u32 cells_transmitted;         /* cells transmitted from segmented PDUs */
  277.     u32 cells_received;            /* cells reassembled into PDUs           */
  278.     u32 cells_crc_errors;          /* payload CRC error count               */
  279.     u32 cells_protocol_errors;     /* SAR or CS layer protocol errors       */
  280.     u32 cells_dropped;             /* cells dropped: partial reassembly     */
  281.     u32 cspdus_transmitted;        /* CS PDUs transmitted                   */
  282.     u32 cspdus_received;           /* CS PDUs received                      */
  283.     u32 cspdus_protocol_errors;    /* CS layer protocol errors              */
  284.     u32 cspdus_dropped;            /* reassembled PDUs drop'd (in cells)    */
  285.     u32 pad[ 3 ];                  /* i960 padding                          */
  286. } stats_aal34_t;
  287. /* AAL5 statistics */
  288. typedef struct stats_aal5 {
  289.     u32 cells_transmitted;         /* cells transmitted from segmented SDUs */
  290.     u32 cells_received;    /* cells reassembled into SDUs           */
  291.     u32 cells_dropped;    /* reassembled PDUs dropped (in cells)   */
  292.     u32 congestion_experienced;    /* CRC error and length wrong            */
  293.     u32 cspdus_transmitted;        /* CS PDUs transmitted                   */
  294.     u32 cspdus_received;           /* CS PDUs received                      */
  295.     u32 cspdus_crc_errors;         /* CS PDUs CRC errors                    */
  296.     u32 cspdus_protocol_errors;    /* CS layer protocol errors              */
  297.     u32 cspdus_dropped;            /* reassembled PDUs dropped              */
  298.     u32 pad[ 3 ];                  /* i960 padding                          */
  299. } stats_aal5_t;
  300. /* auxiliary statistics */
  301. typedef struct stats_aux {
  302.     u32 small_b1_failed;     /* receive BD allocation failures  */
  303.     u32 large_b1_failed;     /* receive BD allocation failures  */
  304.     u32 small_b2_failed;     /* receive BD allocation failures  */
  305.     u32 large_b2_failed;     /* receive BD allocation failures  */
  306.     u32 rpd_alloc_failed;    /* receive PDU allocation failures */
  307.     u32 receive_carrier;     /* no carrier = 0, carrier = 1     */
  308.     u32 pad[ 2 ];            /* i960 padding                    */
  309. } stats_aux_t;
  310. /* whole statistics buffer */
  311. typedef struct stats {
  312.     struct stats_phy   phy;      /* physical encoding statistics */
  313.     struct stats_oc3   oc3;      /* OC-3 statistics              */
  314.     struct stats_atm   atm;      /* ATM statistics               */
  315.     struct stats_aal0  aal0;     /* AAL0 statistics              */
  316.     struct stats_aal34 aal34;    /* AAL3/4 statistics            */
  317.     struct stats_aal5  aal5;     /* AAL5 statistics              */
  318.     struct stats_aux   aux;      /* auxiliary statistics         */
  319. } stats_t;
  320. /* get statistics command opcode */
  321. typedef struct stats_opcode {
  322.     BITFIELD2(
  323.         enum opcode opcode :  8,    /* cp opcode */
  324.         u32         pad    : 24     /* reserved  */
  325.     )
  326. } stats_opcode_t;
  327. /* get statistics command block */
  328. typedef struct stats_block {
  329.     struct stats_opcode opcode;         /* get statistics command opcode    */
  330.     u32                 stats_haddr;    /* host DMA address of stats buffer */
  331. } stats_block_t;
  332. /* expansion PROM data (PCI specific) */
  333. typedef struct prom_data {
  334.     u32 hw_revision;      /* hardware revision   */
  335.     u32 serial_number;    /* board serial number */
  336.     u8  mac_addr[ 8 ];    /* board MAC address   */
  337. } prom_data_t;
  338. /* get expansion PROM data command opcode */
  339. typedef struct prom_opcode {
  340.     BITFIELD2(
  341.         enum opcode opcode :  8,    /* cp opcode */
  342.         u32         pad    : 24     /* reserved  */
  343.     )
  344. } prom_opcode_t;
  345. /* get expansion PROM data command block */
  346. typedef struct prom_block {
  347.     struct prom_opcode opcode;        /* get PROM data command opcode    */
  348.     u32                prom_haddr;    /* host DMA address of PROM buffer */
  349. } prom_block_t;
  350. /* cp command */
  351. typedef union cmd {
  352.     enum   opcode           opcode;           /* operation code          */
  353.     struct activate_block   activate_block;   /* activate VC             */
  354.     struct deactivate_block deactivate_block; /* deactivate VC           */
  355.     struct stats_block      stats_block;      /* get statistics          */
  356.     struct prom_block       prom_block;       /* get expansion PROM data */
  357.     struct oc3_block        oc3_block;        /* get/set OC-3 registers  */
  358.     u32                     pad[ 4 ];         /* i960 padding            */
  359. } cmd_t;
  360. /* cp resident command queue */
  361. typedef struct cp_cmdq_entry {
  362.     union cmd cmd;             /* command                               */
  363.     u32       status_haddr;    /* host DMA address of completion status */
  364.     u32       pad[ 3 ];        /* i960 padding                          */
  365. } cp_cmdq_entry_t;
  366. /* host resident transmit queue entry */
  367. typedef struct host_txq_entry {
  368.     struct cp_txq_entry*   cp_entry;    /* addr of cp resident tx queue entry */
  369.     enum   status*         status;      /* addr of host resident status       */
  370.     struct tpd*            tpd;         /* addr of transmit PDU descriptor    */
  371.     u32                    tpd_dma;     /* DMA address of tpd                 */
  372.     struct sk_buff*        skb;         /* related skb                        */
  373.     struct atm_vcc*        vcc;         /* related vcc                        */
  374.     void*                  data;        /* copy of misaligned data            */
  375. } host_txq_entry_t;
  376. /* host resident receive queue entry */
  377. typedef struct host_rxq_entry {
  378.     struct cp_rxq_entry* cp_entry;    /* addr of cp resident rx queue entry */
  379.     enum   status*       status;      /* addr of host resident status       */
  380.     struct rpd*          rpd;         /* addr of receive PDU descriptor     */
  381.     u32                  rpd_dma;     /* DMA address of rpd                 */
  382. } host_rxq_entry_t;
  383. /* host resident buffer supply queue entry */
  384. typedef struct host_bsq_entry {
  385.     struct cp_bsq_entry* cp_entry;         /* addr of cp resident buffer supply queue entry */
  386.     enum   status*       status;           /* addr of host resident status                  */
  387.     struct rbd_block*    rbd_block;        /* addr of receive buffer descriptor block       */
  388.     u32                  rbd_block_dma;    /* DMA address od rdb                            */
  389. } host_bsq_entry_t;
  390. /* host resident command queue entry */
  391. typedef struct host_cmdq_entry {
  392.     struct cp_cmdq_entry* cp_entry;    /* addr of cp resident cmd queue entry */
  393.     enum   status*        status;      /* addr of host resident status        */
  394. } host_cmdq_entry_t;
  395. /* chunk of memory */
  396. typedef struct chunk {
  397.     void* alloc_addr;    /* base address of allocated chunk */
  398.     void* align_addr;    /* base address of aligned chunk   */
  399.     u32   dma_addr;      /* DMA address of aligned chunk    */
  400.     int   direction;     /* direction of DMA mapping        */
  401.     u32   alloc_size;    /* length of allocated chunk       */
  402.     u32   align_size;    /* length of aligned chunk         */
  403. } chunk_t;
  404. #define dma_size align_size             /* DMA useable size */
  405. /* host resident receive buffer */
  406. typedef struct buffer {
  407.     struct buffer*       next;        /* next receive buffer     */
  408.     enum   buffer_scheme scheme;      /* buffer scheme           */
  409.     enum   buffer_magn   magn;        /* buffer magnitude        */
  410.     struct chunk         data;        /* data buffer             */
  411. } buffer_t;
  412. #if (BITS_PER_LONG == 32)
  413. #define FORE200E_BUF2HDL(buffer)    ((u32)(buffer))
  414. #define FORE200E_HDL2BUF(handle)    ((struct buffer*)(handle))
  415. #else   /* deal with 64 bit pointers */
  416. #define FORE200E_BUF2HDL(buffer)    ((u32)((u64)(buffer)))
  417. #define FORE200E_HDL2BUF(handle)    ((struct buffer*)(((u64)(handle)) | PAGE_OFFSET))
  418. #endif
  419. /* host resident command queue */
  420. typedef struct host_cmdq {
  421.     struct host_cmdq_entry host_entry[ QUEUE_SIZE_CMD ];    /* host resident cmd queue entries        */
  422.     int                    head;                            /* head of cmd queue                      */
  423.     struct chunk           status;                          /* array of completion status      */
  424. } host_cmdq_t;
  425. /* host resident transmit queue */
  426. typedef struct host_txq {
  427.     struct host_txq_entry host_entry[ QUEUE_SIZE_TX ];    /* host resident tx queue entries         */
  428.     int                   head;                           /* head of tx queue                       */
  429.     struct chunk          tpd;                            /* array of tpds                          */
  430.     struct chunk          status;                         /* arry of completion status              */
  431.     int                   txing;                          /* number of pending PDUs in tx queue     */
  432. } host_txq_t;
  433. /* host resident receive queue */
  434. typedef struct host_rxq {
  435.     struct host_rxq_entry  host_entry[ QUEUE_SIZE_RX ];    /* host resident rx queue entries         */
  436.     int                    head;                           /* head of rx queue                       */
  437.     struct chunk           rpd;                            /* array of rpds                          */
  438.     struct chunk           status;                         /* array of completion status             */
  439. } host_rxq_t;
  440. /* host resident buffer supply queues */
  441. typedef struct host_bsq {
  442.     struct host_bsq_entry host_entry[ QUEUE_SIZE_BS ];    /* host resident buffer supply queue entries */
  443.     int                   head;                           /* head of buffer supply queue               */
  444.     struct chunk          rbd_block;                      /* array of rbds                             */
  445.     struct chunk          status;                         /* array of completion status                */
  446.     struct buffer*        buffer;                         /* array of rx buffers                       */
  447.     int                   free;                           /* index of first free rx buffer             */
  448.     volatile int          count;                          /* count of supplied rx buffers              */
  449. } host_bsq_t;
  450. /* header of the firmware image */
  451. typedef struct fw_header {
  452.     u32 magic;           /* magic number                               */
  453.     u32 version;         /* firware version id                         */
  454.     u32 load_offset;     /* fw load offset in board memory             */
  455.     u32 start_offset;    /* fw execution start address in board memory */
  456. } fw_header_t;
  457. #define FW_HEADER_MAGIC  0x65726f66    /* 'fore' */
  458. /* receive buffer supply queues scheme specification */
  459. typedef struct bs_spec {
  460.     u32 queue_length;      /* queue capacity                     */
  461.     u32 buffer_size;    /* host buffer size  */
  462.     u32 pool_size;    /* number of rbds  */
  463.     u32 supply_blksize;    /* num of rbds in I/O block (multiple
  464.       of 4 between 4 and 124 inclusive)  */
  465. } bs_spec_t;
  466. /* initialization command block (one-time command, not in cmd queue) */
  467. typedef struct init_block {
  468.     enum opcode  opcode;               /* initialize command             */
  469.     enum status  status;        /* related status word            */
  470.     u32          receive_threshold;    /* not used                       */
  471.     u32          num_connect;          /* ATM connections                */
  472.     u32          cmd_queue_len;        /* length of command queue        */
  473.     u32          tx_queue_len;         /* length of transmit queue       */
  474.     u32          rx_queue_len;         /* length of receive queue        */
  475.     u32          rsd_extension;        /* number of extra 32 byte blocks */
  476.     u32          tsd_extension;        /* number of extra 32 byte blocks */
  477.     u32          conless_vpvc;         /* not used                       */
  478.     u32          pad[ 2 ];             /* force quad alignment           */
  479.     struct bs_spec bs_spec[ BUFFER_SCHEME_NBR ][ BUFFER_MAGN_NBR ];      /* buffer supply queues spec */
  480. } init_block_t;
  481. typedef enum media_type {
  482.     MEDIA_TYPE_CAT5_UTP  = 0x06,    /* unshielded twisted pair */
  483.     MEDIA_TYPE_MM_OC3_ST = 0x16,    /* multimode fiber ST      */
  484.     MEDIA_TYPE_MM_OC3_SC = 0x26,    /* multimode fiber SC      */
  485.     MEDIA_TYPE_SM_OC3_ST = 0x36,    /* single-mode fiber ST    */
  486.     MEDIA_TYPE_SM_OC3_SC = 0x46     /* single-mode fiber SC    */
  487. } media_type_t;
  488. #define FORE200E_MEDIA_INDEX(media_type)   ((media_type)>>4)
  489. /* cp resident queues */
  490. typedef struct cp_queues {
  491.     u32               cp_cmdq;         /* command queue                      */
  492.     u32               cp_txq;          /* transmit queue                     */
  493.     u32               cp_rxq;          /* receive queue                      */
  494.     u32               cp_bsq[ BUFFER_SCHEME_NBR ][ BUFFER_MAGN_NBR ];        /* buffer supply queues */
  495.     u32               imask;             /* 1 enables cp to host interrupts  */
  496.     u32               istat;             /* 1 for interrupt posted           */
  497.     u32               heap_base;         /* offset form beginning of ram     */
  498.     u32               heap_size;         /* space available for queues       */
  499.     u32               hlogger;           /* non zero for host logging        */
  500.     u32               heartbeat;         /* cp heartbeat                     */
  501.     u32               fw_release;        /* firmware version                 */
  502.     u32               mon960_release;    /* i960 monitor version             */
  503.     u32               tq_plen;           /* transmit throughput measurements */
  504.     /* make sure the init block remains on a quad word boundary              */
  505.     struct init_block init;              /* one time cmd, not in cmd queue   */
  506.     enum   media_type media_type;        /* media type id                    */
  507.     u32               oc3_revision;      /* OC-3 revision number             */
  508. } cp_queues_t;
  509. /* boot status */
  510. typedef enum boot_status {
  511.     BSTAT_COLD_START    = (u32) 0xc01dc01d,    /* cold start              */
  512.     BSTAT_SELFTEST_OK   = (u32) 0x02201958,    /* self-test ok            */
  513.     BSTAT_SELFTEST_FAIL = (u32) 0xadbadbad,    /* self-test failed        */
  514.     BSTAT_CP_RUNNING    = (u32) 0xce11feed,    /* cp is running           */
  515.     BSTAT_MON_TOO_BIG   = (u32) 0x10aded00     /* i960 monitor is too big */
  516. } boot_status_t;
  517. /* software UART */
  518. typedef struct soft_uart {
  519.     u32 send;    /* write register */
  520.     u32 recv;    /* read register  */
  521. } soft_uart_t;
  522. #define FORE200E_CP_MONITOR_UART_FREE     0x00000000
  523. #define FORE200E_CP_MONITOR_UART_AVAIL    0x01000000
  524. /* i960 monitor */
  525. typedef struct cp_monitor {
  526.     struct soft_uart    soft_uart;      /* software UART           */
  527.     enum boot_status bstat;          /* boot status             */
  528.     u32 app_base;       /* application base offset */
  529.     u32 mon_version;    /* i960 monitor version    */
  530. } cp_monitor_t;
  531. /* device state */
  532. typedef enum fore200e_state {
  533.     FORE200E_STATE_BLANK,         /* initial state                     */
  534.     FORE200E_STATE_REGISTER,      /* device registered                 */
  535.     FORE200E_STATE_CONFIGURE,     /* bus interface configured          */
  536.     FORE200E_STATE_MAP,           /* board space mapped in host memory */
  537.     FORE200E_STATE_RESET,         /* board resetted                    */
  538.     FORE200E_STATE_LOAD_FW,       /* firmware loaded                   */
  539.     FORE200E_STATE_START_FW,      /* firmware started                  */
  540.     FORE200E_STATE_INITIALIZE,    /* initialize command successful     */
  541.     FORE200E_STATE_INIT_CMDQ,     /* command queue initialized         */
  542.     FORE200E_STATE_INIT_TXQ,      /* transmit queue initialized        */
  543.     FORE200E_STATE_INIT_RXQ,      /* receive queue initialized         */
  544.     FORE200E_STATE_INIT_BSQ,      /* buffer supply queue initialized   */
  545.     FORE200E_STATE_ALLOC_BUF,     /* receive buffers allocated         */
  546.     FORE200E_STATE_IRQ,           /* host interrupt requested          */
  547.     FORE200E_STATE_COMPLETE       /* initialization completed          */
  548. } fore200e_state;
  549. /* PCA-200E registers */
  550. typedef struct fore200e_pca_regs {
  551.     volatile u32* hcr;    /* address of host control register        */
  552.     volatile u32* imr;    /* address of host interrupt mask register */
  553.     volatile u32* psr;    /* address of PCI specific register        */
  554. } fore200e_pca_regs_t;
  555. /* SBA-200E registers */
  556. typedef struct fore200e_sba_regs {
  557.     volatile u32* hcr;    /* address of host control register              */
  558.     volatile u32* bsr;    /* address of burst transfer size register       */
  559.     volatile u32* isr;    /* address of interrupt level selection register */
  560. } fore200e_sba_regs_t;
  561. /* model-specific registers */
  562. typedef union fore200e_regs {
  563.     struct fore200e_pca_regs pca;    /* PCA-200E registers */
  564.     struct fore200e_sba_regs sba;    /* SBA-200E registers */
  565. } fore200e_regs;
  566. struct fore200e;
  567. /* bus-dependent data */
  568. typedef struct fore200e_bus {
  569.     char*                model_name;          /* board model name                       */
  570.     char*                proc_name;           /* board name under /proc/atm             */
  571.     int                  descr_alignment;     /* tpd/rpd/rbd DMA alignment requirement  */
  572.     int                  buffer_alignment;    /* rx buffers DMA alignment requirement   */
  573.     int                  status_alignment;    /* status words DMA alignment requirement */
  574.     const unsigned char* fw_data;             /* address of firmware data start         */
  575.     const unsigned int*  fw_size;             /* address of firmware data size          */
  576.     u32                  (*read)(volatile u32*);
  577.     void                 (*write)(u32, volatile u32*);
  578.     u32                  (*dma_map)(struct fore200e*, void*, int, int);
  579.     void                 (*dma_unmap)(struct fore200e*, u32, int, int);
  580.     void                 (*dma_sync)(struct fore200e*, u32, int, int);
  581.     int                  (*dma_chunk_alloc)(struct fore200e*, struct chunk*, int, int, int);
  582.     void                 (*dma_chunk_free)(struct fore200e*, struct chunk*);
  583.     struct fore200e*     (*detect)(const struct fore200e_bus*, int);
  584.     int                  (*configure)(struct fore200e*); 
  585.     int                  (*map)(struct fore200e*); 
  586.     void                 (*reset)(struct fore200e*);
  587.     int                  (*prom_read)(struct fore200e*, struct prom_data*);
  588.     void                 (*unmap)(struct fore200e*);
  589.     void                 (*irq_enable)(struct fore200e*);
  590.     int                  (*irq_check)(struct fore200e*);
  591.     void                 (*irq_ack)(struct fore200e*);
  592.     int                  (*proc_read)(struct fore200e*, char*);
  593. } fore200e_bus_t;
  594. #if defined(CONFIG_ATM_FORE200E_SBA)
  595. #  if defined(CONFIG_ATM_FORE200E_PCA)
  596. #    if (PCI_DMA_BIDIRECTIONAL == SBUS_DMA_BIDIRECTIONAL) && 
  597.         (PCI_DMA_TODEVICE      == SBUS_DMA_TODEVICE)      && 
  598.         (PCI_DMA_FROMDEVICE    == SBUS_DMA_FROMDEVICE)
  599. #      define FORE200E_DMA_BIDIRECTIONAL PCI_DMA_BIDIRECTIONAL
  600. #      define FORE200E_DMA_TODEVICE      PCI_DMA_TODEVICE
  601. #      define FORE200E_DMA_FROMDEVICE    PCI_DMA_FROMDEVICE
  602. #    else
  603.        /* in that case, we'll need to add an extra indirection, e.g.
  604.   fore200e->bus->dma_direction[ fore200e_dma_direction ] */
  605. #      error PCI and SBUS DMA direction flags have different values!
  606. #    endif
  607. #  else
  608. #    define FORE200E_DMA_BIDIRECTIONAL SBUS_DMA_BIDIRECTIONAL
  609. #    define FORE200E_DMA_TODEVICE      SBUS_DMA_TODEVICE
  610. #    define FORE200E_DMA_FROMDEVICE    SBUS_DMA_FROMDEVICE
  611. #  endif
  612. #else
  613. #  ifndef CONFIG_ATM_FORE200E_PCA
  614. #    warning compiling the fore200e driver without any hardware support enabled!
  615. #    include <linux/pci.h>
  616. #  endif
  617. #  define FORE200E_DMA_BIDIRECTIONAL PCI_DMA_BIDIRECTIONAL
  618. #  define FORE200E_DMA_TODEVICE      PCI_DMA_TODEVICE
  619. #  define FORE200E_DMA_FROMDEVICE    PCI_DMA_FROMDEVICE
  620. #endif
  621. /* per-device data */
  622. typedef struct fore200e {
  623.     struct       fore200e*     next;                   /* next device                        */
  624.     const struct fore200e_bus* bus;                    /* bus-dependent code and data        */
  625.     union        fore200e_regs regs;                   /* bus-dependent registers            */
  626.     struct       atm_dev*      atm_dev;                /* ATM device                         */
  627.     enum fore200e_state        state;                  /* device state                       */
  628.     char                       name[16];               /* device name                        */
  629.     void*                      bus_dev;                /* bus-specific kernel data           */
  630.     int                        irq;                    /* irq number                         */
  631.     unsigned long              phys_base;              /* physical base address              */
  632.     void*                      virt_base;              /* virtual base address               */
  633.     
  634.     unsigned char              esi[ ESI_LEN ];         /* end system identifier              */
  635.     struct cp_monitor*         cp_monitor;             /* i960 monitor address               */
  636.     struct cp_queues*          cp_queues;              /* cp resident queues                 */
  637.     struct host_cmdq           host_cmdq;              /* host resident cmd queue            */
  638.     struct host_txq            host_txq;               /* host resident tx queue             */
  639.     struct host_rxq            host_rxq;               /* host resident rx queue             */
  640.                                                        /* host resident buffer supply queues */
  641.     struct host_bsq            host_bsq[ BUFFER_SCHEME_NBR ][ BUFFER_MAGN_NBR ];       
  642.     u32                        available_cell_rate;    /* remaining pseudo-CBR bw on link    */
  643.     int                        loop_mode;              /* S/UNI loopback mode                */
  644.     struct stats*              stats;                  /* last snapshot of the stats         */
  645.     
  646.     struct semaphore           rate_sf;                /* protects rate reservation ops      */
  647.     struct tasklet_struct      tasklet;                /* performs interrupt work            */
  648. } fore200e_t;
  649. /* per-vcc data */
  650. typedef struct fore200e_vcc {
  651.     enum buffer_scheme scheme;        /* rx buffer scheme                   */
  652.     struct tpd_rate    rate;          /* tx rate control data               */
  653.     int                rx_min_pdu;    /* size of smallest PDU received      */
  654.     int                rx_max_pdu;    /* size of largest PDU received       */
  655.     int                tx_min_pdu;    /* size of smallest PDU transmitted   */
  656.     int                tx_max_pdu;    /* size of largest PDU transmitted    */
  657. } fore200e_vcc_t;
  658. /* 200E-series common memory layout */
  659. #define FORE200E_CP_MONITOR_OFFSET 0x00000400    /* i960 monitor interface */
  660. #define FORE200E_CP_QUEUES_OFFSET 0x00004d40    /* cp resident queues     */
  661. /* PCA-200E memory layout */
  662. #define PCA200E_IOSPACE_LENGTH         0x00200000
  663. #define PCA200E_HCR_OFFSET 0x00100000    /* board control register */
  664. #define PCA200E_IMR_OFFSET 0x00100004    /* host IRQ mask register */
  665. #define PCA200E_PSR_OFFSET 0x00100008    /* PCI specific register  */
  666. /* PCA-200E host control register */
  667. #define PCA200E_HCR_RESET     (1<<0)    /* read / write */
  668. #define PCA200E_HCR_HOLD_LOCK (1<<1)    /* read / write */
  669. #define PCA200E_HCR_I960FAIL  (1<<2)    /* read         */
  670. #define PCA200E_HCR_INTRB     (1<<2)    /* write        */
  671. #define PCA200E_HCR_HOLD_ACK  (1<<3)    /* read         */
  672. #define PCA200E_HCR_INTRA     (1<<3)    /* write        */
  673. #define PCA200E_HCR_OUTFULL   (1<<4)    /* read         */
  674. #define PCA200E_HCR_CLRINTR   (1<<4)    /* write        */
  675. #define PCA200E_HCR_ESPHOLD   (1<<5)    /* read         */
  676. #define PCA200E_HCR_INFULL    (1<<6)    /* read         */
  677. #define PCA200E_HCR_TESTMODE  (1<<7)    /* read         */
  678. /* PCA-200E PCI bus interface regs (offsets in PCI config space) */
  679. #define PCA200E_PCI_LATENCY      0x40    /* maximum slave latenty            */
  680. #define PCA200E_PCI_MASTER_CTRL  0x41    /* master control                   */
  681. #define PCA200E_PCI_THRESHOLD    0x42    /* burst / continous req threshold  */
  682. /* PBI master control register */
  683. #define PCA200E_CTRL_DIS_CACHE_RD      (1<<0)    /* disable cache-line reads                         */
  684. #define PCA200E_CTRL_DIS_WRT_INVAL     (1<<1)    /* disable writes and invalidates                   */
  685. #define PCA200E_CTRL_2_CACHE_WRT_INVAL (1<<2)    /* require 2 cache-lines for writes and invalidates */
  686. #define PCA200E_CTRL_IGN_LAT_TIMER     (1<<3)    /* ignore the latency timer                         */
  687. #define PCA200E_CTRL_ENA_CONT_REQ_MODE (1<<4)    /* enable continuous request mode                   */
  688. #define PCA200E_CTRL_LARGE_PCI_BURSTS  (1<<5)    /* force large PCI bus bursts                       */
  689. #define PCA200E_CTRL_CONVERT_ENDIAN    (1<<6)    /* convert endianess of slave RAM accesses          */
  690. #define SBA200E_PROM_NAME  "FORE,sba-200e"    /* device name in openprom tree */
  691. /* size of SBA-200E registers */
  692. #define SBA200E_HCR_LENGTH        4
  693. #define SBA200E_BSR_LENGTH        4
  694. #define SBA200E_ISR_LENGTH        4
  695. #define SBA200E_RAM_LENGTH  0x40000
  696. /* SBA-200E SBUS burst transfer size register */
  697. #define SBA200E_BSR_BURST4   0x04
  698. #define SBA200E_BSR_BURST8   0x08
  699. #define SBA200E_BSR_BURST16  0x10
  700. /* SBA-200E host control register */
  701. #define SBA200E_HCR_RESET        (1<<0)    /* read / write (sticky) */
  702. #define SBA200E_HCR_HOLD_LOCK    (1<<1)    /* read / write (sticky) */
  703. #define SBA200E_HCR_I960FAIL     (1<<2)    /* read                  */
  704. #define SBA200E_HCR_I960SETINTR  (1<<2)    /* write                 */
  705. #define SBA200E_HCR_OUTFULL      (1<<3)    /* read                  */
  706. #define SBA200E_HCR_INTR_CLR     (1<<3)    /* write                 */
  707. #define SBA200E_HCR_INTR_ENA     (1<<4)    /* read / write (sticky) */
  708. #define SBA200E_HCR_ESPHOLD      (1<<5)    /* read                  */
  709. #define SBA200E_HCR_INFULL       (1<<6)    /* read                  */
  710. #define SBA200E_HCR_TESTMODE     (1<<7)    /* read                  */
  711. #define SBA200E_HCR_INTR_REQ     (1<<8)    /* read                  */
  712. #define SBA200E_HCR_STICKY       (SBA200E_HCR_RESET | SBA200E_HCR_HOLD_LOCK | SBA200E_HCR_INTR_ENA)
  713. #endif /* __KERNEL__ */
  714. #endif /* _FORE200E_H */