diff options
Diffstat (limited to 'roms/u-boot/arch/x86/cpu/broadwell/Makefile')
-rw-r--r-- | roms/u-boot/arch/x86/cpu/broadwell/Makefile | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/roms/u-boot/arch/x86/cpu/broadwell/Makefile b/roms/u-boot/arch/x86/cpu/broadwell/Makefile new file mode 100644 index 000000000..52d56c65b --- /dev/null +++ b/roms/u-boot/arch/x86/cpu/broadwell/Makefile @@ -0,0 +1,33 @@ +# SPDX-License-Identifier: GPL-2.0+ +# +# Copyright (c) 2016 Google, Inc + +obj-y += adsp.o +obj-$(CONFIG_$(SPL_TPL_)X86_16BIT_INIT) += cpu.o +obj-$(CONFIG_$(SPL_TPL_)X86_32BIT_INIT) += cpu_full.o + +ifdef CONFIG_SPL +ifndef CONFIG_SPL_BUILD +obj-y += cpu_from_spl.o +obj-y += cpu_full.o +obj-y += refcode.o +endif +ifndef CONFIG_SPL_BUILD +# obj-y += cpu_from_spl.o +endif +endif + +ifeq ($(CONFIG_$(SPL_TPL_)X86_32BIT_INIT),) +#obj-y += cpu_from_spl.o +endif + +obj-y += iobp.o +obj-y += lpc.o +obj-y += me.o +obj-y += northbridge.o +obj-y += pch.o +obj-y += pinctrl_broadwell.o +obj-y += power_state.o +obj-$(CONFIG_$(SPL_TPL_)X86_32BIT_INIT) += refcode.o +obj-y += sata.o +obj-$(CONFIG_$(SPL_TPL_)X86_32BIT_INIT) += sdram.o |