public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot-Users] [PATCH] PPC4xx: Minimal changes to add vxWorks support
@ 2007-11-30 14:01 Niklaus Giger
  2007-11-30 14:11 ` Jerry Van Baren
  0 siblings, 1 reply; 3+ messages in thread
From: Niklaus Giger @ 2007-11-30 14:01 UTC (permalink / raw)
  To: u-boot

Hi

I have to support vxWorks on our boards. In order to avoid changing the TLB
in all PPC440x based boards  I need this small patch. Can it go into the
git repository or do I have to maintain it out of the tree forever?

Best regards

Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
---
 cpu/ppc4xx/start.S |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/cpu/ppc4xx/start.S b/cpu/ppc4xx/start.S
index 9626b65..8f19444 100644
--- a/cpu/ppc4xx/start.S
+++ b/cpu/ppc4xx/start.S
@@ -1432,7 +1432,10 @@ relocate_code:
 	dccci	0,0			/* Invalidate data cache, now no longer our stack */
 	sync
 	isync
-	addi	r1,r0,0x0000		/* TLB entry #0 */
+#ifndef CFG_TLB_FOR_BOOT_FLASH
+#define CFG_TLB_FOR_BOOT_FLASH 0
+#endif
+	addi	r1,r0,CFG_TLB_FOR_BOOT_FLASH	/* TLB entry (default #0) */
 	tlbre	r0,r1,0x0002		/* Read contents */
 	ori	r0,r0,0x0c00		/* Or in the inhibit, write through bit */
 	tlbwe	r0,r1,0x0002		/* Save it out */
-- 
1.5.2

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

* [U-Boot-Users] [PATCH] PPC4xx: Minimal changes to add vxWorks support
  2007-11-30 14:01 [U-Boot-Users] [PATCH] PPC4xx: Minimal changes to add vxWorks support Niklaus Giger
@ 2007-11-30 14:11 ` Jerry Van Baren
  2007-11-30 19:54   ` Stefan Roese
  0 siblings, 1 reply; 3+ messages in thread
From: Jerry Van Baren @ 2007-11-30 14:11 UTC (permalink / raw)
  To: u-boot

Niklaus Giger wrote:
> Hi
> 
> I have to support vxWorks on our boards. In order to avoid changing the TLB
> in all PPC440x based boards  I need this small patch. Can it go into the
> git repository or do I have to maintain it out of the tree forever?
> 
> Best regards
> 
> Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
> ---
>  cpu/ppc4xx/start.S |    5 ++++-
>  1 files changed, 4 insertions(+), 1 deletions(-)
> 
> diff --git a/cpu/ppc4xx/start.S b/cpu/ppc4xx/start.S
> index 9626b65..8f19444 100644
> --- a/cpu/ppc4xx/start.S
> +++ b/cpu/ppc4xx/start.S
> @@ -1432,7 +1432,10 @@ relocate_code:
>  	dccci	0,0			/* Invalidate data cache, now no longer our stack */
>  	sync
>  	isync
> -	addi	r1,r0,0x0000		/* TLB entry #0 */
> +#ifndef CFG_TLB_FOR_BOOT_FLASH
> +#define CFG_TLB_FOR_BOOT_FLASH 0
> +#endif
> +	addi	r1,r0,CFG_TLB_FOR_BOOT_FLASH	/* TLB entry (default #0) */
>  	tlbre	r0,r1,0x0002		/* Read contents */
>  	ori	r0,r0,0x0c00		/* Or in the inhibit, write through bit */
>  	tlbwe	r0,r1,0x0002		/* Save it out */

Hi Niklaus,

I don't know the answer to your question, but the following alternate 
construct is cleaner (and cleaner may help get acceptance ;-):

#ifdef CFG_TLB_FOR_BOOT_FLASH
	addi	r1,r0,CFG_TLB_FOR_BOOT_FLASH	/* Use defined TLB */
#else
	addi	r1,r0,0x0000		/* Default TLB entry is #0 */
#endif

Best regards,
gvb

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

* [U-Boot-Users] [PATCH] PPC4xx: Minimal changes to add vxWorks support
  2007-11-30 14:11 ` Jerry Van Baren
@ 2007-11-30 19:54   ` Stefan Roese
  0 siblings, 0 replies; 3+ messages in thread
From: Stefan Roese @ 2007-11-30 19:54 UTC (permalink / raw)
  To: u-boot

Hi Niklaus,

On Friday 30 November 2007, Jerry Van Baren wrote:
> > I have to support vxWorks on our boards. In order to avoid changing the
> > TLB in all PPC440x based boards  I need this small patch. Can it go into
> > the git repository or do I have to maintain it out of the tree forever?

If something fixes a problem and is for general use, why not include it, if 
it's not too messy. Please see below.

> > Best regards
> >
> > Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
> > ---
> >  cpu/ppc4xx/start.S |    5 ++++-
> >  1 files changed, 4 insertions(+), 1 deletions(-)
> >
> > diff --git a/cpu/ppc4xx/start.S b/cpu/ppc4xx/start.S
> > index 9626b65..8f19444 100644
> > --- a/cpu/ppc4xx/start.S
> > +++ b/cpu/ppc4xx/start.S
> > @@ -1432,7 +1432,10 @@ relocate_code:
> >  	dccci	0,0			/* Invalidate data cache, now no longer our stack */
> >  	sync
> >  	isync
> > -	addi	r1,r0,0x0000		/* TLB entry #0 */
> > +#ifndef CFG_TLB_FOR_BOOT_FLASH
> > +#define CFG_TLB_FOR_BOOT_FLASH 0
> > +#endif
> > +	addi	r1,r0,CFG_TLB_FOR_BOOT_FLASH	/* TLB entry (default #0) */
> >  	tlbre	r0,r1,0x0002		/* Read contents */
> >  	ori	r0,r0,0x0c00		/* Or in the inhibit, write through bit */
> >  	tlbwe	r0,r1,0x0002		/* Save it out */
>
> Hi Niklaus,
>
> I don't know the answer to your question, but the following alternate
> construct is cleaner (and cleaner may help get acceptance ;-):
>
> #ifdef CFG_TLB_FOR_BOOT_FLASH
> 	addi	r1,r0,CFG_TLB_FOR_BOOT_FLASH	/* Use defined TLB */
> #else
> 	addi	r1,r0,0x0000		/* Default TLB entry is #0 */
> #endif

Thanks Jerry. This is much clearer and I have no problem adding this version 
in the next merge window, when Niklaus provides a revised patch.

Best regards,
Stefan

=====================================================================
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-0 Fax: +49-8142-66989-80  Email: office at denx.de
=====================================================================

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

end of thread, other threads:[~2007-11-30 19:54 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-11-30 14:01 [U-Boot-Users] [PATCH] PPC4xx: Minimal changes to add vxWorks support Niklaus Giger
2007-11-30 14:11 ` Jerry Van Baren
2007-11-30 19:54   ` Stefan Roese

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox