mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-11 13:56:30 +00:00
55e83d2e36
Static variables are not available during board_init_f(). 'static uint32_t mx53_dram_size[2];' was used in board specific dram_init(), dram_init_banksize() and get_effective_memsize() to avoid multiple calls to get_ram_size(). Reused dram initialization functions from arch/arm/mach-imx/mx5/mx53_dram.c Signed-off-by: Patrick Bruenn <p.bruenn@beckhoff.com>
16 lines
412 B
Makefile
16 lines
412 B
Makefile
#
|
|
# (C) Copyright 2000-2006
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
#
|
|
# (C) Copyright 2009 Freescale Semiconductor, Inc.
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-y := soc.o clock.o
|
|
obj-y += lowlevel_init.o
|
|
|
|
# common files for mx53 dram initialization
|
|
obj-$(CONFIG_TARGET_M53EVK) += mx53_dram.o
|
|
obj-$(CONFIG_TARGET_MX53CX9020) += mx53_dram.o
|
|
obj-$(CONFIG_TARGET_MX53LOCO) += mx53_dram.o
|