1# SPDX-License-Identifier: GPL-2.0+ 2# 3# Copyright 2019 Google LLC 4 5obj-$(CONFIG_SPL_BUILD) += cpu_spl.o 6obj-$(CONFIG_SPL_BUILD) += spl.o 7obj-$(CONFIG_SPL_BUILD) += systemagent.o 8obj-y += cpu_common.o 9 10ifndef CONFIG_TPL_BUILD 11obj-y += cpu.o 12obj-y += punit.o 13obj-y += fsp_bindings.o 14ifdef CONFIG_SPL_BUILD 15obj-y += fsp_m.o 16endif 17endif 18ifndef CONFIG_SPL_BUILD 19obj-y += acpi.o 20obj-y += fsp_s.o 21endif 22 23obj-y += hostbridge.o 24obj-y += lpc.o 25obj-y += pch.o 26obj-y += pmc.o 27obj-y += uart.o 28