On Tue, 21 Jan 2020, Geert Uytterhoeven wrote: > Currently, the start address of physical memory is obtained by masking > the program counter with a fixed mask of 0xf8000000. This mask value > was chosen as a balance between the requirements of different platforms. > However, this does require that the start address of physical memory is > a multiple of 128 MiB, precluding booting Linux on platforms where this > requirement is not fulfilled. > > Fix this limitation by obtaining the start address from the passed DTB > instead, if available. Note that for now this is limited to DTBs passed > explicitly by the boot loader. DTBs appended to a zImage or uImage are > not inspected. Fall back to the traditional method when needed. > > This allows to boot Linux on r7s9210/rza2mevb using the 64 MiB of SDRAM > on the RZA2MEVB sub board, which is located at 0x0C000000 (CS3 space), > i.e. not at a multiple of 128 MiB. > > Suggested-by: Nicolas Pitre <nico@xxxxxxxxxxx> > Signed-off-by: Geert Uytterhoeven <geert+renesas@xxxxxxxxx> > --- > Against arm/for-next. > > Tested with the following configurations: > - zImage + DTB (r8a7791/koelsch): physical memory start address > obtained from DT, > - uImage + DTB (r8a73a4/ape6evm, r7s72100/rskrza1, r7s9210/rza2mevb): > physical memory start address obtained from DT, > - zImage with appended DTB (r8a7740/armadillo, sh73a0/kzm9g): physical > memory start address obtained by masking, as before. > > An appended DTB is currently processed after the start of physical > memory is obtained. Hence obtaining that address from an appended DTB > requires moving/copying that copy. Given the complexity w.r.t. the > "restart" label, and the lack of a need for me to support this, I didn't > implement that part. Well, not exactly. You don't have to move anything. But more on that later. One important detail: you didn't set up the stack pointer. That means you're relying on whatever value left in sp by the bootloader. If you're lucky that might be fine, but it isn't a good idea to leave things to luck. Before calling the C code, you should probably do: adr r0, LC0 ldr r1, [r0] ldr sp, [r0, #28] sub r0, r0, r1 add sp, sp, r0 But if there is an appended dtb then you'll overwrite it. So you need to look for one and account for its size. Something like this: adr r0, LC0 ldr r1, [r0] @ get absolute LC0 ldr sp, [r0, #28] @ get stack location sub r1, r0, r1 @ compute relocation offset add sp, sp, r1 @ apply relocation #ifdef CONFIG_ARM_APPENDED_DTB /* * Look for an appended DTB. If found, use it and * move stack away from it. */ ldr r6, [r0, #12] @ get &_end add r6, r6, r1 @ relocate it ldmia r6, {r0, r5} @ get DTB signature and size #ifndef __ARMEB__ ldr r1, =0xedfe0dd0 @ sig is 0xd00dfeed big endian /* convert DTB size to little endian */ eor r2, r5, r5, ror #16 bic r2, r2, #0x00ff0000 mov r5, r5, ror #8 eor r5, r5, r2, lsr #8 #else ldr r1, =0xd00dfeed #endif cmp r0, r1 @ do we have a DTB there? moveq r8, r0 @ use it if so addeq sp, sp, r5 @ and move stack above it #endif bl fdt_get_mem_start ... This is a little involved but there is no way around that for a safe stack. Benefit is that you get appended DTB support with a single additional instruction. Also one minor nit: > + bl fdt_get_mem_start > + mov r4, r0 > + cmn r0, #1 Please just use "cmp r0 #-1" here. The assembler will convert it for you. Nicolas