cmain.c 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  1. /* cmain.c - Startup code for the PowerPC. */
  2. /*
  3. * GRUB -- GRand Unified Bootloader
  4. * Copyright (C) 2003,2004,2005,2006,2007,2008 Free Software Foundation, Inc.
  5. *
  6. * GRUB is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation, either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * GRUB is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with GRUB. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. #include <grub/kernel.h>
  20. #include <grub/misc.h>
  21. #include <grub/types.h>
  22. #include <grub/ieee1275/ieee1275.h>
  23. int (*grub_ieee1275_entry_fn) (void *) GRUB_IEEE1275_ENTRY_FN_ATTRIBUTE;
  24. grub_ieee1275_phandle_t grub_ieee1275_chosen;
  25. grub_ieee1275_ihandle_t grub_ieee1275_mmu;
  26. static grub_uint32_t grub_ieee1275_flags;
  27. int
  28. grub_ieee1275_test_flag (enum grub_ieee1275_flag flag)
  29. {
  30. return (grub_ieee1275_flags & (1 << flag));
  31. }
  32. void
  33. grub_ieee1275_set_flag (enum grub_ieee1275_flag flag)
  34. {
  35. grub_ieee1275_flags |= (1 << flag);
  36. }
  37. static void
  38. grub_ieee1275_find_options (void)
  39. {
  40. grub_ieee1275_phandle_t root;
  41. grub_ieee1275_phandle_t options;
  42. grub_ieee1275_phandle_t openprom;
  43. int rc;
  44. grub_uint32_t realmode = 0;
  45. char tmp[256];
  46. int is_smartfirmware = 0;
  47. int is_olpc = 0;
  48. int is_qemu = 0;
  49. grub_ssize_t actual;
  50. #ifdef __sparc__
  51. grub_ieee1275_set_flag (GRUB_IEEE1275_FLAG_NO_PARTITION_0);
  52. #endif
  53. grub_ieee1275_finddevice ("/", &root);
  54. grub_ieee1275_finddevice ("/options", &options);
  55. grub_ieee1275_finddevice ("/openprom", &openprom);
  56. rc = grub_ieee1275_get_integer_property (options, "real-mode?", &realmode,
  57. sizeof realmode, 0);
  58. if (((rc >= 0) && realmode) || (grub_ieee1275_mmu == 0))
  59. grub_ieee1275_set_flag (GRUB_IEEE1275_FLAG_REAL_MODE);
  60. rc = grub_ieee1275_get_property (openprom, "CodeGen-copyright",
  61. tmp, sizeof (tmp), 0);
  62. if (rc >= 0 && !grub_strncmp (tmp, "SmartFirmware(tm)",
  63. sizeof ("SmartFirmware(tm)") - 1))
  64. is_smartfirmware = 1;
  65. rc = grub_ieee1275_get_property (root, "architecture",
  66. tmp, sizeof (tmp), 0);
  67. if (rc >= 0 && !grub_strcmp (tmp, "OLPC"))
  68. is_olpc = 1;
  69. rc = grub_ieee1275_get_property (root, "model",
  70. tmp, sizeof (tmp), 0);
  71. if (rc >= 0 && (!grub_strcmp (tmp, "Emulated PC")
  72. || !grub_strcmp (tmp, "IBM pSeries (emulated by qemu)"))) {
  73. is_qemu = 1;
  74. }
  75. if (rc >= 0 && grub_strncmp (tmp, "IBM", 3) == 0)
  76. grub_ieee1275_set_flag (GRUB_IEEE1275_FLAG_NO_TREE_SCANNING_FOR_DISKS);
  77. /* Old Macs have no key repeat, newer ones have fully working one.
  78. The ones inbetween when repeated key generates an escaoe sequence
  79. only the escape is repeated. With this workaround however a fast
  80. e.g. down arrow-ESC is perceived as down arrow-down arrow which is
  81. also annoying but is less so than the original bug of exiting from
  82. the current window on arrow repeat. To avoid unaffected users suffering
  83. from this workaround match only exact models known to have this bug.
  84. */
  85. if (rc >= 0 && grub_strcmp (tmp, "PowerBook3,3") == 0)
  86. grub_ieee1275_set_flag (GRUB_IEEE1275_FLAG_BROKEN_REPEAT);
  87. rc = grub_ieee1275_get_property (root, "compatible",
  88. tmp, sizeof (tmp), &actual);
  89. if (rc >= 0)
  90. {
  91. char *ptr;
  92. if (grub_strncmp (tmp, "sun4v", 5) == 0)
  93. grub_ieee1275_set_flag (GRUB_IEEE1275_FLAG_RAW_DEVNAMES);
  94. for (ptr = tmp; ptr - tmp < actual; ptr += grub_strlen (ptr) + 1)
  95. {
  96. if (grub_memcmp (ptr, "MacRISC", sizeof ("MacRISC") - 1) == 0
  97. && (ptr[sizeof ("MacRISC") - 1] == 0
  98. || grub_isdigit (ptr[sizeof ("MacRISC") - 1])))
  99. {
  100. grub_ieee1275_set_flag (GRUB_IEEE1275_FLAG_BROKEN_ADDRESS_CELLS);
  101. grub_ieee1275_set_flag (GRUB_IEEE1275_FLAG_NO_OFNET_SUFFIX);
  102. grub_ieee1275_set_flag (GRUB_IEEE1275_FLAG_VIRT_TO_REAL_BROKEN);
  103. grub_ieee1275_set_flag (GRUB_IEEE1275_FLAG_CURSORONOFF_ANSI_BROKEN);
  104. break;
  105. }
  106. }
  107. #if defined(__powerpc__)
  108. if (grub_strncmp (tmp, "IBM,", 4) == 0)
  109. {
  110. grub_ieee1275_set_flag (GRUB_IEEE1275_FLAG_CAN_TRY_CAS_FOR_MORE_MEMORY);
  111. grub_ieee1275_set_flag (GRUB_IEEE1275_FLAG_POWER_VM);
  112. }
  113. #endif
  114. }
  115. if (is_smartfirmware)
  116. {
  117. /* Broken in all versions */
  118. grub_ieee1275_set_flag (GRUB_IEEE1275_FLAG_BROKEN_OUTPUT);
  119. /* There are two incompatible ways of checking the version number. Try
  120. both. */
  121. rc = grub_ieee1275_get_property (openprom, "SmartFirmware-version",
  122. tmp, sizeof (tmp), 0);
  123. if (rc < 0)
  124. rc = grub_ieee1275_get_property (openprom, "firmware-version",
  125. tmp, sizeof (tmp), 0);
  126. if (rc >= 0)
  127. {
  128. /* It is tempting to implement a version parser to set the flags for
  129. e.g. 1.3 and below. However, there's a special situation here.
  130. 3rd party updates which fix the partition bugs are common, and for
  131. some reason their fixes aren't being merged into trunk. So for
  132. example we know that 1.2 and 1.3 are broken, but there's 1.2.99
  133. and 1.3.99 which are known good (and applying this workaround
  134. would cause breakage). */
  135. if (!grub_strcmp (tmp, "1.0")
  136. || !grub_strcmp (tmp, "1.1")
  137. || !grub_strcmp (tmp, "1.2")
  138. || !grub_strcmp (tmp, "1.3"))
  139. {
  140. grub_ieee1275_set_flag (GRUB_IEEE1275_FLAG_NO_PARTITION_0);
  141. grub_ieee1275_set_flag (GRUB_IEEE1275_FLAG_0_BASED_PARTITIONS);
  142. }
  143. }
  144. }
  145. if (is_olpc)
  146. {
  147. /* OLPC / XO laptops have three kinds of storage devices:
  148. - NAND flash. These are accessible via OFW callbacks, but:
  149. - Follow strange semantics, imposed by hardware constraints.
  150. - Its ABI is undocumented, and not stable.
  151. They lack "device_type" property, which conveniently makes GRUB
  152. skip them.
  153. - USB drives. Not accessible, because OFW shuts down the controller
  154. in order to prevent collisions with applications accessing it
  155. directly. Even worse, attempts to access it will NOT return
  156. control to the caller, so we have to avoid probing them.
  157. - SD cards. These work fine.
  158. To avoid breakage, we only need to skip USB probing. However,
  159. since detecting SD cards is more reliable, we do that instead.
  160. */
  161. grub_ieee1275_set_flag (GRUB_IEEE1275_FLAG_OFDISK_SDCARD_ONLY);
  162. grub_ieee1275_set_flag (GRUB_IEEE1275_FLAG_HAS_CURSORONOFF);
  163. }
  164. if (is_qemu)
  165. {
  166. /* OpenFirmware hangs on qemu if one requests any memory below 1.5 MiB. */
  167. grub_ieee1275_set_flag (GRUB_IEEE1275_FLAG_NO_PRE1_5M_CLAIM);
  168. grub_ieee1275_set_flag (GRUB_IEEE1275_FLAG_HAS_CURSORONOFF);
  169. #if defined(__powerpc__)
  170. grub_ieee1275_set_flag (GRUB_IEEE1275_FLAG_POWER_KVM);
  171. #endif
  172. }
  173. }
  174. void
  175. grub_ieee1275_init (void)
  176. {
  177. grub_ieee1275_finddevice ("/chosen", &grub_ieee1275_chosen);
  178. if (grub_ieee1275_get_integer_property (grub_ieee1275_chosen, "mmu", &grub_ieee1275_mmu,
  179. sizeof grub_ieee1275_mmu, 0) < 0)
  180. grub_ieee1275_mmu = 0;
  181. grub_ieee1275_find_options ();
  182. }