[U-Boot] [PATCH] [U-BOOT] Zoom2 & Zoom3: introduced a macro to use a different buffer size when compiling for Zoom2 or Zoom3.

2010-08-30 Thread Aldo Cedillo
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

Re: [U-Boot] new to U-boot, need help on U-boot porting on SMDK6410

2010-07-16 Thread Aldo Cedillo
> 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

[U-Boot] [PATCH 2/2] [U-BOOT] Unify serial_device for zoom2 and zoom3.

2010-07-15 Thread Aldo Cedillo
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 |

[U-Boot] [PATCH 1/2] [U-BOOT] Zoom3: Add support for OMAP3630 Zoom3 board.

2010-07-15 Thread Aldo Cedillo
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

[U-Boot] [PATCH 0/2 v5][U-BOOT] Zoom3: Add support for OMAP3630 Zoom3 board.

2010-07-15 Thread Aldo Cedillo
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

[U-Boot] [PATCH v4] [U-BOOT] Zoom3: Add support for OMAP3630 Zoom3 board.

2010-07-15 Thread Aldo Cedillo
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

Re: [U-Boot] [PATCH 03/35] Blackfin: expand EVT1 usage documentation a bit more

2010-07-06 Thread Aldo Cedillo
>  #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

[U-Boot] [PATCH v3] [U-BOOT] Zoom3: Add support for OMAP3630 Zoom3 board.

2010-06-24 Thread Aldo Cedillo
..@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

Re: [U-Boot] u-boot not giving output in Kermit on startup (OMAP3430 sdp)

2010-06-23 Thread Aldo Cedillo
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

Re: [U-Boot] u-boot not giving output in Kermit on startup (OMAP3430 sdp)

2010-06-22 Thread Aldo Cedillo
> 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

[U-Boot] [PATCH 01/11] [U-BOOT][ZOOM3] Initial support - adding board files (zoom3.h)

2010-06-10 Thread Aldo Cedillo
/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

[U-Boot] [PATCH 11/11] [U-BOOT][ZOOM3] Initial support - add board to main Makefile, add the board to the list in MAKEALL file, and name to MAINTAINERS.

2010-06-10 Thread Aldo Cedillo
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/

[U-Boot] [PATCH 06/11] [U-BOOT][ZOOM3] Initial support - adding board files (debug_board.c)

2010-06-10 Thread Aldo Cedillo
/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

[U-Boot] [PATCH 02/11] [U-BOOT][ZOOM3] Initial support - adding board files (zoom3.c)

2010-06-10 Thread Aldo Cedillo
/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

[U-Boot] [PATCH 03/11] [U-BOOT][ZOOM3] Initial support - adding board files (zoom3_serial.h)

2010-06-10 Thread Aldo Cedillo
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

[U-Boot] [PATCH 09/11] [U-BOOT][ZOOM3] Initial support - add config file (omap3_zoom3.h)

2010-06-10 Thread Aldo Cedillo
/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

[U-Boot] [PATCH 04/11] [U-BOOT][ZOOM3] Initial support - adding board files (zoom3_serial.c)

2010-06-10 Thread Aldo Cedillo
/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

[U-Boot] [PATCH 10/11] [U-BOOT][ZOOM3] Initial support - added OMAP3630 serial devices.

2010-06-10 Thread Aldo Cedillo
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 +++

[U-Boot] [PATCH 07/11] [U-BOOT][ZOOM3] Initial support - adding board files (config.mk)

2010-06-10 Thread Aldo Cedillo
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

[U-Boot] [PATCH 08/11] [U-BOOT][ZOOM3] Initial support - adding board files (Makefile)

2010-06-10 Thread Aldo Cedillo
/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

[U-Boot] [PATCH 00/11][U-BOOT][ZOOM3] Initial support.

2010-06-10 Thread Aldo Cedillo
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

[U-Boot] [PATCH 05/11] [U-BOOT][ZOOM3] Initial support - adding board files (led.c)

2010-06-10 Thread Aldo Cedillo
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

[U-Boot] [PATCH v2] [U-BOOT] Zoom3: Add support for OMAP3630 Zoom3 board.

2010-06-10 Thread Aldo Cedillo
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.