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

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef _ACENIC_H_
  2. #define _ACENIC_H_
  3. #include <linux/config.h>
  4. /*
  5.  * Generate TX index update each time, when TX ring is closed.
  6.  * Normally, this is not useful, because results in more dma (and irqs
  7.  * without TX_COAL_INTS_ONLY).
  8.  */
  9. #define USE_TX_COAL_NOW  0
  10. #ifndef MAX_SKB_FRAGS
  11. #define MAX_SKB_FRAGS 0
  12. #endif
  13. /*
  14.  * Addressing:
  15.  *
  16.  * The Tigon uses 64-bit host addresses, regardless of their actual
  17.  * length, and it expects a big-endian format. For 32 bit systems the
  18.  * upper 32 bits of the address are simply ignored (zero), however for
  19.  * little endian 64 bit systems (Alpha) this looks strange with the
  20.  * two parts of the address word being swapped.
  21.  *
  22.  * The addresses are split in two 32 bit words for all architectures
  23.  * as some of them are in PCI shared memory and it is necessary to use
  24.  * readl/writel to access them.
  25.  *
  26.  * The addressing code is derived from Pete Wyckoff's work, but
  27.  * modified to deal properly with readl/writel usage.
  28.  */
  29. struct ace_regs {
  30. u32 pad0[16]; /* PCI control registers */
  31. u32 HostCtrl; /* 0x40 */
  32. u32 LocalCtrl;
  33. u32 pad1[2];
  34. u32 MiscCfg; /* 0x50 */
  35. u32 pad2[2];
  36. u32 PciState;
  37. u32 pad3[2]; /* 0x60 */
  38. u32 WinBase;
  39. u32 WinData;
  40. u32 pad4[12]; /* 0x70 */
  41. u32 DmaWriteState; /* 0xa0 */
  42. u32 pad5[3];
  43. u32 DmaReadState; /* 0xb0 */
  44. u32 pad6[26];
  45. u32 AssistState;
  46. u32 pad7[8]; /* 0x120 */
  47. u32 CpuCtrl; /* 0x140 */
  48. u32 Pc;
  49. u32 pad8[3];
  50. u32 SramAddr; /* 0x154 */
  51. u32 SramData;
  52. u32 pad9[49];
  53. u32 MacRxState; /* 0x220 */
  54. u32 pad10[7];
  55. u32 CpuBCtrl; /* 0x240 */
  56. u32 PcB;
  57. u32 pad11[3];
  58. u32 SramBAddr; /* 0x254 */
  59. u32 SramBData;
  60. u32 pad12[105];
  61. u32 pad13[32]; /* 0x400 */
  62. u32 Stats[32];
  63. u32 Mb0Hi; /* 0x500 */
  64. u32 Mb0Lo;
  65. u32 Mb1Hi;
  66. u32 CmdPrd;
  67. u32 Mb2Hi;
  68. u32 TxPrd;
  69. u32 Mb3Hi;
  70. u32 RxStdPrd;
  71. u32 Mb4Hi;
  72. u32 RxJumboPrd;
  73. u32 Mb5Hi;
  74. u32 RxMiniPrd;
  75. u32 Mb6Hi;
  76. u32 Mb6Lo;
  77. u32 Mb7Hi;
  78. u32 Mb7Lo;
  79. u32 Mb8Hi;
  80. u32 Mb8Lo;
  81. u32 Mb9Hi;
  82. u32 Mb9Lo;
  83. u32 MbAHi;
  84. u32 MbALo;
  85. u32 MbBHi;
  86. u32 MbBLo;
  87. u32 MbCHi;
  88. u32 MbCLo;
  89. u32 MbDHi;
  90. u32 MbDLo;
  91. u32 MbEHi;
  92. u32 MbELo;
  93. u32 MbFHi;
  94. u32 MbFLo;
  95. u32 pad14[32];
  96. u32 MacAddrHi; /* 0x600 */
  97. u32 MacAddrLo;
  98. u32 InfoPtrHi;
  99. u32 InfoPtrLo;
  100. u32 MultiCastHi; /* 0x610 */
  101. u32 MultiCastLo;
  102. u32 ModeStat;
  103. u32 DmaReadCfg;
  104. u32 DmaWriteCfg; /* 0x620 */
  105. u32 TxBufRat;
  106. u32 EvtCsm;
  107. u32 CmdCsm;
  108. u32 TuneRxCoalTicks;/* 0x630 */
  109. u32 TuneTxCoalTicks;
  110. u32 TuneStatTicks;
  111. u32 TuneMaxTxDesc;
  112. u32 TuneMaxRxDesc; /* 0x640 */
  113. u32 TuneTrace;
  114. u32 TuneLink;
  115. u32 TuneFastLink;
  116. u32 TracePtr; /* 0x650 */
  117. u32 TraceStrt;
  118. u32 TraceLen;
  119. u32 IfIdx;
  120. u32 IfMtu; /* 0x660 */
  121. u32 MaskInt;
  122. u32 GigLnkState;
  123. u32 FastLnkState;
  124. u32 pad16[4]; /* 0x670 */
  125. u32 RxRetCsm; /* 0x680 */
  126. u32 pad17[31];
  127. u32 CmdRng[64]; /* 0x700 */
  128. u32 Window[0x200];
  129. };
  130. typedef struct {
  131. u32 addrhi;
  132. u32 addrlo;
  133. } aceaddr;
  134. #define ACE_WINDOW_SIZE 0x800
  135. #define ACE_JUMBO_MTU 9000
  136. #define ACE_STD_MTU 1500
  137. #define ACE_TRACE_SIZE 0x8000
  138. /*
  139.  * Host control register bits.
  140.  */
  141. #define IN_INT 0x01
  142. #define CLR_INT 0x02
  143. #define HW_RESET 0x08
  144. #define BYTE_SWAP 0x10
  145. #define WORD_SWAP 0x20
  146. #define MASK_INTS 0x40
  147. /*
  148.  * Local control register bits.
  149.  */
  150. #define EEPROM_DATA_IN 0x800000
  151. #define EEPROM_DATA_OUT 0x400000
  152. #define EEPROM_WRITE_ENABLE 0x200000
  153. #define EEPROM_CLK_OUT 0x100000
  154. #define EEPROM_BASE 0xa0000000
  155. #define EEPROM_WRITE_SELECT 0xa0
  156. #define EEPROM_READ_SELECT 0xa1
  157. #define SRAM_BANK_512K 0x200
  158. /*
  159.  * udelay() values for when clocking the eeprom
  160.  */
  161. #define ACE_SHORT_DELAY 2
  162. #define ACE_LONG_DELAY 4
  163. /*
  164.  * Misc Config bits
  165.  */
  166. #define SYNC_SRAM_TIMING 0x100000
  167. /*
  168.  * CPU state bits.
  169.  */
  170. #define CPU_RESET 0x01
  171. #define CPU_TRACE 0x02
  172. #define CPU_PROM_FAILED 0x10
  173. #define CPU_HALT 0x00010000
  174. #define CPU_HALTED 0xffff0000
  175. /*
  176.  * PCI State bits.
  177.  */
  178. #define DMA_READ_MAX_4 0x04
  179. #define DMA_READ_MAX_16 0x08
  180. #define DMA_READ_MAX_32 0x0c
  181. #define DMA_READ_MAX_64 0x10
  182. #define DMA_READ_MAX_128 0x14
  183. #define DMA_READ_MAX_256 0x18
  184. #define DMA_READ_MAX_1K 0x1c
  185. #define DMA_WRITE_MAX_4 0x20
  186. #define DMA_WRITE_MAX_16 0x40
  187. #define DMA_WRITE_MAX_32 0x60
  188. #define DMA_WRITE_MAX_64 0x80
  189. #define DMA_WRITE_MAX_128 0xa0
  190. #define DMA_WRITE_MAX_256 0xc0
  191. #define DMA_WRITE_MAX_1K 0xe0
  192. #define DMA_READ_WRITE_MASK 0xfc
  193. #define MEM_READ_MULTIPLE 0x00020000
  194. #define PCI_66MHZ 0x00080000
  195. #define PCI_32BIT 0x00100000
  196. #define DMA_WRITE_ALL_ALIGN 0x00800000
  197. #define READ_CMD_MEM 0x06000000
  198. #define WRITE_CMD_MEM 0x70000000
  199. /*
  200.  * Mode status
  201.  */
  202. #define ACE_BYTE_SWAP_BD 0x02
  203. #define ACE_WORD_SWAP_BD 0x04 /* not actually used */
  204. #define ACE_WARN 0x08
  205. #define ACE_BYTE_SWAP_DMA 0x10
  206. #define ACE_NO_JUMBO_FRAG 0x200
  207. #define ACE_FATAL 0x40000000
  208. /*
  209.  * DMA config
  210.  */
  211. #define DMA_THRESH_1W 0x10
  212. #define DMA_THRESH_2W 0x20
  213. #define DMA_THRESH_4W 0x40
  214. #define DMA_THRESH_8W 0x80
  215. #define DMA_THRESH_16W 0x100
  216. #define DMA_THRESH_32W 0x0 /* not described in doc, but exists. */
  217. /*
  218.  * Tuning parameters
  219.  */
  220. #define TICKS_PER_SEC 1000000
  221. /*
  222.  * Link bits
  223.  */
  224. #define LNK_PREF 0x00008000
  225. #define LNK_10MB 0x00010000
  226. #define LNK_100MB 0x00020000
  227. #define LNK_1000MB 0x00040000
  228. #define LNK_FULL_DUPLEX 0x00080000
  229. #define LNK_HALF_DUPLEX 0x00100000
  230. #define LNK_TX_FLOW_CTL_Y 0x00200000
  231. #define LNK_NEG_ADVANCED 0x00400000
  232. #define LNK_RX_FLOW_CTL_Y 0x00800000
  233. #define LNK_NIC 0x01000000
  234. #define LNK_JAM 0x02000000
  235. #define LNK_JUMBO 0x04000000
  236. #define LNK_ALTEON 0x08000000
  237. #define LNK_NEG_FCTL 0x10000000
  238. #define LNK_NEGOTIATE 0x20000000
  239. #define LNK_ENABLE 0x40000000
  240. #define LNK_UP 0x80000000
  241. /*
  242.  * Event definitions
  243.  */
  244. #define EVT_RING_ENTRIES 256
  245. #define EVT_RING_SIZE (EVT_RING_ENTRIES * sizeof(struct event))
  246. struct event {
  247. #ifdef __LITTLE_ENDIAN_BITFIELD
  248. u32 idx:12;
  249. u32 code:12;
  250. u32 evt:8;
  251. #else
  252. u32 evt:8;
  253. u32 code:12;
  254. u32 idx:12;
  255. #endif
  256. u32     pad;
  257. };
  258. /*
  259.  * Events
  260.  */
  261. #define E_FW_RUNNING 0x01
  262. #define E_STATS_UPDATED 0x04
  263. #define E_STATS_UPDATE 0x04
  264. #define E_LNK_STATE 0x06
  265. #define E_C_LINK_UP 0x01
  266. #define E_C_LINK_DOWN 0x02
  267. #define E_C_LINK_10_100 0x03
  268. #define E_ERROR 0x07
  269. #define E_C_ERR_INVAL_CMD 0x01
  270. #define E_C_ERR_UNIMP_CMD 0x02
  271. #define E_C_ERR_BAD_CFG 0x03
  272. #define E_MCAST_LIST 0x08
  273. #define E_C_MCAST_ADDR_ADD 0x01
  274. #define E_C_MCAST_ADDR_DEL 0x02
  275. #define E_RESET_JUMBO_RNG 0x09
  276. /*
  277.  * Commands
  278.  */
  279. #define CMD_RING_ENTRIES 64
  280. struct cmd {
  281. #ifdef __LITTLE_ENDIAN_BITFIELD
  282. u32 idx:12;
  283. u32 code:12;
  284. u32 evt:8;
  285. #else
  286. u32 evt:8;
  287. u32 code:12;
  288. u32 idx:12;
  289. #endif
  290. };
  291. #define C_HOST_STATE 0x01
  292. #define C_C_STACK_UP 0x01
  293. #define C_C_STACK_DOWN 0x02
  294. #define C_FDR_FILTERING 0x02
  295. #define C_C_FDR_FILT_ENABLE 0x01
  296. #define C_C_FDR_FILT_DISABLE 0x02
  297. #define C_SET_RX_PRD_IDX 0x03
  298. #define C_UPDATE_STATS 0x04
  299. #define C_RESET_JUMBO_RNG 0x05
  300. #define C_ADD_MULTICAST_ADDR 0x08
  301. #define C_DEL_MULTICAST_ADDR 0x09
  302. #define C_SET_PROMISC_MODE 0x0a
  303. #define C_C_PROMISC_ENABLE 0x01
  304. #define C_C_PROMISC_DISABLE 0x02
  305. #define C_LNK_NEGOTIATION 0x0b
  306. #define C_C_NEGOTIATE_BOTH 0x00
  307. #define C_C_NEGOTIATE_GIG 0x01
  308. #define C_C_NEGOTIATE_10_100 0x02
  309. #define C_SET_MAC_ADDR 0x0c
  310. #define C_CLEAR_PROFILE 0x0d
  311. #define C_SET_MULTICAST_MODE 0x0e
  312. #define C_C_MCAST_ENABLE 0x01
  313. #define C_C_MCAST_DISABLE 0x02
  314. #define C_CLEAR_STATS 0x0f
  315. #define C_SET_RX_JUMBO_PRD_IDX 0x10
  316. #define C_REFRESH_STATS 0x11
  317. /*
  318.  * Descriptor flags
  319.  */
  320. #define BD_FLG_TCP_UDP_SUM 0x01
  321. #define BD_FLG_IP_SUM 0x02
  322. #define BD_FLG_END 0x04
  323. #define BD_FLG_MORE 0x08
  324. #define BD_FLG_JUMBO 0x10
  325. #define BD_FLG_UCAST 0x20
  326. #define BD_FLG_MCAST 0x40
  327. #define BD_FLG_BCAST 0x60
  328. #define BD_FLG_TYP_MASK 0x60
  329. #define BD_FLG_IP_FRAG 0x80
  330. #define BD_FLG_IP_FRAG_END 0x100
  331. #define BD_FLG_VLAN_TAG 0x200
  332. #define BD_FLG_FRAME_ERROR 0x400
  333. #define BD_FLG_COAL_NOW 0x800
  334. #define BD_FLG_MINI 0x1000
  335. /*
  336.  * Ring Control block flags
  337.  */
  338. #define RCB_FLG_TCP_UDP_SUM 0x01
  339. #define RCB_FLG_IP_SUM 0x02
  340. #define RCB_FLG_NO_PSEUDO_HDR 0x08
  341. #define RCB_FLG_VLAN_ASSIST 0x10
  342. #define RCB_FLG_COAL_INT_ONLY 0x20
  343. #define RCB_FLG_TX_HOST_RING 0x40
  344. #define RCB_FLG_IEEE_SNAP_SUM 0x80
  345. #define RCB_FLG_EXT_RX_BD 0x100
  346. #define RCB_FLG_RNG_DISABLE 0x200
  347. /*
  348.  * TX ring - maximum TX ring entries for Tigon I's is 128
  349.  */
  350. #define MAX_TX_RING_ENTRIES 256
  351. #define TIGON_I_TX_RING_ENTRIES 128
  352. #define TX_RING_SIZE (MAX_TX_RING_ENTRIES * sizeof(struct tx_desc))
  353. #define TX_RING_BASE 0x3800
  354. struct tx_desc{
  355.         aceaddr addr;
  356. u32 flagsize; 
  357. #if 0
  358. /*
  359.  * This is in PCI shared mem and must be accessed with readl/writel
  360.  * real layout is:
  361.  */
  362. #if __LITTLE_ENDIAN
  363. u16 flags;
  364. u16 size;
  365. u16 vlan;
  366. u16 reserved;
  367. #else
  368. u16 size;
  369. u16 flags;
  370. u16 reserved;
  371. u16 vlan;
  372. #endif
  373. #endif
  374. u32 vlanres;
  375. };
  376. #define RX_STD_RING_ENTRIES 512
  377. #define RX_STD_RING_SIZE (RX_STD_RING_ENTRIES * sizeof(struct rx_desc))
  378. #define RX_JUMBO_RING_ENTRIES 256
  379. #define RX_JUMBO_RING_SIZE (RX_JUMBO_RING_ENTRIES *sizeof(struct rx_desc))
  380. #define RX_MINI_RING_ENTRIES 1024
  381. #define RX_MINI_RING_SIZE (RX_MINI_RING_ENTRIES *sizeof(struct rx_desc))
  382. #define RX_RETURN_RING_ENTRIES 2048
  383. #define RX_RETURN_RING_SIZE (RX_MAX_RETURN_RING_ENTRIES * 
  384.  sizeof(struct rx_desc))
  385. struct rx_desc{
  386. aceaddr addr;
  387. #ifdef __LITTLE_ENDIAN
  388. u16 size;
  389. u16 idx;
  390. #else
  391. u16 idx;
  392. u16 size;
  393. #endif
  394. #ifdef __LITTLE_ENDIAN
  395. u16 flags;
  396. u16 type;
  397. #else
  398. u16 type;
  399. u16 flags;
  400. #endif
  401. #ifdef __LITTLE_ENDIAN
  402. u16 tcp_udp_csum;
  403. u16 ip_csum;
  404. #else
  405. u16 ip_csum;
  406. u16 tcp_udp_csum;
  407. #endif
  408. #ifdef __LITTLE_ENDIAN
  409. u16 vlan;
  410. u16 err_flags;
  411. #else
  412. u16 err_flags;
  413. u16 vlan;
  414. #endif
  415. u32 reserved;
  416. u32 opague;
  417. };
  418. /*
  419.  * This struct is shared with the NIC firmware.
  420.  */
  421. struct ring_ctrl {
  422. aceaddr rngptr;
  423. #ifdef __LITTLE_ENDIAN
  424. u16 flags;
  425. u16 max_len;
  426. #else
  427. u16 max_len;
  428. u16 flags;
  429. #endif
  430. u32 pad;
  431. };
  432. struct ace_mac_stats {
  433. u32 excess_colls;
  434. u32 coll_1;
  435. u32 coll_2;
  436. u32 coll_3;
  437. u32 coll_4;
  438. u32 coll_5;
  439. u32 coll_6;
  440. u32 coll_7;
  441. u32 coll_8;
  442. u32 coll_9;
  443. u32 coll_10;
  444. u32 coll_11;
  445. u32 coll_12;
  446. u32 coll_13;
  447. u32 coll_14;
  448. u32 coll_15;
  449. u32 late_coll;
  450. u32 defers;
  451. u32 crc_err;
  452. u32 underrun;
  453. u32 crs_err;
  454. u32 pad[3];
  455. u32 drop_ula;
  456. u32 drop_mc;
  457. u32 drop_fc;
  458. u32 drop_space;
  459. u32 coll;
  460. u32 kept_bc;
  461. u32 kept_mc;
  462. u32 kept_uc;
  463. };
  464. struct ace_info {
  465. union {
  466. u32 stats[256];
  467. } s;
  468. struct ring_ctrl evt_ctrl;
  469. struct ring_ctrl cmd_ctrl;
  470. struct ring_ctrl tx_ctrl;
  471. struct ring_ctrl rx_std_ctrl;
  472. struct ring_ctrl rx_jumbo_ctrl;
  473. struct ring_ctrl rx_mini_ctrl;
  474. struct ring_ctrl rx_return_ctrl;
  475. aceaddr evt_prd_ptr;
  476. aceaddr rx_ret_prd_ptr;
  477. aceaddr tx_csm_ptr;
  478. aceaddr stats2_ptr;
  479. };
  480. struct ring_info {
  481. struct sk_buff *skb;
  482. DECLARE_PCI_UNMAP_ADDR(mapping)
  483. };
  484. /*
  485.  * Funny... As soon as we add maplen on alpha, it starts to work
  486.  * much slower. Hmm... is it because struct does not fit to one cacheline?
  487.  * So, split tx_ring_info.
  488.  */
  489. struct tx_ring_info {
  490. struct sk_buff *skb;
  491. DECLARE_PCI_UNMAP_ADDR(mapping)
  492. DECLARE_PCI_UNMAP_LEN(maplen)
  493. };
  494. /*
  495.  * struct ace_skb holding the rings of skb's. This is an awful lot of
  496.  * pointers, but I don't see any other smart mode to do this in an
  497.  * efficient manner ;-(
  498.  */
  499. struct ace_skb
  500. {
  501. struct tx_ring_info tx_skbuff[MAX_TX_RING_ENTRIES];
  502. struct ring_info rx_std_skbuff[RX_STD_RING_ENTRIES];
  503. struct ring_info rx_mini_skbuff[RX_MINI_RING_ENTRIES];
  504. struct ring_info rx_jumbo_skbuff[RX_JUMBO_RING_ENTRIES];
  505. };
  506. /*
  507.  * Struct private for the AceNIC.
  508.  *
  509.  * Elements are grouped so variables used by the tx handling goes
  510.  * together, and will go into the same cache lines etc. in order to
  511.  * avoid cache line contention between the rx and tx handling on SMP.
  512.  *
  513.  * Frequently accessed variables are put at the beginning of the
  514.  * struct to help the compiler generate better/shorter code.
  515.  */
  516. struct ace_private
  517. {
  518. struct ace_info *info;
  519. struct ace_regs *regs; /* register base */
  520. struct ace_skb *skb;
  521. dma_addr_t info_dma; /* 32/64 bit */
  522. int version, link;
  523. int promisc, mcast_all;
  524. /*
  525.  * TX elements
  526.  */
  527. struct tx_desc *tx_ring;
  528. u32 tx_prd;
  529. volatile u32 tx_ret_csm;
  530. int tx_ring_entries;
  531. /*
  532.  * RX elements
  533.  */
  534. unsigned long std_refill_busy
  535. __attribute__ ((aligned (SMP_CACHE_BYTES)));
  536. unsigned long mini_refill_busy, jumbo_refill_busy;
  537. atomic_t cur_rx_bufs;
  538. atomic_t cur_mini_bufs;
  539. atomic_t cur_jumbo_bufs;
  540. u32 rx_std_skbprd, rx_mini_skbprd, rx_jumbo_skbprd;
  541. u32 cur_rx;
  542. struct rx_desc *rx_std_ring;
  543. struct rx_desc *rx_jumbo_ring;
  544. struct rx_desc *rx_mini_ring;
  545. struct rx_desc *rx_return_ring;
  546. #if ACENIC_DO_VLAN
  547. struct vlan_group *vlgrp;
  548. #endif
  549. int tasklet_pending, jumbo;
  550. struct tasklet_struct ace_tasklet;
  551. struct event *evt_ring;
  552. volatile u32 *evt_prd, *rx_ret_prd, *tx_csm;
  553. dma_addr_t tx_ring_dma; /* 32/64 bit */
  554. dma_addr_t rx_ring_base_dma;
  555. dma_addr_t evt_ring_dma;
  556. dma_addr_t evt_prd_dma, rx_ret_prd_dma, tx_csm_dma;
  557. unsigned char *trace_buf;
  558. struct pci_dev *pdev;
  559. struct net_device *next;
  560. volatile int fw_running;
  561. int board_idx;
  562. u16 pci_command;
  563. u8 pci_latency;
  564. char name[48];
  565. #ifdef INDEX_DEBUG
  566. spinlock_t debug_lock
  567. __attribute__ ((aligned (SMP_CACHE_BYTES)));;
  568. u32 last_tx, last_std_rx, last_mini_rx;
  569. #endif
  570. struct net_device_stats stats;
  571. int pci_using_dac;
  572. };
  573. #define TX_RESERVED MAX_SKB_FRAGS
  574. static inline int tx_space (struct ace_private *ap, u32 csm, u32 prd)
  575. {
  576. return (csm - prd - 1) & (ACE_TX_RING_ENTRIES(ap) - 1);
  577. }
  578. #define tx_free(ap)  tx_space((ap)->tx_ret_csm, (ap)->tx_prd, ap)
  579. #if MAX_SKB_FRAGS
  580. #define tx_ring_full(ap, csm, prd) (tx_space(ap, csm, prd) <= TX_RESERVED)
  581. #else
  582. #define tx_ring_full 0
  583. #endif
  584. static inline void set_aceaddr(aceaddr *aa, dma_addr_t addr)
  585. {
  586. u64 baddr = (u64) addr;
  587. aa->addrlo = baddr & 0xffffffff;
  588. aa->addrhi = baddr >> 32;
  589. wmb();
  590. }
  591. static inline void ace_set_txprd(struct ace_regs *regs,
  592.  struct ace_private *ap, u32 value)
  593. {
  594. #ifdef INDEX_DEBUG
  595. unsigned long flags;
  596. spin_lock_irqsave(&ap->debug_lock, flags);
  597. writel(value, &regs->TxPrd);
  598. if (value == ap->last_tx)
  599. printk(KERN_ERR "AceNIC RACE ALERT! writing identical value "
  600.        "to tx producer (%i)n", value);
  601. ap->last_tx = value;
  602. spin_unlock_irqrestore(&ap->debug_lock, flags);
  603. #else
  604. writel(value, &regs->TxPrd);
  605. #endif
  606. wmb();
  607. }
  608. static inline void ace_mask_irq(struct net_device *dev)
  609. {
  610. struct ace_private *ap = dev->priv;
  611. struct ace_regs *regs = ap->regs;
  612. if (ACE_IS_TIGON_I(ap))
  613. writel(1, &regs->MaskInt);
  614. else
  615. writel(readl(&regs->HostCtrl) | MASK_INTS, &regs->HostCtrl);
  616. ace_sync_irq(dev->irq);
  617. }
  618. static inline void ace_unmask_irq(struct net_device *dev)
  619. {
  620. struct ace_private *ap = dev->priv;
  621. struct ace_regs *regs = ap->regs;
  622.  
  623. if (ACE_IS_TIGON_I(ap))
  624. writel(0, &regs->MaskInt);
  625. else
  626. writel(readl(&regs->HostCtrl) & ~MASK_INTS, &regs->HostCtrl);
  627. }
  628. /*
  629.  * Prototypes
  630.  */
  631. static int ace_init(struct net_device *dev);
  632. static void ace_load_std_rx_ring(struct ace_private *ap, int nr_bufs);
  633. static void ace_load_mini_rx_ring(struct ace_private *ap, int nr_bufs);
  634. static void ace_load_jumbo_rx_ring(struct ace_private *ap, int nr_bufs);
  635. static void ace_interrupt(int irq, void *dev_id, struct pt_regs *regs);
  636. static int ace_load_firmware(struct net_device *dev);
  637. static int ace_open(struct net_device *dev);
  638. static int ace_start_xmit(struct sk_buff *skb, struct net_device *dev);
  639. static int ace_close(struct net_device *dev);
  640. static void ace_tasklet(unsigned long dev);
  641. static void ace_dump_trace(struct ace_private *ap);
  642. static void ace_set_multicast_list(struct net_device *dev);
  643. static int ace_change_mtu(struct net_device *dev, int new_mtu);
  644. static int ace_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd);
  645. static int ace_set_mac_addr(struct net_device *dev, void *p);
  646. static void ace_set_rxtx_parms(struct net_device *dev, int jumbo);
  647. static int ace_allocate_descriptors(struct net_device *dev);
  648. static void ace_free_descriptors(struct net_device *dev);
  649. static void ace_init_cleanup(struct net_device *dev);
  650. static struct net_device_stats *ace_get_stats(struct net_device *dev);
  651. static int read_eeprom_byte(struct net_device *dev, unsigned long offset);
  652. #if ACENIC_DO_VLAN
  653. static void ace_vlan_rx_register(struct net_device *dev, struct vlan_group *grp);
  654. static void ace_vlan_rx_kill_vid(struct net_device *dev, unsigned short vid);
  655. #endif
  656. #endif /* _ACENIC_H_ */