wcd937x_slave.c 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. /*
  2. * Copyright (c) 2018, The Linux Foundation. All rights reserved.
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License version 2 and
  6. * only version 2 as published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. */
  13. #include <linux/module.h>
  14. #include <linux/slab.h>
  15. #include <linux/platform_device.h>
  16. #include <linux/device.h>
  17. #include <linux/kernel.h>
  18. #include <linux/component.h>
  19. #include <soc/soundwire.h>
  20. struct wcd937x_slave_priv {
  21. struct swr_device *swr_slave;
  22. };
  23. static int wcd937x_slave_bind(struct device *dev,
  24. struct device *master, void *data)
  25. {
  26. int ret = 0;
  27. struct wcd937x_slave_priv *wcd937x_slave = NULL;
  28. uint8_t devnum = 0;
  29. struct swr_device *pdev = to_swr_device(dev);
  30. wcd937x_slave = devm_kzalloc(&pdev->dev,
  31. sizeof(struct wcd937x_slave_priv), GFP_KERNEL);
  32. if (!wcd937x_slave)
  33. return -ENOMEM;
  34. swr_set_dev_data(pdev, wcd937x_slave);
  35. wcd937x_slave->swr_slave = pdev;
  36. ret = swr_get_logical_dev_num(pdev, pdev->addr, &devnum);
  37. if (ret) {
  38. dev_dbg(&pdev->dev,
  39. "%s get devnum %d for dev addr %lx failed\n",
  40. __func__, devnum, pdev->addr);
  41. swr_remove_device(pdev);
  42. return ret;
  43. }
  44. pdev->dev_num = devnum;
  45. return ret;
  46. }
  47. static void wcd937x_slave_unbind(struct device *dev,
  48. struct device *master, void *data)
  49. {
  50. struct wcd937x_slave_priv *wcd937x_slave = NULL;
  51. struct swr_device *pdev = to_swr_device(dev);
  52. wcd937x_slave = swr_get_dev_data(pdev);
  53. if (!wcd937x_slave) {
  54. dev_err(&pdev->dev, "%s: wcd937x_slave is NULL\n", __func__);
  55. return;
  56. }
  57. swr_set_dev_data(pdev, NULL);
  58. }
  59. static const struct swr_device_id wcd937x_swr_id[] = {
  60. {"wcd937x-slave", 0},
  61. {}
  62. };
  63. static const struct of_device_id wcd937x_swr_dt_match[] = {
  64. {
  65. .compatible = "qcom,wcd937x-slave",
  66. },
  67. {}
  68. };
  69. static const struct component_ops wcd937x_slave_comp_ops = {
  70. .bind = wcd937x_slave_bind,
  71. .unbind = wcd937x_slave_unbind,
  72. };
  73. static int wcd937x_swr_probe(struct swr_device *pdev)
  74. {
  75. return component_add(&pdev->dev, &wcd937x_slave_comp_ops);
  76. }
  77. static int wcd937x_swr_remove(struct swr_device *pdev)
  78. {
  79. component_del(&pdev->dev, &wcd937x_slave_comp_ops);
  80. return 0;
  81. }
  82. static struct swr_driver wcd937x_slave_driver = {
  83. .driver = {
  84. .name = "wcd937x-slave",
  85. .owner = THIS_MODULE,
  86. .of_match_table = wcd937x_swr_dt_match,
  87. },
  88. .probe = wcd937x_swr_probe,
  89. .remove = wcd937x_swr_remove,
  90. .id_table = wcd937x_swr_id,
  91. };
  92. static int __init wcd937x_slave_init(void)
  93. {
  94. return swr_driver_register(&wcd937x_slave_driver);
  95. }
  96. static void __exit wcd937x_slave_exit(void)
  97. {
  98. swr_driver_unregister(&wcd937x_slave_driver);
  99. }
  100. module_init(wcd937x_slave_init);
  101. module_exit(wcd937x_slave_exit);
  102. MODULE_DESCRIPTION("WCD937X Swr Slave driver");
  103. MODULE_LICENSE("GPL v2");