5ddf6daa98
1. The transmitting mode of the packets from LWIP to MAC is changed from synchronous to asynchronous. 2. The receive buf mode : support pointer mode and copy mode. 3. Add get phy status func used to config mac register.
28 lines
1 KiB
C
28 lines
1 KiB
C
#define BASIC_MODE_STATUS_REG (0x1)
|
|
#define AUTO_NEGOTIATION_COMPLETE BIT(5)
|
|
#define LINK_STATUS BIT(2)
|
|
|
|
#define PHY_IDENTIFIER_REG (0x2)
|
|
#define OUI_MSB_21TO6_DEF 0x2000
|
|
|
|
#define SOFTWARE_STAP_CONTROL_REG (0x9)
|
|
#define SW_STRAP_CONFIG_DONE BIT(15)
|
|
#define AUTO_MDIX_ENABLE BIT(14)
|
|
#define AUTO_NEGOTIATION_ENABLE BIT(13)
|
|
#define AN_1 BIT(12)
|
|
#define AN_0 BIT(11)
|
|
#define LED_CFG BIT(10)
|
|
#define RMII_ENHANCED_MODE BIT(9)
|
|
|
|
#define PHY_STATUS_REG (0x10)
|
|
#define AUTO_NEGTIATION_STATUS BIT(4)
|
|
#define DUPLEX_STATUS BIT(2)
|
|
#define SPEED_STATUS BIT(1)
|
|
|
|
#define CABLE_DIAGNOSTIC_CONTROL_REG (0x1e)
|
|
#define DIAGNOSTIC_DONE BIT(1)
|
|
|
|
#define PHY_RESET_CONTROL_REG (0x1f)
|
|
#define SOFTWARE_RESET BIT(15)
|
|
|
|
|