public inbox for ecos-discuss@sourceware.org
 help / color / mirror / Atom feed
From: "Ricardo Andrino" <ricardo_andrino@web.de>
To: "GaryThomas" <gary@mlbassoc.com>
Cc: ecos-discuss@sources.redhat.com, "NickGarnett" <nickg@ecoscentric.com>
Subject: Re: [ECOS] Run Redboot from flash
Date: Thu, 11 Dec 2003 15:33:00 -0000	[thread overview]
Message-ID: <200312111530.hBBFUjQ04614@mailgate5.cinetic.de> (raw)

Please see my comments below
Thanks

Gary Thomas <gary@mlbassoc.com> schrieb am 11.12.03 15:09:45:
> 
> On Thu, 2003-12-11 at 06:57, Ricardo Andrino wrote:
> > Hello and thank you again, I will do what you say.
> > Now i am running redboot fron RAM and try to run the hello program. I have made the following:
> > 
> > 1)Convert the elf image (with no extension or .elf or .exe) to Binary (.bin) image:
> > for ARM:
> > $arm-elf-objcopy -O binary hello hello.bin
> > 
> > 2)Open terminal:
> > for Linux: Open minicom
> > $ minicom
> > 
> > 3)Set the baud rates & other Uart parameters:
> > usualy 38400 baud + 8bits + no parity + no handshake. Hardware and Software flow control NO.
> > 
> > 4)RedBoot> load -r -m xmodem -b 0x000200c0 ( first memory zone available after download redboot_RAM.elf) 
> > 
> > 5)After issuing the command send the .bin file using XMODEM protocol:
> > for Linux (minicom):
> > issue send file command <Cntl+A, S>, select "send xmodem", type the path to the file (.bin) & send
> > 
> > 6)At the Redboot prompt "RedBoot> " issue the 'go' command:
> > RedBoot> go 0x20100( after 40 position for vectors, i am not sure about this, should be 0x000200c0?)
> > 
> > I should see the application running & the outputs on the terminal window but no output is diplayed but the led D3 light.........(EB40A)
> > 
> > I have made correct the redboot_RAM.elf, connecto to redboot, a hello RAM aplication etc, etc....
> > 
> > Any ideas?
> 
> This doesn't work because the eCos application will be linked to run
> at 0x20000, but you've loaded it to 0x200C0.  If your RedBoot is truly
> using all of that RAM, you'll need to adjust the memory layout for RAM
> applications to start higher.  

> 
> Much simpler would be to tune your RedBoot so that it's memory use is
> less.  There are a number of simple things that you can do to help this.
> Try reducing the number of history lines - that should get it down
> quickly.
***************************************************************************
Now I have downloaded redboot_RAM.elf file( i have followed your instructions) and the avalible memory is (0x0001f0a0-0x000400000) so i could run a Ram program from 0x00020000 couldn't i? But i load the .bin file instead the .elf file ( RedBoot> load -r -m xmodem -b 0x00020000) and no output is displayed too.
****************************************************************************
> Also, don't load ELF images (I assume that's what you tried) with -r.
> This option tells RedBoot not to interpret the image at all.  What you
> ended up doing was executing the ELF header - not exactly ARM code!
> If things are set up correctly, you should be able to just:
>   RedBoot> load -m xm
>   ... send file
>   RedBoot> go
****************************************************************************
If i do that ( download the ELF file instead the .bin) the download is interrupted and display the following message: Attempt to load ELF data to address :0x00008054 whih is not in RAM
***************************************************************************
How could i change the traget.ld to run the aplications in higher address?
> > 
> > Thanks in advance.
> > 
> > 
> > 
> > 
> > 
> > 
> > 
> > Nick Garnett <nickg@ecoscentric.com> schrieb am 11.12.03 12:35:45:
> > > 
> > > <ricardo_andrino@web.de> writes:
> > > 
> > > > Hello,
> > > >
> > > > I have built redboot (RAM start up mode) and i have followed
> > > > all the instructions for EB40A board.All run correct but after
> > > > programming the flash memory( fi wr -f 0x01100000 -b %{FREEMEMLO} -l
> > > > 0x10000), the Prompt Redboot> doesn't allow me to type any command
> > > > (hangs up)and when i set JP1 to the user position and make a reset,
> > > > all leds light and redboot doesn't allow me to type any command
> > > > too. Any idea?
> > > > 
> > > > Once Redboot is good installed in flash the way to run it is typing
> > > > minicom and a redboot prompt must on the screen?
> > > > 
> > > 
> > > If you are seeing RedBoot output the prompt then it should be ready to
> > > accept input. It is very rare for one direction to work and the other
> > > not. Check that minicom is not set up to expect hardware flow
> > > control. Presumably you loaded a RAM RedBoot via Angel and then
> > > downloaded and flashed the ROM RedBoot using that. If the RAM RedBoot
> > > worked I cannot see why the ROM one fails. Try rebuilding the ROM
> > > RedBoot from scratch, in a clean directory, it's a longshot but maybe
> > > it was misconfigured in some way.
> > > 
> > > 
> > > -- 
> > > Nick Garnett                    eCos Kernel Architect
> > > http://www.ecoscentric.com      The eCos and RedBoot experts
> > > 
> > > 
> > > -- 
> > > Before posting, please read the FAQ: http://sources.redhat.com/fom/ecos
> > > and search the list archive: http://sources.redhat.com/ml/ecos-discuss
> > > 
> > 
> > 
> > ______________________________________________________________________________
> > WEB.DE FreeMail wird 5 Jahre jung! Feiern Sie mit uns und
> > nutzen Sie die neuen Funktionen http://f.web.de/features/?mc=021130
> -- 
> Gary Thomas <gary@mlbassoc.com>
> MLB Associates
> 


______________________________________________________________________________
Horoskop, Comics, VIPs, Wetter, Sport und Lotto im WEB.DE Screensaver1.2
Kostenlos downloaden: http://screensaver.web.de/?mc=021110


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

             reply	other threads:[~2003-12-11 15:30 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2003-12-11 15:33 Ricardo Andrino [this message]
2003-12-11 16:18 ` Gary Thomas
  -- strict thread matches above, loose matches on Subject: below --
2003-12-27  9:19 Ricardo Andrino
2003-12-24 17:49 Ricardo Andrino
2003-12-25 13:43 ` Gary Thomas
2003-12-17 12:16 Ricardo Andrino
2003-12-16 14:47 Ricardo Andrino
2003-12-16 14:49 ` Nick Garnett
2003-12-16 15:43   ` Gary Thomas
2003-12-12 13:59 Ricardo Andrino
2003-12-12 15:13 ` Nick Garnett
     [not found] <200312121251.hBCCpYQ17140@mailgate5.cinetic.de>
2003-12-12 13:13 ` Gary Thomas
2003-12-12 12:12 Ricardo Andrino
2003-12-12 12:32 ` Gary Thomas
2003-12-12 11:53 Ricardo Andrino
2003-12-12 12:05 ` Gary Thomas
2003-12-12 10:35 Ricardo Andrino
2003-12-12 11:51 ` Gary Thomas
2003-12-12 13:46 ` Nick Garnett
2003-12-11 16:31 Ricardo Andrino
2003-12-11 14:01 Ricardo Andrino
2003-12-11 14:07 ` Gary Thomas
2003-12-11 14:38 ` Nick Garnett
2003-12-10 15:12 ricardo_andrino
2003-12-11 11:35 ` Nick Garnett

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=200312111530.hBBFUjQ04614@mailgate5.cinetic.de \
    --to=ricardo_andrino@web.de \
    --cc=ecos-discuss@sources.redhat.com \
    --cc=gary@mlbassoc.com \
    --cc=nickg@ecoscentric.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).