diff options
author | Kumar Gala <galak@kernel.crashing.org> | 2008-01-17 16:48:33 -0600 |
---|---|---|
committer | Andrew Fleming-AFLEMING <afleming@freescale.com> | 2008-03-26 11:43:03 -0500 |
commit | ec2b74ffd36f02c6123725e7c2533dd2deaf4b64 (patch) | |
tree | 0eddb24adce38d018c7d03a6ffa462dd6ddb77e7 /cpu/mpc85xx/Makefile | |
parent | f69766e4b5d47ecd3aa58677a8da875694f364f2 (diff) | |
download | u-boot-imx-ec2b74ffd36f02c6123725e7c2533dd2deaf4b64.zip u-boot-imx-ec2b74ffd36f02c6123725e7c2533dd2deaf4b64.tar.gz u-boot-imx-ec2b74ffd36f02c6123725e7c2533dd2deaf4b64.tar.bz2 |
85xx: Added support for multicore boot mechanism
Added the cpu command that provides a generic mechanism to get status,
reset, and release secondary cores in multicore processors.
Added support for using the ePAPR defined spin-table mechanism on 85xx.
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'cpu/mpc85xx/Makefile')
-rw-r--r-- | cpu/mpc85xx/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cpu/mpc85xx/Makefile b/cpu/mpc85xx/Makefile index 2205dca..adbc585 100644 --- a/cpu/mpc85xx/Makefile +++ b/cpu/mpc85xx/Makefile @@ -29,6 +29,9 @@ include $(TOPDIR)/config.mk LIB = $(obj)lib$(CPU).a START = start.o resetvec.o +SOBJS-$(CONFIG_MP) += release.o +SOBJS = $(SOBJS-y) +COBJS-$(CONFIG_MP) += mp.o COBJS-$(CONFIG_OF_LIBFDT) += fdt.o COBJS = traps.o cpu.o cpu_init.o speed.o interrupts.o tlb.o \ pci.o serial_scc.o commproc.o ether_fcc.o spd_sdram.o qe_io.o \ |