diff options
Diffstat (limited to 'arch/powerpc/boot/cuboot-ebony.c')
-rw-r--r-- | arch/powerpc/boot/cuboot-ebony.c | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/arch/powerpc/boot/cuboot-ebony.c b/arch/powerpc/boot/cuboot-ebony.c index 4464c5f67acb..c5f37ce172ea 100644 --- a/arch/powerpc/boot/cuboot-ebony.c +++ b/arch/powerpc/boot/cuboot-ebony.c | |||
@@ -15,28 +15,16 @@ | |||
15 | #include "ops.h" | 15 | #include "ops.h" |
16 | #include "stdio.h" | 16 | #include "stdio.h" |
17 | #include "44x.h" | 17 | #include "44x.h" |
18 | #include "cuboot.h" | ||
18 | 19 | ||
19 | #define TARGET_44x | 20 | #define TARGET_44x |
20 | #include "ppcboot.h" | 21 | #include "ppcboot.h" |
21 | 22 | ||
22 | static bd_t bd; | 23 | static bd_t bd; |
23 | extern char _end[]; | ||
24 | |||
25 | BSS_STACK(4096); | ||
26 | 24 | ||
27 | void platform_init(unsigned long r3, unsigned long r4, unsigned long r5, | 25 | void platform_init(unsigned long r3, unsigned long r4, unsigned long r5, |
28 | unsigned long r6, unsigned long r7) | 26 | unsigned long r6, unsigned long r7) |
29 | { | 27 | { |
30 | unsigned long end_of_ram = bd.bi_memstart + bd.bi_memsize; | 28 | CUBOOT_INIT(); |
31 | unsigned long avail_ram = end_of_ram - (unsigned long)_end; | ||
32 | |||
33 | memcpy(&bd, (bd_t *)r3, sizeof(bd)); | ||
34 | loader_info.initrd_addr = r4; | ||
35 | loader_info.initrd_size = r4 ? r5 : 0; | ||
36 | loader_info.cmdline = (char *)r6; | ||
37 | loader_info.cmdline_len = r7 - r6; | ||
38 | |||
39 | simple_alloc_init(_end, avail_ram, 32, 64); | ||
40 | |||
41 | ebony_init(&bd.bi_enetaddr, &bd.bi_enet1addr); | 29 | ebony_init(&bd.bi_enetaddr, &bd.bi_enet1addr); |
42 | } | 30 | } |