of.c 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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. #include "of.h"
  18. extern char _end[];
  19. /* Value picked to match that used by yaboot */
  20. #define PROG_START 0x01400000 /* only used on 64-bit systems */
  21. #define RAM_END (512<<20) /* Fixme: use OF */
  22. #define ONE_MB 0x100000
  23. static unsigned long claim_base;
  24. static void *of_try_claim(unsigned long size)
  25. {
  26. unsigned long addr = 0;
  27. if (claim_base == 0)
  28. claim_base = _ALIGN_UP((unsigned long)_end, ONE_MB);
  29. for(; claim_base < RAM_END; claim_base += ONE_MB) {
  30. #ifdef DEBUG
  31. printf(" trying: 0x%08lx\n\r", claim_base);
  32. #endif
  33. addr = (unsigned long)of_claim(claim_base, size, 0);
  34. if ((void *)addr != (void *)-1)
  35. break;
  36. }
  37. if (addr == 0)
  38. return NULL;
  39. claim_base = PAGE_ALIGN(claim_base + size);
  40. return (void *)addr;
  41. }
  42. static void of_image_hdr(const void *hdr)
  43. {
  44. const Elf64_Ehdr *elf64 = hdr;
  45. if (elf64->e_ident[EI_CLASS] == ELFCLASS64) {
  46. /*
  47. * Maintain a "magic" minimum address. This keeps some older
  48. * firmware platforms running.
  49. */
  50. if (claim_base < PROG_START)
  51. claim_base = PROG_START;
  52. }
  53. }
  54. void platform_init(unsigned long a1, unsigned long a2, void *promptr)
  55. {
  56. platform_ops.image_hdr = of_image_hdr;
  57. platform_ops.malloc = of_try_claim;
  58. platform_ops.exit = of_exit;
  59. platform_ops.vmlinux_alloc = of_vmlinux_alloc;
  60. dt_ops.finddevice = of_finddevice;
  61. dt_ops.getprop = of_getprop;
  62. dt_ops.setprop = of_setprop;
  63. of_console_init();
  64. of_init(promptr);
  65. loader_info.promptr = promptr;
  66. if (a1 && a2 && a2 != 0xdeadbeef) {
  67. loader_info.initrd_addr = a1;
  68. loader_info.initrd_size = a2;
  69. }
  70. }