relocator.c 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. /*
  2. * GRUB -- GRand Unified Bootloader
  3. * Copyright (C) 2009,2010 Free Software Foundation, Inc.
  4. *
  5. * GRUB is free software: you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation, either version 3 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * GRUB is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with GRUB. If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. #include <grub/mm.h>
  19. #include <grub/misc.h>
  20. #include <grub/types.h>
  21. #include <grub/types.h>
  22. #include <grub/err.h>
  23. #include <grub/cache.h>
  24. #include <grub/powerpc/relocator.h>
  25. #include <grub/relocator_private.h>
  26. extern grub_uint8_t grub_relocator_forward_start;
  27. extern grub_uint8_t grub_relocator_forward_end;
  28. extern grub_uint8_t grub_relocator_backward_start;
  29. extern grub_uint8_t grub_relocator_backward_end;
  30. #define REGW_SIZEOF (2 * sizeof (grub_uint32_t))
  31. #define JUMP_SIZEOF (sizeof (grub_uint32_t))
  32. #define RELOCATOR_SRC_SIZEOF(x) (&grub_relocator_##x##_end \
  33. - &grub_relocator_##x##_start)
  34. #define RELOCATOR_SIZEOF(x) (RELOCATOR_SRC_SIZEOF(x) \
  35. + REGW_SIZEOF * 3)
  36. grub_size_t grub_relocator_align = sizeof (grub_uint32_t);
  37. grub_size_t grub_relocator_forward_size;
  38. grub_size_t grub_relocator_backward_size;
  39. grub_size_t grub_relocator_jumper_size = JUMP_SIZEOF + REGW_SIZEOF;
  40. void
  41. grub_cpu_relocator_init (void)
  42. {
  43. grub_relocator_forward_size = RELOCATOR_SIZEOF(forward);
  44. grub_relocator_backward_size = RELOCATOR_SIZEOF(backward);
  45. }
  46. static void
  47. write_reg (int regn, grub_uint32_t val, void **target)
  48. {
  49. /* lis r, val >> 16 */
  50. *(grub_uint32_t *) *target =
  51. ((0x3c00 | (regn << 5)) << 16) | (val >> 16);
  52. *target = ((grub_uint32_t *) *target) + 1;
  53. /* ori r, r, val & 0xffff. */
  54. *(grub_uint32_t *) *target = (((0x6000 | regn << 5 | regn) << 16)
  55. | (val & 0xffff));
  56. *target = ((grub_uint32_t *) *target) + 1;
  57. }
  58. static void
  59. write_jump (void **target)
  60. {
  61. /* blr. */
  62. *(grub_uint32_t *) *target = 0x4e800020;
  63. *target = ((grub_uint32_t *) *target) + 1;
  64. }
  65. void
  66. grub_cpu_relocator_jumper (void *rels, grub_addr_t addr)
  67. {
  68. write_reg (GRUB_PPC_JUMP_REGISTER, addr, &rels);
  69. write_jump (&rels);
  70. }
  71. void
  72. grub_cpu_relocator_backward (void *ptr0, void *src, void *dest,
  73. grub_size_t size)
  74. {
  75. void *ptr = ptr0;
  76. write_reg (8, (grub_uint32_t) src, &ptr);
  77. write_reg (9, (grub_uint32_t) dest, &ptr);
  78. write_reg (10, (grub_uint32_t) size, &ptr);
  79. grub_memcpy (ptr, &grub_relocator_backward_start,
  80. RELOCATOR_SRC_SIZEOF (backward));
  81. }
  82. void
  83. grub_cpu_relocator_forward (void *ptr0, void *src, void *dest,
  84. grub_size_t size)
  85. {
  86. void *ptr = ptr0;
  87. write_reg (8, (grub_uint32_t) src, &ptr);
  88. write_reg (9, (grub_uint32_t) dest, &ptr);
  89. write_reg (10, (grub_uint32_t) size, &ptr);
  90. grub_memcpy (ptr, &grub_relocator_forward_start,
  91. RELOCATOR_SRC_SIZEOF (forward));
  92. }
  93. grub_err_t
  94. grub_relocator32_boot (struct grub_relocator *rel,
  95. struct grub_relocator32_state state)
  96. {
  97. void *ptr;
  98. grub_err_t err;
  99. void *relst;
  100. grub_size_t relsize;
  101. grub_size_t stateset_size = 32 * REGW_SIZEOF + JUMP_SIZEOF;
  102. unsigned i;
  103. grub_relocator_chunk_t ch;
  104. err = grub_relocator_alloc_chunk_align (rel, &ch, 0, UP_TO_TOP32 (stateset_size),
  105. stateset_size, sizeof (grub_uint32_t),
  106. GRUB_RELOCATOR_PREFERENCE_NONE, 0);
  107. if (err)
  108. return err;
  109. ptr = get_virtual_current_address (ch);
  110. for (i = 0; i < 32; i++)
  111. write_reg (i, state.gpr[i], &ptr);
  112. write_jump (&ptr);
  113. err = grub_relocator_prepare_relocs (rel, get_physical_target_address (ch),
  114. &relst, &relsize);
  115. if (err)
  116. return err;
  117. grub_arch_sync_caches ((void *) relst, relsize);
  118. ((void (*) (void)) relst) ();
  119. /* Not reached. */
  120. return GRUB_ERR_NONE;
  121. }