public inbox for ecos-discuss@sourceware.org
 help / color / mirror / Atom feed
From: Grant Edwards <grante@visi.com>
To: Bart Veer <bartv@redhat.com>
Cc: james_ch1@sina.com, ecos-discuss@sources.redhat.com
Subject: Re: [ECOS] ecos start in ram
Date: Fri, 16 Feb 2001 07:48:00 -0000	[thread overview]
Message-ID: <20010216095229.A880@visi.com> (raw)
In-Reply-To: <200102161432.f1GEWNJ04541@sheesh.cambridge.redhat.com>

On Fri, Feb 16, 2001 at 02:32:23PM +0000, Bart Veer wrote:
> 
>     James>         now I am porting eCos to my test board (based
>     James> ARM7TDMI), the ROM address is 0x0 and the RAM address is
>     James> 0xc000000, but in ecos the RAM address is 0x0, so how to
>     James> config memory layout to run Redboot and eCos? I also think
>     James> the vectors.S file should be changed, will you tell any?

For a while I ran eCos with ROM at 0x0.  It's a pain.  You'll
have to modify vectors.S to move the "fixed vectors" stuff
somewhere else (the vsr_table is the part that seemed to
matter).  Then you'll have to modify the routines that write to
the vsr_table -- last time I looked, some of them assumed it
was at a particular hard-wired address.

You'll also have to set up your ROM so that the interrupt
vectors (except for reset) point to code that does indirect
jumps via a jump table in RAM.  NB: This table is different
than the vsr_table in the fixed vectors sections.  Then you
need to modify the startup code in vectors.S so that it fills
in this table instead of of locations at 0x00-0x20.

The really painful part is that you have modified
"architecture" HAL files that aren't part of your platform HAL.
Updating to newer versions of eCos requires re-doing the same
changes again to the architecture HAL files.

> IIRC on some ARM processors you normally need RAM at location
> 0x0, because that is where interrupt vectors etc. are held. You
> also need ROM at location 0x0 because bootstraps happen from
> that address. In the absence of an MMU, the normal way to
> resolve this is to have a memory remap facility: on power up
> there is ROM at location 0x0, so bootstrap can proceed; early
> on during the bootstrap, the remap switch is toggled and the
> memory map changes; the ROM moves somewhere else in memory, and
> there is now RAM at location 0x0 so that the interrupt vectors
> etc. can be updated.

Re-mapping is _far_ easier than what I previously described.
You can still run with your code in ROM if you want to, but
it's easier debugging if code is in RAM.

> So for a typical eCos application, the RAM might be at
> 0xC0000000 immediately after power-up but it will be remapped
> to 0x0 early on. Hence the eCos memory map will have RAM at
> 0x0.
> 
> The exact details are of course hardware-specific, and will
> have to be addressed by your platform port.

If you don't have a way to remap memory, make the hardware guys
add a way.  It only takes a few gates and a flip-flop.  They've
probably got more than enough extra capacity in that PLD.

-- 
Grant Edwards
grante@visi.com

      reply	other threads:[~2001-02-16  7:48 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2001-02-15 16:59 james chen
2001-02-15 19:12 ` Gary Thomas
2001-02-15 21:18   ` james chen
2001-02-16  6:32 ` Bart Veer
2001-02-16  7:48   ` Grant Edwards [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20010216095229.A880@visi.com \
    --to=grante@visi.com \
    --cc=bartv@redhat.com \
    --cc=ecos-discuss@sources.redhat.com \
    --cc=james_ch1@sina.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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 read-only IMAP folder(s) and NNTP newsgroup(s).