firmware.c 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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. #undef DEBUG
  24. #include <asm/firmware.h>
  25. #include <asm/prom.h>
  26. #ifdef DEBUG
  27. #define DBG(fmt...) udbg_printf(fmt)
  28. #else
  29. #define DBG(fmt...)
  30. #endif
  31. typedef struct {
  32. unsigned long val;
  33. char * name;
  34. } firmware_feature_t;
  35. static __initdata firmware_feature_t
  36. firmware_features_table[FIRMWARE_MAX_FEATURES] = {
  37. {FW_FEATURE_PFT, "hcall-pft"},
  38. {FW_FEATURE_TCE, "hcall-tce"},
  39. {FW_FEATURE_SPRG0, "hcall-sprg0"},
  40. {FW_FEATURE_DABR, "hcall-dabr"},
  41. {FW_FEATURE_COPY, "hcall-copy"},
  42. {FW_FEATURE_ASR, "hcall-asr"},
  43. {FW_FEATURE_DEBUG, "hcall-debug"},
  44. {FW_FEATURE_PERF, "hcall-perf"},
  45. {FW_FEATURE_DUMP, "hcall-dump"},
  46. {FW_FEATURE_INTERRUPT, "hcall-interrupt"},
  47. {FW_FEATURE_MIGRATE, "hcall-migrate"},
  48. {FW_FEATURE_PERFMON, "hcall-perfmon"},
  49. {FW_FEATURE_CRQ, "hcall-crq"},
  50. {FW_FEATURE_VIO, "hcall-vio"},
  51. {FW_FEATURE_RDMA, "hcall-rdma"},
  52. {FW_FEATURE_LLAN, "hcall-lLAN"},
  53. {FW_FEATURE_BULK, "hcall-bulk"},
  54. {FW_FEATURE_XDABR, "hcall-xdabr"},
  55. {FW_FEATURE_MULTITCE, "hcall-multi-tce"},
  56. {FW_FEATURE_SPLPAR, "hcall-splpar"},
  57. {FW_FEATURE_BULK_REMOVE, "hcall-bulk"},
  58. };
  59. /* Build up the firmware features bitmask using the contents of
  60. * device-tree/ibm,hypertas-functions. Ultimately this functionality may
  61. * be moved into prom.c prom_init().
  62. */
  63. void __init fw_feature_init(void)
  64. {
  65. struct device_node *dn;
  66. const char *hypertas, *s;
  67. int len, i;
  68. DBG(" -> fw_feature_init()\n");
  69. dn = of_find_node_by_path("/rtas");
  70. if (dn == NULL) {
  71. printk(KERN_ERR "WARNING! Cannot find RTAS in device-tree!\n");
  72. goto out;
  73. }
  74. hypertas = get_property(dn, "ibm,hypertas-functions", &len);
  75. if (hypertas == NULL)
  76. goto out;
  77. for (s = hypertas; s < hypertas + len; s += strlen(s) + 1) {
  78. for (i = 0; i < FIRMWARE_MAX_FEATURES; i++) {
  79. /* check value against table of strings */
  80. if (!firmware_features_table[i].name ||
  81. strcmp(firmware_features_table[i].name, s))
  82. continue;
  83. /* we have a match */
  84. powerpc_firmware_features |=
  85. firmware_features_table[i].val;
  86. break;
  87. }
  88. }
  89. out:
  90. of_node_put(dn);
  91. DBG(" <- fw_feature_init()\n");
  92. }