include/nuttx/net/w5500.h: Finishes off register bitfield definitions. Driver will follow.
This commit is contained in:
parent
53cefb812b
commit
594734e0ae
@ -1,4 +1,4 @@
|
||||
/****************************************************************************
|
||||
/************************************************************************************
|
||||
* include/nuttx/net/w5500.h
|
||||
* WIZnet W5500 Ethernet Controller
|
||||
*
|
||||
@ -32,14 +32,14 @@
|
||||
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
* POSSIBILITY OF SUCH DAMAGE.
|
||||
*
|
||||
****************************************************************************/
|
||||
************************************************************************************/
|
||||
|
||||
#ifndef __INCLUDE_NUTTX_NET_W5500_H
|
||||
#define __INCLUDE_NUTTX_NET_W5500_H
|
||||
|
||||
/****************************************************************************'
|
||||
/************************************************************************************'
|
||||
* Included Files
|
||||
****************************************************************************/
|
||||
************************************************************************************/
|
||||
|
||||
#include <nuttx/config.h>
|
||||
|
||||
@ -48,11 +48,11 @@
|
||||
|
||||
#ifdef CONFIG_NET_W5500
|
||||
|
||||
/****************************************************************************'
|
||||
/************************************************************************************
|
||||
* Included Files
|
||||
****************************************************************************/
|
||||
************************************************************************************/
|
||||
|
||||
/* W5500 Register Addresses *************************************************/
|
||||
/* W5500 Register Addresses *********************************************************/
|
||||
|
||||
/* Common Register Block */
|
||||
|
||||
@ -153,17 +153,137 @@
|
||||
#define W5500_SN_KPALVTR 0x002f /* Keep alive timer */
|
||||
/* 0x0030-0xffff: Reserved */
|
||||
|
||||
/* W5500 Register Bitfield Definitions **************************************/
|
||||
/* W5500 Register Bitfield Definitions **********************************************/
|
||||
|
||||
/* Common Register Block */
|
||||
|
||||
/* Mode Register (MR) */
|
||||
|
||||
#define MR_FARP (1 << 1) /* Bit 1: Force ARP */
|
||||
#define MR_PPPOE (1 << 3) /* Bit 3: PPPoE Mode */
|
||||
#define MR_PB (1 << 4) /* Bit 4: Ping Block Mode */
|
||||
#define MR_WOL (1 << 5) /* Bit 5: Wake on LAN */
|
||||
#define MR_RST (1 << 7) /* Bit 7: Reset registers */
|
||||
|
||||
/* Interrupt Register (IR), Interrupt Mask Register (IMR) */
|
||||
|
||||
#define INT_MP (1 << 4) /* Bit 4: Magic Packet */
|
||||
#define INT_PPPOE (1 << 5) /* Bit 5: PPPoE Connection Close */
|
||||
#define INT_UNREACH (1 << 6) /* Bit 6: Destination unreachable */
|
||||
#define INT_CONFLICT (1 << 7) /* Bit 7: IP Conflict */
|
||||
|
||||
/* Socket Interrupt Register (SIR) */
|
||||
|
||||
#define SIR(n) (1 << (n))
|
||||
|
||||
/* Socket Interrupt Mask Register (SIMR)) */
|
||||
|
||||
#define SIMR(n) (1 << (n))
|
||||
|
||||
/* PHY Configuration Register (PHYCFGR) */
|
||||
|
||||
#define PHYCFGR_LNK (1 << 0) /* Bit 0: Link Status */
|
||||
#define PHYCFGR_SPI (1 << 1 /* Bit 2: Speed Status */
|
||||
#define PHYCFGR_DPX (1 << 2) /* Bit 3: Duplex Status */
|
||||
#define PHYCFGR_OPMDC_SHIFT (3) /* Bits 3-5: Operation Mode Configuration */
|
||||
#define PHYCFGR_OPMDC_MASK (7 << PHYCFGR_OPMDC_SHIFT)
|
||||
# define PHYCFGR_OPMDC_10BT_HD_NAN (0 << PHYCFGR_OPMDC_SHIFT) /* 10BT Half-duplex */
|
||||
# define PHYCFGR_OPMDC_10BT_HFD_NAN (1 << PHYCFGR_OPMDC_SHIFT) /* 10BT Full-duplex */
|
||||
# define PHYCFGR_OPMDC_100BT_HD_NAN (2 << PHYCFGR_OPMDC_SHIFT) /* 100BT Half-duplex */
|
||||
# define PHYCFGR_OPMDC_10BT_FD_NAN (3 << PHYCFGR_OPMDC_SHIFT) /* 100BT Full-duplex,
|
||||
* Auto-negotiation */
|
||||
# define PHYCFGR_OPMDC_100BT_HD_AN (4 << PHYCFGR_OPMDC_SHIFT) /* 100BT Half-duplex,
|
||||
* Auto-negotiation */
|
||||
# define PHYCFGR_OPMDC_POWER_DOWN (6 << PHYCFGR_OPMDC_SHIFT) /* Power Down mode */
|
||||
# define PHYCFGR_OPMDC_ALLCAP_AN (7 << PHYCFGR_OPMDC_SHIFT) /* All capable,
|
||||
* Auto-negotiation */
|
||||
#define PHYCFGR_OPMD (1 << 6) /* Bit 6: Configure PHY Operation Mode */
|
||||
#define PHYCFGR_RST (1 << 7) /* Bit 7: Reset */
|
||||
|
||||
/* Socket Register Block */
|
||||
|
||||
/* Socket n Mode Register (SN_MR) */
|
||||
|
||||
/****************************************************************************'
|
||||
#define SN_MR_PROTOCOL_SHIFT (0) /* Bits 0-3: Protocol */
|
||||
#define SN_MR_PROTOCOL_MASK (15 << SN_MR_PROTOCOL_SHIFT)
|
||||
# define SN_MR_P0 (1 << (SN_MR_PROTOCOL_SHIFT + 0))
|
||||
# define SN_MR_P1 (1 << (SN_MR_PROTOCOL_SHIFT + 1))
|
||||
# define SN_MR_P2 (1 << (SN_MR_PROTOCOL_SHIFT + 2))
|
||||
# define SN_MR_P3 (1 << (SN_MR_PROTOCOL_SHIFT + 3))
|
||||
# define SM_MR_CLOSED 0
|
||||
# define SM_MR_TCP SN_MR_P0
|
||||
# define SM_MR_UDP SN_MR_P1
|
||||
# define SM_MR_MACRAW SN_MR_P2
|
||||
#define SN_MR_UCASTB (1 << 4) /* Bit 4: UNICAST Blocking in UDP mode */
|
||||
#define SN_MR_MIP6B (1 << 4) /* Bit 4: IPv6 packet Blocking in MACRAW mode */
|
||||
#define SN_MR_ND (1 << 5) /* Bit 5: Use No Delayed ACK */
|
||||
#define SN_MR_MC (1 << 5) /* Bit 5: Multicast */
|
||||
#define SN_MR_MMB (1 << 5) /* Bit 5: Multicast Blocking in MACRAW mode */
|
||||
#define SN_MR_BCASTB (1 << 6) /* Bit 6: Broadcast Blocking in MACRAW and
|
||||
* UDP mode */
|
||||
#define SN_MR_MULTI (1 << 7) /* Bit 7: Multicasting in UDP mode */
|
||||
#define SN_MR_MFEN (1 << 7) /* Bit 7: MAC Filter Enable in MACRAW mode */
|
||||
|
||||
/* Socket n Command Register (SN_CR) */
|
||||
|
||||
#define SN_CR_OPEN 0x01 /* Socket n is initialized and opened according
|
||||
* to the protocol selected in SN_MR */
|
||||
#define SN_CR_LISTEN 0x02 /* Socket n operates as a 'TCP server' and waits
|
||||
* for connection request from any 'TCP client' */
|
||||
#define SN_CR_CONNECT 0x04 /* 'TCP client' connection request */
|
||||
#define SN_CR_DISCON 0x08 /* TCP disconnection request */
|
||||
#define SN_CR_CLOSE 0x10 /* Close socket n */
|
||||
#define SN_CR_SEND 0x20 /* Transmit all data in Socket n TX buffer */
|
||||
#define SN_CR_SEND_MAC 0x21 /* Transmit all UDP data (no ARP) */
|
||||
#define SN_CR_SEND_KEEP 0x22 /* Send TCP keep-alive packet */
|
||||
#define SN_CR_RECV 0x40 /* Complete received data in Socket n RX buffer */
|
||||
|
||||
/* Socket n Interrupt Register (SN_IR) and Socket n Interrupt Mask Register (SN_IMR) */
|
||||
|
||||
#define SN_INT_CON (1 << 0) /* Bit 0: Connection with peer successful */
|
||||
#define SN_INT_DISCON (1 << 1) /* Bit 1: FIN or FIN/ACK received from peer */
|
||||
#define SN_INT_RECV (1 << 2) /* Bit 2: Data received from peer */
|
||||
#define SN_INT_TIMEOUT (1 << 3) /* Bit 3: ARP or TCP timeout */
|
||||
#define SN_INT_SEND_OK (1 << 4) /* Bit 4: SEND command completed */
|
||||
|
||||
/* Socket n Status Register (SN_SR) */
|
||||
|
||||
#define SN_SR_SOCK_CLOSED 0x00
|
||||
#define SN_SR_SOCK_INIT 0x13
|
||||
#define SN_SR_SOCK_LISTEN 0x14
|
||||
#define SN_SR_SOCK_ESTABLISHED 0x17
|
||||
#define SN_SR_SOCK_CLOSE_WAIT 0x1c
|
||||
#define SN_SR_SOCK_UDP 0x22
|
||||
#define SN_SR_SOCK_MACRAW 0x42
|
||||
|
||||
#define SN_SR_SOCK_SYNSENT 0x15 /* Transitional status */
|
||||
#define SN_SR_SOCK_SYNRECV 0x16
|
||||
#define SN_SR_SOCK_FIN_WAIT 0x18
|
||||
#define SN_SR_SOCK_CLOSING 0x1a
|
||||
#define SN_SR_SOCK_TIME_WAIT 0x1b
|
||||
#define SN_SR_SOCK_LAST_ACK 0x1d
|
||||
|
||||
/* Socket n RX Buffer Size Register (SN_RXBUF) */
|
||||
|
||||
#define SN_RXBUF_0KB 0
|
||||
#define SN_RXBUF_1KB 1
|
||||
#define SN_RXBUF_2KB 2
|
||||
#define SN_RXBUF_4KB 4
|
||||
#define SN_RXBUF_8KB 5
|
||||
#define SN_RXBUF_16KB 16
|
||||
|
||||
/* Socket n TX Buffer Size Register (SN_TXBUF) */
|
||||
|
||||
#define SN_TXBUF_0KB 0
|
||||
#define SN_TXBUF_1KB 1
|
||||
#define SN_TXBUF_2KB 2
|
||||
#define SN_TXBUF_4KB 4
|
||||
#define SN_TXBUF_8KB 5
|
||||
#define SN_TXBUF_16KB 16
|
||||
|
||||
/************************************************************************************'
|
||||
* Public Types
|
||||
****************************************************************************/
|
||||
************************************************************************************/
|
||||
|
||||
/* This structure describes the lower-half interface provided by board-
|
||||
* specific logic.
|
||||
@ -188,11 +308,11 @@ struct w5500_lower_s
|
||||
void (*reset)(FAR const struct w5500_lower_s *lower, bool reset);
|
||||
};
|
||||
|
||||
/****************************************************************************'
|
||||
/************************************************************************************
|
||||
* Public Function Prototypes
|
||||
****************************************************************************/
|
||||
************************************************************************************/
|
||||
|
||||
/****************************************************************************
|
||||
/************************************************************************************
|
||||
* Name: w5500_initialize
|
||||
*
|
||||
* Description:
|
||||
@ -206,7 +326,7 @@ struct w5500_lower_s
|
||||
*
|
||||
* Assumptions:
|
||||
*
|
||||
****************************************************************************/
|
||||
************************************************************************************/
|
||||
|
||||
int w5500_initialize(FAR struct w5500_lower_s *lower);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user