smsc_lan91cxx.h
来自「eCos操作系统源码」· C头文件 代码 · 共 478 行 · 第 1/2 页
H
478 行
#ifndef CYGONCE_DEVS_ETH_SMSC_LAN91CXX_LAN91CXX_H#define CYGONCE_DEVS_ETH_SMSC_LAN91CXX_LAN91CXX_H//==========================================================================//// lan91cxx.h//// SMCS LAN91C110 (LAN91CXX compatible) Ethernet chip////==========================================================================//####ECOSGPLCOPYRIGHTBEGIN####// -------------------------------------------// This file is part of eCos, the Embedded Configurable Operating System.// Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.// Copyright (C) 2003 Nick Garnett //// eCos is free software; you can redistribute it and/or modify it under// the terms of the GNU General Public License as published by the Free// Software Foundation; either version 2 or (at your option) any later version.//// eCos is distributed in the hope that it will be useful, but WITHOUT ANY// WARRANTY; without even the implied warranty of MERCHANTABILITY or// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License// for more details.//// You should have received a copy of the GNU General Public License along// with eCos; if not, write to the Free Software Foundation, Inc.,// 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.//// As a special exception, if other files instantiate templates or use macros// or inline functions from this file, or you compile this file and link it// with other works to produce a work based on this file, this file does not// by itself cause the resulting work to be covered by the GNU General Public// License. However the source code for this file must still be made available// in accordance with section (3) of the GNU General Public License.//// This exception does not invalidate any other reasons why a work based on// this file might be covered by the GNU General Public License.//// Alternative licenses for eCos may be arranged by contacting Red Hat, Inc.// at http://sources.redhat.com/ecos/ecos-license/// -------------------------------------------//####ECOSGPLCOPYRIGHTEND####//####BSDCOPYRIGHTBEGIN####//// -------------------------------------------//// Portions of this software may have been derived from OpenBSD or other sources,// and are covered by the appropriate copyright disclaimers included herein.//// -------------------------------------------////####BSDCOPYRIGHTEND####//==========================================================================//#####DESCRIPTIONBEGIN####//// Author(s): jskov// Contributors: jskov, hmt, jco, nickg// Date: 2001-01-22// Purpose: Hardware description of LAN9000 series, LAN91C96/110.// Description: ////####DESCRIPTIONEND####////==========================================================================#include <cyg/hal/hal_io.h>#include <cyg/hal/hal_endian.h>#define LAN91CXX_TCR 0x00#define LAN91CXX_EPH_STATUS 0x01#define LAN91CXX_RCR 0x02#define LAN91CXX_COUNTER 0x03#define LAN91CXX_MIR 0x04#define LAN91CXX_MCR 0x05 // Other than 91C111#define LAN91CXX_RPCR 0x05 // 91C111 only#define LAN91CXX_RESERVED_0 0x06#define LAN91CXX_BS 0x07#define LAN91CXX_CONFIG 0x08#define LAN91CXX_BASE_REG 0x09#define LAN91CXX_IA01 0x0a#define LAN91CXX_IA23 0x0b#define LAN91CXX_IA45 0x0c#define LAN91CXX_GENERAL 0x0d // 91C96 - was "RESERVED_1" for others#define LAN91CXX_CONTROL 0x0e#define LAN91CXX_BS2 0x0f#define LAN91CXX_MMU_COMMAND 0x10#define LAN91CXX_PNR 0x11#define LAN91CXX_FIFO_PORTS 0x12#define LAN91CXX_POINTER 0x13#define LAN91CXX_DATA_HIGH 0x14#define LAN91CXX_DATA 0x15#define LAN91CXX_INTERRUPT 0x16#define LAN91CXX_BS3 0x17#define LAN91CXX_MT01 0x18#define LAN91CXX_MT23 0x19#define LAN91CXX_MT45 0x1a#define LAN91CXX_MT67 0x1b#define LAN91CXX_MGMT 0x1c#define LAN91CXX_REVISION 0x1d#define LAN91CXX_ERCV 0x1e#define LAN91CXX_BS4 0x1f#define LAN91CXX_RCR_SOFT_RST 0x8000 // soft reset#define LAN91CXX_RCR_FILT_CAR 0x4000 // filter carrier#define LAN91CXX_RCR_ABORT_ENB 0x2000 // abort on collision#define LAN91CXX_RCR_STRIP_CRC 0x0200 // strip CRC#define LAN91CXX_RCR_RXEN 0x0100 // enable RX#define LAN91CXX_RCR_ALMUL 0x0004 // receive all muticasts#define LAN91CXX_RCR_PRMS 0x0002 // promiscuous#define LAN91CXX_RCR_RX_ABORT 0x0001 // set when abort due to long frame#define LAN91CXX_TCR_SWFDUP 0x8000 // Switched Full Duplex mode#define LAN91CXX_TCR_ETEN_TYPE 0x4000 // ETEN type (91C96) 0 <=> like a 91C94#define LAN91CXX_TCR_EPH_LOOP 0x2000 // loopback mode#define LAN91CXX_TCR_STP_SQET 0x1000 // Stop transmission on SQET error#define LAN91CXX_TCR_FDUPLX 0x0800 // full duplex#define LAN91CXX_TCR_MON_CSN 0x0400 // monitor carrier during tx (91C96)#define LAN91CXX_TCR_NOCRC 0x0100 // does not append CRC to frames#define LAN91CXX_TCR_PAD_EN 0x0080 // pads frames with 00 to min length#define LAN91CXX_TCR_FORCOL 0x0004 // force collision#define LAN91CXX_TCR_LLOOP 0x0002 // local loopback (91C96)#define LAN91CXX_TCR_TXENA 0x0001 // enable#define LAN91CXX_POINTER_RCV 0x8000#define LAN91CXX_POINTER_AUTO_INCR 0x4000#define LAN91CXX_POINTER_READ 0x2000#define LAN91CXX_POINTER_ETEN 0x1000#define LAN91CXX_POINTER_NOT_EMPTY 0x0800#define LAN91CXX_INTERRUPT_TX_IDLE_M 0x8000 // (91C96)#define LAN91CXX_INTERRUPT_ERCV_INT_M 0x4000#define LAN91CXX_INTERRUPT_EPH_INT_M 0x2000#define LAN91CXX_INTERRUPT_RX_OVRN_INT_M 0x1000#define LAN91CXX_INTERRUPT_ALLOC_INT_M 0x0800#define LAN91CXX_INTERRUPT_TX_EMPTY_INT_M 0x0400#define LAN91CXX_INTERRUPT_TX_INT_M 0x0200#define LAN91CXX_INTERRUPT_RCV_INT_M 0x0100#define LAN91CXX_INTERRUPT_TX_IDLE 0x0080 // (91C96)#define LAN91CXX_INTERRUPT_ERCV_INT 0x0040 // also ack#define LAN91CXX_INTERRUPT_EPH_INT 0x0020#define LAN91CXX_INTERRUPT_RX_OVRN_INT 0x0010 // also ack#define LAN91CXX_INTERRUPT_ALLOC_INT 0x0008#define LAN91CXX_INTERRUPT_TX_EMPTY_INT 0x0004 // also ack#define LAN91CXX_INTERRUPT_TX_INT 0x0002 // also ack#define LAN91CXX_INTERRUPT_RCV_INT 0x0001#if 1 // Whichever we choose, the behaviour is the same.#define LAN91CXX_INTERRUPT_TX_SET 0x0002 // TX#define LAN91CXX_INTERRUPT_TX_SET_ACK 0x0000 // -none-#define LAN91CXX_INTERRUPT_TX_FIFO_ACK 0x0002 // TX alone#define LAN91CXX_INTERRUPT_TX_SET_M 0x0200 // TX alone#else#define LAN91CXX_INTERRUPT_TX_SET 0x0006 // TX_EMPTY + TX#define LAN91CXX_INTERRUPT_TX_SET_ACK 0x0004 // TX_EMPTY and not plain TX#define LAN91CXX_INTERRUPT_TX_FIFO_ACK 0x0002 // TX alone#define LAN91CXX_INTERRUPT_TX_SET_M 0x0600 // TX_EMPTY + TX#endif#define LAN91CXX_CONTROL_RCV_BAD 0x4000#define LAN91CXX_CONTROL_AUTO_RELEASE 0x0800#define LAN91CXX_CONTROL_LE_ENABLE 0x0080#define LAN91CXX_CONTROL_CR_ENABLE 0x0040#define LAN91CXX_CONTROL_TE_ENABLE 0x0020// These are for setting the MAC address in the 91C96 serial EEPROM#define LAN91CXX_CONTROL_EEPROM_SELECT 0x0004#define LAN91CXX_CONTROL_RELOAD 0x0002#define LAN91CXX_CONTROL_STORE 0x0001#define LAN91CXX_CONTROL_EEPROM_BUSY 0x0003#define LAN91CXX_ESA_EEPROM_OFFSET 0x0020#define LAN91CXX_STATUS_TX_UNRN 0x8000#define LAN91CXX_STATUS_LINK_OK 0x4000#define LAN91CXX_STATUS_CTR_ROL 0x1000#define LAN91CXX_STATUS_EXC_DEF 0x0800#define LAN91CXX_STATUS_LOST_CARR 0x0400#define LAN91CXX_STATUS_LATCOL 0x0200#define LAN91CXX_STATUS_WAKEUP 0x0100#define LAN91CXX_STATUS_TX_DEFR 0x0080#define LAN91CXX_STATUS_LTX_BRD 0x0040#define LAN91CXX_STATUS_SQET 0x0020#define LAN91CXX_STATUS_16COL 0x0010#define LAN91CXX_STATUS_LTX_MULT 0x0008#define LAN91CXX_STATUS_MUL_COL 0x0004#define LAN91CXX_STATUS_SNGL_COL 0x0002#define LAN91CXX_STATUS_TX_SUC 0x0001#define LAN91CXX_MMU_noop 0x0000#define LAN91CXX_MMU_alloc_for_tx 0x0020#define LAN91CXX_MMU_reset_mmu 0x0040#define LAN91CXX_MMU_rem_rx_frame 0x0060#define LAN91CXX_MMU_rem_tx_frame 0x0070 // (91C96) only when TX stopped#define LAN91CXX_MMU_remrel_rx_frame 0x0080#define LAN91CXX_MMU_rel_packet 0x00a0#define LAN91CXX_MMU_enq_packet 0x00c0#define LAN91CXX_MMU_reset_tx_fifo 0x00e0#define LAN91CXX_CONTROLBYTE_CRC 0x1000#define LAN91CXX_CONTROLBYTE_ODD 0x2000#define LAN91CXX_CONTROLBYTE_RX 0x4000#define LAN91CXX_RX_STATUS_ALIGNERR 0x8000#define LAN91CXX_RX_STATUS_BCAST 0x4000#define LAN91CXX_RX_STATUS_BADCRC 0x2000#define LAN91CXX_RX_STATUS_ODDFRM 0x1000#define LAN91CXX_RX_STATUS_TOOLONG 0x0800#define LAN91CXX_RX_STATUS_TOOSHORT 0x0400#define LAN91CXX_RX_STATUS_HASHVALMASK 0x007e // MASK#define LAN91CXX_RX_STATUS_MCAST 0x0001#define LAN91CXX_RX_STATUS_BAD \ (LAN91CXX_RX_STATUS_ALIGNERR | \ LAN91CXX_RX_STATUS_BADCRC | \ LAN91CXX_RX_STATUS_TOOLONG | \ LAN91CXX_RX_STATUS_TOOSHORT)// Attribute memory registers in PCMCIA mode#define LAN91CXX_ECOR 0x8000#define LAN91CXX_ECOR_RESET (1<<7)#define LAN91CXX_ECOR_LEVIRQ (1<<6)#define LAN91CXX_ECOR_ATTWR (1<<2)#define LAN91CXX_ECOR_ENABLE (1<<0)#define LAN91CXX_ECSR 0x8002#define LAN91CXX_ECSR_IOIS8 (1<<5)#define LAN91CXX_ECSR_PWRDWN (1<<2)#define LAN91CXX_ECSR_INTR (1<<1)// These are for manipulating the MII interface#define LAN91CXX_MGMT_MDO 0x0001#define LAN91CXX_MGMT_MDI 0x0002#define LAN91CXX_MGMT_MCLK 0x0004#define LAN91CXX_MGMT_MDOE 0x0008// Internal PHY registers (91c111)#define LAN91CXX_PHY_CTRL 0#define LAN91CXX_PHY_STAT 1#define LAN91CXX_PHY_ID1 2#define LAN91CXX_PHY_ID2 3
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?