adxl345_spi.c 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. /*
  2. * ADXL345 3-Axis Digital Accelerometer SPI driver
  3. *
  4. * Copyright (c) 2017 Eva Rachel Retuya <eraretuya@gmail.com>
  5. *
  6. * This file is subject to the terms and conditions of version 2 of
  7. * the GNU General Public License. See the file COPYING in the main
  8. * directory of this archive for more details.
  9. */
  10. #include <linux/module.h>
  11. #include <linux/regmap.h>
  12. #include <linux/spi/spi.h>
  13. #include "adxl345.h"
  14. #define ADXL345_MAX_SPI_FREQ_HZ 5000000
  15. static const struct regmap_config adxl345_spi_regmap_config = {
  16. .reg_bits = 8,
  17. .val_bits = 8,
  18. /* Setting bits 7 and 6 enables multiple-byte read */
  19. .read_flag_mask = BIT(7) | BIT(6),
  20. };
  21. static int adxl345_spi_probe(struct spi_device *spi)
  22. {
  23. const struct spi_device_id *id = spi_get_device_id(spi);
  24. struct regmap *regmap;
  25. /* Bail out if max_speed_hz exceeds 5 MHz */
  26. if (spi->max_speed_hz > ADXL345_MAX_SPI_FREQ_HZ) {
  27. dev_err(&spi->dev, "SPI CLK, %d Hz exceeds 5 MHz\n",
  28. spi->max_speed_hz);
  29. return -EINVAL;
  30. }
  31. regmap = devm_regmap_init_spi(spi, &adxl345_spi_regmap_config);
  32. if (IS_ERR(regmap)) {
  33. dev_err(&spi->dev, "Error initializing spi regmap: %ld\n",
  34. PTR_ERR(regmap));
  35. return PTR_ERR(regmap);
  36. }
  37. return adxl345_core_probe(&spi->dev, regmap, id->name);
  38. }
  39. static int adxl345_spi_remove(struct spi_device *spi)
  40. {
  41. return adxl345_core_remove(&spi->dev);
  42. }
  43. static const struct spi_device_id adxl345_spi_id[] = {
  44. { "adxl345", 0 },
  45. { }
  46. };
  47. MODULE_DEVICE_TABLE(spi, adxl345_spi_id);
  48. static const struct of_device_id adxl345_of_match[] = {
  49. { .compatible = "adi,adxl345" },
  50. { },
  51. };
  52. MODULE_DEVICE_TABLE(of, adxl345_of_match);
  53. static struct spi_driver adxl345_spi_driver = {
  54. .driver = {
  55. .name = "adxl345_spi",
  56. .of_match_table = adxl345_of_match,
  57. },
  58. .probe = adxl345_spi_probe,
  59. .remove = adxl345_spi_remove,
  60. .id_table = adxl345_spi_id,
  61. };
  62. module_spi_driver(adxl345_spi_driver);
  63. MODULE_AUTHOR("Eva Rachel Retuya <eraretuya@gmail.com>");
  64. MODULE_DESCRIPTION("ADXL345 3-Axis Digital Accelerometer SPI driver");
  65. MODULE_LICENSE("GPL v2");