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

嵌入式Linux

开发平台:

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_JUMBO 0x10
  324. #define BD_FLG_COAL_NOW 0x800
  325. #define BD_FLG_MINI 0x1000
  326. /*
  327.  * Ring Control block flags
  328.  */
  329. #define RCB_FLG_TCP_UDP_SUM 0x01
  330. #define RCB_FLG_IP_SUM 0x02
  331. #define RCB_FLG_NO_PSEUDO_HDR 0x08
  332. #define RCB_FLG_VLAN_ASSIST 0x10
  333. #define RCB_FLG_COAL_INT_ONLY 0x20
  334. #define RCB_FLG_TX_HOST_RING 0x40
  335. #define RCB_FLG_IEEE_SNAP_SUM 0x80
  336. #define RCB_FLG_EXT_RX_BD 0x100
  337. #define RCB_FLG_RNG_DISABLE 0x200
  338. /*
  339.  * TX ring
  340.  */
  341. #define TX_RING_ENTRIES 256
  342. #define TX_RING_SIZE (TX_RING_ENTRIES * sizeof(struct tx_desc))
  343. #define TX_RING_BASE 0x3800
  344. struct tx_desc{
  345.         aceaddr addr;
  346. u32 flagsize; 
  347. #if 0
  348. /*
  349.  * This is in PCI shared mem and must be accessed with readl/writel
  350.  * real layout is:
  351.  */
  352. #if __LITTLE_ENDIAN
  353. u16 flags;
  354. u16 size;
  355. u16 vlan;
  356. u16 reserved;
  357. #else
  358. u16 size;
  359. u16 flags;
  360. u16 reserved;
  361. u16 vlan;
  362. #endif
  363. #endif
  364. u32 vlanres;
  365. };
  366. #define RX_STD_RING_ENTRIES 512
  367. #define RX_STD_RING_SIZE (RX_STD_RING_ENTRIES * sizeof(struct rx_desc))
  368. #define RX_JUMBO_RING_ENTRIES 256
  369. #define RX_JUMBO_RING_SIZE (RX_JUMBO_RING_ENTRIES *sizeof(struct rx_desc))
  370. #define RX_MINI_RING_ENTRIES 1024
  371. #define RX_MINI_RING_SIZE (RX_MINI_RING_ENTRIES *sizeof(struct rx_desc))
  372. #define RX_RETURN_RING_ENTRIES 2048
  373. #define RX_RETURN_RING_SIZE (RX_MAX_RETURN_RING_ENTRIES * 
  374.  sizeof(struct rx_desc))
  375. struct rx_desc{
  376. aceaddr addr;
  377. #ifdef __LITTLE_ENDIAN
  378. u16 size;
  379. u16 idx;
  380. #else
  381. u16 idx;
  382. u16 size;
  383. #endif
  384. #ifdef __LITTLE_ENDIAN
  385. u16 flags;
  386. u16 type;
  387. #else
  388. u16 type;
  389. u16 flags;
  390. #endif
  391. #ifdef __LITTLE_ENDIAN
  392. u16 tcp_udp_csum;
  393. u16 ip_csum;
  394. #else
  395. u16 ip_csum;
  396. u16 tcp_udp_csum;
  397. #endif
  398. #ifdef __LITTLE_ENDIAN
  399. u16 vlan;
  400. u16 err_flags;
  401. #else
  402. u16 err_flags;
  403. u16 vlan;
  404. #endif
  405. u32 reserved;
  406. u32 opague;
  407. };
  408. /*
  409.  * This struct is shared with the NIC firmware.
  410.  */
  411. struct ring_ctrl {
  412. aceaddr rngptr;
  413. #ifdef __LITTLE_ENDIAN
  414. u16 flags;
  415. u16 max_len;
  416. #else
  417. u16 max_len;
  418. u16 flags;
  419. #endif
  420. u32 pad;
  421. };
  422. struct ace_mac_stats {
  423. u32 excess_colls;
  424. u32 coll_1;
  425. u32 coll_2;
  426. u32 coll_3;
  427. u32 coll_4;
  428. u32 coll_5;
  429. u32 coll_6;
  430. u32 coll_7;
  431. u32 coll_8;
  432. u32 coll_9;
  433. u32 coll_10;
  434. u32 coll_11;
  435. u32 coll_12;
  436. u32 coll_13;
  437. u32 coll_14;
  438. u32 coll_15;
  439. u32 late_coll;
  440. u32 defers;
  441. u32 crc_err;
  442. u32 underrun;
  443. u32 crs_err;
  444. u32 pad[3];
  445. u32 drop_ula;
  446. u32 drop_mc;
  447. u32 drop_fc;
  448. u32 drop_space;
  449. u32 coll;
  450. u32 kept_bc;
  451. u32 kept_mc;
  452. u32 kept_uc;
  453. };
  454. struct ace_info {
  455. union {
  456. u32 stats[256];
  457. } s;
  458. struct ring_ctrl evt_ctrl;
  459. struct ring_ctrl cmd_ctrl;
  460. struct ring_ctrl tx_ctrl;
  461. struct ring_ctrl rx_std_ctrl;
  462. struct ring_ctrl rx_jumbo_ctrl;
  463. struct ring_ctrl rx_mini_ctrl;
  464. struct ring_ctrl rx_return_ctrl;
  465. aceaddr evt_prd_ptr;
  466. aceaddr rx_ret_prd_ptr;
  467. aceaddr tx_csm_ptr;
  468. aceaddr stats2_ptr;
  469. };
  470. struct ring_info {
  471. struct sk_buff *skb;
  472. DECLARE_PCI_UNMAP_ADDR(mapping)
  473. };
  474. /*
  475.  * Funny... As soon as we add maplen on alpha, it starts to work
  476.  * much slower. Hmm... is it because struct does not fit to one cacheline?
  477.  * So, split tx_ring_info.
  478.  */
  479. struct tx_ring_info {
  480. struct sk_buff *skb;
  481. DECLARE_PCI_UNMAP_ADDR(mapping)
  482. DECLARE_PCI_UNMAP_LEN(maplen)
  483. };
  484. /*
  485.  * struct ace_skb holding the rings of skb's. This is an awful lot of
  486.  * pointers, but I don't see any other smart mode to do this in an
  487.  * efficient manner ;-(
  488.  */
  489. struct ace_skb
  490. {
  491. struct tx_ring_info tx_skbuff[TX_RING_ENTRIES];
  492. struct ring_info rx_std_skbuff[RX_STD_RING_ENTRIES];
  493. struct ring_info rx_mini_skbuff[RX_MINI_RING_ENTRIES];
  494. struct ring_info rx_jumbo_skbuff[RX_JUMBO_RING_ENTRIES];
  495. };
  496. /*
  497.  * Struct private for the AceNIC.
  498.  *
  499.  * Elements are grouped so variables used by the tx handling goes
  500.  * together, and will go into the same cache lines etc. in order to
  501.  * avoid cache line contention between the rx and tx handling on SMP.
  502.  *
  503.  * Frequently accessed variables are put at the beginning of the
  504.  * struct to help the compiler generate better/shorter code.
  505.  */
  506. struct ace_private
  507. {
  508. struct ace_info *info;
  509. struct ace_regs *regs; /* register base */
  510. struct ace_skb *skb;
  511. dma_addr_t info_dma; /* 32/64 bit */
  512. int version, link;
  513. int promisc, mcast_all;
  514. /*
  515.  * TX elements
  516.  */
  517. struct tx_desc *tx_ring;
  518. u32 tx_prd;
  519. volatile u32 tx_ret_csm;
  520. struct timer_list timer;
  521. /*
  522.  * RX elements
  523.  */
  524. unsigned long std_refill_busy
  525. __attribute__ ((aligned (SMP_CACHE_BYTES)));
  526. unsigned long mini_refill_busy, jumbo_refill_busy;
  527. atomic_t cur_rx_bufs;
  528. atomic_t cur_mini_bufs;
  529. atomic_t cur_jumbo_bufs;
  530. u32 rx_std_skbprd, rx_mini_skbprd, rx_jumbo_skbprd;
  531. u32 cur_rx;
  532. struct rx_desc *rx_std_ring;
  533. struct rx_desc *rx_jumbo_ring;
  534. struct rx_desc *rx_mini_ring;
  535. struct rx_desc *rx_return_ring;
  536. int tasklet_pending, jumbo;
  537. struct tasklet_struct ace_tasklet;
  538. struct event *evt_ring;
  539. volatile u32 *evt_prd, *rx_ret_prd, *tx_csm;
  540. dma_addr_t tx_ring_dma; /* 32/64 bit */
  541. dma_addr_t rx_ring_base_dma;
  542. dma_addr_t evt_ring_dma;
  543. dma_addr_t evt_prd_dma, rx_ret_prd_dma, tx_csm_dma;
  544. unsigned char *trace_buf;
  545. struct pci_dev *pdev;
  546. struct net_device *next;
  547. volatile int fw_running;
  548. int board_idx;
  549. u16 pci_command;
  550. u8 pci_latency;
  551. char name[48];
  552. #ifdef INDEX_DEBUG
  553. spinlock_t debug_lock
  554. __attribute__ ((aligned (SMP_CACHE_BYTES)));;
  555. u32 last_tx, last_std_rx, last_mini_rx;
  556. #endif
  557. struct net_device_stats stats;
  558. int pci_using_dac;
  559. };
  560. #define TX_RESERVED MAX_SKB_FRAGS
  561. static inline int tx_space (u32 csm, u32 prd)
  562. {
  563. return (csm - prd - 1) & (TX_RING_ENTRIES - 1);
  564. }
  565. #define tx_free(ap)  tx_space((ap)->tx_ret_csm, (ap)->tx_prd)
  566. #if MAX_SKB_FRAGS
  567. #define tx_ring_full(csm, prd) (tx_space(csm, prd) <= TX_RESERVED)
  568. #else
  569. #define tx_ring_full 0
  570. #endif
  571. static inline void set_aceaddr(aceaddr *aa, dma_addr_t addr)
  572. {
  573. u64 baddr = (u64) addr;
  574. aa->addrlo = baddr & 0xffffffff;
  575. aa->addrhi = baddr >> 32;
  576. mb();
  577. }
  578. static inline void ace_set_txprd(struct ace_regs *regs,
  579.  struct ace_private *ap, u32 value)
  580. {
  581. #ifdef INDEX_DEBUG
  582. unsigned long flags;
  583. spin_lock_irqsave(&ap->debug_lock, flags);
  584. writel(value, &regs->TxPrd);
  585. if (value == ap->last_tx)
  586. printk(KERN_ERR "AceNIC RACE ALERT! writing identical value "
  587.        "to tx producer (%i)n", value);
  588. ap->last_tx = value;
  589. spin_unlock_irqrestore(&ap->debug_lock, flags);
  590. #else
  591. writel(value, &regs->TxPrd);
  592. #endif
  593. wmb();
  594. }
  595. /*
  596.  * Prototypes
  597.  */
  598. static int ace_init(struct net_device *dev);
  599. static void ace_load_std_rx_ring(struct ace_private *ap, int nr_bufs);
  600. static void ace_load_mini_rx_ring(struct ace_private *ap, int nr_bufs);
  601. static void ace_load_jumbo_rx_ring(struct ace_private *ap, int nr_bufs);
  602. static void ace_interrupt(int irq, void *dev_id, struct pt_regs *regs);
  603. static int ace_load_firmware(struct net_device *dev);
  604. static int ace_open(struct net_device *dev);
  605. static int ace_start_xmit(struct sk_buff *skb, struct net_device *dev);
  606. static int ace_close(struct net_device *dev);
  607. static void ace_tasklet(unsigned long dev);
  608. static void ace_dump_trace(struct ace_private *ap);
  609. static void ace_set_multicast_list(struct net_device *dev);
  610. static int ace_change_mtu(struct net_device *dev, int new_mtu);
  611. static int ace_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd);
  612. static int ace_set_mac_addr(struct net_device *dev, void *p);
  613. static void ace_set_rxtx_parms(struct net_device *dev, int jumbo);
  614. static int ace_allocate_descriptors(struct net_device *dev);
  615. static void ace_free_descriptors(struct net_device *dev);
  616. static void ace_init_cleanup(struct net_device *dev);
  617. static struct net_device_stats *ace_get_stats(struct net_device *dev);
  618. static int read_eeprom_byte(struct net_device *dev, unsigned long offset);
  619. #endif /* _ACENIC_H_ */