-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Holly/Hickory bootwrapper Signed-off-by: Stephen Winiecki <stevewin@us.ibm.com> Signed-off-by: Josh Boyer <jwboyer@linux.vnet.ibm.com> Signed-off-by: Paul Mackerras <paulus@samba.org>
- Loading branch information
Josh Boyer
authored and
Paul Mackerras
committed
May 8, 2007
1 parent
d4d19ec
commit 7487a22
Showing
2 changed files
with
46 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
/* | ||
* Copyright 2007 IBM Corporation | ||
* | ||
* Stephen Winiecki <stevewin@us.ibm.com> | ||
* Josh Boyer <jwboyer@linux.vnet.ibm.com> | ||
* | ||
* Based on earlier code: | ||
* Copyright (C) Paul Mackerras 1997. | ||
* | ||
* This program is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU General Public License | ||
* version 2 as published by the Free Software Foundation. | ||
*/ | ||
#include <stdarg.h> | ||
#include <stddef.h> | ||
#include "types.h" | ||
#include "elf.h" | ||
#include "string.h" | ||
#include "stdio.h" | ||
#include "page.h" | ||
#include "ops.h" | ||
#include "io.h" | ||
|
||
extern char _start[]; | ||
extern char _end[]; | ||
extern char _dtb_start[]; | ||
extern char _dtb_end[]; | ||
|
||
BSS_STACK(4096); | ||
|
||
void platform_init(unsigned long r3, unsigned long r4, unsigned long r5) | ||
{ | ||
u32 heapsize = 0x8000000 - (u32)_end; /* 128M */ | ||
|
||
simple_alloc_init(_end, heapsize, 32, 64); | ||
ft_init(_dtb_start, 0, 4); | ||
serial_console_init(); | ||
} |