bd44300d1a
The FTGMAC100 device is an Ethernet controller with DMA function that can be found on Aspeed SoCs (which include NCSI). It is fully compliant with IEEE 802.3 specification for 10/100 Mbps Ethernet and IEEE 802.3z specification for 1000 Mbps Ethernet and includes Reduced Media Independent Interface (RMII) and Reduced Gigabit Media Independent Interface (RGMII) interfaces. It adopts an AHB bus interface and integrates a link list DMA engine with direct M-Bus accesses for transmitting and receiving packets. It has independent TX/RX fifos, supports half and full duplex (1000 Mbps mode only supports full duplex), flow control for full duplex and backpressure for half duplex. The FTGMAC100 also implements IP, TCP, UDP checksum offloads and supports IEEE 802.1Q VLAN tag insertion and removal. It offers high-priority transmit queue for QoS and CoS applications This model is backed with a RealTek 8211E PHY which is the chip found on the AST2500 EVB. It is complete enough to satisfy two different Linux drivers and a U-Boot driver. Not supported features are : - IEEE 802.1Q VLAN - High Priority Transmit Queue - Wake-On-LAN functions The code is based on the Coldfire Fast Ethernet Controller model. Signed-off-by: Cédric Le Goater <clg@kaod.org> Signed-off-by: Jason Wang <jasowang@redhat.com>
47 lines
1.8 KiB
Makefile
47 lines
1.8 KiB
Makefile
common-obj-$(CONFIG_DP8393X) += dp8393x.o
|
|
common-obj-$(CONFIG_XEN) += xen_nic.o
|
|
|
|
# PCI network cards
|
|
common-obj-$(CONFIG_NE2000_PCI) += ne2000.o
|
|
common-obj-$(CONFIG_EEPRO100_PCI) += eepro100.o
|
|
common-obj-$(CONFIG_PCNET_PCI) += pcnet-pci.o
|
|
common-obj-$(CONFIG_PCNET_COMMON) += pcnet.o
|
|
common-obj-$(CONFIG_E1000_PCI) += e1000.o e1000x_common.o
|
|
common-obj-$(CONFIG_E1000E_PCI) += net_tx_pkt.o net_rx_pkt.o
|
|
common-obj-$(CONFIG_E1000E_PCI) += e1000e.o e1000e_core.o e1000x_common.o
|
|
common-obj-$(CONFIG_RTL8139_PCI) += rtl8139.o
|
|
common-obj-$(CONFIG_VMXNET3_PCI) += net_tx_pkt.o net_rx_pkt.o
|
|
common-obj-$(CONFIG_VMXNET3_PCI) += vmxnet3.o
|
|
|
|
common-obj-$(CONFIG_SMC91C111) += smc91c111.o
|
|
common-obj-$(CONFIG_LAN9118) += lan9118.o
|
|
common-obj-$(CONFIG_NE2000_ISA) += ne2000-isa.o
|
|
common-obj-$(CONFIG_OPENCORES_ETH) += opencores_eth.o
|
|
common-obj-$(CONFIG_XGMAC) += xgmac.o
|
|
common-obj-$(CONFIG_MIPSNET) += mipsnet.o
|
|
common-obj-$(CONFIG_XILINX_AXI) += xilinx_axienet.o
|
|
common-obj-$(CONFIG_ALLWINNER_EMAC) += allwinner_emac.o
|
|
common-obj-$(CONFIG_IMX_FEC) += imx_fec.o
|
|
|
|
common-obj-$(CONFIG_CADENCE) += cadence_gem.o
|
|
common-obj-$(CONFIG_STELLARIS_ENET) += stellaris_enet.o
|
|
common-obj-$(CONFIG_LANCE) += lance.o
|
|
common-obj-$(CONFIG_FTGMAC100) += ftgmac100.o
|
|
|
|
obj-$(CONFIG_ETRAXFS) += etraxfs_eth.o
|
|
obj-$(CONFIG_COLDFIRE) += mcf_fec.o
|
|
obj-$(CONFIG_MILKYMIST) += milkymist-minimac2.o
|
|
obj-$(CONFIG_PSERIES) += spapr_llan.o
|
|
obj-$(CONFIG_XILINX_ETHLITE) += xilinx_ethlite.o
|
|
|
|
obj-$(CONFIG_VIRTIO) += virtio-net.o
|
|
obj-y += vhost_net.o
|
|
|
|
obj-$(CONFIG_ETSEC) += fsl_etsec/etsec.o fsl_etsec/registers.o \
|
|
fsl_etsec/rings.o fsl_etsec/miim.o
|
|
|
|
common-obj-$(CONFIG_ROCKER) += rocker/rocker.o rocker/rocker_fp.o \
|
|
rocker/rocker_desc.o rocker/rocker_world.o \
|
|
rocker/rocker_of_dpa.o
|
|
obj-$(call lnot,$(CONFIG_ROCKER)) += rocker/qmp-norocker.o
|