Re: [U-Boot] Remove sparc archiecture?

2015-11-05 Thread Daniel Hellstrom
On 10/19/2015 04:54 PM, Francois Retief wrote: Hallo Daniel, -Original Message- From: Daniel Hellstrom [mailto:dan...@gaisler.com] Sent: 18 October 2015 11:30 PM To: Masahiro Yamada<yamada.masah...@socionext.com> Subject: Re: [U-Boot] Remove sparc archiecture? On 10/18/2015 05

Re: [U-Boot] Remove sparc archiecture?

2015-10-18 Thread Daniel Hellstrom
terest in u-boot and I hope and believe that my efforts will be resumed in the future. Francois, if you feel it is too much a temporary replacement could also be an option if the u-boot project allows it. Best Regards, Daniel Hellstrom ___ U-Boot mai

Re: [U-Boot] [sparc] Pull request

2014-05-09 Thread Daniel Hellstrom
are right, I forgot about that. I will do that next time. Regards, Daniel Hellstrom ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] [sparc] Pull request

2014-05-08 Thread Daniel Hellstrom
: zynq: Fix typo in suffix function name are available in the git repository at: git://git.denx.de/u-boot-sparc.git master Daniel Hellstrom (2): leon: use CONFIG_SYS_HZ to config timer prescaler leon: implement missing get_tbclk() arch/sparc/cpu/leon2/cpu_init.c | 22 ++ arch/sparc

Re: [U-Boot] All Sparc boards are broken

2014-03-31 Thread Daniel Hellstrom
Hello, I was recently informed about the problem by Tom. As I mentioned to him I'm very busy at the moment. I haven't looked into it yet, but my plan remains to do so in a few weeks time. Thanks, Daniel Hellstrom On 03/31/2014 04:27 AM, Masahiro Yamada wrote: Hi Daniel, All Sparc boards

Re: [U-Boot] sparc leon3 linking problem

2014-03-12 Thread Daniel Hellstrom
On 03/12/2014 01:52 PM, Tom Rini wrote: On Tue, Mar 11, 2014 at 03:14:26PM -0700, Kameron Larsen wrote: Hello, I'm bringing up a board based on the board/gaisler/gr_xc3s_1500/ design. To keep things simple, we can use this design exactly as is. My problem starts in the relocation section of

Re: [U-Boot] sparc and .udiv/.rem/.urem/.umul/etc... link errors

2011-10-19 Thread Daniel Hellstrom
On 10/13/2011 05:44 PM, Mike Frysinger wrote: On Thursday 13 October 2011 04:45:27 Daniel Hellstrom wrote: On 10/13/2011 07:33 AM, Mike Frysinger wrote: it seems that these symbols are usually implemented in the C library on sparc systems, but under u-boot, we don't have that luxury. Linux

Re: [U-Boot] [PATCH] sparc: fix unknown escape sequence warnings

2011-10-13 Thread Daniel Hellstrom
On 10/13/2011 07:47 AM, Mike Frysinger wrote: I don't know what exactly the code was going for, but the object code is the same before/after my change, and in looking at the env strings, this seems to be OK. Otherwise gcc warns: cc1: warning: unknown escape sequence: '\$' cc1: warning:

Re: [U-Boot] sparc and .udiv/.rem/.urem/.umul/etc... link errors

2011-10-13 Thread Daniel Hellstrom
On 10/13/2011 07:33 AM, Mike Frysinger wrote: it seems that these symbols are usually implemented in the C library on sparc systems, but under u-boot, we don't have that luxury. Linux itself simply imports the relevant asm files from glibc into their lib subdir. without these, building

[U-Boot] Please pull u-boot-sparc.git net branch

2010-11-17 Thread Daniel Hellstrom
Dear Wolfgang, Please pull the net branch of the Sparc repository. The patches include some bug fixes and debug printout cleanups of the GRETH network driver. Thanks, Daniel Hellstrom The following changes since commit 6163f5b4c8873848ed023054bc401727301ea537: Kumar Gala (1): malloc

Re: [U-Boot] [STATUS] Custodian changes, using Patchwork

2010-11-15 Thread Daniel Hellstrom
Wolfgang Denk wrote: For now, I would like to ask all CUSTODIANS to register as users at patchwork.ozlabs.org, so we can arrange that the appropriate privileges will be granted to you. Registered as daniel Regards, Daniel Hellstrom ___ U

Re: [U-Boot] [PATCH] sparc: add asm/unaligned.h

2010-10-27 Thread Daniel Hellstrom
Wolfgang Denk wrote: Dear Daniel Hellstrom, In message 4cc54d00.6040...@gaisler.com you wrote: Mike Frysinger wrote: It isn't possible to build any sparc boards without this ... I'm working on a new patch set with some of the patches going through the net repo instead

[U-Boot] Pull request: sparc

2010-10-27 Thread Daniel Hellstrom
Dear Wolfgang, Please pull the master branch of the sparc repository. Thanks, Daniel The following changes since commit 11c8dd36edcc82564a19dbd0103302df66d66db0: Stefano Babic (1): FAT: buffer overflow with FAT12/16 are available in the git repository at:

[U-Boot] [PATCH 1/6] GRETH: removed unneccesary register write and one clean up.

2010-10-27 Thread Daniel Hellstrom
Signed-off-by: Daniel Hellstrom dan...@gaisler.com --- drivers/net/greth.c |4 +--- 1 files changed, 1 insertions(+), 3 deletions(-) diff --git a/drivers/net/greth.c b/drivers/net/greth.c index 79bc4d9..4f1973c 100644 --- a/drivers/net/greth.c +++ b/drivers/net/greth.c @@ -45,7 +45,7

[U-Boot] [PATCH 4/6] GRETH: Added extra RESET, this is needed if GRETH was stopped during an ethernet frame reception.

2010-10-27 Thread Daniel Hellstrom
Signed-off-by: Daniel Hellstrom dan...@gaisler.com --- drivers/net/greth.c | 10 ++ 1 files changed, 10 insertions(+), 0 deletions(-) diff --git a/drivers/net/greth.c b/drivers/net/greth.c index cb68d45..f081855 100644 --- a/drivers/net/greth.c +++ b/drivers/net/greth.c @@ -152,6

[U-Boot] [PATCH 5/6] GRETH: fixed 2 decriptor table typos

2010-10-27 Thread Daniel Hellstrom
Signed-off-by: Daniel Hellstrom dan...@gaisler.com --- drivers/net/greth.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/net/greth.c b/drivers/net/greth.c index f081855..0566e68 100644 --- a/drivers/net/greth.c +++ b/drivers/net/greth.c @@ -168,7 +168,7

[U-Boot] [PATCH 3/6] GRETH: Added autodetection of PHY address, or let BSP hardcode it.

2010-10-27 Thread Daniel Hellstrom
Signed-off-by: Daniel Hellstrom dan...@gaisler.com --- drivers/net/greth.c | 78 --- 1 files changed, 55 insertions(+), 23 deletions(-) diff --git a/drivers/net/greth.c b/drivers/net/greth.c index 788aac8..cb68d45 100644 --- a/drivers/net/greth.c

[U-Boot] [PATCH 2/6] GRETH: made debug printouts use common debug() macro.

2010-10-27 Thread Daniel Hellstrom
Signed-off-by: Daniel Hellstrom dan...@gaisler.com --- drivers/net/greth.c | 66 +++--- 1 files changed, 25 insertions(+), 41 deletions(-) diff --git a/drivers/net/greth.c b/drivers/net/greth.c index 4f1973c..788aac8 100644 --- a/drivers/net/greth.c

[U-Boot] [PATCH 6/6] GRETH: removed space in network driver device name.

2010-10-27 Thread Daniel Hellstrom
Signed-off-by: Daniel Hellstrom dan...@gaisler.com --- drivers/net/greth.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/net/greth.c b/drivers/net/greth.c index 0566e68..6c32226 100644 --- a/drivers/net/greth.c +++ b/drivers/net/greth.c @@ -644,9 +644,9

Re: [U-Boot] [PATCH] sparc: add asm/unaligned.h

2010-10-25 Thread Daniel Hellstrom
Mike Frysinger wrote: It isn't possible to build any sparc boards without this ... I'm working on a new patch set with some of the patches going through the net repo instead, according to Wolfgangs comments. It is probably easier for me to make fewer commits every time submitting, and

Re: [U-Boot] [PATCH 01/17] SPARC: added unaligned definitions, patch supplied by Magnus Sjalander.

2010-05-26 Thread Daniel Hellstrom
Hi, Thank you for the input, I will resend the patch with Magnus as author. Daniel Mike Frysinger wrote: the subject line is incorrect. you dont credit people via summary/changelogs, you do it via the tags. so if Magnus wrote this patch, he should be credited with authorship (so use

[U-Boot] [PATCH v2 01/17] SPARC: added unaligned definitions

2010-05-26 Thread Daniel Hellstrom
From: Magnus Sjalander mag...@gaisler.com Signed-off-by: Daniel Hellstrom dan...@gaisler.com --- arch/sparc/include/asm/byteorder.h |1 + arch/sparc/include/asm/unaligned.h | 10 ++ 2 files changed, 11 insertions(+), 0 deletions(-) create mode 100644 arch/sparc/include/asm

[U-Boot] Please pull u-boot-sparc.git

2010-05-26 Thread Daniel Hellstrom
Sjalander (1): SPARC: added unaligned definitions are available in the git repository at: git://www.denx.de/git/u-boot-sparc.git master Daniel Hellstrom (16): GRETH: Added support for selecting PHY address from config, PHY address was always set to zero before. GRETH: Added

[U-Boot] [PATCH 01/17] SPARC: added unaligned definitions, patch supplied by Magnus Sjalander.

2010-05-18 Thread Daniel Hellstrom
Signed-off-by: Daniel Hellstrom dan...@gaisler.com --- arch/sparc/include/asm/byteorder.h |1 + arch/sparc/include/asm/unaligned.h | 10 ++ 2 files changed, 11 insertions(+), 0 deletions(-) create mode 100644 arch/sparc/include/asm/unaligned.h diff --git a/arch/sparc/include/asm

[U-Boot] [PATCH 02/17] GRETH: Added support for selecting PHY address from config, PHY address was always set to zero before.

2010-05-18 Thread Daniel Hellstrom
Signed-off-by: Daniel Hellstrom dan...@gaisler.com --- drivers/net/greth.c | 69 +++--- 1 files changed, 43 insertions(+), 26 deletions(-) diff --git a/drivers/net/greth.c b/drivers/net/greth.c index 79bc4d9..a1a88f9 100644 --- a/drivers/net/greth.c

[U-Boot] [PATCH 03/17] GRETH: Added extra RESET, this is needed if GRETH was stopped during an ethernet frame reception.

2010-05-18 Thread Daniel Hellstrom
Signed-off-by: Daniel Hellstrom dan...@gaisler.com --- drivers/net/greth.c | 14 -- 1 files changed, 12 insertions(+), 2 deletions(-) diff --git a/drivers/net/greth.c b/drivers/net/greth.c index a1a88f9..143c773 100644 --- a/drivers/net/greth.c +++ b/drivers/net/greth.c @@ -146,13

[U-Boot] [PATCH 05/17] LEON3: added memory controller initialization using the new AMBA PnP routines.

2010-05-18 Thread Daniel Hellstrom
Signed-off-by: Daniel Hellstrom dan...@gaisler.com --- arch/sparc/cpu/leon3/Makefile |5 +- arch/sparc/cpu/leon3/memcfg.c | 276 + arch/sparc/cpu/leon3/memcfg.h | 106 ++ arch/sparc/cpu/leon3/memcfg_low.S | 270

[U-Boot] [PATCH 06/17] LEON3: Moved GRLIB core header files to common include/grlib directory

2010-05-18 Thread Daniel Hellstrom
Signed-off-by: Daniel Hellstrom dan...@gaisler.com --- arch/sparc/cpu/leon3/cpu_init.c | 10 +-- arch/sparc/cpu/leon3/interrupts.c |7 +- arch/sparc/cpu/leon3/memcfg.h |1 - arch/sparc/cpu/leon3/prom.c |7 ++- arch/sparc/cpu/leon3/serial.c | 16 ++-- drivers/net

[U-Boot] [PATCH 07/17] LEON3: serial baud rate register support multiple buses with different frequency.

2010-05-18 Thread Daniel Hellstrom
Signed-off-by: Daniel Hellstrom dan...@gaisler.com --- arch/sparc/cpu/leon3/serial.c | 17 ++--- 1 files changed, 14 insertions(+), 3 deletions(-) diff --git a/arch/sparc/cpu/leon3/serial.c b/arch/sparc/cpu/leon3/serial.c index 8964310..1f17ede 100644 --- a/arch/sparc/cpu/leon3

[U-Boot] [PATCH 08/17] SPARC: added function that checks if IRQ is on or off.

2010-05-18 Thread Daniel Hellstrom
Signed-off-by: Daniel Hellstrom dan...@gaisler.com --- arch/sparc/include/asm/irq.h |3 +++ arch/sparc/lib/interrupts.c |7 +++ 2 files changed, 10 insertions(+), 0 deletions(-) diff --git a/arch/sparc/include/asm/irq.h b/arch/sparc/include/asm/irq.h index c5538c0..ce78169 100644

[U-Boot] [PATCH 11/17] SPARC: removed USB stop from linux bootm, arch-independent bootm stop USB.

2010-05-18 Thread Daniel Hellstrom
Signed-off-by: Daniel Hellstrom dan...@gaisler.com --- arch/sparc/lib/bootm.c |8 1 files changed, 0 insertions(+), 8 deletions(-) diff --git a/arch/sparc/lib/bootm.c b/arch/sparc/lib/bootm.c index c62cf57..f517325 100644 --- a/arch/sparc/lib/bootm.c +++ b/arch/sparc/lib/bootm.c

[U-Boot] [PATCH 09/17] LEON3: added busy wait function, made wait_ms() work when IRQ is disabled.

2010-05-18 Thread Daniel Hellstrom
Signed-off-by: Daniel Hellstrom dan...@gaisler.com --- arch/sparc/cpu/leon3/cpu_init.c | 30 -- 1 files changed, 28 insertions(+), 2 deletions(-) diff --git a/arch/sparc/cpu/leon3/cpu_init.c b/arch/sparc/cpu/leon3/cpu_init.c index fd3e757..1829a08 100644 --- a/arch

[U-Boot] [PATCH 13/17] LEON3: Added GRETH EDCL debug link IP address initialization.

2010-05-18 Thread Daniel Hellstrom
Signed-off-by: Daniel Hellstrom dan...@gaisler.com --- arch/sparc/cpu/leon3/cpu_init.c | 14 arch/sparc/cpu/leon3/greth.c| 152 +++ 2 files changed, 166 insertions(+), 0 deletions(-) create mode 100644 arch/sparc/cpu/leon3/greth.c diff --git

[U-Boot] [PATCH 12/17] SPARC: added optional cpu_late_init routine.

2010-05-18 Thread Daniel Hellstrom
Signed-off-by: Daniel Hellstrom dan...@gaisler.com --- arch/sparc/lib/board.c |5 + 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/arch/sparc/lib/board.c b/arch/sparc/lib/board.c index 11eea60..d829af0 100644 --- a/arch/sparc/lib/board.c +++ b/arch/sparc/lib/board.c

[U-Boot] [PATCH 14/17] LEON: added support for GRLIB SPI Memory controller, spi command interface.

2010-05-18 Thread Daniel Hellstrom
Signed-off-by: Daniel Hellstrom dan...@gaisler.com --- arch/sparc/lib/board.c | 14 +++ drivers/spi/Makefile |1 + drivers/spi/spimctrl_spi.c | 263 include/grlib/spimctrl.h | 69 4 files changed, 347 insertions(+), 0

[U-Boot] [PATCH 15/17] LEON3: fixed MMU table for systems with larger memory than 128MB.

2010-05-18 Thread Daniel Hellstrom
Signed-off-by: Daniel Hellstrom dan...@gaisler.com --- arch/sparc/cpu/leon3/prom.c | 16 1 files changed, 16 insertions(+), 0 deletions(-) diff --git a/arch/sparc/cpu/leon3/prom.c b/arch/sparc/cpu/leon3/prom.c index 86376bb..e0a69af 100644 --- a/arch/sparc/cpu/leon3/prom.c

[U-Boot] [PATCH 16/17] bootm command: added argument to arch_preboot_os, function may depend on OS type.

2010-05-18 Thread Daniel Hellstrom
Signed-off-by: Daniel Hellstrom dan...@gaisler.com --- arch/powerpc/cpu/mpc85xx/cpu_init.c |2 +- common/cmd_bootm.c |8 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/arch/powerpc/cpu/mpc85xx/cpu_init.c b/arch/powerpc/cpu/mpc85xx/cpu_init.c

[U-Boot] [PATCH 17/17] SPARC, LEON3: added support for multiprocessing, tested Linux 2.6.21.1 SMP and RTEMS-4.10 AMP.

2010-05-18 Thread Daniel Hellstrom
Signed-off-by: Daniel Hellstrom dan...@gaisler.com --- arch/sparc/cpu/leon3/Makefile |2 +- arch/sparc/cpu/leon3/cpu.c | 10 ++- arch/sparc/cpu/leon3/cpu_mp.c | 87 +++ arch/sparc/cpu/leon3/prom.c | 32 +++--- arch/sparc/cpu/leon3

Re: [U-Boot] [PATCH 01/17] SPARC: added unaligned definitions, patch supplied by Magnus Sjalander.

2010-05-06 Thread Daniel Hellstrom
, now that they are so delayed? Thank you for your interest, that really helps, Daniel Hellstrom Wolfgang Denk wrote: Dear Daniel Hellstrom, In message 1264680996-13804-1-git-send-email-dan...@gaisler.com you wrote: Signed-off-by: Daniel Hellstrom dan...@gaisler.com --- include/asm-sparc

[U-Boot] [PATCH 1/1] USB: usb_control_msg wait for driver ISR to set status.

2010-02-01 Thread Daniel Hellstrom
This patch changes usb_control_msg back to the state prior to commit 48867208444cb2a82e2af9c3249e90b7ed4a1751. The USB driver ISR routine may update the status. Signed-off-by: Daniel Hellstrom dan...@gaisler.com --- common/usb.c | 21 - 1 files changed, 12 insertions(+), 9

Re: [U-Boot] [patch 1/2 V2] fix USB initialisation procedure

2010-02-01 Thread Daniel Hellstrom
Hi, Remy Bohmer wrote: Hi, 2010/1/29 Daniel Hellstrom dan...@gaisler.com: Hello, Please see my comment on commit 48867208444cb2a82e2af9c3249e90b7ed4a1751 below. Remy Bohmer wrote: The max packet size is encoded as 0,1,2,3 for 8,16,32,64 bytes. At some places directly 8,16,32,64

[U-Boot] USB unaligned problem

2010-02-01 Thread Daniel Hellstrom
branch: http://git.denx.de/?p=u-boot/u-boot-sparc.git;a=commit;h=5b6bc53e4c3eadd04f2ecb94bbb596dca306236a What do you think? Best Regards, Daniel Hellstrom ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH 01/17] SPARC: added unaligned definitions, patch supplied by Magnus Sjalander.

2010-02-01 Thread Daniel Hellstrom
Mike Frysinger wrote: On Thursday 28 January 2010 07:16:20 Daniel Hellstrom wrote: Signed-off-by: Daniel Hellstrom dan...@gaisler.com --- include/asm-sparc/unaligned.h | 17 + 1 files changed, 17 insertions(+), 0 deletions(-) create mode 100644 include/asm-sparc

Re: [U-Boot] [patch 1/2 V2] fix USB initialisation procedure

2010-01-29 Thread Daniel Hellstrom
. I believe this is also the case for board/MAI/AmigaOneG3SE/usb_uhci.c and board/mpl/common/usb_uhci.c, they are also modifying the flag from the interrupt handler. Best regards, Daniel Hellstrom Tested on AT91SAM9261ek and compared the flow on the USB bus to what Linux is doing

[U-Boot] [PATCH 02/17] GRETH: Added support for selecting PHY address from config, PHY address was always set to zero before.

2010-01-28 Thread Daniel Hellstrom
Signed-off-by: Daniel Hellstrom dan...@gaisler.com --- drivers/net/greth.c | 69 +++--- 1 files changed, 43 insertions(+), 26 deletions(-) diff --git a/drivers/net/greth.c b/drivers/net/greth.c index 79bc4d9..833915d 100644 --- a/drivers/net/greth.c

[U-Boot] [PATCH 03/17] GRETH: Added extra RESET, this is needed if GRETH was stopped during an ethernet frame reception.

2010-01-28 Thread Daniel Hellstrom
Signed-off-by: Daniel Hellstrom dan...@gaisler.com --- drivers/net/greth.c | 14 -- 1 files changed, 12 insertions(+), 2 deletions(-) diff --git a/drivers/net/greth.c b/drivers/net/greth.c index 833915d..383b25c 100644 --- a/drivers/net/greth.c +++ b/drivers/net/greth.c @@ -146,13

[U-Boot] [PATCH 01/17] SPARC: added unaligned definitions, patch supplied by Magnus Sjalander.

2010-01-28 Thread Daniel Hellstrom
Signed-off-by: Daniel Hellstrom dan...@gaisler.com --- include/asm-sparc/unaligned.h | 17 + 1 files changed, 17 insertions(+), 0 deletions(-) create mode 100644 include/asm-sparc/unaligned.h diff --git a/include/asm-sparc/unaligned.h b/include/asm-sparc/unaligned.h new file

[U-Boot] [PATCH 07/17] LEON3: serial baud rate register support multiple buses with different frequency.

2010-01-28 Thread Daniel Hellstrom
Signed-off-by: Daniel Hellstrom dan...@gaisler.com --- cpu/leon3/serial.c | 17 ++--- 1 files changed, 14 insertions(+), 3 deletions(-) diff --git a/cpu/leon3/serial.c b/cpu/leon3/serial.c index 8964310..1f17ede 100644 --- a/cpu/leon3/serial.c +++ b/cpu/leon3/serial.c @@ -47,11

[U-Boot] [PATCH 06/17] LEON3: Moved GRLIB core header files to common include/grlib directory

2010-01-28 Thread Daniel Hellstrom
Signed-off-by: Daniel Hellstrom dan...@gaisler.com --- cpu/leon3/cpu_init.c| 10 ++-- cpu/leon3/interrupts.c |7 ++- cpu/leon3/memcfg.h |1 - cpu/leon3/prom.c|7 ++- cpu/leon3/serial.c | 16 +++--- drivers/net/greth.c |2 +- include/ambapp.h

[U-Boot] [PATCH 09/17] LEON3: added busy wait function, made wait_ms() work when IRQ is disabled.

2010-01-28 Thread Daniel Hellstrom
Signed-off-by: Daniel Hellstrom dan...@gaisler.com --- cpu/leon3/cpu_init.c | 30 -- 1 files changed, 28 insertions(+), 2 deletions(-) diff --git a/cpu/leon3/cpu_init.c b/cpu/leon3/cpu_init.c index e2e1181..d2f47e1 100644 --- a/cpu/leon3/cpu_init.c +++ b/cpu/leon3

[U-Boot] [PATCH 08/17] SPARC: added function that checks if IRQ is on or off.

2010-01-28 Thread Daniel Hellstrom
Signed-off-by: Daniel Hellstrom dan...@gaisler.com --- include/asm-sparc/irq.h |3 +++ lib_sparc/interrupts.c |7 +++ 2 files changed, 10 insertions(+), 0 deletions(-) diff --git a/include/asm-sparc/irq.h b/include/asm-sparc/irq.h index c5538c0..ce78169 100644 --- a/include/asm

[U-Boot] [PATCH 10/17] LEON3: added CPU count and frequency detection.

2010-01-28 Thread Daniel Hellstrom
Signed-off-by: Daniel Hellstrom dan...@gaisler.com --- cpu/leon3/cpu.c | 42 +- include/asm-sparc/leon3.h | 13 + 2 files changed, 54 insertions(+), 1 deletions(-) diff --git a/cpu/leon3/cpu.c b/cpu/leon3/cpu.c index 976f311

[U-Boot] [PATCH 12/17] SPARC: added optional cpu_late_init routine.

2010-01-28 Thread Daniel Hellstrom
Signed-off-by: Daniel Hellstrom dan...@gaisler.com --- lib_sparc/board.c |5 + 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/lib_sparc/board.c b/lib_sparc/board.c index 11eea60..d829af0 100644 --- a/lib_sparc/board.c +++ b/lib_sparc/board.c @@ -65,6 +65,7 @@ extern void

[U-Boot] [PATCH 11/17] SPARC: removed USB stop from linux bootm, arch-independent bootm stop USB.

2010-01-28 Thread Daniel Hellstrom
Signed-off-by: Daniel Hellstrom dan...@gaisler.com --- lib_sparc/bootm.c |8 1 files changed, 0 insertions(+), 8 deletions(-) diff --git a/lib_sparc/bootm.c b/lib_sparc/bootm.c index c62cf57..f517325 100644 --- a/lib_sparc/bootm.c +++ b/lib_sparc/bootm.c @@ -35,10 +35,6 @@ extern

[U-Boot] [PATCH 15/17] LEON3: fixed MMU table for systems with larger memory than 128MB.

2010-01-28 Thread Daniel Hellstrom
Signed-off-by: Daniel Hellstrom dan...@gaisler.com --- cpu/leon3/prom.c | 16 1 files changed, 16 insertions(+), 0 deletions(-) diff --git a/cpu/leon3/prom.c b/cpu/leon3/prom.c index 86376bb..6cd2281 100644 --- a/cpu/leon3/prom.c +++ b/cpu/leon3/prom.c @@ -1059,6 +1059,22

[U-Boot] [PATCH 13/17] LEON3: Added GRETH EDCL debug link IP address initialization.

2010-01-28 Thread Daniel Hellstrom
Signed-off-by: Daniel Hellstrom dan...@gaisler.com --- cpu/leon3/cpu_init.c | 14 + cpu/leon3/greth.c| 152 ++ 2 files changed, 166 insertions(+), 0 deletions(-) create mode 100644 cpu/leon3/greth.c diff --git a/cpu/leon3/cpu_init.c b

[U-Boot] [PATCH 16/17] bootm command: added argument to arch_preboot_os, function may depend on OS type.

2010-01-28 Thread Daniel Hellstrom
Signed-off-by: Daniel Hellstrom dan...@gaisler.com --- common/cmd_bootm.c |8 cpu/mpc85xx/cpu_init.c |2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c index 94ddac3..f795857 100644 --- a/common/cmd_bootm.c +++ b

[U-Boot] [PATCH 14/17] LEON: added support for GRLIB SPI Memory controller, spi command interface.

2010-01-28 Thread Daniel Hellstrom
Signed-off-by: Daniel Hellstrom dan...@gaisler.com --- drivers/spi/Makefile |1 + drivers/spi/spimctrl_spi.c | 261 include/grlib/spimctrl.h | 69 lib_sparc/board.c | 14 +++ 4 files changed, 345 insertions(+), 0

[U-Boot] [PATCH 17/17] SPARC, LEON3: added support for multiprocessing, tested Linux 2.6.21.1 SMP and RTEMS-4.10 AMP.

2010-01-28 Thread Daniel Hellstrom
Signed-off-by: Daniel Hellstrom dan...@gaisler.com --- board/gaisler/gr_cpci_ax2000/u-boot.lds |7 ++ board/gaisler/gr_ep2s60/u-boot.lds |7 ++ board/gaisler/gr_xc3s_1500/u-boot.lds |7 ++ board/gaisler/grsim/u-boot.lds |7 ++ cpu/leon3/Makefile

Re: [U-Boot] U-Boot for LENO3 processor board

2010-01-21 Thread Daniel Hellstrom
Hi, Detlev Zundel wrote: Hi Balaji, I am having the following boot requirements: Boot software will be flashed in to PROM, which should start from PROM and copy the application software which is flahsed in other flash device in different address space. The processor is LEON3FT. is

Re: [U-Boot] U-Boot for LENO3 processor board

2010-01-21 Thread Daniel Hellstrom
Hi, Detlev Zundel wrote: Hi Balaji, I am having the following boot requirements: Boot software will be flashed in to PROM, which should start from PROM and copy the application software which is flahsed in other flash device in different address space. The processor is LEON3FT. is

[U-Boot] Pull request: u-boot-sparc

2009-10-27 Thread Daniel Hellstrom
Dear Wolfgang, Please pull from the master branch at git://www.denx.de/git/u-boot-sparc.git Thanks, Daniel The following changes since commit f3ee25859e3920ee7c7cc519a3e6f60d70d7a53f: Matthias Fuchs (1): License cleanup: Fix license header for some esd display configurations are

Re: [U-Boot] [PATCH 1/1] SPARC: fixes exported function stub for standalone applications.

2009-09-23 Thread Daniel Hellstrom
Wolfgang Denk wrote: Dear Daniel Hellstrom, In message 1253270387-15741-1-git-send-email-dan...@gaisler.com you wrote: Hello Wolfgang, Please pull the u-boot-sparc.git master branch. This patch fixes the SPARC support for standalone u-boot applications. The problem was that I neve

Re: [U-Boot] [PATCH] SPARC standalone app fix

2009-09-23 Thread Daniel Hellstrom
Hi Sergey, Can you resend your patch, this time signed off (the -s options to git-commit) so that your name will propagate correctly through the git repos. Thanks, Daniel Hellstrom Daniel Hellstrom wrote: Hi Sergey, Thank you for your work. I have updated the sparc repository with your

[U-Boot] [PATCH 1/1] Fix bug in jumptable call stubs for SPARC.

2009-09-23 Thread Daniel Hellstrom
From: Sergey Mironov ier...@gmail.com Hello Wolfgang, Sergey has resent the patch with a sign-off and I have updated the u-boot-sparc.git repository with the new patch, for SPARC standalone application support. Thank you, Daniel Hellstrom Signed-off-by: Sergey Mironov ier...@gmail.com

Re: [U-Boot] [PATCH] SPARC standalone app fix

2009-09-18 Thread Daniel Hellstrom
Hi Sergey, Thank you for your work. I have updated the sparc repository with your patch. And, yes, you are probably the first one to use the standalone app feature :) Please CC me next time. Thanks, Daniel Сергей Миронов wrote: Hi! Thanks for the beautiful project! Ive tried to launch

[U-Boot] [PATCH 1/1] SPARC: fixes exported function stub for standalone applications.

2009-09-18 Thread Daniel Hellstrom
... ## Application terminated, rc = 0x0 = - Best Regards, Daniel Hellstrom Signed-off-by: Daniel Hellstrom dan...@gaisler.com --- examples/standalone/stubs.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples

[U-Boot] [PATCH 1/1] SPARC: fixes exported function stub for standalone applications. jmp ensures we get back to the location we came from, size(void *) make sure we get the function addresses correct

2009-09-18 Thread Daniel Hellstrom
... ## Application terminated, rc = 0x0 = - Best Regards, Daniel Hellstrom Signed-off-by: Daniel Hellstrom dan...@gaisler.com --- examples/standalone/stubs.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples

[U-Boot] Pull request: u-boot-sparc

2008-11-19 Thread Daniel Hellstrom
Dear Wolfgang, Please pull from the master branch at git://www.denx.de/git/u-boot-sparc.git I have rebased it against the mainline today. Best regards, Daniel Hellstrom The following changes since commit 9b827cf1720acda2473afa516956eab6f7cca9a1: Selvamuthukumar (1): Align end

[U-Boot] [PATCH] SPARC: Fixed compiler error introduced by commit c160a9544743e80e8889edb2275538e7764ce334

2008-11-10 Thread Daniel Hellstrom
Hi Wolfgang, This patch fix a build error for the SPARC platform. It was introduced by commit c160a9544743e80e8889edb2275538e7764ce334. I have updated u-boot-sparc.git testing branch. Best Regards, Daniel Hellstrom Signed-off-by: Daniel Hellstrom [EMAIL PROTECTED] --- lib_sparc/bootm.c