mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-01-05 17:58:52 +00:00
9231206b73
Split the CPU init into two parts - the 'full' init which happens in the first U-Boot phase, and the rest of the init that happens on subsequent stages. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
17 lines
344 B
Makefile
17 lines
344 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Copyright (c) 2016 Google, Inc
|
|
|
|
obj-y += adsp.o
|
|
obj-y += cpu.o
|
|
obj-y += cpu_full.o
|
|
obj-y += iobp.o
|
|
obj-y += lpc.o
|
|
obj-y += me.o
|
|
obj-y += northbridge.o
|
|
obj-y += pch.o
|
|
obj-y += pinctrl_broadwell.o
|
|
obj-y += power_state.o
|
|
obj-y += refcode.o
|
|
obj-y += sata.o
|
|
obj-$(CONFIG_$(SPL_TPL_)X86_32BIT_INIT) += sdram.o
|