2 * Copyright (c) 2017, National Instruments Corp.
3 * Copyright (c) 2017, Xilix Inc
5 * FPGA Bridge Driver for the Xilinx LogiCORE Partial Reconfiguration
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.
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.
18 #include <linux/clk.h>
20 #include <linux/kernel.h>
21 #include <linux/of_device.h>
22 #include <linux/module.h>
23 #include <linux/fpga/fpga-bridge.h>
25 #define CTRL_CMD_DECOUPLE BIT(0)
26 #define CTRL_CMD_COUPLE 0
29 struct xlnx_pr_decoupler_data {
30 void __iomem *io_base;
34 static inline void xlnx_pr_decoupler_write(struct xlnx_pr_decoupler_data *d,
37 writel(val, d->io_base + offset);
40 static inline u32 xlnx_pr_decouple_read(const struct xlnx_pr_decoupler_data *d,
43 return readl(d->io_base + offset);
46 static int xlnx_pr_decoupler_enable_set(struct fpga_bridge *bridge, bool enable)
49 struct xlnx_pr_decoupler_data *priv = bridge->priv;
51 err = clk_enable(priv->clk);
56 xlnx_pr_decoupler_write(priv, CTRL_OFFSET, CTRL_CMD_COUPLE);
58 xlnx_pr_decoupler_write(priv, CTRL_OFFSET, CTRL_CMD_DECOUPLE);
60 clk_disable(priv->clk);
65 static int xlnx_pr_decoupler_enable_show(struct fpga_bridge *bridge)
67 const struct xlnx_pr_decoupler_data *priv = bridge->priv;
71 err = clk_enable(priv->clk);
75 status = readl(priv->io_base);
77 clk_disable(priv->clk);
82 static const struct fpga_bridge_ops xlnx_pr_decoupler_br_ops = {
83 .enable_set = xlnx_pr_decoupler_enable_set,
84 .enable_show = xlnx_pr_decoupler_enable_show,
87 static const struct of_device_id xlnx_pr_decoupler_of_match[] = {
88 { .compatible = "xlnx,pr-decoupler-1.00", },
89 { .compatible = "xlnx,pr-decoupler", },
92 MODULE_DEVICE_TABLE(of, xlnx_pr_decoupler_of_match);
94 static int xlnx_pr_decoupler_probe(struct platform_device *pdev)
96 struct xlnx_pr_decoupler_data *priv;
97 struct fpga_bridge *br;
101 priv = devm_kzalloc(&pdev->dev, sizeof(*priv), GFP_KERNEL);
105 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
106 priv->io_base = devm_ioremap_resource(&pdev->dev, res);
107 if (IS_ERR(priv->io_base))
108 return PTR_ERR(priv->io_base);
110 priv->clk = devm_clk_get(&pdev->dev, "aclk");
111 if (IS_ERR(priv->clk)) {
112 dev_err(&pdev->dev, "input clock not found\n");
113 return PTR_ERR(priv->clk);
116 err = clk_prepare_enable(priv->clk);
118 dev_err(&pdev->dev, "unable to enable clock\n");
122 clk_disable(priv->clk);
124 br = devm_fpga_bridge_create(&pdev->dev, "Xilinx PR Decoupler",
125 &xlnx_pr_decoupler_br_ops, priv);
131 platform_set_drvdata(pdev, br);
133 err = fpga_bridge_register(br);
135 dev_err(&pdev->dev, "unable to register Xilinx PR Decoupler");
142 clk_unprepare(priv->clk);
147 static int xlnx_pr_decoupler_remove(struct platform_device *pdev)
149 struct fpga_bridge *bridge = platform_get_drvdata(pdev);
150 struct xlnx_pr_decoupler_data *p = bridge->priv;
152 fpga_bridge_unregister(bridge);
154 clk_unprepare(p->clk);
159 static struct platform_driver xlnx_pr_decoupler_driver = {
160 .probe = xlnx_pr_decoupler_probe,
161 .remove = xlnx_pr_decoupler_remove,
163 .name = "xlnx_pr_decoupler",
164 .of_match_table = of_match_ptr(xlnx_pr_decoupler_of_match),
168 module_platform_driver(xlnx_pr_decoupler_driver);
170 MODULE_DESCRIPTION("Xilinx Partial Reconfiguration Decoupler");
173 MODULE_LICENSE("GPL v2");