diff options
author | Kumar Gala <galak@kernel.crashing.org> | 2010-12-15 04:04:56 -0600 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2011-01-14 01:32:18 -0600 |
commit | 70ea7f82ed166a96869abf11d6299cb55b49c200 (patch) | |
tree | aa597bab14637fdd6d14dfe31a11a4944f00426e /arch/powerpc/cpu/mpc85xx/Makefile | |
parent | 877a26112db880ecb978a6c9ad1f230cd838fe58 (diff) | |
download | u-boot-imx-70ea7f82ed166a96869abf11d6299cb55b49c200.zip u-boot-imx-70ea7f82ed166a96869abf11d6299cb55b49c200.tar.gz u-boot-imx-70ea7f82ed166a96869abf11d6299cb55b49c200.tar.bz2 |
powerpc/85xx: Add is_serdes_configured() support for P1021 SERDES
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.
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/cpu/mpc85xx/Makefile')
-rw-r--r-- | arch/powerpc/cpu/mpc85xx/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/powerpc/cpu/mpc85xx/Makefile b/arch/powerpc/cpu/mpc85xx/Makefile index dbb53c8..af7bc09 100644 --- a/arch/powerpc/cpu/mpc85xx/Makefile +++ b/arch/powerpc/cpu/mpc85xx/Makefile @@ -83,7 +83,11 @@ COBJS-$(CONFIG_MPC8548) += mpc8548_serdes.o COBJS-$(CONFIG_MPC8568) += mpc8568_serdes.o COBJS-$(CONFIG_MPC8569) += mpc8569_serdes.o COBJS-$(CONFIG_MPC8572) += mpc8572_serdes.o +COBJS-$(CONFIG_P1011) += p1021_serdes.o +COBJS-$(CONFIG_P1012) += p1021_serdes.o COBJS-$(CONFIG_P1013) += p1013_serdes.o +COBJS-$(CONFIG_P1020) += p1021_serdes.o +COBJS-$(CONFIG_P1021) += p1021_serdes.o COBJS-$(CONFIG_P1022) += p1022_serdes.o COBJS-$(CONFIG_P2010) += p2020_serdes.o COBJS-$(CONFIG_P2020) += p2020_serdes.o |