acenic.h

来自「Linux Kernel 2.6.9 for OMAP1710」· C头文件 代码 · 共 806 行 · 第 1/2 页

H
806
字号
#ifndef _ACENIC_H_#define _ACENIC_H_#include <linux/config.h>/* * Generate TX index update each time, when TX ring is closed. * Normally, this is not useful, because results in more dma (and irqs * without TX_COAL_INTS_ONLY). */#define USE_TX_COAL_NOW	 0#ifndef MAX_SKB_FRAGS#define MAX_SKB_FRAGS 0#endif/* * Addressing: * * The Tigon uses 64-bit host addresses, regardless of their actual * length, and it expects a big-endian format. For 32 bit systems the * upper 32 bits of the address are simply ignored (zero), however for * little endian 64 bit systems (Alpha) this looks strange with the * two parts of the address word being swapped. * * The addresses are split in two 32 bit words for all architectures * as some of them are in PCI shared memory and it is necessary to use * readl/writel to access them. * * The addressing code is derived from Pete Wyckoff's work, but * modified to deal properly with readl/writel usage. */struct ace_regs {	u32	pad0[16];	/* PCI control registers */	u32	HostCtrl;	/* 0x40 */	u32	LocalCtrl;	u32	pad1[2];	u32	MiscCfg;	/* 0x50 */	u32	pad2[2];	u32	PciState;	u32	pad3[2];	/* 0x60 */	u32	WinBase;	u32	WinData;	u32	pad4[12];	/* 0x70 */	u32	DmaWriteState;	/* 0xa0 */	u32	pad5[3];	u32	DmaReadState;	/* 0xb0 */	u32	pad6[26];	u32	AssistState;	u32	pad7[8];	/* 0x120 */	u32	CpuCtrl;	/* 0x140 */	u32	Pc;	u32	pad8[3];	u32	SramAddr;	/* 0x154 */	u32	SramData;	u32	pad9[49];	u32	MacRxState;	/* 0x220 */	u32	pad10[7];	u32	CpuBCtrl;	/* 0x240 */	u32	PcB;	u32	pad11[3];	u32	SramBAddr;	/* 0x254 */	u32	SramBData;	u32	pad12[105];	u32	pad13[32];	/* 0x400 */	u32	Stats[32];	u32	Mb0Hi;		/* 0x500 */	u32	Mb0Lo;	u32	Mb1Hi;	u32	CmdPrd;	u32	Mb2Hi;	u32	TxPrd;	u32	Mb3Hi;	u32	RxStdPrd;	u32	Mb4Hi;	u32	RxJumboPrd;	u32	Mb5Hi;	u32	RxMiniPrd;	u32	Mb6Hi;	u32	Mb6Lo;	u32	Mb7Hi;	u32	Mb7Lo;	u32	Mb8Hi;	u32	Mb8Lo;	u32	Mb9Hi;	u32	Mb9Lo;	u32	MbAHi;	u32	MbALo;	u32	MbBHi;	u32	MbBLo;	u32	MbCHi;	u32	MbCLo;	u32	MbDHi;	u32	MbDLo;	u32	MbEHi;	u32	MbELo;	u32	MbFHi;	u32	MbFLo;	u32	pad14[32];	u32	MacAddrHi;	/* 0x600 */	u32	MacAddrLo;	u32	InfoPtrHi;	u32	InfoPtrLo;	u32	MultiCastHi;	/* 0x610 */	u32	MultiCastLo;	u32	ModeStat;	u32	DmaReadCfg;	u32	DmaWriteCfg;	/* 0x620 */	u32	TxBufRat;	u32	EvtCsm;	u32	CmdCsm;	u32	TuneRxCoalTicks;/* 0x630 */	u32	TuneTxCoalTicks;	u32	TuneStatTicks;	u32	TuneMaxTxDesc;	u32	TuneMaxRxDesc;	/* 0x640 */	u32	TuneTrace;	u32	TuneLink;	u32	TuneFastLink;	u32	TracePtr;	/* 0x650 */	u32	TraceStrt;	u32	TraceLen;	u32	IfIdx;	u32	IfMtu;		/* 0x660 */	u32	MaskInt;	u32	GigLnkState;	u32	FastLnkState;	u32	pad16[4];	/* 0x670 */	u32	RxRetCsm;	/* 0x680 */	u32	pad17[31];	u32	CmdRng[64];	/* 0x700 */	u32	Window[0x200];};typedef struct {	u32 addrhi;	u32 addrlo;} aceaddr;#define ACE_WINDOW_SIZE	0x800#define ACE_JUMBO_MTU 9000#define ACE_STD_MTU 1500#define ACE_TRACE_SIZE 0x8000/* * Host control register bits. */	#define IN_INT		0x01#define CLR_INT		0x02#define HW_RESET	0x08#define BYTE_SWAP	0x10#define WORD_SWAP	0x20#define MASK_INTS	0x40/* * Local control register bits. */#define EEPROM_DATA_IN		0x800000#define EEPROM_DATA_OUT		0x400000#define EEPROM_WRITE_ENABLE	0x200000#define EEPROM_CLK_OUT		0x100000#define EEPROM_BASE		0xa0000000#define EEPROM_WRITE_SELECT	0xa0#define EEPROM_READ_SELECT	0xa1#define SRAM_BANK_512K		0x200/* * udelay() values for when clocking the eeprom */#define ACE_SHORT_DELAY		2#define ACE_LONG_DELAY		4/* * Misc Config bits */#define SYNC_SRAM_TIMING	0x100000/* * CPU state bits. */#define CPU_RESET		0x01#define CPU_TRACE		0x02#define CPU_PROM_FAILED		0x10#define CPU_HALT		0x00010000#define CPU_HALTED		0xffff0000/* * PCI State bits. */#define DMA_READ_MAX_4		0x04#define DMA_READ_MAX_16		0x08#define DMA_READ_MAX_32		0x0c#define DMA_READ_MAX_64		0x10#define DMA_READ_MAX_128	0x14#define DMA_READ_MAX_256	0x18#define DMA_READ_MAX_1K		0x1c#define DMA_WRITE_MAX_4		0x20#define DMA_WRITE_MAX_16	0x40#define DMA_WRITE_MAX_32	0x60#define DMA_WRITE_MAX_64	0x80#define DMA_WRITE_MAX_128	0xa0#define DMA_WRITE_MAX_256	0xc0#define DMA_WRITE_MAX_1K	0xe0#define DMA_READ_WRITE_MASK	0xfc#define MEM_READ_MULTIPLE	0x00020000#define PCI_66MHZ		0x00080000#define PCI_32BIT		0x00100000#define DMA_WRITE_ALL_ALIGN	0x00800000#define READ_CMD_MEM		0x06000000#define WRITE_CMD_MEM		0x70000000/* * Mode status */#define ACE_BYTE_SWAP_BD	0x02#define ACE_WORD_SWAP_BD	0x04		/* not actually used */#define ACE_WARN		0x08#define ACE_BYTE_SWAP_DMA	0x10#define ACE_NO_JUMBO_FRAG	0x200#define ACE_FATAL		0x40000000/* * DMA config */#define DMA_THRESH_1W		0x10#define DMA_THRESH_2W		0x20#define DMA_THRESH_4W		0x40#define DMA_THRESH_8W		0x80#define DMA_THRESH_16W		0x100#define DMA_THRESH_32W		0x0	/* not described in doc, but exists. *//* * Tuning parameters */#define TICKS_PER_SEC		1000000/* * Link bits */#define LNK_PREF		0x00008000#define LNK_10MB		0x00010000#define LNK_100MB		0x00020000#define LNK_1000MB		0x00040000#define LNK_FULL_DUPLEX		0x00080000#define LNK_HALF_DUPLEX		0x00100000#define LNK_TX_FLOW_CTL_Y	0x00200000#define LNK_NEG_ADVANCED	0x00400000#define LNK_RX_FLOW_CTL_Y	0x00800000#define LNK_NIC			0x01000000#define LNK_JAM			0x02000000#define LNK_JUMBO		0x04000000#define LNK_ALTEON		0x08000000#define LNK_NEG_FCTL		0x10000000#define LNK_NEGOTIATE		0x20000000#define LNK_ENABLE		0x40000000#define LNK_UP			0x80000000/* * Event definitions */#define EVT_RING_ENTRIES	256#define EVT_RING_SIZE	(EVT_RING_ENTRIES * sizeof(struct event))struct event {#ifdef __LITTLE_ENDIAN_BITFIELD	u32	idx:12;	u32	code:12;	u32	evt:8;#else	u32	evt:8;	u32	code:12;	u32	idx:12;#endif	u32     pad;};/* * Events */#define E_FW_RUNNING		0x01#define E_STATS_UPDATED		0x04#define E_STATS_UPDATE		0x04#define E_LNK_STATE		0x06#define E_C_LINK_UP		0x01#define E_C_LINK_DOWN		0x02#define E_C_LINK_10_100		0x03#define E_ERROR			0x07#define E_C_ERR_INVAL_CMD	0x01#define E_C_ERR_UNIMP_CMD	0x02#define E_C_ERR_BAD_CFG		0x03#define E_MCAST_LIST		0x08#define E_C_MCAST_ADDR_ADD	0x01#define E_C_MCAST_ADDR_DEL	0x02#define E_RESET_JUMBO_RNG	0x09/* * Commands */#define CMD_RING_ENTRIES	64struct cmd {#ifdef __LITTLE_ENDIAN_BITFIELD	u32	idx:12;	u32	code:12;	u32	evt:8;#else	u32	evt:8;	u32	code:12;	u32	idx:12;#endif};#define C_HOST_STATE		0x01#define C_C_STACK_UP		0x01#define C_C_STACK_DOWN		0x02#define C_FDR_FILTERING		0x02#define C_C_FDR_FILT_ENABLE	0x01#define C_C_FDR_FILT_DISABLE	0x02#define C_SET_RX_PRD_IDX	0x03#define C_UPDATE_STATS		0x04#define C_RESET_JUMBO_RNG	0x05#define C_ADD_MULTICAST_ADDR	0x08#define C_DEL_MULTICAST_ADDR	0x09#define C_SET_PROMISC_MODE	0x0a#define C_C_PROMISC_ENABLE	0x01#define C_C_PROMISC_DISABLE	0x02#define C_LNK_NEGOTIATION	0x0b#define C_C_NEGOTIATE_BOTH	0x00#define C_C_NEGOTIATE_GIG	0x01#define C_C_NEGOTIATE_10_100	0x02#define C_SET_MAC_ADDR		0x0c#define C_CLEAR_PROFILE		0x0d

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?