Merge tag 'sched-urgent-2020-12-27' of git://git.kernel.org/pub/scm/linux/kernel...
[linux/fpc-iii.git] / arch / powerpc / boot / holly.c
blob557c7a0ece08df9f4c402b088242288db41c27ef
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * Copyright 2007 IBM Corporation
5 * Stephen Winiecki <stevewin@us.ibm.com>
6 * Josh Boyer <jwboyer@linux.vnet.ibm.com>
8 * Based on earlier code:
9 * Copyright (C) Paul Mackerras 1997.
11 #include <stdarg.h>
12 #include <stddef.h>
13 #include "types.h"
14 #include "elf.h"
15 #include "string.h"
16 #include "stdio.h"
17 #include "page.h"
18 #include "ops.h"
19 #include "io.h"
21 BSS_STACK(4096);
23 void platform_init(unsigned long r3, unsigned long r4, unsigned long r5)
25 u32 heapsize = 0x8000000 - (u32)_end; /* 128M */
27 simple_alloc_init(_end, heapsize, 32, 64);
28 fdt_init(_dtb_start);
29 serial_console_init();