public inbox for ecos-discuss@sourceware.org
 help / color / mirror / Atom feed
* [ECOS] Could anyone answer me this post thank you very much,  Linker script question? where is the fixed_vectors section?(Online waiting for help)
@ 2003-01-23 23:51 Qiang Huang
  2003-01-24  1:20 ` Gary D. Thomas
  0 siblings, 1 reply; 7+ messages in thread
From: Qiang Huang @ 2003-01-23 23:51 UTC (permalink / raw)
  To: Ecos-Discuss



-----Original Message-----
From: ecos-discuss-owner@sources.redhat.com
[mailto:ecos-discuss-owner@sources.redhat.com]On Behalf Of Qiang Huang
Sent: 23 January 2003 21:45
To: Ecos-Discuss
Subject: [ECOS] Linker script question? where is the fixed_vectors
section?ARM


Hi all:
   In a rom startup linker script I saw these and I can't figure this
out.(ARM target)

MEMORY
{
    ram : ORIGIN = 0, LENGTH = 0x8000000
    rom : ORIGIN = 0x40000000, LENGTH = 0x100000
}

SECTIONS
{
    SECTIONS_BEGIN
    SECTION_rom_vectors (rom, 0x40000000, LMA_EQ_VMA)
    SECTION_text (rom, ALIGN (0x4), LMA_EQ_VMA)
    SECTION_fini (rom, ALIGN (0x4), LMA_EQ_VMA)
    SECTION_rodata (rom, ALIGN (0x4), LMA_EQ_VMA)
    SECTION_rodata1 (rom, ALIGN (0x4), LMA_EQ_VMA)
    SECTION_fixup (rom, ALIGN (0x4), LMA_EQ_VMA)
    SECTION_gcc_except_table (rom, ALIGN (0x4), LMA_EQ_VMA)
    SECTION_fixed_vectors (ram, 0x20, LMA_EQ_VMA)
    SECTION_data (ram, 0x8000, FOLLOWING (.gcc_except_table))
    SECTION_bss (ram, ALIGN (0x4), LMA_EQ_VMA)
    CYG_LABEL_DEFN(__heap1) = ALIGN (0x8);
    SECTIONS_END
}

if the flash is originally located at 0x0000H, then if I create a S-record
file and want to download it to the rom, where will be the section:
fixed_vectors stored? because it is defined as:     SECTION_fixed_vectors
(ram, 0x20, LMA_EQ_VMA),  according to LMA_EQ_VMA it should be stored at the
same address as the VMA as here in the ram, how is this interpreted in the
S-record file (file for downloading into the flash memory)? Thanks a lot.

BTW the order of the sections in the flash memory after the S-record file
downloaded is:
0x0000H    1. rom_vectors
continue.   2. text
cont.           3. fini
cont.           4. rodata
cont.           5. rodata1
cont.           6. fixup
cont.           7. gcc_exception_table
cont.           8. data

Is the correct? if so where is the fixed_vectors section stored in
flash(rom).

Thanks a lot




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


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

^ permalink raw reply	[flat|nested] 7+ messages in thread
* RE: [ECOS] Newbie
@ 2003-01-24  9:35 Ravi Kumar B S
  0 siblings, 0 replies; 7+ messages in thread
From: Ravi Kumar B S @ 2003-01-24  9:35 UTC (permalink / raw)
  To: Santosh Bhat, eCos Discussion

It is ported on the ARM7tdmi which is there in the ARM Evaluator board.

/Ravi


> -----Original Message-----
> From: Santosh Bhat [mailto:sanbhat@globaledgesoft.com]
> Sent: Monday, January 20, 2003 2:18 PM
> To: eCos Discussion
> Subject: [ECOS] Newbie
> 
> 
> Hi List ,  I am a newbie to this list.I wnated to know
> 1)Is the ecos supported on ARM7tdmi (without mmu) (I just 
> read on the web
> page that it supports arm7tdmi but just wanted to make sure 
> it works on a
> non mmu machine )
> 2)Has anyone ported the Ecos to Samsung S3C44BOX ?  (The 
> archive search
> could not get me any valid result !!)
> 
> Thanx in advance for your reply.
> Regards
> Santosh Bhat
> 
> 
> 
> -- 
> Before posting, please read the FAQ: 
> http://sources.redhat.com/fom/ecos
> and search the list archive: http://sources.redhat.com/ml/ecos-discuss
> 
> 


DISCLAIMER:
This message (including attachment if any) is confidential and may be privileged. Before opening attachments please check them for viruses and defects. MindTree Consulting Private Limited (MindTree) will not be responsible for any viruses or defects or any forwarded attachments emanating either from within MindTree or outside. If you have received this message by mistake please notify the sender by return  e-mail and delete this message from your system. Any unauthorized use or dissemination of this message in whole or in part is strictly prohibited.  Please note that e-mails are susceptible to change and MindTree shall not be liable for any improper, untimely or incomplete transmission.

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

^ permalink raw reply	[flat|nested] 7+ messages in thread
* [ECOS] newbie
@ 1999-10-29 17:07 Lance Uyehara
  1999-10-30  6:59 ` Jonathan Larmour
  0 siblings, 1 reply; 7+ messages in thread
From: Lance Uyehara @ 1999-10-29 17:07 UTC (permalink / raw)
  To: ecos-discuss

Hello,

I'm in the evaluation stage of a project, and we're looking at ecos as a
potential kernel solution. I'm currently looking at the ecos configuration
tool and wondering if people are using this.

It seems to me like specifying arm pid or arm aeb (for example) is far too
restricting. Wouldn't we want something more like arm720T or arm7TDMI?
Because any project I develop won't be targeted to run on any development
board, but rather would be targeted to run on our actual product board.

So I guess my main question is are people using the configuration tool, or
using the repository with hand built makefiles, or is it some combination
of the two?

Thanks,
Lance Uyehara
lance@nuvomedia.com



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

end of thread, other threads:[~2003-01-24  9:13 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-01-23 23:51 [ECOS] Could anyone answer me this post thank you very much, Linker script question? where is the fixed_vectors section?(Online waiting for help) Qiang Huang
2003-01-24  1:20 ` Gary D. Thomas
2003-01-24  6:48   ` Jonathan Larmour
2003-01-24  9:13     ` [ECOS] Newbie Santosh Bhat
  -- strict thread matches above, loose matches on Subject: below --
2003-01-24  9:35 Ravi Kumar B S
1999-10-29 17:07 [ECOS] newbie Lance Uyehara
1999-10-30  6:59 ` Jonathan Larmour

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).