Re: [U-Boot] [PATCH 2/2] add support of arm/pxa270 board made by voipac [rev 2]

2010-04-27 Thread Marek Vasut
Dne So 10. dubna 2010 00:39:41 Wolfgang Denk napsal(a):
 Dear Mikhail Kshevetskiy,
 
 In message 20100407154936.474d5...@laska.campus-ws.pu.ru you wrote:
  This patch is based on custom u-boot-1.1.2 version produced by voipac
  (http://www.voipac.com) and board/trizepsiv files from current u-boot.
  
  Up to now only PXA270 DIMM module with NOR flash is tested.
  
  v2: code style was improved
  
  Signed-off-by: Mikhail Kshevetskiy mikhail.kshevets...@gmail.com
 
 NAK. Please see review comments to previous version.
 
 Best regards,
 
 Wolfgang Denk

Hi,

Mikhail, any updates on this ?
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH 2/2] add support of arm/pxa270 board made by voipac [rev 2]

2010-04-14 Thread Marek Vasut
Dne So 10. dubna 2010 00:39:41 Wolfgang Denk napsal(a):
 Dear Mikhail Kshevetskiy,
 
 In message 20100407154936.474d5...@laska.campus-ws.pu.ru you wrote:
  This patch is based on custom u-boot-1.1.2 version produced by voipac
  (http://www.voipac.com) and board/trizepsiv files from current u-boot.
  
  Up to now only PXA270 DIMM module with NOR flash is tested.
  
  v2: code style was improved
  
  Signed-off-by: Mikhail Kshevetskiy mikhail.kshevets...@gmail.com
 
 NAK. Please see review comments to previous version.
 
 Best regards,
 
 Wolfgang Denk

I sent you my not-really-a-patch for vpac270. Hope you can get some ideas. But 
please, that patch I sent you doesn't have the review issues addressed, be sure 
to fix those.

Thanks!
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH 2/2] add support of arm/pxa270 board made by voipac [rev 2]

2010-04-09 Thread Wolfgang Denk
Dear Mikhail Kshevetskiy,

In message 20100407154936.474d5...@laska.campus-ws.pu.ru you wrote:
 This patch is based on custom u-boot-1.1.2 version produced by voipac
 (http://www.voipac.com) and board/trizepsiv files from current u-boot.
 
 Up to now only PXA270 DIMM module with NOR flash is tested.
 
 v2: code style was improved
 
 Signed-off-by: Mikhail Kshevetskiy mikhail.kshevets...@gmail.com

NAK. Please see review comments to previous version.

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH, MD: Wolfgang Denk  Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: w...@denx.de
No one talks peace unless he's ready to back it up with war.
He talks of peace if it is the only way to live.
-- Colonel Green and Surak of Vulcan, The Savage Curtain,
   stardate 5906.5.
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


[U-Boot] [PATCH 2/2] add support of arm/pxa270 board made by voipac [rev 2]

2010-04-07 Thread Mikhail Kshevetskiy
This patch is based on custom u-boot-1.1.2 version produced by voipac
(http://www.voipac.com) and board/trizepsiv files from current u-boot.

Up to now only PXA270 DIMM module with NOR flash is tested.

v2: code style was improved

Signed-off-by: Mikhail Kshevetskiy mikhail.kshevets...@gmail.com
---
 MAINTAINERS   |4 +
 MAKEALL   |1 +
 Makefile  |3 +
 board/vpac270/Makefile|   51 +++
 board/vpac270/config.mk   |1 +
 board/vpac270/lowlevel_init.S |  735 +
 board/vpac270/vpac270.c   |  103 ++
 include/configs/vpac270.h |  408 +++
 8 files changed, 1306 insertions(+), 0 deletions(-)
 create mode 100644 board/vpac270/Makefile
 create mode 100644 board/vpac270/config.mk
 create mode 100644 board/vpac270/lowlevel_init.S
 create mode 100644 board/vpac270/vpac270.c
 create mode 100644 include/configs/vpac270.h

diff --git a/MAINTAINERS b/MAINTAINERS
index 80057ce..f84b6f4 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -525,6 +525,10 @@ Stefano Babic sba...@denx.de
polaris xscale
trizepsiv   xscale
 
+Mikhail Kshevetskiy mikhail.kshevets...@gmail.com
+
+   vpac270 xscale
+
 Dirk Behme dirk.be...@gmail.com
 
omap3_beagleARM CORTEX-A8 (OMAP3530 SoC)
diff --git a/MAKEALL b/MAKEALL
index 5c303f9..78ba2af 100755
--- a/MAKEALL
+++ b/MAKEALL
@@ -692,6 +692,7 @@ LIST_pxa=  \
polaris \
pxa255_idp  \
trizepsiv   \
+   vpac270 \
wepep250\
xaeniax \
xm250   \
diff --git a/Makefile b/Makefile
index e141cb2..20cceba 100644
--- a/Makefile
+++ b/Makefile
@@ -3250,6 +3250,9 @@ trizepsiv_config  :   unconfig
fi;
@$(MKCONFIG) -a trizepsiv arm pxa trizepsiv
 
+vpac270_config:unconfig
+   @$(MKCONFIG) $(@:_config=) arm pxa vpac270
+
 wepep250_config:   unconfig
@$(MKCONFIG) $(@:_config=) arm pxa wepep250
 
diff --git a/board/vpac270/Makefile b/board/vpac270/Makefile
new file mode 100644
index 000..500e075
--- /dev/null
+++ b/board/vpac270/Makefile
@@ -0,0 +1,51 @@
+#
+# (C) Copyright 2000-2006
+# Wolfgang Denk, DENX Software Engineering, w...@denx.de.
+#
+# See file CREDITS for list of people who contributed to this
+# project.
+#
+# 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).a
+
+COBJS  := vpac270.o
+SOBJS  := lowlevel_init.o
+
+SRCS   := $(SOBJS:.o=.S) $(COBJS:.o=.c)
+OBJS   := $(addprefix $(obj),$(COBJS))
+SOBJS  := $(addprefix $(obj),$(SOBJS))
+
+$(LIB):$(obj).depend $(OBJS) $(SOBJS)
+   $(AR) $(ARFLAGS) $@ $(OBJS) $(SOBJS)
+
+clean:
+   rm -f $(SOBJS) $(OBJS)
+
+distclean: clean
+   rm -f $(LIB) core *.bak $(obj).depend
+
+#
+
+# defines $(obj).depend target
+include $(SRCTREE)/rules.mk
+
+sinclude $(obj).depend
+
+#
diff --git a/board/vpac270/config.mk b/board/vpac270/config.mk
new file mode 100644
index 000..e798bc3
--- /dev/null
+++ b/board/vpac270/config.mk
@@ -0,0 +1 @@
+TEXT_BASE =0xa1f0
diff --git a/board/vpac270/lowlevel_init.S b/board/vpac270/lowlevel_init.S
new file mode 100644
index 000..3e8bb5b
--- /dev/null
+++ b/board/vpac270/lowlevel_init.S
@@ -0,0 +1,735 @@
+/*
+ * This was originally from the Lubbock u-boot port.
+ *
+ * Most of this taken from Redboot hal_platform_setup.h with cleanup
+ *
+ * NOTE: I haven't clean this up considerably, just enough to get it
+ * running. See hal_platform_setup.h for the source. See
+ * board/cradle/lowlevel_init.S for another PXA250 setup that is
+ * much cleaner.
+ *
+ * See file CREDITS for list of people who contributed to this
+ * project.
+ *
+ * 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