opal-sensor.c 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. /*
  2. * PowerNV sensor code
  3. *
  4. * Copyright (C) 2013 IBM
  5. *
  6. * This program 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 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program 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 this program; if not, write to the Free Software
  18. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  19. */
  20. #include <linux/delay.h>
  21. #include <linux/mutex.h>
  22. #include <linux/of_platform.h>
  23. #include <asm/opal.h>
  24. #include <asm/machdep.h>
  25. static DEFINE_MUTEX(opal_sensor_mutex);
  26. /*
  27. * This will return sensor information to driver based on the requested sensor
  28. * handle. A handle is an opaque id for the powernv, read by the driver from the
  29. * device tree..
  30. */
  31. int opal_get_sensor_data(u32 sensor_hndl, u32 *sensor_data)
  32. {
  33. int ret, token;
  34. struct opal_msg msg;
  35. __be32 data;
  36. token = opal_async_get_token_interruptible();
  37. if (token < 0) {
  38. pr_err("%s: Couldn't get the token, returning\n", __func__);
  39. ret = token;
  40. goto out;
  41. }
  42. mutex_lock(&opal_sensor_mutex);
  43. ret = opal_sensor_read(sensor_hndl, token, &data);
  44. switch (ret) {
  45. case OPAL_ASYNC_COMPLETION:
  46. ret = opal_async_wait_response(token, &msg);
  47. if (ret) {
  48. pr_err("%s: Failed to wait for the async response, %d\n",
  49. __func__, ret);
  50. goto out_token;
  51. }
  52. ret = opal_error_code(opal_get_async_rc(msg));
  53. *sensor_data = be32_to_cpu(data);
  54. break;
  55. case OPAL_SUCCESS:
  56. ret = 0;
  57. *sensor_data = be32_to_cpu(data);
  58. break;
  59. default:
  60. ret = opal_error_code(ret);
  61. break;
  62. }
  63. out_token:
  64. mutex_unlock(&opal_sensor_mutex);
  65. opal_async_release_token(token);
  66. out:
  67. return ret;
  68. }
  69. EXPORT_SYMBOL_GPL(opal_get_sensor_data);
  70. int __init opal_sensor_init(void)
  71. {
  72. struct platform_device *pdev;
  73. struct device_node *sensor;
  74. sensor = of_find_node_by_path("/ibm,opal/sensors");
  75. if (!sensor) {
  76. pr_err("Opal node 'sensors' not found\n");
  77. return -ENODEV;
  78. }
  79. pdev = of_platform_device_create(sensor, "opal-sensor", NULL);
  80. of_node_put(sensor);
  81. return PTR_ERR_OR_ZERO(pdev);
  82. }