xilinx-pr-decoupler.c 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. /*
  2. * Copyright (c) 2017, National Instruments Corp.
  3. * Copyright (c) 2017, Xilix Inc
  4. *
  5. * FPGA Bridge Driver for the Xilinx LogiCORE Partial Reconfiguration
  6. * Decoupler IP Core.
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; version 2 of the License.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. */
  17. #include <linux/clk.h>
  18. #include <linux/io.h>
  19. #include <linux/kernel.h>
  20. #include <linux/of_device.h>
  21. #include <linux/module.h>
  22. #include <linux/fpga/fpga-bridge.h>
  23. #define CTRL_CMD_DECOUPLE BIT(0)
  24. #define CTRL_CMD_COUPLE 0
  25. #define CTRL_OFFSET 0
  26. struct xlnx_pr_decoupler_data {
  27. void __iomem *io_base;
  28. struct clk *clk;
  29. };
  30. static inline void xlnx_pr_decoupler_write(struct xlnx_pr_decoupler_data *d,
  31. u32 offset, u32 val)
  32. {
  33. writel(val, d->io_base + offset);
  34. }
  35. static inline u32 xlnx_pr_decouple_read(const struct xlnx_pr_decoupler_data *d,
  36. u32 offset)
  37. {
  38. return readl(d->io_base + offset);
  39. }
  40. static int xlnx_pr_decoupler_enable_set(struct fpga_bridge *bridge, bool enable)
  41. {
  42. int err;
  43. struct xlnx_pr_decoupler_data *priv = bridge->priv;
  44. err = clk_enable(priv->clk);
  45. if (err)
  46. return err;
  47. if (enable)
  48. xlnx_pr_decoupler_write(priv, CTRL_OFFSET, CTRL_CMD_COUPLE);
  49. else
  50. xlnx_pr_decoupler_write(priv, CTRL_OFFSET, CTRL_CMD_DECOUPLE);
  51. clk_disable(priv->clk);
  52. return 0;
  53. }
  54. static int xlnx_pr_decoupler_enable_show(struct fpga_bridge *bridge)
  55. {
  56. const struct xlnx_pr_decoupler_data *priv = bridge->priv;
  57. u32 status;
  58. int err;
  59. err = clk_enable(priv->clk);
  60. if (err)
  61. return err;
  62. status = readl(priv->io_base);
  63. clk_disable(priv->clk);
  64. return !status;
  65. }
  66. static const struct fpga_bridge_ops xlnx_pr_decoupler_br_ops = {
  67. .enable_set = xlnx_pr_decoupler_enable_set,
  68. .enable_show = xlnx_pr_decoupler_enable_show,
  69. };
  70. static const struct of_device_id xlnx_pr_decoupler_of_match[] = {
  71. { .compatible = "xlnx,pr-decoupler-1.00", },
  72. { .compatible = "xlnx,pr-decoupler", },
  73. {},
  74. };
  75. MODULE_DEVICE_TABLE(of, xlnx_pr_decoupler_of_match);
  76. static int xlnx_pr_decoupler_probe(struct platform_device *pdev)
  77. {
  78. struct xlnx_pr_decoupler_data *priv;
  79. struct fpga_bridge *br;
  80. int err;
  81. struct resource *res;
  82. priv = devm_kzalloc(&pdev->dev, sizeof(*priv), GFP_KERNEL);
  83. if (!priv)
  84. return -ENOMEM;
  85. res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
  86. priv->io_base = devm_ioremap_resource(&pdev->dev, res);
  87. if (IS_ERR(priv->io_base))
  88. return PTR_ERR(priv->io_base);
  89. priv->clk = devm_clk_get(&pdev->dev, "aclk");
  90. if (IS_ERR(priv->clk)) {
  91. dev_err(&pdev->dev, "input clock not found\n");
  92. return PTR_ERR(priv->clk);
  93. }
  94. err = clk_prepare_enable(priv->clk);
  95. if (err) {
  96. dev_err(&pdev->dev, "unable to enable clock\n");
  97. return err;
  98. }
  99. clk_disable(priv->clk);
  100. br = fpga_bridge_create(&pdev->dev, "Xilinx PR Decoupler",
  101. &xlnx_pr_decoupler_br_ops, priv);
  102. if (!br) {
  103. err = -ENOMEM;
  104. goto err_clk;
  105. }
  106. platform_set_drvdata(pdev, br);
  107. err = fpga_bridge_register(br);
  108. if (err) {
  109. dev_err(&pdev->dev, "unable to register Xilinx PR Decoupler");
  110. goto err_clk;
  111. }
  112. return 0;
  113. err_clk:
  114. clk_unprepare(priv->clk);
  115. return err;
  116. }
  117. static int xlnx_pr_decoupler_remove(struct platform_device *pdev)
  118. {
  119. struct fpga_bridge *bridge = platform_get_drvdata(pdev);
  120. struct xlnx_pr_decoupler_data *p = bridge->priv;
  121. fpga_bridge_unregister(bridge);
  122. clk_unprepare(p->clk);
  123. return 0;
  124. }
  125. static struct platform_driver xlnx_pr_decoupler_driver = {
  126. .probe = xlnx_pr_decoupler_probe,
  127. .remove = xlnx_pr_decoupler_remove,
  128. .driver = {
  129. .name = "xlnx_pr_decoupler",
  130. .of_match_table = of_match_ptr(xlnx_pr_decoupler_of_match),
  131. },
  132. };
  133. module_platform_driver(xlnx_pr_decoupler_driver);
  134. MODULE_DESCRIPTION("Xilinx Partial Reconfiguration Decoupler");
  135. MODULE_AUTHOR("Moritz Fischer <mdf@kernel.org>");
  136. MODULE_AUTHOR("Michal Simek <michal.simek@xilinx.com>");
  137. MODULE_LICENSE("GPL v2");