linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
* IBM405GP startup-code
@ 2000-06-29  8:49 Stefan Roese
  2000-06-29 19:01 ` Scott Anderson
  0 siblings, 1 reply; 4+ messages in thread
From: Stefan Roese @ 2000-06-29  8:49 UTC (permalink / raw)
  To: Linuxppc-Embedded


Hi,

we are currently developing a cpci board with the ibm 405gp ppc. We would
like to run linux on this board. Now i have to write the startup-code for
this board (init of cpu, sdram-controller, etc.). Has anybody allready
written some startup-code for the 405gp? Would you share this code with us
to speed up our developement?

Regards,
Stefan


** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/

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

* Re: IBM405GP startup-code
@ 2000-06-29 13:45 Grant Erickson
  0 siblings, 0 replies; 4+ messages in thread
From: Grant Erickson @ 2000-06-29 13:45 UTC (permalink / raw)
  To: Stefan Roese; +Cc: linuxppc-embedded


On 6/29/2000 1:49 AM, Stefan Roese wrote:
>we are currently developing a cpci board with the ibm 405gp ppc. We would
>like to run linux on this board. Now i have to write the startup-code for
>this board (init of cpu, sdram-controller, etc.). Has anybody allready
>written some startup-code for the 405gp? Would you share this code with us
>to speed up our developement?

If you purchase the 405GP BSP development kit (with or without the
"Walnut" reference board) from IBM, they provide some basic boot ROM code
that you may use and modify.

Regards,

Grant

 Grant Erickson                       University of Minnesota Alumni
  o mail:erick205@tc.umn.edu                              1996 BSEE
  o http://www.tc.umn.edu/~erick205                       1998 MSEE


** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/

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

* RE: IBM405GP startup-code
@ 2000-06-29 14:06 Paugam Luc
  0 siblings, 0 replies; 4+ messages in thread
From: Paugam Luc @ 2000-06-29 14:06 UTC (permalink / raw)
  To: 'Grant Erickson'; +Cc: 'linux-ppc Mailing-List'


Hi grant,

>From several days now, it seems that your web server is down or unreachable.
I try to go to http://www.lcse.umn.edu/~grant/Linux/index.html to get your
latest status on the 4xx port.

Thanks for your collaboration.
Best Regards

Luc

> -----Original Message-----
> From:	Grant Erickson [SMTP:erick205@tc.umn.edu]
> Sent:	Thursday, June 29, 2000 3:45 PM
> To:	Stefan Roese
> Cc:	linuxppc-embedded@lists.linuxppc.org
> Subject:	Re: IBM405GP startup-code
>
>
> On 6/29/2000 1:49 AM, Stefan Roese wrote:
> >we are currently developing a cpci board with the ibm 405gp ppc. We would
> >like to run linux on this board. Now i have to write the startup-code for
> >this board (init of cpu, sdram-controller, etc.). Has anybody allready
> >written some startup-code for the 405gp? Would you share this code with
> us
> >to speed up our developement?
>
> If you purchase the 405GP BSP development kit (with or without the
> "Walnut" reference board) from IBM, they provide some basic boot ROM code
> that you may use and modify.
>
> Regards,
>
> Grant
>
>  Grant Erickson                       University of Minnesota Alumni
>   o mail:erick205@tc.umn.edu                              1996 BSEE
>   o http://www.tc.umn.edu/~erick205                       1998 MSEE
>
>

** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/

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

* Re: IBM405GP startup-code
  2000-06-29  8:49 IBM405GP startup-code Stefan Roese
@ 2000-06-29 19:01 ` Scott Anderson
  0 siblings, 0 replies; 4+ messages in thread
From: Scott Anderson @ 2000-06-29 19:01 UTC (permalink / raw)
  To: Stefan Roese; +Cc: Linuxppc-Embedded


Stefan Roese wrote:
> we are currently developing a cpci board with the ibm 405gp ppc. We would
> like to run linux on this board. Now i have to write the startup-code for
> this board (init of cpu, sdram-controller, etc.). Has anybody allready
> written some startup-code for the 405gp? Would you share this code with us
> to speed up our developement?

We've GNUified the IBM 405GP boot code.  If you want to check it out,
grab these three files:

    ftp://ftp.mvista.com/pub/unsupported/ppc-405gp-boot/405gp_183_beta.tgz
    ftp://ftp.mvista.com/pub/unsupported/ppc-405gp-boot/405gp_fixup
    ftp://ftp.mvista.com/pub/unsupported/ppc-405gp-boot/405gp_myfiles.tgz

The first file is the virgin sources as obtained from the IBM Board
Support Package for the 405GP reference kit.  The second file is a shell
script that does the GNUification.  The third file is a tarball that
contains the files needed by the script.  Throw all three of these files
down in one place and then run the fixup script passing it the name of
the subdirectory that should be created to hold the GNUified stuff.  For
example:

    ./405gp_fixup 405gp_183_beta

It'll sit there for a long time (a couple of minutes) and then finally,
give you a prompt back.  Now that you've done that, cd down into the
directory that contains the "good" stuff:

    cd 405gp_183_beta/osopen/m405_evb/openbios

You can now kick off a make:

    make

It will create a 128k file named openbios.bin that is a binary image.
If you have a IBM Walnut board, you can simply burn this image into the
upper 128k of the Walnut's 512k FLASH (i.e. at 0x60000-0x7FFFF).

I should note that I use the tools from our CDK version 1.0 on an x86
targeting the PowerPC.  In other words, it is going to try to run
powerpc-linux-gcc, powerpc-linux-ar and powerpc-linux-ld.  If you don't
have these tools, they can also be downloaded.  You might want to check
out:

   http://www.mvista.com/products/download.html

    Scott Anderson
    scott_anderson@mvista.com   MontaVista Software Inc.
    (408)328-9214               490 Potrero Ave.
    http://www.mvista.com       Sunnyvale, CA  94086

** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/

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

end of thread, other threads:[~2000-06-29 19:01 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2000-06-29  8:49 IBM405GP startup-code Stefan Roese
2000-06-29 19:01 ` Scott Anderson
  -- strict thread matches above, loose matches on Subject: below --
2000-06-29 13:45 Grant Erickson
2000-06-29 14:06 Paugam Luc

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).