mirror of
https://github.com/apache/nuttx.git
synced 2026-06-05 15:58:59 +08:00
Clean-up and document LP17xx ethernet driver configuration settings
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3109 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
@@ -283,6 +283,26 @@ mbed Configuration Options
|
|||||||
CONFIG_UARTn_PARTIY - 0=no parity, 1=odd parity, 2=even parity
|
CONFIG_UARTn_PARTIY - 0=no parity, 1=odd parity, 2=even parity
|
||||||
CONFIG_UARTn_2STOP - Two stop bits
|
CONFIG_UARTn_2STOP - Two stop bits
|
||||||
|
|
||||||
|
LPC17xx specific PHY/Ethernet device driver settings. These setting
|
||||||
|
also require CONFIG_NET and CONFIG_LPC17_ETHERNET.
|
||||||
|
|
||||||
|
CONFIG_PHY_KS8721 - Selects Micrel KS8721 PHY
|
||||||
|
CONFIG_PHY_AUTONEG - Enable auto-negotion
|
||||||
|
CONFIG_PHY_SPEED100 - Select 100Mbit vs. 10Mbit speed.
|
||||||
|
CONFIG_PHY_FDUPLEX - Select full (vs. half) duplex
|
||||||
|
|
||||||
|
CONFIG_NET_NTXDESC - Configured number of Tx descriptors. Default: 18
|
||||||
|
CONFIG_NET_NRXDESC - Configured number of Rx descriptors. Default: 18
|
||||||
|
CONFIG_NET_PRIORITY - Ethernet interrupt priority. The is default is
|
||||||
|
the higest priority.
|
||||||
|
CONFIG_NET_WOL - Enable Wake-up on Lan (not fully implemented).
|
||||||
|
CONFIG_NET_REGDEBUG - Enabled low level register debug. Also needs
|
||||||
|
CONFIG_DEBUG.
|
||||||
|
CONFIG_NET_BROADCAST - Enable receipt of broadcast frames
|
||||||
|
CONFIG_NET_HASH - Enable receipt of near-perfect match frames.
|
||||||
|
CONFIG_NET_MULTICAST - Enable receipt of multicast (and unicast) frames.
|
||||||
|
Automatically set if CONFIG_NET_IGMP is selected.
|
||||||
|
|
||||||
LPC17xx USB Configuration
|
LPC17xx USB Configuration
|
||||||
|
|
||||||
CONFIG_LPC17_USBDEV_FRAME_INTERRUPT
|
CONFIG_LPC17_USBDEV_FRAME_INTERRUPT
|
||||||
|
|||||||
@@ -181,6 +181,30 @@ CONFIG_UART1_2STOP=0
|
|||||||
CONFIG_UART2_2STOP=0
|
CONFIG_UART2_2STOP=0
|
||||||
CONFIG_UART3_2STOP=0
|
CONFIG_UART3_2STOP=0
|
||||||
|
|
||||||
|
#
|
||||||
|
# LPC17xx specific PHY/Ethernet device driver settings
|
||||||
|
#
|
||||||
|
# CONFIG_PHY_KS8721 - Selects Micrel KS8721 PHY
|
||||||
|
# CONFIG_PHY_AUTONEG - Enable auto-negotion
|
||||||
|
# CONFIG_PHY_SPEED100 - Select 100Mbit vs. 10Mbit speed.
|
||||||
|
# CONFIG_PHY_FDUPLEX - Select full (vs. half) duplex
|
||||||
|
# CONFIG_NET_NTXDESC - Configured number of Tx descriptors. Default: 18
|
||||||
|
# CONFIG_NET_NRXDESC - Configured number of Rx descriptors. Default: 18
|
||||||
|
# CONFIG_NET_PRIORITY - Ethernet interrupt priority. The is default is
|
||||||
|
# the higest priority.
|
||||||
|
# CONFIG_NET_WOL - Enable Wake-up on Lan (not fully implemented).
|
||||||
|
# CONFIG_NET_REGDEBUG - Enabled low level register debug. Also needs
|
||||||
|
# CONFIG_DEBUG.
|
||||||
|
# CONFIG_NET_BROADCAST - Enable receipt of broadcast frames
|
||||||
|
# CONFIG_NET_HASH - Enable receipt of near-perfect match frames.
|
||||||
|
# CONFIG_NET_MULTICAST - Enable receipt of multicast (and unicast) frames.
|
||||||
|
# Automatically set if CONFIG_NET_IGMP is selected.
|
||||||
|
#
|
||||||
|
CONFIG_PHY_KS8721=y
|
||||||
|
CONFIG_PHY_AUTONEG=y
|
||||||
|
CONFIG_PHY_SPEED100=n
|
||||||
|
CONFIG_PHY_FDUPLEX=y
|
||||||
|
|
||||||
#
|
#
|
||||||
# General build options
|
# General build options
|
||||||
#
|
#
|
||||||
|
|||||||
@@ -395,6 +395,26 @@ Nucleus 2G Configuration Options
|
|||||||
CONFIG_UARTn_PARTIY - 0=no parity, 1=odd parity, 2=even parity
|
CONFIG_UARTn_PARTIY - 0=no parity, 1=odd parity, 2=even parity
|
||||||
CONFIG_UARTn_2STOP - Two stop bits
|
CONFIG_UARTn_2STOP - Two stop bits
|
||||||
|
|
||||||
|
LPC17xx specific PHY/Ethernet device driver settings. These setting
|
||||||
|
also require CONFIG_NET and CONFIG_LPC17_ETHERNET.
|
||||||
|
|
||||||
|
CONFIG_PHY_KS8721 - Selects Micrel KS8721 PHY
|
||||||
|
CONFIG_PHY_AUTONEG - Enable auto-negotion
|
||||||
|
CONFIG_PHY_SPEED100 - Select 100Mbit vs. 10Mbit speed.
|
||||||
|
CONFIG_PHY_FDUPLEX - Select full (vs. half) duplex
|
||||||
|
|
||||||
|
CONFIG_NET_NTXDESC - Configured number of Tx descriptors. Default: 18
|
||||||
|
CONFIG_NET_NRXDESC - Configured number of Rx descriptors. Default: 18
|
||||||
|
CONFIG_NET_PRIORITY - Ethernet interrupt priority. The is default is
|
||||||
|
the higest priority.
|
||||||
|
CONFIG_NET_WOL - Enable Wake-up on Lan (not fully implemented).
|
||||||
|
CONFIG_NET_REGDEBUG - Enabled low level register debug. Also needs
|
||||||
|
CONFIG_DEBUG.
|
||||||
|
CONFIG_NET_BROADCAST - Enable receipt of broadcast frames
|
||||||
|
CONFIG_NET_HASH - Enable receipt of near-perfect match frames.
|
||||||
|
CONFIG_NET_MULTICAST - Enable receipt of multicast (and unicast) frames.
|
||||||
|
Automatically set if CONFIG_NET_IGMP is selected.
|
||||||
|
|
||||||
LPC17xx USB Configuration
|
LPC17xx USB Configuration
|
||||||
|
|
||||||
CONFIG_LPC17_USBDEV_FRAME_INTERRUPT
|
CONFIG_LPC17_USBDEV_FRAME_INTERRUPT
|
||||||
|
|||||||
@@ -181,6 +181,30 @@ CONFIG_UART1_2STOP=0
|
|||||||
CONFIG_UART2_2STOP=0
|
CONFIG_UART2_2STOP=0
|
||||||
CONFIG_UART3_2STOP=0
|
CONFIG_UART3_2STOP=0
|
||||||
|
|
||||||
|
#
|
||||||
|
# LPC17xx specific PHY/Ethernet device driver settings
|
||||||
|
#
|
||||||
|
# CONFIG_PHY_KS8721 - Selects Micrel KS8721 PHY
|
||||||
|
# CONFIG_PHY_AUTONEG - Enable auto-negotion
|
||||||
|
# CONFIG_PHY_SPEED100 - Select 100Mbit vs. 10Mbit speed.
|
||||||
|
# CONFIG_PHY_FDUPLEX - Select full (vs. half) duplex
|
||||||
|
# CONFIG_NET_NTXDESC - Configured number of Tx descriptors. Default: 18
|
||||||
|
# CONFIG_NET_NRXDESC - Configured number of Rx descriptors. Default: 18
|
||||||
|
# CONFIG_NET_PRIORITY - Ethernet interrupt priority. The is default is
|
||||||
|
# the higest priority.
|
||||||
|
# CONFIG_NET_WOL - Enable Wake-up on Lan (not fully implemented).
|
||||||
|
# CONFIG_NET_REGDEBUG - Enabled low level register debug. Also needs
|
||||||
|
# CONFIG_DEBUG.
|
||||||
|
# CONFIG_NET_BROADCAST - Enable receipt of broadcast frames
|
||||||
|
# CONFIG_NET_HASH - Enable receipt of near-perfect match frames.
|
||||||
|
# CONFIG_NET_MULTICAST - Enable receipt of multicast (and unicast) frames.
|
||||||
|
# Automatically set if CONFIG_NET_IGMP is selected.
|
||||||
|
#
|
||||||
|
CONFIG_PHY_KS8721=y
|
||||||
|
CONFIG_PHY_AUTONEG=y
|
||||||
|
CONFIG_PHY_SPEED100=n
|
||||||
|
CONFIG_PHY_FDUPLEX=y
|
||||||
|
|
||||||
#
|
#
|
||||||
# General build options
|
# General build options
|
||||||
#
|
#
|
||||||
|
|||||||
@@ -181,6 +181,30 @@ CONFIG_UART1_2STOP=0
|
|||||||
CONFIG_UART2_2STOP=0
|
CONFIG_UART2_2STOP=0
|
||||||
CONFIG_UART3_2STOP=0
|
CONFIG_UART3_2STOP=0
|
||||||
|
|
||||||
|
#
|
||||||
|
# LPC17xx specific PHY/Ethernet device driver settings
|
||||||
|
#
|
||||||
|
# CONFIG_PHY_KS8721 - Selects Micrel KS8721 PHY
|
||||||
|
# CONFIG_PHY_AUTONEG - Enable auto-negotion
|
||||||
|
# CONFIG_PHY_SPEED100 - Select 100Mbit vs. 10Mbit speed.
|
||||||
|
# CONFIG_PHY_FDUPLEX - Select full (vs. half) duplex
|
||||||
|
# CONFIG_NET_NTXDESC - Configured number of Tx descriptors. Default: 18
|
||||||
|
# CONFIG_NET_NRXDESC - Configured number of Rx descriptors. Default: 18
|
||||||
|
# CONFIG_NET_PRIORITY - Ethernet interrupt priority. The is default is
|
||||||
|
# the higest priority.
|
||||||
|
# CONFIG_NET_WOL - Enable Wake-up on Lan (not fully implemented).
|
||||||
|
# CONFIG_NET_REGDEBUG - Enabled low level register debug. Also needs
|
||||||
|
# CONFIG_DEBUG.
|
||||||
|
# CONFIG_NET_BROADCAST - Enable receipt of broadcast frames
|
||||||
|
# CONFIG_NET_HASH - Enable receipt of near-perfect match frames.
|
||||||
|
# CONFIG_NET_MULTICAST - Enable receipt of multicast (and unicast) frames.
|
||||||
|
# Automatically set if CONFIG_NET_IGMP is selected.
|
||||||
|
#
|
||||||
|
CONFIG_PHY_KS8721=y
|
||||||
|
CONFIG_PHY_AUTONEG=y
|
||||||
|
CONFIG_PHY_SPEED100=n
|
||||||
|
CONFIG_PHY_FDUPLEX=y
|
||||||
|
|
||||||
#
|
#
|
||||||
# General build options
|
# General build options
|
||||||
#
|
#
|
||||||
|
|||||||
@@ -181,6 +181,30 @@ CONFIG_UART1_2STOP=0
|
|||||||
CONFIG_UART2_2STOP=0
|
CONFIG_UART2_2STOP=0
|
||||||
CONFIG_UART3_2STOP=0
|
CONFIG_UART3_2STOP=0
|
||||||
|
|
||||||
|
#
|
||||||
|
# LPC17xx specific PHY/Ethernet device driver settings
|
||||||
|
#
|
||||||
|
# CONFIG_PHY_KS8721 - Selects Micrel KS8721 PHY
|
||||||
|
# CONFIG_PHY_AUTONEG - Enable auto-negotion
|
||||||
|
# CONFIG_PHY_SPEED100 - Select 100Mbit vs. 10Mbit speed.
|
||||||
|
# CONFIG_PHY_FDUPLEX - Select full (vs. half) duplex
|
||||||
|
# CONFIG_NET_NTXDESC - Configured number of Tx descriptors. Default: 18
|
||||||
|
# CONFIG_NET_NRXDESC - Configured number of Rx descriptors. Default: 18
|
||||||
|
# CONFIG_NET_PRIORITY - Ethernet interrupt priority. The is default is
|
||||||
|
# the higest priority.
|
||||||
|
# CONFIG_NET_WOL - Enable Wake-up on Lan (not fully implemented).
|
||||||
|
# CONFIG_NET_REGDEBUG - Enabled low level register debug. Also needs
|
||||||
|
# CONFIG_DEBUG.
|
||||||
|
# CONFIG_NET_BROADCAST - Enable receipt of broadcast frames
|
||||||
|
# CONFIG_NET_HASH - Enable receipt of near-perfect match frames.
|
||||||
|
# CONFIG_NET_MULTICAST - Enable receipt of multicast (and unicast) frames.
|
||||||
|
# Automatically set if CONFIG_NET_IGMP is selected.
|
||||||
|
#
|
||||||
|
CONFIG_PHY_KS8721=y
|
||||||
|
CONFIG_PHY_AUTONEG=y
|
||||||
|
CONFIG_PHY_SPEED100=n
|
||||||
|
CONFIG_PHY_FDUPLEX=y
|
||||||
|
|
||||||
#
|
#
|
||||||
# General build options
|
# General build options
|
||||||
#
|
#
|
||||||
|
|||||||
@@ -181,6 +181,30 @@ CONFIG_UART1_2STOP=0
|
|||||||
CONFIG_UART2_2STOP=0
|
CONFIG_UART2_2STOP=0
|
||||||
CONFIG_UART3_2STOP=0
|
CONFIG_UART3_2STOP=0
|
||||||
|
|
||||||
|
#
|
||||||
|
# LPC17xx specific PHY/Ethernet device driver settings
|
||||||
|
#
|
||||||
|
# CONFIG_PHY_KS8721 - Selects Micrel KS8721 PHY
|
||||||
|
# CONFIG_PHY_AUTONEG - Enable auto-negotion
|
||||||
|
# CONFIG_PHY_SPEED100 - Select 100Mbit vs. 10Mbit speed.
|
||||||
|
# CONFIG_PHY_FDUPLEX - Select full (vs. half) duplex
|
||||||
|
# CONFIG_NET_NTXDESC - Configured number of Tx descriptors. Default: 18
|
||||||
|
# CONFIG_NET_NRXDESC - Configured number of Rx descriptors. Default: 18
|
||||||
|
# CONFIG_NET_PRIORITY - Ethernet interrupt priority. The is default is
|
||||||
|
# the higest priority.
|
||||||
|
# CONFIG_NET_WOL - Enable Wake-up on Lan (not fully implemented).
|
||||||
|
# CONFIG_NET_REGDEBUG - Enabled low level register debug. Also needs
|
||||||
|
# CONFIG_DEBUG.
|
||||||
|
# CONFIG_NET_BROADCAST - Enable receipt of broadcast frames
|
||||||
|
# CONFIG_NET_HASH - Enable receipt of near-perfect match frames.
|
||||||
|
# CONFIG_NET_MULTICAST - Enable receipt of multicast (and unicast) frames.
|
||||||
|
# Automatically set if CONFIG_NET_IGMP is selected.
|
||||||
|
#
|
||||||
|
CONFIG_PHY_KS8721=y
|
||||||
|
CONFIG_PHY_AUTONEG=y
|
||||||
|
CONFIG_PHY_SPEED100=n
|
||||||
|
CONFIG_PHY_FDUPLEX=y
|
||||||
|
|
||||||
#
|
#
|
||||||
# General build options
|
# General build options
|
||||||
#
|
#
|
||||||
|
|||||||
@@ -602,13 +602,26 @@ Olimex LPC1766-STK Configuration Options
|
|||||||
CONFIG_UARTn_2STOP - Two stop bits
|
CONFIG_UARTn_2STOP - Two stop bits
|
||||||
|
|
||||||
|
|
||||||
LPC17xx specific PHY/Ethernet device driver settings
|
LPC17xx specific PHY/Ethernet device driver settings. These setting
|
||||||
|
also require CONFIG_NET and CONFIG_LPC17_ETHERNET.
|
||||||
|
|
||||||
CONFIG_PHY_KS8721 - Selects Micrel KS8721 PHY
|
CONFIG_PHY_KS8721 - Selects Micrel KS8721 PHY
|
||||||
CONFIG_PHY_AUTONEG - Enable auto-negotion
|
CONFIG_PHY_AUTONEG - Enable auto-negotion
|
||||||
CONFIG_PHY_SPEED100 - Select 100Mbit vs. 10Mbit speed.
|
CONFIG_PHY_SPEED100 - Select 100Mbit vs. 10Mbit speed.
|
||||||
CONFIG_PHY_FDUPLEX - Select full (vs. half) duplex
|
CONFIG_PHY_FDUPLEX - Select full (vs. half) duplex
|
||||||
|
|
||||||
|
CONFIG_NET_NTXDESC - Configured number of Tx descriptors. Default: 18
|
||||||
|
CONFIG_NET_NRXDESC - Configured number of Rx descriptors. Default: 18
|
||||||
|
CONFIG_NET_PRIORITY - Ethernet interrupt priority. The is default is
|
||||||
|
the higest priority.
|
||||||
|
CONFIG_NET_WOL - Enable Wake-up on Lan (not fully implemented).
|
||||||
|
CONFIG_NET_REGDEBUG - Enabled low level register debug. Also needs
|
||||||
|
CONFIG_DEBUG.
|
||||||
|
CONFIG_NET_BROADCAST - Enable receipt of broadcast frames
|
||||||
|
CONFIG_NET_HASH - Enable receipt of near-perfect match frames.
|
||||||
|
CONFIG_NET_MULTICAST - Enable receipt of multicast (and unicast) frames.
|
||||||
|
Automatically set if CONFIG_NET_IGMP is selected.
|
||||||
|
|
||||||
LPC17xx USB Configuration
|
LPC17xx USB Configuration
|
||||||
|
|
||||||
CONFIG_LPC17_USBDEV_FRAME_INTERRUPT
|
CONFIG_LPC17_USBDEV_FRAME_INTERRUPT
|
||||||
|
|||||||
@@ -188,6 +188,17 @@ CONFIG_UART3_2STOP=0
|
|||||||
# CONFIG_PHY_AUTONEG - Enable auto-negotion
|
# CONFIG_PHY_AUTONEG - Enable auto-negotion
|
||||||
# CONFIG_PHY_SPEED100 - Select 100Mbit vs. 10Mbit speed.
|
# CONFIG_PHY_SPEED100 - Select 100Mbit vs. 10Mbit speed.
|
||||||
# CONFIG_PHY_FDUPLEX - Select full (vs. half) duplex
|
# CONFIG_PHY_FDUPLEX - Select full (vs. half) duplex
|
||||||
|
# CONFIG_NET_NTXDESC - Configured number of Tx descriptors. Default: 18
|
||||||
|
# CONFIG_NET_NRXDESC - Configured number of Rx descriptors. Default: 18
|
||||||
|
# CONFIG_NET_PRIORITY - Ethernet interrupt priority. The is default is
|
||||||
|
# the higest priority.
|
||||||
|
# CONFIG_NET_WOL - Enable Wake-up on Lan (not fully implemented).
|
||||||
|
# CONFIG_NET_REGDEBUG - Enabled low level register debug. Also needs
|
||||||
|
# CONFIG_DEBUG.
|
||||||
|
# CONFIG_NET_BROADCAST - Enable receipt of broadcast frames
|
||||||
|
# CONFIG_NET_HASH - Enable receipt of near-perfect match frames.
|
||||||
|
# CONFIG_NET_MULTICAST - Enable receipt of multicast (and unicast) frames.
|
||||||
|
# Automatically set if CONFIG_NET_IGMP is selected.
|
||||||
#
|
#
|
||||||
CONFIG_PHY_KS8721=y
|
CONFIG_PHY_KS8721=y
|
||||||
CONFIG_PHY_AUTONEG=y
|
CONFIG_PHY_AUTONEG=y
|
||||||
|
|||||||
@@ -188,6 +188,17 @@ CONFIG_UART3_2STOP=0
|
|||||||
# CONFIG_PHY_AUTONEG - Enable auto-negotion
|
# CONFIG_PHY_AUTONEG - Enable auto-negotion
|
||||||
# CONFIG_PHY_SPEED100 - Select 100Mbit vs. 10Mbit speed.
|
# CONFIG_PHY_SPEED100 - Select 100Mbit vs. 10Mbit speed.
|
||||||
# CONFIG_PHY_FDUPLEX - Select full (vs. half) duplex
|
# CONFIG_PHY_FDUPLEX - Select full (vs. half) duplex
|
||||||
|
# CONFIG_NET_NTXDESC - Configured number of Tx descriptors. Default: 18
|
||||||
|
# CONFIG_NET_NRXDESC - Configured number of Rx descriptors. Default: 18
|
||||||
|
# CONFIG_NET_PRIORITY - Ethernet interrupt priority. The is default is
|
||||||
|
# the higest priority.
|
||||||
|
# CONFIG_NET_WOL - Enable Wake-up on Lan (not fully implemented).
|
||||||
|
# CONFIG_NET_REGDEBUG - Enabled low level register debug. Also needs
|
||||||
|
# CONFIG_DEBUG.
|
||||||
|
# CONFIG_NET_BROADCAST - Enable receipt of broadcast frames
|
||||||
|
# CONFIG_NET_HASH - Enable receipt of near-perfect match frames.
|
||||||
|
# CONFIG_NET_MULTICAST - Enable receipt of multicast (and unicast) frames.
|
||||||
|
# Automatically set if CONFIG_NET_IGMP is selected.
|
||||||
#
|
#
|
||||||
CONFIG_PHY_KS8721=y
|
CONFIG_PHY_KS8721=y
|
||||||
CONFIG_PHY_AUTONEG=y
|
CONFIG_PHY_AUTONEG=y
|
||||||
|
|||||||
@@ -188,6 +188,17 @@ CONFIG_UART3_2STOP=0
|
|||||||
# CONFIG_PHY_AUTONEG - Enable auto-negotion
|
# CONFIG_PHY_AUTONEG - Enable auto-negotion
|
||||||
# CONFIG_PHY_SPEED100 - Select 100Mbit vs. 10Mbit speed.
|
# CONFIG_PHY_SPEED100 - Select 100Mbit vs. 10Mbit speed.
|
||||||
# CONFIG_PHY_FDUPLEX - Select full (vs. half) duplex
|
# CONFIG_PHY_FDUPLEX - Select full (vs. half) duplex
|
||||||
|
# CONFIG_NET_NTXDESC - Configured number of Tx descriptors. Default: 18
|
||||||
|
# CONFIG_NET_NRXDESC - Configured number of Rx descriptors. Default: 18
|
||||||
|
# CONFIG_NET_PRIORITY - Ethernet interrupt priority. The is default is
|
||||||
|
# the higest priority.
|
||||||
|
# CONFIG_NET_WOL - Enable Wake-up on Lan (not fully implemented).
|
||||||
|
# CONFIG_NET_REGDEBUG - Enabled low level register debug. Also needs
|
||||||
|
# CONFIG_DEBUG.
|
||||||
|
# CONFIG_NET_BROADCAST - Enable receipt of broadcast frames
|
||||||
|
# CONFIG_NET_HASH - Enable receipt of near-perfect match frames.
|
||||||
|
# CONFIG_NET_MULTICAST - Enable receipt of multicast (and unicast) frames.
|
||||||
|
# Automatically set if CONFIG_NET_IGMP is selected.
|
||||||
#
|
#
|
||||||
CONFIG_PHY_KS8721=y
|
CONFIG_PHY_KS8721=y
|
||||||
CONFIG_PHY_AUTONEG=y
|
CONFIG_PHY_AUTONEG=y
|
||||||
|
|||||||
@@ -188,6 +188,17 @@ CONFIG_UART3_2STOP=0
|
|||||||
# CONFIG_PHY_AUTONEG - Enable auto-negotion
|
# CONFIG_PHY_AUTONEG - Enable auto-negotion
|
||||||
# CONFIG_PHY_SPEED100 - Select 100Mbit vs. 10Mbit speed.
|
# CONFIG_PHY_SPEED100 - Select 100Mbit vs. 10Mbit speed.
|
||||||
# CONFIG_PHY_FDUPLEX - Select full (vs. half) duplex
|
# CONFIG_PHY_FDUPLEX - Select full (vs. half) duplex
|
||||||
|
# CONFIG_NET_NTXDESC - Configured number of Tx descriptors. Default: 18
|
||||||
|
# CONFIG_NET_NRXDESC - Configured number of Rx descriptors. Default: 18
|
||||||
|
# CONFIG_NET_PRIORITY - Ethernet interrupt priority. The is default is
|
||||||
|
# the higest priority.
|
||||||
|
# CONFIG_NET_WOL - Enable Wake-up on Lan (not fully implemented).
|
||||||
|
# CONFIG_NET_REGDEBUG - Enabled low level register debug. Also needs
|
||||||
|
# CONFIG_DEBUG.
|
||||||
|
# CONFIG_NET_BROADCAST - Enable receipt of broadcast frames
|
||||||
|
# CONFIG_NET_HASH - Enable receipt of near-perfect match frames.
|
||||||
|
# CONFIG_NET_MULTICAST - Enable receipt of multicast (and unicast) frames.
|
||||||
|
# Automatically set if CONFIG_NET_IGMP is selected.
|
||||||
#
|
#
|
||||||
CONFIG_PHY_KS8721=y
|
CONFIG_PHY_KS8721=y
|
||||||
CONFIG_PHY_AUTONEG=y
|
CONFIG_PHY_AUTONEG=y
|
||||||
|
|||||||
@@ -188,6 +188,17 @@ CONFIG_UART3_2STOP=0
|
|||||||
# CONFIG_PHY_AUTONEG - Enable auto-negotion
|
# CONFIG_PHY_AUTONEG - Enable auto-negotion
|
||||||
# CONFIG_PHY_SPEED100 - Select 100Mbit vs. 10Mbit speed.
|
# CONFIG_PHY_SPEED100 - Select 100Mbit vs. 10Mbit speed.
|
||||||
# CONFIG_PHY_FDUPLEX - Select full (vs. half) duplex
|
# CONFIG_PHY_FDUPLEX - Select full (vs. half) duplex
|
||||||
|
# CONFIG_NET_NTXDESC - Configured number of Tx descriptors. Default: 18
|
||||||
|
# CONFIG_NET_NRXDESC - Configured number of Rx descriptors. Default: 18
|
||||||
|
# CONFIG_NET_PRIORITY - Ethernet interrupt priority. The is default is
|
||||||
|
# the higest priority.
|
||||||
|
# CONFIG_NET_WOL - Enable Wake-up on Lan (not fully implemented).
|
||||||
|
# CONFIG_NET_REGDEBUG - Enabled low level register debug. Also needs
|
||||||
|
# CONFIG_DEBUG.
|
||||||
|
# CONFIG_NET_BROADCAST - Enable receipt of broadcast frames
|
||||||
|
# CONFIG_NET_HASH - Enable receipt of near-perfect match frames.
|
||||||
|
# CONFIG_NET_MULTICAST - Enable receipt of multicast (and unicast) frames.
|
||||||
|
# Automatically set if CONFIG_NET_IGMP is selected.
|
||||||
#
|
#
|
||||||
CONFIG_PHY_KS8721=y
|
CONFIG_PHY_KS8721=y
|
||||||
CONFIG_PHY_AUTONEG=y
|
CONFIG_PHY_AUTONEG=y
|
||||||
|
|||||||
Reference in New Issue
Block a user