blob: bec86c16c1ffbe6275d4ec39dcf3a07d16786dce [file] [log] [blame]
Kumar Galac916d7c2011-04-13 08:37:44 -05001#
2# Copyright 2009-2011 Freescale Semiconductor, Inc.
3#
Wolfgang Denk1a459662013-07-08 09:37:19 +02004# SPDX-License-Identifier: GPL-2.0+
Kumar Galac916d7c2011-04-13 08:37:44 -05005#
6
Kumar Galac916d7c2011-04-13 08:37:44 -05007ifdef CONFIG_FMAN_ENET
Masahiro Yamadae32459e2013-10-17 17:34:54 +09008obj-y += dtsec.o
9obj-y += eth.o
10obj-y += fm.o
11obj-y += init.o
12obj-y += tgec.o
13obj-y += tgec_phy.o
Kumar Galac916d7c2011-04-13 08:37:44 -050014
Roy Zang111fd192012-10-08 07:44:21 +000015# Soc have FMAN v3 with mEMAC
Masahiro Yamadae32459e2013-10-17 17:34:54 +090016obj-$(CONFIG_SYS_FMAN_V3) += memac_phy.o
17obj-$(CONFIG_SYS_FMAN_V3) += memac.o
Roy Zang111fd192012-10-08 07:44:21 +000018
Kumar Galac916d7c2011-04-13 08:37:44 -050019# SoC specific SERDES support
Masahiro Yamadae32459e2013-10-17 17:34:54 +090020obj-$(CONFIG_P1017) += p1023.o
21obj-$(CONFIG_P1023) += p1023.o
Kumar Galac916d7c2011-04-13 08:37:44 -050022# The P204x, P304x, and P5020 are the same
Masahiro Yamadae32459e2013-10-17 17:34:54 +090023obj-$(CONFIG_PPC_P2041) += p5020.o
24obj-$(CONFIG_PPC_P3041) += p5020.o
25obj-$(CONFIG_PPC_P4080) += p4080.o
26obj-$(CONFIG_PPC_P5020) += p5020.o
27obj-$(CONFIG_PPC_P5040) += p5040.o
28obj-$(CONFIG_PPC_T1040) += t1040.o
29obj-$(CONFIG_PPC_T4240) += t4240.o
30obj-$(CONFIG_PPC_T4160) += t4240.o
31obj-$(CONFIG_PPC_B4420) += b4860.o
32obj-$(CONFIG_PPC_B4860) += b4860.o
Kumar Galac916d7c2011-04-13 08:37:44 -050033endif