mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-12-24 10:52:13 +01:00
A large number of network drivers cannot build without access to some platform specific header files. Express those requirements in Kconfig as well. This covers the QUICC engine drivers as that is networking driver infrastructure. Signed-off-by: Tom Rini <trini@konsulko.com>
30 lines
663 B
Plaintext
30 lines
663 B
Plaintext
menuconfig FSL_PFE
|
|
bool "NXP PFE Ethernet driver"
|
|
depends on ARCH_LS1012A
|
|
help
|
|
This driver provides support for NXP's Packet Forwarding Engine.
|
|
|
|
if FSL_PFE
|
|
|
|
config SYS_FSL_PFE_ADDR
|
|
hex "PFE base address"
|
|
default 0x04000000
|
|
|
|
config SYS_FSL_PFE_SPI_BUS
|
|
int "Value of SPI flash bus for PFE firmware"
|
|
default SF_DEFAULT_BUS
|
|
|
|
config SYS_FSL_PFE_SPI_CS
|
|
int "Value of SPI flash chip select for PFE firmware"
|
|
default SF_DEFAULT_CS
|
|
|
|
config SYS_FSL_PFE_SPI_MAX_HZ
|
|
int "Value of SPI flash max frequency for PFE firmware"
|
|
default SF_DEFAULT_SPEED
|
|
|
|
config SYS_FSL_PFE_SPI_MODE
|
|
hex "Value of SPI flash work mode for PFE firmware"
|
|
default SF_DEFAULT_MODE
|
|
|
|
endif
|