blob: 2fbd4ae60ec99edaecfbef40b48791c4f452fb24 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Mark A. Greerb2c5f612006-09-19 14:05:08 +10002/*
3 * Copyright (C) Paul Mackerras 1997.
Mark A. Greerb2c5f612006-09-19 14:05:08 +10004 */
5#include <stdarg.h>
6#include <stddef.h>
7#include "types.h"
8#include "elf.h"
9#include "string.h"
10#include "stdio.h"
11#include "page.h"
12#include "ops.h"
13
David Gibson2e601612007-06-13 14:52:54 +100014#include "of.h"
Mark A. Greerb2c5f612006-09-19 14:05:08 +100015
Mark A. Greerb2c5f612006-09-19 14:05:08 +100016/* Value picked to match that used by yaboot */
17#define PROG_START 0x01400000 /* only used on 64-bit systems */
18#define RAM_END (512<<20) /* Fixme: use OF */
19#define ONE_MB 0x100000
20
Mark A. Greerb2c5f612006-09-19 14:05:08 +100021
22
23static unsigned long claim_base;
24
Benjamin Herrenschmidt0c9fa292013-09-24 16:10:38 +100025void epapr_platform_init(unsigned long r3, unsigned long r4, unsigned long r5,
26 unsigned long r6, unsigned long r7);
27
Geert Uytterhoeven4ca478e2007-04-18 19:24:12 +100028static void *of_try_claim(unsigned long size)
Mark A. Greerb2c5f612006-09-19 14:05:08 +100029{
30 unsigned long addr = 0;
Mark A. Greerb2c5f612006-09-19 14:05:08 +100031
Benjamin Herrenschmidtc998de12006-10-05 14:18:46 +100032 if (claim_base == 0)
Mark A. Greerb2c5f612006-09-19 14:05:08 +100033 claim_base = _ALIGN_UP((unsigned long)_end, ONE_MB);
Mark A. Greerb2c5f612006-09-19 14:05:08 +100034
35 for(; claim_base < RAM_END; claim_base += ONE_MB) {
36#ifdef DEBUG
37 printf(" trying: 0x%08lx\n\r", claim_base);
38#endif
Cédric Le Goater034e55e2014-04-24 09:23:30 +020039 addr = (unsigned long) of_claim(claim_base, size, 0);
40 if (addr != PROM_ERROR)
Mark A. Greerb2c5f612006-09-19 14:05:08 +100041 break;
42 }
43 if (addr == 0)
44 return NULL;
45 claim_base = PAGE_ALIGN(claim_base + size);
46 return (void *)addr;
47}
48
49static void of_image_hdr(const void *hdr)
50{
51 const Elf64_Ehdr *elf64 = hdr;
52
53 if (elf64->e_ident[EI_CLASS] == ELFCLASS64) {
54 /*
55 * Maintain a "magic" minimum address. This keeps some older
56 * firmware platforms running.
57 */
58 if (claim_base < PROG_START)
59 claim_base = PROG_START;
60 }
61}
62
Benjamin Herrenschmidt0c9fa292013-09-24 16:10:38 +100063static void of_platform_init(unsigned long a1, unsigned long a2, void *promptr)
Mark A. Greerb2c5f612006-09-19 14:05:08 +100064{
Mark A. Greerb2c5f612006-09-19 14:05:08 +100065 platform_ops.image_hdr = of_image_hdr;
66 platform_ops.malloc = of_try_claim;
Mark A. Greerb2c5f612006-09-19 14:05:08 +100067 platform_ops.exit = of_exit;
David Gibson79c85412007-03-05 14:24:52 +110068 platform_ops.vmlinux_alloc = of_vmlinux_alloc;
Mark A. Greerb2c5f612006-09-19 14:05:08 +100069
70 dt_ops.finddevice = of_finddevice;
71 dt_ops.getprop = of_getprop;
72 dt_ops.setprop = of_setprop;
Mark A. Greerb2c5f612006-09-19 14:05:08 +100073
David Gibson2e601612007-06-13 14:52:54 +100074 of_console_init();
Mark A. Greerb2c5f612006-09-19 14:05:08 +100075
David Gibson2e601612007-06-13 14:52:54 +100076 of_init(promptr);
David Gibsoncd197ff2007-03-05 14:24:52 +110077 loader_info.promptr = promptr;
Paul Mackerras390cbb52007-04-13 10:46:21 +100078 if (a1 && a2 && a2 != 0xdeadbeef) {
79 loader_info.initrd_addr = a1;
80 loader_info.initrd_size = a2;
81 }
Mark A. Greerb2c5f612006-09-19 14:05:08 +100082}
Benjamin Herrenschmidt0c9fa292013-09-24 16:10:38 +100083
84void platform_init(unsigned long r3, unsigned long r4, unsigned long r5,
85 unsigned long r6, unsigned long r7)
86{
87 /* Detect OF vs. ePAPR boot */
88 if (r5)
89 of_platform_init(r3, r4, (void *)r5);
90 else
91 epapr_platform_init(r3, r4, r5, r6, r7);
92}
93