Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | 144652f | 2016-03-11 22:06:53 -0700 | [diff] [blame] | 2 | # |
| 3 | # Copyright (c) 2016 Google, Inc |
Simon Glass | 144652f | 2016-03-11 22:06:53 -0700 | [diff] [blame] | 4 | |
Simon Glass | d73344b | 2020-09-22 12:45:14 -0600 | [diff] [blame] | 5 | obj-$(CONFIG_INTEL_ACPIGEN) += acpi.o |
| 6 | |
Simon Glass | d0594ff | 2017-01-16 07:03:46 -0700 | [diff] [blame] | 7 | ifdef CONFIG_HAVE_MRC |
Simon Glass | 79ef699 | 2019-04-25 21:58:53 -0600 | [diff] [blame] | 8 | obj-$(CONFIG_$(SPL_TPL_)X86_16BIT_INIT) += car.o |
Simon Glass | a7a3eb3 | 2019-04-25 21:59:05 -0600 | [diff] [blame] | 9 | obj-$(CONFIG_$(SPL_TPL_)X86_32BIT_INIT) += me_status.o |
| 10 | obj-$(CONFIG_$(SPL_TPL_)X86_32BIT_INIT) += report_platform.o |
| 11 | obj-$(CONFIG_$(SPL_TPL_)X86_32BIT_INIT) += mrc.o |
Simon Glass | d0594ff | 2017-01-16 07:03:46 -0700 | [diff] [blame] | 12 | endif |
Simon Glass | 8f963e1 | 2019-12-06 21:42:25 -0700 | [diff] [blame] | 13 | |
Simon Glass | 057427c | 2020-09-22 12:45:03 -0600 | [diff] [blame] | 14 | ifndef CONFIG_SPL_BUILD |
| 15 | obj-$(CONFIG_INTEL_GMA_ACPI) += intel_opregion.o |
| 16 | endif |
| 17 | |
Simon Glass | 8f963e1 | 2019-12-06 21:42:25 -0700 | [diff] [blame] | 18 | ifdef CONFIG_INTEL_CAR_CQOS |
| 19 | obj-$(CONFIG_TPL_BUILD) += car2.o |
| 20 | ifndef CONFIG_SPL_BUILD |
| 21 | obj-y += car2_uninit.o |
| 22 | endif |
| 23 | endif |
| 24 | |
Simon Glass | 780ba48 | 2016-03-11 22:06:58 -0700 | [diff] [blame] | 25 | obj-y += cpu.o |
Simon Glass | ec1a30c | 2019-12-06 21:41:43 -0700 | [diff] [blame] | 26 | obj-y += fast_spi.o |
Simon Glass | 63e08a2 | 2016-03-11 22:06:57 -0700 | [diff] [blame] | 27 | obj-y += lpc.o |
Simon Glass | 6629837 | 2019-12-06 21:42:52 -0700 | [diff] [blame] | 28 | obj-y += lpss.o |
Simon Glass | ec8ae8a | 2020-12-23 08:11:30 -0700 | [diff] [blame] | 29 | obj-$(CONFIG_$(SPL_)INTEL_GENERIC_WIFI) += generic_wifi.o |
Bin Meng | 6582074 | 2018-06-12 08:36:24 -0700 | [diff] [blame] | 30 | ifndef CONFIG_TARGET_EFI_APP |
Simon Glass | a7a3eb3 | 2019-04-25 21:59:05 -0600 | [diff] [blame] | 31 | obj-$(CONFIG_$(SPL_TPL_)X86_32BIT_INIT) += microcode.o |
| 32 | ifndef CONFIG_$(SPL_)X86_64 |
Simon Glass | 2df6188 | 2016-03-11 22:06:54 -0700 | [diff] [blame] | 33 | obj-y += microcode.o |
| 34 | endif |
Simon Glass | a7a3eb3 | 2019-04-25 21:59:05 -0600 | [diff] [blame] | 35 | endif |
Simon Glass | 9c852d7 | 2016-03-16 07:44:36 -0600 | [diff] [blame] | 36 | obj-y += pch.o |
Wolfgang Wallner | b5460dd | 2020-02-03 14:06:45 +0100 | [diff] [blame] | 37 | obj-$(CONFIG_HAVE_ITSS) += itss.o |
Wolfgang Wallner | 21fae58 | 2020-02-04 09:04:56 +0100 | [diff] [blame] | 38 | obj-$(CONFIG_HAVE_P2SB) += p2sb.o |
Simon Glass | d806916b | 2019-04-25 21:58:56 -0600 | [diff] [blame] | 39 | |
| 40 | ifdef CONFIG_SPL |
| 41 | ifndef CONFIG_SPL_BUILD |
Simon Glass | bb88327 | 2020-04-30 21:21:43 -0600 | [diff] [blame] | 42 | ifndef CONFIG_SYS_COREBOOT |
Simon Glass | d806916b | 2019-04-25 21:58:56 -0600 | [diff] [blame] | 43 | obj-y += cpu_from_spl.o |
| 44 | endif |
| 45 | endif |
Simon Glass | bb88327 | 2020-04-30 21:21:43 -0600 | [diff] [blame] | 46 | endif |