public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot-Users] boot kernel from u-boot
@ 2006-10-18  2:40 Reeve Yang
  2006-10-18  7:18 ` Vladimir Farcaller Pouzanov
  0 siblings, 1 reply; 5+ messages in thread
From: Reeve Yang @ 2006-10-18  2:40 UTC (permalink / raw)
  To: u-boot

My customized board has MPC8345E (almost same as mpc8349) processor and 128M
sdram.  Now we're trying to boot kernel from u-boot, I downloaded kernel
image on locate 0xff300000, and I verified the flash contents which are
written successfuly. However, when I try to boot it, it prints some
traceback then reset.

=> go 0xff300000
## Starting application at 0xFF300000 ...
NIP: FF300000 XER: 00000000 LR: 0FFE17A8 REGS: 0f5d0c60 TRAP: 0700 DAR:
100D3000
MSR: 0002b002 EE: 1 PR: 0 FP: 1 ME: 1 IR/DR: 00

GPR00: 0FFE1798 0F5D0D50 CFD364C5 00000001 0F5D3334 00000010 FFFFFFFE
00000007
GPR08: 00000041 00000020 00000000 FFFFFFFF 00000030 9C4344C7 10000000
100D3000
GPR16: 00000000 00000000 00000000 0000000B 00000000 00000000 00000001
00000000
GPR24: 00000000 00000000 00000000 0F5D3334 FF300000 0F5D0F5C 10000618
00000001
Call backtrace:
0FFE1798 0FFE9A18 0FFE9D38 0FFE9FC0 0FFEB024 0FFEB20C 0FFE0B64
0FFD7670 0FFD64D8
Program Check Exception
Resetting the board.

Could anyone give some hints what could be problem? Does code enter kernel
or still in u-boot? How to decode traceback on linux? objdump?

Thanks.

- Reeve
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.denx.de/pipermail/u-boot/attachments/20061018/00cf27e7/attachment.htm 

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

* [U-Boot-Users] boot kernel from u-boot
  2006-10-18  2:40 [U-Boot-Users] boot kernel from u-boot Reeve Yang
@ 2006-10-18  7:18 ` Vladimir Farcaller Pouzanov
  2006-10-18 19:00   ` Reeve Yang
  0 siblings, 1 reply; 5+ messages in thread
From: Vladimir Farcaller Pouzanov @ 2006-10-18  7:18 UTC (permalink / raw)
  To: u-boot

Reeve Yang wrote:
> => go 0xff300000

you need to upload uImage and boot it via 'bootm'

-- 
Sincerely,
Vladimir "Farcaller" Pouzanov
http://hackndev.com

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

* [U-Boot-Users] boot kernel from u-boot
  2006-10-18  7:18 ` Vladimir Farcaller Pouzanov
@ 2006-10-18 19:00   ` Reeve Yang
  2006-10-18 19:28     ` Wolfgang Denk
  2006-10-18 19:41     ` Ben Warren
  0 siblings, 2 replies; 5+ messages in thread
From: Reeve Yang @ 2006-10-18 19:00 UTC (permalink / raw)
  To: u-boot

Enn, interesting. What's the difference then?

I tried to use bootm, now I don't say exception, but system just hangs.

On 10/18/06, Vladimir Farcaller Pouzanov <farcaller@gmail.com> wrote:
>
> Reeve Yang wrote:
> > => go 0xff300000
>
> you need to upload uImage and boot it via 'bootm'
>
> --
> Sincerely,
> Vladimir "Farcaller" Pouzanov
> http://hackndev.com
>
>
> -------------------------------------------------------------------------
> Using Tomcat but need to do more? Need to support web services, security?
> Get stuff done quickly with pre-integrated technology to make your job
> easier
> Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> _______________________________________________
> U-Boot-Users mailing list
> U-Boot-Users at lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/u-boot-users
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.denx.de/pipermail/u-boot/attachments/20061018/11004f16/attachment.htm 

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

* [U-Boot-Users] boot kernel from u-boot
  2006-10-18 19:00   ` Reeve Yang
@ 2006-10-18 19:28     ` Wolfgang Denk
  2006-10-18 19:41     ` Ben Warren
  1 sibling, 0 replies; 5+ messages in thread
From: Wolfgang Denk @ 2006-10-18 19:28 UTC (permalink / raw)
  To: u-boot

In message <198592450610181200n3ad16d9dg79e209aec19a46@mail.gmail.com> you wrote:
> 
> Enn, interesting. What's the difference then?

"bootm" works (assuming you have a working kernel image), while  "go"
cannot work.

> I tried to use bootm, now I don't say exception, but system just hangs.

Sp you have problems with your kernel port / configuration.

> On 10/18/06, Vladimir Farcaller Pouzanov <farcaller@gmail.com> wrote:
...

Please don't top post / full quote.

And please stop posting HTML on this list.

Best regards,

Wolfgang Denk

-- 
Software Engineering:  Embedded and Realtime Systems,  Embedded Linux
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
They weren't that important. They were merely at the top. The  people
who  really  run organizations are usually found several levels down,
where it's still possible to get things done.
                                      - Terry Pratchett, _Small Gods_

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

* [U-Boot-Users] boot kernel from u-boot
  2006-10-18 19:00   ` Reeve Yang
  2006-10-18 19:28     ` Wolfgang Denk
@ 2006-10-18 19:41     ` Ben Warren
  1 sibling, 0 replies; 5+ messages in thread
From: Ben Warren @ 2006-10-18 19:41 UTC (permalink / raw)
  To: u-boot

On Wed, 2006-10-18 at 19:00 +0000, Reeve Yang wrote:

> Enn, interesting. What's the difference then?
> 
> I tried to use bootm, now I don't say exception, but system just
> hangs.


Please do yourself a favor and read every section of this.  Then read it
again:

http://www.denx.de/wiki/DULG/Manual




-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.denx.de/pipermail/u-boot/attachments/20061018/154b3e56/attachment.htm 

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

end of thread, other threads:[~2006-10-18 19:41 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-10-18  2:40 [U-Boot-Users] boot kernel from u-boot Reeve Yang
2006-10-18  7:18 ` Vladimir Farcaller Pouzanov
2006-10-18 19:00   ` Reeve Yang
2006-10-18 19:28     ` Wolfgang Denk
2006-10-18 19:41     ` Ben Warren

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox