mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-02 16:44:10 +08:00
18af77c50f
The changes made in eccd540 is enough for xilinx_emaclite to run without problem on 64-bit systems. I have tested it on a Xilinx FPGA with RV64 softcore. The architecture limitation in Kconfig seems no longer necessary. A small change is included to print address with %lx instead of casting to int and print with %x. Signed-off-by: Gary Guo <gary@garyguo.net> Signed-off-by: David S. Miller <davem@davemloft.net>
40 lines
1.1 KiB
Plaintext
40 lines
1.1 KiB
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# Xilink device configuration
|
|
#
|
|
|
|
config NET_VENDOR_XILINX
|
|
bool "Xilinx devices"
|
|
default y
|
|
help
|
|
If you have a network (Ethernet) card belonging to this class, say Y.
|
|
|
|
Note that the answer to this question doesn't directly affect the
|
|
kernel: saying N will just cause the configurator to skip all
|
|
the questions about Xilinx devices. If you say Y, you will be asked
|
|
for your specific card in the following questions.
|
|
|
|
if NET_VENDOR_XILINX
|
|
|
|
config XILINX_EMACLITE
|
|
tristate "Xilinx 10/100 Ethernet Lite support"
|
|
select PHYLIB
|
|
help
|
|
This driver supports the 10/100 Ethernet Lite from Xilinx.
|
|
|
|
config XILINX_AXI_EMAC
|
|
tristate "Xilinx 10/100/1000 AXI Ethernet support"
|
|
select PHYLINK
|
|
help
|
|
This driver supports the 10/100/1000 Ethernet from Xilinx for the
|
|
AXI bus interface used in Xilinx Virtex FPGAs and Soc's.
|
|
|
|
config XILINX_LL_TEMAC
|
|
tristate "Xilinx LL TEMAC (LocalLink Tri-mode Ethernet MAC) driver"
|
|
select PHYLIB
|
|
help
|
|
This driver supports the Xilinx 10/100/1000 LocalLink TEMAC
|
|
core used in Xilinx Spartan and Virtex FPGAs
|
|
|
|
endif # NET_VENDOR_XILINX
|