mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 07:57:21 +00:00
beba5f04f2
ELM hardware engine which is used for ECC error detection, is present on all latest OMAP SoC (like OMAP4xxx, OMAP5xxx, DRA7xxx, AM33xx, AM43xx). Thus ELM driver should be moved to common drivers/mtd/nand/ folder so that all SoC having on-chip ELM hardware engine can re-use it. This patch has following changes: - mv arch/arm/include/asm/arch-am33xx/elm.h arch/arm/include/asm/omap_elm.h - mv arch/arm/cpu/armv7/am33xx/elm.c drivers/mtd/nand/omap_elm.c - update Makefiles - update #include <asm/elm.h> - add CONFIG_NAND_OMAP_ELM to compile driver/mtd/nand/omap_elm.c and include in all board configs using AM33xx SoC platform. Signed-off-by: Pekon Gupta <pekon@ti.com>
21 lines
440 B
Makefile
21 lines
440 B
Makefile
#
|
|
# Copyright (C) 2011, Texas Instruments, Incorporated - http://www.ti.com/
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-$(CONFIG_AM33XX) += clock_am33xx.o
|
|
obj-$(CONFIG_TI814X) += clock_ti814x.o
|
|
obj-$(CONFIG_AM43XX) += clock_am43xx.o
|
|
|
|
ifneq ($(CONFIG_AM43XX)$(CONFIG_AM33XX),)
|
|
obj-y += clock.o
|
|
endif
|
|
|
|
obj-$(CONFIG_TI816X) += clock_ti816x.o
|
|
obj-y += sys_info.o
|
|
obj-y += mem.o
|
|
obj-y += ddr.o
|
|
obj-y += emif4.o
|
|
obj-y += board.o
|
|
obj-y += mux.o
|