All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] Fix jornada memory init
@ 2010-11-06 13:24 Kristoffer Ericson
  2010-11-16 19:54 ` Kristoffer Ericson
  2010-11-27 22:19 ` Wolfgang Denk
  0 siblings, 2 replies; 3+ messages in thread
From: Kristoffer Ericson @ 2010-11-06 13:24 UTC (permalink / raw)
  To: u-boot

* Fix memory initialization. This fixes the problem
  with kernel oopses during heavy load.

* Cleanup pinsetup, which for reference is among
  other things needed for proper flash erasing.

Signed-off-by: Kristoffer Ericson <kristoffer.ericson@gmail.com>
---
 board/jornada/setup.S |   24 ++++++++++++------------
 1 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/board/jornada/setup.S b/board/jornada/setup.S
index 885e02f..cdf5f54 100644
--- a/board/jornada/setup.S
+++ b/board/jornada/setup.S
@@ -112,12 +112,13 @@ gafr_set:	.long	0x08600000
 .globl lowlevel_init
 lowlevel_init:
 
-	/* set output and direction of pins */
-	ldr r0, PPC_BASE
-	ldr r1, pin_set_out
-	str r1, [r0, #PPSR]
-	ldr r1, pin_set_dir
-	str r1, [r0, #PPDR]
+
+	/* this is required for flashing */
+	ldr	r0, PPC_BASE
+	ldr	r1, pin_set_out
+	str	r1, [r0, #PPSR]
+	ldr	r1, pin_set_dir
+	str	r1, [r0, #PPDR]
 
 	/* Setting up the memory and stuff */
 	/***********************************/
@@ -190,6 +191,11 @@ lowlevel_init:
 	ldr	r3, [r2]
 .endr
 
+	ldr	r2, [r0, #MDCNFG]
+	orr	r2, r2, #0x00000003
+	orr	r2, r2, #0x00030000
+	str	r2, [r0, #MDCNFG]
+
 	ldr	r1, msc0
 	str	r1, [r0, #MSC0]
 	ldr	r1, msc1
@@ -198,13 +204,7 @@ lowlevel_init:
 	str	r1, [r0, #MSC2]
 	ldr	r1, smcnfg
 	str	r1, [r0, #SMCNFG]
-	ldr	r1, mdcnfg
-	str	r1, [r0, #MDCNFG]
 	ldr	r1, mecr
 	str	r1, [r0, #MECR]
 
-	/* enable SDRAM */
-	orr	r1, r1, #0x00000001
-	str	r1, [r0, #MDCNFG]
-
 	mov	pc, lr
-- 
1.7.3.2

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [U-Boot] [PATCH] Fix jornada memory init
  2010-11-06 13:24 [U-Boot] [PATCH] Fix jornada memory init Kristoffer Ericson
@ 2010-11-16 19:54 ` Kristoffer Ericson
  2010-11-27 22:19 ` Wolfgang Denk
  1 sibling, 0 replies; 3+ messages in thread
From: Kristoffer Ericson @ 2010-11-16 19:54 UTC (permalink / raw)
  To: u-boot

Hi,

Just bumping this since Ive gotten no feedback and its not
applied yet.

Best wishes
Kristoffer

On Sat, Nov 06, 2010 at 02:24:27PM +0100, Kristoffer Ericson wrote:
> * Fix memory initialization. This fixes the problem
>   with kernel oopses during heavy load.
> 
> * Cleanup pinsetup, which for reference is among
>   other things needed for proper flash erasing.
> 
> Signed-off-by: Kristoffer Ericson <kristoffer.ericson@gmail.com>
> ---
>  board/jornada/setup.S |   24 ++++++++++++------------
>  1 files changed, 12 insertions(+), 12 deletions(-)
> 
> diff --git a/board/jornada/setup.S b/board/jornada/setup.S
> index 885e02f..cdf5f54 100644
> --- a/board/jornada/setup.S
> +++ b/board/jornada/setup.S
> @@ -112,12 +112,13 @@ gafr_set:	.long	0x08600000
>  .globl lowlevel_init
>  lowlevel_init:
>  
> -	/* set output and direction of pins */
> -	ldr r0, PPC_BASE
> -	ldr r1, pin_set_out
> -	str r1, [r0, #PPSR]
> -	ldr r1, pin_set_dir
> -	str r1, [r0, #PPDR]
> +
> +	/* this is required for flashing */
> +	ldr	r0, PPC_BASE
> +	ldr	r1, pin_set_out
> +	str	r1, [r0, #PPSR]
> +	ldr	r1, pin_set_dir
> +	str	r1, [r0, #PPDR]
>  
>  	/* Setting up the memory and stuff */
>  	/***********************************/
> @@ -190,6 +191,11 @@ lowlevel_init:
>  	ldr	r3, [r2]
>  .endr
>  
> +	ldr	r2, [r0, #MDCNFG]
> +	orr	r2, r2, #0x00000003
> +	orr	r2, r2, #0x00030000
> +	str	r2, [r0, #MDCNFG]
> +
>  	ldr	r1, msc0
>  	str	r1, [r0, #MSC0]
>  	ldr	r1, msc1
> @@ -198,13 +204,7 @@ lowlevel_init:
>  	str	r1, [r0, #MSC2]
>  	ldr	r1, smcnfg
>  	str	r1, [r0, #SMCNFG]
> -	ldr	r1, mdcnfg
> -	str	r1, [r0, #MDCNFG]
>  	ldr	r1, mecr
>  	str	r1, [r0, #MECR]
>  
> -	/* enable SDRAM */
> -	orr	r1, r1, #0x00000001
> -	str	r1, [r0, #MDCNFG]
> -
>  	mov	pc, lr
> -- 
> 1.7.3.2

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [U-Boot] [PATCH] Fix jornada memory init
  2010-11-06 13:24 [U-Boot] [PATCH] Fix jornada memory init Kristoffer Ericson
  2010-11-16 19:54 ` Kristoffer Ericson
@ 2010-11-27 22:19 ` Wolfgang Denk
  1 sibling, 0 replies; 3+ messages in thread
From: Wolfgang Denk @ 2010-11-27 22:19 UTC (permalink / raw)
  To: u-boot

Dear Kristoffer Ericson,

In message <1289049867-25186-1-git-send-email-kristoffer.ericson@gmail.com> you wrote:
> * Fix memory initialization. This fixes the problem
>   with kernel oopses during heavy load.
> 
> * Cleanup pinsetup, which for reference is among
>   other things needed for proper flash erasing.
> 
> Signed-off-by: Kristoffer Ericson <kristoffer.ericson@gmail.com>
> ---
>  board/jornada/setup.S |   24 ++++++++++++------------
>  1 files changed, 12 insertions(+), 12 deletions(-)

Applied, thanks.

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: wd at denx.de
Brain off-line, please wait.

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2010-11-27 22:19 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-11-06 13:24 [U-Boot] [PATCH] Fix jornada memory init Kristoffer Ericson
2010-11-16 19:54 ` Kristoffer Ericson
2010-11-27 22:19 ` Wolfgang Denk

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.