Continuing kallsyms failures - large kernels, XIP kernels, and large XIP kernels
From: nico@fluxnic.net (Nicolas Pitre)
Date: 2015-02-04 01:59:15
On Wed, 4 Feb 2015, Russell King - ARM Linux wrote:
It looks like we have cases where this falsely triggers. Consider EFM32: CONFIG_DRAM_BASE=0x88000000 CONFIG_DRAM_SIZE=0x00400000 CONFIG_FLASH_MEM_BASE=0x8c000000 CONFIG_FLASH_SIZE=0x01000000 This means that we quite legally end up with the .data section below the .text section, which makes: ASSERT((_data >= __data_loc), "Text section oversize") falsely trigger. The linker has the capacity to specify regions of ROM and RAM in the linker file, I wonder if we should be using those for XIP. Merely adding the MEMORY table to the linker file is not good enough - we also need to explicitly tell the linker which memory regions to place the output sections, otherwise the linker ends up making assumptions. What that means is... asm-generic/vmlinux.lds.h breaks for us. Any ideas? I think using the MEMORY table would be the best approach, because that should allow us to properly verify that the resulting binary should fit in the memory regions.
Maybe simply having an assert() on the size of the .text section could be all that is needed. We already know the maximum size in advance. Nicolas