mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-04 02:20:25 +00:00
4eabf1e54b
At present, for broadwell, SDRAM is always set up in U-Boot proper since the 64-bit mode (which uses SDRAM init in SPL) is not supported. Update the code to allow SDRAM init in SPL instead so that U-Boot proper can be loaded into SDRAM and run from there. This allows U-Boot to be compressed to reduce space, since it is not necessary to run it directly from flash. It could later allow us to support 64-bit U-Boot on broadwell. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
16 lines
324 B
Makefile
16 lines
324 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Copyright (c) 2016 Google, Inc
|
|
|
|
obj-y += adsp.o
|
|
obj-y += cpu.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
|