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 | 780ba48 | 2016-03-11 22:06:58 -0700 | [diff] [blame] | 11 | obj-y += cpu.o |
Simon Glass | 63e08a2 | 2016-03-11 22:06:57 -0700 | [diff] [blame] | 12 | obj-y += lpc.o |
Bin Meng | 6582074 | 2018-06-12 08:36:24 -0700 | [diff] [blame] | 13 | ifndef CONFIG_TARGET_EFI_APP |
Simon Glass | a7a3eb3 | 2019-04-25 21:59:05 -0600 | [diff] [blame^] | 14 | obj-$(CONFIG_$(SPL_TPL_)X86_32BIT_INIT) += microcode.o |
| 15 | ifndef CONFIG_$(SPL_)X86_64 |
Simon Glass | 2df6188 | 2016-03-11 22:06:54 -0700 | [diff] [blame] | 16 | obj-y += microcode.o |
| 17 | endif |
Simon Glass | a7a3eb3 | 2019-04-25 21:59:05 -0600 | [diff] [blame^] | 18 | endif |
Simon Glass | 9c852d7 | 2016-03-16 07:44:36 -0600 | [diff] [blame] | 19 | obj-y += pch.o |
Simon Glass | d806916b | 2019-04-25 21:58:56 -0600 | [diff] [blame] | 20 | |
| 21 | ifdef CONFIG_SPL |
| 22 | ifndef CONFIG_SPL_BUILD |
| 23 | obj-y += cpu_from_spl.o |
| 24 | endif |
| 25 | endif |