xref: /u-boot-v2022.01-rc1/arch/x86/cpu/intel_common/Makefile
  • Home
  • Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
  • current directory
1# SPDX-License-Identifier: GPL-2.0+
2#
3# Copyright (c) 2016 Google, Inc
4
5obj-$(CONFIG_INTEL_ACPIGEN) += acpi.o
6
7ifdef CONFIG_HAVE_MRC
8obj-$(CONFIG_$(SPL_TPL_)X86_16BIT_INIT) += car.o
9obj-$(CONFIG_$(SPL_TPL_)X86_32BIT_INIT) += me_status.o
10obj-$(CONFIG_$(SPL_TPL_)X86_32BIT_INIT) += report_platform.o
11obj-$(CONFIG_$(SPL_TPL_)X86_32BIT_INIT) += mrc.o
12endif
13
14ifndef CONFIG_SPL_BUILD
15obj-$(CONFIG_INTEL_GMA_ACPI) += intel_opregion.o
16endif
17
18ifdef CONFIG_INTEL_CAR_CQOS
19obj-$(CONFIG_TPL_BUILD) += car2.o
20ifndef CONFIG_SPL_BUILD
21obj-y += car2_uninit.o
22endif
23endif
24
25obj-y += cpu.o
26obj-y += fast_spi.o
27obj-y += lpc.o
28obj-y += lpss.o
29obj-$(CONFIG_$(SPL_)INTEL_GENERIC_WIFI) += generic_wifi.o
30ifndef CONFIG_TARGET_EFI_APP
31obj-$(CONFIG_$(SPL_TPL_)X86_32BIT_INIT) += microcode.o
32ifndef CONFIG_$(SPL_)X86_64
33obj-y += microcode.o
34endif
35endif
36obj-y += pch.o
37obj-$(CONFIG_HAVE_ITSS) += itss.o
38obj-$(CONFIG_HAVE_P2SB) += p2sb.o
39
40ifdef CONFIG_SPL
41ifndef CONFIG_SPL_BUILD
42ifndef CONFIG_SYS_COREBOOT
43obj-y += cpu_from_spl.o
44endif
45endif
46endif
47

Last Index update Sun Aug 20 00:18:20 CST 2023