Mark A. Greer | b2c5f61 | 2006-09-19 14:05:08 +1000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) Paul Mackerras 1997. |
| 3 | * |
| 4 | * This program is free software; you can redistribute it and/or |
| 5 | * modify it under the terms of the GNU General Public License |
| 6 | * as published by the Free Software Foundation; either version |
| 7 | * 2 of the License, or (at your option) any later version. |
| 8 | */ |
| 9 | #include <stdarg.h> |
| 10 | #include <stddef.h> |
| 11 | #include "types.h" |
| 12 | #include "elf.h" |
| 13 | #include "string.h" |
| 14 | #include "stdio.h" |
| 15 | #include "page.h" |
| 16 | #include "ops.h" |
| 17 | |
David Gibson | 2e60161 | 2007-06-13 14:52:54 +1000 | [diff] [blame^] | 18 | #include "of.h" |
Mark A. Greer | b2c5f61 | 2006-09-19 14:05:08 +1000 | [diff] [blame] | 19 | |
| 20 | extern char _end[]; |
| 21 | |
| 22 | /* Value picked to match that used by yaboot */ |
| 23 | #define PROG_START 0x01400000 /* only used on 64-bit systems */ |
| 24 | #define RAM_END (512<<20) /* Fixme: use OF */ |
| 25 | #define ONE_MB 0x100000 |
| 26 | |
Mark A. Greer | b2c5f61 | 2006-09-19 14:05:08 +1000 | [diff] [blame] | 27 | |
| 28 | |
| 29 | static unsigned long claim_base; |
| 30 | |
Geert Uytterhoeven | 4ca478e | 2007-04-18 19:24:12 +1000 | [diff] [blame] | 31 | static void *of_try_claim(unsigned long size) |
Mark A. Greer | b2c5f61 | 2006-09-19 14:05:08 +1000 | [diff] [blame] | 32 | { |
| 33 | unsigned long addr = 0; |
Mark A. Greer | b2c5f61 | 2006-09-19 14:05:08 +1000 | [diff] [blame] | 34 | |
Benjamin Herrenschmidt | c998de1 | 2006-10-05 14:18:46 +1000 | [diff] [blame] | 35 | if (claim_base == 0) |
Mark A. Greer | b2c5f61 | 2006-09-19 14:05:08 +1000 | [diff] [blame] | 36 | claim_base = _ALIGN_UP((unsigned long)_end, ONE_MB); |
Mark A. Greer | b2c5f61 | 2006-09-19 14:05:08 +1000 | [diff] [blame] | 37 | |
| 38 | for(; claim_base < RAM_END; claim_base += ONE_MB) { |
| 39 | #ifdef DEBUG |
| 40 | printf(" trying: 0x%08lx\n\r", claim_base); |
| 41 | #endif |
David Gibson | 2e60161 | 2007-06-13 14:52:54 +1000 | [diff] [blame^] | 42 | addr = (unsigned long)of_claim(claim_base, size, 0); |
Mark A. Greer | b2c5f61 | 2006-09-19 14:05:08 +1000 | [diff] [blame] | 43 | if ((void *)addr != (void *)-1) |
| 44 | break; |
| 45 | } |
| 46 | if (addr == 0) |
| 47 | return NULL; |
| 48 | claim_base = PAGE_ALIGN(claim_base + size); |
| 49 | return (void *)addr; |
| 50 | } |
| 51 | |
| 52 | static void of_image_hdr(const void *hdr) |
| 53 | { |
| 54 | const Elf64_Ehdr *elf64 = hdr; |
| 55 | |
| 56 | if (elf64->e_ident[EI_CLASS] == ELFCLASS64) { |
| 57 | /* |
| 58 | * Maintain a "magic" minimum address. This keeps some older |
| 59 | * firmware platforms running. |
| 60 | */ |
| 61 | if (claim_base < PROG_START) |
| 62 | claim_base = PROG_START; |
| 63 | } |
| 64 | } |
| 65 | |
David Gibson | 79c8541 | 2007-03-05 14:24:52 +1100 | [diff] [blame] | 66 | static void *of_vmlinux_alloc(unsigned long size) |
| 67 | { |
| 68 | void *p = malloc(size); |
| 69 | |
Milton Miller | 6a92321 | 2007-03-21 09:02:44 -0600 | [diff] [blame] | 70 | if (!p) |
| 71 | fatal("Can't allocate memory for kernel image!\n\r"); |
| 72 | |
David Gibson | 79c8541 | 2007-03-05 14:24:52 +1100 | [diff] [blame] | 73 | return p; |
| 74 | } |
| 75 | |
Mark A. Greer | b2c5f61 | 2006-09-19 14:05:08 +1000 | [diff] [blame] | 76 | /* |
| 77 | * OF device tree routines |
| 78 | */ |
| 79 | static void *of_finddevice(const char *name) |
| 80 | { |
David Gibson | 2e60161 | 2007-06-13 14:52:54 +1000 | [diff] [blame^] | 81 | return (phandle) of_call_prom("finddevice", 1, 1, name); |
Mark A. Greer | b2c5f61 | 2006-09-19 14:05:08 +1000 | [diff] [blame] | 82 | } |
| 83 | |
| 84 | static int of_getprop(const void *phandle, const char *name, void *buf, |
| 85 | const int buflen) |
| 86 | { |
David Gibson | 2e60161 | 2007-06-13 14:52:54 +1000 | [diff] [blame^] | 87 | return of_call_prom("getprop", 4, 1, phandle, name, buf, buflen); |
Mark A. Greer | b2c5f61 | 2006-09-19 14:05:08 +1000 | [diff] [blame] | 88 | } |
| 89 | |
| 90 | static int of_setprop(const void *phandle, const char *name, const void *buf, |
| 91 | const int buflen) |
| 92 | { |
David Gibson | 2e60161 | 2007-06-13 14:52:54 +1000 | [diff] [blame^] | 93 | return of_call_prom("setprop", 4, 1, phandle, name, buf, buflen); |
Mark A. Greer | b2c5f61 | 2006-09-19 14:05:08 +1000 | [diff] [blame] | 94 | } |
| 95 | |
David Gibson | cd197ff | 2007-03-05 14:24:52 +1100 | [diff] [blame] | 96 | void platform_init(unsigned long a1, unsigned long a2, void *promptr) |
Mark A. Greer | b2c5f61 | 2006-09-19 14:05:08 +1000 | [diff] [blame] | 97 | { |
Mark A. Greer | b2c5f61 | 2006-09-19 14:05:08 +1000 | [diff] [blame] | 98 | platform_ops.image_hdr = of_image_hdr; |
| 99 | platform_ops.malloc = of_try_claim; |
Mark A. Greer | b2c5f61 | 2006-09-19 14:05:08 +1000 | [diff] [blame] | 100 | platform_ops.exit = of_exit; |
David Gibson | 79c8541 | 2007-03-05 14:24:52 +1100 | [diff] [blame] | 101 | platform_ops.vmlinux_alloc = of_vmlinux_alloc; |
Mark A. Greer | b2c5f61 | 2006-09-19 14:05:08 +1000 | [diff] [blame] | 102 | |
| 103 | dt_ops.finddevice = of_finddevice; |
| 104 | dt_ops.getprop = of_getprop; |
| 105 | dt_ops.setprop = of_setprop; |
Mark A. Greer | b2c5f61 | 2006-09-19 14:05:08 +1000 | [diff] [blame] | 106 | |
David Gibson | 2e60161 | 2007-06-13 14:52:54 +1000 | [diff] [blame^] | 107 | of_console_init(); |
Mark A. Greer | b2c5f61 | 2006-09-19 14:05:08 +1000 | [diff] [blame] | 108 | |
David Gibson | 2e60161 | 2007-06-13 14:52:54 +1000 | [diff] [blame^] | 109 | of_init(promptr); |
David Gibson | cd197ff | 2007-03-05 14:24:52 +1100 | [diff] [blame] | 110 | loader_info.promptr = promptr; |
Paul Mackerras | 390cbb5 | 2007-04-13 10:46:21 +1000 | [diff] [blame] | 111 | if (a1 && a2 && a2 != 0xdeadbeef) { |
| 112 | loader_info.initrd_addr = a1; |
| 113 | loader_info.initrd_size = a2; |
| 114 | } |
Mark A. Greer | b2c5f61 | 2006-09-19 14:05:08 +1000 | [diff] [blame] | 115 | } |