[PATCH 4/6] ARM: mxc: don't allow to compile together i.MX51 and i.MX53

Nicolas Pitre nico at fluxnic.net
Tue Apr 12 22:28:29 EDT 2011


On Tue, 12 Apr 2011, Uwe Kleine-König wrote:

> Hello Jason,
> 
> On Tue, Apr 12, 2011 at 05:16:44PM +0800, Jason Liu wrote:
> > 2011/4/11 Uwe Kleine-König <u.kleine-koenig at pengutronix.de>:
> > > On Sun, Apr 10, 2011 at 10:02:03PM -0400, Nicolas Pitre wrote:
> > >> On Sun, 10 Apr 2011, Uwe Kleine-König wrote:
> > >>
> > >> > The two SoCs have different PHYS_OFFSETs so it's not (yet) possible to
> > >> > compile a single (working) kernel for these.
> > >>
> > >> Really?
> > >>
> > >> Have a look at CONFIG_ARM_PATCH_PHYS_VIRT.  It's in mainline and fully
> > >> functional.
> > > I'm aware of this config item. But still if it's off there must be a
> > > distinction that's provided by this patch. Currently you can build a
> > > kernel for i.MX51 + i.MX53 but IIRC it works on no machine.
> > > When considering ARM_PATCH_PHYS_VIRT there are more SoCs that could be
> > > built into a single image and so needs a more complicated logic.
> > > And I don't want to depend on ARM_PATCH_PHYS_VIRT (yet), e.g. because
> > > it's new and still depends on EXPERIMENTAL.
> > 
> > Uwe, did you enable CONFIG_AUTO_ZRELADDR=y? Besides this if use uboot to
> > load uImage and run, it also need fix uboot since uImage will hard
> > code the load address.
> > In other word, uImage will have mx53 PHY_OFFSET for both mx51 and
> > mx53, which will
> > make mx51 failed with bootm command.
> an uboot image (at least the ones created by the kernel build system's
> make uImage) is more system dependant than the kernel image itself.
> There is nothing that can be fixed considering that Russell doesn't want
> more sophisticated support for u-boot images for ARM.
> So you have to create the uImage yourself.

The U-Boot image format is broken for multi-SOC kernels.  It insists on 
having an absolute address for the placement of that image in RAM when 
loaded which prevents you from using a single kernel image on multiple 
SOCs with different RAM offsets.

The solution is to stop using uImage and simply load a standard kernel 
zImage at the appropriate place in memory according to the hardware you 
have.  And if your zImage is built with CONFIG_AUTO_ZRELADDR and 
CONFIG_ARM_PATCH_PHYS_VIRT then it'll be able to detect and use a 
different PHYS_OFFSET values with the same kernel binary.


Nicolas


More information about the linux-arm-kernel mailing list