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

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef _LMC_VAR_H_
  2. #define _LMC_VAR_H_
  3. /* $Id: lmc_var.h,v 1.17 2000/04/06 12:16:47 asj Exp $ */
  4.  /*
  5.   * Copyright (c) 1997-2000 LAN Media Corporation (LMC)
  6.   * All rights reserved.  www.lanmedia.com
  7.   *
  8.   * This code is written by:
  9.   * Andrew Stanley-Jones (asj@cban.com)
  10.   * Rob Braun (bbraun@vix.com),
  11.   * Michael Graff (explorer@vix.com) and
  12.   * Matt Thomas (matt@3am-software.com).
  13.   *
  14.   * This software may be used and distributed according to the terms
  15.   * of the GNU General Public License version 2, incorporated herein by reference.
  16.   */
  17. #include <linux/timer.h>
  18. #ifndef __KERNEL__
  19. typedef signed char s8;
  20. typedef unsigned char u8;
  21. typedef signed short s16;
  22. typedef unsigned short u16;
  23. typedef signed int s32;
  24. typedef unsigned int u32;
  25. typedef signed long long s64;
  26. typedef unsigned long long u64;
  27. #define BITS_PER_LONG 32 
  28. #endif
  29. /*
  30.  * basic definitions used in lmc include files
  31.  */
  32. typedef struct lmc___softc lmc_softc_t;
  33. typedef struct lmc___media lmc_media_t;
  34. typedef struct lmc___ctl lmc_ctl_t;
  35. #define lmc_csrptr_t    unsigned long
  36. #define u_int16_t u16
  37. #define u_int8_t u8
  38. #define tulip_uint32_t u32
  39. #if LINUX_VERSION_CODE < 0x20155
  40. #define u_int32_t u32
  41. #endif
  42. #define LMC_REG_RANGE 0x80
  43. #define LMC_PRINTF_FMT  "%s"
  44. #define LMC_PRINTF_ARGS (sc->lmc_device->name)
  45. #define TX_TIMEOUT (2*HZ)
  46. #define LMC_TXDESCS            32
  47. #define LMC_RXDESCS            32
  48. #define LMC_LINK_UP            1
  49. #define LMC_LINK_DOWN          0
  50. /* These macros for generic read and write to and from the dec chip */
  51. #define LMC_CSR_READ(sc, csr) 
  52. inl((sc)->lmc_csrs.csr)
  53. #define LMC_CSR_WRITE(sc, reg, val) 
  54. outl((val), (sc)->lmc_csrs.reg)
  55. //#ifdef _LINUX_DELAY_H
  56. // #define SLOW_DOWN_IO udelay(2);
  57. // #undef __SLOW_DOWN_IO
  58. // #define __SLOW_DOWN_IO udelay(2);
  59. //#endif
  60. #define DELAY(n) SLOW_DOWN_IO
  61. #define lmc_delay() inl(sc->lmc_csrs.csr_9)
  62. /* This macro sync's up with the mii so that reads and writes can take place */
  63. #define LMC_MII_SYNC(sc) do {int n=32; while( n >= 0 ) { 
  64.                 LMC_CSR_WRITE((sc), csr_9, 0x20000); 
  65. lmc_delay(); 
  66. LMC_CSR_WRITE((sc), csr_9, 0x30000); 
  67.                 lmc_delay(); 
  68. n--; }} while(0)
  69. struct lmc_regfile_t {
  70.     lmc_csrptr_t csr_busmode;                  /* CSR0 */
  71.     lmc_csrptr_t csr_txpoll;                   /* CSR1 */
  72.     lmc_csrptr_t csr_rxpoll;                   /* CSR2 */
  73.     lmc_csrptr_t csr_rxlist;                   /* CSR3 */
  74.     lmc_csrptr_t csr_txlist;                   /* CSR4 */
  75.     lmc_csrptr_t csr_status;                   /* CSR5 */
  76.     lmc_csrptr_t csr_command;                  /* CSR6 */
  77.     lmc_csrptr_t csr_intr;                     /* CSR7 */
  78.     lmc_csrptr_t csr_missed_frames;            /* CSR8 */
  79.     lmc_csrptr_t csr_9;                        /* CSR9 */
  80.     lmc_csrptr_t csr_10;                       /* CSR10 */
  81.     lmc_csrptr_t csr_11;                       /* CSR11 */
  82.     lmc_csrptr_t csr_12;                       /* CSR12 */
  83.     lmc_csrptr_t csr_13;                       /* CSR13 */
  84.     lmc_csrptr_t csr_14;                       /* CSR14 */
  85.     lmc_csrptr_t csr_15;                       /* CSR15 */
  86. };
  87. #define csr_enetrom             csr_9   /* 21040 */
  88. #define csr_reserved            csr_10  /* 21040 */
  89. #define csr_full_duplex         csr_11  /* 21040 */
  90. #define csr_bootrom             csr_10  /* 21041/21140A/?? */
  91. #define csr_gp                  csr_12  /* 21140* */
  92. #define csr_watchdog            csr_15  /* 21140* */
  93. #define csr_gp_timer            csr_11  /* 21041/21140* */
  94. #define csr_srom_mii            csr_9   /* 21041/21140* */
  95. #define csr_sia_status          csr_12  /* 2104x */
  96. #define csr_sia_connectivity    csr_13  /* 2104x */
  97. #define csr_sia_tx_rx           csr_14  /* 2104x */
  98. #define csr_sia_general         csr_15  /* 2104x */
  99. /* tulip length/control transmit descriptor definitions
  100.  *  used to define bits in the second tulip_desc_t field (length)
  101.  *  for the transmit descriptor -baz */
  102. #define LMC_TDES_FIRST_BUFFER_SIZE       ((u_int32_t)(0x000007FF))
  103. #define LMC_TDES_SECOND_BUFFER_SIZE      ((u_int32_t)(0x003FF800))
  104. #define LMC_TDES_HASH_FILTERING          ((u_int32_t)(0x00400000))
  105. #define LMC_TDES_DISABLE_PADDING         ((u_int32_t)(0x00800000))
  106. #define LMC_TDES_SECOND_ADDR_CHAINED     ((u_int32_t)(0x01000000))
  107. #define LMC_TDES_END_OF_RING             ((u_int32_t)(0x02000000))
  108. #define LMC_TDES_ADD_CRC_DISABLE         ((u_int32_t)(0x04000000))
  109. #define LMC_TDES_SETUP_PACKET            ((u_int32_t)(0x08000000))
  110. #define LMC_TDES_INVERSE_FILTERING       ((u_int32_t)(0x10000000))
  111. #define LMC_TDES_FIRST_SEGMENT           ((u_int32_t)(0x20000000))
  112. #define LMC_TDES_LAST_SEGMENT            ((u_int32_t)(0x40000000))
  113. #define LMC_TDES_INTERRUPT_ON_COMPLETION ((u_int32_t)(0x80000000))
  114. #define TDES_SECOND_BUFFER_SIZE_BIT_NUMBER  11
  115. #define TDES_COLLISION_COUNT_BIT_NUMBER     3
  116. /* Constants for the RCV descriptor RDES */
  117. #define LMC_RDES_OVERFLOW             ((u_int32_t)(0x00000001))
  118. #define LMC_RDES_CRC_ERROR            ((u_int32_t)(0x00000002))
  119. #define LMC_RDES_DRIBBLING_BIT            ((u_int32_t)(0x00000004))
  120. #define LMC_RDES_REPORT_ON_MII_ERR    ((u_int32_t)(0x00000008))
  121. #define LMC_RDES_RCV_WATCHDOG_TIMEOUT ((u_int32_t)(0x00000010))
  122. #define LMC_RDES_FRAME_TYPE           ((u_int32_t)(0x00000020))
  123. #define LMC_RDES_COLLISION_SEEN       ((u_int32_t)(0x00000040))
  124. #define LMC_RDES_FRAME_TOO_LONG       ((u_int32_t)(0x00000080))
  125. #define LMC_RDES_LAST_DESCRIPTOR      ((u_int32_t)(0x00000100))
  126. #define LMC_RDES_FIRST_DESCRIPTOR     ((u_int32_t)(0x00000200))
  127. #define LMC_RDES_MULTICAST_FRAME      ((u_int32_t)(0x00000400))
  128. #define LMC_RDES_RUNT_FRAME           ((u_int32_t)(0x00000800))
  129. #define LMC_RDES_DATA_TYPE            ((u_int32_t)(0x00003000))
  130. #define LMC_RDES_LENGTH_ERROR         ((u_int32_t)(0x00004000))
  131. #define LMC_RDES_ERROR_SUMMARY        ((u_int32_t)(0x00008000))
  132. #define LMC_RDES_FRAME_LENGTH         ((u_int32_t)(0x3FFF0000))
  133. #define LMC_RDES_OWN_BIT              ((u_int32_t)(0x80000000))
  134. #define RDES_FRAME_LENGTH_BIT_NUMBER       16
  135. #define LMC_RDES_ERROR_MASK ( (u_int32_t)( 
  136.   LMC_RDES_OVERFLOW 
  137. | LMC_RDES_DRIBBLING_BIT 
  138. | LMC_RDES_REPORT_ON_MII_ERR 
  139.         | LMC_RDES_COLLISION_SEEN ) )
  140. /*
  141.  * Ioctl info
  142.  */
  143. typedef struct {
  144. u_int32_t n;
  145. u_int32_t m;
  146. u_int32_t v;
  147. u_int32_t x;
  148. u_int32_t r;
  149. u_int32_t f;
  150. u_int32_t exact;
  151. } lmc_av9110_t;
  152. /*
  153.  * Common structure passed to the ioctl code.
  154.  */
  155. struct lmc___ctl {
  156. u_int32_t cardtype;
  157. u_int32_t clock_source; /* HSSI, T1 */
  158. u_int32_t clock_rate; /* T1 */
  159. u_int32_t crc_length;
  160. u_int32_t cable_length; /* DS3 */
  161. u_int32_t scrambler_onoff; /* DS3 */
  162. u_int32_t cable_type; /* T1 */
  163. u_int32_t keepalive_onoff; /* protocol */
  164. u_int32_t ticks; /* ticks/sec */
  165. union {
  166. lmc_av9110_t ssi;
  167. } cardspec;
  168. u_int32_t       circuit_type;   /* T1 or E1 */
  169. };
  170. /*
  171.  * Carefull, look at the data sheet, there's more to this
  172.  * structure than meets the eye.  It should probably be:
  173.  *
  174.  * struct tulip_desc_t {
  175.  *         u8  own:1;
  176.  *         u32 status:31;
  177.  *         u32 control:10;
  178.  *         u32 buffer1;
  179.  *         u32 buffer2;
  180.  * };
  181.  * You could also expand status control to provide more bit information
  182.  */
  183. struct tulip_desc_t {
  184. s32 status;
  185. s32 length;
  186. u32 buffer1;
  187. u32 buffer2;
  188. };
  189. /*
  190.  * media independent methods to check on media status, link, light LEDs,
  191.  * etc.
  192.  */
  193. struct lmc___media {
  194. void (* init)(lmc_softc_t * const);
  195. void (* defaults)(lmc_softc_t * const);
  196. void (* set_status)(lmc_softc_t * const, lmc_ctl_t *);
  197. void (* set_clock_source)(lmc_softc_t * const, int);
  198. void (* set_speed)(lmc_softc_t * const, lmc_ctl_t *);
  199. void (* set_cable_length)(lmc_softc_t * const, int);
  200. void (* set_scrambler)(lmc_softc_t * const, int);
  201. int (* get_link_status)(lmc_softc_t * const);
  202. void (* set_link_status)(lmc_softc_t * const, int);
  203. void (* set_crc_length)(lmc_softc_t * const, int);
  204.         void    (* set_circuit_type)(lmc_softc_t * const, int);
  205.         void (* watchdog)(lmc_softc_t * const);
  206. };
  207. #define STATCHECK     0xBEEFCAFE
  208. /*  Included in this structure are first
  209.  *   - standard net_device_stats
  210.  *   - some other counters used for debug and driver performance
  211.  *  evaluation -baz
  212.  */
  213. struct lmc_statistics
  214. {
  215.         unsigned long     rx_packets;             /* total packets received       */
  216.         unsigned long     tx_packets;             /* total packets transmitted    */
  217. unsigned long     rx_bytes;
  218.         unsigned long     tx_bytes;
  219.         
  220.         unsigned long     rx_errors;              /* bad packets received         */
  221.         unsigned long     tx_errors;              /* packet transmit problems     */
  222.         unsigned long     rx_dropped;             /* no space in linux buffers    */
  223.         unsigned long     tx_dropped;             /* no space available in linux  */
  224.         unsigned long     multicast;              /* multicast packets received   */
  225.         unsigned long     collisions;
  226.         /* detailed rx_errors: */
  227.         unsigned long     rx_length_errors;
  228.         unsigned long     rx_over_errors;         /* receiver ring buff overflow  */
  229.         unsigned long     rx_crc_errors;          /* recved pkt with crc error    */
  230.         unsigned long     rx_frame_errors;        /* recv'd frame alignment error */
  231.         unsigned long     rx_fifo_errors;         /* recv'r fifo overrun          */
  232.         unsigned long     rx_missed_errors;       /* receiver missed packet       */
  233.         /* detailed tx_errors */
  234.         unsigned long     tx_aborted_errors;
  235.         unsigned long     tx_carrier_errors;
  236.         unsigned long     tx_fifo_errors;
  237.         unsigned long     tx_heartbeat_errors;
  238.         unsigned long     tx_window_errors;
  239.         /* for cslip etc */
  240.         unsigned long rx_compressed;
  241.         unsigned long tx_compressed;
  242.         /* -------------------------------------
  243.          * Custom stats & counters follow -baz */
  244.         u_int32_t       version_size;
  245.         u_int32_t       lmc_cardtype;
  246.         u_int32_t       tx_ProcTimeout;
  247.         u_int32_t       tx_IntTimeout;
  248.         u_int32_t       tx_NoCompleteCnt;
  249.         u_int32_t       tx_MaxXmtsB4Int;
  250.         u_int32_t       tx_TimeoutCnt;
  251.         u_int32_t       tx_OutOfSyncPtr;
  252.         u_int32_t       tx_tbusy0;
  253.         u_int32_t       tx_tbusy1;
  254.         u_int32_t       tx_tbusy_calls;
  255.         u_int32_t       resetCount;
  256.         u_int32_t       lmc_txfull;
  257.         u_int32_t       tbusy;
  258.         u_int32_t       dirtyTx;
  259.         u_int32_t       lmc_next_tx;
  260.         u_int32_t       otherTypeCnt;
  261.         u_int32_t       lastType;
  262.         u_int32_t       lastTypeOK;
  263.         u_int32_t       txLoopCnt;
  264.         u_int32_t       usedXmtDescripCnt;
  265.         u_int32_t       txIndexCnt;
  266.         u_int32_t       rxIntLoopCnt;
  267.         u_int32_t       rx_SmallPktCnt;
  268.         u_int32_t       rx_BadPktSurgeCnt;
  269.         u_int32_t       rx_BuffAllocErr;
  270.         u_int32_t       tx_lossOfClockCnt;
  271.         /* T1 error counters */
  272.         u_int32_t       framingBitErrorCount;
  273.         u_int32_t       lineCodeViolationCount;
  274.         u_int32_t       lossOfFrameCount;
  275.         u_int32_t       changeOfFrameAlignmentCount;
  276.         u_int32_t       severelyErroredFrameCount;
  277.         u_int32_t       check;
  278. };
  279. typedef struct lmc_xinfo {
  280.         u_int32_t       Magic0;                         /* BEEFCAFE */
  281.         u_int32_t       PciCardType;
  282.         u_int32_t       PciSlotNumber;          /* PCI slot number       */
  283.         u_int16_t       DriverMajorVersion;
  284.         u_int16_t       DriverMinorVersion;
  285.         u_int16_t       DriverSubVersion;
  286.         u_int16_t       XilinxRevisionNumber;
  287.         u_int16_t       MaxFrameSize;
  288.         u_int16_t       t1_alarm1_status;
  289.         u_int16_t       t1_alarm2_status;
  290.         int                     link_status;
  291.         u_int32_t       mii_reg16;
  292.         u_int32_t       Magic1;                         /* DEADBEEF */
  293. } LMC_XINFO;
  294. /*
  295.  * forward decl
  296.  */
  297. struct lmc___softc {
  298.         void *if_ptr;   /* General purpose pointer (used by SPPP) */
  299. char                   *name;
  300. u8 board_idx;
  301. struct lmc_statistics   stats;
  302. struct net_device          *lmc_device;
  303. int                     hang, rxdesc, bad_packet, some_counter;
  304. u_int32_t               txgo;
  305. struct lmc_regfile_t lmc_csrs;
  306. volatile u_int32_t lmc_txtick;
  307. volatile u_int32_t lmc_rxtick;
  308. u_int32_t lmc_flags;
  309. u_int32_t lmc_intrmask; /* our copy of csr_intr */
  310. u_int32_t lmc_cmdmode; /* our copy of csr_cmdmode */
  311. u_int32_t lmc_busmode; /* our copy of csr_busmode */
  312. u_int32_t lmc_gpio_io; /* state of in/out settings */
  313. u_int32_t lmc_gpio; /* state of outputs */
  314. struct sk_buff* lmc_txq[LMC_TXDESCS];
  315. struct sk_buff* lmc_rxq[LMC_RXDESCS];
  316. volatile
  317. struct tulip_desc_t lmc_rxring[LMC_RXDESCS];
  318. volatile
  319. struct tulip_desc_t lmc_txring[LMC_TXDESCS];
  320. unsigned int lmc_next_rx, lmc_next_tx;
  321. volatile
  322. unsigned int lmc_taint_tx, lmc_taint_rx;
  323. int lmc_tx_start, lmc_txfull;
  324. int lmc_txbusy;
  325. u_int16_t lmc_miireg16;
  326. int lmc_ok;
  327. int last_link_status;
  328. int lmc_cardtype;
  329. u_int32_t               last_frameerr;
  330. lmc_media_t        *lmc_media;
  331. struct timer_list timer;
  332. lmc_ctl_t ictl;
  333. u_int32_t TxDescriptControlInit;  
  334. struct net_device *next_module;   /* Link to the next module  */
  335. int                     tx_TimeoutInd; /* additional driver state */
  336. int                     tx_TimeoutDisplay;
  337. unsigned int lastlmc_taint_tx;
  338. int                     lasttx_packets;
  339. u_int32_t tx_clockState;
  340. u_int32_t lmc_crcSize;
  341. LMC_XINFO lmc_xinfo; 
  342. char                    lmc_yel, lmc_blue, lmc_red; /* for T1 and DS3 */
  343.         char                    lmc_timing; /* for HSSI and SSI */
  344.         int                     got_irq;
  345.         char                    last_led_err[4];
  346.         u32                     last_int;
  347.         u32                     num_int;
  348. #if LINUX_VERSION_CODE >= 0x20200
  349. spinlock_t              lmc_lock;
  350. #endif
  351.         u_int16_t               if_type;       /* PPP or NET */
  352.         struct ppp_device       *pd;
  353.         /* Failure cases */
  354.         u8                       failed_ring;
  355.         u8                       failed_recv_alloc;
  356.         /* Structure check */
  357.         u32                     check;
  358. };
  359. #define LMC_PCI_TIME 1
  360. #define LMC_EXT_TIME 0
  361. #define PKT_BUF_SZ              1542  /* was 1536 */
  362. /* CSR5 settings */
  363. #define TIMER_INT     0x00000800
  364. #define TP_LINK_FAIL  0x00001000
  365. #define TP_LINK_PASS  0x00000010
  366. #define NORMAL_INT    0x00010000
  367. #define ABNORMAL_INT  0x00008000
  368. #define RX_JABBER_INT 0x00000200
  369. #define RX_DIED       0x00000100
  370. #define RX_NOBUFF     0x00000080
  371. #define RX_INT        0x00000040
  372. #define TX_FIFO_UNDER 0x00000020
  373. #define TX_JABBER     0x00000008
  374. #define TX_NOBUFF     0x00000004
  375. #define TX_DIED       0x00000002
  376. #define TX_INT        0x00000001
  377. /* CSR6 settings */
  378. #define OPERATION_MODE  0x00000200 /* Full Duplex      */
  379. #define PROMISC_MODE    0x00000040 /* Promiscuous Mode */
  380. #define RECIEVE_ALL     0x40000000 /* Recieve All      */
  381. #define PASS_BAD_FRAMES 0x00000008 /* Pass Bad Frames  */
  382. /* Dec control registers  CSR6 as well */
  383. #define LMC_DEC_ST 0x00002000
  384. #define LMC_DEC_SR 0x00000002
  385. /* CSR15 settings */
  386. #define RECV_WATCHDOG_DISABLE 0x00000010
  387. #define JABBER_DISABLE        0x00000001
  388. /* More settings */
  389. /*
  390.  * aSR6 -- Command (Operation Mode) Register
  391.  */
  392. #define TULIP_CMD_RECEIVEALL    0x40000000L /* (RW)  Receivel all frames? */
  393. #define TULIP_CMD_MUSTBEONE     0x02000000L /* (RW)  Must Be One (21140) */
  394. #define TULIP_CMD_TXTHRSHLDCTL  0x00400000L /* (RW)  Transmit Threshold Mode (21140) */
  395. #define TULIP_CMD_STOREFWD      0x00200000L /* (RW)  Store and Foward (21140) */
  396. #define TULIP_CMD_NOHEARTBEAT   0x00080000L /* (RW)  No Heartbeat (21140) */
  397. #define TULIP_CMD_PORTSELECT    0x00040000L /* (RW)  Post Select (100Mb) (21140) */
  398. #define TULIP_CMD_FULLDUPLEX    0x00000200L /* (RW)  Full Duplex Mode */
  399. #define TULIP_CMD_OPERMODE      0x00000C00L /* (RW)  Operating Mode */
  400. #define TULIP_CMD_PROMISCUOUS   0x00000041L /* (RW)  Promiscuous Mode */
  401. #define TULIP_CMD_PASSBADPKT    0x00000008L /* (RW)  Pass Bad Frames */
  402. #define TULIP_CMD_THRESHOLDCTL  0x0000C000L /* (RW)  Threshold Control */
  403. #define TULIP_GP_PINSET         0x00000100L
  404. #define TULIP_BUSMODE_SWRESET   0x00000001L
  405. #define TULIP_WATCHDOG_TXDISABLE 0x00000001L
  406. #define TULIP_WATCHDOG_RXDISABLE 0x00000010L
  407. #define TULIP_STS_NORMALINTR    0x00010000L /* (RW)  Normal Interrupt */
  408. #define TULIP_STS_ABNRMLINTR    0x00008000L /* (RW)  Abnormal Interrupt */
  409. #define TULIP_STS_ERI           0x00004000L /* (RW)  Early Receive Interrupt */
  410. #define TULIP_STS_SYSERROR      0x00002000L /* (RW)  System Error */
  411. #define TULIP_STS_GTE           0x00000800L /* (RW)  General Pupose Timer Exp */
  412. #define TULIP_STS_ETI           0x00000400L /* (RW)  Early Transmit Interrupt */
  413. #define TULIP_STS_RXWT          0x00000200L /* (RW)  Receiver Watchdog Timeout */
  414. #define TULIP_STS_RXSTOPPED     0x00000100L /* (RW)  Receiver Process Stopped */
  415. #define TULIP_STS_RXNOBUF       0x00000080L /* (RW)  Receive Buf Unavail */
  416. #define TULIP_STS_RXINTR        0x00000040L /* (RW)  Receive Interrupt */
  417. #define TULIP_STS_TXUNDERFLOW   0x00000020L /* (RW)  Transmit Underflow */
  418. #define TULIP_STS_TXJABER       0x00000008L /* (RW)  Jabber timeout */
  419. #define TULIP_STS_TXNOBUF       0x00000004L
  420. #define TULIP_STS_TXSTOPPED     0x00000002L /* (RW)  Transmit Process Stopped */
  421. #define TULIP_STS_TXINTR        0x00000001L /* (RW)  Transmit Interrupt */
  422. #define TULIP_STS_RXS_STOPPED   0x00000000L /*        000 - Stopped */
  423. #define TULIP_STS_RXSTOPPED     0x00000100L             /* (RW)  Receive Process Stopped */
  424. #define TULIP_STS_RXNOBUF       0x00000080L
  425. #define TULIP_CMD_TXRUN         0x00002000L /* (RW)  Start/Stop Transmitter */
  426. #define TULIP_CMD_RXRUN         0x00000002L /* (RW)  Start/Stop Receive Filtering */
  427. #define TULIP_DSTS_TxDEFERRED   0x00000001      /* Initially Deferred */
  428. #define TULIP_DSTS_OWNER        0x80000000      /* Owner (1 = 21040) */
  429. #define TULIP_DSTS_RxMIIERR     0x00000008
  430. #define LMC_DSTS_ERRSUM         (TULIP_DSTS_RxMIIERR)
  431. #define TULIP_DEFAULT_INTR_MASK  (TULIP_STS_NORMALINTR 
  432.   | TULIP_STS_RXINTR       
  433.   | TULIP_STS_TXINTR     
  434.   | TULIP_STS_ABNRMLINTR 
  435.   | TULIP_STS_SYSERROR   
  436.   | TULIP_STS_TXSTOPPED  
  437.   | TULIP_STS_TXUNDERFLOW
  438.   | TULIP_STS_RXSTOPPED )
  439. #define DESC_OWNED_BY_SYSTEM   ((u_int32_t)(0x00000000))
  440. #define DESC_OWNED_BY_DC21X4   ((u_int32_t)(0x80000000))
  441. #ifndef TULIP_CMD_RECEIVEALL
  442. #define TULIP_CMD_RECEIVEALL 0x40000000L
  443. #endif
  444. /* PCI register values */
  445. #define CORRECT_VENDOR_ID    0x1011
  446. #define CORRECT_DEV_ID       9
  447. #define PCI_VENDOR_LMC 0x1376
  448. #define PCI_PRODUCT_LMC_HSSI 0x0003
  449. #define PCI_PRODUCT_LMC_DS3 0x0004
  450. #define PCI_PRODUCT_LMC_SSI 0x0005
  451. #define PCI_PRODUCT_LMC_T1      0x0006
  452. /* Adapcter module number */
  453. #define LMC_ADAP_HSSI           2
  454. #define LMC_ADAP_DS3            3
  455. #define LMC_ADAP_SSI            4
  456. #define LMC_ADAP_T1             5
  457. #define HDLC_HDR_LEN  4
  458. #define HDLC_ADDR_LEN 1
  459. #define HDLC_SLARP    0x8035
  460. #define LMC_MTU 1500
  461. #define SLARP_LINECHECK 2
  462. #define LMC_CRC_LEN_16 2  /* 16-bit CRC */
  463. #define LMC_CRC_LEN_32 4
  464. #if LINUX_VERSION_CODE < 0x20100
  465. #define test_and_set_bit(val, addr) set_bit(val, addr)
  466. #endif
  467. #ifdef LMC_HDLC
  468. /* definition of an hdlc header. */
  469. struct hdlc_hdr
  470. {
  471. u8  address;
  472. u8  control;
  473. u16 type;
  474. };
  475. /* definition of a slarp header. */
  476. struct slarp
  477. {
  478. long code;
  479. union sl
  480. {
  481. struct
  482. {
  483. ulong address;
  484. ulong mask;
  485. ushort unused;
  486. } add;
  487. struct
  488. {
  489. ulong mysequence;
  490. ulong yoursequence;
  491. ushort reliability;
  492. ulong time;
  493. } chk;
  494. } t;
  495. };
  496. #endif /* LMC_HDLC */
  497. #endif /* _LMC_VAR_H_ */