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