2 * FPGA to/from HPS Bridge Driver for Altera SoCFPGA Devices
4 * Copyright (C) 2013-2016 Altera Corporation, All Rights Reserved.
6 * Includes this patch from the mailing list:
7 * fpga: altera-hps2fpga: fix HPS2FPGA bridge visibility to L3 masters
8 * Signed-off-by: Anatolij Gustschin <agust@denx.de>
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms and conditions of the GNU General Public License,
12 * version 2, as published by the Free Software Foundation.
14 * This program is distributed in the hope it will be useful, but WITHOUT
15 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
19 * You should have received a copy of the GNU General Public License along with
20 * this program. If not, see <http://www.gnu.org/licenses/>.
24 * This driver manages bridges on a Altera SOCFPGA between the ARM host
25 * processor system (HPS) and the embedded FPGA.
27 * This driver supports enabling and disabling of the configured ports, which
28 * allows for safe reprogramming of the FPGA, assuming that the new FPGA image
29 * uses the same port configuration. Bridges must be disabled before
30 * reprogramming the FPGA and re-enabled after the FPGA has been programmed.
33 #include <linux/clk.h>
34 #include <linux/fpga/fpga-bridge.h>
35 #include <linux/kernel.h>
36 #include <linux/mfd/syscon.h>
37 #include <linux/module.h>
38 #include <linux/of_platform.h>
39 #include <linux/regmap.h>
40 #include <linux/reset.h>
41 #include <linux/spinlock.h>
43 #define ALT_L3_REMAP_OFST 0x0
44 #define ALT_L3_REMAP_MPUZERO_MSK 0x00000001
45 #define ALT_L3_REMAP_H2F_MSK 0x00000008
46 #define ALT_L3_REMAP_LWH2F_MSK 0x00000010
48 #define HPS2FPGA_BRIDGE_NAME "hps2fpga"
49 #define LWHPS2FPGA_BRIDGE_NAME "lwhps2fpga"
50 #define FPGA2HPS_BRIDGE_NAME "fpga2hps"
52 struct altera_hps2fpga_data
{
54 struct reset_control
*bridge_reset
;
56 unsigned int remap_mask
;
60 static int alt_hps2fpga_enable_show(struct fpga_bridge
*bridge
)
62 struct altera_hps2fpga_data
*priv
= bridge
->priv
;
64 return reset_control_status(priv
->bridge_reset
);
67 /* The L3 REMAP register is write only, so keep a cached value. */
68 static unsigned int l3_remap_shadow
;
69 static spinlock_t l3_remap_lock
;
71 static int _alt_hps2fpga_enable_set(struct altera_hps2fpga_data
*priv
,
77 /* bring bridge out of reset */
79 ret
= reset_control_deassert(priv
->bridge_reset
);
81 ret
= reset_control_assert(priv
->bridge_reset
);
85 /* Allow bridge to be visible to L3 masters or not */
86 if (priv
->remap_mask
) {
87 spin_lock_irqsave(&l3_remap_lock
, flags
);
88 l3_remap_shadow
|= ALT_L3_REMAP_MPUZERO_MSK
;
91 l3_remap_shadow
|= priv
->remap_mask
;
93 l3_remap_shadow
&= ~priv
->remap_mask
;
95 ret
= regmap_write(priv
->l3reg
, ALT_L3_REMAP_OFST
,
97 spin_unlock_irqrestore(&l3_remap_lock
, flags
);
103 static int alt_hps2fpga_enable_set(struct fpga_bridge
*bridge
, bool enable
)
105 return _alt_hps2fpga_enable_set(bridge
->priv
, enable
);
108 static const struct fpga_bridge_ops altera_hps2fpga_br_ops
= {
109 .enable_set
= alt_hps2fpga_enable_set
,
110 .enable_show
= alt_hps2fpga_enable_show
,
113 static struct altera_hps2fpga_data hps2fpga_data
= {
114 .name
= HPS2FPGA_BRIDGE_NAME
,
115 .remap_mask
= ALT_L3_REMAP_H2F_MSK
,
118 static struct altera_hps2fpga_data lwhps2fpga_data
= {
119 .name
= LWHPS2FPGA_BRIDGE_NAME
,
120 .remap_mask
= ALT_L3_REMAP_LWH2F_MSK
,
123 static struct altera_hps2fpga_data fpga2hps_data
= {
124 .name
= FPGA2HPS_BRIDGE_NAME
,
127 static const struct of_device_id altera_fpga_of_match
[] = {
128 { .compatible
= "altr,socfpga-hps2fpga-bridge",
129 .data
= &hps2fpga_data
},
130 { .compatible
= "altr,socfpga-lwhps2fpga-bridge",
131 .data
= &lwhps2fpga_data
},
132 { .compatible
= "altr,socfpga-fpga2hps-bridge",
133 .data
= &fpga2hps_data
},
137 static int alt_fpga_bridge_probe(struct platform_device
*pdev
)
139 struct device
*dev
= &pdev
->dev
;
140 struct altera_hps2fpga_data
*priv
;
141 const struct of_device_id
*of_id
;
145 of_id
= of_match_device(altera_fpga_of_match
, dev
);
146 priv
= (struct altera_hps2fpga_data
*)of_id
->data
;
148 priv
->bridge_reset
= of_reset_control_get_by_index(dev
->of_node
, 0);
149 if (IS_ERR(priv
->bridge_reset
)) {
150 dev_err(dev
, "Could not get %s reset control\n", priv
->name
);
151 return PTR_ERR(priv
->bridge_reset
);
154 if (priv
->remap_mask
) {
155 priv
->l3reg
= syscon_regmap_lookup_by_compatible("altr,l3regs");
156 if (IS_ERR(priv
->l3reg
)) {
157 dev_err(dev
, "regmap for altr,l3regs lookup failed\n");
158 return PTR_ERR(priv
->l3reg
);
162 priv
->clk
= devm_clk_get(dev
, NULL
);
163 if (IS_ERR(priv
->clk
)) {
164 dev_err(dev
, "no clock specified\n");
165 return PTR_ERR(priv
->clk
);
168 ret
= clk_prepare_enable(priv
->clk
);
170 dev_err(dev
, "could not enable clock\n");
174 spin_lock_init(&l3_remap_lock
);
176 if (!of_property_read_u32(dev
->of_node
, "bridge-enable", &enable
)) {
178 dev_warn(dev
, "invalid bridge-enable %u > 1\n", enable
);
180 dev_info(dev
, "%s bridge\n",
181 (enable
? "enabling" : "disabling"));
183 ret
= _alt_hps2fpga_enable_set(priv
, enable
);
185 fpga_bridge_unregister(&pdev
->dev
);
191 return fpga_bridge_register(dev
, priv
->name
, &altera_hps2fpga_br_ops
,
195 static int alt_fpga_bridge_remove(struct platform_device
*pdev
)
197 struct fpga_bridge
*bridge
= platform_get_drvdata(pdev
);
198 struct altera_hps2fpga_data
*priv
= bridge
->priv
;
200 fpga_bridge_unregister(&pdev
->dev
);
202 clk_disable_unprepare(priv
->clk
);
207 MODULE_DEVICE_TABLE(of
, altera_fpga_of_match
);
209 static struct platform_driver alt_fpga_bridge_driver
= {
210 .probe
= alt_fpga_bridge_probe
,
211 .remove
= alt_fpga_bridge_remove
,
213 .name
= "altera_hps2fpga_bridge",
214 .of_match_table
= of_match_ptr(altera_fpga_of_match
),
218 module_platform_driver(alt_fpga_bridge_driver
);
220 MODULE_DESCRIPTION("Altera SoCFPGA HPS to FPGA Bridge");
221 MODULE_AUTHOR("Alan Tull <atull@opensource.altera.com>");
222 MODULE_LICENSE("GPL v2");