firmware.c 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  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 <asm/firmware.h>
  24. #include <asm/prom.h>
  25. #include <asm/udbg.h>
  26. #include "pseries.h"
  27. struct hypertas_fw_feature {
  28. unsigned long val;
  29. char * name;
  30. };
  31. /*
  32. * The names in this table match names in rtas/ibm,hypertas-functions. If the
  33. * entry ends in a '*', only upto the '*' is matched. Otherwise the entire
  34. * string must match.
  35. */
  36. static __initdata struct hypertas_fw_feature
  37. hypertas_fw_features_table[] = {
  38. {FW_FEATURE_PFT, "hcall-pft"},
  39. {FW_FEATURE_TCE, "hcall-tce"},
  40. {FW_FEATURE_SPRG0, "hcall-sprg0"},
  41. {FW_FEATURE_DABR, "hcall-dabr"},
  42. {FW_FEATURE_COPY, "hcall-copy"},
  43. {FW_FEATURE_ASR, "hcall-asr"},
  44. {FW_FEATURE_DEBUG, "hcall-debug"},
  45. {FW_FEATURE_PERF, "hcall-perf"},
  46. {FW_FEATURE_DUMP, "hcall-dump"},
  47. {FW_FEATURE_INTERRUPT, "hcall-interrupt"},
  48. {FW_FEATURE_MIGRATE, "hcall-migrate"},
  49. {FW_FEATURE_PERFMON, "hcall-perfmon"},
  50. {FW_FEATURE_CRQ, "hcall-crq"},
  51. {FW_FEATURE_VIO, "hcall-vio"},
  52. {FW_FEATURE_RDMA, "hcall-rdma"},
  53. {FW_FEATURE_LLAN, "hcall-lLAN"},
  54. {FW_FEATURE_BULK_REMOVE, "hcall-bulk"},
  55. {FW_FEATURE_XDABR, "hcall-xdabr"},
  56. {FW_FEATURE_MULTITCE, "hcall-multi-tce"},
  57. {FW_FEATURE_SPLPAR, "hcall-splpar"},
  58. {FW_FEATURE_VPHN, "hcall-vphn"},
  59. {FW_FEATURE_SET_MODE, "hcall-set-mode"},
  60. {FW_FEATURE_BEST_ENERGY, "hcall-best-energy-1*"},
  61. };
  62. /* Build up the firmware features bitmask using the contents of
  63. * device-tree/ibm,hypertas-functions. Ultimately this functionality may
  64. * be moved into prom.c prom_init().
  65. */
  66. void __init fw_hypertas_feature_init(const char *hypertas, unsigned long len)
  67. {
  68. const char *s;
  69. int i;
  70. pr_debug(" -> fw_hypertas_feature_init()\n");
  71. for (s = hypertas; s < hypertas + len; s += strlen(s) + 1) {
  72. for (i = 0; i < ARRAY_SIZE(hypertas_fw_features_table); i++) {
  73. const char *name = hypertas_fw_features_table[i].name;
  74. size_t size;
  75. /*
  76. * If there is a '*' at the end of name, only check
  77. * upto there
  78. */
  79. size = strlen(name);
  80. if (size && name[size - 1] == '*') {
  81. if (strncmp(name, s, size - 1))
  82. continue;
  83. } else if (strcmp(name, s))
  84. continue;
  85. /* we have a match */
  86. powerpc_firmware_features |=
  87. hypertas_fw_features_table[i].val;
  88. break;
  89. }
  90. }
  91. pr_debug(" <- fw_hypertas_feature_init()\n");
  92. }
  93. struct vec5_fw_feature {
  94. unsigned long val;
  95. unsigned int feature;
  96. };
  97. static __initdata struct vec5_fw_feature
  98. vec5_fw_features_table[] = {
  99. {FW_FEATURE_TYPE1_AFFINITY, OV5_TYPE1_AFFINITY},
  100. {FW_FEATURE_PRRN, OV5_PRRN},
  101. };
  102. void __init fw_vec5_feature_init(const char *vec5, unsigned long len)
  103. {
  104. unsigned int index, feat;
  105. int i;
  106. pr_debug(" -> fw_vec5_feature_init()\n");
  107. for (i = 0; i < ARRAY_SIZE(vec5_fw_features_table); i++) {
  108. index = OV5_INDX(vec5_fw_features_table[i].feature);
  109. feat = OV5_FEAT(vec5_fw_features_table[i].feature);
  110. if (vec5[index] & feat)
  111. powerpc_firmware_features |=
  112. vec5_fw_features_table[i].val;
  113. }
  114. pr_debug(" <- fw_vec5_feature_init()\n");
  115. }