adau1781-i2c.c 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /*
  2. * Driver for ADAU1381/ADAU1781 CODEC
  3. *
  4. * Copyright 2014 Analog Devices Inc.
  5. * Author: Lars-Peter Clausen <lars@metafoo.de>
  6. *
  7. * Licensed under the GPL-2.
  8. */
  9. #include <linux/i2c.h>
  10. #include <linux/mod_devicetable.h>
  11. #include <linux/module.h>
  12. #include <linux/regmap.h>
  13. #include <sound/soc.h>
  14. #include "adau1781.h"
  15. static int adau1781_i2c_probe(struct i2c_client *client,
  16. const struct i2c_device_id *id)
  17. {
  18. struct regmap_config config;
  19. config = adau1781_regmap_config;
  20. config.val_bits = 8;
  21. config.reg_bits = 16;
  22. return adau1781_probe(&client->dev,
  23. devm_regmap_init_i2c(client, &config),
  24. id->driver_data, NULL);
  25. }
  26. static int adau1781_i2c_remove(struct i2c_client *client)
  27. {
  28. adau17x1_remove(&client->dev);
  29. return 0;
  30. }
  31. static const struct i2c_device_id adau1781_i2c_ids[] = {
  32. { "adau1381", ADAU1381 },
  33. { "adau1781", ADAU1781 },
  34. { }
  35. };
  36. MODULE_DEVICE_TABLE(i2c, adau1781_i2c_ids);
  37. #if defined(CONFIG_OF)
  38. static const struct of_device_id adau1781_i2c_dt_ids[] = {
  39. { .compatible = "adi,adau1381", },
  40. { .compatible = "adi,adau1781", },
  41. { },
  42. };
  43. MODULE_DEVICE_TABLE(of, adau1781_i2c_dt_ids);
  44. #endif
  45. static struct i2c_driver adau1781_i2c_driver = {
  46. .driver = {
  47. .name = "adau1781",
  48. .of_match_table = of_match_ptr(adau1781_i2c_dt_ids),
  49. },
  50. .probe = adau1781_i2c_probe,
  51. .remove = adau1781_i2c_remove,
  52. .id_table = adau1781_i2c_ids,
  53. };
  54. module_i2c_driver(adau1781_i2c_driver);
  55. MODULE_DESCRIPTION("ASoC ADAU1381/ADAU1781 CODEC I2C driver");
  56. MODULE_AUTHOR("Lars-Peter Clausen <lars@metafoo.de>");
  57. MODULE_LICENSE("GPL");