From: Aldo Brett Cedillo Martinez
Zoom2 and Zoom2 used to hang with "md" command. It was due to a problem
with a buffer size in print_buffer() function. A macro was introduced
to use a different buffer size in case of compiling for Zoom2 and Zoom3.
Jeff could you please test it on your board wit
> Hi,
>
> I'm new to U-boot, I'm trying to port U-boot on SMDK6410 board which is based
> on Samsung's ARM11 based S3C6410 system on chip. I have compiled the U-boot
> s3c-u-boot-1.1.6. As a result of this compilation, six files got created in
> my current working directory. These are : System.m
From: Aldo Brett Cedillo Martinez
Instead of using "struct serial_device zoom2_serial_device0" and
"struct serial_device zoom3_serial_device0", we now use a single
"struct serial_device zoom_serial_device0".
Signed-off-by: Aldo Brett Cedillo Martinez
---
board/logicpd/zoom2/zoom2_serial.h |
ng, w...@denx.de.
+# Aldo Cedillo
+#
+# 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 vers
From: Aldo Brett Cedillo Martinez
This patch set gives basic functionality to Omap3630 Zoom3 board. And
unifies serial_devices for zoom2 and zoom3 since both use the same
struct.
Thanks Wolfgang for your comments, the modifications done were:
- Added entry to MAINTAINERS in proper order.
- Macro
zoom3/Makefile
@@ -0,0 +1,54 @@
+#
+# (C) Copyright 2000, 2001, 2002
+# Wolfgang Denk, DENX Software Engineering, w...@denx.de.
+# Aldo Cedillo
+#
+# See file CREDITS for list of people who contributed to this
+# project.
+#
+# This program is free software; you can redistribute it and/or
+# modi
> #ifdef CONFIG_BFIN_BOOTROM_USES_EVT1
> serial_putc('I');
> - /* tell the bootrom where our entry point is */
> + /* Tell the bootrom where our entry point is so that it knows
> + * where to jump to when finishing processing the LDR. This
> + * allows us to avoid
..@denx.de.
+# Aldo Cedillo
+#
+# 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
Hey Shrikumar,
> Hi Aldo
> Thanks for your reply.
> Im using the Omap3430 SDP board, I used the config omap3_sdp3430.
> I used the following commit of u-boot:
> 1f241263e088a71b8f33f87b03a37c5418d41e2e
>
> Shrikumar Sharma
>
I just flashed main branch u-boot with the commit you are telling and
it
> Hi
> I flashed in the u-boot to the H6 omap3430 board, but i get a blank screen
> on reset; moreover, when I use kermit via Serial port COM1, Im able to
> connect but I do not get the u-boot shell.
> (I am a newbie...)
> Could someone tell me what I am doing wrong or missing here?
> Thanks in adv
/zoom3.h b/board/logicpd/zoom3/zoom3.h
new file mode 100644
index 000..7ef4af0
--- /dev/null
+++ b/board/logicpd/zoom3/zoom3.h
@@ -0,0 +1,163 @@
+/*
+ * Copyright (c) 2010 Texas Instruments
+ *
+ * Aldo Cedillo
+ *
+ * Derived from: board/omap3/zoom2/zoom2.h
+ * Tom Rix
+ *
+ * Derived from
From: Aldo Brett Cedillo Martinez
Signed-off-by: Aldo Brett Cedillo Martinez
---
MAINTAINERS |4
MAKEALL |1 +
Makefile|3 +++
3 files changed, 8 insertions(+), 0 deletions(-)
diff --git a/MAINTAINERS b/MAINTAINERS
index 7a13d28..384dda9 100644
--- a/MAINTAINERS
+++ b/
/zoom3/debug_board.c
b/board/logicpd/zoom3/debug_board.c
new file mode 100644
index 000..0520257
--- /dev/null
+++ b/board/logicpd/zoom3/debug_board.c
@@ -0,0 +1,66 @@
+/*
+ * Copyright (c) 2010 Wind River Systems, Inc.
+ * Tom Rix
+ * Aldo Cedillo
+ *
+ * This program is free software; you can
/zoom3.c b/board/logicpd/zoom3/zoom3.c
new file mode 100644
index 000..f5a8201
--- /dev/null
+++ b/board/logicpd/zoom3/zoom3.c
@@ -0,0 +1,201 @@
+/*
+ * Copyright (c) 2010 Texas Instruments
+ * Aldo Cedillo
+ *
+ * Derived from Zoom2 code by
+ * Tom Rix
+ *
+ * Derived from Zoom1 code by
From: Aldo Brett Cedillo Martinez
Signed-off-by: Aldo Brett Cedillo Martinez
---
board/logicpd/zoom3/zoom3_serial.h | 76
1 files changed, 76 insertions(+), 0 deletions(-)
create mode 100644 board/logicpd/zoom3/zoom3_serial.h
diff --git a/board/logicpd/z
/omap3_zoom3.h b/include/configs/omap3_zoom3.h
new file mode 100644
index 000..e70f1cf
--- /dev/null
+++ b/include/configs/omap3_zoom3.h
@@ -0,0 +1,271 @@
+/*
+ * (C) Copyright 2006-2010 Texas Instruments.
+ *
+ * Richard Woodruff
+ * Syed Mohammed Khasim
+ * Nishanth Menon
+ * Tom Rix
+ * Aldo
/zoom3/zoom3_serial.c
b/board/logicpd/zoom3/zoom3_serial.c
new file mode 100644
index 000..e50c6dc
--- /dev/null
+++ b/board/logicpd/zoom3/zoom3_serial.c
@@ -0,0 +1,132 @@
+/*
+ * Copyright (c) 2009 Wind River Systems, Inc.
+ * Tom Rix
+ * Aldo Cedillo
+ *
+ * This program is free software
From: Aldo Brett Cedillo Martinez
Signed-off-by: Aldo Brett Cedillo Martinez
---
common/serial.c |2 ++
include/serial.h |7 +++
2 files changed, 9 insertions(+), 0 deletions(-)
diff --git a/common/serial.c b/common/serial.c
index fceabfa..2a644ba 100644
--- a/common/serial.c
+++
From: Aldo Brett Cedillo Martinez
Signed-off-by: Aldo Brett Cedillo Martinez
---
board/logicpd/zoom3/config.mk | 33 +
1 files changed, 33 insertions(+), 0 deletions(-)
create mode 100644 board/logicpd/zoom3/config.mk
diff --git a/board/logicpd/zoom3/config.m
/Makefile b/board/logicpd/zoom3/Makefile
new file mode 100644
index 000..79c02ab
--- /dev/null
+++ b/board/logicpd/zoom3/Makefile
@@ -0,0 +1,54 @@
+#
+# (C) Copyright 2000, 2001, 2002
+# Wolfgang Denk, DENX Software Engineering, w...@denx.de.
+# Aldo Cedillo
+#
+# See file CREDITS for list of
From: Aldo Brett Cedillo Martinez
The following series of patches is intented to give basic functionality
to OMAP3630 Zoom3 board. All your reviews are welcome and appreciated.
Aldo Brett Cedillo Martinez (11):
[U-BOOT][ZOOM3] Initial support - adding board files (zoom3.h)
[U-BOOT][ZOOM3] I
From: Aldo Brett Cedillo Martinez
Signed-off-by: Aldo Brett Cedillo Martinez
---
board/logicpd/zoom3/led.c | 133 +
1 files changed, 133 insertions(+), 0 deletions(-)
create mode 100644 board/logicpd/zoom3/led.c
diff --git a/board/logicpd/zoom3/led
e
new file mode 100644
index 000..79c02ab
--- /dev/null
+++ b/board/logicpd/zoom3/Makefile
@@ -0,0 +1,54 @@
+#
+# (C) Copyright 2000, 2001, 2002
+# Wolfgang Denk, DENX Software Engineering, w...@denx.de.
+# Aldo Cedillo
+#
+# See file CREDITS for list of people who contributed to this
+# project.
23 matches
Mail list logo