mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 16:07:30 +00:00
26459488b7
Add ddr3 commands: test <start_addr in hex> <end_addr in hex> - test DDR from start\n address to end address\n ddr compare <start_addr in hex> <end_addr in hex> <size in hex> -\n compare DDR data of (size) bytes from start address to end address\n ddr ecc_err <addr in hex> <bit_err in hex> - generate bit errors\n in DDR data at <addr>, the command will read a 32-bit data\n from <addr>, and write (data ^ bit_err) back to <addr>\n Delete CONFIG_MAX_UBOOT_MEM_SIZE, as it was supposed to be used for ddr3 commands and for now it's not needed any more. Signed-off-by: Hao Zhang <hzhang@ti.com> Signed-off-by: Ivan Khoronzhuk <ivan.khoronzhuk@ti.com>
18 lines
388 B
Makefile
18 lines
388 B
Makefile
#
|
|
# (C) Copyright 2012-2014
|
|
# Texas Instruments Incorporated, <www.ti.com>
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-y += init.o
|
|
obj-y += psc.o
|
|
obj-y += clock.o
|
|
obj-$(CONFIG_SOC_K2HK) += clock-k2hk.o
|
|
obj-$(CONFIG_SOC_K2E) += clock-k2e.o
|
|
obj-$(CONFIG_SOC_K2L) += clock-k2l.o
|
|
obj-y += cmd_clock.o
|
|
obj-y += cmd_mon.o
|
|
obj-y += msmc.o
|
|
obj-y += ddr3.o cmd_ddr3.o
|
|
obj-y += keystone.o
|