mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-03 00:54:09 +08:00
c20b909be9
This patch adds ethernet support to the LPC32xx ARM architecture. The actual driver in drivers/net is contained in a separate patch. Signed-off-by: Roland Stigge <stigge@antcom.de> Acked-by: Arnd Bergmann <arnd@arndb.de>
59 lines
1.5 KiB
Plaintext
59 lines
1.5 KiB
Plaintext
if ARCH_LPC32XX
|
|
|
|
menu "Individual UART enable selections"
|
|
|
|
config ARCH_LPC32XX_UART3_SELECT
|
|
bool "Add support for standard UART3"
|
|
help
|
|
Adds support for standard UART 3 when the 8250 serial support
|
|
is enabled.
|
|
|
|
config ARCH_LPC32XX_UART4_SELECT
|
|
bool "Add support for standard UART4"
|
|
help
|
|
Adds support for standard UART 4 when the 8250 serial support
|
|
is enabled.
|
|
|
|
config ARCH_LPC32XX_UART5_SELECT
|
|
bool "Add support for standard UART5"
|
|
default y
|
|
help
|
|
Adds support for standard UART 5 when the 8250 serial support
|
|
is enabled.
|
|
|
|
config ARCH_LPC32XX_UART6_SELECT
|
|
bool "Add support for standard UART6"
|
|
help
|
|
Adds support for standard UART 6 when the 8250 serial support
|
|
is enabled.
|
|
|
|
endmenu
|
|
|
|
menu "LPC32XX chip components"
|
|
|
|
config ARCH_LPC32XX_IRAM_FOR_NET
|
|
bool "Use IRAM for network buffers"
|
|
default y
|
|
help
|
|
Say Y here to use the LPC internal fast IRAM (i.e. 256KB SRAM) as
|
|
network buffer. If the total combined required buffer sizes is
|
|
larger than the size of IRAM, then SDRAM will be used instead.
|
|
|
|
This can be enabled safely if the IRAM is not intended for other
|
|
uses.
|
|
|
|
config ARCH_LPC32XX_MII_SUPPORT
|
|
bool "Check to enable MII support or leave disabled for RMII support"
|
|
help
|
|
Say Y here to enable MII support, or N for RMII support. Regardless of
|
|
which support is selected, the ethernet interface driver needs to be
|
|
selected in the device driver networking section.
|
|
|
|
The PHY3250 reference board uses RMII, so users of this board should
|
|
say N.
|
|
|
|
endmenu
|
|
|
|
endif
|
|
|