pcm512x-i2c.c 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. /*
  2. * Driver for the PCM512x CODECs
  3. *
  4. * Author: Mark Brown <broonie@linaro.org>
  5. * Copyright 2014 Linaro Ltd
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License
  9. * version 2 as published by the Free Software Foundation.
  10. *
  11. * This program is distributed in the hope that it will be useful, but
  12. * WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * General Public License for more details.
  15. */
  16. #include <linux/init.h>
  17. #include <linux/module.h>
  18. #include <linux/i2c.h>
  19. #include "pcm512x.h"
  20. static int pcm512x_i2c_probe(struct i2c_client *i2c,
  21. const struct i2c_device_id *id)
  22. {
  23. struct regmap *regmap;
  24. struct regmap_config config = pcm512x_regmap;
  25. /* msb needs to be set to enable auto-increment of addresses */
  26. config.read_flag_mask = 0x80;
  27. config.write_flag_mask = 0x80;
  28. regmap = devm_regmap_init_i2c(i2c, &config);
  29. if (IS_ERR(regmap))
  30. return PTR_ERR(regmap);
  31. return pcm512x_probe(&i2c->dev, regmap);
  32. }
  33. static int pcm512x_i2c_remove(struct i2c_client *i2c)
  34. {
  35. pcm512x_remove(&i2c->dev);
  36. return 0;
  37. }
  38. static const struct i2c_device_id pcm512x_i2c_id[] = {
  39. { "pcm5121", },
  40. { "pcm5122", },
  41. { "pcm5141", },
  42. { "pcm5142", },
  43. { }
  44. };
  45. MODULE_DEVICE_TABLE(i2c, pcm512x_i2c_id);
  46. static const struct of_device_id pcm512x_of_match[] = {
  47. { .compatible = "ti,pcm5121", },
  48. { .compatible = "ti,pcm5122", },
  49. { .compatible = "ti,pcm5141", },
  50. { .compatible = "ti,pcm5142", },
  51. { }
  52. };
  53. MODULE_DEVICE_TABLE(of, pcm512x_of_match);
  54. static struct i2c_driver pcm512x_i2c_driver = {
  55. .probe = pcm512x_i2c_probe,
  56. .remove = pcm512x_i2c_remove,
  57. .id_table = pcm512x_i2c_id,
  58. .driver = {
  59. .name = "pcm512x",
  60. .of_match_table = pcm512x_of_match,
  61. .pm = &pcm512x_pm_ops,
  62. },
  63. };
  64. module_i2c_driver(pcm512x_i2c_driver);
  65. MODULE_DESCRIPTION("ASoC PCM512x codec driver - I2C");
  66. MODULE_AUTHOR("Mark Brown <broonie@linaro.org>");
  67. MODULE_LICENSE("GPL v2");