wcd938x-slave.c 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Copyright (c) 2018, The Linux Foundation. All rights reserved.
  4. */
  5. #include <linux/module.h>
  6. #include <linux/slab.h>
  7. #include <linux/platform_device.h>
  8. #include <linux/device.h>
  9. #include <linux/kernel.h>
  10. #include <linux/component.h>
  11. #include <soc/soundwire.h>
  12. struct wcd938x_slave_priv {
  13. struct swr_device *swr_slave;
  14. };
  15. static int wcd938x_slave_bind(struct device *dev,
  16. struct device *master, void *data)
  17. {
  18. int ret = 0;
  19. uint8_t devnum = 0;
  20. struct swr_device *pdev = to_swr_device(dev);
  21. if (!pdev) {
  22. pr_err("%s: invalid swr device handle\n", __func__);
  23. return -EINVAL;
  24. }
  25. ret = swr_get_logical_dev_num(pdev, pdev->addr, &devnum);
  26. if (ret) {
  27. dev_dbg(&pdev->dev,
  28. "%s get devnum %d for dev addr %lx failed\n",
  29. __func__, devnum, pdev->addr);
  30. return ret;
  31. }
  32. pdev->dev_num = devnum;
  33. return ret;
  34. }
  35. static void wcd938x_slave_unbind(struct device *dev,
  36. struct device *master, void *data)
  37. {
  38. struct wcd938x_slave_priv *wcd938x_slave = NULL;
  39. struct swr_device *pdev = to_swr_device(dev);
  40. wcd938x_slave = swr_get_dev_data(pdev);
  41. if (!wcd938x_slave) {
  42. dev_err(&pdev->dev, "%s: wcd938x_slave is NULL\n", __func__);
  43. return;
  44. }
  45. }
  46. static const struct swr_device_id wcd938x_swr_id[] = {
  47. {"wcd938x-slave", 0},
  48. {}
  49. };
  50. static const struct of_device_id wcd938x_swr_dt_match[] = {
  51. {
  52. .compatible = "qcom,wcd938x-slave",
  53. },
  54. {}
  55. };
  56. static const struct component_ops wcd938x_slave_comp_ops = {
  57. .bind = wcd938x_slave_bind,
  58. .unbind = wcd938x_slave_unbind,
  59. };
  60. static int wcd938x_swr_probe(struct swr_device *pdev)
  61. {
  62. struct wcd938x_slave_priv *wcd938x_slave = NULL;
  63. wcd938x_slave = devm_kzalloc(&pdev->dev,
  64. sizeof(struct wcd938x_slave_priv), GFP_KERNEL);
  65. if (!wcd938x_slave)
  66. return -ENOMEM;
  67. swr_set_dev_data(pdev, wcd938x_slave);
  68. wcd938x_slave->swr_slave = pdev;
  69. return component_add(&pdev->dev, &wcd938x_slave_comp_ops);
  70. }
  71. static int wcd938x_swr_remove(struct swr_device *pdev)
  72. {
  73. component_del(&pdev->dev, &wcd938x_slave_comp_ops);
  74. swr_set_dev_data(pdev, NULL);
  75. swr_remove_device(pdev);
  76. return 0;
  77. }
  78. static struct swr_driver wcd938x_slave_driver = {
  79. .driver = {
  80. .name = "wcd938x-slave",
  81. .owner = THIS_MODULE,
  82. .of_match_table = wcd938x_swr_dt_match,
  83. },
  84. .probe = wcd938x_swr_probe,
  85. .remove = wcd938x_swr_remove,
  86. .id_table = wcd938x_swr_id,
  87. };
  88. static int __init wcd938x_slave_init(void)
  89. {
  90. return swr_driver_register(&wcd938x_slave_driver);
  91. }
  92. static void __exit wcd938x_slave_exit(void)
  93. {
  94. swr_driver_unregister(&wcd938x_slave_driver);
  95. }
  96. module_init(wcd938x_slave_init);
  97. module_exit(wcd938x_slave_exit);
  98. MODULE_DESCRIPTION("WCD938X Swr Slave driver");
  99. MODULE_LICENSE("GPL v2");