cs35l45-spi.c 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. // SPDX-License-Identifier: (GPL-2.0 OR BSD-3-Clause)
  2. /*
  3. * cs35l45-spi.c -- CS35L45 SPI driver
  4. *
  5. * Copyright 2019 Cirrus Logic, Inc.
  6. *
  7. * Author: James Schulman <[email protected]>
  8. *
  9. */
  10. #include <linux/module.h>
  11. #include <linux/spi/spi.h>
  12. #include <linux/regulator/consumer.h>
  13. #include "wm_adsp.h"
  14. #include "cs35l45.h"
  15. #include <sound/cs35l45.h>
  16. static int cs35l45_spi_probe(struct spi_device *spi)
  17. {
  18. struct cs35l45_private *cs35l45;
  19. struct device *dev = &spi->dev;
  20. int ret;
  21. cs35l45 = devm_kzalloc(dev, sizeof(struct cs35l45_private), GFP_KERNEL);
  22. if (cs35l45 == NULL)
  23. return -ENOMEM;
  24. spi_set_drvdata(spi, cs35l45);
  25. cs35l45->regmap = devm_regmap_init_spi(spi, &cs35l45_spi_regmap);
  26. if (IS_ERR(cs35l45->regmap)) {
  27. ret = PTR_ERR(cs35l45->regmap);
  28. dev_err(dev, "Failed to allocate register map: %d\n", ret);
  29. return ret;
  30. }
  31. cs35l45->dev = dev;
  32. cs35l45->irq = spi->irq;
  33. cs35l45->bus_type = CONTROL_BUS_SPI;
  34. ret = cs35l45_probe(cs35l45);
  35. if (ret < 0) {
  36. dev_err(dev, "Failed device probe: %d\n", ret);
  37. return ret;
  38. }
  39. usleep_range(2000, 2100);
  40. ret = cs35l45_initialize(cs35l45);
  41. if (ret < 0) {
  42. dev_err(dev, "Failed device initialization: %d\n", ret);
  43. goto fail;
  44. }
  45. fail:
  46. cs35l45_remove(cs35l45);
  47. return ret;
  48. }
  49. static void cs35l45_spi_remove(struct spi_device *spi)
  50. {
  51. struct cs35l45_private *cs35l45 = spi_get_drvdata(spi);
  52. cs35l45_remove(cs35l45);
  53. }
  54. static const struct of_device_id cs35l45_of_match[] = {
  55. {.compatible = "cirrus,cs35l45"},
  56. {},
  57. };
  58. MODULE_DEVICE_TABLE(of, cs35l45_of_match);
  59. static const struct spi_device_id cs35l45_id_spi[] = {
  60. {"cs35l45", 0},
  61. {}
  62. };
  63. MODULE_DEVICE_TABLE(spi, cs35l45_id_spi);
  64. static struct spi_driver cs35l45_spi_driver = {
  65. .driver = {
  66. .name = "cs35l45",
  67. .of_match_table = cs35l45_of_match,
  68. .pm = &cs35l45_pm_ops,
  69. },
  70. .id_table = cs35l45_id_spi,
  71. .probe = cs35l45_spi_probe,
  72. .remove = cs35l45_spi_remove,
  73. };
  74. module_spi_driver(cs35l45_spi_driver);
  75. MODULE_DESCRIPTION("SPI CS35L45 driver");
  76. MODULE_AUTHOR("James Schulman, Cirrus Logic Inc, <[email protected]>");
  77. MODULE_LICENSE("GPL");