firmware.c 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. /*
  2. * pSeries firmware setup code.
  3. *
  4. * Portions from arch/powerpc/platforms/pseries/setup.c:
  5. * Copyright (C) 1995 Linus Torvalds
  6. * Adapted from 'alpha' version by Gary Thomas
  7. * Modified by Cort Dougan (cort@cs.nmt.edu)
  8. * Modified by PPC64 Team, IBM Corp
  9. *
  10. * Portions from arch/powerpc/kernel/firmware.c
  11. * Copyright (C) 2001 Ben. Herrenschmidt (benh@kernel.crashing.org)
  12. * Modifications for ppc64:
  13. * Copyright (C) 2003 Dave Engebretsen <engebret@us.ibm.com>
  14. * Copyright (C) 2005 Stephen Rothwell, IBM Corporation
  15. *
  16. * Copyright 2006 IBM Corporation.
  17. *
  18. * This program is free software; you can redistribute it and/or
  19. * modify it under the terms of the GNU General Public License
  20. * as published by the Free Software Foundation; either version
  21. * 2 of the License, or (at your option) any later version.
  22. */
  23. #include <linux/of_fdt.h>
  24. #include <asm/firmware.h>
  25. #include <asm/prom.h>
  26. #include <asm/udbg.h>
  27. #include "pseries.h"
  28. struct hypertas_fw_feature {
  29. unsigned long val;
  30. char * name;
  31. };
  32. /*
  33. * The names in this table match names in rtas/ibm,hypertas-functions. If the
  34. * entry ends in a '*', only upto the '*' is matched. Otherwise the entire
  35. * string must match.
  36. */
  37. static __initdata struct hypertas_fw_feature
  38. hypertas_fw_features_table[] = {
  39. {FW_FEATURE_PFT, "hcall-pft"},
  40. {FW_FEATURE_TCE, "hcall-tce"},
  41. {FW_FEATURE_SPRG0, "hcall-sprg0"},
  42. {FW_FEATURE_DABR, "hcall-dabr"},
  43. {FW_FEATURE_COPY, "hcall-copy"},
  44. {FW_FEATURE_ASR, "hcall-asr"},
  45. {FW_FEATURE_DEBUG, "hcall-debug"},
  46. {FW_FEATURE_PERF, "hcall-perf"},
  47. {FW_FEATURE_DUMP, "hcall-dump"},
  48. {FW_FEATURE_INTERRUPT, "hcall-interrupt"},
  49. {FW_FEATURE_MIGRATE, "hcall-migrate"},
  50. {FW_FEATURE_PERFMON, "hcall-perfmon"},
  51. {FW_FEATURE_CRQ, "hcall-crq"},
  52. {FW_FEATURE_VIO, "hcall-vio"},
  53. {FW_FEATURE_RDMA, "hcall-rdma"},
  54. {FW_FEATURE_LLAN, "hcall-lLAN"},
  55. {FW_FEATURE_BULK_REMOVE, "hcall-bulk"},
  56. {FW_FEATURE_XDABR, "hcall-xdabr"},
  57. {FW_FEATURE_MULTITCE, "hcall-multi-tce"},
  58. {FW_FEATURE_SPLPAR, "hcall-splpar"},
  59. {FW_FEATURE_VPHN, "hcall-vphn"},
  60. {FW_FEATURE_SET_MODE, "hcall-set-mode"},
  61. {FW_FEATURE_BEST_ENERGY, "hcall-best-energy-1*"},
  62. };
  63. /* Build up the firmware features bitmask using the contents of
  64. * device-tree/ibm,hypertas-functions. Ultimately this functionality may
  65. * be moved into prom.c prom_init().
  66. */
  67. static void __init fw_hypertas_feature_init(const char *hypertas,
  68. unsigned long len)
  69. {
  70. const char *s;
  71. int i;
  72. pr_debug(" -> fw_hypertas_feature_init()\n");
  73. for (s = hypertas; s < hypertas + len; s += strlen(s) + 1) {
  74. for (i = 0; i < ARRAY_SIZE(hypertas_fw_features_table); i++) {
  75. const char *name = hypertas_fw_features_table[i].name;
  76. size_t size;
  77. /*
  78. * If there is a '*' at the end of name, only check
  79. * upto there
  80. */
  81. size = strlen(name);
  82. if (size && name[size - 1] == '*') {
  83. if (strncmp(name, s, size - 1))
  84. continue;
  85. } else if (strcmp(name, s))
  86. continue;
  87. /* we have a match */
  88. powerpc_firmware_features |=
  89. hypertas_fw_features_table[i].val;
  90. break;
  91. }
  92. }
  93. pr_debug(" <- fw_hypertas_feature_init()\n");
  94. }
  95. struct vec5_fw_feature {
  96. unsigned long val;
  97. unsigned int feature;
  98. };
  99. static __initdata struct vec5_fw_feature
  100. vec5_fw_features_table[] = {
  101. {FW_FEATURE_TYPE1_AFFINITY, OV5_TYPE1_AFFINITY},
  102. {FW_FEATURE_PRRN, OV5_PRRN},
  103. };
  104. static void __init fw_vec5_feature_init(const char *vec5, unsigned long len)
  105. {
  106. unsigned int index, feat;
  107. int i;
  108. pr_debug(" -> fw_vec5_feature_init()\n");
  109. for (i = 0; i < ARRAY_SIZE(vec5_fw_features_table); i++) {
  110. index = OV5_INDX(vec5_fw_features_table[i].feature);
  111. feat = OV5_FEAT(vec5_fw_features_table[i].feature);
  112. if (vec5[index] & feat)
  113. powerpc_firmware_features |=
  114. vec5_fw_features_table[i].val;
  115. }
  116. pr_debug(" <- fw_vec5_feature_init()\n");
  117. }
  118. /*
  119. * Called very early, MMU is off, device-tree isn't unflattened
  120. */
  121. static int __init probe_fw_features(unsigned long node, const char *uname, int
  122. depth, void *data)
  123. {
  124. const char *prop;
  125. int len;
  126. static int hypertas_found;
  127. static int vec5_found;
  128. if (depth != 1)
  129. return 0;
  130. if (!strcmp(uname, "rtas") || !strcmp(uname, "rtas@0")) {
  131. prop = of_get_flat_dt_prop(node, "ibm,hypertas-functions",
  132. &len);
  133. if (prop) {
  134. powerpc_firmware_features |= FW_FEATURE_LPAR;
  135. fw_hypertas_feature_init(prop, len);
  136. }
  137. hypertas_found = 1;
  138. }
  139. if (!strcmp(uname, "chosen")) {
  140. prop = of_get_flat_dt_prop(node, "ibm,architecture-vec-5",
  141. &len);
  142. if (prop)
  143. fw_vec5_feature_init(prop, len);
  144. vec5_found = 1;
  145. }
  146. return hypertas_found && vec5_found;
  147. }
  148. void __init pseries_probe_fw_features(void)
  149. {
  150. of_scan_flat_dt(probe_fw_features, NULL);
  151. }