tlv320aic23-i2c.c 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /*
  2. * ALSA SoC TLV320AIC23 codec driver I2C interface
  3. *
  4. * Author: Arun KS, <arunks@mistralsolutions.com>
  5. * Copyright: (C) 2008 Mistral Solutions Pvt Ltd.,
  6. *
  7. * Based on sound/soc/codecs/wm8731.c by Richard Purdie
  8. *
  9. * This program is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License version 2 as
  11. * published by the Free Software Foundation.
  12. */
  13. #include <linux/i2c.h>
  14. #include <linux/module.h>
  15. #include <linux/of.h>
  16. #include <linux/regmap.h>
  17. #include <sound/soc.h>
  18. #include "tlv320aic23.h"
  19. static int tlv320aic23_i2c_probe(struct i2c_client *i2c,
  20. const struct i2c_device_id *i2c_id)
  21. {
  22. struct regmap *regmap;
  23. if (!i2c_check_functionality(i2c->adapter, I2C_FUNC_SMBUS_BYTE_DATA))
  24. return -EINVAL;
  25. regmap = devm_regmap_init_i2c(i2c, &tlv320aic23_regmap);
  26. return tlv320aic23_probe(&i2c->dev, regmap);
  27. }
  28. static int tlv320aic23_i2c_remove(struct i2c_client *i2c)
  29. {
  30. snd_soc_unregister_codec(&i2c->dev);
  31. return 0;
  32. }
  33. static const struct i2c_device_id tlv320aic23_id[] = {
  34. {"tlv320aic23", 0},
  35. {}
  36. };
  37. MODULE_DEVICE_TABLE(i2c, tlv320aic23_id);
  38. static const struct of_device_id tlv320aic23_of_match[] = {
  39. { .compatible = "ti,tlv320aic23", },
  40. { }
  41. };
  42. MODULE_DEVICE_TABLE(of, tlv320aic23_of_match);
  43. static struct i2c_driver tlv320aic23_i2c_driver = {
  44. .driver = {
  45. .name = "tlv320aic23-codec",
  46. .of_match_table = of_match_ptr(tlv320aic23_of_match),
  47. },
  48. .probe = tlv320aic23_i2c_probe,
  49. .remove = tlv320aic23_i2c_remove,
  50. .id_table = tlv320aic23_id,
  51. };
  52. module_i2c_driver(tlv320aic23_i2c_driver);
  53. MODULE_DESCRIPTION("ASoC TLV320AIC23 codec driver I2C");
  54. MODULE_AUTHOR("Arun KS <arunks@mistralsolutions.com>");
  55. MODULE_LICENSE("GPL");