⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 smc91x.h

📁 优龙2410linux2.6.8内核源代码
💻 H
📖 第 1 页 / 共 2 页
字号:
#define CTL_AUTO_RELEASE 0x0800 // When 1 tx pages are released automatically#define CTL_LE_ENABLE	0x0080 // When 1 enables Link Error interrupt#define CTL_CR_ENABLE	0x0040 // When 1 enables Counter Rollover interrupt#define CTL_TE_ENABLE	0x0020 // When 1 enables Transmit Error interrupt#define CTL_EEPROM_SELECT 0x0004 // Controls EEPROM reload & store#define CTL_RELOAD	0x0002 // When set reads EEPROM into registers#define CTL_STORE	0x0001 // When set stores registers into EEPROM// MMU Command Register/* BANK 2 */#define MMU_CMD_REG	SMC_REG(0x0000, 2)#define MC_BUSY		1	// When 1 the last release has not completed#define MC_NOP		(0<<5)	// No Op#define MC_ALLOC	(1<<5) 	// OR with number of 256 byte packets#define MC_RESET	(2<<5)	// Reset MMU to initial state#define MC_REMOVE	(3<<5) 	// Remove the current rx packet#define MC_RELEASE  	(4<<5) 	// Remove and release the current rx packet#define MC_FREEPKT  	(5<<5) 	// Release packet in PNR register#define MC_ENQUEUE	(6<<5)	// Enqueue the packet for transmit#define MC_RSTTXFIFO	(7<<5)	// Reset the TX FIFOs// Packet Number Register/* BANK 2 */#define PN_REG		SMC_REG(0x0002, 2)// Allocation Result Register/* BANK 2 */#define AR_REG		SMC_REG(0x0003, 2)#define AR_FAILED	0x80	// Alocation Failed// TX FIFO Ports Register/* BANK 2 */#define TXFIFO_REG	SMC_REG(0x0004, 2)#define TXFIFO_TEMPTY	0x80	// TX FIFO Empty// RX FIFO Ports Register/* BANK 2 */#define RXFIFO_REG	SMC_REG(0x0005, 2)#define RXFIFO_REMPTY	0x80	// RX FIFO Empty#define FIFO_REG	SMC_REG(0x0004, 2)// Pointer Register/* BANK 2 */#define PTR_REG		SMC_REG(0x0006, 2)#define PTR_RCV		0x8000 // 1=Receive area, 0=Transmit area#define PTR_AUTOINC 	0x4000 // Auto increment the pointer on each access#define PTR_READ	0x2000 // When 1 the operation is a read// Data Register/* BANK 2 */#define DATA_REG	SMC_REG(0x0008, 2)// Interrupt Status/Acknowledge Register/* BANK 2 */#define INT_REG		SMC_REG(0x000C, 2)// Interrupt Mask Register/* BANK 2 */#define IM_REG		SMC_REG(0x000D, 2)#define IM_MDINT	0x80 // PHY MI Register 18 Interrupt#define IM_ERCV_INT	0x40 // Early Receive Interrupt#define IM_EPH_INT	0x20 // Set by Ethernet Protocol Handler section#define IM_RX_OVRN_INT	0x10 // Set by Receiver Overruns#define IM_ALLOC_INT	0x08 // Set when allocation request is completed#define IM_TX_EMPTY_INT	0x04 // Set if the TX FIFO goes empty#define IM_TX_INT	0x02 // Transmit Interrupt#define IM_RCV_INT	0x01 // Receive Interrupt// Multicast Table Registers/* BANK 3 */#define MCAST_REG1	SMC_REG(0x0000, 3)#define MCAST_REG2	SMC_REG(0x0002, 3)#define MCAST_REG3	SMC_REG(0x0004, 3)#define MCAST_REG4	SMC_REG(0x0006, 3)// Management Interface Register (MII)/* BANK 3 */#define MII_REG		SMC_REG(0x0008, 3)#define MII_MSK_CRS100	0x4000 // Disables CRS100 detection during tx half dup#define MII_MDOE	0x0008 // MII Output Enable#define MII_MCLK	0x0004 // MII Clock, pin MDCLK#define MII_MDI		0x0002 // MII Input, pin MDI#define MII_MDO		0x0001 // MII Output, pin MDO// Revision Register/* BANK 3 *//* ( hi: chip id   low: rev # ) */#define REV_REG		SMC_REG(0x000A, 3)// Early RCV Register/* BANK 3 *//* this is NOT on SMC9192 */#define ERCV_REG	SMC_REG(0x000C, 3)#define ERCV_RCV_DISCRD	0x0080 // When 1 discards a packet being received#define ERCV_THRESHOLD	0x001F // ERCV Threshold Mask// External Register/* BANK 7 */#define EXT_REG		SMC_REG(0x0000, 7)#define CHIP_9192	3#define CHIP_9194	4#define CHIP_9195	5#define CHIP_9196	6#define CHIP_91100	7#define CHIP_91100FD	8#define CHIP_91111FD	9static const char * chip_ids[ 16 ] =  {	NULL, NULL, NULL,	/* 3 */ "SMC91C90/91C92",	/* 4 */ "SMC91C94",	/* 5 */ "SMC91C95",	/* 6 */ "SMC91C96",	/* 7 */ "SMC91C100",	/* 8 */ "SMC91C100FD",	/* 9 */ "SMC91C11xFD",	NULL, NULL, NULL,	NULL, NULL, NULL};/* . Transmit status bits*/#define TS_SUCCESS 0x0001#define TS_LOSTCAR 0x0400#define TS_LATCOL  0x0200#define TS_16COL   0x0010/* . Receive status bits*/#define RS_ALGNERR	0x8000#define RS_BRODCAST	0x4000#define RS_BADCRC	0x2000#define RS_ODDFRAME	0x1000#define RS_TOOLONG	0x0800#define RS_TOOSHORT	0x0400#define RS_MULTICAST	0x0001#define RS_ERRORS	(RS_ALGNERR | RS_BADCRC | RS_TOOLONG | RS_TOOSHORT)/* * PHY IDs *  LAN83C183 == LAN91C111 Internal PHY */#define PHY_LAN83C183	0x0016f840#define PHY_LAN83C180	0x02821c50/* * PHY Register Addresses (LAN91C111 Internal PHY) * * Generic PHY registers can be found in <linux/mii.h> * * These phy registers are specific to our on-board phy. */// PHY Configuration Register 1#define PHY_CFG1_REG		0x10#define PHY_CFG1_LNKDIS		0x8000	// 1=Rx Link Detect Function disabled#define PHY_CFG1_XMTDIS		0x4000	// 1=TP Transmitter Disabled#define PHY_CFG1_XMTPDN		0x2000	// 1=TP Transmitter Powered Down#define PHY_CFG1_BYPSCR		0x0400	// 1=Bypass scrambler/descrambler#define PHY_CFG1_UNSCDS		0x0200	// 1=Unscramble Idle Reception Disable#define PHY_CFG1_EQLZR		0x0100	// 1=Rx Equalizer Disabled#define PHY_CFG1_CABLE		0x0080	// 1=STP(150ohm), 0=UTP(100ohm)#define PHY_CFG1_RLVL0		0x0040	// 1=Rx Squelch level reduced by 4.5db#define PHY_CFG1_TLVL_SHIFT	2	// Transmit Output Level Adjust#define PHY_CFG1_TLVL_MASK	0x003C#define PHY_CFG1_TRF_MASK	0x0003	// Transmitter Rise/Fall time// PHY Configuration Register 2#define PHY_CFG2_REG		0x11#define PHY_CFG2_APOLDIS	0x0020	// 1=Auto Polarity Correction disabled#define PHY_CFG2_JABDIS		0x0010	// 1=Jabber disabled#define PHY_CFG2_MREG		0x0008	// 1=Multiple register access (MII mgt)#define PHY_CFG2_INTMDIO	0x0004	// 1=Interrupt signaled with MDIO pulseo// PHY Status Output (and Interrupt status) Register#define PHY_INT_REG		0x12	// Status Output (Interrupt Status)#define PHY_INT_INT		0x8000	// 1=bits have changed since last read#define PHY_INT_LNKFAIL		0x4000	// 1=Link Not detected#define PHY_INT_LOSSSYNC	0x2000	// 1=Descrambler has lost sync#define PHY_INT_CWRD		0x1000	// 1=Invalid 4B5B code detected on rx#define PHY_INT_SSD		0x0800	// 1=No Start Of Stream detected on rx#define PHY_INT_ESD		0x0400	// 1=No End Of Stream detected on rx#define PHY_INT_RPOL		0x0200	// 1=Reverse Polarity detected#define PHY_INT_JAB		0x0100	// 1=Jabber detected#define PHY_INT_SPDDET		0x0080	// 1=100Base-TX mode, 0=10Base-T mode#define PHY_INT_DPLXDET		0x0040	// 1=Device in Full Duplex// PHY Interrupt/Status Mask Register#define PHY_MASK_REG		0x13	// Interrupt Mask// Uses the same bit definitions as PHY_INT_REG/* * SMC91C96 ethernet config and status registers. * These are in the "attribute" space. */#define ECOR			0x8000#define ECOR_RESET		0x80#define ECOR_LEVEL_IRQ		0x40#define ECOR_WR_ATTRIB		0x04#define ECOR_ENABLE		0x01#define ECSR			0x8002#define ECSR_IOIS8		0x20#define ECSR_PWRDWN		0x04#define ECSR_INT		0x02#define ATTRIB_SIZE		((64*1024) << SMC_IO_SHIFT)/* * Macros to abstract register access according to the data bus * capabilities.  Please try to use those and not the in/out primitives. * Note: the following macros do *not* select the bank -- this must * be done separately as needed in the main code.  The SMC_REG() macro * only uses the bank argument for debugging purposes. */#if SMC_DEBUG > 0#define SMC_REG(reg, bank)						\	({								\		int __b = SMC_CURRENT_BANK();				\		if ((__b & ~0xf0) != (0x3300 | bank)) {			\			printk( "%s: bank reg screwed (0x%04x)\n",	\				CARDNAME, __b );			\			BUG();						\		}							\		reg<<SMC_IO_SHIFT;					\	})#else#define SMC_REG(reg, bank)	(reg<<SMC_IO_SHIFT)#endif#if SMC_CAN_USE_8BIT#define SMC_GET_PN()		SMC_inb( ioaddr, PN_REG )#define SMC_SET_PN(x)		SMC_outb( x, ioaddr, PN_REG )#define SMC_GET_AR()		SMC_inb( ioaddr, AR_REG )#define SMC_GET_TXFIFO()	SMC_inb( ioaddr, TXFIFO_REG )#define SMC_GET_RXFIFO()	SMC_inb( ioaddr, RXFIFO_REG )#define SMC_GET_INT()		SMC_inb( ioaddr, INT_REG )#define SMC_ACK_INT(x)		SMC_outb( x, ioaddr, INT_REG )#define SMC_GET_INT_MASK()	SMC_inb( ioaddr, IM_REG )#define SMC_SET_INT_MASK(x)	SMC_outb( x, ioaddr, IM_REG )#else#define SMC_GET_PN()		(SMC_inw( ioaddr, PN_REG ) & 0xFF)#define SMC_SET_PN(x)		SMC_outw( x, ioaddr, PN_REG )#define SMC_GET_AR()		(SMC_inw( ioaddr, PN_REG ) >> 8)#define SMC_GET_TXFIFO()	(SMC_inw( ioaddr, TXFIFO_REG ) & 0xFF)#define SMC_GET_RXFIFO()	(SMC_inw( ioaddr, TXFIFO_REG ) >> 8)#define SMC_GET_INT()		(SMC_inw( ioaddr, INT_REG ) & 0xFF)#define SMC_ACK_INT(x)							\	do {								\		unsigned long __flags;					\		int __mask;						\		local_irq_save(__flags);				\		__mask = SMC_inw( ioaddr, INT_REG ) & ~0xff;		\		SMC_outw( __mask | (x), ioaddr, INT_REG );		\		local_irq_restore(__flags);				\	} while (0)#define SMC_GET_INT_MASK()	(SMC_inw( ioaddr, INT_REG ) >> 8)#define SMC_SET_INT_MASK(x)	SMC_outw( (x) << 8, ioaddr, INT_REG )#endif#define SMC_CURRENT_BANK()	SMC_inw( ioaddr, BANK_SELECT )#define SMC_SELECT_BANK(x)	SMC_outw( x, ioaddr, BANK_SELECT )#define SMC_GET_BASE()		SMC_inw( ioaddr, BASE_REG )#define SMC_SET_BASE(x)		SMC_outw( x, ioaddr, BASE_REG )#define SMC_GET_CONFIG()	SMC_inw( ioaddr, CONFIG_REG )#define SMC_SET_CONFIG(x)	SMC_outw( x, ioaddr, CONFIG_REG )#define SMC_GET_COUNTER()	SMC_inw( ioaddr, COUNTER_REG )#define SMC_GET_CTL()		SMC_inw( ioaddr, CTL_REG )#define SMC_SET_CTL(x)		SMC_outw( x, ioaddr, CTL_REG )#define SMC_GET_MII()		SMC_inw( ioaddr, MII_REG )#define SMC_SET_MII(x)		SMC_outw( x, ioaddr, MII_REG )#define SMC_GET_MIR()		SMC_inw( ioaddr, MIR_REG )#define SMC_SET_MIR(x)		SMC_outw( x, ioaddr, MIR_REG )#define SMC_GET_MMU_CMD()	SMC_inw( ioaddr, MMU_CMD_REG )#define SMC_SET_MMU_CMD(x)	SMC_outw( x, ioaddr, MMU_CMD_REG )#define SMC_GET_FIFO()		SMC_inw( ioaddr, FIFO_REG )#define SMC_GET_PTR()		SMC_inw( ioaddr, PTR_REG )#define SMC_SET_PTR(x)		SMC_outw( x, ioaddr, PTR_REG )#define SMC_GET_RCR()		SMC_inw( ioaddr, RCR_REG )#define SMC_SET_RCR(x)		SMC_outw( x, ioaddr, RCR_REG )#define SMC_GET_REV()		SMC_inw( ioaddr, REV_REG )#define SMC_GET_RPC()		SMC_inw( ioaddr, RPC_REG )#define SMC_SET_RPC(x)		SMC_outw( x, ioaddr, RPC_REG )#define SMC_GET_TCR()		SMC_inw( ioaddr, TCR_REG )#define SMC_SET_TCR(x)		SMC_outw( x, ioaddr, TCR_REG )#ifndef SMC_GET_MAC_ADDR#define SMC_GET_MAC_ADDR(addr)						\	do {								\		unsigned int __v;					\		__v = SMC_inw( ioaddr, ADDR0_REG );			\		addr[0] = __v; addr[1] = __v >> 8;			\		__v = SMC_inw( ioaddr, ADDR1_REG );			\		addr[2] = __v; addr[3] = __v >> 8;			\		__v = SMC_inw( ioaddr, ADDR2_REG );			\		addr[4] = __v; addr[5] = __v >> 8;			\	} while (0)#endif#define SMC_SET_MAC_ADDR(addr)						\	do {								\		SMC_outw( addr[0]|(addr[1] << 8), ioaddr, ADDR0_REG );	\		SMC_outw( addr[2]|(addr[3] << 8), ioaddr, ADDR1_REG );	\		SMC_outw( addr[4]|(addr[5] << 8), ioaddr, ADDR2_REG );	\	} while (0)#define SMC_CLEAR_MCAST()						\	do {								\		SMC_outw( 0, ioaddr, MCAST_REG1 );			\		SMC_outw( 0, ioaddr, MCAST_REG2 );			\		SMC_outw( 0, ioaddr, MCAST_REG3 );			\		SMC_outw( 0, ioaddr, MCAST_REG4 );			\	} while (0)#define SMC_SET_MCAST(x)						\	do {								\		unsigned char *mt = (x);				\		SMC_outw( mt[0] | (mt[1] << 8), ioaddr, MCAST_REG1 );	\		SMC_outw( mt[2] | (mt[3] << 8), ioaddr, MCAST_REG2 );	\		SMC_outw( mt[4] | (mt[5] << 8), ioaddr, MCAST_REG3 );	\		SMC_outw( mt[6] | (mt[7] << 8), ioaddr, MCAST_REG4 );	\	} while (0)#if SMC_CAN_USE_32BIT/* * Some setups just can't write 8 or 16 bits reliably when not aligned * to a 32 bit boundary.  I tell you that exists! * We do the ones that can have their low parts written to 0 here. */#undef SMC_SELECT_BANK#define SMC_SELECT_BANK(x)	SMC_outl( (x)<<16, ioaddr, 12<<SMC_IO_SHIFT )#undef SMC_SET_RPC#define SMC_SET_RPC(x)		SMC_outl( (x)<<16, ioaddr, SMC_REG(8, 0) )#undef SMC_SET_PN#define SMC_SET_PN(x)		SMC_outl( (x)<<16, ioaddr, SMC_REG(0, 2) )#undef SMC_SET_PTR#define SMC_SET_PTR(x)		SMC_outl( (x)<<16, ioaddr, SMC_REG(4, 2) )#endif#if SMC_CAN_USE_32BIT#define SMC_PUT_PKT_HDR(status, length)					\	SMC_outl( (status) | (length) << 16, ioaddr, DATA_REG )#define SMC_GET_PKT_HDR(status, length)					\	do {								\		unsigned int __val = SMC_inl( ioaddr, DATA_REG );	\		(status) = __val & 0xffff;				\		(length) = __val >> 16;					\	} while (0)#else#define SMC_PUT_PKT_HDR(status, length)					\	do {								\		SMC_outw( status, ioaddr, DATA_REG );			\		SMC_outw( length, ioaddr, DATA_REG );			\	} while (0)#define SMC_GET_PKT_HDR(status, length)					\	do {								\		(status) = SMC_inw( ioaddr, DATA_REG );			\		(length) = SMC_inw( ioaddr, DATA_REG );			\	} while (0)#endif#if SMC_CAN_USE_32BIT#define SMC_PUSH_DATA(p, l)						\	do {								\		char *__ptr = (p);					\		int __len = (l);					\		if (__len >= 2 && (long)__ptr & 2) {			\			__len -= 2;					\			SMC_outw( *((u16 *)__ptr)++, ioaddr, DATA_REG );\		}							\		SMC_outsl( ioaddr, DATA_REG, __ptr, __len >> 2);	\		if (__len & 2) {					\			__ptr += (__len & ~3);				\			SMC_outw( *((u16 *)__ptr), ioaddr, DATA_REG );	\		}							\	} while (0)#define SMC_PULL_DATA(p, l)						\	do {								\		char *__ptr = (p);					\		int __len = (l);					\		if ((long)__ptr & 2) {					\			/*						\			 * We want 32bit alignment here.		\			 * Since some buses perform a full 32bit	\			 * fetch even for 16bit data we can't use	\			 * SMC_inw() here.  Back both source (on chip	\			 * and destination) pointers of 2 bytes.	\			 */						\			(long)__ptr &= ~2;				\			__len += 2;					\			SMC_SET_PTR( 2|PTR_READ|PTR_RCV|PTR_AUTOINC );	\		}							\		__len += 2;						\		SMC_insl( ioaddr, DATA_REG, __ptr, __len >> 2);		\	} while (0)#elif SMC_CAN_USE_16BIT#define SMC_PUSH_DATA(p, l)	SMC_outsw( ioaddr, DATA_REG, p, (l) >> 1 )#define SMC_PULL_DATA(p, l)	SMC_insw ( ioaddr, DATA_REG, p, (l) >> 1 )#elif SMC_CAN_USE_8BIT#define SMC_PUSH_DATA(p, l)	SMC_outsb( ioaddr, DATA_REG, p, l )#define SMC_PULL_DATA(p, l)	SMC_insb ( ioaddr, DATA_REG, p, l )#endif#if ! SMC_CAN_USE_16BIT#define SMC_outw(x, ioaddr, reg)					\	do {								\		unsigned int __val16 = (x);				\		SMC_outb( __val16, ioaddr, reg );			\		SMC_outb( __val16 >> 8, ioaddr, reg + (1 << SMC_IO_SHIFT));\	} while (0)#define SMC_inw(ioaddr, reg)						\	({								\		unsigned int __val16;					\		__val16 =  SMC_inb( ioaddr, reg );			\		__val16 |= SMC_inb( ioaddr, reg + (1 << SMC_IO_SHIFT)) << 8; \		__val16;						\	})#endif#endif  /* _SMC91X_H_ */

⌨️ 快捷键说明

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