summaryrefslogtreecommitdiff
path: root/arch/powerpc/cpu/mpc86xx/Makefile
diff options
context:
space:
mode:
authorKumar Gala <galak@kernel.crashing.org>2010-12-15 04:52:48 -0600
committerKumar Gala <galak@kernel.crashing.org>2011-01-14 01:32:18 -0600
commitaf04247426e4e7ee5d0561a1bd34855665e72b31 (patch)
tree3c321e668b8865eb17d6051c8634b7456c45059d /arch/powerpc/cpu/mpc86xx/Makefile
parentc5780a6fe9e3f0a0f33d356d5047537ed113143c (diff)
downloadu-boot-imx-af04247426e4e7ee5d0561a1bd34855665e72b31.zip
u-boot-imx-af04247426e4e7ee5d0561a1bd34855665e72b31.tar.gz
u-boot-imx-af04247426e4e7ee5d0561a1bd34855665e72b31.tar.bz2
powerpc/86xx: Add SERDES support on MPC8641 & MPC8610
Add the ability to determine if a given IP block connected on SERDES is configured. This is useful for things like PCIe and SRIO since they are only ever connected on SERDES. This mimics the code we have in place for the 85xx platforms. Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/cpu/mpc86xx/Makefile')
-rw-r--r--arch/powerpc/cpu/mpc86xx/Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/powerpc/cpu/mpc86xx/Makefile b/arch/powerpc/cpu/mpc86xx/Makefile
index 5b7d80a..b4ef286 100644
--- a/arch/powerpc/cpu/mpc86xx/Makefile
+++ b/arch/powerpc/cpu/mpc86xx/Makefile
@@ -42,6 +42,8 @@ COBJS-$(CONFIG_MPC8641) += ddr-8641.o
COBJS-$(CONFIG_OF_LIBFDT) += fdt.o
COBJS-y += interrupts.o
COBJS-$(CONFIG_MP) += mp.o
+COBJS-$(CONFIG_MPC8610) += mpc8610_serdes.o
+COBJS-$(CONFIG_MPC8641) += mpc8641_serdes.o
COBJS-y += speed.o
SRCS := $(START:.o=.S) $(SOBJS-y:.o=.S) $(COBJS-y:.o=.c)