summaryrefslogtreecommitdiff
path: root/board/renesas/sh7752evb/Makefile
diff options
context:
space:
mode:
authorYoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>2012-11-04 15:53:22 +0000
committerNobuhiro Iwamatsu <iwamatsu@nigauri.org>2012-12-20 13:20:17 +0900
commit1a2621bab89c3fd6bd09a601b0b94dc26e238d7c (patch)
tree8ad313a5c351c71d833c80daeb3b923c3ef9b98b /board/renesas/sh7752evb/Makefile
parent095728803eedfce850a2f85828f79500cb09979e (diff)
downloadu-boot-imx-1a2621bab89c3fd6bd09a601b0b94dc26e238d7c.zip
u-boot-imx-1a2621bab89c3fd6bd09a601b0b94dc26e238d7c.tar.gz
u-boot-imx-1a2621bab89c3fd6bd09a601b0b94dc26e238d7c.tar.bz2
sh: add support for sh7752evb board
The R0P7752C00000RZ board has SH7752, 512MB DDR3-SDRAM, SPI ROM, Gigabit Ethernet, and eMMC. This patch supports the following functions: - 512MB DDR3-SDRAM, SCIF4, SPI ROM, Gigabit Ethernet, eMMC Signed-off-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com> Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Diffstat (limited to 'board/renesas/sh7752evb/Makefile')
-rw-r--r--board/renesas/sh7752evb/Makefile36
1 files changed, 36 insertions, 0 deletions
diff --git a/board/renesas/sh7752evb/Makefile b/board/renesas/sh7752evb/Makefile
new file mode 100644
index 0000000..196c992
--- /dev/null
+++ b/board/renesas/sh7752evb/Makefile
@@ -0,0 +1,36 @@
+#
+# Copyright (C) 2012 Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License as
+# published by the Free Software Foundation; either version 2 of
+# the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that 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, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+# MA 02111-1307 USA
+
+include $(TOPDIR)/config.mk
+
+LIB = $(obj)lib$(BOARD).o
+
+COBJS := sh7752evb.o spi-boot.o
+SOBJS := lowlevel_init.o
+
+$(LIB): $(obj).depend $(COBJS) $(SOBJS)
+ $(call cmd_link_o_target, $(COBJS) $(SOBJS))
+
+#########################################################################
+
+# defines $(obj).depend target
+include $(SRCTREE)/rules.mk
+
+sinclude $(obj).depend
+
+#########################################################################