dect
/
linux-2.6
Archived
13
0
Fork 0

microblaze: Extend space for compiled-in FDT to 32kB

Signed-off-by: Michal Simek <monstr@monstr.eu>
This commit is contained in:
Michal Simek 2011-07-13 15:26:09 +02:00
parent 173701d774
commit 3a1d26769f
2 changed files with 2 additions and 2 deletions

View File

@ -95,7 +95,7 @@ big_endian:
_prepare_copy_fdt:
or r11, r0, r0 /* incremment */
ori r4, r0, TOPHYS(_fdt_start)
ori r3, r0, (0x4000 - 4)
ori r3, r0, (0x8000 - 4)
_copy_fdt:
lw r12, r7, r11 /* r12 = r7 + r11 */
sw r12, r4, r11 /* addr[r4 + r11] = r12 */

View File

@ -44,7 +44,7 @@ SECTIONS {
__fdt_blob : AT(ADDR(__fdt_blob) - LOAD_OFFSET) {
_fdt_start = . ; /* place for fdt blob */
*(__fdt_blob) ; /* Any link-placed DTB */
. = _fdt_start + 0x4000; /* Pad up to 16kbyte */
. = _fdt_start + 0x8000; /* Pad up to 32kbyte */
_fdt_end = . ;
}