summaryrefslogtreecommitdiffstats
path: root/board/icpdas/lp8x4x/Makefile
diff options
context:
space:
mode:
authorSergey Yanovich <ynvich@gmail.com>2013-05-21 01:26:00 +0400
committerMarek Vasut <marex@denx.de>2013-06-12 22:24:09 +0200
commitc3442c1e322bc8bdfae2f67c2a9cf2bf76d57a2c (patch)
tree67f21dea69d29229c1d336140a77420a3ac7b81e /board/icpdas/lp8x4x/Makefile
parent58bb8f5f6138fa56875574a709f5af98c600c2a9 (diff)
downloadblackbird-obmc-uboot-c3442c1e322bc8bdfae2f67c2a9cf2bf76d57a2c.tar.gz
blackbird-obmc-uboot-c3442c1e322bc8bdfae2f67c2a9cf2bf76d57a2c.zip
arm: pxa: Add support for ICP DAS LP-8x4x
LP-8x4x is a programmable automation controller by ICP DAS. It is shipped with outdated U-Boot v1.3.0 This patch adds enough supports to boot the board: - 128M of 128M SDRAM - 32M of 48M NOR Flash memory - 1 of 4 Serial consoles (PXA FFUART) - 2 of 2 Ethernet controllers (DM9000) Signed-off-by: Sergey Yanovich <ynvich@gmail.com> Series-to: u-boot Series-cc: marex
Diffstat (limited to 'board/icpdas/lp8x4x/Makefile')
-rw-r--r--board/icpdas/lp8x4x/Makefile41
1 files changed, 41 insertions, 0 deletions
diff --git a/board/icpdas/lp8x4x/Makefile b/board/icpdas/lp8x4x/Makefile
new file mode 100644
index 0000000000..cbe6aa9ad4
--- /dev/null
+++ b/board/icpdas/lp8x4x/Makefile
@@ -0,0 +1,41 @@
+#
+# ICPDAS LP-8x4x Support
+#
+# Copyright (C) 2013 Sergey Yanovich <ynvich@gmail.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 := lp8x4x.o
+
+SRCS := $(COBJS:.o=.c)
+OBJS := $(addprefix $(obj),$(COBJS))
+
+$(LIB): $(obj).depend $(OBJS)
+ $(call cmd_link_o_target, $(OBJS))
+
+#########################################################################
+
+# defines $(obj).depend target
+include $(SRCTREE)/rules.mk
+
+sinclude $(obj).depend
+
+#########################################################################
OpenPOWER on IntegriCloud