[PATCH v2] zImage-arm: get rid of static offset

Wang Nan wangnan0 at huawei.com
Mon May 5 05:21:53 PDT 2014


On 2014/5/2 10:11, Simon Horman wrote:
> On Thu, May 01, 2014 at 12:42:05PM +0200, Daniel Mack wrote:
>> The code in arch/arm/kexec-zImage-arm.c currently enforces a hard limit
>> on the maximum size a dtb blob can occupy. This limit is set to 32k,
>> which is quite low for device tree blobs nowadays.
>>
>> Get rid of this assumption, and calculate the added size dynamically.
>> For this, we need to slurp in the dtb file earlier in order to
>> determine its size, because the memory hole allocation for 'base'
>> takes this size into account.
>>
>> For ATAGs, we keep the current value of 32k, which should in fact be
>> enough.
>>
>> With this change in place, the 'DTB too large!' error message can go
>> away. Successfully tested on a AM335x board.
>>
>> Signed-off-by: Daniel Mack <zonque at gmail.com>
>> [s.neumann at raumfeld.com: Fix ATAGs case]
>> Reported-and-tested-by: Sven Neumann <s.neumann at raumfeld.com>
>> ---
>> v2 includes a fixup from Sven Neumann for ATAGs driven boards.
>> The patch is in tested on a larger number of machines by now.
> 
> Thanks, applied.
> 

After applying this patch, the second kernel on qemu never works. I have
posted a patch on it to solve this problem:

 [kexec-tools][PATCH] zImage-arm: bugfix: load kernel at TEXT_OFFSET

I think there must be some misunderstanding about "DTB too large!" problem.
DTB is pasted after initrd by kexec, not before the kernel. See following figures:

When using DTB:

|<--- TEXT_OFFSET (0x8000) ------->|
|<-- atags, DTB *is not here* ---->|<-- zImage -->|<-- initrd -->|<-- *DTB is here* -->|

When using ATAGS:

|<-- TEXT_OFFSET (0x8000) ->|
|<-- 0x1000 --|<-- atags -->|<-- zImage -->|<-- initrd -->|

It seems the original code is incorrect:

      if (base + atag_offset + dtb_length > base + offset) { // offset is TEXT_OFFSET
              fprintf(stderr, "DTB too large!\n");
              return -1;
      }

This code assumes dtb is loaded between atags_offset and zImage, can use only 28KiB memory,
same as atags. However, dtb is loaded after initrd, no upper limit is taken place, so simply
remove the above checking is enough. In my patch, I use locate_holes() to endure there is enough
space for initrd and dtb.

> _______________________________________________
> kexec mailing list
> kexec at lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/kexec
> 





More information about the kexec mailing list