pcm179x-i2c.c 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. /*
  2. * PCM179X ASoC I2C driver
  3. *
  4. * Copyright (c) Teenage Engineering AB 2016
  5. *
  6. * Jacob Siverskog <jacob@teenage.engineering>
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License
  10. * as published by the Free Software Foundation; either version 2
  11. * of the License, or (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. */
  18. #include <linux/module.h>
  19. #include <linux/of.h>
  20. #include <linux/i2c.h>
  21. #include <linux/regmap.h>
  22. #include "pcm179x.h"
  23. static int pcm179x_i2c_probe(struct i2c_client *client,
  24. const struct i2c_device_id *id)
  25. {
  26. struct regmap *regmap;
  27. int ret;
  28. regmap = devm_regmap_init_i2c(client, &pcm179x_regmap_config);
  29. if (IS_ERR(regmap)) {
  30. ret = PTR_ERR(regmap);
  31. dev_err(&client->dev, "Failed to allocate regmap: %d\n", ret);
  32. return ret;
  33. }
  34. return pcm179x_common_init(&client->dev, regmap);
  35. }
  36. static int pcm179x_i2c_remove(struct i2c_client *client)
  37. {
  38. return pcm179x_common_exit(&client->dev);
  39. }
  40. static const struct of_device_id pcm179x_of_match[] = {
  41. { .compatible = "ti,pcm1792a", },
  42. { }
  43. };
  44. MODULE_DEVICE_TABLE(of, pcm179x_of_match);
  45. static const struct i2c_device_id pcm179x_i2c_ids[] = {
  46. { "pcm179x", 0 },
  47. { }
  48. };
  49. MODULE_DEVICE_TABLE(i2c, pcm179x_i2c_ids);
  50. static struct i2c_driver pcm179x_i2c_driver = {
  51. .driver = {
  52. .name = "pcm179x",
  53. .of_match_table = of_match_ptr(pcm179x_of_match),
  54. },
  55. .id_table = pcm179x_i2c_ids,
  56. .probe = pcm179x_i2c_probe,
  57. .remove = pcm179x_i2c_remove,
  58. };
  59. module_i2c_driver(pcm179x_i2c_driver);
  60. MODULE_DESCRIPTION("ASoC PCM179X I2C driver");
  61. MODULE_AUTHOR("Jacob Siverskog <jacob@teenage.engineering>");
  62. MODULE_LICENSE("GPL");