mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
65dd1507e3
The code to call the memory reference code is common to several Intel CPUs. Add common code for performing this init. Intel calls this 'Pre-EFI-Init' (PEI), where EFI stands for Extensible Firmware Interface. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
16 lines
319 B
Makefile
16 lines
319 B
Makefile
#
|
|
# Copyright (c) 2016 Google, Inc
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-$(CONFIG_HAVE_MRC) += car.o
|
|
obj-y += cpu.o
|
|
obj-y += lpc.o
|
|
obj-$(CONFIG_HAVE_MRC) += me_status.o
|
|
ifndef CONFIG_TARGET_EFI
|
|
obj-y += microcode.o
|
|
endif
|
|
obj-y += pch.o
|
|
obj-$(CONFIG_HAVE_MRC) += report_platform.o
|
|
obj-$(CONFIG_HAVE_MRC) += mrc.o
|