public inbox for ecos-discuss@sourceware.org
 help / color / mirror / Atom feed
From: airdelroy <aaron-nabble@planetrichardson.net>
To: ecos-discuss@ecos.sourceware.org
Subject: Re: [ECOS] RAM Images on AT91SAM7s256
Date: Wed, 02 Apr 2008 01:48:00 -0000	[thread overview]
Message-ID: <16435229.post@talk.nabble.com> (raw)
In-Reply-To: <e37cb5250801290055p6e6ef815r8a11e9decffe50f1@mail.gmail.com>


I am also trying to get a RAM image running on an AT91SAM7s256.  I ultimately
will run my applications from the flash, would like to debug in RAM. 
Currently I can load via sam-ba a rom image that will communicate over the
serial port, so I have this to start from.

Sam-ba I believe uses the first 8k of RAM.  So I think that the ldi file
should look like this:


MEMORY
{
    ram : ORIGIN = 0x00202000, LENGTH = 0xE000
}

SECTIONS
{
    SECTIONS_BEGIN
    SECTION_rom_vectors (ram, 0x00202000, LMA_EQ_VMA)
    SECTION_fixed_vectors (ram, 0x00200040, LMA_EQ_VMA)
    SECTION_text (ram, ALIGN (0x4), LMA_EQ_VMA)
    SECTION_fini (ram, ALIGN (0x4), LMA_EQ_VMA)
    SECTION_rodata (ram, ALIGN (0x4), LMA_EQ_VMA)
    SECTION_rodata1 (ram, ALIGN (0x4), LMA_EQ_VMA)
    SECTION_fixup (ram, ALIGN (0x4), LMA_EQ_VMA)
    SECTION_gcc_except_table (ram, ALIGN (0x4), LMA_EQ_VMA)
    SECTION_data (ram, ALIGN (0x4), LMA_EQ_VMA)
    SECTION_bss (ram, ALIGN (0x4), LMA_EQ_VMA)
    CYG_LABEL_DEFN(__heap1) = ALIGN (0x8);
    SECTIONS_END
}

Is the SECTION_fixed_vectors section correct?  Or should it be:
SECTION_fixed_vectors (ram, ALIGN (0x1), LMA_EQ_VMA) 

I think I found my version in some other arm variant...

Also should I modify these?
#define CYGMEM_REGION_ram (0x00200000)
#define CYGMEM_REGION_ram_SIZE (0x10000)

Now I need to modify startup code for vector memory remapping.  Where do I
find the RAM code that needs to be modified?

thanks,
Aaron
-- 
View this message in context: http://www.nabble.com/RAM-Images-on-AT91SAM7s256-tp15138638p16435229.html
Sent from the Sourceware - ecos-discuss mailing list archive at Nabble.com.


-- 
Before posting, please read the FAQ: http://ecos.sourceware.org/fom/ecos
and search the list archive: http://ecos.sourceware.org/ml/ecos-discuss

  reply	other threads:[~2008-04-02  1:48 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-01-28 16:08 Alois Z.
2008-01-28 16:47 ` Andrew Lunn
2008-01-28 17:06   ` Alois Z.
2008-01-28 17:10     ` Alois Z.
2008-01-28 17:19     ` Andrew Lunn
2008-01-28 18:36       ` Alois Z.
2008-01-29 12:19         ` Tom Deconinck
2008-04-02  1:48           ` airdelroy [this message]
2008-04-02  6:12             ` Tom Deconinck
2008-04-05  0:14               ` airdelroy

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=16435229.post@talk.nabble.com \
    --to=aaron-nabble@planetrichardson.net \
    --cc=ecos-discuss@ecos.sourceware.org \
    /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).