st_pressure_spi.c 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. /*
  2. * STMicroelectronics pressures driver
  3. *
  4. * Copyright 2013 STMicroelectronics Inc.
  5. *
  6. * Denis Ciocca <denis.ciocca@st.com>
  7. *
  8. * Licensed under the GPL-2.
  9. */
  10. #include <linux/kernel.h>
  11. #include <linux/module.h>
  12. #include <linux/slab.h>
  13. #include <linux/spi/spi.h>
  14. #include <linux/iio/iio.h>
  15. #include <linux/iio/common/st_sensors.h>
  16. #include <linux/iio/common/st_sensors_spi.h>
  17. #include "st_pressure.h"
  18. #ifdef CONFIG_OF
  19. /*
  20. * For new single-chip sensors use <device_name> as compatible string.
  21. * For old single-chip devices keep <device_name>-press to maintain
  22. * compatibility
  23. */
  24. static const struct of_device_id st_press_of_match[] = {
  25. {
  26. .compatible = "st,lps001wp-press",
  27. .data = LPS001WP_PRESS_DEV_NAME,
  28. },
  29. {
  30. .compatible = "st,lps25h-press",
  31. .data = LPS25H_PRESS_DEV_NAME,
  32. },
  33. {
  34. .compatible = "st,lps331ap-press",
  35. .data = LPS331AP_PRESS_DEV_NAME,
  36. },
  37. {
  38. .compatible = "st,lps22hb-press",
  39. .data = LPS22HB_PRESS_DEV_NAME,
  40. },
  41. {},
  42. };
  43. MODULE_DEVICE_TABLE(of, st_press_of_match);
  44. #else
  45. #define st_press_of_match NULL
  46. #endif
  47. static int st_press_spi_probe(struct spi_device *spi)
  48. {
  49. struct iio_dev *indio_dev;
  50. struct st_sensor_data *press_data;
  51. int err;
  52. indio_dev = devm_iio_device_alloc(&spi->dev, sizeof(*press_data));
  53. if (indio_dev == NULL)
  54. return -ENOMEM;
  55. press_data = iio_priv(indio_dev);
  56. st_sensors_of_name_probe(&spi->dev, st_press_of_match,
  57. spi->modalias, sizeof(spi->modalias));
  58. st_sensors_spi_configure(indio_dev, spi, press_data);
  59. err = st_press_common_probe(indio_dev);
  60. if (err < 0)
  61. return err;
  62. return 0;
  63. }
  64. static int st_press_spi_remove(struct spi_device *spi)
  65. {
  66. st_press_common_remove(spi_get_drvdata(spi));
  67. return 0;
  68. }
  69. static const struct spi_device_id st_press_id_table[] = {
  70. { LPS001WP_PRESS_DEV_NAME },
  71. { LPS25H_PRESS_DEV_NAME },
  72. { LPS331AP_PRESS_DEV_NAME },
  73. { LPS22HB_PRESS_DEV_NAME },
  74. {},
  75. };
  76. MODULE_DEVICE_TABLE(spi, st_press_id_table);
  77. static struct spi_driver st_press_driver = {
  78. .driver = {
  79. .name = "st-press-spi",
  80. .of_match_table = of_match_ptr(st_press_of_match),
  81. },
  82. .probe = st_press_spi_probe,
  83. .remove = st_press_spi_remove,
  84. .id_table = st_press_id_table,
  85. };
  86. module_spi_driver(st_press_driver);
  87. MODULE_AUTHOR("Denis Ciocca <denis.ciocca@st.com>");
  88. MODULE_DESCRIPTION("STMicroelectronics pressures spi driver");
  89. MODULE_LICENSE("GPL v2");