cs4271-spi.c 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /*
  2. * CS4271 SPI audio driver
  3. *
  4. * Copyright (c) 2010 Alexander Sverdlin <subaparts@yandex.ru>
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License
  8. * as published by the Free Software Foundation; either version 2
  9. * of the License, or (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. #include <linux/module.h>
  17. #include <linux/spi/spi.h>
  18. #include <linux/regmap.h>
  19. #include <sound/soc.h>
  20. #include "cs4271.h"
  21. static int cs4271_spi_probe(struct spi_device *spi)
  22. {
  23. struct regmap_config config;
  24. config = cs4271_regmap_config;
  25. config.reg_bits = 16;
  26. config.val_bits = 8;
  27. config.read_flag_mask = 0x21;
  28. config.write_flag_mask = 0x20;
  29. return cs4271_probe(&spi->dev, devm_regmap_init_spi(spi, &config));
  30. }
  31. static int cs4271_spi_remove(struct spi_device *spi)
  32. {
  33. snd_soc_unregister_codec(&spi->dev);
  34. return 0;
  35. }
  36. static struct spi_driver cs4271_spi_driver = {
  37. .driver = {
  38. .name = "cs4271",
  39. .of_match_table = of_match_ptr(cs4271_dt_ids),
  40. },
  41. .probe = cs4271_spi_probe,
  42. .remove = cs4271_spi_remove,
  43. };
  44. module_spi_driver(cs4271_spi_driver);
  45. MODULE_DESCRIPTION("ASoC CS4271 SPI Driver");
  46. MODULE_AUTHOR("Alexander Sverdlin <subaparts@yandex.ru>");
  47. MODULE_LICENSE("GPL");