2018-05-06 17:58:06 -04:00
|
|
|
# SPDX-License-Identifier: GPL-2.0+
|
2016-03-11 22:06:53 -07:00
|
|
|
#
|
|
|
|
# Copyright (c) 2016 Google, Inc
|
|
|
|
|
2017-01-16 07:03:46 -07:00
|
|
|
ifdef CONFIG_HAVE_MRC
|
2019-04-25 21:58:53 -06:00
|
|
|
obj-$(CONFIG_$(SPL_TPL_)X86_16BIT_INIT) += car.o
|
2019-04-25 21:59:05 -06:00
|
|
|
obj-$(CONFIG_$(SPL_TPL_)X86_32BIT_INIT) += me_status.o
|
|
|
|
obj-$(CONFIG_$(SPL_TPL_)X86_32BIT_INIT) += report_platform.o
|
|
|
|
obj-$(CONFIG_$(SPL_TPL_)X86_32BIT_INIT) += mrc.o
|
2017-01-16 07:03:46 -07:00
|
|
|
endif
|
2019-12-06 21:42:25 -07:00
|
|
|
|
|
|
|
ifdef CONFIG_INTEL_CAR_CQOS
|
|
|
|
obj-$(CONFIG_TPL_BUILD) += car2.o
|
|
|
|
ifndef CONFIG_SPL_BUILD
|
|
|
|
obj-y += car2_uninit.o
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2016-03-11 22:06:58 -07:00
|
|
|
obj-y += cpu.o
|
2019-12-06 21:41:43 -07:00
|
|
|
obj-y += fast_spi.o
|
2016-03-11 22:06:57 -07:00
|
|
|
obj-y += lpc.o
|
2019-12-06 21:42:52 -07:00
|
|
|
obj-y += lpss.o
|
2018-06-12 08:36:24 -07:00
|
|
|
ifndef CONFIG_TARGET_EFI_APP
|
2019-04-25 21:59:05 -06:00
|
|
|
obj-$(CONFIG_$(SPL_TPL_)X86_32BIT_INIT) += microcode.o
|
|
|
|
ifndef CONFIG_$(SPL_)X86_64
|
2016-03-11 22:06:54 -07:00
|
|
|
obj-y += microcode.o
|
|
|
|
endif
|
2019-04-25 21:59:05 -06:00
|
|
|
endif
|
2016-03-16 07:44:36 -06:00
|
|
|
obj-y += pch.o
|
2020-02-03 14:06:45 +01:00
|
|
|
obj-$(CONFIG_HAVE_ITSS) += itss.o
|
2020-02-04 09:04:56 +01:00
|
|
|
obj-$(CONFIG_HAVE_P2SB) += p2sb.o
|
2019-04-25 21:58:56 -06:00
|
|
|
|
|
|
|
ifdef CONFIG_SPL
|
|
|
|
ifndef CONFIG_SPL_BUILD
|
2020-04-30 21:21:43 -06:00
|
|
|
ifndef CONFIG_SYS_COREBOOT
|
2019-04-25 21:58:56 -06:00
|
|
|
obj-y += cpu_from_spl.o
|
|
|
|
endif
|
|
|
|
endif
|
2020-04-30 21:21:43 -06:00
|
|
|
endif
|