summaryrefslogtreecommitdiff
path: root/arch/arm/cpu/arm720t/tegra114/Makefile
diff options
context:
space:
mode:
authorTom Warren <twarren.nvidia@gmail.com>2013-01-28 13:32:08 +0000
committerTom Warren <twarren@nvidia.com>2013-02-11 10:35:25 -0700
commit4040ec10df017273a51e6453f3511af70d4eac19 (patch)
tree7bcbc4e25f523cf9db14e667a952ddb31cc79f55 /arch/arm/cpu/arm720t/tegra114/Makefile
parent2fc65e2834138c388fbf5922179fdab5e9e9aefb (diff)
downloadu-boot-imx-4040ec10df017273a51e6453f3511af70d4eac19.zip
u-boot-imx-4040ec10df017273a51e6453f3511af70d4eac19.tar.gz
u-boot-imx-4040ec10df017273a51e6453f3511af70d4eac19.tar.bz2
Tegra114: Add AVP (arm720t) files
This provides SPL support for T114 boards - AVP early init, plus CPU (A15) init/jump to main U-Boot. Signed-off-by: Tom Warren <twarren@nvidia.com>
Diffstat (limited to 'arch/arm/cpu/arm720t/tegra114/Makefile')
-rw-r--r--arch/arm/cpu/arm720t/tegra114/Makefile42
1 files changed, 42 insertions, 0 deletions
diff --git a/arch/arm/cpu/arm720t/tegra114/Makefile b/arch/arm/cpu/arm720t/tegra114/Makefile
new file mode 100644
index 0000000..6cf7fe9
--- /dev/null
+++ b/arch/arm/cpu/arm720t/tegra114/Makefile
@@ -0,0 +1,42 @@
+#
+# Copyright (c) 2010-2013, NVIDIA CORPORATION. All rights reserved.
+#
+# (C) Copyright 2000-2008
+# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
+#
+# This program is free software; you can redistribute it and/or modify it
+# under the terms and conditions of the GNU General Public License,
+# version 2, as published by the Free Software Foundation.
+#
+# This program is distributed in the hope it will be useful, but WITHOUT
+# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
+# more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+#
+
+include $(TOPDIR)/config.mk
+
+LIB = $(obj)lib$(SOC).o
+
+#COBJS-y += cpu.o t11x.o
+COBJS-y += cpu.o
+
+SRCS := $(COBJS-y:.o=.c)
+OBJS := $(addprefix $(obj),$(COBJS-y))
+
+all: $(obj).depend $(LIB)
+
+$(LIB): $(OBJS)
+ $(call cmd_link_o_target, $(OBJS))
+
+#########################################################################
+
+# defines $(obj).depend target
+include $(SRCTREE)/rules.mk
+
+sinclude $(obj).depend
+
+#########################################################################