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 | |
| 12 | ifdef CONFIG_INTEL_CAR_CQOS |
| 13 | obj-$(CONFIG_TPL_BUILD) += car2.o |
| 14 | ifndef CONFIG_SPL_BUILD |
| 15 | obj-y += car2_uninit.o |
| 16 | endif |
| 17 | endif |
| 18 | |
Simon Glass | 780ba48 | 2016-03-11 22:06:58 -0700 | [diff] [blame] | 19 | obj-y += cpu.o |
Simon Glass | ec1a30c | 2019-12-06 21:41:43 -0700 | [diff] [blame] | 20 | obj-y += fast_spi.o |
Simon Glass | 63e08a2 | 2016-03-11 22:06:57 -0700 | [diff] [blame] | 21 | obj-y += lpc.o |
Simon Glass | 6629837 | 2019-12-06 21:42:52 -0700 | [diff] [blame] | 22 | obj-y += lpss.o |
Bin Meng | 6582074 | 2018-06-12 08:36:24 -0700 | [diff] [blame] | 23 | ifndef CONFIG_TARGET_EFI_APP |
Simon Glass | a7a3eb3 | 2019-04-25 21:59:05 -0600 | [diff] [blame] | 24 | obj-$(CONFIG_$(SPL_TPL_)X86_32BIT_INIT) += microcode.o |
| 25 | ifndef CONFIG_$(SPL_)X86_64 |
Simon Glass | 2df6188 | 2016-03-11 22:06:54 -0700 | [diff] [blame] | 26 | obj-y += microcode.o |
| 27 | endif |
Simon Glass | a7a3eb3 | 2019-04-25 21:59:05 -0600 | [diff] [blame] | 28 | endif |
Simon Glass | 9c852d7 | 2016-03-16 07:44:36 -0600 | [diff] [blame] | 29 | obj-y += pch.o |
Wolfgang Wallner | b5460dd | 2020-02-03 14:06:45 +0100 | [diff] [blame] | 30 | obj-$(CONFIG_HAVE_ITSS) += itss.o |
Wolfgang Wallner | 21fae58 | 2020-02-04 09:04:56 +0100 | [diff] [blame] | 31 | obj-$(CONFIG_HAVE_P2SB) += p2sb.o |
Simon Glass | d806916b | 2019-04-25 21:58:56 -0600 | [diff] [blame] | 32 | |
| 33 | ifdef CONFIG_SPL |
| 34 | ifndef CONFIG_SPL_BUILD |
| 35 | obj-y += cpu_from_spl.o |
| 36 | endif |
| 37 | endif |