Dear Hebbar, In message <[EMAIL PROTECTED]> you wrote: > > If you can tell me what exactly is wrong with ARM startup, i will try to > find a solution. Can u point the platform and its startup functions where it > is been done correctly. Then i will try to fixup th error in ARM.
The fundamental problem with the ARM port is that on ARM, U-Boot gets linked to a fixed address in RAM. We inherited this deficiency from the ARMBoot port - when the old PPCBoot (PowerPC only) got ported to ARM, the developers thought that the whole relocation as implemented in PPCBoot was too complicated and just not worth the effort, so they did what they did. BTW: later, the MIPS port copied the ARM implementation, unfortunately. The advantage of the PowerPC implementation with relocation is that we can measure the actual size of memory present on the board, and then relocate U-Boot to the very end of the RAM, leaving nearly th whole RAM usable as one big contiguous area for "applications" like loading Linux kernel, ramdisk, etc. The problem with the ARM implementation is that the link address is fixed, i. e. it cannot be adjusted to varying RAM sizes. If you have a board which can be fit with either 32 or with 64 MB of RAM, you have to link U-Boot so that it sits at the end of the 32 MB area. Which means that on a 64 MB system it will sit right in the middle of the RAM, splitting the RAM in two small chunks. Try to explain to a customer why he has some 60+ MB of free RAM on the system but he still cannot load a 33 MB ramdisk image... There are more consequences from this design - on PowerPC we can implement "protected RAM", framebuffer memory we can share with Linux, log buffer memory we can share with Linux, etc. - all these need to sit at the end of the available physical RAM. On PowerPC, it goes without saying that all this works perfectly fine with variable RAM sizes (so we can have one U-Boot image working for example with different DIMM modules). On ARM, you have to configure U-Boot for a fixed memory size. Best regards, Wolfgang Denk -- DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: [EMAIL PROTECTED] Respect is a rational process -- McCoy, "The Galileo Seven", stardate 2822.3 _______________________________________________ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot