mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-15 09:27:35 +00:00
1b4086307e
We don't support SDRAM init in 64-bit mode since it is essentially impossible to get into that mode before SDRAM set up. Provide dummy functions for now. At some point we will need to pass the SDRAM parameters through from SPL. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
23 lines
445 B
Makefile
23 lines
445 B
Makefile
#
|
|
# Copyright (c) 2014 Google, Inc
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
ifdef CONFIG_HAVE_FSP
|
|
obj-y += fsp_configs.o ivybridge.o
|
|
else
|
|
obj-$(CONFIG_$(SPL_)X86_32BIT_INIT) += cpu.o
|
|
obj-y += early_me.o
|
|
obj-y += lpc.o
|
|
obj-y += model_206ax.o
|
|
obj-y += northbridge.o
|
|
ifndef CONFIG_SPL_BUILD
|
|
obj-y += sata.o
|
|
endif
|
|
obj-$(CONFIG_$(SPL_)X86_32BIT_INIT) += sdram.o
|
|
ifndef CONFIG_$(SPL_)X86_32BIT_INIT
|
|
obj-y += sdram_nop.o
|
|
endif
|
|
endif
|
|
obj-y += bd82x6x.o
|